diff options
author | hubertf <hubertf@pkgsrc.org> | 2003-01-24 20:13:42 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 2003-01-24 20:13:42 +0000 |
commit | 9b3abb1066b84169831426d77ab9027437750f8f (patch) | |
tree | cab56a974efaa7246ec2cc29c35e78124cddf7e2 /graphics/ImageMagick | |
parent | 47b8137cdd0b304cc0ae72c30c1a10373adfeb0b (diff) | |
download | pkgsrc-9b3abb1066b84169831426d77ab9027437750f8f.tar.gz |
When compiling on cobalt, this spins when compiling one .c file with optimisation turned on. Reduce optimisation for mipsel.
Diffstat (limited to 'graphics/ImageMagick')
-rw-r--r-- | graphics/ImageMagick/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/ImageMagick/Makefile b/graphics/ImageMagick/Makefile index e634323d6d2..8cee8bf0f57 100644 --- a/graphics/ImageMagick/Makefile +++ b/graphics/ImageMagick/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.89 2003/01/03 23:04:35 wiz Exp $ +# $NetBSD: Makefile,v 1.90 2003/01/24 20:13:42 hubertf Exp $ DISTNAME= ImageMagick-${IM_MAJOR_VER}-${IM_MINOR_VER} PKGNAME= ImageMagick-${IM_MAJOR_VER}.${IM_MINOR_VER} @@ -35,8 +35,8 @@ NOT_FOR_PLATFORM= NetBSD-*-sparc64 .include "../../mk/bsd.prefs.mk" -# Avoid compiler bug on "arm32" -.if (${MACHINE_ARCH} == arm32) +# Avoid compiler bug on "arm32" and "mipsel" (cobalt?) +.if (${MACHINE_ARCH} == arm32) || (${MACHINE_ARCH} == mipsel) CFLAGS= -O .endif |