Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 1 | From 0c24f99ca4d4f64ea8584347ca6ae0d638d625a8 Mon Sep 17 00:00:00 2001 |
| 2 | From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@gmail.com> |
| 3 | Date: Mon, 18 Feb 2019 16:13:17 +0100 |
| 4 | Subject: [PATCH] Use pkg-config to find gpgme |
| 5 | MIME-Version: 1.0 |
| 6 | Content-Type: text/plain; charset=UTF-8 |
| 7 | Content-Transfer-Encoding: 8bit |
| 8 | |
| 9 | Upstream-Status: Inappropriate [embedded specific] |
| 10 | |
| 11 | Signed-off-by: Andreas MΓΌller <schnitzeltony@gmail.com> |
| 12 | --- |
| 13 | build/bundled/gpgme.m4 | 2 +- |
| 14 | 1 file changed, 1 insertion(+), 1 deletion(-) |
| 15 | |
| 16 | diff --git a/build/bundled/gpgme.m4 b/build/bundled/gpgme.m4 |
| 17 | index 44bf43c..c9a8ae6 100644 |
| 18 | --- a/build/bundled/gpgme.m4 |
| 19 | +++ b/build/bundled/gpgme.m4 |
| 20 | @@ -18,7 +18,7 @@ AC_DEFUN([_AM_PATH_GPGME_CONFIG], |
| 21 | if test "x$gpgme_config_prefix" != x ; then |
| 22 | GPGME_CONFIG="$gpgme_config_prefix/bin/gpgme-config" |
| 23 | fi |
| 24 | - AC_PATH_PROG(GPGME_CONFIG, gpgme-config, no) |
| 25 | + GPGME_CONFIG="pkg-config gpgme" |
| 26 | |
| 27 | if test "$GPGME_CONFIG" != "no" ; then |
| 28 | gpgme_version=`$GPGME_CONFIG --version` |
| 29 | -- |
| 30 | 2.20.1 |
| 31 | |