Config.in 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. config BR2_PACKAGE_LIBV4L
  2. bool "libv4l"
  3. depends on BR2_TOOLCHAIN_HAS_THREADS
  4. depends on BR2_INSTALL_LIBSTDCPP
  5. depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0 # media headers
  6. select BR2_PACKAGE_ARGP_STANDALONE if BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_MUSL
  7. select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
  8. help
  9. libv4l is a collection of libraries which adds a thin
  10. abstraction layer on top of video4linux2 devices. libv4l
  11. consists of 3 different libraries: libv4lconvert, libv4l1 and
  12. libv4l2.
  13. http://linuxtv.org/wiki/index.php/V4l-utils
  14. if BR2_PACKAGE_LIBV4L
  15. comment "libv4l JPEG support not enabled"
  16. depends on !BR2_PACKAGE_JPEG
  17. config BR2_PACKAGE_LIBV4L_UTILS
  18. bool "v4l-utils tools"
  19. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11
  20. help
  21. v4l-utils is a collection of various video4linux and DVB
  22. utilities.
  23. Enable this if you want to build the following tools:
  24. - cx18-ctl
  25. - dvb-fe-tool, dvbv5-zap, dvbv5-scan, dvb-format-convert
  26. - decode_tm6000
  27. - ir-keytable
  28. - media-ctl
  29. - v4l2-compliance
  30. - v4l2-ctl, cx18-ctl, ivtv-ctl
  31. - v4l2-sysfs-path
  32. - rds-ctl
  33. - qv4l2 (if Qt is enabled)
  34. comment "v4l-utils tools needs a toolchain w/ C++11"
  35. depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
  36. endif
  37. comment "libv4l needs a toolchain w/ threads, C++ and headers >= 3.0"
  38. depends on !BR2_TOOLCHAIN_HAS_THREADS \
  39. || !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0