aboutsummaryrefslogtreecommitdiff
path: root/tools/depends
diff options
context:
space:
mode:
authorMemphiz <memphis@machzwo.de>2013-09-08 23:28:25 +0200
committerwsnipex <wsnipex@a1.net>2013-10-07 09:06:49 +0200
commit80c04ea636958a5941fc16cd1f235a1d055c8609 (patch)
tree066811d5748a96a1c415b19f1f69d54d9709d173 /tools/depends
parentffe05b6dbeabc60a2c2eee60b0bd2cd05d2a8012 (diff)
[gnutls] - for compiling on osx and ios we need to disable-nls - also we need to use our native tar for extracting the xz tarball
Diffstat (limited to 'tools/depends')
-rw-r--r--tools/depends/target/gnutls/Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/tools/depends/target/gnutls/Makefile b/tools/depends/target/gnutls/Makefile
index c9b0fc2371..7e7ec69bcc 100644
--- a/tools/depends/target/gnutls/Makefile
+++ b/tools/depends/target/gnutls/Makefile
@@ -7,9 +7,14 @@ VERSION=3.1.14
SOURCE=$(LIBNAME)-$(VERSION)
ARCHIVE=$(SOURCE).tar.xz
+ifeq (darwin, $(findstring darwin, $(HOST)))
+# darwins tar doesn't know about xz - so we need our native version of tar here
+ARCHIVE_TOOL=$(ARCHIVE_TOOL_NATIVE)
+endif
+
# configuration settings
CONFIGURE=cp -f $(CONFIG_SUB) $(CONFIG_GUESS) .; \
- ./configure --prefix=$(PREFIX) --disable-shared --without-p11-kit
+ ./configure --prefix=$(PREFIX) --disable-shared --without-p11-kit --disable-nls
LIBDYLIB=$(PLATFORM)/src/.libs/$(LIBNAME).a