diff options
author | tron <tron@pkgsrc.org> | 2005-08-06 21:22:24 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2005-08-06 21:22:24 +0000 |
commit | 9866cbb15c5265f2763123b7d0cfefb0d9a39c1c (patch) | |
tree | f1255c74a575905c3f897cb9ac595d29f0b625fb /sysutils/socket | |
parent | 4b3ddd1d4327de35a66f5e416502b4298809bc25 (diff) | |
download | pkgsrc-9866cbb15c5265f2763123b7d0cfefb0d9a39c1c.tar.gz |
Fix compiler warning.
Diffstat (limited to 'sysutils/socket')
-rw-r--r-- | sysutils/socket/distinfo | 4 | ||||
-rw-r--r-- | sysutils/socket/patches/patch-ac | 14 |
2 files changed, 10 insertions, 8 deletions
diff --git a/sysutils/socket/distinfo b/sysutils/socket/distinfo index aba39a0d0f9..0e00863f8e6 100644 --- a/sysutils/socket/distinfo +++ b/sysutils/socket/distinfo @@ -1,11 +1,11 @@ -$NetBSD: distinfo,v 1.4 2005/02/24 13:40:57 agc Exp $ +$NetBSD: distinfo,v 1.5 2005/08/06 21:22:24 tron Exp $ SHA1 (socket-1.1.tar.gz) = 1ada9bc6d949c303734030b3a34e2d6f0544d1db RMD160 (socket-1.1.tar.gz) = 9a697cbdc807223f48229caa3349cba216b5ffc0 Size (socket-1.1.tar.gz) = 14426 bytes SHA1 (patch-aa) = a2f567f4e27e18a333eeac46d1eb9c3033a7344f SHA1 (patch-ab) = a57ef3243601007113f07493201804a6050f3182 -SHA1 (patch-ac) = e793500a60693e53ad145f9ade1b449f102212e6 +SHA1 (patch-ac) = 8fd665125b26aadc16ddbebcd165b2759391234b SHA1 (patch-ad) = 034f34565952f94b4e12cf78f0bb9b5612091e4d SHA1 (patch-ae) = 97bbe5066b8bf00fe45df1c1088768400abf102e SHA1 (patch-af) = b40a7bbd22a6773816eb0e52403d67317979451d diff --git a/sysutils/socket/patches/patch-ac b/sysutils/socket/patches/patch-ac index 8e50bba67d3..d96d8a00a3a 100644 --- a/sysutils/socket/patches/patch-ac +++ b/sysutils/socket/patches/patch-ac @@ -1,8 +1,8 @@ -$NetBSD: patch-ac,v 1.3 2004/05/10 16:36:33 minskim Exp $ +$NetBSD: patch-ac,v 1.4 2005/08/06 21:22:24 tron Exp $ ---- globals.h.orig 1992-08-30 14:04:27.000000000 -0500 -+++ globals.h -@@ -8,6 +8,10 @@ Please read the file COPYRIGHT for furth +--- globals.h.orig 1992-08-30 20:04:27.000000000 +0100 ++++ globals.h 2005-08-06 22:21:30.000000000 +0100 +@@ -8,6 +8,12 @@ */ #include "patchlevel.h" @@ -10,10 +10,12 @@ $NetBSD: patch-ac,v 1.3 2004/05/10 16:36:33 minskim Exp $ +#if HAVE_SYS_PARAM_H +# include <sys/param.h> +#endif ++ ++#include <stdlib.h> /* globals for socket */ -@@ -22,9 +26,16 @@ Please read the file COPYRIGHT for furth +@@ -22,9 +28,16 @@ #define A(args) () #endif @@ -30,7 +32,7 @@ $NetBSD: patch-ac,v 1.3 2004/05/10 16:36:33 minskim Exp $ void catchsig A((int sig)) ; void usage A((void)) ; int do_read_write A((int from, int to)) ; -@@ -49,4 +60,7 @@ extern int quitflag ; +@@ -49,4 +62,7 @@ extern int crlfflag ; extern int active_socket ; extern char *progname ; |