From 9ef323533a6dd0859a1639645aaf45d0cc8bb21a Mon Sep 17 00:00:00 2001 From: Bernd Kuhls Date: Sat, 3 Aug 2019 21:14:49 +0200 Subject: [PATCH] package/gstreamer/gst-plugins-base: pango plugin needs gcc >= 4.8 Due to the harfbuzz bump to version 2.5.2 the pango plugin needs gcc >= 4.8. Signed-off-by: Bernd Kuhls Signed-off-by: Thomas Petazzoni --- package/gstreamer/gst-plugins-base/Config.in | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/package/gstreamer/gst-plugins-base/Config.in b/package/gstreamer/gst-plugins-base/Config.in index e9c8239f79..d784bcdd39 100644 --- a/package/gstreamer/gst-plugins-base/Config.in +++ b/package/gstreamer/gst-plugins-base/Config.in @@ -83,10 +83,12 @@ config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_PANGO bool "pango font renderer" depends on BR2_INSTALL_LIBSTDCPP # pango -> freetype depends on BR2_TOOLCHAIN_HAS_SYNC_4 # pango -> harfbuzz + depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # pango -> harfbuzz select BR2_PACKAGE_PANGO -comment "pango plugin needs a toolchain w/ C++" - depends on !BR2_INSTALL_LIBSTDCPP +comment "pango plugin needs a toolchain w/ C++, gcc => 4.8" + depends on !BR2_INSTALL_LIBSTDCPP || \ + !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 depends on BR2_TOOLCHAIN_HAS_SYNC_4 config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_SUBPARSE