6e817622b8
Many of the C++ wrapper packages had API changes. These changes where never introduced in gtkmm3, meaning that older, but still maintained versions are needed to build gtkmm3. Fixes: - http://autobuild.buildroot.net/results/172/17263ac51f197031106eb7fd595126a2720f0397 Signed-off-by: Daniel Lang <d.lang@abatec.at> Signed-off-by: Arnout Vandecappelle <arnout@mind.be>
31 lines
1.2 KiB
Plaintext
31 lines
1.2 KiB
Plaintext
comment "gtkmm3 needs libgtk3 and a toolchain w/ C++, wchar, threads, gcc >= 4.9"
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
|
depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 || !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_4_9 # C++11
|
|
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_ATKMM2_28
|
|
select BR2_PACKAGE_CAIROMM1_14
|
|
select BR2_PACKAGE_GLIBMM2_66
|
|
select BR2_PACKAGE_LIBSIGC2
|
|
select BR2_PACKAGE_PANGOMM2_46
|
|
help
|
|
The gtkmm3 package is a set of C++ bindings for GTK 3.
|
|
|
|
http://www.gtkmm.org/
|