From mboxrd@z Thu Jan 1 00:00:00 1970 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 From: Stefan Hajnoczi Date: Wed, 3 Aug 2011 11:20:42 +0100 Message-Id: <1312366844-11902-2-git-send-email-stefanha@linux.vnet.ibm.com> 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> Subject: [Qemu-devel] [PATCH 1/3] configure: display "no" for disabled kvm/vhost-net List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Anthony Liguori , Stefan Hajnoczi , Brad 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" -- 1.7.5.4