From 3915e17e7734ee3abe088d4ce1893eecd7cc4663 Mon Sep 17 00:00:00 2001 From: Adam Duskett Date: Tue, 31 Mar 2020 17:21:31 -0700 Subject: [PATCH] package/libgee: 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/libgee/libgee.mk | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/package/libgee/libgee.mk b/package/libgee/libgee.mk index 81fd354fe8..4b2581e171 100644 --- a/package/libgee/libgee.mk +++ b/package/libgee/libgee.mk @@ -13,4 +13,11 @@ LIBGEE_INSTALL_STAGING = YES LIBGEE_LICENSE = LGPL-2.1+ LIBGEE_LICENSE_FILES = COPYING +ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y) +LIBGEE_CONF_OPTS += --enable-introspection +LIBGEE_DEPENDENCIES += gobject-introspection +else +LIBGEE_CONF_OPTS += --disable-introspection +endif + $(eval $(autotools-package)) -- 2.30.2