pkgsrc - initial commit
[pkgsrc.git] / audio / bmp / hacks.mk
1 # $NetBSD: hacks.mk,v 1.1 2006/08/07 11:21:45 wiz Exp $
2
3 .include "../../mk/compiler.mk"
4
5 # gcc 4.x generates code that produces background noise during playback.
6 # Disabling optimizations when using this compiler solves the problem.
7 .if !empty(CC_VERSION:Mgcc-4*)
8 CFLAGS+=                -O0
9 CXXFLAGS+=              -O0
10 .endif