From 4fa7ed9388f3ca81d97cad2099a6f9fa9f8098de Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Sun, 11 Dec 2016 16:56:19 +0100 Subject: add libiconv-tiny implementation To use it enable UCLIBC_HAS_LIBICONV, then iconv_open/iconv_close should be available. --- Makefile.in | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'Makefile.in') diff --git a/Makefile.in b/Makefile.in index c5909796d..75428046d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -38,6 +38,7 @@ include $(top_srcdir)libpthread/Makefile.in include $(top_srcdir)librt/Makefile.in include $(top_srcdir)libuargp/Makefile.in include $(top_srcdir)libubacktrace/Makefile.in +include $(top_srcdir)libiconv/Makefile.in # last included to catch all the objects added by others (locales/threads) include $(top_srcdir)libc/Makefile.in @@ -278,6 +279,7 @@ HEADERS_RM-$(UCLIBC_HAS_GNU_ERROR) += error.h HEADERS_RM-$(UCLIBC_HAS_GETOPT_LONG) += getopt.h HEADERS_RM-$(UCLIBC_HAS_IPV6) += netinet/ip6.h netinet/icmp6.h HEADERS_RM-$(UCLIBC_HAS_BACKTRACE) += execinfo.h +HEADERS_RM-$(UCLIBC_HAS_LIBICONV) += iconv.h HEADERS_RM-$(UCLIBC_HAS_LOCALE) += iconv.h bits/uClibc_ctype.h HEADERS_RM-$(UCLIBC_HAS_PTY) += pty.h HEADERS_RM-$(UCLIBC_HAS_REALTIME) += mqueue.h bits/mqueue.h sched.h \ @@ -375,6 +377,9 @@ endif ifeq ($(UCLIBC_HAS_LIBUTIL),y) EMPTY_LIB_NAMES += util endif +ifeq ($(UCLIBC_HAS_LIBICONV),y) +EMPTY_LIB_NAMES += iconv +endif EMPTY_LIBS = $(EMPTY_LIB_NAMES:%=lib/lib%.a) $(EMPTY_LIBS): -- cgit v1.2.3