From: Jakub Bogusz Date: Fri, 7 May 2004 13:15:37 +0000 (+0000) Subject: - use iconv() in libc X-Git-Tag: auto/ac/balsa-2_0_17-2~3 X-Git-Url: http://git.pld-linux.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=28d829f22b14ae181480587cdda429d24dac054a;p=packages%2Fbalsa.git - use iconv() in libc Changed files: balsa-iconv-in-libc.patch -> 1.1 --- diff --git a/balsa-iconv-in-libc.patch b/balsa-iconv-in-libc.patch new file mode 100644 index 0000000..b22769b --- /dev/null +++ b/balsa-iconv-in-libc.patch @@ -0,0 +1,18 @@ +--- balsa-2.0.17/configure.in.orig Sun Mar 28 23:41:56 2004 ++++ balsa-2.0.17/configure.in Fri May 7 13:26:55 2004 +@@ -364,11 +364,12 @@ + [if test "$with_iconv" != yes -a "$with_iconv" != no ; then + CPPFLAGS="-I${with_iconv}/include $CPPFLAGS" + LDFLAGS="-L${with_iconv}/lib $LDFLAGS" +- fi]) +- AC_CHECK_LIB(iconv, iconv_open, , [ ++ fi ++ if test "$with_iconv" != no ; then ++ AC_CHECK_LIB(iconv, iconv_open) ++ fi]) + AC_CHECK_FUNC(iconv_open, , [ + AC_MSG_ERROR([*** You need iconv for balsa.]) +- ]) + ]) + + dnl ##########################################################################