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
commit3029bec6533d0020c3934541f55c7888fddb52a9 (patch)
treefc405365c181cea09bae92293144b2ac10584f86 /security/nettle
parentcfb80925688677691916d7fdc69a503438e850e7 (diff)
downloadpkgsrc-3029bec6533d0020c3934541f55c7888fddb52a9.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])