summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2009-02-11 09:11:35 +0000
committerAntony Dovgal <tony2001@php.net>2009-02-11 09:11:35 +0000
commit49cf106aa43307c40cacb99051fc09d4f564e1b2 (patch)
treef8b85918bf8b6356513ed801ca8894e9e76ed2ea
parent5ee54f12af34a88cec8f16f41ec1a13a02e3afa7 (diff)
downloadphp-git-49cf106aa43307c40cacb99051fc09d4f564e1b2.tar.gz
MFH: fix check for zend_extension type
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 5b16fdebae..e6fcd52295 100644
--- a/configure.in
+++ b/configure.in
@@ -1284,9 +1284,9 @@ if test "$PHP_THREAD_SAFETY" = "yes" && test "$PHP_MYSQL" = "yes"; then
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"