Checking for iconv(3) in separate libiconv (e.g. on FreeBSD)

This commit is contained in:
Thomas Schmitt 2009-02-04 20:06:56 +00:00
parent 0e26c05593
commit c854275d51
3 changed files with 9 additions and 1 deletions

View File

@ -70,6 +70,10 @@ if test ! $ac_cv_func_fseeko; then
AC_ERROR([Libburn requires largefile support.])
fi
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.
AC_CHECK_LIB(iconv, iconv, , )
AC_PROG_LIBTOOL
AC_SUBST(LIBTOOL_DEPS)
LIBTOOL="$LIBTOOL --silent"

View File

@ -43,6 +43,10 @@ if test ! $ac_cv_func_fseeko; then
AC_ERROR([Libburn requires largefile support.])
fi
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.
AC_CHECK_LIB(iconv, iconv, , )
AC_PROG_LIBTOOL
AC_SUBST(LIBTOOL_DEPS)
LIBTOOL="$LIBTOOL --silent"

View File

@ -1 +1 @@
#define Xorriso_timestamP "2009.02.04.200055"
#define Xorriso_timestamP "2009.02.04.200653"