summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2018-11-04 13:06:47 +0100
committerChristian Dywan <christian@twotoasts.de>2018-11-04 13:06:47 +0100
commit0c2d8f0ea61f20476542e861bc1772a878a54d32 (patch)
tree161a0f8e7acd56c6c542c8ae0bd8680eedd83bff
parent1321ce1267932b727b64c8abb194e926f54ff169 (diff)
downloadmidori-git-0c2d8f0ea61f20476542e861bc1772a878a54d32.tar.gz
Replace leftover libsoup-gnome pkg-config check with libsoup (#151)
Update the libsoup-gnome pkg-config check to use libsoup instead. All of libsoup-gnome has been deprecated in 2.41.3, and packages ought to depend purely on libsoup these days. Looking at the 'PKGS' below, I think the pkg-config check was only leftover. Midori builds just fine after the replacement. It is necessary since Gentoo no longer ships libsoup-gnome.
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 635d9580..a2ffedde 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -47,7 +47,7 @@ find_package(PkgConfig)
pkg_check_modules(DEPS REQUIRED
sqlite3>=3.6.19
gio-2.0>=2.48.0
- libsoup-gnome-2.4>=2.48.0
+ libsoup-2.4>=2.48.0
)
set(PKGS sqlite3 gio-2.0 libsoup-2.4)