diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2013-08-12 14:08:33 -0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2013-08-13 10:19:44 +0200 |
commit | 4c5b04f009e8182d6bb2313a39abf75a9128ec6f (patch) | |
tree | 370ae4ec75d076a0d9adaf8b952f5ff638b44425 /package/libcec | |
parent | 1141d99aae9e1b139509ad71c969e6705417a48b (diff) | |
download | buildroot-4c5b04f009e8182d6bb2313a39abf75a9128ec6f.tar.gz buildroot-4c5b04f009e8182d6bb2313a39abf75a9128ec6f.zip |
libcec: needs threads
Fixes:
http://autobuild.buildroot.net/results/16a/16ad8b64e68477dcd663d07c600fd1be3164df81/
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/libcec')
-rw-r--r-- | package/libcec/Config.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/package/libcec/Config.in b/package/libcec/Config.in index b1fa03b057..7a67952144 100644 --- a/package/libcec/Config.in +++ b/package/libcec/Config.in @@ -1,6 +1,7 @@ config BR2_PACKAGE_LIBCEC bool "libcec" depends on BR2_INSTALL_LIBSTDCPP + depends on BR2_TOOLCHAIN_HAS_THREADS help libcec allows you in combination with the right hardware to control your home theater devices with your TV remote @@ -8,5 +9,5 @@ config BR2_PACKAGE_LIBCEC http://libcec.pulse-eight.com -comment "libcec requires C++ support in toolchain" - depends on !BR2_INSTALL_LIBSTDCPP +comment "libcec requires C++ and threading support in toolchain" + depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS |