diff options
author | SVN Migration <svn@php.net> | 2002-05-19 13:54:38 +0000 |
---|---|---|
committer | SVN Migration <svn@php.net> | 2002-05-19 13:54:38 +0000 |
commit | 62e263f01ef567ae3926739f37d13cac17fe7739 (patch) | |
tree | 353ff240a432d453632dcad134524cbb9e0ea610 /ext/mbstring/config.m4 | |
parent | e3490f1429d8f03c16d8cef7cd835c3fb2d5b43e (diff) | |
download | php-git-php-4.3.0dev-ZendEngine2.tar.gz |
This commit was manufactured by cvs2svn to create tagphp-4.3.0dev-ZendEngine2
'php_4_3_0_dev_ZendEngine2'.
Diffstat (limited to 'ext/mbstring/config.m4')
-rw-r--r-- | ext/mbstring/config.m4 | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/ext/mbstring/config.m4 b/ext/mbstring/config.m4 deleted file mode 100644 index f250aac3e5..0000000000 --- a/ext/mbstring/config.m4 +++ /dev/null @@ -1,46 +0,0 @@ -dnl -dnl $Id$ -dnl - -PHP_ARG_ENABLE(mbstr_enc_trans, whether to enable encoding translation, -[ --enable-mbstr-enc-trans Enable encoding translation], yes) - -PHP_ARG_ENABLE(mbregex, whether to enable multibyte regex support, -[ --enable-mbregex Enable multibyte regex support], yes) - -PHP_ARG_ENABLE(mbstring, whether to enable multibyte string support, -[ --disable-mbstring Disable multibyte string support], yes) - -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" = "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]) - fi - PHP_NEW_EXTENSION(mbstring, mbfilter_ja.c mbfilter_cn.c mbfilter_tw.c mbfilter_kr.c mbfilter.c mbstring.c mbregex.c php_mbregex.c, $ext_shared) -else - PHP_MBSTR_ENC_TRANS=no -fi - -if test "$PHP_MBSTR_ENC_TRANS" != "no" ; then - AC_DEFINE(MBSTR_ENC_TRANS, 1, [whether to have encoding translation]) -fi - -if test "$MBREGEX" != "no" ; then - AC_DEFINE(HAVE_MBREGEX, 1, [whether to have multibyte regex support]) -fi |