mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 08:30:47 -09:00
Since commit d1757fdfb0, at-spi2-core
depends on !BR2_STATIC_LIBS, but this wasn't properly propagated to
reverse dependencies, so let's do this propagation now.
Fixes the following warning:
WARNING: unmet direct dependencies detected for BR2_PACKAGE_AT_SPI2_CORE
Depends on [n]: BR2_TOOLCHAIN_HAS_THREADS [=y] && BR2_USE_MMU [=y] && BR2_USE_WCHAR [=y] && !BR2_STATIC_LIBS [=y]
Selected by [y]:
- BR2_PACKAGE_ATKMM [=y] && BR2_INSTALL_LIBSTDCPP [=y] && BR2_TOOLCHAIN_GCC_AT_LEAST_7 [=y] && BR2_TOOLCHAIN_HAS_THREADS [=y] && BR2_USE_MMU [=y] && BR2_USE_WCHAR [=y]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
26 lines
931 B
Plaintext
26 lines
931 B
Plaintext
config BR2_PACKAGE_ATKMM2_28
|
|
bool "atkmm (2.28.x)"
|
|
depends on BR2_INSTALL_LIBSTDCPP # glibmm
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++11
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # at-spi2-core/glibmm -> libglib2
|
|
depends on BR2_USE_MMU # at-spi2-core/glibmm -> libglib2
|
|
depends on BR2_USE_WCHAR # at-spi2-core/glibmm -> libglib2
|
|
depends on !BR2_STATIC_LIBS # at-spi2-core
|
|
select BR2_PACKAGE_AT_SPI2_CORE
|
|
select BR2_PACKAGE_GLIBMM2_66
|
|
select BR2_PACKAGE_LIBSIGC2
|
|
|
|
help
|
|
The atkmm package is a set of C++ bindings for Atk.
|
|
|
|
This is the last version before the API and ABI change
|
|
introduced in 2.36.0 which requires C++17.
|
|
|
|
http://www.gtkmm.org/
|
|
|
|
comment "atkmm (2.28.x) needs a toolchain w/ C++, wchar, threads, gcc >= 4.9, dynamic library"
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 || !BR2_USE_WCHAR \
|
|
|| !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
BR2_STATIC_LIBS
|