diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-06-04 11:13:20 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-06-04 11:13:20 +0000 |
commit | 443f1376bc5f35159d09b043c0fdca3a1c4e0af1 (patch) | |
tree | 50fabb6e8db3dad077a40a28be2e36a335778fd9 /configure | |
parent | a3a91a355bc6107b7d06d722fb97d2b80065ee0b (diff) |
slirp is enabled by default
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@884 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -71,7 +71,7 @@ bigendian="no" mingw32="no" EXESUF="" gdbstub="yes" -slirp="no" +slirp="yes" # OS specific targetos=`uname -s` @@ -139,7 +139,7 @@ for opt do ;; --enable-mingw32) mingw32="yes" ; cross_prefix="i386-mingw32-" ;; - --enable-slirp) slirp="yes" + --disable-slirp) slirp="no" ;; esac done @@ -157,6 +157,7 @@ if test "$mingw32" = "yes" ; then target_list="i386-softmmu ppc-softmmu" EXESUF=".exe" gdbstub="no" + slirp="no" fi if test -z "$cross_prefix" ; then |