force to use /usr/lib/libiconv.la library on

mac os x (ecore_txt dependency) if no iconv lib
is forced with --with-iconv-link


SVN revision: 39937
This commit is contained in:
Vincent Torri 2009-04-10 14:23:19 +00:00
parent aa740325f6
commit fb87cf2795
1 changed files with 8 additions and 0 deletions

View File

@ -331,6 +331,14 @@ if test "x${have_iconv}" = "xno" ; then
have_iconv="yes"
])
fi
# force the iconv library on mac os x
case "$host_os" in
darwin*)
iconv_libs="/usr/lib/libiconv.la"
have_iconv="yes"
;;
esac
fi
AC_MSG_CHECKING(for explicit iconv link options)
AC_MSG_RESULT($iconv_libs)