From 7e990a6bdf160cf6888719eb3148096ad00ace7e Mon Sep 17 00:00:00 2001 From: Brian Ashworth Date: Mon, 17 Feb 2020 22:37:45 -0500 Subject: [PATCH] meson.build: update wayland requirement to 1.18 This updates the version requirement for wayland-server to 1.18, which is needed for wl_global_remove and wl_global_set_user_data --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 9c7e09b0..0f4e541f 100644 --- a/meson.build +++ b/meson.build @@ -95,7 +95,7 @@ if cc.get_id() == 'clang' add_project_arguments('-Wno-missing-braces', language: 'c') endif -wayland_server = dependency('wayland-server', version: '>=1.17') +wayland_server = dependency('wayland-server', version: '>=1.18') wayland_client = dependency('wayland-client') wayland_egl = dependency('wayland-egl') wayland_protos = dependency('wayland-protocols', version: '>=1.17')