1config 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 14 http://libcec.pulse-eight.com 15 16comment "libcec needs a toolchain w/ C++, wchar, threads, dynamic library, gcc >= 4.7" 17 depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \ 18 !BR2_USE_WCHAR || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 || \ 19 BR2_STATIC_LIBS 20