hirokawa Sun Jun 29 08:21:21 2008 UTC Modified files: (Branch: PHP_5_3) /php-src/win32/build config.w32 Log: implemented again zend-multibyte for PHP 5.3 http://cvs.php.net/viewvc.cgi/php-src/win32/build/config.w32?r1=1.40.2.8.2.10.2.16&r2=1.40.2.8.2.10.2.17&diff_format=u Index: php-src/win32/build/config.w32 diff -u php-src/win32/build/config.w32:1.40.2.8.2.10.2.16 php-src/win32/build/config.w32:1.40.2.8.2.10.2.17 --- php-src/win32/build/config.w32:1.40.2.8.2.10.2.16 Sun Jun 22 23:16:31 2008 +++ php-src/win32/build/config.w32 Sun Jun 29 08:21:21 2008 @@ -1,5 +1,5 @@ // vim:ft=javascript -// $Id: config.w32,v 1.40.2.8.2.10.2.16 2008/06/22 23:16:31 pajoye Exp $ +// $Id: config.w32,v 1.40.2.8.2.10.2.17 2008/06/29 08:21:21 hirokawa Exp $ // "Master" config file; think of it as a configure.in // equivalent. @@ -351,6 +351,12 @@ ARG_ENABLE('fd-setsize', "Set maximum number of sockets for select(2)", "256"); ADD_FLAG("CFLAGS", "/D FD_SETSIZE=" + parseInt(PHP_FD_SETSIZE)); +ARG_ENABLE("zend-multibyte", "Enable Zend multibyte encoding support", "no"); +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