summaryrefslogtreecommitdiff
path: root/security/gnupg/patches
diff options
context:
space:
mode:
authoritojun <itojun>2003-08-25 21:25:24 +0000
committeritojun <itojun>2003-08-25 21:25:24 +0000
commit2f87412ab9c8ebc5576daaa69cff3b287583fb1f (patch)
treed9d5642b69ed440d952602f325fa0ccad8e953f1 /security/gnupg/patches
parent2fac769cf7e82740d439a13ddd80e76022baef83 (diff)
downloadpkgsrc-2f87412ab9c8ebc5576daaa69cff3b287583fb1f.tar.gz
upgrade to 1.2.3.
* New "--gnupg" option (set by default) that disables --openpgp, and the various --pgpX emulation options. This replaces --no-openpgp, and --no-pgpX, and also means that GnuPG has finally grown a --gnupg option to make GnuPG act like GnuPG. * A number of portability changes to make building GnuPG on less-common platforms easier. * Romanian translation. * Two new %-expandos for use in notation and policy URLs. "%g" expands to the fingerprint of the key making the signature (which might be a subkey), and "%p" expands to the fingerprint of the primary key that owns the key making the signature. * New "tru" record in --with-colons --list-keys listings. It shows the status of the trust database that was used to calculate the key validity in the listings. See doc/DETAILS for the specifics of this. * New REVKEYSIG status tag for --status-fd. It indicates a valid signature that was issued by a revoked key. See doc/DETAILS for the specifics of this.
Diffstat (limited to 'security/gnupg/patches')
-rw-r--r--security/gnupg/patches/patch-aa14
-rw-r--r--security/gnupg/patches/patch-ab16
-rw-r--r--security/gnupg/patches/patch-ae15
3 files changed, 13 insertions, 32 deletions
diff --git a/security/gnupg/patches/patch-aa b/security/gnupg/patches/patch-aa
index f29358a3469..45bd3fce2e0 100644
--- a/security/gnupg/patches/patch-aa
+++ b/security/gnupg/patches/patch-aa
@@ -1,16 +1,16 @@
-$NetBSD: patch-aa,v 1.8 2002/10/27 02:53:03 chris Exp $
+$NetBSD: patch-aa,v 1.9 2003/08/25 21:25:25 itojun Exp $
---- idea-stub.c.orig Sun Oct 27 02:21:54 2002
-+++ cipher/idea-stub.c Sun Oct 27 02:22:54 2002
+--- cipher/idea-stub.c.orig 2003-07-31 00:15:51.000000000 +0900
++++ cipher/idea-stub.c 2003-08-26 06:19:38.000000000 +0900
@@ -131,9 +131,9 @@
}
sym = dlsym (handle, "idea_get_info");
- if (dlerror ())
-+ if ((sym == NULL) && (dlerror ()))
++ if ((sym == NULL) && dlerror ())
sym = dlsym (handle, "_idea_get_info");
- if ((err=dlerror()))
+ if ((sym == NULL) && (err=dlerror()))
- {
- log_info ("invalid module `%s': %s\n", name, err);
- goto failure;
+ goto failure;
+
+ return sym;
diff --git a/security/gnupg/patches/patch-ab b/security/gnupg/patches/patch-ab
deleted file mode 100644
index d2ee9e61838..00000000000
--- a/security/gnupg/patches/patch-ab
+++ /dev/null
@@ -1,16 +0,0 @@
-$NetBSD: patch-ab,v 1.20 2003/08/09 09:12:42 wiz Exp $
-
---- checks/defs.inc.orig Thu May 1 15:17:46 2003
-+++ checks/defs.inc
-@@ -99,9 +99,9 @@ pgmname=`basename $0`
- [ -z "$srcdir" ] && fatal "not called from make"
-
- # Make sure we have a valid option files even with VPATH builds.
--if [ -f ./options]; then
-+if [ -f ./options ]; then
- :
--elif [ -f ./gpg.conf]; then
-+elif [ -f ./gpg.conf ]; then
- :
- elif [ -f $srcdir/options ]; then
- cat $srcdir/options >gpg.conf
diff --git a/security/gnupg/patches/patch-ae b/security/gnupg/patches/patch-ae
index c5d23aa6da3..9b851535d57 100644
--- a/security/gnupg/patches/patch-ae
+++ b/security/gnupg/patches/patch-ae
@@ -1,16 +1,13 @@
-$NetBSD: patch-ae,v 1.4 2003/08/15 07:02:23 itojun Exp $
+$NetBSD: patch-ae,v 1.5 2003/08/25 21:25:26 itojun Exp $
-ftp://ftp.kame.net/pub/kame/misc/gnupg-1.2.2-IPv6.diff.gz
-
-diff -u -r1.1.1.1 -r1.3
---- configure.ac 15 Aug 2003 05:12:08 -0000 1.1.1.1
-+++ configure.ac 15 Aug 2003 06:47:49 -0000 1.3
-@@ -586,7 +586,7 @@
- AC_CHECK_FUNCS(strcasecmp strncasecmp ctermid)
+--- configure.ac.orig 2003-08-22 04:45:43.000000000 +0900
++++ configure.ac 2003-08-26 06:21:17.000000000 +0900
+@@ -602,7 +602,7 @@
+ AC_CHECK_FUNCS(strcasecmp strncasecmp ctermid times)
AC_CHECK_FUNCS(memmove gettimeofday getrusage setrlimit clock_gettime)
AC_CHECK_FUNCS(atexit raise getpagesize strftime nl_langinfo setlocale)
-AC_CHECK_FUNCS(waitpid wait4 sigaction sigprocmask rand pipe stat)
+AC_CHECK_FUNCS(waitpid wait4 sigaction sigprocmask rand pipe stat getaddrinfo)
AC_REPLACE_FUNCS(mkdtemp)
+ AC_CHECK_TYPES([struct sigaction, sigset_t],,,[#include <signal.h>])
- #