Config.in 820 B

12345678910111213141516171819202122232425
  1. config 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_USE_MMU # fork()
  8. depends on BR2_USE_WCHAR
  9. select BR2_PACKAGE_FONTCONFIG
  10. select BR2_PACKAGE_FREETYPE
  11. select BR2_PACKAGE_JPEG
  12. select BR2_PACKAGE_LIBCAP
  13. select BR2_PACKAGE_LIBEXECINFO if !BR2_TOOLCHAIN_USES_GLIBC
  14. help
  15. This project describes how to build your own digital
  16. satellite receiver and Video Disk Recorder.
  17. http://www.tvdr.de
  18. comment "vdr needs a toolchain w/ C++, dynamic library, NPTL, wchar, headers >= 3.9"
  19. depends on BR2_USE_MMU
  20. depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS || \
  21. !BR2_TOOLCHAIN_HAS_THREADS_NPTL || \
  22. !BR2_USE_WCHAR || \
  23. !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_9