summaryrefslogtreecommitdiff
path: root/net/arpd
diff options
context:
space:
mode:
Diffstat (limited to 'net/arpd')
-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