diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2012-11-23 22:01:38 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2012-11-23 22:01:38 +0100 |
commit | ade0a8a856e1009210538170cd72d92a07c06233 (patch) | |
tree | c9d08bfc7cc4fb10d071649c9b0e4a884c109bca | |
parent | bf5d51717ba4988d41c2e86157b95b08b26f379b (diff) | |
download | buildroot-novena-ade0a8a856e1009210538170cd72d92a07c06233.tar.gz buildroot-novena-ade0a8a856e1009210538170cd72d92a07c06233.zip |
directfb: needs threads support
Fixes http://autobuild.buildroot.net/results/237aaf7b036a98867de1df47d39d01ec4137efd3
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | package/directfb/Config.in | 4 | ||||
-rw-r--r-- | package/multimedia/gst-plugins-bad/Config.in | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/package/directfb/Config.in b/package/directfb/Config.in index 47f9feaaf..a1845689d 100644 --- a/package/directfb/Config.in +++ b/package/directfb/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_DIRECTFB bool "directfb" + depends on BR2_TOOLCHAIN_HAS_THREADS select BR2_PACKAGE_FREETYPE select BR2_PACKAGE_ZLIB help @@ -107,3 +108,6 @@ config BR2_PACKAGE_DIRECTB_TESTS bool "build directfb tests" endif # BR2_PACKAGE_DIRECTFB + +comment "directfb needs a toolchain with thread support" + depends on !BR2_TOOLCHAIN_HAS_THREADS diff --git a/package/multimedia/gst-plugins-bad/Config.in b/package/multimedia/gst-plugins-bad/Config.in index 7784ad70f..d87aec4aa 100644 --- a/package/multimedia/gst-plugins-bad/Config.in +++ b/package/multimedia/gst-plugins-bad/Config.in @@ -262,6 +262,7 @@ config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_CURL config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DIRECTFB bool "directfb" select BR2_PACKAGE_DIRECTFB + depends on BR2_TOOLCHAIN_HAS_THREADS config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DVB bool "dvb" |