summaryrefslogtreecommitdiff
path: root/net/bing/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'net/bing/Makefile')
-rw-r--r--net/bing/Makefile17
1 files changed, 16 insertions, 1 deletions
diff --git a/net/bing/Makefile b/net/bing/Makefile
index 8247aa8b22c..c6cbcb48b42 100644
--- a/net/bing/Makefile
+++ b/net/bing/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.11 2003/01/19 07:29:41 salo Exp $
+# $NetBSD: Makefile,v 1.12 2003/02/08 16:26:55 dmcmahill Exp $
# FreeBSD Id: Makefile,v 1.2 1997/10/13 09:14:49 tg Exp
#
@@ -15,3 +15,18 @@ post-install:
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/bing
.include "../../mk/bsd.pkg.mk"
+
+# XXX On NetBSD the gcc-2.95.3 for:
+# XXX
+# XXX alpha
+# XXX
+# XXX has an optimization bug when compiling with -O2 that is tickled by
+# XXX ${WRKSRC}/bing.c
+#
+.if ${OPSYS} == "NetBSD"
+. if (${MACHINE_ARCH} == "alpha")
+CXXFLAGS:= ${CXXFLAGS:C/-O[0-9]*//g}
+CFLAGS:= ${CFLAGS:C/-O[0-9]*//g}
+. endif
+.endif
+