diff options
Diffstat (limited to 'package/libcec')
-rw-r--r-- | package/libcec/Config.in | 5 | ||||
-rw-r--r-- | package/libcec/libcec.mk | 2 |
2 files changed, 4 insertions, 3 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 diff --git a/package/libcec/libcec.mk b/package/libcec/libcec.mk index 49fa067dda..8a58e1ec5f 100644 --- a/package/libcec/libcec.mk +++ b/package/libcec/libcec.mk @@ -7,7 +7,7 @@ LIBCEC_VERSION = libcec-2.1.1 LIBCEC_SITE = http://github.com/Pulse-Eight/libcec/tarball/$(LIBCEC_VERSION) LIBCEC_LICENSE = GPLv2+ -LIBCEC_LICENSE_FILE = COPYING +LIBCEC_LICENSE_FILES = COPYING # Autoreconf required due to being a dev tarball and not a release tarball. LIBCEC_AUTORECONF = YES |