diff options
author | adam <adam@pkgsrc.org> | 2005-01-14 11:26:34 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2005-01-14 11:26:34 +0000 |
commit | c44530b79ada1f8dadaa6781a15e6c36eac53ae7 (patch) | |
tree | 2879db172238b9ae317e11b8f23059db2cbb1ec8 /security | |
parent | 79a7754eaa57ea79663336f8427e380c9854e604 (diff) | |
download | pkgsrc-c44530b79ada1f8dadaa6781a15e6c36eac53ae7.tar.gz |
Changes 1.2.1:
* Portability fixes, memory allocation fixes and other minor things.
* Support to build as a W32 static library.
* Changed the way the RNG gets initialized. This allows to keep it
uninitialized as long as no random numbers are used. To override
this, the new macro gcry_fast_random_poll may be used. It is in
general a good idea to spread this macro into the application code
to make sure that these polls happen often enough.
Diffstat (limited to 'security')
-rw-r--r-- | security/libgcrypt/Makefile | 13 | ||||
-rw-r--r-- | security/libgcrypt/distinfo | 7 | ||||
-rw-r--r-- | security/libgcrypt/patches/patch-ac | 19 |
3 files changed, 9 insertions, 30 deletions
diff --git a/security/libgcrypt/Makefile b/security/libgcrypt/Makefile index 1d12942d3f9..2b66a1d853a 100644 --- a/security/libgcrypt/Makefile +++ b/security/libgcrypt/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.24 2004/10/23 08:57:33 shannonjr Exp $ +# $NetBSD: Makefile,v 1.25 2005/01/14 11:26:34 adam Exp $ -DISTNAME= libgcrypt-1.2.0 -PKGREVISION= 3 +DISTNAME= libgcrypt-1.2.1 CATEGORIES= security MASTER_SITES= ftp://ftp.gnupg.org/gcrypt/libgcrypt/ \ http://gd.tuwien.ac.at/privacy/gnupg/libgcrypt/ @@ -12,11 +11,11 @@ COMMENT= GNU cryptographic library PKG_INSTALLATION_TYPES= overwrite pkgviews -USE_BUILDLINK3= YES -USE_LIBTOOL= YES -GNU_CONFIGURE= YES +USE_BUILDLINK3= yes +USE_LIBTOOL= yes +GNU_CONFIGURE= yes -TEST_TARGET= check +TEST_TARGET= check TEXINFO_REQD= 4.0 INFO_FILES= gcrypt.info diff --git a/security/libgcrypt/distinfo b/security/libgcrypt/distinfo index 3b7d07ad4df..253f6641297 100644 --- a/security/libgcrypt/distinfo +++ b/security/libgcrypt/distinfo @@ -1,8 +1,7 @@ -$NetBSD: distinfo,v 1.11 2004/12/18 23:54:58 grant Exp $ +$NetBSD: distinfo,v 1.12 2005/01/14 11:26:34 adam Exp $ -SHA1 (libgcrypt-1.2.0.tar.gz) = 3785a47abcb1c15079b18c5df47a474dfe647ec2 -Size (libgcrypt-1.2.0.tar.gz) = 949159 bytes +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-ac) = 50934ca0527e5c33bdcfec20a9f505c5176abafe SHA1 (patch-ad) = f32281612b51c5bb3788cf03c6f5615bdfc0d3e8 diff --git a/security/libgcrypt/patches/patch-ac b/security/libgcrypt/patches/patch-ac deleted file mode 100644 index c1e62aed6b3..00000000000 --- a/security/libgcrypt/patches/patch-ac +++ /dev/null @@ -1,19 +0,0 @@ -$NetBSD: patch-ac,v 1.2 2004/12/18 23:54:58 grant Exp $ - ---- src/gcrypt.h.orig 2004-04-15 19:10:37.000000000 +1000 -+++ src/gcrypt.h -@@ -29,6 +29,14 @@ - - #include <sys/types.h> - #include <sys/socket.h> -+/* -+ * The following line (socklen_t comment) is used in the pkgsrc -+ * post-configure target to patch this file. -+ */ -+ -+/* socklen_t */ -+ -+#include <sys/time.h> - - /* This is required for error code compatibility. */ - #define _GCRY_ERR_SOURCE_DEFAULT GPG_ERR_SOURCE_GCRYPT |