diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2015-04-09 06:48:01 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2015-04-09 06:48:01 +0000 |
commit | 936d5848654a1dbd9884b577dc9498f0fa51fc46 (patch) | |
tree | a4cabed5c4609467c2a3c712436b4091bb8a6bee /main/znc | |
parent | 282b5672d32298b6eb0882d0f4603ee938d5954b (diff) | |
download | aports-936d5848654a1dbd9884b577dc9498f0fa51fc46.tar.bz2 aports-936d5848654a1dbd9884b577dc9498f0fa51fc46.tar.xz |
main/znc: remove unused libiconv
Diffstat (limited to 'main/znc')
-rw-r--r-- | main/znc/APKBUILD | 2 | ||||
-rw-r--r-- | main/znc/libiconv.patch | 17 |
2 files changed, 1 insertions, 18 deletions
diff --git a/main/znc/APKBUILD b/main/znc/APKBUILD index 27081233c5..e5653ae638 100644 --- a/main/znc/APKBUILD +++ b/main/znc/APKBUILD @@ -10,7 +10,7 @@ license="ASL 2.0" depends="" depends_dev="" makedepends="perl-dev openssl-dev cyrus-sasl-dev python-dev c-ares-dev swig - gettext-dev libiconv-dev tcl-dev autoconf automake" + gettext-dev tcl-dev autoconf automake" install="$pkgname.pre-install" pkgusers="$pkgname" subpackages="$pkgname-dev $pkgname-doc $pkgname-extra $pkgname-modtcl diff --git a/main/znc/libiconv.patch b/main/znc/libiconv.patch deleted file mode 100644 index 1fd5838c21..0000000000 --- a/main/znc/libiconv.patch +++ /dev/null @@ -1,17 +0,0 @@ ---- ./configure.ac.orig -+++ ./configure.ac -@@ -504,7 +504,13 @@ - fi - - 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]) |