From 9646742502af1fdc51d735ec093db508a5e0db44 Mon Sep 17 00:00:00 2001 From: Kirill Primak Date: Fri, 5 Jul 2024 17:29:05 +0300 Subject: [PATCH] meson: bump wayland dep version to 1.23 libwayland 1.23 includes a wl_event_loop destroy signal fix which our backends depend on to shut down correctly. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 80b3e243..aa7601a3 100644 --- a/meson.build +++ b/meson.build @@ -105,7 +105,7 @@ internal_config = configuration_data() wayland_project_options = ['tests=false', 'documentation=false'] wayland_server = dependency('wayland-server', - version: '>=1.22', + version: '>=1.23', fallback: 'wayland', default_options: wayland_project_options, )