helly Tue Jan 20 14:49:22 2004 EDT
Modified files:
/php-src/ext/spl config.w32
Log:
Prevent shared builds under windows too
http://cvs.php.net/diff.php/php-src/ext/spl/config.w32?r1=1.4&r2=1.5&ty=u
Index: php-src/ext/spl/config.w32
diff -u php-src/ext/spl/config.w32:1.4 php-src/ext/spl/config.w32:1.5
--- php-src/ext/spl/config.w32:1.4 Tue Jan 20 12:18:41 2004
+++ php-src/ext/spl/config.w32 Tue Jan 20 14:49:21 2004
@@ -1,9 +1,12 @@
-// $Id: config.w32,v 1.4 2004/01/20 17:18:41 wez Exp $
+// $Id: config.w32,v 1.5 2004/01/20 19:49:21 helly Exp $
// vim:ft=javascript
ARG_ENABLE("spl", "SPL (Standard PHP Library) support", "yes");
if (PHP_SPL != "no") {
+ if (PHP_SPL_SHARED) {
+ ERROR("SPL cannot be compiled as a shared ext");
+ }
EXTENSION("spl", "php_spl.c spl_functions.c spl_engine.c spl_iterators.c
spl_array.c spl_directory.c spl_sxe.c");
AC_DEFINE('HAVE_SPL', 1);
}
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php