diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2011-02-02 01:26:19 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2011-02-02 01:26:19 +0000 |
commit | 1ada5138172deb2928250c9f7627afa043f55d74 (patch) | |
tree | b66e142a6433827e33cca80181204147b2db410d /include/nls.mk | |
parent | bd8a1549eb8011ad00ef08f8596366a576fd49a3 (diff) | |
download | upstream-1ada5138172deb2928250c9f7627afa043f55d74.tar.gz upstream-1ada5138172deb2928250c9f7627afa043f55d74.tar.bz2 upstream-1ada5138172deb2928250c9f7627afa043f55d74.zip |
prepare support for libiconv, libintl stub/full switching
SVN-Revision: 25302
Diffstat (limited to 'include/nls.mk')
-rw-r--r-- | include/nls.mk | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/include/nls.mk b/include/nls.mk new file mode 100644 index 0000000000..7743da470a --- /dev/null +++ b/include/nls.mk @@ -0,0 +1,40 @@ +# +# Copyright (C) 2011 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +# iconv full +ifeq ($(CONFIG_BUILD_NLS),y) + ICONV_PREFIX:=$(STAGING_DIR)/usr/lib/libiconv-full + ICONV_FULL:=1 + + INTL_PREFIX:=$(STAGING_DIR)/usr/lib/libintl-full + INTL_FULL:=1 + +# iconv stub +else + ICONV_PREFIX:=$(STAGING_DIR)/usr/lib/libiconv-stub + ICONV_FULL:= + + INTL_PREFIX:=$(STAGING_DIR)/usr/lib/libintl-stub + INTL_FULL:= +endif + +PKG_CONFIG_DEPENDS += CONFIG_BUILD_NLS +PKG_BUILD_DEPENDS += !BUILD_NLS:libiconv !BUILD_NLS:gettext + +ICONV_DEPENDS:=+BUILD_NLS:libiconv-full +ICONV_CFLAGS:=-I$(ICONV_PREFIX)/include +ICONV_CPPFLAGS:=-I$(ICONV_PREFIX)/include +ICONV_LDFLAGS:=-L$(ICONV_PREFIX)/lib + +INTL_DEPENDS:=+BUILD_NLS:libintl-full +INTL_CFLAGS:=-I$(INTL_PREFIX)/include +INTL_CPPFLAGS:=-I$(INTL_PREFIX)/include +INTL_LDFLAGS:=-L$(INTL_PREFIX)/lib + +TARGET_CFLAGS += $(ICONV_CFLAGS) $(INTL_CFLAGS) +TARGET_CPPFLAGS += $(ICONV_CFLAGS) $(INTL_CPPFLAGS) +TARGET_LDFLAGS += $(ICONV_LDFLAGS) $(INTL_LDFLAGS) |