mirror of
https://github.com/php/php-src.git
synced 2026-04-30 03:33:17 +02:00
MFH: fix check for zend_extension type
This commit is contained in:
+2
-2
@@ -1332,9 +1332,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"
|
||||
|
||||
Reference in New Issue
Block a user