summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorjoerg <joerg>2006-03-28 16:05:47 +0000
committerjoerg <joerg>2006-03-28 16:05:47 +0000
commit8a5a882dc91b1ec0c0ea543188027d25fe93d545 (patch)
treee9db0eccfd1d02a1f839b52699fdb332b3259103 /net
parent8e2171aec3d757ecf2bf4bbdd73e651e8364d4cb (diff)
downloadpkgsrc-8a5a882dc91b1ec0c0ea543188027d25fe93d545.tar.gz
DragonFly support.
Diffstat (limited to 'net')
-rw-r--r--net/arpd/distinfo3
-rw-r--r--net/arpd/patches/patch-ae19
2 files changed, 21 insertions, 1 deletions
diff --git a/net/arpd/distinfo b/net/arpd/distinfo
index 08d7e140529..a77f632f1d3 100644
--- a/net/arpd/distinfo
+++ b/net/arpd/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.6 2005/02/24 12:13:42 agc Exp $
+$NetBSD: distinfo,v 1.7 2006/03/28 16:05:47 joerg Exp $
SHA1 (arpd.tar.gz) = c23ea6f7fa1c442331bcf120f32d41f789ee369a
RMD160 (arpd.tar.gz) = 8e98624ae9dc028ccd60695dadc030b853ab22a6
@@ -7,3 +7,4 @@ SHA1 (patch-aa) = 2db74da5bfc680b37ff086a9d615083bbfd8a0d4
SHA1 (patch-ab) = 5e0c468cd51bdd388fadf4fd9c6e7e92a0475456
SHA1 (patch-ac) = 565f484cc246984aeeb6f414882aa2ccc6e33872
SHA1 (patch-ad) = f28a6c62965fa7a8bd610e962773c019c8340211
+SHA1 (patch-ae) = d4457cefe4bd96d422e9abbd8e8ac5b741de2a31
diff --git a/net/arpd/patches/patch-ae b/net/arpd/patches/patch-ae
new file mode 100644
index 00000000000..1f26a347e8b
--- /dev/null
+++ b/net/arpd/patches/patch-ae
@@ -0,0 +1,19 @@
+$NetBSD: patch-ae,v 1.1 2006/03/28 16:05:47 joerg Exp $
+
+--- util.h.orig 2006-03-28 15:48:20.000000000 +0000
++++ util.h
+@@ -30,8 +30,13 @@
+
+ #include <sys/socket.h>
+ #include <net/if.h>
+-#include <net/if_ether.h>
+ #include <netinet/in.h>
++#if defined(__DragonFly__)
++#include <sys/queue.h>
++#include <netinet/if_ether.h>
++#else
++#include <net/if_ether.h>
++#endif
+
+ #define min(a,b) ((a) < (b) ? (a) : (b))
+ #define max(a,b) ((a) > (b) ? (a) : (b))