* 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
This commit is contained in:
Cedric BAIL 2009-01-20 15:33:24 +00:00
parent 5621e47f1c
commit b01ba35342
1 changed files with 1 additions and 1 deletions

View File

@ -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"
]
)