summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2011-05-17 10:48:14 +0200
committerGerd Hoffmann <kraxel@redhat.com>2011-06-06 09:14:42 +0200
commit012b80d3f904c9a4d4ea85036ba8d4d1acf12e7d (patch)
treee3f7bfe66850670c361a731a5a988ebbc04aa6b1 /configure
parent44bd6907de2018f8abb28fcee3dda8a7cfbf9c96 (diff)
downloadqemu-012b80d3f904c9a4d4ea85036ba8d4d1acf12e7d.tar.gz
spice: require spice 0.6.0 or newer.
This patch raises the minimum required spice version to 0.6.0 and drops a few ifdefs. 0.6.0 is the first stable release with the current libspice-server API, there shouldn't be any 0.5.x development versions deployed any more. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index d38b952c86..11f85bf7d9 100755
--- a/configure
+++ b/configure
@@ -2431,7 +2431,7 @@ int main(void) { spice_server_new(); return 0; }
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.5.3 spice-server >/dev/null 2>&1 && \
+ if $pkg_config --atleast-version=0.6.0 spice-server >/dev/null 2>&1 && \
compile_prog "$spice_cflags" "$spice_libs" ; then
spice="yes"
libs_softmmu="$libs_softmmu $spice_libs"