From: cedric Date: Tue, 20 Jan 2009 15:33:24 +0000 (+0000) Subject: * ecore/configure.ac: Missing lib to link against when using a libc that doesn't... X-Git-Tag: accepted/2.0/20130306.224007~195^2~1657 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7110e783bf32de323491f0b6db37582097584c5f;p=profile%2Fivi%2Fecore.git * ecore/configure.ac: Missing lib to link against when using a libc that doesn't provide iconv and GNU iconv. Fix from illogict. git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@38659 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/configure.ac b/configure.ac index f0e4be6..ea229c0 100644 --- a/configure.ac +++ b/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" ] )