diff options
author | SVN Migration <svn@php.net> | 2003-02-27 17:43:39 +0000 |
---|---|---|
committer | SVN Migration <svn@php.net> | 2003-02-27 17:43:39 +0000 |
commit | 078bcec0997ad0e07b720c43cc9e6d0e046a75ab (patch) | |
tree | 36cb0f6be2ef078fe3374de8c087b93ecf82f812 /ext/mbstring/config.m4 | |
parent | fd61f69077f6156ca71dde60ecfd9ed9765a02db (diff) | |
download | php-git-PHP-5.tar.gz |
This commit was manufactured by cvs2svn to create branch 'PHP_5'.PHP-5
Diffstat (limited to 'ext/mbstring/config.m4')
-rw-r--r-- | ext/mbstring/config.m4 | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/ext/mbstring/config.m4 b/ext/mbstring/config.m4 deleted file mode 100644 index af99d893e1..0000000000 --- a/ext/mbstring/config.m4 +++ /dev/null @@ -1,42 +0,0 @@ -dnl -dnl $Id$ -dnl - -PHP_ARG_ENABLE(mbstring, whether to enable multibyte string support, -[ --enable-mbstring Enable multibyte string support]) - -if test "$PHP_MBSTRING" != "no"; then - AC_DEFINE(HAVE_MBSTRING,1,[whether to have multibyte string support]) - - if test "$PHP_MBSTRING" != "no" -o "$PHP_MBSTRING" = "ja"; then - AC_DEFINE(HAVE_MBSTR_JA,1,[whether to have japanese support]) - fi - if test "$PHP_MBSTRING" = "cn"; then - AC_DEFINE(HAVE_MBSTR_CN,1,[whether to have simplified chinese support]) - fi - if test "$PHP_MBSTRING" = "tw"; then - AC_DEFINE(HAVE_MBSTR_TW,1,[whether to have traditional chinese support]) - fi - if test "$PHP_MBSTRING" = "kr"; then - AC_DEFINE(HAVE_MBSTR_KR,1,[whether to have korean support]) - fi - if test "$PHP_MBSTRING" = "ru"; then - AC_DEFINE(HAVE_MBSTR_RU,1,[whether to have russian support]) - fi - if test "$PHP_MBSTRING" = "all"; then - AC_DEFINE(HAVE_MBSTR_JA,1,[whether to have japanese support]) - AC_DEFINE(HAVE_MBSTR_CN,1,[whether to have simplified chinese support]) - AC_DEFINE(HAVE_MBSTR_TW,1,[whether to have traditional chinese support]) - AC_DEFINE(HAVE_MBSTR_KR,1,[whether to have korean support]) - AC_DEFINE(HAVE_MBSTR_RU,1,[whether to have russian support]) - fi - - PHP_NEW_EXTENSION(mbstring, mbfilter_ja.c mbfilter_cn.c mbfilter_tw.c mbfilter_kr.c mbfilter_ru.c mbfilter.c mbstring.c mbregex.c php_mbregex.c html_entities.c php_unicode.c mb_gpc.c, $ext_shared) -fi - -PHP_ARG_ENABLE(mbregex, whether to enable multibyte regex support, -[ --disable-mbregex Disable multibyte regex support], yes, no) - -if test "$PHP_MBREGEX" != "no" -a "$PHP_MBSTRING" != "no"; then - AC_DEFINE(HAVE_MBREGEX, 1, [whether to have multibyte regex support]) -fi |