diff options
author | tron <tron@pkgsrc.org> | 2014-01-17 19:13:37 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2014-01-17 19:13:37 +0000 |
commit | 31580ec6d41f6dbb50a85185302c6fdb2375bf88 (patch) | |
tree | 97099a0fabedcf1d0ddff8e2bbab6b1900fbe6f5 /security | |
parent | 498e6eea0018fdeab5ec5c2a7e3496a4fa24a10e (diff) | |
download | pkgsrc-31580ec6d41f6dbb50a85185302c6fdb2375bf88.tar.gz |
Disable assembler code under Mac OS X which is broken in this release.
Diffstat (limited to 'security')
-rw-r--r-- | security/gnutls/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/security/gnutls/Makefile b/security/gnutls/Makefile index a93fa79dbed..1d9ce7c29d5 100644 --- a/security/gnutls/Makefile +++ b/security/gnutls/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.137 2014/01/16 10:14:09 wiz Exp $ +# $NetBSD: Makefile,v 1.138 2014/01/17 19:13:37 tron Exp $ DISTNAME= gnutls-3.2.8.1 CATEGORIES= security devel @@ -43,6 +43,11 @@ EGDIR= ${PREFIX}/share/examples/gnutls .include "../../mk/bsd.prefs.mk" +# Assembler support is broken for Mac OS X in 3.2.8.1. +.if ${OPSYS} == "Darwin" +CONFIGURE_ARGS+= --disable-hardware-acceleration +.endif + INSTALLATION_DIRS= ${DOCDIR} ${EGDIR} include/gnutls post-install: |