From c89c2234bcc0df315745eafc9e0808573a8ba485 Mon Sep 17 00:00:00 2001 From: Adam Duskett Date: Tue, 31 Mar 2020 17:21:33 -0700 Subject: [PATCH] package/rygel: enable gobject-introspection support If gobject-introspection is selected, add the gobject-introspection package to the dependency list and set the conf opt --enable-introspection. Signed-off-by: Adam Duskett Signed-off-by: Yann E. MORIN --- package/rygel/rygel.mk | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/package/rygel/rygel.mk b/package/rygel/rygel.mk index c43030d69f..21c8ebee6a 100644 --- a/package/rygel/rygel.mk +++ b/package/rygel/rygel.mk @@ -33,6 +33,13 @@ ifeq ($(BR2_PACKAGE_GDK_PIXBUF),y) RYGEL_DEPENDENCIES += gdk-pixbuf endif +ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y) +RYGEL_CONF_OPTS += --enable-introspection +RYGEL_DEPENDENCIES += gobject-introspection +else +RYGEL_CONF_OPTS += --disable-introspection +endif + ifeq ($(BR2_PACKAGE_RYGEL_MEDIA_ENGINE_GSTREAMER1),y) RYGEL_CONF_OPTS += \ --with-media-engine=gstreamer \ -- 2.30.2