Commit eb71e79f authored by Thomas Petazzoni's avatar Thomas Petazzoni Committed by Peter Korsgaard
Browse files
parent 3d96dc1a
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
config BR2_PACKAGE_LIBV4L
	bool "libv4l"
	depends on BR2_LARGEFILE
	depends on BR2_TOOLCHAIN_HAS_THREADS
	select BR2_PACKAGE_JPEG
	help
	  libv4l is an accompanying collection of libraries that adds a thin
@@ -58,5 +59,5 @@ comment "v4l2-dbg requires a toolchain with C++ support enabled"

endif

comment "libv4l requires a toolchain with LARGEFILE support"
        depends on !BR2_LARGEFILE
comment "libv4l requires a toolchain with LARGEFILE and thread support"
        depends on !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS
+3 −2
Original line number Diff line number Diff line
@@ -182,12 +182,13 @@ config BR2_PACKAGE_OPENCV_WITH_TIFF
config BR2_PACKAGE_OPENCV_WITH_V4L
	bool "v4l support"
	depends on BR2_LARGEFILE
	depends on BR2_TOOLCHAIN_HAS_THREADS
	select BR2_PACKAGE_LIBV4L
	help
	  Enable Video 4 Linux support.

comment "v4l support requires a toolchain with LARGEFILE support"
	depends on !BR2_LARGEFILE
comment "v4l support requires a toolchain with LARGEFILE and thread support"
	depends on !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS

comment "Install options"