2001-04-10 05:04:59 +04:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# This script will run configure for a Macintosh/CodeWarrior Pro
|
|
|
|
# environment. I actually run this on my Linux machine, but
|
|
|
|
# the generated files are for a Mac.
|
|
|
|
|
|
|
|
set echo
|
|
|
|
|
|
|
|
# These really just make ./configure happy on your Unix machine.
|
|
|
|
# They are not the options used on your Mac.
|
2001-10-08 01:23:00 +04:00
|
|
|
CC="gcc"
|
2001-04-10 05:04:59 +04:00
|
|
|
CFLAGS=""
|
|
|
|
CXX="$CC"
|
|
|
|
CXXFLAGS="$CFLAGS"
|
|
|
|
|
|
|
|
export CC
|
|
|
|
export CXX
|
|
|
|
export CFLAGS
|
|
|
|
export CXXFLAGS
|
|
|
|
|
2002-12-12 16:27:47 +03:00
|
|
|
./configure --target=ppc-macos \
|
|
|
|
--enable-cdrom \
|
2004-02-10 01:59:22 +03:00
|
|
|
--enable-sb16=osx \
|
2002-12-12 16:27:47 +03:00
|
|
|
--enable-vbe \
|
|
|
|
--enable-all-optimizations \
|
|
|
|
${CONFIGURE_ARGS} \
|
|
|
|
--enable-plugins \
|
|
|
|
--enable-pci \
|
|
|
|
--enable-port-e9-hack \
|
|
|
|
--enable-mmx \
|
|
|
|
--enable-sse=2 \
|
|
|
|
--with-macos
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
unset echo
|