diff options
author | tv <tv@pkgsrc.org> | 2005-01-18 13:11:38 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 2005-01-18 13:11:38 +0000 |
commit | 90181e27b61a05d45d7f51d29ea24940e16ec3d2 (patch) | |
tree | 0c0606dec802fd3490c62205aea8f66991cf7cb2 /security/libgcrypt | |
parent | 8e4bc6081360311da4f6f51cab2e0174b110a9c7 (diff) | |
download | pkgsrc-90181e27b61a05d45d7f51d29ea24940e16ec3d2.tar.gz |
It's not very useful to include <sys/select.h> in only one source file
when other source files depend on fd_set being defined in a local header.
(Required on Interix, which does not expose <sys/select.h>/<sys/time.h>
automagically via other system headers as some OS's do by default.)
Diffstat (limited to 'security/libgcrypt')
-rw-r--r-- | security/libgcrypt/distinfo | 4 | ||||
-rw-r--r-- | security/libgcrypt/patches/patch-ae | 17 | ||||
-rw-r--r-- | security/libgcrypt/patches/patch-af | 16 |
3 files changed, 36 insertions, 1 deletions
diff --git a/security/libgcrypt/distinfo b/security/libgcrypt/distinfo index 253f6641297..759558dfc3b 100644 --- a/security/libgcrypt/distinfo +++ b/security/libgcrypt/distinfo @@ -1,7 +1,9 @@ -$NetBSD: distinfo,v 1.12 2005/01/14 11:26:34 adam Exp $ +$NetBSD: distinfo,v 1.13 2005/01/18 13:11:38 tv Exp $ SHA1 (libgcrypt-1.2.1.tar.gz) = 8627d483e26e73b4cfabb4807ae8423875c37cda Size (libgcrypt-1.2.1.tar.gz) = 960872 bytes SHA1 (patch-aa) = d8f659e4aac872abb152252731fd29bdaac635e3 SHA1 (patch-ab) = bd713f7cbc6782ced8c2fd2b5541ac52d2a10fbe SHA1 (patch-ad) = f32281612b51c5bb3788cf03c6f5615bdfc0d3e8 +SHA1 (patch-ae) = 4129d9231dc6dfe2f8aa1d5ca5ed2b41a5e29741 +SHA1 (patch-af) = 01f417ea1ef8c9fc133f4a833da181c848776e7d diff --git a/security/libgcrypt/patches/patch-ae b/security/libgcrypt/patches/patch-ae new file mode 100644 index 00000000000..cbdd1ce8f8b --- /dev/null +++ b/security/libgcrypt/patches/patch-ae @@ -0,0 +1,17 @@ +$NetBSD: patch-ae,v 1.1 2005/01/18 13:11:38 tv Exp $ + +--- src/ath.h.orig 2005-01-18 08:08:14.000000000 -0500 ++++ src/ath.h +@@ -31,6 +31,12 @@ + + #include <config.h> + ++#ifdef HAVE_SYS_SELECT_H ++# include <sys/select.h> ++#else ++# include <sys/time.h> ++#endif ++ + + /* Define _ATH_EXT_SYM_PREFIX if you want to give all external symbols + a prefix. */ diff --git a/security/libgcrypt/patches/patch-af b/security/libgcrypt/patches/patch-af new file mode 100644 index 00000000000..3b29d9c4a70 --- /dev/null +++ b/security/libgcrypt/patches/patch-af @@ -0,0 +1,16 @@ +$NetBSD: patch-af,v 1.1 2005/01/18 13:11:38 tv Exp $ + +--- src/ath.c.orig 2005-01-18 08:09:03.000000000 -0500 ++++ src/ath.c +@@ -24,11 +24,6 @@ + + #include <assert.h> + #include <unistd.h> +-#ifdef HAVE_SYS_SELECT_H +-# include <sys/select.h> +-#else +-# include <sys/time.h> +-#endif + #include <sys/types.h> + #ifndef _WIN32 + #include <sys/wait.h> |