diff options
author | Olivier Fourdan <ofourdan@redhat.com> | 2017-07-12 11:51:08 +0200 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2017-08-01 10:56:42 +0100 |
commit | 0a448d133f4f1c913b1c2cb05accff31c74a3dbf (patch) | |
tree | a2f80d32cb83735770c4f3052ffb7469c525a8cb /meson.build | |
parent | abe49b009064c38823fac17c373fd5f1a390b3ab (diff) |
xwayland: Add grab protocol support
The keyboard grabbing protocol for Xwayland is included in
wayland-protocol 1.9.
Update the wayland-protocol required version in both configure and meson
builds and add support for this new protocol in Xwayland.
Signed-off-by: Olivier Fourdan <ofourdan@redhat.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
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 79da23740..a36ae9da7 100644 --- a/meson.build +++ b/meson.build @@ -98,7 +98,7 @@ if (host_machine.system() != 'darwin' and xwayland_dep = [ dependency('wayland-client', version: '>= 1.3.0', required: xwayland_required), - dependency('wayland-protocols', version: '>= 1.5.0', required: xwayland_required), + dependency('wayland-protocols', version: '>= 1.9.0', required: xwayland_required), dependency('libdrm', version: '>= 2.3.1', required: xwayland_required), dependency('epoxy', required: xwayland_required), ] |