diff options
author | joerg <joerg@pkgsrc.org> | 2006-09-19 22:25:48 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2006-09-19 22:25:48 +0000 |
commit | cbc4999094b108f8524bbabebf1c459799144e21 (patch) | |
tree | 97709024519d7990f1cb7e0cbacb9c6f1c6bf852 /net/upclient | |
parent | 90da5a19929725757cf54f2d04f2cf4df27615ba (diff) | |
download | pkgsrc-cbc4999094b108f8524bbabebf1c459799144e21.tar.gz |
Slightly reorder includes to allow it to build on DragonFly (again).
Diffstat (limited to 'net/upclient')
-rw-r--r-- | net/upclient/distinfo | 4 | ||||
-rw-r--r-- | net/upclient/patches/patch-ac | 15 |
2 files changed, 14 insertions, 5 deletions
diff --git a/net/upclient/distinfo b/net/upclient/distinfo index 62736f7bca1..c3c86f0fe13 100644 --- a/net/upclient/distinfo +++ b/net/upclient/distinfo @@ -1,10 +1,10 @@ -$NetBSD: distinfo,v 1.12 2006/01/25 17:00:25 joerg Exp $ +$NetBSD: distinfo,v 1.13 2006/09/19 22:25:48 joerg Exp $ SHA1 (upclient-4.2.1.23.tar.gz) = c6595959c6a5058b03ab7096a6bf9c0dbfa4285a RMD160 (upclient-4.2.1.23.tar.gz) = bc5df520a6ab73049ab45bf2d3ed230a80bf561e Size (upclient-4.2.1.23.tar.gz) = 29386 bytes SHA1 (patch-aa) = 2e1dacd293b69e0d2338e1a316d7d1d7015447c2 SHA1 (patch-ab) = dd1e318cee6e27fcf433b2123cf8f3f6ed8eb548 -SHA1 (patch-ac) = af4554784197dd7c2a15a23cda516bc08bf662c0 +SHA1 (patch-ac) = 5fa3dad86297d9a6bf5047008813996c0e930e7c SHA1 (patch-ad) = 57aac6d38f7f4fcdc1b4545d2f6df0815a9db496 SHA1 (patch-ae) = c21c66c00e8be45407d462ba0cf0223a5b9a703b diff --git a/net/upclient/patches/patch-ac b/net/upclient/patches/patch-ac index a2de2c3e4cc..91107223b92 100644 --- a/net/upclient/patches/patch-ac +++ b/net/upclient/patches/patch-ac @@ -1,11 +1,20 @@ -$NetBSD: patch-ac,v 1.7 2006/01/25 17:00:25 joerg Exp $ +$NetBSD: patch-ac,v 1.8 2006/09/19 22:25:48 joerg Exp $ --- src/stats-bsd.c.orig 2001-06-16 19:12:53.000000000 +0000 +++ src/stats-bsd.c -@@ -18,9 +18,16 @@ +@@ -10,6 +10,7 @@ + #include "stats.h" + + /* System includes */ ++#include <sys/param.h> + #include <kvm.h> + #include <stdio.h> + #include <errno.h> +@@ -17,10 +18,16 @@ + #include <limits.h> #include <syslog.h> #include <sys/time.h> - #include <sys/param.h> +-#include <sys/param.h> +#if defined(__DragonFly__) +#include <kinfo.h> +#else |