summaryrefslogtreecommitdiff
path: root/recipes/libsoup.recipe
diff options
context:
space:
mode:
authorNicolas Dufresne <nicolas.dufresne@collabora.com>2016-04-16 17:17:03 -0400
committerNicolas Dufresne <nicolas.dufresne@collabora.com>2016-04-16 17:20:33 -0400
commit8aef6941fb9a4ff19ea97a6a3dc0e13546a7dfdf (patch)
treee22d2798bffdc0bdce0fe467d984aff8547c2224 /recipes/libsoup.recipe
parent47042e51329d2df68cb90d820b13b16259ac80c0 (diff)
soup: Add explicit dependency on glib-networking
This is now being checked in configure script, so it must be built before. This is not strictly needed, as we could disable that check, but for us it will only make glib-networking be built earlier. This should fix recent failure to build on Fedora.
Diffstat (limited to 'recipes/libsoup.recipe')
-rw-r--r--recipes/libsoup.recipe2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/libsoup.recipe b/recipes/libsoup.recipe
index 034ab657..41d990bd 100644
--- a/recipes/libsoup.recipe
+++ b/recipes/libsoup.recipe
@@ -10,7 +10,7 @@ class Recipe(recipe.Recipe):
autoreconf = True
autoreconf_sh = 'gtkdocize && intltoolize --automake --copy && autoreconf --force --install --verbose'
configure_options = '--without-gnome --disable-more-warnings --disable-vala'
- deps = ['libxml2', 'glib']
+ deps = ['libxml2', 'glib', 'glib-networking']
patches = ['libsoup/0001-Rip-out-sqlite-based-cookie-storage.patch',
'libsoup/0002-Don-t-build-tests.patch',
]