diff options
author | salo <salo@pkgsrc.org> | 2003-01-26 17:45:28 +0000 |
---|---|---|
committer | salo <salo@pkgsrc.org> | 2003-01-26 17:45:28 +0000 |
commit | b13b7447bbb76d2316997d5a1b6836208a1a0384 (patch) | |
tree | 404c37b7e5206adc290c538d8586025fa785a3ec /graphics | |
parent | da9eb1231db2986a91dfc7a55db41b06191bbf45 (diff) | |
download | pkgsrc-b13b7447bbb76d2316997d5a1b6836208a1a0384.tar.gz |
Remove the arm32 optimization workaround as it applies to egcs
only and at least GCC 2.95.3 is required by the package.
Tested by martin on shark.
Diffstat (limited to 'graphics')
-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 7351334b8bf..3022c56db0f 100644 --- a/graphics/ImageMagick/Makefile +++ b/graphics/ImageMagick/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.92 2003/01/25 17:30:03 hubertf Exp $ +# $NetBSD: Makefile,v 1.93 2003/01/26 17:45:28 salo Exp $ DISTNAME= ImageMagick-${IM_MAJOR_VER}-${IM_MINOR_VER} PKGNAME= ImageMagick-${IM_MAJOR_VER}.${IM_MINOR_VER} @@ -39,8 +39,8 @@ NOT_FOR_PLATFORM= NetBSD-*-sparc64 .include "../../lang/gcc/buildlink2.mk" GCC_REQD= 2.95.3 -# Avoid compiler bug on "arm32" and "mipsel" (cobalt?) -.if (${MACHINE_ARCH} == arm32) || (${MACHINE_ARCH} == mipsel) +# Avoid compiler bug on "mipsel" (cobalt?) +.if (${MACHINE_ARCH} == mipsel) CFLAGS= -O .endif |