From patchwork Wed Oct 3 17:24:17 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luiz Capitulino X-Patchwork-Id: 188859 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 E16DB2C00DA for ; Thu, 4 Oct 2012 03:26:33 +1000 (EST) Received: from localhost ([::1]:48602 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TJSgg-0000D4-P4 for incoming@patchwork.ozlabs.org; Wed, 03 Oct 2012 13:24:46 -0400 Received: from eggs.gnu.org ([208.118.235.92]:36375) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TJSga-0000BR-1y for qemu-devel@nongnu.org; Wed, 03 Oct 2012 13:24:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TJSgZ-0005mL-1e for qemu-devel@nongnu.org; Wed, 03 Oct 2012 13:24:39 -0400 Received: from mx1.redhat.com ([209.132.183.28]:29669) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TJSgY-0005mG-Pa for qemu-devel@nongnu.org; Wed, 03 Oct 2012 13:24:38 -0400 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q93HNQ16021996 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Wed, 3 Oct 2012 13:23:26 -0400 Received: from localhost (ovpn-113-111.phx2.redhat.com [10.3.113.111]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id q93HNPOL025595; Wed, 3 Oct 2012 13:23:26 -0400 From: Luiz Capitulino To: mdroth@linux.vnet.ibm.com Date: Wed, 3 Oct 2012 14:24:17 -0300 Message-Id: <1349285059-5415-2-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1349285059-5415-1-git-send-email-lcapitulino@redhat.com> References: <1349285059-5415-1-git-send-email-lcapitulino@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.11 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.132.183.28 Cc: pbonzini@redhat.com, qemu-devel@nongnu.org Subject: [Qemu-devel] [PATCH 1/3] configure: guest_agent -> qemuga 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 Next commit will add a new qemu-ga variable in configure, having guest_agent as a prefix is too long, let's use qemuga instead. Signed-off-by: Luiz Capitulino Acked-by: Michael Roth --- configure | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/configure b/configure index 8f99b7b..4cfcdc6 100755 --- a/configure +++ b/configure @@ -214,7 +214,7 @@ smartcard_nss="" usb_redir="" opengl="" zlib="yes" -guest_agent="yes" +qemuga="yes" want_tools="yes" libiscsi="" coroutine="" @@ -844,9 +844,9 @@ for opt do ;; --disable-zlib-test) zlib="no" ;; - --enable-guest-agent) guest_agent="yes" + --enable-guest-agent) qemuga="yes" ;; - --disable-guest-agent) guest_agent="no" + --disable-guest-agent) qemuga="no" ;; --enable-tools) want_tools="yes" ;; @@ -3059,7 +3059,7 @@ if test "$softmmu" = yes ; then fi fi if [ "$linux" = "yes" -o "$bsd" = "yes" -o "$solaris" = "yes" ] ; then - if [ "$guest_agent" = "yes" ]; then + if [ "$qemuga" = "yes" ]; then tools="qemu-ga\$(EXESUF) $tools" fi fi @@ -3167,7 +3167,7 @@ echo "nss used $smartcard_nss" echo "usb net redir $usb_redir" echo "OpenGL support $opengl" echo "libiscsi support $libiscsi" -echo "build guest agent $guest_agent" +echo "build guest agent $qemuga" echo "seccomp support $seccomp" echo "coroutine backend $coroutine_backend"