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 | c228e99594b0739f8ef975144de153c0e4f7968e (patch) | |
tree | e80c5406d39a8f7126dbbbb20a43c6102b5a378c /security/tcp_wrappers/patches | |
parent | b483ea116c314c3322f4bdd215aee487e35cc78b (diff) | |
download | pkgsrc-c228e99594b0739f8ef975144de153c0e4f7968e.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/patches')
-rw-r--r-- | security/tcp_wrappers/patches/patch-ab | 12 |
1 files changed, 12 insertions, 0 deletions
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> + |