blob: 146501c775c01bedc7e478e268d16fa7827cb2a4 [file] [log] [blame]
Patrick Williams8e7b46e2023-05-01 14:19:06 -05001From f8f4e1a617c4610ea7dc40a60f1c696ebc37850c Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Sun, 2 Apr 2023 09:27:42 -0700
4Subject: [PATCH] Use pkg-config to find gpgme
5
6Upstream-Status: Inappropriate [OE specific]
7Signed-off-by: Khem Raj <raj.khem@gmail.com>
8---
9 m4/gpgme.m4 | 2 +-
10 1 file changed, 1 insertion(+), 1 deletion(-)
11
12diff --git a/m4/gpgme.m4 b/m4/gpgme.m4
13index 44bf43c..c9a8ae6 100644
14--- a/m4/gpgme.m4
15+++ b/m4/gpgme.m4
16@@ -18,7 +18,7 @@ AC_DEFUN([_AM_PATH_GPGME_CONFIG],
17 if test "x$gpgme_config_prefix" != x ; then
18 GPGME_CONFIG="$gpgme_config_prefix/bin/gpgme-config"
19 fi
20- AC_PATH_PROG(GPGME_CONFIG, gpgme-config, no)
21+ GPGME_CONFIG="pkg-config gpgme"
22
23 if test "$GPGME_CONFIG" != "no" ; then
24 gpgme_version=`$GPGME_CONFIG --version`
25--
262.40.0
27