Ticket #1611: --enable-charset by default

configure.ac: change defaults for enable_charset

Signed-off-by: Stan. S. Krupoderov <pashelper@gmail.com>
This commit is contained in:
Stan. S. Krupoderov 2009-09-23 21:05:57 +04:00 committed by Slava Zanko
parent b71c3ccce5
commit 7cf0a3aa2b

View File

@ -498,10 +498,10 @@ dnl
dnl User visible support for charset conversion.
dnl
AC_ARG_ENABLE([charset],
[ --enable-charset Support for charset selection and conversion [[no]]])
[ --enable-charset Support for charset selection and conversion [[yes]]])
have_charset=
charset_msg="no"
if test "x$enable_charset" = xyes; then
if test "x$enable_charset" != "xno"; then
AC_DEFINE(HAVE_CHARSET, 1,
[Define to enable charset selection and conversion])
have_charset=yes