tony2001 Wed Feb 11 09:11:35 2009 UTC
Modified files: (Branch: PHP_5_2)
/php-src configure.in
Log:
MFH: fix check for zend_extension type
http://cvs.php.net/viewvc.cgi/php-src/configure.in?r1=1.579.2.52.2.125&r2=1.579.2.52.2.126&diff_format=u
Index: php-src/configure.in
diff -u php-src/configure.in:1.579.2.52.2.125
php-src/configure.in:1.579.2.52.2.126
--- php-src/configure.in:1.579.2.52.2.125 Wed Feb 11 00:08:44 2009
+++ php-src/configure.in Wed Feb 11 09:11:35 2009
@@ -1,4 +1,4 @@
-## $Id: configure.in,v 1.579.2.52.2.125 2009/02/11 00:08:44 scottmac Exp $ -*-
autoconf -*-
+## $Id: configure.in,v 1.579.2.52.2.126 2009/02/11 09:11:35 tony2001 Exp $ -*-
autoconf -*-
dnl ## Process this file with autoconf to produce a configure script.
divert(1)
@@ -1284,9 +1284,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