Provisory patch on ticket 152: GNU libiconv needs -liconv but offers no iconv()

This commit is contained in:
Thomas Schmitt 2009-06-30 12:03:09 +00:00
parent 0b6d93c554
commit b4729a6004
3 changed files with 6 additions and 2 deletions

View File

@ -74,6 +74,8 @@ fi
dnl If iconv(3) is in an extra lib, then it gets added to variable LIBS. dnl If iconv(3) is in an extra lib, then it gets added to variable LIBS.
dnl If not, then no -liconv will be added. dnl If not, then no -liconv will be added.
AC_CHECK_LIB(iconv, iconv, , ) AC_CHECK_LIB(iconv, iconv, , )
dnl GNU iconv has no function iconv() but libiconv() and a macro iconv()
AC_CHECK_LIB(iconv, libiconv, , )
AC_PROG_LIBTOOL AC_PROG_LIBTOOL
AC_SUBST(LIBTOOL_DEPS) AC_SUBST(LIBTOOL_DEPS)

View File

@ -46,7 +46,9 @@ fi
dnl If iconv(3) is in an extra libiconv, then it gets added to variable LIBS. dnl If iconv(3) is in an extra libiconv, then it gets added to variable LIBS.
dnl If not, then no -liconv will be added. dnl If not, then no -liconv will be added.
AC_CHECK_LIB(iconv, iconv, , ) AC_CHECK_LIB(iconv, iconv, , )
dnl GNU iconv has no function iconv() but libiconv() and a macro iconv()
AC_CHECK_LIB(iconv, libiconv, , )
AC_PROG_LIBTOOL AC_PROG_LIBTOOL
AC_SUBST(LIBTOOL_DEPS) AC_SUBST(LIBTOOL_DEPS)
LIBTOOL="$LIBTOOL --silent" LIBTOOL="$LIBTOOL --silent"

View File

@ -1 +1 @@
#define Xorriso_timestamP "2009.06.28.100124" #define Xorriso_timestamP "2009.06.30.120311"