]> code.ossystems Code Review - openembedded-core.git/blob
73902e5f58d4e6dbcd744cec559f569994f36385
[openembedded-core.git] /
1 From f5a1dfe4c87c228165bc25e7fe464120d8139a3d Mon Sep 17 00:00:00 2001
2 From: Alexander Kanavin <alex.kanavin@gmail.com>
3 Date: Fri, 30 Dec 2016 18:23:27 +0200
4 Subject: [PATCH] Set gpgme variables with pkg-config, not with cmake module
5  (which doesn't work properly)
6
7 Upstream-Status: Inappropriate [gpgme upstream does not have pkg-config support and is not interested in it]
8 Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
9
10 ---
11  CMakeLists.txt | 3 ++-
12  1 file changed, 2 insertions(+), 1 deletion(-)
13
14 diff --git a/CMakeLists.txt b/CMakeLists.txt
15 index e949dbe..c954b2e 100644
16 --- 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)
20  PKG_CHECK_MODULES(LIBXML2 libxml-2.0 REQUIRED)
21  FIND_PACKAGE(CURL REQUIRED)
22 -FIND_PACKAGE(Gpgme REQUIRED)
23 +PKG_CHECK_MODULES(GPGME gpgme REQUIRED)
24 +set(GPGME_VANILLA_LIBRARIES ${GPGME_LIBRARIES})
25  
26  
27  IF (WITH_ZCHUNK)