summaryrefslogtreecommitdiff
path: root/graphics
diff options
context:
space:
mode:
authorhubertf <hubertf@pkgsrc.org>2003-01-24 20:13:42 +0000
committerhubertf <hubertf@pkgsrc.org>2003-01-24 20:13:42 +0000
commit9b3abb1066b84169831426d77ab9027437750f8f (patch)
treecab56a974efaa7246ec2cc29c35e78124cddf7e2 /graphics
parent47b8137cdd0b304cc0ae72c30c1a10373adfeb0b (diff)
downloadpkgsrc-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')
-rw-r--r--graphics/ImageMagick/Makefile6
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