mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 21:43:30 +08:00
8729c4ef88
- change from git download to official release and download site (drop need for autoreconf) - drop dependency on kernel headers >= 3.17 (should be fixed with commit 'v4l2: make ZBar build and run on Kernels < 3.16' (see [1]), fall back to original kernel headers >= 3.0 dependency propagated from libv4l [1] https://git.linuxtv.org/zbar.git/commit/?id=fa5c48127ec1e3670e28540c2e6a03431ebac5b8 Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
18 lines
545 B
Plaintext
18 lines
545 B
Plaintext
config BR2_PACKAGE_ZBAR
|
|
bool "zbar"
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libv4l
|
|
depends on BR2_USE_MMU # libv4l
|
|
depends on BR2_INSTALL_LIBSTDCPP # libv4l
|
|
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0 # libv4l
|
|
select BR2_PACKAGE_JPEG
|
|
select BR2_PACKAGE_LIBV4L
|
|
help
|
|
QR and barcode scanner
|
|
|
|
https://git.linuxtv.org/zbar.git/about/
|
|
|
|
comment "zbar needs a toolchain w/ threads, C++ and headers >= 3.0"
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS \
|
|
|| !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0
|