From patchwork Wed Aug 22 08:16:26 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alon Levy X-Patchwork-Id: 179257 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 F00E42C007E for ; Wed, 22 Aug 2012 18:17:31 +1000 (EST) Received: from localhost ([::1]:60138 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T4681-00021N-0b for incoming@patchwork.ozlabs.org; Wed, 22 Aug 2012 04:17:29 -0400 Received: from eggs.gnu.org ([208.118.235.92]:52347) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T467u-00021D-9l for qemu-devel@nongnu.org; Wed, 22 Aug 2012 04:17:23 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1T467s-0004rn-SK for qemu-devel@nongnu.org; Wed, 22 Aug 2012 04:17:22 -0400 Received: from mx1.redhat.com ([209.132.183.28]:12865) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T467s-0004rg-KP for qemu-devel@nongnu.org; Wed, 22 Aug 2012 04:17:20 -0400 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q7M8HKxr011512 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 22 Aug 2012 04:17:20 -0400 Received: from garlic.redhat.com (vpn-245-75.nrt.redhat.com [10.64.245.75]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id q7M8HCPH028936; Wed, 22 Aug 2012 04:17:17 -0400 From: Alon Levy To: qemu-devel@nongnu.org, kraxel@redhat.com Date: Wed, 22 Aug 2012 11:16:26 +0300 Message-Id: <1345623386-18633-2-git-send-email-alevy@redhat.com> In-Reply-To: <1345623386-18633-1-git-send-email-alevy@redhat.com> References: <1345623386-18633-1-git-send-email-alevy@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.24 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PATCH v12 2/2] configure: print spice-protocol and spice-server versions 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 Signed-off-by: Alon Levy --- configure | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/configure b/configure index 84fa2c6..02c06aa 100755 --- a/configure +++ b/configure @@ -2657,6 +2657,8 @@ EOF spice="yes" libs_softmmu="$libs_softmmu $spice_libs" QEMU_CFLAGS="$QEMU_CFLAGS $spice_cflags" + spice_protocol_version=$($pkg_config --modversion spice-protocol) + spice_server_version=$($pkg_config --modversion spice-server) if $pkg_config --atleast-version=0.12.0 spice-protocol >/dev/null 2>&1; then spice_qxl_io_monitors_config_async="yes" fi @@ -3114,7 +3116,7 @@ echo "libcap-ng support $cap_ng" echo "vhost-net support $vhost_net" echo "Trace backend $trace_backend" echo "Trace output file $trace_file-" -echo "spice support $spice" +echo "spice support $spice ($spice_protocol_version/$spice_server_version)" echo "rbd support $rbd" echo "xfsctl support $xfs" echo "nss used $smartcard_nss"