07ac045655
Quite some work has been done from 0.8.3 to 1.0.1, and as a result this commit is very intrusive. The biggest change is the move to an autotools package. Then, the options that enable utilities individually have been deprecated and moved to Config.in.legacy. Instead, we introduce new option to select either all the utilities. This change loses granularity in favor of maintainability. [Peter: needs host-pkgconf. Select and use argp-standalone on uClibc] Signed-off-by: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
33 lines
1019 B
Plaintext
33 lines
1019 B
Plaintext
config BR2_PACKAGE_LIBV4L
|
|
bool "libv4l"
|
|
depends on BR2_LARGEFILE
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_USE_MMU # fork()
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
select BR2_PACKAGE_ARGP_STANDALONE if BR2_TOOLCHAIN_USES_UCLIBC
|
|
help
|
|
libv4l is a collection of libraries which adds a thin abstraction
|
|
layer on top of video4linux2 devices. libv4l consists of 3 different
|
|
libraries: libv4lconvert, libv4l1 and libv4l2.
|
|
|
|
http://freshmeat.net/projects/libv4l
|
|
|
|
if BR2_PACKAGE_LIBV4L
|
|
|
|
comment "libv4l JPEG support not enabled"
|
|
depends on !BR2_PACKAGE_JPEG
|
|
|
|
config BR2_PACKAGE_LIBV4L_UTILS
|
|
bool "v4l-utils tools"
|
|
help
|
|
v4l-utils is a collection of various video4linux and DVB utilities.
|
|
Enable this if you want to build the following tools:
|
|
cx18-ctl, ir-keytable, ivtv-ctl, v4l2-ctl, v4l2-sysfs-path and
|
|
others.
|
|
|
|
endif
|
|
|
|
comment "libv4l needs a toolchain w/ largefile, threads and C++"
|
|
depends on !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_USE_MMU
|