mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
initial user mode network support
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@730 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
92cb7d5423
commit
c20709aa32
3 changed files with 279 additions and 97 deletions
7
configure
vendored
7
configure
vendored
|
@ -71,6 +71,7 @@ bigendian="no"
|
|||
mingw32="no"
|
||||
EXESUF=""
|
||||
gdbstub="yes"
|
||||
slirp="no"
|
||||
|
||||
# OS specific
|
||||
targetos=`uname -s`
|
||||
|
@ -124,6 +125,8 @@ for opt do
|
|||
;;
|
||||
--enable-mingw32) mingw32="yes" ; cross_prefix="i386-mingw32-"
|
||||
;;
|
||||
--enable-slirp) slirp="yes"
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
|
@ -378,6 +381,10 @@ if test "$sdl" = "yes" ; then
|
|||
fi
|
||||
echo "" >> $config_mak
|
||||
fi
|
||||
if test "$slirp" = "yes" ; then
|
||||
echo "CONFIG_SLIRP=yes" >> $config_mak
|
||||
echo "#define CONFIG_SLIRP 1" >> $config_h
|
||||
fi
|
||||
echo -n "VERSION=" >>$config_mak
|
||||
head $source_path/VERSION >>$config_mak
|
||||
echo "" >>$config_mak
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue