mirror of https://github.com/MidnightCommander/mc
* configure.in: Don't check for iconv, it's already checked for
in AM_GNU_GETTEXT.
This commit is contained in:
parent
1da081a1d5
commit
c67f0a6bc9
|
@ -1,3 +1,8 @@
|
|||
2001-07-12 Pavel Roskin <proski@gnu.org>
|
||||
|
||||
* configure.in: Don't check for iconv, it's already checked for
|
||||
in AM_GNU_GETTEXT.
|
||||
|
||||
2001-07-10 Pavel Roskin <proski@gnu.org>
|
||||
|
||||
* doc/mc.1.in: Update documentation about hex search.
|
||||
|
|
|
@ -881,13 +881,6 @@ esac
|
|||
AC_SUBST(cons_saver)
|
||||
AC_SUBST(PAMLIBS)
|
||||
|
||||
dnl
|
||||
dnl Basic support for charset conversion.
|
||||
dnl May be useful e.g. for converting help and hints.
|
||||
dnl
|
||||
have_iconv=
|
||||
AC_CHECK_FUNCS(iconv, [have_iconv=yes])
|
||||
|
||||
dnl
|
||||
dnl User visible support for charset conversion.
|
||||
dnl
|
||||
|
@ -895,7 +888,7 @@ AC_ARG_ENABLE([charset],
|
|||
[--enable-charset Support for charset selection and conversion])
|
||||
have_charset=
|
||||
if test "x$enable_charset" = xyes; then
|
||||
if test -z "$have_iconv"; then
|
||||
if test -z "$am_cv_func_iconv"; then
|
||||
AC_MSG_WARN([Cannot enable charset support because iconv function is missing])
|
||||
else
|
||||
AC_DEFINE(HAVE_CHARSET, 1,
|
||||
|
|
Loading…
Reference in New Issue