From 732be129d523f72ed2405293e4572c3178eddd55 Mon Sep 17 00:00:00 2001 From: Olivier Fourdan Date: Mon, 29 Jul 2019 11:34:09 +0200 Subject: [PATCH] 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 --- configure.ac | 2 +- meson.build | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 9a845d55b6..362ea73b0c 100644 --- a/configure.ac +++ b/configure.ac @@ -61,7 +61,7 @@ m4_define([cairo_required_version], [1.14.0]) m4_define([gdk_pixbuf_required_version], [2.30.0]) m4_define([introspection_required_version], [1.39.0]) m4_define([wayland_required_version], [1.9.91]) -m4_define([wayland_protocols_required_version], [1.12]) +m4_define([wayland_protocols_required_version], [1.14]) m4_define([mirclient_required_version], [0.22.0]) m4_define([mircookie_required_version], [0.17.0]) m4_define([epoxy_required_version], [1.4]) diff --git a/meson.build b/meson.build index fb23ae3c7e..4eac3397c5 100644 --- a/meson.build +++ b/meson.build @@ -30,7 +30,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.9.91' epoxy_req = '>= 1.4' cloudproviders_req = '>= 0.2.5'