From patchwork Sun Mar 3 10:04:15 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Alon Levy X-Patchwork-Id: 224560 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 DA6732C030B for ; Mon, 4 Mar 2013 04:50:12 +1100 (EST) Received: from localhost ([::1]:50781 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UCD34-000153-Tt for incoming@patchwork.ozlabs.org; Sun, 03 Mar 2013 12:50:10 -0500 Received: from eggs.gnu.org ([208.118.235.92]:55544) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UC5mI-0006hh-B0 for qemu-devel@nongnu.org; Sun, 03 Mar 2013 05:04:25 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UC5mF-0005Hu-QR for qemu-devel@nongnu.org; Sun, 03 Mar 2013 05:04:22 -0500 Received: from mx1.redhat.com ([209.132.183.28]:1801) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UC5mF-0005Hq-Jf for qemu-devel@nongnu.org; Sun, 03 Mar 2013 05:04:19 -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 r23A4H4p012658 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Sun, 3 Mar 2013 05:04:17 -0500 Received: from garlic.tlv.redhat.com (spice-ovirt.tlv.redhat.com [10.35.4.71]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id r23A4GVn011374; Sun, 3 Mar 2013 05:04:17 -0500 From: Alon Levy To: qemu-devel@nongnu.org Date: Sun, 3 Mar 2013 12:04:15 +0200 Message-Id: <1362305055-24079-1-git-send-email-alon@pobox.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.68 on 10.5.11.23 X-MIME-Autoconverted: from 8bit to quoted-printable by mx1.redhat.com id r23A4H4p012658 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 X-Mailman-Approved-At: Sun, 03 Mar 2013 12:49:23 -0500 Cc: kraxel@redhat.com Subject: [Qemu-devel] [PATCH] configure: require 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 Required since v1.4.0-rc0 For SPICE_PORT_EVENT_BREAK used by spice-qemu-char.c since: commit 5a49d3e9a799b7e1bf87da7ae7f2a719e01da319 Author: Marc-André Lureau Date: Wed Dec 5 16:15:34 2012 +0100 spice-qemu-char: add spiceport chardev Signed-off-by: Alon Levy Reviewed-by: Doug Goldstein --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 19738ac..82b7b54 100755 --- a/configure +++ b/configure @@ -2867,7 +2867,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"