2002-08-24 14:18:40 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Some things this script could/should do when finished
|
|
|
|
#
|
2004-12-16 22:05:45 +00:00
|
|
|
# * detect whether it's a GNU compiler or not (for compiler settings)
|
2002-08-24 14:18:40 +00:00
|
|
|
# * command line options to...
|
|
|
|
# - override the host settings (for cross compiles
|
2002-12-01 20:29:20 +00:00
|
|
|
# - whether to do a debug build (with -g) or an optimized build (-O3 etc.)
|
|
|
|
# * detect whether the chosen backend is available (e.g. call sdl-config)
|
2002-08-24 14:18:40 +00:00
|
|
|
# * ....
|
|
|
|
|
2002-08-24 15:24:38 +00:00
|
|
|
|
2003-08-09 23:52:05 +00:00
|
|
|
# use environment vars if set
|
|
|
|
CXXFLAGS="$CXXFLAGS $CPPFLAGS"
|
|
|
|
|
2005-10-11 11:27:18 +00:00
|
|
|
# Backslashes into forward slashes:
|
|
|
|
# The following OS/2 specific code is performed to deal with handling of backslashes by ksh.
|
|
|
|
# Borrowed from the Sane configure script
|
|
|
|
|
|
|
|
if test "$ac_emxsupport" != "no" -a "$ac_emxsupport" != "NO"; then
|
|
|
|
ac_save_IFS="$IFS"
|
|
|
|
IFS="\\"
|
|
|
|
ac_TEMP_PATH=
|
|
|
|
for ac_dir in $PATH; do
|
|
|
|
IFS=$ac_save_IFS
|
|
|
|
if test -z "$ac_TEMP_PATH"; then
|
|
|
|
ac_TEMP_PATH="$ac_dir"
|
|
|
|
else
|
|
|
|
ac_TEMP_PATH="$ac_TEMP_PATH/$ac_dir"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
export PATH="$ac_TEMP_PATH"
|
|
|
|
unset ac_TEMP_PATH
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
2003-05-18 05:43:52 +00:00
|
|
|
# default lib behaviour yes/no/auto
|
|
|
|
_vorbis=auto
|
2005-06-30 09:14:36 +00:00
|
|
|
_tremor=auto
|
2004-02-22 14:11:16 +00:00
|
|
|
_flac=auto
|
2003-05-18 05:43:52 +00:00
|
|
|
_mad=auto
|
|
|
|
_alsa=auto
|
2003-12-10 00:15:20 +00:00
|
|
|
_zlib=auto
|
2004-01-13 02:23:37 +00:00
|
|
|
_mpeg2=auto
|
2005-04-10 14:33:44 +00:00
|
|
|
_fluidsynth=auto
|
2004-11-06 01:41:32 +00:00
|
|
|
_mt32emu=yes
|
2003-05-18 05:43:52 +00:00
|
|
|
# default option behaviour yes/no
|
|
|
|
_build_scumm=yes
|
2005-05-14 22:56:41 +00:00
|
|
|
_build_scumm_7_8=yes
|
2005-05-14 14:06:37 +00:00
|
|
|
_build_he=yes
|
2003-05-18 05:43:52 +00:00
|
|
|
_build_simon=yes
|
|
|
|
_build_sky=yes
|
2004-01-22 04:31:31 +00:00
|
|
|
_build_sword1=yes
|
|
|
|
_build_sword2=yes
|
2003-09-28 15:50:47 +00:00
|
|
|
_build_queen=yes
|
2004-07-31 12:46:30 +00:00
|
|
|
_build_saga=yes
|
2005-05-07 14:50:59 +00:00
|
|
|
_build_gob=yes
|
2005-05-07 16:29:11 +00:00
|
|
|
_build_kyra=no
|
2003-05-20 09:43:33 +00:00
|
|
|
_need_memalign=no
|
2004-02-15 01:21:02 +00:00
|
|
|
_build_plugins=no
|
2004-05-21 02:08:48 +00:00
|
|
|
_nasm=auto
|
2005-05-14 22:56:41 +00:00
|
|
|
_build_hq_scalers=yes
|
2003-05-26 05:18:40 +00:00
|
|
|
# more defaults
|
|
|
|
_backend=sdl
|
2003-05-18 09:54:28 +00:00
|
|
|
_ranlib=ranlib
|
2004-04-16 08:30:57 +00:00
|
|
|
_install=install
|
2004-07-27 12:16:03 +00:00
|
|
|
_ar="ar cru"
|
|
|
|
_mkdir="mkdir -p"
|
|
|
|
_echo=printf
|
|
|
|
_cat=cat
|
|
|
|
_rm="rm -f"
|
|
|
|
_rm_rec="$_rm -r"
|
|
|
|
_zip="zip -q"
|
|
|
|
_cp=cp
|
|
|
|
_win32path="C:/scummvm"
|
2003-05-26 05:18:40 +00:00
|
|
|
_sdlconfig=sdl-config
|
2004-01-22 04:31:31 +00:00
|
|
|
_sdlpath="$PATH"
|
2004-05-21 02:08:48 +00:00
|
|
|
_nasmpath="$PATH"
|
|
|
|
NASMFLAGS=""
|
|
|
|
NASM=""
|
2004-04-16 08:30:57 +00:00
|
|
|
_prefix=/usr/local
|
2004-10-21 22:37:37 +00:00
|
|
|
_have_x86=""
|
2004-04-05 22:07:09 +00:00
|
|
|
|
2004-04-06 20:04:05 +00:00
|
|
|
_srcdir=`dirname $0`
|
|
|
|
|
2004-09-19 09:57:24 +00:00
|
|
|
# TODO: We should really use mktemp(1) to determine a random tmp file name.
|
|
|
|
# However, that tool might not be available everywhere.
|
|
|
|
TMPO=${_srcdir}/scummvm-conf
|
|
|
|
TMPC=${TMPO}.cpp
|
|
|
|
TMPLOG=${_srcdir}/config.log
|
|
|
|
|
2004-04-05 22:07:09 +00:00
|
|
|
# For cross compiling
|
|
|
|
_host=""
|
|
|
|
_host_cpu=""
|
|
|
|
_host_vendor=""
|
|
|
|
_host_os=""
|
|
|
|
|
2004-01-22 04:31:31 +00:00
|
|
|
# config.h defaults
|
|
|
|
_def_linupy="#undef LINUPY"
|
2003-05-18 11:23:12 +00:00
|
|
|
|
|
|
|
cc_check() {
|
2003-12-10 00:15:20 +00:00
|
|
|
echo >> "$TMPLOG"
|
|
|
|
cat "$TMPC" >> "$TMPLOG"
|
|
|
|
echo >> "$TMPLOG"
|
2005-10-11 11:27:18 +00:00
|
|
|
echo "$CXX $TMPC -o $TMPO$EXEEXT $@" >> "$TMPLOG"
|
2004-05-06 10:31:01 +00:00
|
|
|
rm -f "$TMPO$EXEEXT"
|
2005-10-11 11:27:18 +00:00
|
|
|
( $CXX "$TMPC" -o "$TMPO$EXEEXT" "$@" ) >> "$TMPLOG" 2>&1
|
2003-12-10 00:15:20 +00:00
|
|
|
TMP="$?"
|
|
|
|
echo >> "$TMPLOG"
|
|
|
|
return "$TMP"
|
2003-05-18 11:23:12 +00:00
|
|
|
}
|
2003-05-18 05:43:52 +00:00
|
|
|
|
|
|
|
echocheck () {
|
2004-03-04 22:44:10 +00:00
|
|
|
echo_n "Checking for $@... "
|
2003-05-18 05:43:52 +00:00
|
|
|
}
|
|
|
|
|
2002-08-24 16:05:53 +00:00
|
|
|
#
|
2002-08-24 15:24:38 +00:00
|
|
|
# Check whether the given command is a working C++ compiler
|
2002-08-24 16:05:53 +00:00
|
|
|
#
|
2002-08-24 15:24:38 +00:00
|
|
|
test_compiler ()
|
|
|
|
{
|
|
|
|
cat <<EOF >tmp_cxx_compiler.cpp
|
|
|
|
class Foo {
|
2004-12-16 22:15:32 +00:00
|
|
|
int a;
|
2002-08-24 15:24:38 +00:00
|
|
|
};
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
Foo *a = new Foo();
|
|
|
|
delete a;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EOF
|
2004-01-22 04:31:31 +00:00
|
|
|
|
|
|
|
if test -n "$_host"; then
|
2004-12-16 22:15:32 +00:00
|
|
|
# In cross-compiling mode, we cannot run the result
|
2005-10-11 11:27:18 +00:00
|
|
|
eval "$1 -o tmp_cxx_compiler$EXEEXT tmp_cxx_compiler.cpp 2> /dev/null" && rm -f tmp_cxx_compiler$EXEEXT tmp_cxx_compiler.cpp
|
2004-01-22 04:31:31 +00:00
|
|
|
else
|
2005-10-11 11:27:18 +00:00
|
|
|
eval "$1 -o tmp_cxx_compiler$EXEEXT tmp_cxx_compiler.cpp 2> /dev/null" && eval "./tmp_cxx_compiler 2> /dev/null" && rm -f tmp_cxx_compiler$EXEEXT tmp_cxx_compiler.cpp
|
2004-01-22 04:31:31 +00:00
|
|
|
fi
|
2002-08-24 15:24:38 +00:00
|
|
|
}
|
|
|
|
|
2003-07-06 06:21:17 +00:00
|
|
|
#
|
|
|
|
# Determine sdl-config
|
|
|
|
#
|
|
|
|
# TODO: small bit of code to test sdl useability
|
|
|
|
find_sdlconfig()
|
|
|
|
{
|
2005-10-11 11:27:18 +00:00
|
|
|
|
2004-04-05 22:07:09 +00:00
|
|
|
echo_n "Looking for sdl-config... "
|
2003-12-10 00:15:20 +00:00
|
|
|
sdlconfigs="$_sdlconfig:sdl-config:sdl11-config:sdl12-config"
|
|
|
|
_sdlconfig=
|
|
|
|
|
2005-10-11 11:27:18 +00:00
|
|
|
IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$SEPARATOR"
|
2004-01-22 04:31:31 +00:00
|
|
|
for path_dir in $_sdlpath; do
|
2005-10-11 18:09:52 +00:00
|
|
|
#reset separator to parse sdlconfigs
|
|
|
|
IFS=":"
|
2004-12-16 22:15:32 +00:00
|
|
|
for sdlconfig in $sdlconfigs; do
|
|
|
|
if test -x "$path_dir/$sdlconfig" ; then
|
|
|
|
_sdlconfig="$path_dir/$sdlconfig"
|
|
|
|
echo $_sdlconfig
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
2003-12-10 00:15:20 +00:00
|
|
|
done
|
|
|
|
|
|
|
|
IFS="$ac_save_ifs"
|
|
|
|
|
|
|
|
if test -z "$_sdlconfig"; then
|
2004-12-16 22:15:32 +00:00
|
|
|
echo "none found!"
|
|
|
|
exit 1
|
2003-12-10 00:15:20 +00:00
|
|
|
fi
|
2003-07-06 06:21:17 +00:00
|
|
|
}
|
|
|
|
|
2004-03-04 22:44:10 +00:00
|
|
|
#
|
|
|
|
# Function to provide echo -n for bourne shells that don't have it
|
|
|
|
#
|
|
|
|
echo_n()
|
|
|
|
{
|
|
|
|
printf "$@"
|
|
|
|
}
|
|
|
|
|
2002-08-24 16:05:53 +00:00
|
|
|
#
|
|
|
|
# Determine a data type with the given length
|
|
|
|
#
|
|
|
|
find_type_with_size ()
|
|
|
|
{
|
|
|
|
cat <<EOF >tmp_find_type_with_size.cpp
|
|
|
|
#include <stdio.h>
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
int size = argv[1][0] - '0';
|
|
|
|
if (size == sizeof(int))
|
|
|
|
printf("int\n");
|
|
|
|
else if (size == sizeof(short))
|
|
|
|
printf("short\n");
|
|
|
|
else if (size == sizeof(char))
|
|
|
|
printf("char\n");
|
|
|
|
else if (size == sizeof(long))
|
|
|
|
printf("long\n");
|
|
|
|
else {
|
|
|
|
printf("unknown\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EOF
|
2005-10-11 11:27:18 +00:00
|
|
|
if eval "$CXX -o tmp_find_type_with_size$EXEEXT tmp_find_type_with_size.cpp"; then
|
2004-12-16 22:15:32 +00:00
|
|
|
datatype=`./tmp_find_type_with_size $1`
|
|
|
|
if test "$datatype" = "unknown"; then
|
|
|
|
echo "couldn't find data type with $1 bytes"
|
|
|
|
exit 1
|
|
|
|
fi
|
2002-08-24 16:05:53 +00:00
|
|
|
fi
|
2004-04-08 22:54:22 +00:00
|
|
|
rm -f tmp_find_type_with_size$EXEEXT tmp_find_type_with_size.cpp
|
2002-08-24 16:05:53 +00:00
|
|
|
echo $datatype
|
|
|
|
}
|
|
|
|
|
2004-05-21 02:08:48 +00:00
|
|
|
CheckNASM()
|
|
|
|
{
|
2004-12-16 22:15:32 +00:00
|
|
|
echocheck "nasm"
|
|
|
|
if test "$_nasm" = no ; then
|
|
|
|
echo "disabled"
|
|
|
|
return;
|
2004-05-21 02:08:48 +00:00
|
|
|
fi
|
|
|
|
|
2005-10-11 11:27:18 +00:00
|
|
|
IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=$SEPARATOR
|
2004-12-16 22:15:32 +00:00
|
|
|
|
|
|
|
for path_dir in $_nasmpath; do
|
|
|
|
if test -x "$path_dir/nasm" ; then
|
|
|
|
NASM="$path_dir/nasm"
|
|
|
|
echo $NASM
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
IFS="$ac_save_ifs"
|
|
|
|
|
|
|
|
if test x$NASM = x -o x$NASM = x'"$NASM"'; then
|
|
|
|
echo "not found"
|
|
|
|
_nasm=no
|
|
|
|
else
|
|
|
|
case $_host_os in
|
|
|
|
mingw* | cygwin*)
|
|
|
|
NASMFLAGS="-f win32"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
NASMFLAGS="-f elf"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
_nasm=yes
|
|
|
|
fi
|
2004-05-21 02:08:48 +00:00
|
|
|
}
|
|
|
|
|
2002-08-24 16:05:53 +00:00
|
|
|
#
|
|
|
|
# Greet user
|
|
|
|
#
|
2002-10-23 12:02:43 +00:00
|
|
|
|
2002-08-24 16:05:53 +00:00
|
|
|
echo "Running ScummVM configure..."
|
2003-06-02 21:22:54 +00:00
|
|
|
echo "Configure run on" `date` > $TMPLOG
|
2002-08-24 15:24:38 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Check any parameters we received
|
|
|
|
#
|
2003-07-06 11:19:55 +00:00
|
|
|
# TODO:
|
|
|
|
# * Change --disable-mad / --enable-mad to the way it's done in autoconf:
|
|
|
|
# That is, --without-mad / --with-mad=/prefix/to/mad. Useful for people
|
|
|
|
# who have Mad/Vorbis/ALSA installed in a non-standard locations.
|
2002-08-24 15:24:38 +00:00
|
|
|
#
|
|
|
|
|
2003-05-18 05:43:52 +00:00
|
|
|
for parm in "$@" ; do
|
|
|
|
if test "$parm" = "--help" || test "$parm" = "-help" || test "$parm" = "-h" ; then
|
|
|
|
cat << EOF
|
|
|
|
|
|
|
|
Usage: $0 [OPTIONS]...
|
|
|
|
|
|
|
|
Configuration:
|
|
|
|
-h, --help display this help and exit
|
2004-07-20 13:42:36 +00:00
|
|
|
--backend=BACKEND backend to build (sdl, x11, morphos, dc, gp32, null) [sdl]
|
2004-01-22 04:31:31 +00:00
|
|
|
|
2004-04-16 08:30:57 +00:00
|
|
|
Installation directories:
|
|
|
|
--prefix=DIR use this prefix for installing ScummVM [/usr/local]
|
|
|
|
--bindir=DIR directory to install the scummvm binary in [PREFIX/bin]
|
|
|
|
--mandir=DIR directory to install the manpage in [PREFIX/man]
|
|
|
|
|
2004-01-22 04:31:31 +00:00
|
|
|
Special configuration feature:
|
|
|
|
--host=HOST cross-compile to target HOST (arm-linux, ...)
|
|
|
|
special targets: linupy for Yopy PDA
|
2003-05-18 05:43:52 +00:00
|
|
|
|
|
|
|
Optional Features:
|
2004-02-13 14:46:56 +00:00
|
|
|
--disable-debug disable building with debugging symbols
|
2003-08-08 09:02:49 +00:00
|
|
|
--disable-scumm don't build the SCUMM engine
|
2005-05-14 22:56:41 +00:00
|
|
|
--disable-scumm-7-8 exclude v7 and v8 game in SCUMM engine (ft, dig, comi and demos)
|
2005-05-14 14:06:37 +00:00
|
|
|
--disable-he exclude HE70+ games in SCUMM engine
|
2003-08-08 09:02:49 +00:00
|
|
|
--disable-simon don't build the simon engine
|
|
|
|
--disable-sky don't build the Beneath a Steel Sky engine
|
2005-10-23 10:49:34 +00:00
|
|
|
--disable-sword1 don't build the Broken Sword 1 engine
|
|
|
|
--disable-sword2 don't build the Broken Sword 2 engine
|
2003-09-28 15:50:47 +00:00
|
|
|
--disable-queen don't build the Flight of the Amazon Queen engine
|
2004-08-02 05:01:28 +00:00
|
|
|
--disable-saga don't build the SAGA engine
|
2005-05-07 14:50:59 +00:00
|
|
|
--disable-gob don't build the Gobli*ns engine
|
2004-04-09 12:36:06 +00:00
|
|
|
--enable-kyra build the Legend of Kyrandia engine
|
2004-02-15 02:48:22 +00:00
|
|
|
--enable-plugins build engines as loadable modules instead of
|
2004-02-15 01:21:02 +00:00
|
|
|
static linking them
|
2004-11-06 01:41:32 +00:00
|
|
|
--disable-mt32emu don't enable the integrated MT-32 emulator
|
2005-05-14 22:56:41 +00:00
|
|
|
--disable-hq-scalers exclude HQ2x and HQ3x scalers
|
2003-05-18 05:43:52 +00:00
|
|
|
|
|
|
|
Optional Libraries:
|
2004-04-16 08:30:57 +00:00
|
|
|
--with-alsa-prefix=DIR Prefix where alsa is installed (optional)
|
2003-08-08 09:02:49 +00:00
|
|
|
--disable-alsa disable ALSA midi sound support [autodetect]
|
2004-02-15 01:21:02 +00:00
|
|
|
|
2004-04-16 08:30:57 +00:00
|
|
|
--with-ogg-prefix=DIR Prefix where libogg is installed (optional)
|
|
|
|
--with-vorbis-prefix=DIR Prefix where libvorbis is installed (optional)
|
2003-08-08 09:02:49 +00:00
|
|
|
--disable-vorbis disable Ogg Vorbis support [autodetect]
|
2004-02-15 01:21:02 +00:00
|
|
|
|
2005-06-30 09:14:36 +00:00
|
|
|
--with-tremor-prefix=DIR Prefix where tremor is installed (optional)
|
|
|
|
--disable-tremor disable tremor support [autodetect]
|
|
|
|
|
2004-04-16 08:30:57 +00:00
|
|
|
--with-mad-prefix=DIR Prefix where libmad is installed (optional)
|
2003-08-08 09:02:49 +00:00
|
|
|
--disable-mad disable libmad (MP3) support [autodetect]
|
2004-02-22 14:11:16 +00:00
|
|
|
|
2004-04-16 08:30:57 +00:00
|
|
|
--with-flac-prefix=DIR Prefix where libFLAC is installed (optional)
|
2004-02-22 14:11:16 +00:00
|
|
|
--disable-flac disable FLAC support [autodetect]
|
2004-02-15 01:21:02 +00:00
|
|
|
|
2004-04-16 08:30:57 +00:00
|
|
|
--with-zlib-prefix=DIR Prefix where zlib is installed (optional)
|
2004-01-12 11:11:19 +00:00
|
|
|
--disable-zlib disable zlib (compression) support [autodetect]
|
2004-02-15 01:21:02 +00:00
|
|
|
|
2004-04-16 08:30:57 +00:00
|
|
|
--with-mpeg2-prefix=DIR Prefix where libmpeg2 is installed (optional)
|
2004-02-15 01:21:02 +00:00
|
|
|
--disable-mpeg2 disable mpeg2 codec for cutscenes [autodetect]
|
|
|
|
|
2005-04-10 14:33:44 +00:00
|
|
|
--with-fluidsynth-prefix=DIR Prefix where libfluidsynth is installed (optional)
|
|
|
|
--disable-fluidsynth disable fluidsynth MIDI driver [autodetect]
|
|
|
|
|
2004-05-21 02:08:48 +00:00
|
|
|
--with-sdl-prefix=DIR Prefix where the sdl-config script is installed (optional)
|
|
|
|
|
|
|
|
--with-nasm-prefix=DIR Prefix where nasm executable is installed (optional)
|
|
|
|
--disable-nasm disable assembly language optimizations [autodetect]
|
2004-02-13 00:53:56 +00:00
|
|
|
|
|
|
|
Some influential environment variables:
|
|
|
|
LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a
|
|
|
|
nonstandard directory <lib dir>
|
|
|
|
CXX C++ compiler command
|
|
|
|
CXXFLAGS C++ compiler flags
|
|
|
|
CPPFLAGS C++ preprocessor flags, e.g. -I<include dir> if you have
|
|
|
|
headers in a nonstandard directory <include dir>
|
|
|
|
|
2003-05-18 05:43:52 +00:00
|
|
|
EOF
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
done # for parm in ...
|
|
|
|
|
2003-08-10 07:56:05 +00:00
|
|
|
DEBFLAGS="-g"
|
|
|
|
|
2003-05-26 05:18:40 +00:00
|
|
|
for ac_option in $@; do
|
|
|
|
case "$ac_option" in
|
2004-12-16 22:15:32 +00:00
|
|
|
--disable-scumm) _build_scumm=no ;;
|
2005-05-14 22:56:41 +00:00
|
|
|
--disable-scumm-7-8) _build_scumm_7_8=no ;;
|
2005-05-14 14:06:37 +00:00
|
|
|
--disable-he) _build_he=no ;;
|
2004-12-16 22:15:32 +00:00
|
|
|
--disable-simon) _build_simon=no ;;
|
|
|
|
--disable-sky) _build_sky=no ;;
|
|
|
|
--disable-sword1) _build_sword1=no ;;
|
|
|
|
--disable-sword2) _build_sword2=no ;;
|
|
|
|
--disable-queen) _build_queen=no ;;
|
|
|
|
--disable-saga) _build_saga=no ;;
|
2005-05-07 16:29:11 +00:00
|
|
|
--disable-gob) _build_gob=no ;;
|
2004-12-16 22:15:32 +00:00
|
|
|
--enable-kyra) _build_kyra=yes ;;
|
2005-05-14 22:56:41 +00:00
|
|
|
--disable-hq-scalers) _build_hq_scalers=no ;;
|
2004-12-16 22:15:32 +00:00
|
|
|
--enable-alsa) _alsa=yes ;;
|
|
|
|
--disable-alsa) _alsa=no ;;
|
|
|
|
--enable-vorbis) _vorbis=yes ;;
|
|
|
|
--disable-vorbis) _vorbis=no ;;
|
2005-06-30 09:14:36 +00:00
|
|
|
--enable-tremor) _tremor=yes ;;
|
|
|
|
--disable-tremor) _tremor=no ;;
|
2004-12-16 22:15:32 +00:00
|
|
|
--enable-flac) _flac=yes ;;
|
|
|
|
--disable-flac) _flac=no ;;
|
|
|
|
--enable-mad) _mad=yes ;;
|
|
|
|
--disable-mad) _mad=no ;;
|
|
|
|
--enable-zlib) _zlib=yes ;;
|
|
|
|
--disable-zlib) _zlib=no ;;
|
|
|
|
--enable-nasm) _nasm=yes ;;
|
|
|
|
--disable-nasm) _nasm=no ;;
|
2004-01-13 02:23:37 +00:00
|
|
|
--disable-mpeg2) _mpeg2=no ;;
|
2005-04-10 14:33:44 +00:00
|
|
|
--disable-fluidsynth) _fluidsynth=no ;;
|
2004-02-15 01:21:02 +00:00
|
|
|
--enable-plugins) _build_plugins=yes ;;
|
2004-11-06 01:41:32 +00:00
|
|
|
--enable-mt32emu) _mt32emu=yes ;;
|
|
|
|
--disable-mt32emu) _mt32emu=no ;;
|
2005-04-10 14:33:44 +00:00
|
|
|
--with-fluidsynth-prefix=*)
|
|
|
|
_prefix=`echo $ac_option | cut -d '=' -f 2`
|
|
|
|
FLUIDSYNTH_CFLAGS="-I$_prefix/include"
|
|
|
|
FLUIDSYNTH_LIBS="-L$_prefix/lib"
|
|
|
|
;;
|
2004-01-13 02:23:37 +00:00
|
|
|
--with-mpeg2-prefix=*)
|
2004-12-16 22:15:32 +00:00
|
|
|
_prefix=`echo $ac_option | cut -d '=' -f 2`
|
|
|
|
MPEG2_CFLAGS="-I$_prefix/include"
|
|
|
|
MPEG2_LIBS="-L$_prefix/lib"
|
2004-01-13 02:23:37 +00:00
|
|
|
;;
|
2003-08-08 09:02:49 +00:00
|
|
|
--with-alsa-prefix=*)
|
2004-12-16 22:15:32 +00:00
|
|
|
_prefix=`echo $ac_option | cut -d '=' -f 2`
|
|
|
|
ALSA_CFLAGS="-I$_prefix/include"
|
|
|
|
ALSA_LIBS="-L$_prefix/lib"
|
|
|
|
;;
|
2003-08-08 09:02:49 +00:00
|
|
|
--with-ogg-prefix=*)
|
2004-12-16 22:15:32 +00:00
|
|
|
_prefix=`echo $ac_option | cut -d '=' -f 2`
|
|
|
|
OGG_CFLAGS="-I$_prefix/include"
|
|
|
|
OGG_LIBS="-L$_prefix/lib"
|
|
|
|
;;
|
2003-08-08 09:02:49 +00:00
|
|
|
--with-vorbis-prefix=*)
|
2004-12-16 22:15:32 +00:00
|
|
|
_prefix=`echo $ac_option | cut -d '=' -f 2`
|
|
|
|
VORBIS_CFLAGS="-I$_prefix/include"
|
|
|
|
VORBIS_LIBS="-L$_prefix/lib"
|
|
|
|
;;
|
2005-06-30 09:14:36 +00:00
|
|
|
--with-tremor-prefix=*)
|
|
|
|
_prefix=`echo $ac_option | cut -d '=' -f 2`
|
|
|
|
TREMOR_CFLAGS="-I$_prefix/include"
|
|
|
|
TREMOR_LIBS="-L$_prefix/lib"
|
|
|
|
;;
|
2004-02-22 14:11:16 +00:00
|
|
|
--with-flac-prefix=*)
|
2004-12-16 22:15:32 +00:00
|
|
|
_prefix=`echo $ac_option | cut -d '=' -f 2`
|
|
|
|
FLAC_CFLAGS="-I$_prefix/include"
|
|
|
|
FLAC_LIBS="-L$_prefix/lib"
|
|
|
|
;;
|
2003-08-08 09:02:49 +00:00
|
|
|
--with-mad-prefix=*)
|
2004-12-16 22:15:32 +00:00
|
|
|
_prefix=`echo $ac_option | cut -d '=' -f 2`
|
|
|
|
MAD_CFLAGS="-I$_prefix/include"
|
|
|
|
MAD_LIBS="-L$_prefix/lib"
|
|
|
|
;;
|
2003-12-10 00:15:20 +00:00
|
|
|
--with-zlib-prefix=*)
|
2004-12-16 22:15:32 +00:00
|
|
|
_prefix=`echo $ac_option | cut -d '=' -f 2`
|
|
|
|
ZLIB_CFLAGS="-I$_prefix/include"
|
|
|
|
ZLIB_LIBS="-L$_prefix/lib"
|
|
|
|
;;
|
2003-05-26 05:18:40 +00:00
|
|
|
--backend=*)
|
|
|
|
_backend=`echo $ac_option | cut -d '=' -f 2`
|
2004-12-16 22:15:32 +00:00
|
|
|
;;
|
2003-08-10 07:56:05 +00:00
|
|
|
--disable-debug)
|
2004-12-16 22:15:32 +00:00
|
|
|
DEBFLAGS=""
|
2003-08-10 07:56:05 +00:00
|
|
|
;;
|
|
|
|
--enable-release)
|
2004-12-16 22:15:32 +00:00
|
|
|
DEBFLAGS="-O2"
|
2003-08-10 00:44:03 +00:00
|
|
|
;;
|
2004-01-22 04:31:31 +00:00
|
|
|
--with-sdl-prefix=*)
|
2004-12-16 22:15:32 +00:00
|
|
|
arg=`echo $ac_option | cut -d '=' -f 2`
|
|
|
|
_sdlpath="$arg:$arg/bin"
|
|
|
|
;;
|
2004-05-21 02:08:48 +00:00
|
|
|
--with-nasm-prefix=*)
|
2004-12-16 22:15:32 +00:00
|
|
|
arg=`echo $ac_option | cut -d '=' -f 2`
|
|
|
|
_nasmpath="$arg:$arg/bin"
|
|
|
|
;;
|
2004-01-22 04:31:31 +00:00
|
|
|
--host=*)
|
2004-12-16 22:15:32 +00:00
|
|
|
_host=`echo $ac_option | cut -d '=' -f 2`
|
|
|
|
;;
|
2004-04-16 08:30:57 +00:00
|
|
|
--prefix=*)
|
|
|
|
_prefix=`echo $ac_option | cut -d '=' -f 2`
|
2004-12-16 22:15:32 +00:00
|
|
|
;;
|
2004-04-16 08:30:57 +00:00
|
|
|
--bindir=*)
|
|
|
|
_bindir=`echo $ac_option | cut -d '=' -f 2`
|
2004-12-16 22:15:32 +00:00
|
|
|
;;
|
2004-04-16 08:30:57 +00:00
|
|
|
--mandir=*)
|
|
|
|
_mandir=`echo $ac_option | cut -d '=' -f 2`
|
2004-12-16 22:15:32 +00:00
|
|
|
;;
|
2003-08-10 00:44:03 +00:00
|
|
|
*)
|
|
|
|
echo "error: unrecognised option: $ac_option
|
|
|
|
Try \`$0 --help' for more information." >&2
|
2004-12-16 22:15:32 +00:00
|
|
|
exit 1
|
2003-08-10 00:44:03 +00:00
|
|
|
;;
|
2002-08-24 15:24:38 +00:00
|
|
|
esac;
|
|
|
|
done;
|
|
|
|
|
2003-08-10 07:56:05 +00:00
|
|
|
CXXFLAGS="$CXXFLAGS $DEBFLAGS"
|
2004-01-22 04:31:31 +00:00
|
|
|
|
2004-12-16 22:05:45 +00:00
|
|
|
case $_host in
|
|
|
|
linupy)
|
2004-12-16 22:15:32 +00:00
|
|
|
_host_os=linux
|
|
|
|
_host_cpu=arm
|
|
|
|
;;
|
2005-07-08 16:16:32 +00:00
|
|
|
arm-riscos)
|
2004-12-16 22:15:32 +00:00
|
|
|
_host_os=riscos
|
|
|
|
_host_cpu=arm
|
|
|
|
;;
|
2005-05-09 21:21:21 +00:00
|
|
|
ppc-amigaos)
|
|
|
|
_host_os=amigaos
|
|
|
|
_host_cpu=ppc
|
|
|
|
;;
|
2004-12-16 22:05:45 +00:00
|
|
|
*)
|
2004-12-16 22:15:32 +00:00
|
|
|
guessed_host=`$_srcdir/config.guess`
|
|
|
|
_host_cpu=`echo $guessed_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
|
|
|
|
_host_os=`echo $guessed_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
|
|
|
|
_host_vendor=`echo $guessed_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
|
|
|
|
;;
|
2004-12-16 22:05:45 +00:00
|
|
|
esac
|
2004-01-22 04:31:31 +00:00
|
|
|
|
2004-04-08 22:54:22 +00:00
|
|
|
#
|
|
|
|
# Determine extension used for executables
|
|
|
|
#
|
|
|
|
case $_host_os in
|
2005-10-11 11:27:18 +00:00
|
|
|
mingw* | cygwin* | os2-emx*)
|
2004-04-08 22:54:22 +00:00
|
|
|
EXEEXT=".exe"
|
|
|
|
;;
|
2005-07-08 16:16:32 +00:00
|
|
|
arm-riscos)
|
2004-12-16 22:05:45 +00:00
|
|
|
EXEEXT=",ff8"
|
|
|
|
;;
|
2004-04-08 22:54:22 +00:00
|
|
|
*)
|
|
|
|
EXEEXT=""
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2005-10-11 11:27:18 +00:00
|
|
|
#
|
|
|
|
# Determine separator used for $PATH
|
|
|
|
#
|
|
|
|
case $_host_os in
|
|
|
|
os2-emx* )
|
|
|
|
SEPARATOR=";"
|
|
|
|
;;
|
|
|
|
* )
|
|
|
|
SEPARATOR=":"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2002-08-24 15:24:38 +00:00
|
|
|
#
|
|
|
|
# Determine the C++ compiler
|
|
|
|
#
|
2004-04-05 22:07:09 +00:00
|
|
|
echo_n "Looking for C++ compiler... "
|
2004-01-22 04:31:31 +00:00
|
|
|
if test -n "$_host"; then
|
2004-12-16 22:15:32 +00:00
|
|
|
compilers="$CXX $_host_cpu-$_host_os-g++ $_host_cpu-$_host_os-c++"
|
2004-01-22 04:31:31 +00:00
|
|
|
else
|
2004-12-16 22:15:32 +00:00
|
|
|
compilers="$CXX g++ c++"
|
2004-01-22 04:31:31 +00:00
|
|
|
fi
|
|
|
|
|
2002-08-24 15:24:38 +00:00
|
|
|
CXX=
|
|
|
|
for compiler in $compilers; do
|
2004-12-16 22:15:32 +00:00
|
|
|
if test_compiler $compiler; then
|
2004-01-22 04:31:31 +00:00
|
|
|
CXX=$compiler
|
|
|
|
echo $CXX
|
|
|
|
break
|
2004-12-16 22:15:32 +00:00
|
|
|
fi
|
2002-08-24 15:24:38 +00:00
|
|
|
done
|
|
|
|
if test -z $CXX; then
|
2004-12-16 22:15:32 +00:00
|
|
|
echo "none found!"
|
|
|
|
exit 1
|
2002-08-24 15:24:38 +00:00
|
|
|
fi
|
|
|
|
|
2003-06-02 03:01:22 +00:00
|
|
|
#
|
|
|
|
# Determine the compiler version
|
|
|
|
|
|
|
|
echocheck "compiler version"
|
|
|
|
|
2005-10-26 17:39:23 +00:00
|
|
|
cxx_name=`( $cc -v ) 2>&1 | tail -n 1 | cut -d ' ' -f 1`
|
2003-06-02 03:01:22 +00:00
|
|
|
cxx_version=`( $CXX -dumpversion ) 2>&1`
|
|
|
|
if test "$?" -gt 0; then
|
|
|
|
cxx_version="not found"
|
|
|
|
fi
|
|
|
|
|
|
|
|
case $cxx_version in
|
2005-04-03 17:01:07 +00:00
|
|
|
2.95.[2-9]|2.95.[2-9][-.]*|3.[0-9]|3.[0-9].[0-9]|3.[0-9].[0-9][-.]*|4.[0-9].[0-9]|4.[0-9].[0-9][-.]*)
|
2003-06-02 03:01:22 +00:00
|
|
|
_cxx_major=`echo $cxx_version | cut -d '.' -f 1`
|
|
|
|
_cxx_minor=`echo $cxx_version | cut -d '.' -f 2`
|
|
|
|
cxx_version="$cxx_version, ok"
|
|
|
|
cxx_verc_fail=no
|
|
|
|
;;
|
2003-06-14 08:16:10 +00:00
|
|
|
# whacky beos version strings
|
|
|
|
2.9-beos-991026*|2.9-beos-000224*)
|
|
|
|
_cxx_major=2
|
|
|
|
_cxx_minor=95
|
|
|
|
cxx_version="$cxx_version, ok"
|
|
|
|
cxx_verc_fail=no
|
|
|
|
;;
|
2004-12-16 22:05:45 +00:00
|
|
|
3_4)
|
|
|
|
_cxx_major=3
|
|
|
|
_mxx_minor=4
|
|
|
|
;;
|
2003-06-02 03:01:22 +00:00
|
|
|
'not found')
|
|
|
|
cxx_verc_fail=yes
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
cxx_version="$cxx_version, bad"
|
|
|
|
cxx_verc_fail=yes
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
echo "$cxx_version"
|
|
|
|
|
|
|
|
if test "$cxx_verc_fail" = yes ; then
|
|
|
|
echo
|
|
|
|
echo "The version of your compiler is not supported at this time"
|
|
|
|
echo "Please ensure you are using GCC 2.95.x or GCC 3.x"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
#
|
2003-07-28 11:46:32 +00:00
|
|
|
# Do CXXFLAGS now we know the compiler version
|
2003-06-02 03:01:22 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
if test "$_cxx_major" -ge "3" ; then
|
2004-12-16 22:15:32 +00:00
|
|
|
case $_host_os in
|
2004-04-05 22:07:09 +00:00
|
|
|
mingw* | cygwin*)
|
2004-12-16 22:15:32 +00:00
|
|
|
CXXFLAGS="$CXXFLAGS -W -Wno-unused-parameter"
|
|
|
|
;;
|
2004-03-21 00:23:03 +00:00
|
|
|
*)
|
2004-12-16 22:15:32 +00:00
|
|
|
CXXFLAGS="$CXXFLAGS -ansi -W -Wno-unused-parameter"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
_make_def_HAVE_GCC3='HAVE_GCC3 = 1'
|
2003-06-02 03:01:22 +00:00
|
|
|
fi;
|
|
|
|
|
|
|
|
#
|
2003-05-18 05:43:52 +00:00
|
|
|
# Engine selection
|
2003-06-02 03:01:22 +00:00
|
|
|
#
|
2003-05-18 05:43:52 +00:00
|
|
|
if test "$_build_scumm" = no ; then
|
2003-08-23 23:33:05 +00:00
|
|
|
_mak_scumm='DISABLE_SCUMM = 1'
|
2003-05-18 05:43:52 +00:00
|
|
|
else
|
2003-08-23 23:33:05 +00:00
|
|
|
_mak_scumm='# DISABLE_SCUMM = 1'
|
2003-05-18 05:43:52 +00:00
|
|
|
fi
|
|
|
|
|
2005-05-14 22:56:41 +00:00
|
|
|
if test "$_build_scumm_7_8" = no ; then
|
|
|
|
_mak_scumm_7_8='DISABLE_SCUMM_7_8 = 1'
|
|
|
|
else
|
|
|
|
_mak_scumm_7_8='# DISABLE_SCUMM_7_8 = 1'
|
|
|
|
fi
|
|
|
|
|
2005-05-14 14:06:37 +00:00
|
|
|
if test "$_build_he" = no ; then
|
|
|
|
_mak_he='DISABLE_HE = 1'
|
|
|
|
else
|
|
|
|
_mak_he='# DISABLE_HE = 1'
|
|
|
|
fi
|
|
|
|
|
2003-05-18 05:43:52 +00:00
|
|
|
if test "$_build_simon" = no ; then
|
2003-08-23 23:33:05 +00:00
|
|
|
_mak_simon='DISABLE_SIMON = 1'
|
2003-05-18 05:43:52 +00:00
|
|
|
else
|
2003-08-23 23:33:05 +00:00
|
|
|
_mak_simon='# DISABLE_SIMON = 1'
|
2003-05-18 05:43:52 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
if test "$_build_sky" = no ; then
|
2003-08-23 23:33:05 +00:00
|
|
|
_mak_sky='DISABLE_SKY = 1'
|
2003-05-18 05:43:52 +00:00
|
|
|
else
|
2003-08-23 23:33:05 +00:00
|
|
|
_mak_sky='# DISABLE_SKY = 1'
|
2003-05-18 05:43:52 +00:00
|
|
|
fi
|
2003-05-20 10:15:38 +00:00
|
|
|
|
2004-01-22 04:31:31 +00:00
|
|
|
if test "$_build_sword1" = no ; then
|
|
|
|
_mak_sword1='DISABLE_SWORD1 = 1'
|
2003-12-16 05:34:00 +00:00
|
|
|
else
|
2004-01-22 04:31:31 +00:00
|
|
|
_mak_sword1='# DISABLE_SWORD1 = 1'
|
2003-12-16 05:34:00 +00:00
|
|
|
fi
|
|
|
|
|
2004-01-22 04:31:31 +00:00
|
|
|
if test "$_build_sword2" = no ; then
|
|
|
|
_mak_sword2='DISABLE_SWORD2 = 1'
|
2003-07-28 02:12:59 +00:00
|
|
|
else
|
2004-01-22 04:31:31 +00:00
|
|
|
_mak_sword2='# DISABLE_SWORD2 = 1'
|
2003-07-28 02:12:59 +00:00
|
|
|
fi
|
2003-05-18 05:43:52 +00:00
|
|
|
|
2003-09-28 15:50:47 +00:00
|
|
|
if test "$_build_queen" = no ; then
|
|
|
|
_mak_queen='DISABLE_QUEEN = 1'
|
|
|
|
else
|
|
|
|
_mak_queen='# DISABLE_QUEEN = 1'
|
|
|
|
fi
|
|
|
|
|
2004-04-09 12:36:06 +00:00
|
|
|
if test "$_build_kyra" = no ; then
|
2004-04-30 10:40:18 +00:00
|
|
|
_mak_kyra='DISABLE_KYRA = 1'
|
2004-04-09 12:36:06 +00:00
|
|
|
else
|
2004-04-30 10:40:18 +00:00
|
|
|
_mak_kyra='# DISABLE_KYRA = 1'
|
2004-04-09 12:36:06 +00:00
|
|
|
fi
|
|
|
|
|
2004-03-14 23:37:11 +00:00
|
|
|
if test "$_build_saga" = no ; then
|
|
|
|
_mak_saga='DISABLE_SAGA = 1'
|
|
|
|
else
|
|
|
|
_mak_saga='# DISABLE_SAGA = 1'
|
|
|
|
fi
|
|
|
|
|
2005-04-05 15:07:40 +00:00
|
|
|
if test "$_build_gob" = no ; then
|
|
|
|
_mak_gob='DISABLE_GOB = 1'
|
|
|
|
else
|
|
|
|
_mak_gob='# DISABLE_GOB = 1'
|
|
|
|
fi
|
|
|
|
|
2005-05-14 22:56:41 +00:00
|
|
|
if test "$_build_hq_scalers" = no ; then
|
|
|
|
_mak_hq_scalers='DISABLE_HQ_SCALERS = 1'
|
|
|
|
else
|
|
|
|
_mak_hq_scalers='# DISABLE_HQ_SCALERS = 1'
|
|
|
|
fi
|
|
|
|
|
2004-01-22 04:31:31 +00:00
|
|
|
if test -n "$_host"; then
|
2004-12-16 22:15:32 +00:00
|
|
|
# Cross-compiling mode - add your target here if needed
|
|
|
|
case "$_host" in
|
2005-07-08 16:16:32 +00:00
|
|
|
linupy|arm-riscos)
|
2004-12-16 22:15:32 +00:00
|
|
|
echo "Cross-compiling to $_host, forcing endianness, alignment and type sizes"
|
|
|
|
DEFINES="$DEFINES -DUNIX"
|
|
|
|
_def_endianness='#define SCUMM_LITTLE_ENDIAN'
|
|
|
|
_def_align='#define SCUMM_NEED_ALIGNMENT'
|
|
|
|
_def_linupy="#define DLINUPY"
|
|
|
|
type_1_byte='char'
|
|
|
|
type_2_byte='short'
|
|
|
|
type_4_byte='int'
|
|
|
|
;;
|
2005-10-26 17:39:23 +00:00
|
|
|
arm-linux)
|
|
|
|
echo "Cross-compiling to $_host, forcing endianness, alignment and type sizes"
|
|
|
|
DEFINES="$DEFINES -DUNIX"
|
|
|
|
#not true for all ARM systems, but the interesting ones are all LE. Most (if not all) BE arm devices don't have a screen
|
|
|
|
_def_endianness='#define SCUMM_LITTLE_ENDIAN'
|
|
|
|
_def_align='#define SCUMM_NEED_ALIGNMENT'
|
|
|
|
type_1_byte='char'
|
|
|
|
type_2_byte='short'
|
|
|
|
type_4_byte='int'
|
|
|
|
;;
|
2005-05-09 21:21:21 +00:00
|
|
|
ppc-amigaos)
|
|
|
|
echo "Cross-compiling to $_host, forcing endianness, alignment and type sizes"
|
|
|
|
_def_endianness='#define SCUMM_BIG_ENDIAN'
|
|
|
|
_def_align='#define SCUMM_NEED_ALIGNMENT'
|
|
|
|
type_1_byte='char'
|
|
|
|
type_2_byte='short'
|
|
|
|
type_4_byte='long'
|
|
|
|
CXXFLAGS="$CFLAGS -newlib -mstrict-align -mcpu=750 -mtune=7400"
|
|
|
|
LDFLAGS="$LDFLAGS -newlib"
|
|
|
|
;;
|
2004-12-16 22:15:32 +00:00
|
|
|
*)
|
2005-07-08 16:16:32 +00:00
|
|
|
echo "Cross-compiling to unknown target $_host, please add your target to configure."
|
2004-12-16 22:15:32 +00:00
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2004-01-22 04:31:31 +00:00
|
|
|
else
|
2004-12-16 22:15:32 +00:00
|
|
|
#
|
|
|
|
# Determine build settings
|
|
|
|
#
|
|
|
|
# TODO - also add an command line option to override this?!?
|
|
|
|
echo_n "Checking hosttype... "
|
|
|
|
echo $_host_os
|
|
|
|
case $_host_os in
|
|
|
|
linux* | openbsd* | freebsd* | netbsd* | bsd* | sunos* | hpux* | beos*)
|
|
|
|
DEFINES="$DEFINES -DUNIX"
|
|
|
|
;;
|
|
|
|
irix*)
|
|
|
|
DEFINES="$DEFINES -DUNIX"
|
|
|
|
_ranlib=:
|
|
|
|
;;
|
|
|
|
darwin*)
|
|
|
|
DEFINES="$DEFINES -DUNIX -DMACOSX"
|
2005-07-21 00:04:01 +00:00
|
|
|
LIBS="$LIBS -framework QuickTime -framework AudioUnit -framework Carbon -framework CoreMIDI"
|
2004-12-16 22:15:32 +00:00
|
|
|
# TODO: Add proper check for Altivec support in the compiler...
|
|
|
|
DEFINES="$DEFINES -DHAS_ALTIVEC"
|
|
|
|
CXXFLAGS="$CXXFLAGS -faltivec"
|
|
|
|
;;
|
|
|
|
mingw*)
|
|
|
|
DEFINES="$DEFINES -DWIN32"
|
|
|
|
LIBS="$LIBS -lmingw32 -lwinmm"
|
|
|
|
OBJS="$OBJS scummvmico.o"
|
|
|
|
;;
|
|
|
|
cygwin*)
|
|
|
|
DEFINES="$DEFINES -mno-cygwin -DWIN32"
|
|
|
|
LIBS="$LIBS -mno-cygwin -lmingw32 -lwinmm"
|
|
|
|
OBJS="$OBJS scummvmico.o"
|
|
|
|
;;
|
2005-10-11 11:27:18 +00:00
|
|
|
os2-emx*)
|
|
|
|
DEFINES="$DEFINES -DUNIX"
|
|
|
|
;;
|
2004-12-16 22:15:32 +00:00
|
|
|
# given this is a shell script assume some type of unix
|
|
|
|
*)
|
|
|
|
echo "WARNING: could not establish system type, assuming unix like"
|
|
|
|
DEFINES="$DEFINES -DUNIX"
|
|
|
|
;;
|
|
|
|
esac
|
2002-08-24 15:24:38 +00:00
|
|
|
|
2004-12-16 22:15:32 +00:00
|
|
|
#
|
|
|
|
# Check for endianness
|
|
|
|
#
|
|
|
|
echo_n "Checking endianness... "
|
|
|
|
cat <<EOF >tmp_endianness_check.cpp
|
2002-08-24 15:24:38 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2004-12-16 22:15:32 +00:00
|
|
|
unsigned int data = 0x01234567;
|
|
|
|
char *ptr = (char *)&data;
|
|
|
|
if (ptr[0] == 0x01 && ptr[1] == 0x23 && ptr[2] == 0x45 && ptr[3] == 0x67)
|
|
|
|
printf("big\n");
|
|
|
|
else if (ptr[3] == 0x01 && ptr[2] == 0x23 && ptr[1] == 0x45 && ptr[0] == 0x67)
|
|
|
|
printf("little\n");
|
|
|
|
else
|
|
|
|
printf("unknown\n");
|
|
|
|
return 0;
|
2002-08-24 15:24:38 +00:00
|
|
|
}
|
|
|
|
EOF
|
2005-10-11 11:27:18 +00:00
|
|
|
$CXX -o tmp_endianness_check$EXEEXT tmp_endianness_check.cpp
|
2004-12-16 22:15:32 +00:00
|
|
|
endianness=`./tmp_endianness_check`
|
|
|
|
echo $endianness;
|
|
|
|
case $endianness in
|
|
|
|
big)
|
|
|
|
_def_endianness='#define SCUMM_BIG_ENDIAN'
|
|
|
|
;;
|
|
|
|
little)
|
|
|
|
_def_endianness='#define SCUMM_LITTLE_ENDIAN'
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
rm -f tmp_endianness_check$EXEEXT tmp_endianness_check.cpp
|
|
|
|
|
|
|
|
#
|
|
|
|
# Check whether we can use x86 asm routines
|
|
|
|
#
|
|
|
|
echo_n "Running on x86... "
|
|
|
|
case $_host_cpu in
|
|
|
|
i386|i486|i586|i686)
|
|
|
|
_have_x86=yes
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
_have_x86=no
|
|
|
|
;;
|
|
|
|
esac
|
2004-10-21 22:37:37 +00:00
|
|
|
|
2004-12-16 22:15:32 +00:00
|
|
|
if test "$_have_x86" = yes ; then
|
|
|
|
_def_x86='#define HAVE_X86'
|
|
|
|
else
|
|
|
|
_def_x86='#undef HAVE_X86'
|
|
|
|
fi
|
|
|
|
echo "$_have_x86"
|
|
|
|
|
|
|
|
#
|
|
|
|
# Check whether memory alignment is required
|
|
|
|
#
|
|
|
|
echo_n "Alignment required... "
|
|
|
|
case $_host_cpu in
|
2005-10-16 16:39:00 +00:00
|
|
|
arm*)
|
|
|
|
_need_memalign=yes
|
|
|
|
;;
|
2004-12-16 22:15:32 +00:00
|
|
|
alpha*)
|
|
|
|
# Hardcode alignment requirements for Alpha processsors
|
|
|
|
_need_memalign=yes
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
# Try to auto-detect....
|
|
|
|
cat > $TMPC << EOF
|
2003-06-02 21:22:54 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <signal.h>
|
2003-06-02 11:20:07 +00:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2004-12-16 22:15:32 +00:00
|
|
|
unsigned char test[8] = { 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88 };
|
|
|
|
signal(SIGBUS, exit);
|
|
|
|
signal(SIGABRT, exit);
|
|
|
|
signal(SIGSEGV, exit);
|
|
|
|
if (*((unsigned int *)(test + 1)) != 0x55443322 && *((unsigned int *)(test + 1)) != 0x22334455) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
2003-06-02 11:20:07 +00:00
|
|
|
}
|
2003-05-20 09:43:33 +00:00
|
|
|
EOF
|
2004-12-16 22:15:32 +00:00
|
|
|
_need_memalign=yes
|
|
|
|
cc_check && $TMPO && _need_memalign=no
|
|
|
|
;;
|
|
|
|
esac
|
2004-04-05 22:07:09 +00:00
|
|
|
|
2004-12-16 22:15:32 +00:00
|
|
|
if test "$_need_memalign" = yes ; then
|
|
|
|
_def_align='#define SCUMM_NEED_ALIGNMENT'
|
|
|
|
else
|
|
|
|
_def_align='#undef SCUMM_NEED_ALIGNMENT'
|
|
|
|
fi
|
|
|
|
echo "$_need_memalign"
|
|
|
|
|
|
|
|
#
|
|
|
|
# Determine data type sizes
|
|
|
|
# TODO: proper error checking
|
|
|
|
# TODO: Actually, we should check individually for both signed & unsigned
|
|
|
|
# data types - there are systems on which the size of an unsigned int
|
|
|
|
# differs from that of a signed int!
|
|
|
|
# However, so far we haven't encountered one of those, so we can live with
|
|
|
|
# the limited check for now.
|
|
|
|
#
|
|
|
|
echo_n "Type with 1 byte... "
|
|
|
|
type_1_byte=`find_type_with_size 1`
|
|
|
|
echo "$type_1_byte"
|
|
|
|
|
|
|
|
echo_n "Type with 2 bytes... "
|
|
|
|
type_2_byte=`find_type_with_size 2`
|
|
|
|
echo "$type_2_byte"
|
|
|
|
|
|
|
|
echo_n "Type with 4 bytes... "
|
|
|
|
type_4_byte=`find_type_with_size 4`
|
|
|
|
echo "$type_4_byte"
|
|
|
|
|
2003-05-20 09:43:33 +00:00
|
|
|
fi
|
2003-05-20 10:15:38 +00:00
|
|
|
|
2004-02-15 01:21:02 +00:00
|
|
|
#
|
|
|
|
# Check whether plugin support is requested and possible
|
|
|
|
#
|
|
|
|
echocheck "Plugin support"
|
|
|
|
_mak_plugins=
|
2005-02-06 17:21:31 +00:00
|
|
|
_def_plugin=
|
2004-02-15 01:21:02 +00:00
|
|
|
if test "$_build_plugins" = yes ; then
|
2004-04-05 22:07:09 +00:00
|
|
|
case $_host_os in
|
2004-04-09 16:17:57 +00:00
|
|
|
linux*)
|
2005-02-06 17:21:31 +00:00
|
|
|
_def_plugin='
|
|
|
|
#define PLUGIN_PREFIX "lib"
|
|
|
|
#define PLUGIN_SUFFIX ".so"
|
|
|
|
'
|
2004-02-15 01:21:02 +00:00
|
|
|
_mak_plugins='
|
|
|
|
BUILD_PLUGINS := 1
|
2005-02-06 17:21:31 +00:00
|
|
|
PLUGIN_PREFIX := lib
|
|
|
|
PLUGIN_SUFFIX := .so
|
2005-02-06 17:45:16 +00:00
|
|
|
PLUGIN_EXTRA_DEPS = $(EXECUTABLE)
|
2004-02-15 01:21:02 +00:00
|
|
|
CXXFLAGS += -DDYNAMIC_MODULES
|
|
|
|
CXXFLAGS += -fpic
|
|
|
|
PLUGIN_LDFLAGS += -shared
|
|
|
|
PRE_OBJS_FLAGS := -Wl,-export-dynamic -Wl,-whole-archive
|
|
|
|
POST_OBJS_FLAGS := -Wl,-no-whole-archive
|
|
|
|
LIBS += -ldl
|
2004-04-25 19:33:46 +00:00
|
|
|
'
|
|
|
|
;;
|
|
|
|
freebsd*)
|
2005-02-06 17:21:31 +00:00
|
|
|
_def_plugin='
|
|
|
|
#define PLUGIN_PREFIX "lib"
|
|
|
|
#define PLUGIN_SUFFIX ".so"
|
|
|
|
'
|
2004-04-25 19:33:46 +00:00
|
|
|
_mak_plugins='
|
|
|
|
BUILD_PLUGINS := 1
|
2005-02-06 17:21:31 +00:00
|
|
|
PLUGIN_PREFIX := lib
|
|
|
|
PLUGIN_SUFFIX := .so
|
2005-02-06 17:45:16 +00:00
|
|
|
PLUGIN_EXTRA_DEPS = $(EXECUTABLE)
|
2004-04-25 19:33:46 +00:00
|
|
|
CXXFLAGS += -DDYNAMIC_MODULES
|
|
|
|
CXXFLAGS += -fpic
|
|
|
|
PLUGIN_LDFLAGS += -shared
|
|
|
|
PRE_OBJS_FLAGS := -Wl,-export-dynamic -Wl,-whole-archive
|
|
|
|
POST_OBJS_FLAGS := -Wl,-no-whole-archive
|
2004-02-15 01:21:02 +00:00
|
|
|
'
|
|
|
|
;;
|
2004-04-09 16:17:57 +00:00
|
|
|
darwin*)
|
2005-02-06 17:21:31 +00:00
|
|
|
_def_plugin='
|
|
|
|
#define PLUGIN_PREFIX ""
|
|
|
|
#define PLUGIN_SUFFIX ".plugin"
|
|
|
|
'
|
2004-02-15 01:21:02 +00:00
|
|
|
_mak_plugins='
|
|
|
|
BUILD_PLUGINS := 1
|
2005-02-06 17:21:31 +00:00
|
|
|
PLUGIN_PREFIX :=
|
|
|
|
PLUGIN_SUFFIX := .plugin
|
2005-02-06 17:45:16 +00:00
|
|
|
PLUGIN_EXTRA_DEPS = $(EXECUTABLE)
|
2004-02-15 01:21:02 +00:00
|
|
|
CXXFLAGS += -DDYNAMIC_MODULES
|
2004-03-23 00:30:50 +00:00
|
|
|
PLUGIN_LDFLAGS += -bundle -bundle_loader $(EXECUTABLE) -exported_symbols_list "$(srcdir)/plugin.exp"
|
2004-02-15 01:21:02 +00:00
|
|
|
PRE_OBJS_FLAGS := -all_load
|
|
|
|
POST_OBJS_FLAGS :=
|
|
|
|
LIBS += -ldl
|
|
|
|
'
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
_build_plugins=no
|
2005-02-06 17:21:31 +00:00
|
|
|
_mak_plugins=
|
|
|
|
_def_plugin=
|
2004-02-15 01:21:02 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
echo "$_build_plugins"
|
|
|
|
|
2004-11-06 01:41:32 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Check whether integrated MT-32 emulator support is requested
|
|
|
|
#
|
|
|
|
if test "$_mt32emu" = no ; then
|
2004-12-16 22:15:32 +00:00
|
|
|
_def_mt32emu='#undef USE_MT32EMU'
|
|
|
|
_mak_mt32emu='# USE_MT32EMU = 1'
|
2004-11-06 01:41:32 +00:00
|
|
|
else
|
2004-12-16 22:15:32 +00:00
|
|
|
_def_mt32emu='#define USE_MT32EMU'
|
|
|
|
_mak_mt32emu='USE_MT32EMU = 1'
|
2004-11-06 01:41:32 +00:00
|
|
|
fi
|
|
|
|
|
2004-02-15 01:21:02 +00:00
|
|
|
#
|
|
|
|
# Check for Ogg Vorbis
|
|
|
|
#
|
2003-05-18 05:43:52 +00:00
|
|
|
echocheck "Ogg Vorbis"
|
|
|
|
if test "$_vorbis" = auto ; then
|
2004-12-16 22:15:32 +00:00
|
|
|
_vorbis=no
|
|
|
|
cat > $TMPC << EOF
|
2003-05-18 05:43:52 +00:00
|
|
|
#include <vorbis/codec.h>
|
|
|
|
int main(void) { vorbis_packet_blocksize(0,0); return 0; }
|
|
|
|
EOF
|
2004-12-16 22:15:32 +00:00
|
|
|
cc_check $LDFLAGS $CXXFLAGS $OGG_CFLAGS $OGG_LIBS $VORBIS_CFLAGS $VORBIS_LIBS \
|
|
|
|
-lvorbis -logg -lm && _vorbis=yes
|
2003-05-18 05:43:52 +00:00
|
|
|
fi
|
|
|
|
if test "$_vorbis" = yes ; then
|
2004-12-16 22:15:32 +00:00
|
|
|
_def_vorbis='#define USE_VORBIS'
|
|
|
|
LIBS="$LIBS $OGG_LIBS $VORBIS_LIBS -lvorbisfile -lvorbis -logg"
|
|
|
|
INCLUDES="$INCLUDES $OGG_CFLAGS $VORBIS_CFLAGS"
|
2003-05-18 05:43:52 +00:00
|
|
|
else
|
2004-12-16 22:15:32 +00:00
|
|
|
_def_vorbis='#undef USE_VORBIS'
|
2003-05-18 05:43:52 +00:00
|
|
|
fi
|
|
|
|
echo "$_vorbis"
|
|
|
|
|
2005-06-30 09:14:36 +00:00
|
|
|
#
|
|
|
|
# Check for Tremor
|
|
|
|
#
|
|
|
|
echocheck "Tremor"
|
|
|
|
if test "$_tremor" = auto ; then
|
|
|
|
_tremor=no
|
|
|
|
cat > $TMPC << EOF
|
|
|
|
#include <tremor/ivorbiscodec.h>
|
|
|
|
int main(void) { vorbis_packet_blocksize(0,0); return 0; }
|
|
|
|
EOF
|
|
|
|
cc_check $LDFLAGS $CXXFLAGS $TREMOR_CFLAGS $TREMOR_LIBS -lvorbisidec && \
|
|
|
|
_tremor=yes
|
|
|
|
fi
|
|
|
|
if test "$_tremor" = yes && test "$_vorbis" = no; then
|
|
|
|
_def_tremor='#define USE_TREMOR'
|
2005-08-10 12:42:56 +00:00
|
|
|
_def_vorbis='#define USE_VORBIS'
|
2005-06-30 09:14:36 +00:00
|
|
|
LIBS="$LIBS $TREMOR_LIBS -lvorbisidec"
|
|
|
|
INCLUDES="$INCLUDES $TREMOR_CFLAGS"
|
|
|
|
else
|
|
|
|
if test "$_vorbis" = yes; then
|
|
|
|
_tremor="no (Ogg Vorbis/Tremor support is mutually exclusive)"
|
|
|
|
fi
|
|
|
|
_def_tremor='#undef USE_TREMOR'
|
|
|
|
fi
|
|
|
|
echo "$_tremor"
|
|
|
|
|
2004-02-23 16:41:05 +00:00
|
|
|
echocheck "FLAC >= 1.0.1"
|
2004-02-22 14:11:16 +00:00
|
|
|
if test "$_flac" = auto ; then
|
2004-12-16 22:15:32 +00:00
|
|
|
_flac=no
|
|
|
|
cat > $TMPC << EOF
|
2004-02-22 14:11:16 +00:00
|
|
|
#include <FLAC/seekable_stream_decoder.h>
|
|
|
|
int main(void) { FLAC__seekable_stream_decoder_init( 0 ); return 0; }
|
|
|
|
EOF
|
2004-12-16 22:15:32 +00:00
|
|
|
cc_check $LDFLAGS $CXXFLAGS $FLAC_CFLAGS $FLAC_LIBS \
|
|
|
|
-lFLAC -lm && _flac=yes
|
2004-02-22 14:11:16 +00:00
|
|
|
fi
|
|
|
|
if test "$_flac" = yes ; then
|
2004-12-16 22:15:32 +00:00
|
|
|
_def_flac='#define USE_FLAC'
|
|
|
|
LIBS="$LIBS $FLAC_LIBS -lFLAC"
|
|
|
|
INCLUDES="$INCLUDES $FLAC_CFLAGS"
|
2004-02-22 14:11:16 +00:00
|
|
|
else
|
2004-12-16 22:15:32 +00:00
|
|
|
_def_flac='#undef USE_FLAC'
|
2004-02-22 14:11:16 +00:00
|
|
|
fi
|
|
|
|
echo "$_flac"
|
|
|
|
|
2004-02-15 01:21:02 +00:00
|
|
|
#
|
|
|
|
# Check for MAD (MP3 library)
|
|
|
|
#
|
2003-05-18 05:43:52 +00:00
|
|
|
echocheck "MAD"
|
|
|
|
if test "$_mad" = auto ; then
|
2004-12-16 22:15:32 +00:00
|
|
|
_mad=no
|
|
|
|
cat > $TMPC << EOF
|
2003-05-18 05:43:52 +00:00
|
|
|
#include <mad.h>
|
|
|
|
int main(void) {return 0; }
|
|
|
|
EOF
|
2004-12-16 22:15:32 +00:00
|
|
|
cc_check $LDFLAGS $CXXFLAGS $MAD_CFLAGS $MAD_LIBS -lmad && _mad=yes
|
2003-05-18 05:43:52 +00:00
|
|
|
fi
|
|
|
|
if test "$_mad" = yes ; then
|
2004-12-16 22:15:32 +00:00
|
|
|
_def_mad='#define USE_MAD'
|
|
|
|
LIBS="$LIBS $MAD_LIBS -lmad"
|
|
|
|
INCLUDES="$INCLUDES $MAD_CFLAGS"
|
2003-05-18 05:43:52 +00:00
|
|
|
else
|
2004-12-16 22:15:32 +00:00
|
|
|
_def_mad='#undef USE_MAD'
|
2003-05-18 05:43:52 +00:00
|
|
|
fi
|
|
|
|
echo "$_mad"
|
|
|
|
|
2004-02-15 01:21:02 +00:00
|
|
|
#
|
|
|
|
# Check for ALSA
|
|
|
|
#
|
2004-02-15 00:43:10 +00:00
|
|
|
echocheck "ALSA >= 0.9"
|
2003-05-18 05:43:52 +00:00
|
|
|
if test "$_alsa" = auto ; then
|
2004-12-16 22:15:32 +00:00
|
|
|
_alsa=no
|
|
|
|
cat > $TMPC << EOF
|
2003-05-18 05:43:52 +00:00
|
|
|
#include <alsa/asoundlib.h>
|
|
|
|
int main(void) { return (!(SND_LIB_MAJOR==0 && SND_LIB_MINOR==9)); }
|
|
|
|
EOF
|
2004-12-16 22:15:32 +00:00
|
|
|
cc_check $LDFLAGS $CXXFLAGS $ALSA_CFLAGS $ALSA_LIBS -lasound && _alsa=yes
|
2003-05-18 05:43:52 +00:00
|
|
|
fi
|
|
|
|
if test "$_alsa" = yes ; then
|
2004-12-16 22:15:32 +00:00
|
|
|
_def_alsa='#define USE_ALSA'
|
|
|
|
LIBS="$LIBS $ALSA_LIBS -lasound"
|
|
|
|
INCLUDES="$INCLUDES $ALSA_CFLAGS"
|
2003-05-18 05:43:52 +00:00
|
|
|
else
|
2004-12-16 22:15:32 +00:00
|
|
|
_def_alsa='#undef USE_ALSA'
|
2003-05-18 05:43:52 +00:00
|
|
|
fi
|
|
|
|
echo "$_alsa"
|
|
|
|
|
2004-02-15 01:21:02 +00:00
|
|
|
#
|
|
|
|
# Check for ZLib
|
|
|
|
#
|
2003-12-10 00:15:20 +00:00
|
|
|
echocheck "zlib"
|
|
|
|
if test "$_zlib" = auto ; then
|
2004-12-16 22:15:32 +00:00
|
|
|
_zlib=no
|
|
|
|
cat > $TMPC << EOF
|
2003-12-10 00:15:20 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <zlib.h>
|
|
|
|
int main(void) { return strcmp(ZLIB_VERSION, zlibVersion()); }
|
|
|
|
EOF
|
2004-12-16 22:15:32 +00:00
|
|
|
cc_check $LDFLAGS $CXXFLAGS $ZLIB_CFLAGS $ZLIB_LIBS -lz && _zlib=yes
|
2003-12-10 00:15:20 +00:00
|
|
|
fi
|
|
|
|
if test "$_zlib" = yes ; then
|
2004-12-16 22:15:32 +00:00
|
|
|
_def_zlib='#define USE_ZLIB'
|
|
|
|
LIBS="$LIBS $ZLIB_LIBS -lz"
|
|
|
|
INCLUDES="$INCLUDES $ZLIB_CFLAGS"
|
2003-12-10 00:15:20 +00:00
|
|
|
else
|
2004-12-16 22:15:32 +00:00
|
|
|
_def_zlib='#undef USE_ZLIB'
|
2003-12-10 00:15:20 +00:00
|
|
|
fi
|
|
|
|
echo "$_zlib"
|
|
|
|
|
2004-02-15 01:21:02 +00:00
|
|
|
#
|
|
|
|
# Check for LibMPEG2
|
|
|
|
#
|
2004-01-14 13:23:16 +00:00
|
|
|
echocheck "libmpeg2 >= 0.3.2"
|
2004-01-13 02:23:37 +00:00
|
|
|
if test "$_mpeg2" = auto ; then
|
2004-12-16 22:15:32 +00:00
|
|
|
_mpeg2=no
|
|
|
|
cat > $TMPC << EOF
|
2004-10-17 17:57:33 +00:00
|
|
|
typedef signed $type_1_byte int8_t;
|
|
|
|
typedef signed $type_2_byte int16_t;
|
|
|
|
typedef signed $type_4_byte int32_t;
|
|
|
|
|
|
|
|
typedef unsigned $type_1_byte uint8_t;
|
|
|
|
typedef unsigned $type_2_byte uint16_t;
|
|
|
|
typedef unsigned $type_4_byte uint32_t;
|
|
|
|
|
2004-01-13 02:23:37 +00:00
|
|
|
#include <mpeg2dec/mpeg2.h>
|
2004-01-14 02:29:49 +00:00
|
|
|
int main(void) {
|
|
|
|
/* mpeg2_state_t first appears in 0.4.0 */
|
|
|
|
mpeg2_state_t state;
|
|
|
|
|
|
|
|
#ifdef MPEG2_RELEASE
|
2004-01-14 13:23:16 +00:00
|
|
|
if (MPEG2_RELEASE >= MPEG2_VERSION(0, 3, 2))
|
2004-01-13 02:23:37 +00:00
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
EOF
|
2004-12-16 22:15:32 +00:00
|
|
|
cc_check $LDFLAGS $CXXFLAGS $MPEG2_CFLAGS $MPEG2_LIBS -lmpeg2 && $TMPO && _mpeg2=yes
|
2004-01-13 02:23:37 +00:00
|
|
|
fi
|
2004-01-12 11:11:19 +00:00
|
|
|
if test "$_mpeg2" = yes ; then
|
2004-12-16 22:15:32 +00:00
|
|
|
_def_mpeg2='#define USE_MPEG2'
|
|
|
|
INCLUDES="$INCLUDES $MPEG2_CFLAGS"
|
|
|
|
LIBS="$LIBS $MPEG2_LIBS -lmpeg2"
|
2004-01-13 02:23:37 +00:00
|
|
|
else
|
2004-12-16 22:15:32 +00:00
|
|
|
_def_mpeg2='#undef USE_MPEG2'
|
2004-01-12 11:11:19 +00:00
|
|
|
fi
|
|
|
|
echo "$_mpeg2"
|
2004-05-06 10:31:01 +00:00
|
|
|
rm -f $TMPC $TMPO$EXEEXT
|
2003-05-18 11:23:12 +00:00
|
|
|
|
2005-04-10 14:33:44 +00:00
|
|
|
#
|
|
|
|
# Check for libfluidsynth
|
|
|
|
#
|
|
|
|
echocheck "libfluidsynth"
|
|
|
|
if test "$_fluidsynth" = auto ; then
|
|
|
|
_fluidsynth=no
|
|
|
|
cat > $TMPC << EOF
|
|
|
|
#include <fluidsynth.h>
|
|
|
|
int main(void) { return 0; }
|
|
|
|
EOF
|
|
|
|
cc_check $LDFLAGS $CXXFLAGS $FLUIDSYNTH_CFLAGS $FLUIDSYNTH_LIBS -lfluidsynth && _fluidsynth=yes
|
|
|
|
fi
|
|
|
|
if test "$_fluidsynth" = yes ; then
|
|
|
|
_def_fluidsynth='#define USE_FLUIDSYNTH'
|
|
|
|
LIBS="$LIBS $FLUIDSYNTH_LIBS -lfluidsynth"
|
|
|
|
INCLUDE="$INCLUDES $FLUIDSYNTH_CFLAGS"
|
|
|
|
else
|
|
|
|
_def_fluidsynth='#undef USE_FLUIDSYNTH'
|
|
|
|
fi
|
|
|
|
echo "$_fluidsynth"
|
|
|
|
rm -f $TMPC $TMPO$EXEEXT
|
|
|
|
|
2004-05-21 02:08:48 +00:00
|
|
|
#
|
|
|
|
# Check for nasm
|
|
|
|
#
|
2005-01-06 15:50:41 +00:00
|
|
|
if test "$_have_x86" = yes ; then
|
|
|
|
CheckNASM
|
|
|
|
fi
|
2004-05-21 02:08:48 +00:00
|
|
|
|
|
|
|
if test "$_nasm" = yes ; then
|
2004-12-16 22:15:32 +00:00
|
|
|
_def_nasm='#define USE_NASM'
|
|
|
|
_make_def_HAVE_NASM='HAVE_NASM = 1'
|
2004-05-21 02:08:48 +00:00
|
|
|
else
|
2004-12-16 22:15:32 +00:00
|
|
|
_def_nasm='#undef USE_NASM'
|
|
|
|
_make_def_HAVE_NASM='# HAVE_NASM = 1'
|
2004-05-21 02:08:48 +00:00
|
|
|
fi
|
|
|
|
|
2004-04-16 08:30:57 +00:00
|
|
|
#
|
|
|
|
# figure out installation directories
|
|
|
|
#
|
|
|
|
test -z "$_bindir" && _bindir="$_prefix/bin"
|
|
|
|
test -z "$_mandir" && _mandir="$_prefix/man"
|
|
|
|
|
2004-02-15 01:21:02 +00:00
|
|
|
#
|
|
|
|
# Check which engines ("frontends") are to be built
|
|
|
|
#
|
2003-05-20 08:39:03 +00:00
|
|
|
echo
|
|
|
|
echo "Engines:"
|
|
|
|
if test "$_build_scumm" = yes ; then
|
2005-05-14 22:56:41 +00:00
|
|
|
echo_n " SCUMM"
|
|
|
|
if test "$_build_scumm_7_8" = yes ; then
|
|
|
|
echo_n " [v7 & v8 games]"
|
|
|
|
fi
|
2005-05-14 14:06:37 +00:00
|
|
|
if test "$_build_he" = yes ; then
|
2005-05-14 22:56:41 +00:00
|
|
|
echo_n " [HE70+ games]"
|
2005-05-14 14:06:37 +00:00
|
|
|
fi
|
2005-05-14 22:56:41 +00:00
|
|
|
echo
|
2003-05-20 08:39:03 +00:00
|
|
|
fi
|
|
|
|
if test "$_build_simon" = yes ; then
|
2004-12-16 22:15:32 +00:00
|
|
|
echo " Simon the Sorcerer"
|
2003-05-20 08:39:03 +00:00
|
|
|
fi
|
|
|
|
if test "$_build_sky" = yes ; then
|
2004-12-16 22:15:32 +00:00
|
|
|
echo " Beneath a Steel Sky"
|
2003-05-20 08:39:03 +00:00
|
|
|
fi
|
2004-01-22 04:31:31 +00:00
|
|
|
if test "$_build_sword1" = yes ; then
|
2005-10-23 10:49:34 +00:00
|
|
|
echo_n " Broken Sword 1"
|
2004-12-16 22:15:32 +00:00
|
|
|
if test "$_mpeg2" = yes ; then
|
|
|
|
echo " (w/ mpeg2 cutscenes)"
|
|
|
|
else
|
|
|
|
echo " (without mpeg2 cutscenes)"
|
|
|
|
fi
|
2003-12-16 05:34:00 +00:00
|
|
|
fi
|
2004-01-22 04:31:31 +00:00
|
|
|
if test "$_build_sword2" = yes ; then
|
2005-10-23 10:49:34 +00:00
|
|
|
echo_n " Broken Sword 2"
|
2004-12-16 22:15:32 +00:00
|
|
|
if test "$_mpeg2" = yes ; then
|
|
|
|
echo " (w/ mpeg2 cutscenes)"
|
|
|
|
else
|
|
|
|
echo " (without mpeg2 cutscenes)"
|
|
|
|
fi
|
2003-07-28 02:12:59 +00:00
|
|
|
fi
|
2003-09-28 15:50:47 +00:00
|
|
|
if test "$_build_queen" = yes ; then
|
2004-12-16 22:15:32 +00:00
|
|
|
echo " Flight of the Amazon Queen"
|
2003-09-28 15:50:47 +00:00
|
|
|
fi
|
2004-03-14 23:37:11 +00:00
|
|
|
if test "$_build_saga" = yes ; then
|
2004-12-16 22:15:32 +00:00
|
|
|
echo " SAGA"
|
2004-03-14 23:37:11 +00:00
|
|
|
fi
|
2004-04-09 12:36:06 +00:00
|
|
|
if test "$_build_kyra" = yes ; then
|
2004-12-16 22:15:32 +00:00
|
|
|
echo " Legend of Kyrandia"
|
2004-04-09 12:36:06 +00:00
|
|
|
fi
|
2005-04-05 15:07:40 +00:00
|
|
|
if test "$_build_gob" = yes ; then
|
|
|
|
echo " Gobli*ns"
|
|
|
|
fi
|
2004-05-21 02:08:48 +00:00
|
|
|
|
2003-05-20 08:39:03 +00:00
|
|
|
echo
|
|
|
|
|
2004-03-04 22:44:10 +00:00
|
|
|
echo_n "Backend... "
|
2004-05-21 02:08:48 +00:00
|
|
|
echo_n "$_backend"
|
|
|
|
|
|
|
|
if test "$_nasm" = yes ; then
|
2005-05-14 22:56:41 +00:00
|
|
|
echo_n ", assembly routines"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test "$_build_hq_scalers" = yes ; then
|
|
|
|
echo_n ", HQ scalers"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test "$_mt32emu" = yes ; then
|
|
|
|
echo ", MT-32 emu"
|
2004-05-21 02:08:48 +00:00
|
|
|
else
|
2004-12-16 22:15:32 +00:00
|
|
|
echo
|
2004-05-21 02:08:48 +00:00
|
|
|
fi
|
2003-07-06 02:40:02 +00:00
|
|
|
#
|
|
|
|
# Backend related stuff
|
|
|
|
#
|
|
|
|
case $_backend in
|
2004-12-16 22:15:32 +00:00
|
|
|
null)
|
|
|
|
DEFINES="$DEFINES -DUSE_NULL_DRIVER"
|
|
|
|
OBJS="$OBJS backends/null/null.o"
|
|
|
|
;;
|
|
|
|
sdl)
|
|
|
|
find_sdlconfig
|
|
|
|
INCLUDES="$INCLUDES `$_sdlconfig --cflags`"
|
|
|
|
LIBS="$LIBS `$_sdlconfig --libs`"
|
|
|
|
MODULES="$MODULES backends/sdl"
|
|
|
|
;;
|
|
|
|
x11)
|
|
|
|
INCLUDES="$INCLUDES -I/usr/X11R6/include"
|
|
|
|
LIBS="$LIBS -lpthread -lXext -lX11"
|
|
|
|
LDFLAGS="$LDFLAGS -L/usr/X11R6/lib -L/usr/local/lib"
|
|
|
|
OBJS="$OBJS backends/x11/x11.o"
|
|
|
|
DEFINES="$DEFINES -DX11_BACKEND"
|
|
|
|
MODULES="$MODULES backends/x11"
|
|
|
|
MODULE_DIRS="$MODULE_DIRS backends/x11"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "support for $_backend backend not implemented in configure script yet"
|
|
|
|
exit 1
|
|
|
|
;;
|
2003-07-06 02:40:02 +00:00
|
|
|
esac
|
|
|
|
|
2003-07-06 06:21:17 +00:00
|
|
|
echo
|
2003-05-20 10:15:38 +00:00
|
|
|
echo "Creating config.h"
|
|
|
|
cat > config.h << EOF
|
|
|
|
/* This file is automatically generated by configure */
|
|
|
|
/* DO NOT EDIT MANUALLY */
|
|
|
|
|
|
|
|
#ifndef CONFIG_H
|
|
|
|
#define CONFIG_H
|
|
|
|
|
2004-04-08 22:46:46 +00:00
|
|
|
$_def_endianness
|
2003-05-20 10:15:38 +00:00
|
|
|
$_def_align
|
2004-10-21 22:37:37 +00:00
|
|
|
$_def_x86
|
2003-05-20 10:15:38 +00:00
|
|
|
|
2004-01-22 04:31:31 +00:00
|
|
|
$_def_linupy
|
|
|
|
|
2003-05-20 10:15:38 +00:00
|
|
|
/* Data types */
|
|
|
|
typedef unsigned $type_1_byte byte;
|
|
|
|
typedef unsigned int uint;
|
|
|
|
typedef unsigned $type_1_byte uint8;
|
|
|
|
typedef unsigned $type_2_byte uint16;
|
|
|
|
typedef unsigned $type_4_byte uint32;
|
|
|
|
typedef signed $type_1_byte int8;
|
|
|
|
typedef signed $type_2_byte int16;
|
|
|
|
typedef signed $type_4_byte int32;
|
|
|
|
|
|
|
|
/* Libs */
|
|
|
|
$_def_vorbis
|
2005-06-30 09:14:36 +00:00
|
|
|
$_def_tremor
|
2004-02-22 14:11:16 +00:00
|
|
|
$_def_flac
|
2003-05-20 10:15:38 +00:00
|
|
|
$_def_mad
|
|
|
|
$_def_alsa
|
2003-12-10 00:15:20 +00:00
|
|
|
$_def_zlib
|
2004-01-12 11:11:19 +00:00
|
|
|
$_def_mpeg2
|
2005-04-10 14:33:44 +00:00
|
|
|
$_def_fluidsynth
|
2004-11-06 01:41:32 +00:00
|
|
|
$_def_mt32emu
|
2003-05-20 10:15:38 +00:00
|
|
|
|
2004-11-06 01:41:32 +00:00
|
|
|
/* Whether we should use i386 assembly routines */
|
2004-05-21 02:08:48 +00:00
|
|
|
$_def_nasm
|
|
|
|
|
2005-02-06 17:21:31 +00:00
|
|
|
/* Plugin settings */
|
|
|
|
$_def_plugin
|
|
|
|
|
2003-05-20 10:15:38 +00:00
|
|
|
#endif /* CONFIG_H */
|
|
|
|
EOF
|
|
|
|
|
2003-05-18 09:54:28 +00:00
|
|
|
echo "Creating config.mak"
|
|
|
|
cat > config.mak << EOF
|
|
|
|
# -------- Generated by configure -----------
|
|
|
|
|
2003-05-20 10:24:24 +00:00
|
|
|
CXX := $CXX
|
2005-04-14 06:59:46 +00:00
|
|
|
CXXFLAGS := $CXXFLAGS
|
2003-12-05 23:14:01 +00:00
|
|
|
LIBS += $LIBS
|
2003-05-20 10:24:24 +00:00
|
|
|
RANLIB := $_ranlib
|
2004-04-16 08:30:57 +00:00
|
|
|
INSTALL := $_install
|
2004-07-27 12:16:03 +00:00
|
|
|
AR := $_ar
|
|
|
|
MKDIR := $_mkdir
|
|
|
|
ECHO := $_echo
|
|
|
|
CAT := $_cat
|
|
|
|
RM := $_rm
|
|
|
|
RM_REC := $_rm_rec
|
|
|
|
ZIP := $_zip
|
|
|
|
CP := $_cp
|
|
|
|
WIN32PATH=$_win32path
|
|
|
|
|
2003-05-26 05:18:40 +00:00
|
|
|
BACKEND := $_backend
|
2003-07-06 02:40:02 +00:00
|
|
|
MODULES += $MODULES
|
2003-09-17 21:53:13 +00:00
|
|
|
MODULE_DIRS += $MODULE_DIRS
|
2004-04-08 22:54:22 +00:00
|
|
|
EXEEXT := $EXEEXT
|
2004-05-21 02:08:48 +00:00
|
|
|
NASM := $NASM
|
|
|
|
NASMFLAGS := $NASMFLAGS
|
2003-08-02 09:21:34 +00:00
|
|
|
|
2004-04-16 08:30:57 +00:00
|
|
|
PREFIX := $_prefix
|
|
|
|
BINDIR := $_bindir
|
|
|
|
MANDIR := $_mandir
|
|
|
|
|
2004-02-15 01:21:02 +00:00
|
|
|
$_mak_plugins
|
2003-08-02 09:21:34 +00:00
|
|
|
$_make_def_HAVE_GCC3
|
2004-05-21 02:08:48 +00:00
|
|
|
$_make_def_HAVE_NASM
|
2003-08-23 23:33:05 +00:00
|
|
|
$_mak_scumm
|
2005-05-14 22:56:41 +00:00
|
|
|
$_mak_scumm_7_8
|
2005-05-14 14:06:37 +00:00
|
|
|
$_mak_he
|
2003-08-23 23:33:05 +00:00
|
|
|
$_mak_simon
|
|
|
|
$_mak_sky
|
2004-01-22 04:31:31 +00:00
|
|
|
$_mak_sword1
|
|
|
|
$_mak_sword2
|
2003-10-06 08:10:57 +00:00
|
|
|
$_mak_queen
|
2004-04-09 12:36:06 +00:00
|
|
|
$_mak_kyra
|
2004-03-14 23:37:11 +00:00
|
|
|
$_mak_saga
|
2005-04-05 15:07:40 +00:00
|
|
|
$_mak_gob
|
2004-11-06 01:41:32 +00:00
|
|
|
$_mak_mt32emu
|
2003-08-02 09:21:34 +00:00
|
|
|
|
2005-05-14 22:56:41 +00:00
|
|
|
$_mak_hq_scalers
|
|
|
|
|
2003-07-06 02:40:02 +00:00
|
|
|
INCLUDES += $INCLUDES
|
|
|
|
OBJS += $OBJS
|
|
|
|
DEFINES += $DEFINES
|
2003-07-06 05:50:49 +00:00
|
|
|
LDFLAGS += $LDFLAGS
|
2003-05-18 09:54:28 +00:00
|
|
|
EOF
|
2004-02-21 15:55:26 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Create a custom Makefile when building outside the source tree
|
|
|
|
# TODO: Add a better check than just looking for 'Makefile'
|
|
|
|
#
|
|
|
|
if test ! -f Makefile ; then
|
|
|
|
echo "Creating Makefile"
|
|
|
|
|
|
|
|
cat > Makefile << EOF
|
|
|
|
# -------- Generated by configure -----------
|
|
|
|
srcdir = $_srcdir
|
|
|
|
vpath %.cpp \$(srcdir)
|
|
|
|
vpath %.h \$(srcdir)
|
|
|
|
include \$(srcdir)/Makefile
|
|
|
|
EOF
|
|
|
|
|
|
|
|
fi
|