From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:35289) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UDwJ8-0005Y4-Pi for qemu-devel@nongnu.org; Fri, 08 Mar 2013 07:21:57 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UDwJ5-000494-JI for qemu-devel@nongnu.org; Fri, 08 Mar 2013 07:21:54 -0500 Received: from mx1.redhat.com ([209.132.183.28]:27924) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UDwJ5-00048S-BF for qemu-devel@nongnu.org; Fri, 08 Mar 2013 07:21:51 -0500 From: Stefan Hajnoczi Date: Fri, 8 Mar 2013 13:21:32 +0100 Message-Id: <1362745295-16398-6-git-send-email-stefanha@redhat.com> In-Reply-To: <1362745295-16398-1-git-send-email-stefanha@redhat.com> References: <1362745295-16398-1-git-send-email-stefanha@redhat.com> Subject: [Qemu-devel] [PATCH 5/8] configure: Require at least spice-protocol-0.12.3 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Michal Privoznik , Anthony Liguori , Stefan Hajnoczi From: Michal Privoznik 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 --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 87b2e73..f2c46b2 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" -- 1.8.1.4