summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Soria Parra <dsp@php.net>2009-02-01 21:52:32 +0000
committerDavid Soria Parra <dsp@php.net>2009-02-01 21:52:32 +0000
commitf148e5a64f6ee4c9cb1fb70824e1d04507ef7f4a (patch)
tree60d3f3f2f02aec3466cb5f2dbc5f7581645b612e
parente721d542eebdbf07331523c8d5cf1f7f30445ff4 (diff)
downloadphp-git-f148e5a64f6ee4c9cb1fb70824e1d04507ef7f4a.tar.gz
MFH: Fix a typo
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
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"