edink           Tue Feb 15 08:57:51 2005 EDT

  Modified files:              
    /php-src/win32/build        config.w32 
  Log:
  Really disable zend multibyte by default. mbstring is using #ifdef all over 
the place so defining to '0' doesn't help much
  
http://cvs.php.net/diff.php/php-src/win32/build/config.w32?r1=1.35&r2=1.36&ty=u
Index: php-src/win32/build/config.w32
diff -u php-src/win32/build/config.w32:1.35 php-src/win32/build/config.w32:1.36
--- php-src/win32/build/config.w32:1.35 Sun Feb 13 08:03:03 2005
+++ php-src/win32/build/config.w32      Tue Feb 15 08:57:49 2005
@@ -1,5 +1,5 @@
 // vim:ft=javascript
-// $Id: config.w32,v 1.35 2005/02/13 13:03:03 hirokawa Exp $
+// $Id: config.w32,v 1.36 2005/02/15 13:57:49 edink Exp $
 // "Master" config file; think of it as a configure.in
 // equivalent.
 
@@ -225,7 +225,10 @@
 AC_DEFINE('MEMORY_LIMIT', PHP_MEMORY_LIMIT == "yes" ? 1 : 0);
 
 ARG_ENABLE("zend-multibyte", "Enable Zend multibyte encoding support", "no");
-AC_DEFINE('ZEND_MULTIBYTE', PHP_ZEND_MULTIBYTE == "yes" ? 1 : 0);
+if (PHP_ZEND_MULTIBYTE == "yes") {
+       STDOUT.WriteLine("Enabling Zend multibyte encoding support");
+       AC_DEFINE('ZEND_MULTIBYTE', 1);
+}
 
 AC_DEFINE('HAVE_USLEEP', 1);
 AC_DEFINE('HAVE_STRCOLL', 1);

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

Reply via email to