Config.in 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. help
  20. v4l-utils is a collection of various video4linux and DVB
  21. utilities.
  22. Enable this if you want to build the following tools:
  23. - cx18-ctl
  24. - dvb-fe-tool, dvbv5-zap, dvbv5-scan, dvb-format-convert
  25. - decode_tm6000
  26. - ir-keytable
  27. - media-ctl
  28. - v4l2-compliance
  29. - v4l2-ctl, cx18-ctl, ivtv-ctl
  30. - v4l2-sysfs-path
  31. - rds-ctl
  32. - qv4l2 (if Qt is enabled)
  33. endif
  34. comment "libv4l needs a toolchain w/ threads, C++ and headers >= 3.0"
  35. depends on !BR2_TOOLCHAIN_HAS_THREADS \
  36. || !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0