aboutsummaryrefslogtreecommitdiffstats
path: root/package/libs/libiconv-full/patches/200-work-with-libtool2.patch
diff options
context:
space:
mode:
authorJosef Schlehofer <pepe.schlehofer@gmail.com>2020-07-20 15:47:31 +0200
committerPaul Spooren <mail@aparcar.org>2020-11-26 13:09:24 -1000
commit75063b941bd224ecc68412a97bf05ab797ecd19f (patch)
treecbf2d3dd06e5fbe3cafe91ba2a9ce7de49b74002 /package/libs/libiconv-full/patches/200-work-with-libtool2.patch
parent3f567d8452644dc5349addabbb8f0bff9d0bc2c0 (diff)
downloadupstream-75063b941bd224ecc68412a97bf05ab797ecd19f.tar.gz
upstream-75063b941bd224ecc68412a97bf05ab797ecd19f.tar.bz2
upstream-75063b941bd224ecc68412a97bf05ab797ecd19f.zip
libiconv-full: update to version 1.16
- Removed following patches: 100-strip_charsets.patch - makes the full variant slim. 101-autotools.patch - this one fails to apply because it was backported from newer versions for 1.11.1. 103-configure_ac_fix.patch - backported from newer versions 200-work-with-libtool2.patch - is not needed anymore, it is done differently in upstream 300-fortify-source-compat.patch - these files are not there anymore - TVHeadend requires working iconv library e.g. transliteration to ASCII and this does not work with libiconv-full currently. There is a simple test, which requires to install iconv package. Before applying this update: root@turris:/# echo ŽluťoučkýKůň | iconv -t ASCII//TRANSLIT//IGNORE luoukK After applying this update: root@turris:~# echo ŽluťoučkýKůň | iconv -t ASCII//TRANSLIT//IGNORE Zlutouck'yKun - Makefile changes: Use HTTPS for their website Fixed deprecated SPDX License Identifier Move PKG_MAINTAINER above PKG_LICENSE Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com> Tested-by: Rosen Penev <rosenp@gmail.com> [malta]
Diffstat (limited to 'package/libs/libiconv-full/patches/200-work-with-libtool2.patch')
-rw-r--r--package/libs/libiconv-full/patches/200-work-with-libtool2.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/package/libs/libiconv-full/patches/200-work-with-libtool2.patch b/package/libs/libiconv-full/patches/200-work-with-libtool2.patch
deleted file mode 100644
index 6e31967f3c..0000000000
--- a/package/libs/libiconv-full/patches/200-work-with-libtool2.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-Make iconv 1.11.x link correctly with libtool2 - argument "-Xcompiler" ensures "-shared" is passed to $(CC) when used as linker. Otherwise $(CC) tries to create an executable and fails while looking for a main()-function
-
-diff -ruN libiconv-1.11.1/lib/Makefile.in libiconv-1.11.1.mod/lib/Makefile.in
---- libiconv-1.11.1/lib/Makefile.in 2006-07-14 15:18:42.000000000 +0200
-+++ libiconv-1.11.1.mod/lib/Makefile.in 2010-12-01 20:47:57.000000000 +0100
-@@ -70,9 +70,9 @@
-
- preloadable_libiconv_linux.so : $(SOURCES)
- if test -n "@GCC@"; then \
-- $(LIBTOOL_LINK) $(CC) $(LDFLAGS) $(INCLUDES) $(CFLAGS) $(CPPFLAGS) $(DEFS) -fPIC -DPIC -DLIBICONV_PLUG $(SOURCES) -shared -o preloadable_libiconv_linux.so; \
-+ $(LIBTOOL_LINK) $(CC) $(LDFLAGS) $(INCLUDES) $(CFLAGS) $(CPPFLAGS) $(DEFS) -fPIC -DPIC -DLIBICONV_PLUG $(SOURCES) -Xcompiler -shared -o preloadable_libiconv_linux.so; \
- else \
-- $(LIBTOOL_LINK) $(CC) $(LDFLAGS) $(INCLUDES) $(CFLAGS) $(CPPFLAGS) $(DEFS) -KPIC -DPIC -DLIBICONV_PLUG $(SOURCES) -shared -o preloadable_libiconv_linux.so; \
-+ $(LIBTOOL_LINK) $(CC) $(LDFLAGS) $(INCLUDES) $(CFLAGS) $(CPPFLAGS) $(DEFS) -KPIC -DPIC -DLIBICONV_PLUG $(SOURCES) -Xcompiler -shared -o preloadable_libiconv_linux.so; \
- fi
-
- preloadable_libiconv_solaris.so : $(SOURCES)