diff options
author | wiz <wiz> | 2000-11-12 14:28:48 +0000 |
---|---|---|
committer | wiz <wiz> | 2000-11-12 14:28:48 +0000 |
commit | 2481b611ab0a3a63f0402b9f94d6e551b6c6584c (patch) | |
tree | b80a8a81a418ea87aeaf2781ca9758e375be04d4 /security/gnupg | |
parent | ba8db3ddfc10c4a31f50dfe2c4310e9be889ca11 (diff) | |
download | pkgsrc-2481b611ab0a3a63f0402b9f94d6e551b6c6584c.tar.gz |
Declare some symbols static in twofish.c (for details see lib/11458).
Patch provided by Olaf Seibert.
Bump version number to 1.0.4nb1.
Diffstat (limited to 'security/gnupg')
-rw-r--r-- | security/gnupg/Makefile | 3 | ||||
-rw-r--r-- | security/gnupg/files/patch-sum | 3 | ||||
-rw-r--r-- | security/gnupg/patches/patch-ab | 21 |
3 files changed, 25 insertions, 2 deletions
diff --git a/security/gnupg/Makefile b/security/gnupg/Makefile index f4f78b8e468..ca208cec28e 100644 --- a/security/gnupg/Makefile +++ b/security/gnupg/Makefile @@ -1,8 +1,9 @@ -# $NetBSD: Makefile,v 1.17 2000/11/10 02:35:02 wiz Exp $ +# $NetBSD: Makefile,v 1.18 2000/11/12 14:28:48 wiz Exp $ # FreeBSD Id: Makefile,v 1.20 1997/08/27 13:06:01 ache Exp # DISTNAME= gnupg-1.0.4 +PKGNAME= ${DISTNAME}nb1 CATEGORIES= security MASTER_SITES= ftp://ftp.gnupg.org/pub/gcrypt/gnupg/ diff --git a/security/gnupg/files/patch-sum b/security/gnupg/files/patch-sum index 247bacadd0c..46617dc17a7 100644 --- a/security/gnupg/files/patch-sum +++ b/security/gnupg/files/patch-sum @@ -1,3 +1,4 @@ -$NetBSD: patch-sum,v 1.8 2000/11/10 02:35:02 wiz Exp $ +$NetBSD: patch-sum,v 1.9 2000/11/12 14:28:48 wiz Exp $ MD5 (patch-aa) = 4fe53ce94604cb81a997dfe571550308 +MD5 (patch-ab) = 8e1056e7c48bd2cce13b3e4ffb90d945 diff --git a/security/gnupg/patches/patch-ab b/security/gnupg/patches/patch-ab new file mode 100644 index 00000000000..716b51db516 --- /dev/null +++ b/security/gnupg/patches/patch-ab @@ -0,0 +1,21 @@ +$NetBSD: patch-ab,v 1.10 2000/11/12 14:28:48 wiz Exp $ + +--- cipher/twofish.c.orig Fri Apr 14 19:34:26 2000 ++++ cipher/twofish.c Sun Nov 12 15:05:28 2000 +@@ -1004,3 +1004,6 @@ + } + + ++#ifdef IS_MODULE ++static ++#endif +@@ -1034,6 +1037,9 @@ + * version = interface version of the function/pointer + * (currently this is 1 for all functions) + */ ++#ifdef IS_MODULE ++static ++#endif + void * + gnupgext_enum_func ( int what, int *sequence, int *class, int *vers ) + { |