mirror of
https://github.com/php/php-src.git
synced 2024-12-02 14:24:10 +08:00
26 lines
614 B
Plaintext
26 lines
614 B
Plaintext
dnl
|
|
dnl $Id$
|
|
dnl
|
|
|
|
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)
|
|
])
|