Config.in 1.6 KB

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