diff options
author | tron <tron@pkgsrc.org> | 2001-02-22 07:43:08 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2001-02-22 07:43:08 +0000 |
commit | 701b8d94f1c05f0e13ca3f565f3cc7c7a2fb334d (patch) | |
tree | a00ac73da73d858dfb13a09492302de2448801f4 | |
parent | 13253b669752a2bf7d949213912b8891b9cf8eaa (diff) | |
download | pkgsrc-701b8d94f1c05f0e13ca3f565f3cc7c7a2fb334d.tar.gz |
Don't use sparc assembler code under SunOS because it causes link failures.
-rw-r--r-- | security/pgp2/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/security/pgp2/Makefile b/security/pgp2/Makefile index 3a88fd99094..e0902e445c7 100644 --- a/security/pgp2/Makefile +++ b/security/pgp2/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.28 2001/02/17 17:50:01 wiz Exp $ +# $NetBSD: Makefile,v 1.29 2001/02/22 07:43:08 tron Exp $ # FreeBSD Id: Makefile,v 1.20 1997/08/27 13:06:01 ache Exp # @@ -8,7 +8,7 @@ CATEGORIES= security MASTER_SITES= ftp://ftp.ifi.uio.no/pub/pgp/2.x/src/ \ ftp://ftp.kiarchive.ru/pub/unix/crypto/pgp/ -MAINTAINER= packages@NetBSD.ORG +MAINTAINER= packages@netbsd.org HOMEPAGE= http://www.pgpi.com/ COMMENT= Public-Key encryption and digital signature utility @@ -38,10 +38,10 @@ CFLAGS= PGPLIB= ${PREFIX}/share/pgp CFLAGS+= -DPGP_SYSTEM_DIR=\\\"${PGPLIB}/\\\" -.if ${MACHINE_ARCH} == "i386" +.if (${MACHINE_ARCH} == "i386") OBJS_EXT= _80386.o _zmatch.o ASMFLAG= -DASM -.elif ${MACHINE_ARCH} == "m68k" +.elif (${MACHINE_ARCH} == "m68k") .ifdef M68060 OBJS_EXT= ASMFLAG= -m68060 -DPORTABLE -DMPORTABLE @@ -49,7 +49,7 @@ ASMFLAG= -m68060 -DPORTABLE -DMPORTABLE OBJS_EXT= mc68020.o ASMFLAG= .endif -.elif ${MACHINE_ARCH} == "sparc" +.elif (${MACHINE_ARCH} == "sparc") && (${OPSYS} != SunOS) OBJS_EXT= sparc.o ASMFLAG= .else |