From: David Soria Parra Date: Sun, 1 Feb 2009 21:52:07 +0000 (+0000) Subject: MFH: Fix a typo X-Git-Tag: RELEASE_1_3_5~192 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ab0eff9a14f92400163f8632b75d33ee92138218;p=php MFH: Fix a typo --- diff --git a/configure.in b/configure.in index cc35c358a9..de11ff2ce3 100644 --- a/configure.in +++ b/configure.in @@ -1332,11 +1332,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"