blob: 73902e5f58d4e6dbcd744cec559f569994f36385 [file] [log] [blame]
Brad Bishop19323692019-04-05 15:28:33 -04001From f5a1dfe4c87c228165bc25e7fe464120d8139a3d Mon Sep 17 00:00:00 2001
Brad Bishop6e60e8b2018-02-01 10:27:11 -05002From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Fri, 30 Dec 2016 18:23:27 +0200
Brad Bishop19323692019-04-05 15:28:33 -04004Subject: [PATCH] Set gpgme variables with pkg-config, not with cmake module
5 (which doesn't work properly)
Brad Bishop6e60e8b2018-02-01 10:27:11 -05006
Brad Bishopd7bf8c12018-02-25 22:55:05 -05007Upstream-Status: Inappropriate [gpgme upstream does not have pkg-config support and is not interested in it]
Brad Bishop6e60e8b2018-02-01 10:27:11 -05008Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Brad Bishop19323692019-04-05 15:28:33 -04009
Brad Bishop6e60e8b2018-02-01 10:27:11 -050010---
11 CMakeLists.txt | 3 ++-
12 1 file changed, 2 insertions(+), 1 deletion(-)
13
14diff --git a/CMakeLists.txt b/CMakeLists.txt
Brad Bishop19323692019-04-05 15:28:33 -040015index e949dbe..c954b2e 100644
Brad Bishop6e60e8b2018-02-01 10:27:11 -050016--- a/CMakeLists.txt
17+++ b/CMakeLists.txt
18@@ -31,7 +31,8 @@ PKG_CHECK_MODULES(GLIB2 glib-2.0 REQUIRED)
19 PKG_SEARCH_MODULE(LIBCRYPTO REQUIRED libcrypto openssl)
Brad Bishop19323692019-04-05 15:28:33 -040020 PKG_CHECK_MODULES(LIBXML2 libxml-2.0 REQUIRED)
Brad Bishop6e60e8b2018-02-01 10:27:11 -050021 FIND_PACKAGE(CURL REQUIRED)
22-FIND_PACKAGE(Gpgme REQUIRED)
23+PKG_CHECK_MODULES(GPGME gpgme REQUIRED)
24+set(GPGME_VANILLA_LIBRARIES ${GPGME_LIBRARIES})
Brad Bishop6e60e8b2018-02-01 10:27:11 -050025
Brad Bishop19323692019-04-05 15:28:33 -040026
27 IF (WITH_ZCHUNK)