mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 21:43:30 +08:00
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>
24 lines
683 B
Plaintext
24 lines
683 B
Plaintext
config BR2_PACKAGE_BRLTTY
|
|
bool "brltty"
|
|
depends on BR2_USE_WCHAR
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on !BR2_STATIC_LIBS
|
|
depends on BR2_USE_MMU # fork()
|
|
select BR2_PACKAGE_BLUEZ5_UTILS_PLUGINS_HID if BR2_PACKAGE_BLUEZ5_UTILS && BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_18 # runtime
|
|
help
|
|
A daemon providing access to the Linux console for a blind
|
|
person using a refreshable braille display.
|
|
|
|
http://brltty.app/
|
|
|
|
if BR2_PACKAGE_BRLTTY
|
|
|
|
config BR2_PACKAGE_BRLTTY_TEXT_TABLE
|
|
string "text-table"
|
|
|
|
endif
|
|
|
|
comment "brltty needs a toolchain w/ dynamic lib, threads, wchar"
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR
|