wez Thu Apr 8 07:01:53 2004 EDT Modified files: /php-src/ext/mbstring config.w32 Log: Enable mbregex in win32 build http://cvs.php.net/diff.php/php-src/ext/mbstring/config.w32?r1=1.7&r2=1.8&ty=u Index: php-src/ext/mbstring/config.w32 diff -u php-src/ext/mbstring/config.w32:1.7 php-src/ext/mbstring/config.w32:1.8 --- php-src/ext/mbstring/config.w32:1.7 Wed Mar 3 05:27:19 2004 +++ php-src/ext/mbstring/config.w32 Thu Apr 8 07:01:51 2004 @@ -1,4 +1,4 @@ -// $Id: config.w32,v 1.7 2004/03/03 10:27:19 moriyoshi Exp $ +// $Id: config.w32,v 1.8 2004/04/08 11:01:51 wez Exp $ // vim:ft=javascript ARG_ENABLE("mbstring", "multibyte string functions", "no"); @@ -47,15 +47,16 @@ AC_DEFINE('HAVE_MBSTR_RU', 1, 'RU'); AC_DEFINE('HAVE_MBSTR_TW', 1, 'TW'); - if (PHP_MBREGEX == "yes") { + if (PHP_MBREGEX != "no") { AC_DEFINE('HAVE_STDARG_PROTOTYPES', 1, 'have stdarg.h'); + AC_DEFINE('HAVE_MBREGEX', 1); ADD_SOURCES("ext/mbstring/oniguruma", "regcomp.c regerror.c \ regenc.c regexec.c reggnu.c regparse.c regposerr.c", "mbstring"); ADD_SOURCES("ext/mbstring/oniguruma/enc", "ascii.c big5.c \ euc_jp.c euc_kr.c euc_tw.c iso8859_1.c iso8859_2.c \ iso8859_3.c iso8859_4.c iso8859_5.c iso8859_6.c \ iso8859_7.c iso8859_8.c iso8859_9.c iso8859_10.c \ - iso8859_11.c iso8859_13.c iso8859_15.c iso8859_16.c \ + iso8859_11.c iso8859_13.c iso8859_14.c iso8859_15.c iso8859_16.c \ koi8.c koi8_r.c sjis.c utf8.c", "mbstring"); ADD_SOURCES("ext/mbstring", "php_mbregex.c", "mbstring"); }
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php