From patchwork Wed Nov 18 15:14:09 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Aurelien Jarno X-Patchwork-Id: 38752 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 C5922B6F0D for ; Thu, 19 Nov 2009 02:20:56 +1100 (EST) Received: from localhost ([127.0.0.1]:35751 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NAmKy-00025Q-K9 for incoming@patchwork.ozlabs.org; Wed, 18 Nov 2009 10:20:52 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NAmEX-00083e-7d for qemu-devel@nongnu.org; Wed, 18 Nov 2009 10:14:13 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NAmEW-00083B-2B for qemu-devel@nongnu.org; Wed, 18 Nov 2009 10:14:12 -0500 Received: from [199.232.76.173] (port=56543 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NAmEV-000833-K1 for qemu-devel@nongnu.org; Wed, 18 Nov 2009 10:14:11 -0500 Received: from hall.aurel32.net ([88.191.82.174]:56150) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1NAmEV-00050I-3Z for qemu-devel@nongnu.org; Wed, 18 Nov 2009 10:14:11 -0500 Received: from [2002:52e8:2fb:1:21e:8cff:feb0:693b] (helo=volta.aurel32.net) by hall.aurel32.net with esmtpsa (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.69) (envelope-from ) id 1NAmET-0008Ts-UZ for qemu-devel@nongnu.org; Wed, 18 Nov 2009 16:14:10 +0100 Received: from aurel32 by volta.aurel32.net with local (Exim 4.69) (envelope-from ) id 1NAmET-0005TE-7R for qemu-devel@nongnu.org; Wed, 18 Nov 2009 16:14:09 +0100 Date: Wed, 18 Nov 2009 16:14:09 +0100 From: Aurelien Jarno To: qemu-devel@nongnu.org Message-ID: <20091118151409.GA21019@volta.aurel32.net> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.20 (2009-06-14) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 3) Subject: [Qemu-devel] [PATCH] qemu-io: build on all platforms 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 Since c32d766af127f68bb75ba5689f2f5239227bf559, qemu-io should be portable. It is currently built only on linux and mingw32. This patch enables qemu-io on all platforms. Tested on FreeBSD. Signed-off-by: Aurelien Jarno --- configure | 6 ++---- 1 files changed, 2 insertions(+), 4 deletions(-) diff --git a/configure b/configure index e108dfb..e314ac6 100755 --- a/configure +++ b/configure @@ -2087,15 +2087,13 @@ esac tools= if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then - tools="qemu-img\$(EXESUF) $tools" + tools="qemu-img\$(EXESUF) qemu-io\$(EXESUF) $tools" if [ "$linux" = "yes" ] ; then - tools="qemu-nbd\$(EXESUF) qemu-io\$(EXESUF) $tools" + tools="qemu-nbd\$(EXESUF) $tools" if [ "$check_utests" = "yes" ]; then tools="check-qint check-qstring check-qdict check-qlist $tools" tools="check-qfloat check-qjson $tools" fi - elif test "$mingw32" = "yes" ; then - tools="qemu-io\$(EXESUF) $tools" fi fi echo "TOOLS=$tools" >> $config_host_mak