summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authorjperkin <jperkin@pkgsrc.org>2014-01-21 12:13:16 +0000
committerjperkin <jperkin@pkgsrc.org>2014-01-21 12:13:16 +0000
commit0ce31560445abf5eb29eac0715da91f62cbac663 (patch)
treef764a416df897158b38eb31c02ebe80e694931d4 /security
parent22573c0427e116f3038a446e9fcbd0c4e7c1b2b7 (diff)
downloadpkgsrc-0ce31560445abf5eb29eac0715da91f62cbac663.tar.gz
Disable inline assembly on SunOS for now too.
Diffstat (limited to 'security')
-rw-r--r--security/gnutls/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/security/gnutls/Makefile b/security/gnutls/Makefile
index 1d9ce7c29d5..97e6b1e19b4 100644
--- a/security/gnutls/Makefile
+++ b/security/gnutls/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.138 2014/01/17 19:13:37 tron Exp $
+# $NetBSD: Makefile,v 1.139 2014/01/21 12:13:16 jperkin Exp $
DISTNAME= gnutls-3.2.8.1
CATEGORIES= security devel
@@ -43,8 +43,8 @@ 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"
+# Assembler support is broken for Mac OS X and SunOS in 3.2.8.1.
+.if ${OPSYS} == "Darwin" || ${OPSYS} == "SunOS"
CONFIGURE_ARGS+= --disable-hardware-acceleration
.endif