diff options
author | Felix Fietkau <nbd@openwrt.org> | 2013-07-06 14:49:20 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2013-07-06 14:49:20 +0000 |
commit | b7edec4b36e0282a635a408e27d8048ae0f23518 (patch) | |
tree | eb073d26873f93d9a7894397623f38a98e0f89e9 | |
parent | b1e7072f5116aa77db5bb2e079b31cebd4a50ce0 (diff) | |
download | upstream-b7edec4b36e0282a635a408e27d8048ae0f23518.tar.gz upstream-b7edec4b36e0282a635a408e27d8048ae0f23518.tar.bz2 upstream-b7edec4b36e0282a635a408e27d8048ae0f23518.zip |
gettext-full: use portability header files for byteswapping on non-linux systems
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 37186
-rw-r--r-- | package/libs/gettext-full/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/package/libs/gettext-full/Makefile b/package/libs/gettext-full/Makefile index 7b640e6e45..11dc1f5643 100644 --- a/package/libs/gettext-full/Makefile +++ b/package/libs/gettext-full/Makefile @@ -35,6 +35,9 @@ define Package/libintl-full endef TARGET_CFLAGS += $(FPIC) +ifneq ($(HOST_OS),Linux) + TARGET_CFLAGS += -I$(STAGING_DIR_HOST)/include +endif CONFIGURE_ARGS += \ --enable-shared \ |