zbar: needs kernel headers >= 3.17
authorFabrice Fontaine <fontaine.fabrice@gmail.com>
Sat, 19 Jan 2019 09:37:10 +0000 (10:37 +0100)
committerPeter Korsgaard <peter@korsgaard.com>
Mon, 28 Jan 2019 08:58:59 +0000 (09:58 +0100)
v4l2_query_ext_ctrl has been added in kernel 3.17:
https://github.com/torvalds/linux/commit/5082c2417841e64df975789011e182ce99a9dacd

Fixes:
 - http://autobuild.buildroot.org/results/d7b244cf9488eafb59ba8575f17884f4f8512db1

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
package/gstreamer/gst-plugins-bad/Config.in
package/zbar/Config.in

index 7bbd56a602ab91f5b338fe8fc3cb28d6dae91dc4..f45981f6c8fce82a3d24e1f9ff48c3a4cf6a1332 100644 (file)
@@ -326,12 +326,12 @@ config BR2_PACKAGE_GST_PLUGINS_BAD_ZBAR
        depends on BR2_USE_MMU # zbar-> libv4l
        depends on !BR2_STATIC_LIBS # zbar-> libv4l
        depends on BR2_INSTALL_LIBSTDCPP # zbar-> libv4l
-       depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0 # zbar-> libv4l
+       depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_17 # zbar
        select BR2_PACKAGE_ZBAR
 
-comment "zbar plugin needs a toolchain w/ threads, dynamic library, C++ and headers >= 3.0"
+comment "zbar plugin needs a toolchain w/ threads, dynamic library, C++ and headers >= 3.17"
        depends on BR2_USE_MMU
        depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS \
-               || !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0
+               || !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_17
 
 endif
index 0f4d115745ad24865a5b59e3568cdb96b50f4c21..e850c1f02bdd28bb826ab8c35fde317aa86b8748 100644 (file)
@@ -3,7 +3,7 @@ config BR2_PACKAGE_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
+       depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_17 # v4l2_query_ext_ctrl
        select BR2_PACKAGE_JPEG
        select BR2_PACKAGE_LIBV4L
        help
@@ -11,7 +11,7 @@ config BR2_PACKAGE_ZBAR
 
          https://git.linuxtv.org/zbar.git/about/
 
-comment "zbar needs a toolchain w/ threads, C++ and headers >= 3.0"
+comment "zbar needs a toolchain w/ threads, C++ and headers >= 3.17"
        depends on BR2_USE_MMU
        depends on !BR2_TOOLCHAIN_HAS_THREADS \
-               || !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0
+               || !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_17