blob: c7b2af89d18e97329c1146f54b7ad9b1524a8805 [file] [log] [blame]
Brad Bishopc342db32019-05-15 21:57:59 -04001From 9294cd19e5e3121fb8d37b44ee82dd7c4b3ab2c7 Mon Sep 17 00:00:00 2001
Brad Bishop6e60e8b2018-02-01 10:27:11 -05002From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Tue, 7 Feb 2017 12:16:03 +0200
Brad Bishop19323692019-04-05 15:28:33 -04004Subject: [PATCH] Get parameters for both libsolv and libsolvext (libdnf is
Brad Bishop316dfdd2018-06-25 12:45:53 -04005
Brad Bishop6e60e8b2018-02-01 10:27:11 -05006 using both)
7
Brad Bishopd7bf8c12018-02-25 22:55:05 -05008Upstream-Status: Submitted [https://github.com/rpm-software-management/libdnf/pull/312]
Brad Bishop6e60e8b2018-02-01 10:27:11 -05009Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Brad Bishopd7bf8c12018-02-25 22:55:05 -050010
Brad Bishop6e60e8b2018-02-01 10:27:11 -050011---
12 CMakeLists.txt | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15diff --git a/CMakeLists.txt b/CMakeLists.txt
Brad Bishopc342db32019-05-15 21:57:59 -040016index b722d4fb..ce88b9e3 100644
Brad Bishop6e60e8b2018-02-01 10:27:11 -050017--- a/CMakeLists.txt
18+++ b/CMakeLists.txt
Andrew Geissler9aee5002022-03-30 16:27:02 +000019@@ -52,7 +52,7 @@ endif()
Brad Bishopc342db32019-05-15 21:57:59 -040020
21 # build dependencies
22 find_package(Gpgme REQUIRED)
Brad Bishop6e60e8b2018-02-01 10:27:11 -050023-PKG_CHECK_MODULES (LIBSOLV REQUIRED libsolv)
24+PKG_CHECK_MODULES (LIBSOLV REQUIRED libsolv libsolvext)
25 set(LIBSOLV_LIBRARY ${LIBSOLV_LIBRARIES})
Andrew Geissler9aee5002022-03-30 16:27:02 +000026
Brad Bishopc342db32019-05-15 21:57:59 -040027