summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Privoznik <mprivozn@redhat.com>2013-03-01 08:43:18 +0100
committerMichael Roth <mdroth@linux.vnet.ibm.com>2013-04-02 11:48:51 -0500
commit4e4566ce78e8d0668a0b66c90b4bc01b5c88d050 (patch)
tree63503ec2edf3b3bcbc6b2730e56a132280072ff7
parent43e00611bcf40cde483b2d44374ae0ff15eed346 (diff)
downloadqemu-4e4566ce78e8d0668a0b66c90b4bc01b5c88d050.tar.gz
configure: Require at least spice-protocol-0.12.3
As of 5a49d3e9 we assume SPICE_PORT_EVENT_BREAK to be defined. However, it is defined not in 0.12.2 what we require now, but in 0.12.3. Therefore in order to prevent build failure we must adjust our minimal requirements. Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> (cherry picked from commit 358689fe299c306f1d81bea57a5067d0abb56699) Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 5fb388a4fd..e7468a98b7 100755
--- a/configure
+++ b/configure
@@ -2833,7 +2833,7 @@ EOF
spice_cflags=$($pkg_config --cflags spice-protocol spice-server 2>/dev/null)
spice_libs=$($pkg_config --libs spice-protocol spice-server 2>/dev/null)
if $pkg_config --atleast-version=0.12.0 spice-server >/dev/null 2>&1 && \
- $pkg_config --atleast-version=0.12.2 spice-protocol > /dev/null 2>&1 && \
+ $pkg_config --atleast-version=0.12.3 spice-protocol > /dev/null 2>&1 && \
compile_prog "$spice_cflags" "$spice_libs" ; then
spice="yes"
libs_softmmu="$libs_softmmu $spice_libs"