From 3c2e38be0356fa6feed3b28254f54efde54fe27d Mon Sep 17 00:00:00 2001 From: William McKinnon Date: Sun, 21 May 2023 00:23:40 -0400 Subject: [PATCH] upstream: ipc: add LIBINPUT_CONFIG_ACCEL_PROFILE_CUSTOM entry --- meson.build | 5 +++++ sway/ipc-json.c | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/meson.build b/meson.build index 82dc01a3..f13c1eb0 100644 --- a/meson.build +++ b/meson.build @@ -116,6 +116,11 @@ conf_data.set10('HAVE_LIBSYSTEMD', sdbus.found() and sdbus.name() == 'libsystemd conf_data.set10('HAVE_LIBELOGIND', sdbus.found() and sdbus.name() == 'libelogind') conf_data.set10('HAVE_BASU', sdbus.found() and sdbus.name() == 'basu') conf_data.set10('HAVE_TRAY', have_tray) +conf_data.set10('HAVE_LIBINPUT_CONFIG_ACCEL_PROFILE_CUSTOM', cc.has_header_symbol( + 'libinput.h', + 'LIBINPUT_CONFIG_ACCEL_PROFILE_CUSTOM', + dependencies: libinput, +)) scdoc = dependency('scdoc', version: '>=1.9.2', native: true, required: get_option('man-pages')) if scdoc.found() diff --git a/sway/ipc-json.c b/sway/ipc-json.c index c7e94a81..673a941a 100644 --- a/sway/ipc-json.c +++ b/sway/ipc-json.c @@ -964,6 +964,11 @@ static json_object *describe_libinput_device(struct libinput_device *device) { case LIBINPUT_CONFIG_ACCEL_PROFILE_ADAPTIVE: accel_profile = "adaptive"; break; +#if HAVE_LIBINPUT_CONFIG_ACCEL_PROFILE_CUSTOM + case LIBINPUT_CONFIG_ACCEL_PROFILE_CUSTOM: + accel_profile = "custom"; + break; +#endif } json_object_object_add(object, "accel_profile", json_object_new_string(accel_profile));