From b4386289d614f26e89e1c6eb17e048826e925ed1 Mon Sep 17 00:00:00 2001 From: Philipp Zabel Date: Tue, 19 Nov 2024 17:06:19 +0100 Subject: [PATCH] vnc: Allow neatvnc in version 0.9.0 Neat VNC 0.9.0 is backwards compatible. Signed-off-by: Philipp Zabel --- libweston/backend-vnc/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libweston/backend-vnc/meson.build b/libweston/backend-vnc/meson.build index 39b15cf902..cf67c51cbf 100644 --- a/libweston/backend-vnc/meson.build +++ b/libweston/backend-vnc/meson.build @@ -3,7 +3,7 @@ if not get_option('backend-vnc') endif config_h.set('BUILD_VNC_COMPOSITOR', '1') -dep_neatvnc = dependency('neatvnc', version: ['>= 0.7.0', '< 0.9.0'], required: false, fallback: ['neatvnc', 'neatvnc_dep']) +dep_neatvnc = dependency('neatvnc', version: ['>= 0.7.0', '< 0.10.0'], required: false, fallback: ['neatvnc', 'neatvnc_dep']) if not dep_neatvnc.found() error('VNC backend requires neatvnc which was not found. Or, you can use \'-Dbackend-vnc=false\'.') endif -- GitLab