diff options
Diffstat (limited to 'main/znc/libiconv.patch')
-rw-r--r-- | main/znc/libiconv.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/main/znc/libiconv.patch b/main/znc/libiconv.patch new file mode 100644 index 0000000000..0af3a21048 --- /dev/null +++ b/main/znc/libiconv.patch @@ -0,0 +1,16 @@ +--- ./configure.ac.orig ++++ ./configure.ac +@@ -419,7 +419,12 @@ + if test x"$EXTRA" = "xyes" + then + AC_CHECK_FUNC( iconv, CHARSET=1 ) +- AC_CHECK_LIB( iconv, iconv_open, LIBICONV=-liconv ; CHARSET=1 ) ++ dnl On some systems iconv is in a separate library, and may actually ++ dnl be named libiconv. ++ AC_CHECK_LIB( iconv, libiconv_open, LIBICONV=-liconv ; CHARSET=1 ) ++ if test $ac_cv_lib_iconv_libiconv = no; then ++ AC_CHECK_LIB( iconv, iconv_open, LIBICONV=-liconv ; CHARSET=1 ) ++ fi + if test "x$CHARSET" = "x1" + then + AC_MSG_CHECKING([whether iconv expects a const second argument]) |