From patchwork Sun Nov 14 11:50:32 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paolo Bonzini X-Patchwork-Id: 71102 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 1C1F0B7121 for ; Sun, 14 Nov 2010 22:57:40 +1100 (EST) Received: from localhost ([127.0.0.1]:35693 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PHbDD-00071u-QU for incoming@patchwork.ozlabs.org; Sun, 14 Nov 2010 06:57:35 -0500 Received: from [140.186.70.92] (port=43835 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PHb6Y-0003ee-EC for qemu-devel@nongnu.org; Sun, 14 Nov 2010 06:50:43 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PHb6X-0004Wh-5p for qemu-devel@nongnu.org; Sun, 14 Nov 2010 06:50:42 -0500 Received: from mail-px0-f173.google.com ([209.85.212.173]:37241) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PHb6X-0004WR-1K for qemu-devel@nongnu.org; Sun, 14 Nov 2010 06:50:41 -0500 Received: by pxi16 with SMTP id 16so974928pxi.4 for ; Sun, 14 Nov 2010 03:50:40 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:from:to:subject:date :message-id:x-mailer; bh=Cm2HObqZDAXOi+TSghdpUdJHHxa8ccuPCTHokazvhJ8=; b=K7u70SIKrpuvePZ2xPazaxptc1SRkiTFiiHntjayD5YbENRfW9Y2wLSVaQ49+X5VHJ oZI9z412Pk1vhkzGxdG/sBGtOlzaENoksH0utU9vxdCObrUcl4pRH47iWU+HAqK46rI+ tnHJDTk+IUofj1Q6nbra2eIuKd99xDE8wABOc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:from:to:subject:date:message-id:x-mailer; b=oPz0wMh3+hJ20zkTJ0VxgmZ+3lmpS0uGxmbEkskCze66rlXLWq/yQ2ncScw2DH4SE8 RkOttTHe2Gsu/gxcasuY+cjs02taFBvR3vltZJApmYfjQX4hVrAkEUiE9ovQ5kUyhwaX gzGOXbZfVG2zS5wpgiEis5Vla6XX3H7iLqsjQ= Received: by 10.142.174.14 with SMTP id w14mr3357748wfe.325.1289735440265; Sun, 14 Nov 2010 03:50:40 -0800 (PST) Received: from localhost.localdomain (s209p8.home.99maxprogres.cz [85.93.118.17]) by mx.google.com with ESMTPS id q13sm7080493wfc.17.2010.11.14.03.50.38 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sun, 14 Nov 2010 03:50:39 -0800 (PST) From: Paolo Bonzini To: qemu-devel@nongnu.org Date: Sun, 14 Nov 2010 12:50:32 +0100 Message-Id: <1289735432-8776-1-git-send-email-pbonzini@redhat.com> X-Mailer: git-send-email 1.7.3.2 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) Subject: [Qemu-devel] [PATCH] make trace options use autoconfy names X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org These are not in any release, so I am splitting them off the other patch for autoconfy command line and not introducing deprecation. Signed-off-by: Paolo Bonzini --- configure | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/configure b/configure index 50fb3cd..4e79059 100755 --- a/configure +++ b/configure @@ -523,9 +523,9 @@ for opt do ;; --target-list=*) target_list="$optarg" ;; - --trace-backend=*) trace_backend="$optarg" + --enable-trace-backend=*) trace_backend="$optarg" ;; - --trace-file=*) trace_file="$optarg" + --enable-trace-file=*) trace_file="$optarg" ;; --enable-gprof) gprof="yes" ;; @@ -906,8 +906,8 @@ echo " --enable-docs enable documentation build" echo " --disable-docs disable documentation build" echo " --disable-vhost-net disable vhost-net acceleration support" echo " --enable-vhost-net enable vhost-net acceleration support" -echo " --trace-backend=B Trace backend nop simple ust" -echo " --trace-file=NAME Full PATH,NAME of file to store traces" +echo " --enable-trace-backend=B Trace backend nop simple ust" +echo " --enable-trace-file=NAME Full PATH,NAME of file to store traces" echo " Default:trace-" echo " --disable-spice disable spice" echo " --enable-spice enable spice"