diff options
author | Olivier Fourdan <ofourdan@redhat.com> | 2019-07-29 11:34:09 +0200 |
---|---|---|
committer | Olivier Fourdan <ofourdan@redhat.com> | 2019-07-29 12:03:07 +0200 |
commit | 060a9f072c0016cd228be72ef7477c4d031dd175 (patch) | |
tree | 109c6b7f0e0e248b26cf94ff0ccda38d1ed6b4cf /meson.build | |
parent | 4a631787bd8545b44e299bdbf09fcbb8728f5d76 (diff) | |
download | gtk+-060a9f072c0016cd228be72ef7477c4d031dd175.tar.gz |
Bump wayland-protocols requirements
The `name` and `description` events were added to `xdg-output` protocol
in version 2 which is part of wayland-protocols 1.14.
In xdg-output-v1 version 3, the `xdg-output.done` event was deprecated
and the `xdg-output.description` event was made mutable, but that
doesn't change the actual events so we do not actually need to require
that version of xdg-output from wayland-protocols 1.18.
Update the wayland-protocols requirement to the bare minimum version,
which is 1.14.
https://gitlab.gnome.org/GNOME/gtk/issues/2057
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 483a874475..6977fd95fd 100644 --- a/meson.build +++ b/meson.build @@ -33,7 +33,7 @@ atk_req = '>= 2.15.1' cairo_req = '>= 1.14.0' gdk_pixbuf_req = '>= 2.30.0' introspection_req = '>= 1.39.0' -wayland_proto_req = '>= 1.12' +wayland_proto_req = '>= 1.14' wayland_req = '>= 1.14.91' graphene_req = '>= 1.9.1' epoxy_req = '>= 1.4' |