pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/net/arpd DragonFly support.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/7d1c59ba0b1c
branches:  trunk
changeset: 510129:7d1c59ba0b1c
user:      joerg <joerg%pkgsrc.org@localhost>
date:      Tue Mar 28 16:05:47 2006 +0000

description:
DragonFly support.

diffstat:

 net/arpd/distinfo         |   3 ++-
 net/arpd/patches/patch-ae |  19 +++++++++++++++++++
 2 files changed, 21 insertions(+), 1 deletions(-)

diffs (37 lines):

diff -r 61baa74013f5 -r 7d1c59ba0b1c net/arpd/distinfo
--- a/net/arpd/distinfo Tue Mar 28 15:52:25 2006 +0000
+++ b/net/arpd/distinfo Tue Mar 28 16:05:47 2006 +0000
@@ -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-ab) = 5e0c468cd51bdd388fadf4fd9c6e7e92a0475456
 SHA1 (patch-ac) = 565f484cc246984aeeb6f414882aa2ccc6e33872
 SHA1 (patch-ad) = f28a6c62965fa7a8bd610e962773c019c8340211
+SHA1 (patch-ae) = d4457cefe4bd96d422e9abbd8e8ac5b741de2a31
diff -r 61baa74013f5 -r 7d1c59ba0b1c net/arpd/patches/patch-ae
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/net/arpd/patches/patch-ae Tue Mar 28 16:05:47 2006 +0000
@@ -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))



Home | Main Index | Thread Index | Old Index