- compare disk size with the size calculated from geometry to avoid image
[bochs-mirror.git] / .conf.win32-vcpp
bloba4932ccdb9babb1e03a987fe6881d7a27ec2e389
1 #!/bin/sh
3 set echo
5 ./configure --target=pentium-windows \
6 --enable-sb16 \
7 --enable-ne2000 \
8 --enable-all-optimizations \
9 --enable-cpu-level=6 \
10 --enable-sse=1 \
11 --enable-pci \
12 --enable-clgd54xx \
13 --enable-usb \
14 --enable-save-restore \
15 --disable-readline \
16 --without-x \
17 --enable-cpp \
18 --with-win32 --with-rfb --with-nogui
20 unset echo
22 # Fix up all makefiles so that nmake can handle them.
23 for i in `find . -name Makefile`; do
24 echo Removing curly brackets in $i for NMAKE.
25 mv $i $i.tmp
26 sed -e 's/{/(/g' -e 's/}/)/g' < $i.tmp > $i
27 rm -f $i.tmp
28 done