diff options
author | foobar <sniper@php.net> | 2002-06-06 12:44:28 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2002-06-06 12:44:28 +0000 |
commit | 49523ba7d15460441fb827c6f3daba550cb075cf (patch) | |
tree | 57c7674f670702bad4d5b366398f4cf892e877cd | |
parent | 678456cf0f711f7bd49333da6da8c1343840cc6f (diff) | |
download | php-git-49523ba7d15460441fb827c6f3daba550cb075cf.tar.gz |
Changed the configure option to be --enable/disable
-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 01a3a22f1d..4ffc3c6505 100644 --- a/ext/mbstring/config.m4 +++ b/ext/mbstring/config.m4 @@ -8,8 +8,8 @@ PHP_ARG_ENABLE(mbstr_enc_trans, whether to enable encoding translation, PHP_ARG_ENABLE(mbregex, whether to enable multibyte regex support, [ --enable-mbregex Enable multibyte regex support], yes) -PHP_ARG_WITH(mbstring, whether to enable multibyte string support, -[ --without-mbstring Disable multibyte string 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]) |