diff options
author | markd <markd@pkgsrc.org> | 2006-07-08 21:37:02 +0000 |
---|---|---|
committer | markd <markd@pkgsrc.org> | 2006-07-08 21:37:02 +0000 |
commit | 2e2b24d6b74825c28164d150f877436621f39a11 (patch) | |
tree | e8285aa9b6a942d87a4c537d1920e5eaf1a4e7a2 /security | |
parent | 17c5fb3ed0a3c82fd1d2a1a7e6c1a66f9ac5b435 (diff) | |
download | pkgsrc-2e2b24d6b74825c28164d150f877436621f39a11.tar.gz |
Don't try and use assembler when building 64bit on Solaris. It gets it
wrong for both amd64 and sparc.
Fixes PR pkg/32648 and possibly PR pkg/33030.
Diffstat (limited to 'security')
-rw-r--r-- | security/gnupg/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/security/gnupg/Makefile b/security/gnupg/Makefile index 4008490f7fd..c8f70c63e85 100644 --- a/security/gnupg/Makefile +++ b/security/gnupg/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.87 2006/07/03 21:15:14 wiz Exp $ +# $NetBSD: Makefile,v 1.88 2006/07/08 21:37:02 markd Exp $ DISTNAME= gnupg-1.4.4 CATEGORIES= security @@ -35,6 +35,10 @@ EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} CONFIGURE_ARGS+= --disable-gnupg-iconv .endif +.if ${OPSYS} == "SunOS" && defined(ABI) && ${ABI} == 64 +CONFIGURE_ARGS+= --disable-asm +.endif + # XXX: still needed? .if ${OPSYS} == "FreeBSD" SUBST_CLASSES+= fixme |