1config BR2_PACKAGE_VDR 2 bool "vdr" 3 depends on BR2_INSTALL_LIBSTDCPP 4 depends on !BR2_STATIC_LIBS 5 depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL 6 depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_9 7 depends on BR2_TOOLCHAIN_USES_GLIBC # execinfo.h 8 depends on BR2_USE_MMU # fork() 9 depends on BR2_USE_WCHAR 10 select BR2_PACKAGE_FONTCONFIG 11 select BR2_PACKAGE_FREETYPE 12 select BR2_PACKAGE_JPEG 13 select BR2_PACKAGE_LIBCAP 14 select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE 15 help 16 This project describes how to build your own digital 17 satellite receiver and Video Disk Recorder. 18 19 http://www.tvdr.de 20 21comment "vdr needs a glibc toolchain w/ C++, dynamic library, NPTL, wchar, headers >= 3.9" 22 depends on BR2_USE_MMU 23 depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS || \ 24 !BR2_TOOLCHAIN_HAS_THREADS_NPTL || \ 25 !BR2_TOOLCHAIN_USES_GLIBC || !BR2_USE_WCHAR || \ 26 !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_9 27