diff options
author | pudiva chip lĂquida <pudiva@skylittlesystem.org> | 2022-08-24 00:13:12 +0100 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2022-10-30 10:56:34 +0100 |
commit | 7cc8ab6d6c4e7ebbfee832b3d8d8fd86623d89fc (patch) | |
tree | faacab010de2a3ffdd76dcf3bab015bb708f42dc /meson.build | |
parent | a61815d3859e4cc92d3f8a0701a5675d97b81cdc (diff) |
Support libinput's 1.21 new dwtp option
Support the new dwtp (disable while trackpointing) option introduced in
libinput 1.21, allowing users to control whether the trackpoint (like
those in Thinkpads, but not only) should be disabled while using the
keyboard/touchpad.
See: https://gitlab.freedesktop.org/libinput/libinput/-/issues/731
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index d23300be..fccf6429 100644 --- a/meson.build +++ b/meson.build @@ -60,7 +60,7 @@ gdk_pixbuf = dependency('gdk-pixbuf-2.0', required: get_option('gdk-pixbuf')) pixman = dependency('pixman-1') glesv2 = dependency('glesv2') libevdev = dependency('libevdev') -libinput = dependency('libinput', version: '>=1.6.0') +libinput = dependency('libinput', version: '>=1.21.0') xcb = dependency('xcb', required: get_option('xwayland')) drm_full = dependency('libdrm') # only needed for drm_fourcc.h drm = drm_full.partial_dependency(compile_args: true, includes: true) |