1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-26 20:25:14 +03:00

- configure.in: fixed iconv detection on AIX (stric)

Daniel
This commit is contained in:
Daniel Veillard 2001-02-19 15:14:59 +00:00
parent 88f8f6f374
commit a8abee69b2
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Mon Feb 19 16:13:22 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* configure.in: fixed iconv detection on AIX (stric)
Mon Feb 19 10:59:41 CET 2001 Bjorn Reese <breese@users.sourceforge.net>
* xpath.c: fixed "*" (unbelievable !) and a couple of warnings

View File

@ -320,7 +320,7 @@ if test "$with_iconv" = "no" ; then
echo Disabling ICONV support
WITH_ICONV=0
else
AC_CHECK_FUNCS(iconv)
AC_CHECK_FUNC(iconv, , AC_CHECK_LIB(iconv, iconv))
if test "$have_iconv" != "" ; then
echo Iconv support not found
WITH_ICONV=0