a4807a398e
C++17 is mandatory since bump to version 3.0.7 in commitd676c0e494
and617276cf47
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>
31 lines
1.1 KiB
Plaintext
31 lines
1.1 KiB
Plaintext
comment "gtkmm3 needs libgtk3 and a toolchain w/ C++, wchar, threads, gcc >= 7"
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
|
depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_7 || !BR2_USE_WCHAR \
|
|
|| !BR2_INSTALL_LIBSTDCPP || !BR2_PACKAGE_LIBGTK3 \
|
|
|| !BR2_TOOLCHAIN_HAS_THREADS
|
|
|
|
config BR2_PACKAGE_GTKMM3
|
|
bool "gtkmm3"
|
|
# Broken on existing external/internal nios2 toolchains,
|
|
# revisit when they are upgraded with at least Binutils >= 2.26
|
|
# and GCC >= 5.3.
|
|
# https://sourceware.org/bugzilla/show_bug.cgi?id=19405
|
|
depends on !BR2_nios2
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # pangomm, libgtk3 -> pango -> harfbuzz
|
|
depends on BR2_INSTALL_LIBSTDCPP # glibmm, libpangomm -> glibmm/pango
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_7 # libsigc
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # *mm/libgtk3 -> libglib2
|
|
depends on BR2_USE_MMU # *mm/libgtk3 -> libglib2
|
|
depends on BR2_USE_WCHAR # *mm/libgtk3 -> libglib2
|
|
depends on BR2_PACKAGE_LIBGTK3
|
|
select BR2_PACKAGE_ATKMM
|
|
select BR2_PACKAGE_CAIROMM
|
|
select BR2_PACKAGE_GLIBMM
|
|
select BR2_PACKAGE_LIBSIGC
|
|
select BR2_PACKAGE_PANGOMM
|
|
help
|
|
The gtkmm3 package is a set of C++ bindings for GTK 3.
|
|
|
|
http://www.gtkmm.org/
|