diff options
author | tron <tron> | 1999-04-24 16:17:40 +0000 |
---|---|---|
committer | tron <tron> | 1999-04-24 16:17:40 +0000 |
commit | be53338e8c164aca9582317107ebead75e2ff1ff (patch) | |
tree | 6765ce231b6919363ee411477e40d05581af5360 /graphics | |
parent | 8fc941078a82f98f8071a4da05878d24b13c17ab (diff) | |
download | pkgsrc-be53338e8c164aca9582317107ebead75e2ff1ff.tar.gz |
Don't attempt to build this package on 1.3 or 1.3.x ELF systems.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/ImageMagick/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/graphics/ImageMagick/Makefile b/graphics/ImageMagick/Makefile index dc39dd0a1d9..cd8f1ce8a37 100644 --- a/graphics/ImageMagick/Makefile +++ b/graphics/ImageMagick/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.37 1999/04/05 01:11:58 tron Exp $ +# $NetBSD: Makefile,v 1.38 1999/04/24 16:17:40 tron Exp $ # DISTNAME= ImageMagick-4.2.2 @@ -27,4 +27,9 @@ USE_IMAKE= yes XMKMF= ${MAKE_ENV} xmkmf -a MAKE_ENV+= LOCALBASE=${LOCALBASE} PREFIX=${PREFIX} +GCC_VERSION!= gcc --version +.if (${GCC_VERSION:C/-.*$$//} != egcs) +NOT_FOR_ARCHS= alpha pmax +.endif + .include "../../mk/bsd.pkg.mk" |