mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 08:30:47 -09:00
As we're about to remove libgtk2, let's drop the wmgui support from cwiid, which is libgtk2 only. Note that cwiid hasn't seen a commit in the past 16 years, so there's no real hope to see wmgui fixed to have support for a more recent Gtk version. And perhaps this separately calls for removing cwiid entirely from Buildroot. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Signed-off-by: Arnout Vandecappelle <arnout@rnout.be>
23 lines
891 B
Plaintext
23 lines
891 B
Plaintext
config BR2_PACKAGE_CWIID
|
|
bool "cwiid"
|
|
depends on !BR2_STATIC_LIBS # bluez5_utils
|
|
depends on BR2_USE_WCHAR # bluez5_utils -> libglib2
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # bluez5_utils -> dbus, alsa-lib, libglib2
|
|
depends on BR2_USE_MMU # bluez5_utils -> dbus, libglib2
|
|
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_18 # bluez5_utils hid plugin
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # bluez5_utils
|
|
select BR2_PACKAGE_BLUEZ5_UTILS
|
|
select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HID # runtime
|
|
help
|
|
A collection of Linux tools written in C for interfacing to
|
|
the Nintendo Wiimote.
|
|
|
|
https://github.com/abstrakraft/cwiid
|
|
|
|
comment "cwiid needs a toolchain w/ dynamic lib, threads, wchar, headers >= 3.18"
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
|
depends on BR2_STATIC_LIBS || !BR2_USE_WCHAR || \
|
|
!BR2_TOOLCHAIN_HAS_THREADS || \
|
|
!BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_18
|
|
depends on BR2_USE_MMU
|