diff --git a/package/gstreamer1/gst1-plugins-good/Config.in b/package/gstreamer1/gst1-plugins-good/Config.in index 6a738faa00..c4eb4efb65 100644 --- a/package/gstreamer1/gst1-plugins-good/Config.in +++ b/package/gstreamer1/gst1-plugins-good/Config.in @@ -403,13 +403,15 @@ config BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_SPEEX config BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_TAGLIB bool "taglib" depends on BR2_INSTALL_LIBSTDCPP + depends on BR2_TOOLCHAIN_GCC_AT_LEAST_7 # C++17 depends on BR2_USE_WCHAR select BR2_PACKAGE_TAGLIB help Taglib tagging plugin library -comment "taglib needs a toolchain w/ C++, wchar" - depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR +comment "taglib needs a toolchain w/ C++, wchar, gcc >= 7" + depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR \ + || !BR2_TOOLCHAIN_GCC_AT_LEAST_7 config BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_TWOLAME bool "twolame" diff --git a/package/taglib/Config.in b/package/taglib/Config.in index 5b641a9653..9a43c82a5e 100644 --- a/package/taglib/Config.in +++ b/package/taglib/Config.in @@ -1,6 +1,7 @@ config BR2_PACKAGE_TAGLIB bool "taglib" depends on BR2_INSTALL_LIBSTDCPP + depends on BR2_TOOLCHAIN_GCC_AT_LEAST_7 # C++17 depends on BR2_USE_WCHAR select BR2_PACKAGE_UTFCPP help @@ -12,5 +13,6 @@ config BR2_PACKAGE_TAGLIB http://taglib.org/ -comment "taglib needs a toolchain w/ C++, wchar" - depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR +comment "taglib needs a toolchain w/ C++, wchar, gcc >= 7" + depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR \ + || !BR2_TOOLCHAIN_GCC_AT_LEAST_7