328516a5ad
Fix the following build failure with hid and hog raised since their addition in commitfb9fc969d9
and https://git.kernel.org/pub/scm/bluetooth/bluez.git/commit/?id=9b58288693680b021e5dcbc6f8bea80b5be89311 https://git.kernel.org/pub/scm/bluetooth/bluez.git/commit/?id=646db71713b05d50b2b0c421da34e80ed4c54fbd because UHID_GET_REPORT is only available since kernel 3.18 andfa71f32b5d
: profiles/input/device.c: In function 'uhid_send_get_report_reply': profiles/input/device.c:222:24: error: 'union <anonymous>' has no member named 'get_report_reply' if (size > sizeof(ev.u.get_report_reply.data)) ^ profiles/input/device.c:223:21: error: 'union <anonymous>' has no member named 'get_report_reply' size = sizeof(ev.u.get_report_reply.data); ^ profiles/input/device.c:231:12: error: 'UHID_GET_REPORT_REPLY' undeclared (first use in this function) ev.type = UHID_GET_REPORT_REPLY; ^ Fixes: - http://autobuild.buildroot.org/results/1db406eac7620e3f76d997414eb7af7d2ac6cfe6 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
37 lines
1.4 KiB
Plaintext
37 lines
1.4 KiB
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
|
|
|
|
if BR2_PACKAGE_CWIID
|
|
config BR2_PACKAGE_CWIID_WMGUI
|
|
bool "wmgui"
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # libgtk2 -> pango -> harfbuzz
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libgtk2 -> pango -> harfbuzz
|
|
depends on BR2_PACKAGE_XORG7 # libgtk2
|
|
depends on BR2_USE_WCHAR # libgtk2 -> libglib2
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libgtk2 -> libglib2
|
|
depends on BR2_USE_MMU # libgtk2 -> libglib2
|
|
depends on BR2_INSTALL_LIBSTDCPP # libgtk2 -> pango
|
|
select BR2_PACKAGE_LIBGLIB2
|
|
select BR2_PACKAGE_LIBGTK2
|
|
endif
|
|
|
|
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
|