Bochs/bochs/.conf.macosx
2003-10-31 20:50:04 +00:00

25 lines
599 B
Bash

#!/bin/sh
# this sets up the compile for MacOS X
#
# To support plugins on macosx, you must have "dlcompat" installed. You can
# get dlcompat by installing the fink package "dlcompat-devel". On the SF
# compile farm, dlcompat is in /sw/include and /sw/lib, so we have added
# those paths to the environment variables.
set echo
CFLAGS="-pipe -O2 -I/sw/include $CFLAGS"
CPPFLAGS="$CFLAGS"
CXXFLAGS="$CFLAGS"
LDFLAGS="-L/sw/lib"
export CFLAGS
export CPPFLAGS
export CXXFLAGS
export LDFLAGS
./configure --enable-cdrom \
--enable-vbe \
--enable-all-optimizations \
${CONFIGURE_ARGS}