tony2001 Wed Feb 11 09:11:18 2009 UTC
Modified files: (Branch: PHP_5_3)
/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.77.2.44&r2=1.579.2.52.2.77.2.45&diff_format=u
Index: php-src/configure.in
diff -u php-src/configure.in:1.579.2.52.2.77.2.44
php-src/configure.in:1.579.2.52.2.77.2.45
--- php-src/configure.in:1.579.2.52.2.77.2.44 Wed Feb 11 00:08:31 2009
+++ php-src/configure.in Wed Feb 11 09:11:17 2009
@@ -1,4 +1,4 @@
-## $Id: configure.in,v 1.579.2.52.2.77.2.44 2009/02/11 00:08:31 scottmac Exp $
-*- autoconf -*-
+## $Id: configure.in,v 1.579.2.52.2.77.2.45 2009/02/11 09:11:17 tony2001 Exp $
-*- autoconf -*-
dnl ## Process this file with autoconf to produce a configure script.
divert(1)
@@ -1332,9 +1332,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