From: Keith Packard Date: Thu, 25 Oct 2007 08:51:38 +0000 (-0700) Subject: fontconfig needs configure option to use gnu iconv (bug 4083). X-Git-Tag: 2.4.91~5 X-Git-Url: https://git.wh0rd.org/?p=fontconfig.git;a=commitdiff_plain;h=349182784fdd0acf5d1262d8876c967f69dc30aa fontconfig needs configure option to use gnu iconv (bug 4083). Existing Solaris workaround was broken; mis-matching values caused the test for libiconv to always fail. --- diff --git a/configure.in b/configure.in index 5e3392f..6c2e431 100644 --- a/configure.in +++ b/configure.in @@ -186,8 +186,8 @@ else AC_TRY_LINK([#include ], [iconv_open ("from", "to");], - [use_iconv=true], - [use_iconv=false]) + [use_iconv=1], + [use_iconv=0]) if test x$use_iconv = x1; then ICONV_LIBS="-liconv"