From 51597e99e963075c20e5e6ed193aa02d50a98b29 Mon Sep 17 00:00:00 2001 From: Romain Naour Date: Sun, 16 Apr 2017 21:49:05 +0200 Subject: [PATCH] package/efl: add libunwind optional dependency There is no configure option to enable/disable libunwind support. See efl/m4/efl_libunwind.m4 Signed-off-by: Romain Naour Signed-off-by: Thomas Petazzoni --- package/efl/efl.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package/efl/efl.mk b/package/efl/efl.mk index 4008d30a86..04e15f5092 100644 --- a/package/efl/efl.mk +++ b/package/efl/efl.mk @@ -293,6 +293,10 @@ endef EFL_POST_INSTALL_TARGET_HOOKS = EFL_HOOK_REMOVE_UPOWER endif +ifeq ($(BR2_PACKAGE_LIBUNWIND),y) +EFL_DEPENDENCIES += libunwind +endif + $(eval $(autotools-package)) ################################################################################