From f5063b8733b0081e689894ba27a727549cb48321 Mon Sep 17 00:00:00 2001 From: Marcel Hollerbach Date: Thu, 15 Aug 2019 15:36:29 -0400 Subject: [PATCH] meson: add xkbcommon to the build deps Summary: fix T8064 Reviewers: cedric, zmike, devilhorns Reviewed By: devilhorns Subscribers: #reviewers, #committers Tags: #efl Maniphest Tasks: T8064 Differential Revision: https://phab.enlightenment.org/D9573 --- src/modules/ecore_imf/wayland/meson.build | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/modules/ecore_imf/wayland/meson.build b/src/modules/ecore_imf/wayland/meson.build index f2c6e53dde..f49cc3f0fb 100644 --- a/src/modules/ecore_imf/wayland/meson.build +++ b/src/modules/ecore_imf/wayland/meson.build @@ -3,7 +3,10 @@ mod_src = files([ 'wayland_imcontext.c', 'wayland_imcontext.h' ]) -mod_deps = [ecore, ecore_imf, ecore_wl2, wayland_protocol, ecore_evas, ecore_input] + +libxkbcommon = dependency('xkbcommon', version : ['>=0.3.0']) + +mod_deps = [ecore, ecore_imf, ecore_wl2, wayland_protocol, ecore_evas, ecore_input, libxkbcommon] shared_module(mod_name, mod_src,