diff options
author | joerg <joerg@pkgsrc.org> | 2011-12-06 19:51:47 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2011-12-06 19:51:47 +0000 |
commit | b08b4d4eef8e9162b4b4433f1e7e0f190babe567 (patch) | |
tree | 8efb5cf47a959a93d1b17ef284aa51c804d20916 /net/socat | |
parent | e4276b258def457e6b3c91293d382bff940c93a0 (diff) | |
download | pkgsrc-b08b4d4eef8e9162b4b4433f1e7e0f190babe567.tar.gz |
Use standard headers.
Diffstat (limited to 'net/socat')
-rw-r--r-- | net/socat/distinfo | 3 | ||||
-rw-r--r-- | net/socat/patches/patch-mytypes.h | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/net/socat/distinfo b/net/socat/distinfo index a620d5d1e0a..0654eab8079 100644 --- a/net/socat/distinfo +++ b/net/socat/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.15 2010/08/12 17:54:14 zafer Exp $ +$NetBSD: distinfo,v 1.16 2011/12/06 19:51:47 joerg Exp $ SHA1 (socat-1.7.1.3.tar.gz) = 5a42275da0d8a5182452b36535a74c3cdf21793b RMD160 (socat-1.7.1.3.tar.gz) = fa4fdb731b5bef344f6c24a5bc242ae910728d57 Size (socat-1.7.1.3.tar.gz) = 553489 bytes SHA1 (patch-aa) = c10b68a5ca36ec27c6e77a01f6f89a832a4862eb +SHA1 (patch-mytypes.h) = 57769b4295812d15cee7e3d4200c5c0c365f7efd diff --git a/net/socat/patches/patch-mytypes.h b/net/socat/patches/patch-mytypes.h new file mode 100644 index 00000000000..8e239af3d46 --- /dev/null +++ b/net/socat/patches/patch-mytypes.h @@ -0,0 +1,13 @@ +$NetBSD: patch-mytypes.h,v 1.1 2011/12/06 19:51:47 joerg Exp $ + +--- mytypes.h.orig 2011-12-06 16:32:43.000000000 +0000 ++++ mytypes.h +@@ -7,7 +7,7 @@ + + /* some types and macros I miss in C89 */ + +-typedef enum { false, true } bool; ++#include <stdbool.h> + + #define Min(x,y) ((x)<=(y)?(x):(y)) + #define Max(x,y) ((x)>=(y)?(x):(y)) |