From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MWSjY-00055q-CA for qemu-devel@nongnu.org; Thu, 30 Jul 2009 06:19:36 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MWSjS-00050i-J0 for qemu-devel@nongnu.org; Thu, 30 Jul 2009 06:19:35 -0400 Received: from [199.232.76.173] (port=34902 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MWSjS-00050P-Bs for qemu-devel@nongnu.org; Thu, 30 Jul 2009 06:19:30 -0400 Received: from mx2.redhat.com ([66.187.237.31]:41328) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MWSjR-00089S-OY for qemu-devel@nongnu.org; Thu, 30 Jul 2009 06:19:30 -0400 Received: from int-mx2.corp.redhat.com (int-mx2.corp.redhat.com [172.16.27.26]) by mx2.redhat.com (8.13.8/8.13.8) with ESMTP id n6UAJTYl002723 for ; Thu, 30 Jul 2009 06:19:29 -0400 From: Zachary Amsden Date: Thu, 30 Jul 2009 00:14:59 -1000 Message-Id: <1248948912-7877-2-git-send-email-zamsden@redhat.com> In-Reply-To: <1248948912-7877-1-git-send-email-zamsden@redhat.com> References: <1248948912-7877-1-git-send-email-zamsden@redhat.com> Subject: [Qemu-devel] [PATCH 01/14] Add a configure switch to enable / disable all user targets. I felt compelled to do it for symmetry, mostly it is useful to disable user targets when you don't want to build them. List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: zamsden@redhat.com Signed-off-by: Zachary Amsden --- configure | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/configure b/configure index 33e3c41..e9b42a8 100755 --- a/configure +++ b/configure @@ -449,6 +449,12 @@ for opt do ;; --enable-system) softmmu="yes" ;; + --disable-user) + linux_user="no" ; + bsd_user="no" ; + darwin_user="no" + ;; + --enable-user) ;; --disable-linux-user) linux_user="no" ;; --enable-linux-user) linux_user="yes" @@ -631,6 +637,8 @@ echo " --disable-kvm disable KVM acceleration support" echo " --disable-nptl disable usermode NPTL support" echo " --enable-system enable all system emulation targets" echo " --disable-system disable all system emulation targets" +echo " --enable-user enable supported user emulation targets" +echo " --disable-user disable all user emulation targets" echo " --enable-linux-user enable all linux usermode emulation targets" echo " --disable-linux-user disable all linux usermode emulation targets" echo " --enable-darwin-user enable all darwin usermode emulation targets" -- 1.6.2.5