From 10d807181a52066e71fb4944c26817549e34b616 Mon Sep 17 00:00:00 2001 From: Adam Duskett Date: Tue, 31 Mar 2020 17:21:32 -0700 Subject: [PATCH] package/libmediaart: 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/libmediaart/libmediaart.mk | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/package/libmediaart/libmediaart.mk b/package/libmediaart/libmediaart.mk index 4933b74c19..0d110a43e5 100644 --- a/package/libmediaart/libmediaart.mk +++ b/package/libmediaart/libmediaart.mk @@ -33,4 +33,11 @@ LIBMEDIAART_CONF_OPTS += \ --disable-qt endif +ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y) +LIBMEDIAART_CONF_OPTS += --enable-introspection +LIBMEDIAART_DEPENDENCIES += gobject-introspection +else +LIBMEDIAART_CONF_OPTS += --disable-introspection +endif + $(eval $(autotools-package)) -- 2.30.2