Config.in 688 B

12345678910111213141516171819
  1. config BR2_PACKAGE_LIBCEC
  2. bool "libcec"
  3. depends on BR2_INSTALL_LIBSTDCPP
  4. depends on BR2_TOOLCHAIN_HAS_THREADS
  5. depends on BR2_USE_WCHAR
  6. depends on !BR2_STATIC_LIBS
  7. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 # C++11
  8. select BR2_PACKAGE_LIBPLATFORM
  9. help
  10. libcec allows you in combination with the right hardware to
  11. control your home theater devices with your TV remote
  12. control utilizing existing HDMI cabling.
  13. http://libcec.pulse-eight.com
  14. comment "libcec needs a toolchain w/ C++, wchar, threads, dynamic library, gcc >= 4.7"
  15. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \
  16. !BR2_USE_WCHAR || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 || \
  17. BR2_STATIC_LIBS