From 97acfd6f3e9c05095cdc5d311b28a51bad0ed844 Mon Sep 17 00:00:00 2001 From: Michal Privoznik Date: Wed, 24 Feb 2016 17:13:11 +0100 Subject: [PATCH] configure: Require spice-protocol-0.12.11 at least After 7a06efde we require SPICE_MSG_DISPLAY_GL_SCANOUT_UNIX symbol from spice-protocol (or value to be more precise). This has been however introduced in version 0.12.11 of the spice-protocol (commit 3fc2221e there). However, our configure check does not reflect this change. Fix it. Signed-off-by: Michal Privoznik Acked-by: Frediano Ziglio --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 3396c712..f5445c04 100644 --- a/configure.ac +++ b/configure.ac @@ -99,7 +99,7 @@ AS_IF([test x"$have_smartcard" = "xyes"], [ AS_VAR_APPEND([SPICE_REQUIRES], [" libcacard >= 0.1.2"]) ]) -SPICE_PROTOCOL_MIN_VER=0.12.10 +SPICE_PROTOCOL_MIN_VER=0.12.11 PKG_CHECK_MODULES([SPICE_PROTOCOL], [spice-protocol >= $SPICE_PROTOCOL_MIN_VER]) AC_SUBST([SPICE_PROTOCOL_MIN_VER])