From f148e5a64f6ee4c9cb1fb70824e1d04507ef7f4a Mon Sep 17 00:00:00 2001 From: David Soria Parra Date: Sun, 1 Feb 2009 21:52:32 +0000 Subject: [PATCH] MFH: Fix a typo --- configure.in | 4 ++-- 1 file 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" -- 2.50.1