From e0475a5421b530a6625b603972071698ac226c1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Mon, 31 Jul 2023 16:32:06 +0200 Subject: [PATCH] meson: require wayland-protocols >= 1.32 --- CHANGELOG.md | 7 +++++++ meson.build | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index abad4d68..0b8ae645 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -49,6 +49,13 @@ ## Unreleased ### Added ### Changed + +* Minimum required version of _wayland-protocols_ is now 1.32 + ([#1391][1391]). + +[1391]: https://codeberg.org/dnkl/foot/issues/1391 + + ### Deprecated ### Removed diff --git a/meson.build b/meson.build index a33202b5..d31202d3 100644 --- a/meson.build +++ b/meson.build @@ -123,7 +123,7 @@ math = cc.find_library('m') threads = [dependency('threads'), cc.find_library('stdthreads', required: false)] libepoll = dependency('epoll-shim', required: false) pixman = dependency('pixman-1') -wayland_protocols = dependency('wayland-protocols') +wayland_protocols = dependency('wayland-protocols', version: '>=1.32') wayland_client = dependency('wayland-client') wayland_cursor = dependency('wayland-cursor') xkb = dependency('xkbcommon', version: '>=1.0.0')