kumquat-buildroot/package/gstreamer1/gstreamer1-mm/Config.in
Fabrice Fontaine a4807a398e package/libsigc: needs C++17
C++17 is mandatory since bump to version 3.0.7 in commit
d676c0e494 and
617276cf47

Fixes:
 - http://autobuild.buildroot.org/results/6753fc9dce030a7d8be9afd202a5e27bc09a0041

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2021-12-28 21:40:55 +01:00

30 lines
1.2 KiB
Plaintext

config BR2_PACKAGE_GSTREAMER1_MM
bool "gstreamer1-mm"
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_7 # glibmm -> libsigc
depends on BR2_INSTALL_LIBSTDCPP # glibmm
depends on BR2_USE_WCHAR # glibmm -> libglib2
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
depends on BR2_USE_MMU # glibmm -> libglib2
select BR2_PACKAGE_GLIBMM
select BR2_PACKAGE_GSTREAMER1_CHECK
select BR2_PACKAGE_GST1_PLUGINS_BASE
help
gstreamermm provides C++ bindings for the GStreamer streaming
multimedia library (http://gstreamer.freedesktop.org). With
gstreamermm it is possible to develop applications that work
with multimedia in C++.
gstreamermm is developed over glibmm, libsigc++ and libxml++
and the functionalities they provide. This means that, among
other things, referencing and unreferencing of GObjects is
handled automatically via glibmm's automatic pointer class,
Glib::RefPtr, and libsigc++'s slots are used for callbacks and
signals.
https://gstreamer.freedesktop.org/bindings/cplusplus.html
comment "gstreamer1-mm needs a toolchain w/ C++, wchar, threads, gcc >= 7"
depends on BR2_USE_MMU
depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_7 || !BR2_USE_WCHAR \
|| !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS