From c854275d51fa0ac752177495b78843b78d734249 Mon Sep 17 00:00:00 2001 From: Thomas Schmitt Date: Wed, 4 Feb 2009 20:06:56 +0000 Subject: [PATCH] Checking for iconv(3) in separate libiconv (e.g. on FreeBSD) --- configure.ac | 4 ++++ xorriso/configure_ac.txt | 4 ++++ xorriso/xorriso_timestamp.h | 2 +- 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index e81951fd..316f8d5d 100644 --- a/configure.ac +++ b/configure.ac @@ -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" diff --git a/xorriso/configure_ac.txt b/xorriso/configure_ac.txt index 22ef3790..85d113e7 100644 --- a/xorriso/configure_ac.txt +++ b/xorriso/configure_ac.txt @@ -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" diff --git a/xorriso/xorriso_timestamp.h b/xorriso/xorriso_timestamp.h index 0e2af16e..fa501519 100644 --- a/xorriso/xorriso_timestamp.h +++ b/xorriso/xorriso_timestamp.h @@ -1 +1 @@ -#define Xorriso_timestamP "2009.02.04.200055" +#define Xorriso_timestamP "2009.02.04.200653"