From: Markos Chandras Date: Sun, 11 Mar 2012 13:15:00 +0000 (+0100) Subject: libethumb: Fix automagic dependencies on libedbus and libexif X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ce6727f63046c49d5e778af72e7096ff2e3ad82c;p=buildroot.git libethumb: Fix automagic dependencies on libedbus and libexif libethumb will determine during configuration phase whether to build the optional libexif and libedbus modules. It will enable this modules if libedbus or libexif are present on the target system. Therefore, we need to add these packages as optional dependencies to libethumb. Signed-off-by: Markos Chandras Signed-off-by: Arnout Vandecappelle (Essensium/Mind) Signed-off-by: Peter Korsgaard --- diff --git a/package/efl/libethumb/libethumb.mk b/package/efl/libethumb/libethumb.mk index 16b2ba9553..617de0d790 100644 --- a/package/efl/libethumb/libethumb.mk +++ b/package/efl/libethumb/libethumb.mk @@ -13,4 +13,12 @@ LIBETHUMB_DEPENDENCIES = libeina libevas libecore libedje host-libedje LIBETHUMB_CONF_OPT = --with-edje-cc=$(HOST_DIR)/usr/bin/edje_cc +ifeq ($(BR2_PACKAGE_LIBEXIF),y) +LIBETHUMB_DEPENDENCIES += libexif +endif + +ifeq ($(BR2_PACKAGE_LIBEDBUS),y) +LIBETHUMB_DEPENDENCIES += libedbus +endif + $(eval $(call AUTOTARGETS))