From: David Soria Parra Date: Sun, 1 Feb 2009 21:52:32 +0000 (+0000) Subject: MFH: Fix a typo X-Git-Tag: php-5.2.9RC1~10 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f148e5a64f6ee4c9cb1fb70824e1d04507ef7f4a;p=php MFH: Fix a typo --- diff --git a/configure.in b/configure.in index 3bff1db1be..fd8ae48320 100644 --- a/configure.in +++ b/configure.in @@ -1283,11 +1283,11 @@ 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" = "yes" && test "$PHP_THREAD_SAFETY" = "yes"; then ZEND_EXT_TYPE="zend_extension_debug_ts" elif test "$PHP_DEBUG" = "yes"; then ZEND_EXT_TYPE="zend_extension_debug" -elif test "$PHP_THREAD_SAFETY" = "yes; then +elif test "$PHP_THREAD_SAFETY" = "yes"; then ZEND_EXT_TYPE="zend_extension_ts" else ZEND_EXT_TYPE="zend_extension"