From 0dd484006554f388c658857c520c20e1f9e634fa Mon Sep 17 00:00:00 2001 From: Andri Yngvason Date: Thu, 31 Dec 2020 12:55:36 +0000 Subject: [PATCH] meson: Require xkbcommon >= 1.0.0 The 'xkb_keymap_key_get_mods_for_level' function was introduced in v1.0.0 and it is needed for reverse keysym-keycode mapping. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 6fc2f8a..4ed5add 100644 --- a/meson.build +++ b/meson.build @@ -44,7 +44,7 @@ libpam = cc.find_library('pam', required: get_option('pam')) pixman = dependency('pixman-1') gbm = dependency('gbm', required: get_option('screencopy-dmabuf')) drm = dependency('libdrm') -xkbcommon = dependency('xkbcommon') +xkbcommon = dependency('xkbcommon', version: '>=1.0.0') wayland_client = dependency('wayland-client') neatvnc_version = '>=0.4.0'