mirror of
https://git.busybox.net/buildroot.git
synced 2024-12-11 22:33:29 +08:00
6898aa16be
spa (i.e. plugins which can be disabled but also tools which can't be
disabled) fails to build on gcc 4.8 since bump to version 0.3.26 in
commit a6d88d3ba5
:
In file included from ../spa/include/spa/pod/builder.h:34:0,
from ../spa/include/spa/param/audio/format-utils.h:34,
from ../spa/plugins/audioconvert/test-audioadapter.c:36:
../spa/include/spa/utils/hook.h:57:50: error: initializer element is not constant
#define SPA_CALLBACKS_INIT(_funcs,_data) (struct spa_callbacks){ _funcs, _data, }
^
Fixes:
- http://autobuild.buildroot.org/results/e7a36ec7166a287667572e5140685e6371a9f107
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
47 lines
1.3 KiB
Plaintext
47 lines
1.3 KiB
Plaintext
config BR2_PACKAGE_PIPEWIRE
|
|
bool "pipewire"
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # dbus
|
|
depends on BR2_USE_MMU # dbus
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5
|
|
select BR2_PACKAGE_DBUS
|
|
help
|
|
PipeWire is a server and user space API to deal with
|
|
multimedia pipelines.
|
|
|
|
https://pipewire.org/
|
|
|
|
if BR2_PACKAGE_PIPEWIRE
|
|
|
|
config BR2_PACKAGE_PIPEWIRE_GSTREAMER
|
|
bool "pipewire gstreamer plugins"
|
|
depends on BR2_USE_WCHAR # libglib2
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
|
|
depends on BR2_USE_MMU # libglib2
|
|
select BR2_PACKAGE_LIBGLIB2
|
|
select BR2_PACKAGE_GSTREAMER1
|
|
select BR2_PACKAGE_GST1_PLUGINS_BASE
|
|
help
|
|
Build GStreamer plugins
|
|
|
|
comment "pipewire gstreamer support needs a toolchain w/ wchar, threads"
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
|
|
|
config BR2_PACKAGE_PIPEWIRE_V4L2
|
|
bool "pipewire v4l2 plugin"
|
|
depends on BR2_PACKAGE_HAS_UDEV
|
|
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_18
|
|
help
|
|
Build v4l2 plugin
|
|
|
|
comment "pipewire v4l2 support needs udev and a toolchain w/ headers >= 3.18"
|
|
depends on !BR2_PACKAGE_HAS_UDEV || \
|
|
!BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_18
|
|
|
|
endif
|
|
|
|
comment "pipewire needs a toolchain w/ threads, gcc >= 5"
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_5
|