dsp             Sun Feb  1 21:51:44 2009 UTC

  Modified files:              
    /php-src    configure.in 
  Log:
  Fix a typo
  
  
http://cvs.php.net/viewvc.cgi/php-src/configure.in?r1=1.671&r2=1.672&diff_format=u
Index: php-src/configure.in
diff -u php-src/configure.in:1.671 php-src/configure.in:1.672
--- php-src/configure.in:1.671  Sun Jan 11 23:47:52 2009
+++ php-src/configure.in        Sun Feb  1 21:51:44 2009
@@ -1,4 +1,4 @@
-## $Id: configure.in,v 1.671 2009/01/11 23:47:52 scottmac Exp $ -*- autoconf 
-*-
+## $Id: configure.in,v 1.672 2009/02/01 21:51:44 dsp Exp $ -*- autoconf -*-
 dnl ## Process this file with autoconf to produce a configure script.
 
 divert(1)
@@ -1246,11 +1246,11 @@
   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"



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to