Bochs/bochs/.conf.win32-vcpp
Volker Ruppert 79afc6dd01 - enable VBE support by default in configure script
- removed unused configure symbol FPU_GLUE_OBJ
- updated configure shortcut scripts (cdrom and VBE support are enabled by default)
2006-11-20 18:55:16 +00:00

29 lines
713 B
Bash
Executable File

#!/bin/sh
set echo
./configure --target=pentium-windows \
--enable-sb16 \
--enable-ne2000 \
--enable-all-optimizations \
--enable-cpu-level=6 \
--enable-sse=1 \
--enable-pci \
--enable-clgd54xx \
--enable-usb \
--enable-save-restore \
--disable-readline \
--without-x \
--enable-cpp \
--with-win32 --with-rfb --with-nogui
unset echo
# Fix up all makefiles so that nmake can handle them.
for i in `find . -name Makefile`; do
echo Removing curly brackets in $i for NMAKE.
mv $i $i.tmp
sed -e 's/{/(/g' -e 's/}/)/g' < $i.tmp > $i
rm -f $i.tmp
done