package/pipewire: needs headers >= 3.18

v4l2 plugin needs headers >= 3.18 since
4cb90f3b86
(so since its addition to buildroot in commit
75c86f90c7) because of
V4L2_PIX_FMT_ARGB555X which is only available since
fcc0d3db28

v4l2 plugin can't be disabled until
8d71d2dab8

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

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
This commit is contained in:
Fabrice Fontaine 2021-04-25 21:37:42 +02:00 committed by Yann E. MORIN
parent b92c7a8527
commit 996942710a

View File

@ -2,6 +2,7 @@ config BR2_PACKAGE_PIPEWIRE
bool "pipewire"
depends on BR2_PACKAGE_HAS_UDEV # libudev
depends on BR2_TOOLCHAIN_HAS_THREADS # dbus, alsa-lib
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_18
depends on BR2_USE_MMU # dbus
select BR2_PACKAGE_ALSA_LIB
select BR2_PACKAGE_DBUS
@ -30,6 +31,8 @@ comment "pipewire gstreamer support needs a toolchain w/ wchar, threads"
endif
comment "pipewire needs udev and a toolchain w/ threads"
comment "pipewire needs udev and a toolchain w/ threads, headers >= 3.18"
depends on BR2_USE_MMU
depends on !BR2_PACKAGE_HAS_UDEV || !BR2_TOOLCHAIN_HAS_THREADS
depends on !BR2_PACKAGE_HAS_UDEV || \
!BR2_TOOLCHAIN_HAS_THREADS || \
!BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_18