Config.in 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  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
  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://freshmeat.net/projects/libv4l
  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. help
  21. v4l-utils is a collection of various video4linux and DVB utilities.
  22. Enable this if you want to build the following tools:
  23. cx18-ctl, ir-keytable, ivtv-ctl, v4l2-ctl, v4l2-sysfs-path and
  24. others.
  25. endif
  26. comment "libv4l needs a toolchain w/ threads, dynamic library, C++ and headers >= 3.0"
  27. depends on BR2_USE_MMU
  28. depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS \
  29. || !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0