From patchwork Fri Mar 8 09:48:32 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Hajnoczi X-Patchwork-Id: 226063 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 926D92C0332 for ; Fri, 8 Mar 2013 20:49:17 +1100 (EST) Received: from localhost ([::1]:48041 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UDtvP-0007Nk-RH for incoming@patchwork.ozlabs.org; Fri, 08 Mar 2013 04:49:15 -0500 Received: from eggs.gnu.org ([208.118.235.92]:53839) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UDtuy-0007KQ-E3 for qemu-devel@nongnu.org; Fri, 08 Mar 2013 04:48:52 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UDtur-0007zP-Qx for qemu-devel@nongnu.org; Fri, 08 Mar 2013 04:48:48 -0500 Received: from mx1.redhat.com ([209.132.183.28]:9626) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UDtur-0007zL-J1 for qemu-devel@nongnu.org; Fri, 08 Mar 2013 04:48:41 -0500 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r289meAB012395 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Fri, 8 Mar 2013 04:48:41 -0500 Received: from localhost (ovpn-112-36.ams2.redhat.com [10.36.112.36]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id r289mdUs027147; Fri, 8 Mar 2013 04:48:40 -0500 From: Stefan Hajnoczi To: Date: Fri, 8 Mar 2013 10:48:32 +0100 Message-Id: <1362736116-31460-2-git-send-email-stefanha@redhat.com> In-Reply-To: <1362736116-31460-1-git-send-email-stefanha@redhat.com> References: <1362736116-31460-1-git-send-email-stefanha@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.23 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: Michal Privoznik , Anthony Liguori , Stefan Hajnoczi Subject: [Qemu-devel] [PATCH 1/5] configure: Require at least spice-protocol-0.12.3 X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org 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 2f98c5a..44842db 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"