diff options
author | atatat <atatat@pkgsrc.org> | 2002-06-07 17:48:38 +0000 |
---|---|---|
committer | atatat <atatat@pkgsrc.org> | 2002-06-07 17:48:38 +0000 |
commit | a0454b1aa95ce13e958e71c6ba0fd3e07e447ec7 (patch) | |
tree | 9abdfc92a74a15eaca616d43827bf04d43747773 /net/adns | |
parent | 8764625ad2caeba04b362c54743cacdb9f569d98 (diff) | |
download | pkgsrc-a0454b1aa95ce13e958e71c6ba0fd3e07e447ec7.tar.gz |
Include sys/types.h so that pid_t is a defined type for sys/select.h.
Diffstat (limited to 'net/adns')
-rw-r--r-- | net/adns/distinfo | 3 | ||||
-rw-r--r-- | net/adns/patches/patch-ac | 16 |
2 files changed, 18 insertions, 1 deletions
diff --git a/net/adns/distinfo b/net/adns/distinfo index dee0fe7de00..0141c4beec3 100644 --- a/net/adns/distinfo +++ b/net/adns/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.3 2001/11/19 19:39:04 jlam Exp $ +$NetBSD: distinfo,v 1.4 2002/06/07 17:48:38 atatat Exp $ SHA1 (adns-1.0.tar.gz) = 7675da67c7829f2db9a6fafd64f1f90c7bce412a Size (adns-1.0.tar.gz) = 208741 bytes SHA1 (patch-aa) = 17764ad5a7557bcda1fda5fdb62fbb7d4e0cd075 SHA1 (patch-ab) = 3eaa20dbe95de934693c00b73d42fbaf8ff5e5e9 +SHA1 (patch-ac) = 08c0acfc4546f370e2b0dfcae51981e4dc1cf822 diff --git a/net/adns/patches/patch-ac b/net/adns/patches/patch-ac new file mode 100644 index 00000000000..4de31a9a7c2 --- /dev/null +++ b/net/adns/patches/patch-ac @@ -0,0 +1,16 @@ +$NetBSD: patch-ac,v 1.1 2002/06/07 17:48:39 atatat Exp $ + +Need to include sys/types.h so that pid_t is a defined type for +sys/select.h. + +--- src/internal.h.orig Sat Sep 16 20:24:24 2000 ++++ src/internal.h +@@ -30,6 +30,8 @@ + #ifndef ADNS_INTERNAL_H_INCLUDED + #define ADNS_INTERNAL_H_INCLUDED + ++#include <sys/types.h> ++ + #include "config.h" + typedef unsigned char byte; + |