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: Hadrien 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: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
e1433ad992
commit
2d017035c4
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user