From mboxrd@z Thu Jan 1 00:00:00 1970 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 Message-ID: <20091118151409.GA21019@volta.aurel32.net> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline Subject: [Qemu-devel] [PATCH] qemu-io: build on all platforms List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@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 -- 1.6.1.3