All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/5] package/libsoup: add optional dependency for gobject-introspection
@ 2020-03-15 17:24 aduskett at gmail.com
  2020-03-15 17:24 ` [Buildroot] [PATCH 2/5] package/gssdp: " aduskett at gmail.com
                   ` (4 more replies)
  0 siblings, 5 replies; 12+ messages in thread
From: aduskett at gmail.com @ 2020-03-15 17:24 UTC (permalink / raw)
  To: buildroot

From: Adam Duskett <Aduskett@gmail.com>

If gobject-introspection is selected, explicitly set --with-introspection in
the configure options and add a dependency for gobject-introspection.

Signed-off-by: Adam Duskett <Aduskett@gmail.com>
---
 package/libsoup/libsoup.mk | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/package/libsoup/libsoup.mk b/package/libsoup/libsoup.mk
index 95bd682010..07c9d787bd 100644
--- a/package/libsoup/libsoup.mk
+++ b/package/libsoup/libsoup.mk
@@ -16,6 +16,13 @@ LIBSOUP_CONF_OPTS = --disable-glibtest --enable-vala=no --with-gssapi=no
 LIBSOUP_DEPENDENCIES = host-pkgconf host-libglib2 \
 	libglib2 libxml2 sqlite host-intltool
 
+ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
+LIBSOUP_CONF_OPTS += --with-introspection
+LIBSOUP_DEPENDENCIES += gobject-introspection
+else
+LIBSOUP_CONF_OPTS += --without-introspection
+endif
+
 ifeq ($(BR2_PACKAGE_LIBSOUP_GNOME),y)
 LIBSOUP_CONF_OPTS += --with-gnome
 else
-- 
2.24.1

^ permalink raw reply related	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2020-05-11  7:54 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-15 17:24 [Buildroot] [PATCH 1/5] package/libsoup: add optional dependency for gobject-introspection aduskett at gmail.com
2020-03-15 17:24 ` [Buildroot] [PATCH 2/5] package/gssdp: " aduskett at gmail.com
2020-05-11  5:19   ` Thomas Petazzoni
2020-05-11  7:02     ` Fabrice Fontaine
2020-05-11  7:20       ` Fabrice Fontaine
2020-05-11  7:54         ` James Hilliard
2020-03-15 17:24 ` [Buildroot] [PATCH 3/5] package/gupnp: " aduskett at gmail.com
2020-03-15 17:24 ` [Buildroot] [PATCH 4/5] package/gupnp-dlna: " aduskett at gmail.com
2020-03-15 17:39   ` Fabrice Fontaine
2020-03-15 18:46     ` Adam Duskett
2020-03-15 17:24 ` [Buildroot] [PATCH 5/5] package/gupnp-av: " aduskett at gmail.com
2020-03-22 10:45 ` [Buildroot] [PATCH 1/5] package/libsoup: " Yann E. MORIN

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.