tony2001 Wed Feb 11 09:07:41 2009 UTC
Modified files:
/php-src configure.in
Log:
fix check for zend_extension type
http://cvs.php.net/viewvc.cgi/php-src/configure.in?r1=1.673&r2=1.674&diff_format=u
Index: php-src/configure.in
diff -u php-src/configure.in:1.673 php-src/configure.in:1.674
--- php-src/configure.in:1.673 Wed Feb 11 00:08:17 2009
+++ php-src/configure.in Wed Feb 11 09:07:41 2009
@@ -1,4 +1,4 @@
-## $Id: configure.in,v 1.673 2009/02/11 00:08:17 scottmac Exp $ -*- autoconf
-*-
+## $Id: configure.in,v 1.674 2009/02/11 09:07:41 tony2001 Exp $ -*- autoconf
-*-
dnl ## Process this file with autoconf to produce a configure script.
divert(1)
@@ -1246,9 +1246,9 @@
CPPFLAGS="$CPPFLAGS -DTHREAD=1"
fi
-if test "$PHP_DEBUG" = "yes" && test "$PHP_THREAD_SAFETY" = "yes"; then
+if test "$PHP_DEBUG" = "1" && test "$PHP_THREAD_SAFETY" = "yes"; then
ZEND_EXT_TYPE="zend_extension_debug_ts"
-elif test "$PHP_DEBUG" = "yes"; then
+elif test "$PHP_DEBUG" = "1"; then
ZEND_EXT_TYPE="zend_extension_debug"
elif test "$PHP_THREAD_SAFETY" = "yes"; then
ZEND_EXT_TYPE="zend_extension_ts"
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php