summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authortron <tron@pkgsrc.org>2006-06-30 15:13:51 +0000
committertron <tron@pkgsrc.org>2006-06-30 15:13:51 +0000
commit1402866595d54be21ff422563d29ad7ddafa87a2 (patch)
treea7bedf9c8f4bb7eea49c581d10d5d812e7b7bcb3 /net
parent1d610b254c9e965181f9c8aa0bfdd934e5691b6a (diff)
downloadpkgsrc-1402866595d54be21ff422563d29ad7ddafa87a2.tar.gz
Remove "-Wall" option when compiling with GCC 4.1.x under NetBSD.
It gets confused by the definition of the ar_tha() macro.
Diffstat (limited to 'net')
-rw-r--r--net/arpd/hacks.mk10
1 files changed, 10 insertions, 0 deletions
diff --git a/net/arpd/hacks.mk b/net/arpd/hacks.mk
new file mode 100644
index 00000000000..3178f40ea51
--- /dev/null
+++ b/net/arpd/hacks.mk
@@ -0,0 +1,10 @@
+# $NetBSD: hacks.mk,v 1.1 2006/06/30 15:13:51 tron Exp $
+
+# GCC 4.1.x complains about a NULL argument to memcpy() because it gets
+# confused by the definition of the ar_tha() macro under NetBSD.
+.include "../../mk/compiler.mk"
+
+.if ${OPSYS} == "NetBSD" && !empty(CC_VERSION:Mgcc-4.1.*)
+PKG_HACKS+= gcc41-null-warning
+BUILDLINK_TRANSFORM+= rm:-Wall
+.endif