From 2d3cb24e4df6b9355f92dc03a2f44798b8f69807 Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Mon, 10 Mar 2014 08:30:21 +0000 Subject: [PATCH] ecore-drm: Add dependency on xkbcommon @feature: Add xkbcommon as a dependency for ecore_drm so we can process input keys In order for keyboard input to work for ecore_evas_drm, we will need to translate keypress events into meaningful key names, so require xkbcommon to deal with the translation. Signed-off-by: Chris Michael --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index d2a726faf1..0d7e4646fb 100644 --- a/configure.ac +++ b/configure.ac @@ -2618,7 +2618,7 @@ EFL_INTERNAL_DEPEND_PKG([ECORE_DRM], [ecore-input]) EFL_INTERNAL_DEPEND_PKG([ECORE_DRM], [eo]) EFL_INTERNAL_DEPEND_PKG([ECORE_DRM], [eina]) -EFL_DEPEND_PKG([ECORE_DRM], [DRM], [libudev >= 148 libdrm >= 2.4]) +EFL_DEPEND_PKG([ECORE_DRM], [DRM], [libudev >= 148 libdrm >= 2.4 xkbcommon >= 0.3.0]) EFL_EVAL_PKGS([ECORE_DRM])