From b1cd1e7a88e6d8d18fd7b68e920617aff6f17df1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Thu, 18 Oct 2012 18:56:33 +0100 Subject: [PATCH] wayland: don't try to build against 0.99 or later The plugin needs updating for some API changes since 0.95. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index e9ff5dda72..e67cc4066d 100644 --- a/configure.ac +++ b/configure.ac @@ -946,7 +946,7 @@ AG_GST_CHECK_FEATURE(DIRECTFB, [directfb], dfbvideosink , [ dnl **** Wayland **** translit(dnm, m, l) AM_CONDITIONAL(USE_WAYLAND, true) AG_GST_CHECK_FEATURE(WAYLAND, [wayland sink], wayland , [ - PKG_CHECK_MODULES(WAYLAND, wayland-client >= 0.95.0, [ + PKG_CHECK_MODULES(WAYLAND, wayland-client == 0.95, [ HAVE_WAYLAND="yes" ], [ HAVE_WAYLAND="no" ]) ])