# LIBICONV_CHECK_CONFIG ([DEFAULT-ACTION])
# ----------------------------------------------------------
# Alexander Vladishev Feb-02-2007
# Checks for iconv. DEFAULT-ACTION is the string yes or no to
# specify whether to default to --with-iconv or --without-iconv.
# If not supplied, DEFAULT-ACTION is no.
# This macro #defines HAVE_ICONV if a required header files is
# found, and sets @ICONV_LDFLAGS@ and @ICONV_CFLAGS@ to the necessary
# This macro is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
AC_DEFUN([LIBICONV_TRY_LINK],
iconv_t cd = iconv_open("","");
iconv(cd, NULL, NULL, NULL, NULL);
AC_DEFUN([LIBICONV_CHECK_CONFIG],
If you want to specify iconv installation directories:
AC_HELP_STRING([--with-iconv@<:@=DIR@:>@], [use iconv from given base install directory (DIR), default is to search through a number of common places for the iconv files.])],
if test "$withval" = "yes"; then
ICONV_CFLAGS="-I/usr/include"
ICONV_LDFLAGS="-L/usr/lib"
elif test "$withval" != "no"; then
_iconv_dir_lib="$withval/lib"
ICONV_CFLAGS="-I$withval/include"
ICONV_LDFLAGS="-L$_iconv_dir_lib"
AC_ARG_WITH([iconv-include],
AC_HELP_STRING([--with-iconv-include@<:@=DIR@:>@],
[use iconv include headers from given path.]
ICONV_CFLAGS="-I$withval"
AC_HELP_STRING([--with-iconv-lib@<:@=DIR@:>@],
[use iconv libraries from given path.]
ICONV_LDFLAGS="-L$withval"
_iconv_dir_lib="-L$withval"
AC_CHECK_HEADER([iconv.h],[found_iconv=yes])
AC_MSG_CHECKING(for ICONV support)
if test -n "$_iconv_dir_set" -o "x$found_iconv" = xyes; then
elif test -f /usr/local/include/iconv.h; then
ICONV_CFLAGS="-I/usr/local/include"
ICONV_LDFLAGS="-L/usr/local/lib"
if test "x$found_iconv" = "xyes"; then
am_save_LDFLAGS="$LDFLAGS"
CFLAGS="$CFLAGS $ICONV_CFLAGS"