diff options
author | David Soria Parra <dsp@php.net> | 2009-02-01 21:52:07 +0000 |
---|---|---|
committer | David Soria Parra <dsp@php.net> | 2009-02-01 21:52:07 +0000 |
commit | ab0eff9a14f92400163f8632b75d33ee92138218 (patch) | |
tree | a5ac9c2b6908444ba2f71e38dbd88151e429b52a | |
parent | 28073afe56c002bdea1abf027a7e8ba37614b1b2 (diff) | |
download | php-git-ab0eff9a14f92400163f8632b75d33ee92138218.tar.gz |
MFH: Fix a typo
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
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" |