diff options
author | Ilia Bozhinov <ammen99@gmail.com> | 2019-03-22 12:52:46 +0100 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2019-03-22 17:14:04 +0200 |
commit | 4281c8c5667508708a929b92ebc33ab810f3f055 (patch) | |
tree | b0a3c7f286fd209e76771d8591091505f8400d7a | |
parent | cd60f40bbb973c8e68bad547190640aa16f0d5b9 (diff) |
meson.build: require libinput >= 1.9.0
We use LIBINPUT_SWITCH_TABLET_MODE, which is introduced in 1.9.0
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index f5739fd2..0f1268ca 100644 --- a/meson.build +++ b/meson.build @@ -70,7 +70,7 @@ egl = dependency('egl') glesv2 = dependency('glesv2') drm = dependency('libdrm', version: '>=2.4.95') gbm = dependency('gbm', version: '>=17.1.0') -libinput = dependency('libinput', version: '>=1.7.0') +libinput = dependency('libinput', version: '>=1.9.0') xkbcommon = dependency('xkbcommon') udev = dependency('libudev') pixman = dependency('pixman-1') |