From 56ca91dec05216f082867efa533b15b18773f822 Mon Sep 17 00:00:00 2001 From: "U. Artie Eoff" Date: Tue, 13 Aug 2013 08:16:22 -0700 Subject: [PATCH] configure: relax xkbcommon version requirement for ecore-wayland Summary: Allow ecore-wayland to be configured and compiled with xkbcommon 0.3.0. Ecore-wayland does not use any of the new APIs in 0.3.1 nor is it exposed to the bug that was fixed in 0.3.1. Most distros don't include xkbcommon > 0.3.0 yet. Thus, if 0.3.1 is required right now, then everyone is forced to build xkbcommon, too, which contributes to dependency *madness*. Of course, anyone is still welcome to build and link to xkbcommon 0.3.1 at will. Signed-off-by: U. Artie Eoff Reviewers: devilhorns, antognolli Reviewed By: devilhorns Differential Revision: https://phab.enlightenment.org/D203 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 148d093ee5..ebb7a7bdb2 100644 --- a/configure.ac +++ b/configure.ac @@ -2370,7 +2370,7 @@ EFL_INTERNAL_DEPEND_PKG([ECORE_WAYLAND], [eo]) EFL_INTERNAL_DEPEND_PKG([ECORE_WAYLAND], [eina]) EFL_DEPEND_PKG([ECORE_WAYLAND], [WAYLAND], - [wayland-client >= 1.2.0 wayland-cursor >= 1.2.0 xkbcommon >= 0.3.1]) + [wayland-client >= 1.2.0 wayland-cursor >= 1.2.0 xkbcommon >= 0.3.0]) EFL_EVAL_PKGS([ECORE_WAYLAND])