summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorZachary Amsden <zamsden@redhat.com>2009-07-30 00:14:59 -1000
committerAnthony Liguori <aliguori@us.ibm.com>2009-08-24 08:01:42 -0500
commit0953a80f04a9771323931123cbe486e9fd8ffe20 (patch)
tree479ba5382f710a236d49eb7cb317187077a5a748
parent4951f65bd35ea57c28d8af2d20e1c93087e73f0c (diff)
downloadfocaccia-qemu-0953a80f04a9771323931123cbe486e9fd8ffe20.tar.gz
focaccia-qemu-0953a80f04a9771323931123cbe486e9fd8ffe20.zip
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.
Signed-off-by: Zachary Amsden <zamsden@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
-rwxr-xr-xconfigure8
1 files changed, 8 insertions, 0 deletions
diff --git a/configure b/configure
index 0b2c7218ef..38503b28de 100755
--- a/configure
+++ b/configure
@@ -471,6 +471,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"
@@ -629,6 +635,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"