From patchwork Wed Aug 3 10:20:42 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Hajnoczi X-Patchwork-Id: 108092 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 68A1CB71F2 for ; Wed, 3 Aug 2011 20:21:23 +1000 (EST) Received: from localhost ([::1]:60002 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QoYZf-0001uW-EJ for incoming@patchwork.ozlabs.org; Wed, 03 Aug 2011 06:21:15 -0400 Received: from eggs.gnu.org ([140.186.70.92]:49182) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QoYZT-0001hu-TF for qemu-devel@nongnu.org; Wed, 03 Aug 2011 06:21:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QoYZS-0008LY-QC for qemu-devel@nongnu.org; Wed, 03 Aug 2011 06:21:03 -0400 Received: from mtagate7.uk.ibm.com ([194.196.100.167]:46324) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QoYZS-0008LQ-Hm for qemu-devel@nongnu.org; Wed, 03 Aug 2011 06:21:02 -0400 Received: from d06nrmr1507.portsmouth.uk.ibm.com (d06nrmr1507.portsmouth.uk.ibm.com [9.149.38.233]) by mtagate7.uk.ibm.com (8.13.1/8.13.1) with ESMTP id p73AKsqF022121 for ; Wed, 3 Aug 2011 10:20:54 GMT Received: from d06av01.portsmouth.uk.ibm.com (d06av01.portsmouth.uk.ibm.com [9.149.37.212]) by d06nrmr1507.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p73AKsvc2339014 for ; Wed, 3 Aug 2011 11:20:54 +0100 Received: from d06av01.portsmouth.uk.ibm.com (loopback [127.0.0.1]) by d06av01.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p73AKrLx007271 for ; Wed, 3 Aug 2011 04:20:54 -0600 Received: from stefanha-thinkpad.ibm.com (grvb1025-009145189202.de.ibm.com [9.145.189.202]) by d06av01.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id p73AKq9m007234; Wed, 3 Aug 2011 04:20:53 -0600 From: Stefan Hajnoczi To: Date: Wed, 3 Aug 2011 11:20:42 +0100 Message-Id: <1312366844-11902-2-git-send-email-stefanha@linux.vnet.ibm.com> X-Mailer: git-send-email 1.7.5.4 In-Reply-To: <1312366844-11902-1-git-send-email-stefanha@linux.vnet.ibm.com> References: <1312366844-11902-1-git-send-email-stefanha@linux.vnet.ibm.com> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-Received-From: 194.196.100.167 Cc: Anthony Liguori , Stefan Hajnoczi , Brad Subject: [Qemu-devel] [PATCH 1/3] configure: display "no" for disabled kvm/vhost-net 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: Brad Fix configure display for non-Linux OS's and the KVM / vhost-net features to show "no" output instead of nothing at the end of the line. Signed-off-by: Brad Smith Acked-by: Jan Kiszka Signed-off-by: Stefan Hajnoczi --- configure | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 77194cf..9d46780 100755 --- a/configure +++ b/configure @@ -113,7 +113,6 @@ curl="" curses="" docs="" fdt="" -kvm="" nptl="" sdl="" vnc="yes" @@ -129,9 +128,10 @@ xen="" xen_ctrl_version="" linux_aio="" attr="" -vhost_net="" xfs="" +vhost_net="no" +kvm="no" gprof="no" debug_tcg="no" debug_mon="no"