Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1From b05e301d1b264a5d8f07cb96e5edc243d99bff79 Mon Sep 17 00:00:00 2001 2From: Antoine Jacoutot <ajacoutot@gnome.org> 3Date: Fri, 10 Nov 2017 08:55:55 +0100 4Subject: [PATCH] Accept GnuPG 2.2.x as supported version 5 6https://bugzilla.gnome.org/show_bug.cgi?id=790152 7--- 8 configure.ac | 2 +- 9 1 file changed, 1 insertion(+), 1 deletion(-) 10 11diff --git a/configure.ac b/configure.ac 12index 4486e7b2..be5b28b4 100644 13--- a/configure.ac 14+++ b/configure.ac 15@@ -95,7 +95,7 @@ AC_ARG_ENABLE(gpg-check, 16 DO_CHECK=$enableval, DO_CHECK=yes) 17 18 if test "$DO_CHECK" = "yes"; then 19- accepted_versions="1.2 1.4 2.0" 20+ accepted_versions="1.2 1.4 2.0 2.2 2.3 2.4" 21 AC_PATH_PROGS(GNUPG, [gpg gpg2], no) 22 AC_DEFINE_UNQUOTED(GNUPG, "$GNUPG", [Path to gpg executable.]) 23 ok="no" 24-- 25GitLab 26