From: SooChan Lim Date: Thu, 30 Jun 2022 00:47:07 +0000 (+0900) Subject: remove xkbcommon from base_dep X-Git-Tag: accepted/tizen/unified/20220720.034120~10 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=60ffc8f415be010523435d85ac55613916ff69fa;p=platform%2Fcore%2Fuifw%2Flibds-tizen.git remove xkbcommon from base_dep Change-Id: I43f6bea638488d1c066a984ee1623285405e8f58 --- diff --git a/src/input-devicemgr/meson.build b/src/input-devicemgr/meson.build index f84f542..4616f6f 100644 --- a/src/input-devicemgr/meson.build +++ b/src/input-devicemgr/meson.build @@ -7,6 +7,7 @@ libds_tizen_input_devicemgr_deps = [ deps_libds_tizen, deps_tizen_security, dependency('tizen-extension-server', required: true), + dependency('xkbcommon', required: true), ] lib_libds_tizen_input_devicemgr = shared_library('ds-tizen-input-devicemgr', libds_tizen_input_devicemgr_files, diff --git a/src/meson.build b/src/meson.build index a77f291..64f5d1f 100644 --- a/src/meson.build +++ b/src/meson.build @@ -1,7 +1,6 @@ math = meson.get_compiler('c').find_library('m') wayland_server = dependency('wayland-server', required: true) rt = meson.get_compiler('c').find_library('rt') -xkbcommon = dependency('xkbcommon', required: true) if wayland_server.version().version_compare('>= 1.19') cdata.set('HAVE_WL_SEAT_ERROR_MISSING_CAPABILITY', '1') @@ -9,7 +8,6 @@ endif base_deps = [ math, - xkbcommon, rt, ]