diff options
author | tron <tron@pkgsrc.org> | 1999-12-02 14:45:57 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 1999-12-02 14:45:57 +0000 |
commit | f01494702ba7ef4ab3c107e54cb39b7ab9c85641 (patch) | |
tree | 0bada89fd2b15ad5cfb25be8275f42d6ffd81b81 /print | |
parent | 5c39aa1e36f57f4c5dec700cd50fa6666664cbcb (diff) | |
download | pkgsrc-f01494702ba7ef4ab3c107e54cb39b7ab9c85641.tar.gz |
Compile this package without optimization under arm32 port to avoid
problems reported in PR pkg/7256.
Diffstat (limited to 'print')
-rw-r--r-- | print/ghostscript5/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/print/ghostscript5/Makefile b/print/ghostscript5/Makefile index 77e840d78b6..6d2f7538698 100644 --- a/print/ghostscript5/Makefile +++ b/print/ghostscript5/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.43 1999/12/02 14:26:30 tron Exp $ +# $NetBSD: Makefile,v 1.44 1999/12/02 14:45:57 tron Exp $ # DISTNAME= ghostscript-5.50 @@ -34,6 +34,8 @@ MAKEFILE= unix-gcc.mak MAKE_ENV+= MAKEOBJDIR=. prefix=${PREFIX} .if ${OPSYS} == "SunOS" LDFLAGS+= -L${LOCALBASE}/bsd/lib +.elif ${OPSYS} == NetBSD && ${MACHINE_ARCH} == arm32 +CFLAGS= .endif .if defined(PAPERSIZE) && (${PAPERSIZE} == "A4" || ${PAPERSIZE} == "a4") MAKE_FLAGS+= -DA4 |