From: Adam Duskett Date: Wed, 1 Apr 2020 00:21:32 +0000 (-0700) Subject: package/libmediaart: enable gobject-introspection support X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=10d807181a52066e71fb4944c26817549e34b616;p=buildroot.git 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 --- 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))