summaryrefslogtreecommitdiff
path: root/security/nettle
diff options
context:
space:
mode:
authormrg <mrg@pkgsrc.org>2015-04-03 18:34:14 +0000
committermrg <mrg@pkgsrc.org>2015-04-03 18:34:14 +0000
commit231399c84a528906e0d727d1c2fa994a5e135718 (patch)
treefc405365c181cea09bae92293144b2ac10584f86 /security/nettle
parentce141e0074804aed20fe7525db2fb6199195e1c1 (diff)
downloadpkgsrc-231399c84a528906e0d727d1c2fa994a5e135718.tar.gz
use --diable-assembler on armv4 systems. they're not supported.
Diffstat (limited to 'security/nettle')
-rw-r--r--security/nettle/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/security/nettle/Makefile b/security/nettle/Makefile
index 16f0af53681..89827fcf2f1 100644
--- a/security/nettle/Makefile
+++ b/security/nettle/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.13 2013/11/26 09:22:19 martin Exp $
+# $NetBSD: Makefile,v 1.14 2015/04/03 18:34:14 mrg Exp $
DISTNAME= nettle-2.7.1
PKGREVISION= 1
@@ -18,6 +18,10 @@ GNU_CONFIGURE= yes
SET_LIBDIR= yes
CONFIGURE_ARGS+= --disable-openssl --disable-shared
+.if (${MACHINE_ARCH} == "earmv4" || ${MACHINE_ARCH} == "armv4")
+CONFIGURE_ARGS+= --disable-assembler
+.endif
+
.include "../../mk/bsd.prefs.mk"
.if !empty(USE_CROSS_COMPILE:M[yY][eE][sS])