Commit 2d017035 authored by Hadrien Boutteville's avatar Hadrien Boutteville Committed by Thomas Petazzoni
Browse files

libsoup: add libsoup-gnome support



libsoup can build a libsoup-gnome library. Add support for
libsoup-gnome as it is a dependency of Midori.

Signed-off-by: default avatarHadrien Boutteville <hadrien.boutteville@gmail.com>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Cc: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent e1433ad9
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -15,6 +15,11 @@ config BR2_PACKAGE_LIBSOUP

if BR2_PACKAGE_LIBSOUP

config BR2_PACKAGE_LIBSOUP_GNOME
	bool "libsoup-gnome"
	help
	  Build libsoup-gnome library.

config BR2_PACKAGE_LIBSOUP_SSL
	bool "https support"
	select BR2_PACKAGE_GLIB_NETWORKING
+7 −1
Original line number Diff line number Diff line
@@ -18,11 +18,17 @@ ifneq ($(BR2_INET_IPV6),y)
LIBSOUP_CONF_ENV += soup_cv_ipv6=no
endif

LIBSOUP_CONF_OPT = --disable-glibtest --without-gnome
LIBSOUP_CONF_OPT = --disable-glibtest

LIBSOUP_DEPENDENCIES = host-pkgconf host-libglib2 \
       libglib2 libxml2 sqlite host-intltool

ifeq ($(BR2_PACKAGE_LIBSOUP_GNOME),y)
LIBSOUP_CONF_OPT += --with-gnome
else
LIBSOUP_CONF_OPT += --without-gnome
endif

ifeq ($(BR2_PACKAGE_LIBSOUP_SSL),y)
LIBSOUP_DEPENDENCIES += glib-networking
else