libcryptui: fix build with gpg 2.3

This commit is contained in:
Michal Vasilek 2022-08-15 23:15:18 +02:00
parent a13077b9fe
commit 26e2d9fbdc

View file

@ -0,0 +1,25 @@
From fa3b8fd3b55768e0e02b30948c29a9504d02522e Mon Sep 17 00:00:00 2001
From: Dominique Leuenberger <dimstar@opensuse.org>
Date: Tue, 31 Aug 2021 13:46:10 +0000
Subject: [PATCH] Accept GnuPG 2.3.x as supported version
---
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index be5b28b4..12df80ad 100644
--- a/configure.ac
+++ b/configure.ac
@@ -95,7 +95,7 @@ AC_ARG_ENABLE(gpg-check,
DO_CHECK=$enableval, DO_CHECK=yes)
if test "$DO_CHECK" = "yes"; then
- accepted_versions="1.2 1.4 2.0 2.1 2.2"
+ accepted_versions="1.2 1.4 2.0 2.1 2.2 2.3"
AC_PATH_PROGS(GNUPG, [gpg gpg2], no)
AC_DEFINE_UNQUOTED(GNUPG, "$GNUPG", [Path to gpg executable.])
ok="no"
--
GitLab