diff options
author | phunkyfish <phunkyfish@gmail.com> | 2020-02-14 20:20:58 +0000 |
---|---|---|
committer | phunkyfish <phunkyfish@gmail.com> | 2020-02-27 12:55:23 +0000 |
commit | e7c9d247e803331e3c5707303b9c05362edc7473 (patch) | |
tree | 83df70d6f82dff715b11e95d573b6586ec79d307 /tools/depends/target/gnutls | |
parent | 8810f7ecab3eedc859dd1acebc342ffea4d60b34 (diff) |
[darwin_embedded] Move to correct aarch64-apple-darwin host triplet for tvOS/iOS
Diffstat (limited to 'tools/depends/target/gnutls')
-rw-r--r-- | tools/depends/target/gnutls/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/tools/depends/target/gnutls/Makefile b/tools/depends/target/gnutls/Makefile index 8bea0c5f2a..9684596f1a 100644 --- a/tools/depends/target/gnutls/Makefile +++ b/tools/depends/target/gnutls/Makefile @@ -10,14 +10,16 @@ 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) -CONFIGURE_HACKS = ac_cv_func_vfork_works=no -CONFIGURE_HACKS+= ac_cv_func_fork=no +endif + +ifeq ($(OS),darwin_embedded) +CONFIGURE_OPTIONS = --disable-hardware-acceleration endif # configuration settings CONFIGURE=./configure --prefix=$(PREFIX) --disable-shared --without-p11-kit --disable-nls --with-included-unistring \ --with-included-libtasn1 --enable-local-libopts --disable-doc --disable-tests --disable-guile \ - --disable-tools $(CONFIGURE_HACKS) + --disable-tools $(CONFIGURE_OPTIONS) LIBDYLIB=$(PLATFORM)/lib/.libs/lib$(LIBNAME).a |