diff options
author | grant <grant@pkgsrc.org> | 2004-02-10 09:17:22 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2004-02-10 09:17:22 +0000 |
commit | ddbdd9fde172d35e117565c89c0937b08a12c018 (patch) | |
tree | e80c5406d39a8f7126dbbbb20a43c6102b5a378c /security/tcp_wrappers | |
parent | 49c13252678a766cc7dd21cb1a49c13a6a304381 (diff) | |
download | pkgsrc-ddbdd9fde172d35e117565c89c0937b08a12c018.tar.gz |
include <sys/types.h> before <sys/socket.h>, allowing this to build
on IRIX 5.3.
fixes second part of PR pkg/24375 from Georg Schwarz.
Diffstat (limited to 'security/tcp_wrappers')
-rw-r--r-- | security/tcp_wrappers/distinfo | 3 | ||||
-rw-r--r-- | security/tcp_wrappers/patches/patch-ab | 12 |
2 files changed, 14 insertions, 1 deletions
diff --git a/security/tcp_wrappers/distinfo b/security/tcp_wrappers/distinfo index 40b28f546fc..0a1d2835666 100644 --- a/security/tcp_wrappers/distinfo +++ b/security/tcp_wrappers/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.4 2003/06/10 17:58:34 jschauma Exp $ +$NetBSD: distinfo,v 1.5 2004/02/10 09:17:22 grant Exp $ SHA1 (tcp_wrappers_7.6-ipv6.1.tar.gz) = d0b70d4f0c0ac0375d8283a18ec2b6d602f82fde Size (tcp_wrappers_7.6-ipv6.1.tar.gz) = 144708 bytes SHA1 (patch-aa) = 4158e67803e39d9cf0469bc1961ea2a1e6d672e2 +SHA1 (patch-ab) = 51b094f55afcea6ef1063af1b27be0b22b07eaa6 diff --git a/security/tcp_wrappers/patches/patch-ab b/security/tcp_wrappers/patches/patch-ab new file mode 100644 index 00000000000..faf1fd5c0be --- /dev/null +++ b/security/tcp_wrappers/patches/patch-ab @@ -0,0 +1,12 @@ +$NetBSD: patch-ab,v 1.1 2004/02/10 09:17:22 grant Exp $ + +--- tcpd.h.orig 2000-08-22 03:59:52.000000000 +1000 ++++ tcpd.h +@@ -8,6 +8,7 @@ + + #define STRING_LENGTH 128 /* hosts, users, processes */ + ++#include <sys/types.h> + #include <sys/socket.h> + #include <netinet/in.h> + |