diff options
author | Andrei Zmievski <andrei@php.net> | 2002-11-13 04:36:04 +0000 |
---|---|---|
committer | Andrei Zmievski <andrei@php.net> | 2002-11-13 04:36:04 +0000 |
commit | e87b45de44b3d1d82b9de87271d876f55c4de8c3 (patch) | |
tree | 99ae8711ec9385d369a61b991f6e3f2d02913537 | |
parent | 09c36c87fb1f9239168951c115d24d89133017a5 (diff) | |
download | php-git-e87b45de44b3d1d82b9de87271d876f55c4de8c3.tar.gz |
Disable mbstring by default.
-rw-r--r-- | ext/mbstring/config.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/mbstring/config.m4 b/ext/mbstring/config.m4 index 838977f971..11d1656302 100644 --- a/ext/mbstring/config.m4 +++ b/ext/mbstring/config.m4 @@ -3,7 +3,7 @@ dnl $Id$ dnl PHP_ARG_ENABLE(mbstring, whether to enable multibyte string support, -[ --disable-mbstring Disable multibyte string support], yes) +[ --enable-mbstring Enable multibyte string support]) if test "$PHP_MBSTRING" != "no"; then AC_DEFINE(HAVE_MBSTRING,1,[whether to have multibyte string support]) @@ -36,7 +36,7 @@ fi PHP_ARG_ENABLE(mbregex, whether to enable multibyte regex support, -[ --disable-mbregex Disable multibyte regex support], yes, no) +[ --enable-mbregex Enable multibyte regex support], no, no) if test "$PHP_MBREGEX" != "no" ; then AC_DEFINE(HAVE_MBREGEX, 1, [whether to have multibyte regex support]) |