diff options
author | mrg <mrg> | 2015-04-03 18:34:14 +0000 |
---|---|---|
committer | mrg <mrg> | 2015-04-03 18:34:14 +0000 |
commit | 2c9dbf3d39963d38b89969b14a6eaac7d01f968e (patch) | |
tree | fc405365c181cea09bae92293144b2ac10584f86 /security | |
parent | f0984ca3ca86366cf4b163eb1636d4e424b946f3 (diff) | |
download | pkgsrc-2c9dbf3d39963d38b89969b14a6eaac7d01f968e.tar.gz |
use --diable-assembler on armv4 systems. they're not supported.
Diffstat (limited to 'security')
-rw-r--r-- | security/nettle/Makefile | 6 |
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]) |