package/libfribidi: add optional dependency on libglib2

Fix the following message when libglib2 is enabled but not already
built:
Package glib-2.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `glib-2.0.pc'
No package 'glib-2.0' found

Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Fabio Porcedda 2015-02-27 10:19:24 +01:00 committed by Peter Korsgaard
parent a74ed49f66
commit c2eca9eb90

View file

@ -15,4 +15,10 @@ LIBFRIBIDI_INSTALL_STAGING = YES
LIBFRIBIDI_AUTORECONF = YES
LIBFRIBIDI_DEPENDENCIES = host-pkgconf
ifeq ($(BR2_PACKAGE_LIBGLIB2),y)
LIBFRIBIDI_DEPENDENCIES += libglib2
else
LIBFRIBIDI_CONF_OPTS += --with-glib=no
endif
$(eval $(autotools-package))