From 0e49dd9e483dc4b8b2373c6bf79e31fae33ab7ba Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Wed, 11 Feb 2009 09:07:41 +0000 Subject: [PATCH] fix check for zend_extension type --- configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.in b/configure.in index 6b3d3fdf7e..e0a1414d50 100644 --- a/configure.in +++ b/configure.in @@ -1246,9 +1246,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" -- 2.50.1