diff options
| author | Michal Privoznik <mprivozn@redhat.com> | 2013-03-01 08:43:18 +0100 |
|---|---|---|
| committer | Stefan Hajnoczi <stefanha@redhat.com> | 2013-03-08 13:15:27 +0100 |
| commit | 358689fe299c306f1d81bea57a5067d0abb56699 (patch) | |
| tree | 70892eab9ca9c43156d1259e8d5ef4219bdae8d5 | |
| parent | 4bd1afbdb3a228683dafa77a9fb3093f0dfab1de (diff) | |
| download | focaccia-qemu-358689fe299c306f1d81bea57a5067d0abb56699.tar.gz focaccia-qemu-358689fe299c306f1d81bea57a5067d0abb56699.zip | |
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>
| -rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure index 87b2e73b9e..f2c46b2e41 100755 --- a/configure +++ b/configure @@ -2871,7 +2871,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" |