summaryrefslogtreecommitdiffstats
path: root/src/gettext.mk
diff options
context:
space:
mode:
authorVolker Grabsch <vog@notjusthosting.com>2009-02-28 02:37:50 (GMT)
committerVolker Grabsch <vog@notjusthosting.com>2009-02-28 02:37:50 (GMT)
commitae5363288d7cd4a149057d3e8385f40898fc6a7a (patch)
treec6d48f3f087f29947d0209b861a0e15d7d10c2d8 /src/gettext.mk
parentdeab414c069e54009961e86a9aa29ccd8fbe8eeb (diff)
downloadmxe-ae5363288d7cd4a149057d3e8385f40898fc6a7a.zip
mxe-ae5363288d7cd4a149057d3e8385f40898fc6a7a.tar.gz
mxe-ae5363288d7cd4a149057d3e8385f40898fc6a7a.tar.bz2
fixed dependecies of gettext
Diffstat (limited to 'src/gettext.mk')
-rw-r--r--src/gettext.mk5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gettext.mk b/src/gettext.mk
index 77091ac..95159b9 100644
--- a/src/gettext.mk
+++ b/src/gettext.mk
@@ -6,7 +6,7 @@ $(PKG)_VERSION := 0.17
$(PKG)_SUBDIR := gettext-$($(PKG)_VERSION)
$(PKG)_FILE := gettext-$($(PKG)_VERSION).tar.gz
$(PKG)_URL := ftp://ftp.gnu.org/pub/gnu/gettext/$($(PKG)_FILE)
-$(PKG)_DEPS := gcc
+$(PKG)_DEPS := gcc libiconv
define $(PKG)_UPDATE
wget -q -O- 'http://www.gnu.org/software/gettext/' | \
@@ -42,6 +42,7 @@ define $(PKG)_BUILD
--disable-shared \
--prefix='$(PREFIX)/$(TARGET)' \
--enable-threads=win32 \
- --without-libexpat-prefix
+ --without-libexpat-prefix \
+ --without-libxml2-prefix
$(MAKE) -C '$(1)/gettext-runtime/intl' -j '$(JOBS)' SHELL=bash install
endef