summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorAlon Levy2012-02-24 22:19:28 +0100
committerGerd Hoffmann2012-02-27 09:46:51 +0100
commit4295e15aa730a95003a3639d6dad2eb1e65a59e2 (patch)
tree5246ce7097c324da73b3d1d987faddf6cb008b3d /configure
parentqxl: drop qxl_spice_update_area_async definition (diff)
downloadqemu-4295e15aa730a95003a3639d6dad2eb1e65a59e2.tar.gz
qemu-4295e15aa730a95003a3639d6dad2eb1e65a59e2.tar.xz
qemu-4295e15aa730a95003a3639d6dad2eb1e65a59e2.zip
qxl: require spice >= 0.8.2
drop all ifdefs on SPICE_INTERFACE_QXL_MINOR >= 1 as a result, any check for SPICE_SERVER_VERSION that is now always satisfied, and SPICE_INTERFACE_CORE_MINOR >= 3 tests, because 0.8.2 has SPICE_INTERFACE_QXL_MINOR == 1 and SPICE_INTERFACE_CORE_MINOR == 3. Signed-off-by: Alon Levy <alevy@redhat.com> 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 f9d533004b..9535f66940 100755
--- a/configure
+++ b/configure
@@ -2547,7 +2547,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.6.0 spice-server >/dev/null 2>&1 && \
+ if $pkg_config --atleast-version=0.8.2 spice-server >/dev/null 2>&1 && \
compile_prog "$spice_cflags" "$spice_libs" ; then
spice="yes"
libs_softmmu="$libs_softmmu $spice_libs"