summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authorwiz <wiz>2005-10-06 12:20:41 +0000
committerwiz <wiz>2005-10-06 12:20:41 +0000
commitc4d5e2f24fdda19313d7512b15aa05094fcb9418 (patch)
treebd9245ecaf271a8874d00c74d377882655afba22 /security
parente9ec71aa27c08c514eae03aad8686336c2907809 (diff)
downloadpkgsrc-c4d5e2f24fdda19313d7512b15aa05094fcb9418.tar.gz
Update to 1.2.2:
Noteworthy changes in version 1.2.2 (2005-10-05} ------------------------------------------------ * Made the RNG immune against fork without exec. * Minor changes to some function declarations. Buffer arguments are now typed as void pointer. This should not affect any compilation. * A bug in the definition of gcry_cipher_register has been fixed. * Interface changes relative to the 1.2.1 release: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ gcry_cipher_encrypt CHANGED: Arguments IN and OUT are now void*. gcry_cipher_decrypt CHANGED: Arguments IN and OUT are now void*. gcry_create_nonce CHANGED: Argument BUFFER is now void*. gcry_md_ctl CHANGED: Argument BUFFER is now void*. gcry_sexp_sprint CHANGED: Argument BUFFER is now void*. gcry_mpi_scan CHANGED: Argument BUFFER is now void*. gcry_cipher_register CHANGED: Argument ALGORITHM_ID is now int*. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Diffstat (limited to 'security')
-rw-r--r--security/libgcrypt/Makefile4
-rw-r--r--security/libgcrypt/distinfo10
-rw-r--r--security/libgcrypt/patches/patch-ae18
3 files changed, 16 insertions, 16 deletions
diff --git a/security/libgcrypt/Makefile b/security/libgcrypt/Makefile
index 7c1fe1f8b3c..c4fa9213473 100644
--- a/security/libgcrypt/Makefile
+++ b/security/libgcrypt/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.26 2005/04/11 21:47:13 tv Exp $
+# $NetBSD: Makefile,v 1.27 2005/10/06 12:20:41 wiz Exp $
-DISTNAME= libgcrypt-1.2.1
+DISTNAME= libgcrypt-1.2.2
CATEGORIES= security
MASTER_SITES= ftp://ftp.gnupg.org/gcrypt/libgcrypt/ \
http://gd.tuwien.ac.at/privacy/gnupg/libgcrypt/
diff --git a/security/libgcrypt/distinfo b/security/libgcrypt/distinfo
index 83aa3d2cb5a..2690ecb5ea6 100644
--- a/security/libgcrypt/distinfo
+++ b/security/libgcrypt/distinfo
@@ -1,11 +1,11 @@
-$NetBSD: distinfo,v 1.15 2005/03/10 15:38:33 tv Exp $
+$NetBSD: distinfo,v 1.16 2005/10/06 12:20:41 wiz Exp $
-SHA1 (libgcrypt-1.2.1.tar.gz) = 8627d483e26e73b4cfabb4807ae8423875c37cda
-RMD160 (libgcrypt-1.2.1.tar.gz) = c99e5d36a8af2e78d49b61681635997960e50360
-Size (libgcrypt-1.2.1.tar.gz) = 960872 bytes
+SHA1 (libgcrypt-1.2.2.tar.gz) = fdf3638c0de619343c5f2291a3e8b9fe610425ce
+RMD160 (libgcrypt-1.2.2.tar.gz) = 381bc5f9be84f353d82b665e69d4d202f4552aae
+Size (libgcrypt-1.2.2.tar.gz) = 959875 bytes
SHA1 (patch-aa) = d8f659e4aac872abb152252731fd29bdaac635e3
SHA1 (patch-ab) = bd713f7cbc6782ced8c2fd2b5541ac52d2a10fbe
SHA1 (patch-ac) = bc846d21e3842103ec50679d69169a8472c12a66
SHA1 (patch-ad) = f32281612b51c5bb3788cf03c6f5615bdfc0d3e8
-SHA1 (patch-ae) = 90fe2a6c71c5311ae9c32de05de5dc5849b7161b
+SHA1 (patch-ae) = 7285281151403af32837e24b795959899d6a3bcb
SHA1 (patch-af) = f62f9f5b8ebc9e5f3a2570ec609de66e2d77e587
diff --git a/security/libgcrypt/patches/patch-ae b/security/libgcrypt/patches/patch-ae
index 25e95eba373..001a11c3100 100644
--- a/security/libgcrypt/patches/patch-ae
+++ b/security/libgcrypt/patches/patch-ae
@@ -1,6 +1,6 @@
-$NetBSD: patch-ae,v 1.2 2005/03/10 15:38:33 tv Exp $
+$NetBSD: patch-ae,v 1.3 2005/10/06 12:20:41 wiz Exp $
---- src/ath.h.orig Thu Nov 25 14:29:26 2004
+--- src/ath.h.orig 2005-07-29 15:45:42.000000000 +0200
+++ src/ath.h
@@ -31,6 +31,12 @@
@@ -30,18 +30,18 @@ $NetBSD: patch-ae,v 1.2 2005/03/10 15:38:33 tv Exp $
#else
ssize_t (*select) (int nfd, fd_set *rset, fd_set *wset, fd_set *eset,
struct timeval *timeout);
-@@ -117,6 +131,14 @@ ssize_t ath_select (int nfd, void *rset,
- ssize_t ath_waitpid (pid_t pid, int *status, int options);
- int ath_accept (int s, void *addr, int *length_ptr);
+@@ -119,6 +133,14 @@ int ath_accept (int s, void *addr, int *
int ath_connect (int s, void *addr, int length);
-+int ath_sendmsg (int s, const void *msg, int flags);
-+int ath_recvmsg (int s, void *msg, int flags);
+ int ath_sendmsg (int s, const void *msg, int flags);
+ int ath_recvmsg (int s, void *msg, int flags);
+#elif defined(__INTERIX)
+ssize_t ath_select (int nfd, fd_set *rset, fd_set *wset, fd_set *eset,
+ struct timeval *timeout);
+ssize_t ath_waitpid (pid_t pid, int *status, int options);
+int ath_accept (int s, struct sockaddr *addr, socklen_t *length_ptr);
+int ath_connect (int s, struct sockaddr *addr, socklen_t length);
- int ath_sendmsg (int s, const void *msg, int flags);
- int ath_recvmsg (int s, void *msg, int flags);
++int ath_sendmsg (int s, const void *msg, int flags);
++int ath_recvmsg (int s, void *msg, int flags);
#else
+ ssize_t ath_select (int nfd, fd_set *rset, fd_set *wset, fd_set *eset,
+ struct timeval *timeout);