summaryrefslogtreecommitdiff
path: root/audio/bmp/Makefile
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2006-08-07 11:21:45 +0000
committerwiz <wiz@pkgsrc.org>2006-08-07 11:21:45 +0000
commit9ec60c8bf7ac2ca4b94f142bb3fa423f7c8387a6 (patch)
treeeb6859edc03e7c6129a1267d8c7b1cf1b38140f6 /audio/bmp/Makefile
parent8a25ce73ea8b9b404a30b11785e6324dcb2a9092 (diff)
downloadpkgsrc-9ec60c8bf7ac2ca4b94f142bb3fa423f7c8387a6.tar.gz
Move gcc4 hack into hacks.mk
Diffstat (limited to 'audio/bmp/Makefile')
-rw-r--r--audio/bmp/Makefile9
1 files changed, 1 insertions, 8 deletions
diff --git a/audio/bmp/Makefile b/audio/bmp/Makefile
index 3395e277d4a..b464909ba1c 100644
--- a/audio/bmp/Makefile
+++ b/audio/bmp/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.18 2006/07/31 21:43:55 jmmv Exp $
+# $NetBSD: Makefile,v 1.19 2006/08/07 11:21:45 wiz Exp $
#
BMP_ENABLE_ENCODERS= yes
@@ -27,10 +27,3 @@ LDFLAGS.NetBSD+= -lstdc++ -lm
.include "../../sysutils/desktop-file-utils/desktopdb.mk"
.include "../../mk/bsd.pkg.mk"
-
-# gcc 4.x generates code that produces background noise during playback.
-# Disabling optimizations when using this compiler solves the problem.
-.if !empty(CC_VERSION:Mgcc-4*)
-CFLAGS+= -O0
-CXXFLAGS+= -O0
-.endif