summaryrefslogtreecommitdiff
path: root/ext/mbstring/config.m4
diff options
context:
space:
mode:
Diffstat (limited to 'ext/mbstring/config.m4')
-rw-r--r--ext/mbstring/config.m423
1 files changed, 0 insertions, 23 deletions
diff --git a/ext/mbstring/config.m4 b/ext/mbstring/config.m4
deleted file mode 100644
index 1718a91464..0000000000
--- a/ext/mbstring/config.m4
+++ /dev/null
@@ -1,23 +0,0 @@
-dnl $Id$
-dnl config.m4 for extension mbstring
-
-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,[ ])
- PHP_EXTENSION(mbstring, $ext_shared)
-fi
-
-AC_MSG_CHECKING(whether to enable japanese encoding translation)
-AC_ARG_ENABLE(mbstr_enc_trans,
-[ --enable-mbstr-enc-trans Enable japanese encoding translation],[
- if test "$enableval" = "yes" ; then
- AC_DEFINE(MBSTR_ENC_TRANS, 1, [ ])
- AC_MSG_RESULT(yes)
- else
- AC_MSG_RESULT(no)
- fi
-],[
- AC_MSG_RESULT(no)
-])