summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>2002-05-04 16:50:10 +0000
committerSascha Schumann <sas@php.net>2002-05-04 16:50:10 +0000
commitee707645928bd4847cd7cd81d52a10853871ad7f (patch)
tree67db838e528a870084206adfbb3143a959ff2cfd
parent9517ff0689ecc85abb932dfc6447161b35abe959 (diff)
downloadphp-git-ee707645928bd4847cd7cd81d52a10853871ad7f.tar.gz
Turn misplaced PHP_ARG_WITH into _ENABLE
and fix --enable-mbstring=shared
-rw-r--r--ext/mbstring/config.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/mbstring/config.m4 b/ext/mbstring/config.m4
index 0ec9d0e986..f250aac3e5 100644
--- a/ext/mbstring/config.m4
+++ b/ext/mbstring/config.m4
@@ -2,15 +2,15 @@ dnl
dnl $Id$
dnl
-PHP_ARG_WITH(mbstring, whether to enable multibyte string support,
-[ --disable-mbstring Disable multibyte string support], yes)
-
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])