diff options
author | Gerd Hoffmann | 2011-05-17 10:48:14 +0200 |
---|---|---|
committer | Gerd Hoffmann | 2011-06-06 09:14:42 +0200 |
commit | 012b80d3f904c9a4d4ea85036ba8d4d1acf12e7d (patch) | |
tree | e3f7bfe66850670c361a731a5a988ebbc04aa6b1 /configure | |
parent | qemu-config: comment spell fix (diff) | |
download | qemu-012b80d3f904c9a4d4ea85036ba8d4d1acf12e7d.tar.gz qemu-012b80d3f904c9a4d4ea85036ba8d4d1acf12e7d.tar.xz qemu-012b80d3f904c9a4d4ea85036ba8d4d1acf12e7d.zip |
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-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" |