diff options
author | Adam Jackson <ajax@redhat.com> | 2014-05-21 09:22:49 -0400 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2014-06-02 11:16:09 -0700 |
commit | 4cbd3fabaa41e89579530bceb01b9239fa2afdb7 (patch) | |
tree | ae850166b158f766d88506ccf2dd877d3f7b28ac | |
parent | db2e708f31a162c6c66643d3559dd5f3e21ee06b (diff) |
configure: Require sufficiently new wayland-client for xwayland ddx
The explicit release requests were added in 1.3.0, don't try to build
against older.
Signed-off-by: Adam Jackson <ajax@redhat.com>
Reviewed-by: Jasper St. Pierre <jstpierre@mecheye.net>
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index e5387bffd..e3d991db6 100644 --- a/configure.ac +++ b/configure.ac @@ -2442,7 +2442,7 @@ AM_CONDITIONAL(XFAKESERVER, [test "x$KDRIVE" = xyes && test "x$XFAKE" = xyes]) dnl Xwayland DDX -PKG_CHECK_MODULES(XWAYLANDMODULES, [wayland-client libdrm epoxy], [have_xwayland=yes], [have_xwayland=no]) +PKG_CHECK_MODULES(XWAYLANDMODULES, [wayland-client >= 1.3.0 libdrm epoxy], [have_xwayland=yes], [have_xwayland=no]) AC_MSG_CHECKING([whether to build Xwayland DDX]) if test "x$XWAYLAND" = xauto; then XWAYLAND="$have_xwayland" |