summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukasz Czechowski <lukasz.czechowski@thaumatec.com>2024-06-03 13:39:27 +0200
committerDaniel Stone <daniels@collabora.com>2024-06-07 12:57:54 +0000
commit05e5405651054c580b248c4ab2791ed8d66369e3 (patch)
tree396174bcc88d83d77534ec136f37861f5c76fa01
parente80ebde0285ae72d69d0d9ffc7e14576bce9c2cb (diff)
vnc: Allow neatvnc in version 0.8.0HEADmain
Neat VNC 0.8.0 does not introduce any changes that breaks API used by VNC backend, so it is safe to extend compatibility. Signed-off-by: Lukasz Czechowski <lukasz.czechowski@thaumatec.com>
-rw-r--r--libweston/backend-vnc/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/libweston/backend-vnc/meson.build b/libweston/backend-vnc/meson.build
index b7b69165..39b15cf9 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.8.0'], required: false, fallback: ['neatvnc', 'neatvnc_dep'])
+dep_neatvnc = dependency('neatvnc', version: ['>= 0.7.0', '< 0.9.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