diff options
author | enami <enami@pkgsrc.org> | 2002-05-09 13:50:06 +0000 |
---|---|---|
committer | enami <enami@pkgsrc.org> | 2002-05-09 13:50:06 +0000 |
commit | cfbb97f0353e03f27b09e518d13c2f3d7ba9a311 (patch) | |
tree | ef725e5736bb914d5a475fa31a7deec319c48d50 /net | |
parent | e26f1170bd20025c4e35e6277c367489995674a4 (diff) | |
download | pkgsrc-cfbb97f0353e03f27b09e518d13c2f3d7ba9a311.tar.gz |
sys/sched.h is available only on recent NetBSD.
Diffstat (limited to 'net')
-rw-r--r-- | net/upclient/distinfo | 4 | ||||
-rw-r--r-- | net/upclient/patches/patch-ac | 8 |
2 files changed, 7 insertions, 5 deletions
diff --git a/net/upclient/distinfo b/net/upclient/distinfo index ae2d6356d95..14a5df6760c 100644 --- a/net/upclient/distinfo +++ b/net/upclient/distinfo @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.7 2002/05/09 13:33:02 hubertf Exp $ +$NetBSD: distinfo,v 1.8 2002/05/09 13:50:06 enami Exp $ SHA1 (upclient-4.2.1.23.tar.gz) = c6595959c6a5058b03ab7096a6bf9c0dbfa4285a Size (upclient-4.2.1.23.tar.gz) = 29386 bytes SHA1 (patch-aa) = 4492c6741adc516171ecba4d272f5ab46ec28ebe SHA1 (patch-ab) = dd1e318cee6e27fcf433b2123cf8f3f6ed8eb548 -SHA1 (patch-ac) = 3641ee544199aa0b63ddfb090b64cbab60e9bb8c +SHA1 (patch-ac) = ffd0c20defee33e94d6ea03d8b319e1e4cb60d23 SHA1 (patch-ad) = 3f80aa8eb580055f33f77062dd2e3e76f3ab11bd diff --git a/net/upclient/patches/patch-ac b/net/upclient/patches/patch-ac index 4dd8debb8d9..918dc8550eb 100644 --- a/net/upclient/patches/patch-ac +++ b/net/upclient/patches/patch-ac @@ -1,12 +1,14 @@ -$NetBSD: patch-ac,v 1.5 2002/05/07 22:25:04 hubertf Exp $ +$NetBSD: patch-ac,v 1.6 2002/05/09 13:50:06 enami Exp $ ---- src/stats-bsd.c.orig Sat Jun 16 21:12:53 2001 +--- src/stats-bsd.c.orig Sun Jun 17 04:12:53 2001 +++ src/stats-bsd.c -@@ -21,6 +21,7 @@ +@@ -21,6 +21,9 @@ #include <sys/dkstat.h> #include <sys/sysctl.h> #include <sys/utsname.h> ++#if defined(__NetBSD__) && __NetBSD_Version__ >= 104000000 +#include <sys/sched.h> ++#endif /** * @desc Get statistics |