From b01ba353421a64ddb32bdc9adc4ff7b09fe6ecd1 Mon Sep 17 00:00:00 2001 From: Cedric BAIL Date: Tue, 20 Jan 2009 15:33:24 +0000 Subject: [PATCH] * ecore/configure.ac: Missing lib to link against when using a libc that doesn't provide iconv and GNU iconv. Fix from illogict. SVN revision: 38659 --- legacy/ecore/configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legacy/ecore/configure.ac b/legacy/ecore/configure.ac index f0e4be6a80..ea229c0968 100644 --- a/legacy/ecore/configure.ac +++ b/legacy/ecore/configure.ac @@ -254,7 +254,7 @@ if test "x$have_iconv" = "xno" ; then if test "x$have_iconv" != "xyes"; then AC_CHECK_LIB(iconv_plug, iconv, [ - iconv_libs="-liconv_plug" + iconv_libs="-liconv -liconv_plug" have_iconv="yes" ] )