diff options
author | simonb <simonb@pkgsrc.org> | 2002-08-21 06:31:57 +0000 |
---|---|---|
committer | simonb <simonb@pkgsrc.org> | 2002-08-21 06:31:57 +0000 |
commit | f8f371a41c648a3cb000cb0880b44ccaa408ae42 (patch) | |
tree | 6c2c396b5b90e31be337d35bd49ac9c37da75415 /net | |
parent | 91bd8ef15f3de80013d8631c34be95f40eea88df (diff) | |
download | pkgsrc-f8f371a41c648a3cb000cb0880b44ccaa408ae42.tar.gz |
Include <string.h> in a few places to stop some warnings on alpha (and
other 64-bit platforms?).
Diffstat (limited to 'net')
-rw-r--r-- | net/netcat/distinfo | 5 | ||||
-rw-r--r-- | net/netcat/patches/patch-ac | 12 | ||||
-rw-r--r-- | net/netcat/patches/patch-ad | 12 | ||||
-rw-r--r-- | net/netcat/patches/patch-ae | 12 |
4 files changed, 40 insertions, 1 deletions
diff --git a/net/netcat/distinfo b/net/netcat/distinfo index 1e75b79f28c..e946da2b2c7 100644 --- a/net/netcat/distinfo +++ b/net/netcat/distinfo @@ -1,6 +1,9 @@ -$NetBSD: distinfo,v 1.2 2001/04/21 11:23:24 wiz Exp $ +$NetBSD: distinfo,v 1.3 2002/08/21 06:31:57 simonb Exp $ SHA1 (nc110.tgz) = f8ec3a39796b141b6654d39b7957b863c7f79a95 Size (nc110.tgz) = 75267 bytes SHA1 (patch-aa) = c1891404c8d520fe2c3f75b21ff3780ef08100a5 SHA1 (patch-ab) = c967191d29c4be6bdcc37cf32455337ca1d28be3 +SHA1 (patch-ac) = b67b27baff943cc21d3c2052de22c5fb2e945ffd +SHA1 (patch-ad) = d2eca09e83188785e57d9396acf45f8823504e4e +SHA1 (patch-ae) = 9ee2267e4b516d21de7341a4a6279a8cb7dc9056 diff --git a/net/netcat/patches/patch-ac b/net/netcat/patches/patch-ac new file mode 100644 index 00000000000..0939bf11719 --- /dev/null +++ b/net/netcat/patches/patch-ac @@ -0,0 +1,12 @@ +$NetBSD: patch-ac,v 1.1 2002/08/21 06:31:57 simonb Exp $ + +--- data/data.c.orig Wed Feb 28 00:43:48 1996 ++++ data/data.c +@@ -16,6 +16,7 @@ + *Hobbit*, started 951004 or so and randomly screwed around with since */ + + #include <stdio.h> ++#include <string.h> + + #ifdef MSDOS /* for MSC only at the moment... */ + #include <fcntl.h> diff --git a/net/netcat/patches/patch-ad b/net/netcat/patches/patch-ad new file mode 100644 index 00000000000..a6072329f2a --- /dev/null +++ b/net/netcat/patches/patch-ad @@ -0,0 +1,12 @@ +$NetBSD: patch-ad,v 1.1 2002/08/21 06:31:57 simonb Exp $ + +--- data/rservice.c.orig Thu Feb 1 05:45:08 1996 ++++ data/rservice.c +@@ -10,6 +10,7 @@ + ... whatever. _H*/ + + #include <stdio.h> ++#include <string.h> + + /* change if you like; "id" is a good one for figuring out if you won too */ + static char cmd[] = "pwd"; diff --git a/net/netcat/patches/patch-ae b/net/netcat/patches/patch-ae new file mode 100644 index 00000000000..968bd4182bb --- /dev/null +++ b/net/netcat/patches/patch-ae @@ -0,0 +1,12 @@ +$NetBSD: patch-ae,v 1.1 2002/08/21 06:31:57 simonb Exp $ + +--- data/xor.c.orig Sun Feb 18 14:18:16 1996 ++++ data/xor.c +@@ -14,6 +14,7 @@ + *Hobbit*, 960208 */ + + #include <stdio.h> ++#include <string.h> + #include <fcntl.h> + + char buf[8192]; |