From: Gustavo Zacarias Date: Thu, 3 Nov 2016 09:58:28 +0000 (-0300) Subject: gstreamer1: add explicit libunwind support X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bef9a1fbeb45c3c30d9e00de7ea1742012e538b3;p=buildroot.git gstreamer1: add explicit libunwind support It's a new feature for 1.10.0+, however it doesn't have an enable/disable configure switch so just handle the dependency. Signed-off-by: Gustavo Zacarias Signed-off-by: Thomas Petazzoni --- diff --git a/package/gstreamer1/gstreamer1/gstreamer1.mk b/package/gstreamer1/gstreamer1/gstreamer1.mk index f0afdd976c..cb111f2f4c 100644 --- a/package/gstreamer1/gstreamer1/gstreamer1.mk +++ b/package/gstreamer1/gstreamer1/gstreamer1.mk @@ -34,6 +34,11 @@ GSTREAMER1_CONF_OPTS = \ $(if $(BR2_PACKAGE_GSTREAMER1_PLUGIN_REGISTRY),,--disable-registry) \ $(if $(BR2_PACKAGE_GSTREAMER1_INSTALL_TOOLS),,--disable-tools) -GSTREAMER1_DEPENDENCIES = libglib2 host-pkgconf host-bison host-flex +GSTREAMER1_DEPENDENCIES = \ + host-bison \ + host-flex \ + host-pkgconf \ + libglib2 \ + $(if $(BR2_PACKAGE_LIBUNWIND),libunwind) $(eval $(autotools-package))