2002-08-24 14:18:40 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2008-05-14 11:58:25 +00:00
|
|
|
# configure -- custom configure script for ScummVM.
|
2002-08-24 14:18:40 +00:00
|
|
|
#
|
2008-01-13 13:24:47 +00:00
|
|
|
# ScummVM is the legal property of its developers, whose names
|
|
|
|
# are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
# file distributed with this source distribution.
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
#
|
2010-02-27 17:02:58 +00:00
|
|
|
# $URL$
|
2008-01-13 13:24:47 +00:00
|
|
|
# $Id$
|
2002-08-24 14:18:40 +00:00
|
|
|
|
2007-11-06 17:23:33 +00:00
|
|
|
# Save the current environment variables for next runs
|
|
|
|
SAVED_CONFIGFLAGS=$@
|
|
|
|
SAVED_LDFLAGS=$LDFLAGS
|
|
|
|
SAVED_CXX=$CXX
|
|
|
|
SAVED_CXXFLAGS=$CXXFLAGS
|
|
|
|
SAVED_CPPFLAGS=$CPPFLAGS
|
2009-08-22 16:30:20 +00:00
|
|
|
SAVED_ASFLAGS=$ASFLAGS
|
2009-09-11 18:13:27 +00:00
|
|
|
SAVED_WINDRESFLAGS=$WINDRESFLAGS
|
2002-08-24 15:24:38 +00:00
|
|
|
|
2009-03-22 11:24:23 +00:00
|
|
|
# Use environment vars if set
|
2003-08-09 23:52:05 +00:00
|
|
|
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
|
2007-11-01 21:03:16 +00:00
|
|
|
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
|
|
|
|
PATH="$ac_TEMP_PATH"
|
|
|
|
export PATH
|
|
|
|
unset ac_TEMP_PATH
|
2005-10-11 11:27:18 +00:00
|
|
|
fi
|
|
|
|
|
2009-08-31 01:24:04 +00:00
|
|
|
set_var() {
|
|
|
|
eval ${1}='${2}'
|
|
|
|
}
|
|
|
|
|
|
|
|
get_var() {
|
|
|
|
eval echo \$${1}
|
|
|
|
}
|
2005-10-11 11:27:18 +00:00
|
|
|
|
2007-11-04 06:55:45 +00:00
|
|
|
# Add an engine: id name build subengines
|
|
|
|
add_engine() {
|
|
|
|
_engines="${_engines} ${1}"
|
2009-08-31 01:24:04 +00:00
|
|
|
set_var _engine_${1}_name "${2}"
|
|
|
|
set_var _engine_${1}_build "${3}"
|
|
|
|
set_var _engine_${1}_subengines "${4}"
|
2007-11-04 06:55:45 +00:00
|
|
|
for sub in ${4}; do
|
2009-08-31 01:24:04 +00:00
|
|
|
set_var _engine_${sub}_sub "yes"
|
2007-11-04 06:55:45 +00:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
add_engine scumm "SCUMM" yes "scumm_7_8 he"
|
|
|
|
add_engine scumm_7_8 "v7 & v8 games" yes
|
2007-12-28 06:33:20 +00:00
|
|
|
add_engine he "HE71+ games" yes
|
2007-11-04 06:55:45 +00:00
|
|
|
add_engine agi "AGI" yes
|
2009-08-12 02:24:03 +00:00
|
|
|
add_engine agos "AGOS" yes "agos2"
|
2009-08-11 14:42:44 +00:00
|
|
|
add_engine agos2 "AGOS 2 games" yes
|
2007-11-04 06:55:45 +00:00
|
|
|
add_engine cine "Cinematique evo 1" yes
|
2009-07-09 03:07:30 +00:00
|
|
|
add_engine cruise "Cinematique evo 2" yes
|
2009-11-28 01:03:26 +00:00
|
|
|
add_engine draci "Dragon History" yes
|
2008-05-02 11:22:40 +00:00
|
|
|
add_engine drascula "Drascula: The Vampire Strikes Back" yes
|
2007-11-04 06:55:45 +00:00
|
|
|
add_engine gob "Gobli*ns" yes
|
2009-08-31 01:52:16 +00:00
|
|
|
add_engine groovie "Groovie" yes "groovie2"
|
|
|
|
add_engine groovie2 "Groovie 2 games" no
|
2010-08-17 09:28:20 +00:00
|
|
|
add_engine hugo "Hugo Trilogy" no
|
2009-03-04 00:45:34 +00:00
|
|
|
add_engine kyra "Legend of Kyrandia" yes "lol"
|
|
|
|
add_engine lol "Lands of Lore" no
|
2010-10-18 19:18:06 +00:00
|
|
|
add_engine lastexpress "The Last Express" no
|
2007-11-04 06:55:45 +00:00
|
|
|
add_engine lure "Lure of the Temptress" yes
|
2008-04-20 14:58:28 +00:00
|
|
|
add_engine m4 "M4/MADS" no
|
2009-03-07 20:33:29 +00:00
|
|
|
add_engine made "MADE" yes
|
2009-12-29 23:20:23 +00:00
|
|
|
add_engine mohawk "Mohawk" no
|
2007-11-04 06:55:45 +00:00
|
|
|
add_engine parallaction "Parallaction" yes
|
|
|
|
add_engine queen "Flight of the Amazon Queen" yes
|
2009-01-02 17:08:04 +00:00
|
|
|
add_engine saga "SAGA" yes "ihnm saga2"
|
2009-01-02 18:01:19 +00:00
|
|
|
add_engine ihnm "IHNM" yes
|
2009-01-02 20:42:36 +00:00
|
|
|
add_engine saga2 "SAGA 2 games" no
|
2009-07-24 20:21:49 +00:00
|
|
|
add_engine sci "SCI" yes "sci32"
|
2009-03-30 08:09:02 +00:00
|
|
|
add_engine sci32 "SCI32 games" no
|
2007-11-04 06:55:45 +00:00
|
|
|
add_engine sky "Beneath a Steel Sky" yes
|
2010-01-03 21:20:05 +00:00
|
|
|
add_engine sword1 "Broken Sword" yes
|
|
|
|
add_engine sword2 "Broken Sword II" yes
|
2010-10-12 21:12:50 +00:00
|
|
|
add_engine sword25 "Broken Sword 2.5" no
|
2009-12-15 09:03:04 +00:00
|
|
|
add_engine teenagent "Teen Agent" yes
|
2010-09-12 08:08:37 +00:00
|
|
|
add_engine testbed "TestBed: the Testing framework" no
|
2009-07-10 00:49:13 +00:00
|
|
|
add_engine tinsel "Tinsel" yes
|
2011-02-03 01:47:41 +00:00
|
|
|
add_engine toon "Toonstruck" yes
|
2007-11-04 06:55:45 +00:00
|
|
|
add_engine touche "Touche: The Adventures of the Fifth Musketeer" yes
|
2008-11-30 11:36:45 +00:00
|
|
|
add_engine tucker "Bud Tucker in Double Trouble" yes
|
2007-10-31 19:38:09 +00:00
|
|
|
|
2009-03-22 11:24:23 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Default settings
|
|
|
|
#
|
|
|
|
# Default lib behaviour yes/no/auto
|
|
|
|
_vorbis=auto
|
|
|
|
_tremor=auto
|
|
|
|
_flac=auto
|
|
|
|
_mad=auto
|
|
|
|
_alsa=auto
|
2010-07-20 08:25:13 +00:00
|
|
|
_seq_midi=auto
|
2010-10-13 00:48:40 +00:00
|
|
|
_timidity=auto
|
2009-03-22 11:24:23 +00:00
|
|
|
_zlib=auto
|
|
|
|
_mpeg2=no
|
2010-10-12 21:12:50 +00:00
|
|
|
_png=auto
|
|
|
|
_theoradec=auto
|
2009-03-22 11:24:23 +00:00
|
|
|
_fluidsynth=auto
|
2009-08-21 17:19:06 +00:00
|
|
|
_16bit=auto
|
2010-11-28 17:42:05 +00:00
|
|
|
_opengl=auto
|
2010-12-02 12:44:36 +00:00
|
|
|
_opengles=auto
|
2009-08-21 09:43:30 +00:00
|
|
|
_readline=auto
|
2009-03-22 11:24:23 +00:00
|
|
|
# Default option behaviour yes/no
|
2009-10-13 18:50:46 +00:00
|
|
|
_debug_build=auto
|
|
|
|
_release_build=auto
|
2009-07-25 23:36:24 +00:00
|
|
|
_text_console=no
|
|
|
|
_mt32emu=yes
|
2009-03-22 11:24:23 +00:00
|
|
|
_build_scalers=yes
|
2010-05-09 11:00:17 +00:00
|
|
|
_build_hq_scalers=yes
|
2009-08-29 19:48:01 +00:00
|
|
|
_indeo3=auto
|
2010-04-26 12:11:19 +00:00
|
|
|
_enable_prof=no
|
2010-07-20 08:25:13 +00:00
|
|
|
_unix=no
|
2010-08-17 13:51:36 +00:00
|
|
|
_global_constructors=no
|
2010-09-15 07:43:16 +00:00
|
|
|
_elf_loader=no
|
2009-03-22 11:24:23 +00:00
|
|
|
# Default vkeybd/keymapper options
|
|
|
|
_vkeybd=no
|
|
|
|
_keymapper=no
|
2010-06-15 10:44:51 +00:00
|
|
|
# GUI translation options
|
|
|
|
_translation=yes
|
2009-03-22 11:24:23 +00:00
|
|
|
# Default platform settings
|
|
|
|
_backend=sdl
|
2007-06-24 20:35:02 +00:00
|
|
|
_endian=unknown
|
2003-05-20 09:43:33 +00:00
|
|
|
_need_memalign=no
|
2007-06-24 20:35:02 +00:00
|
|
|
_have_x86=no
|
2009-08-22 11:03:00 +00:00
|
|
|
_verbose_build=no
|
2008-05-06 03:11:01 +00:00
|
|
|
_dynamic_modules=no
|
2008-05-06 03:00:26 +00:00
|
|
|
_plugins_default=static
|
2004-05-21 02:08:48 +00:00
|
|
|
_nasm=auto
|
2009-03-22 11:24:23 +00:00
|
|
|
# Default commands
|
2003-05-18 09:54:28 +00:00
|
|
|
_ranlib=ranlib
|
2009-03-19 20:49:22 +00:00
|
|
|
_strip=strip
|
2004-07-27 12:16:03 +00:00
|
|
|
_ar="ar cru"
|
2009-08-22 16:30:20 +00:00
|
|
|
_as="as"
|
2007-03-18 22:56:56 +00:00
|
|
|
_windres=windres
|
2004-07-27 12:16:03 +00:00
|
|
|
_win32path="C:/scummvm"
|
2008-04-20 19:48:04 +00:00
|
|
|
_aos4path="Games:ScummVM"
|
2009-03-19 20:49:22 +00:00
|
|
|
_staticlibpath=/sw
|
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=""
|
2010-05-09 20:42:18 +00:00
|
|
|
|
|
|
|
# Directories for installing ScummVM.
|
|
|
|
# This list is closely based on what GNU autoconf does,
|
|
|
|
# although the default value for datadir differs.
|
|
|
|
# Like GNU autoconf, we distinguish datadir and datarootdir
|
|
|
|
# to make it possible to change e.g. the location of the
|
|
|
|
# man pages independently of that of the engine data files,
|
|
|
|
# which are placed inside $datadir/scummvm
|
|
|
|
prefix=NONE
|
2010-10-11 19:50:17 +00:00
|
|
|
exec_prefix=NONE
|
2010-05-09 20:42:18 +00:00
|
|
|
bindir='${exec_prefix}/bin'
|
2010-10-11 19:50:17 +00:00
|
|
|
libdir='${exec_prefix}/lib'
|
2010-05-09 20:42:18 +00:00
|
|
|
datarootdir='${prefix}/share'
|
|
|
|
datadir='${datarootdir}/scummvm'
|
2010-10-11 19:50:17 +00:00
|
|
|
mandir='${datarootdir}/man'
|
2010-05-09 20:42:18 +00:00
|
|
|
docdir='${datarootdir}/doc/scummvm'
|
|
|
|
#localedir='${datarootdir}/locale'
|
|
|
|
|
2009-03-22 11:24:23 +00:00
|
|
|
# For cross compiling
|
|
|
|
_host=""
|
|
|
|
_host_cpu=""
|
|
|
|
_host_vendor=""
|
|
|
|
_host_os=""
|
|
|
|
_host_alias=""
|
2004-04-05 22:07:09 +00:00
|
|
|
|
2004-04-06 20:04:05 +00:00
|
|
|
_srcdir=`dirname $0`
|
2009-09-27 14:59:40 +00:00
|
|
|
_port_mk="ports.mk"
|
2004-04-06 20:04:05 +00:00
|
|
|
|
2010-09-09 14:01:48 +00:00
|
|
|
# Use temp files in the build directory
|
|
|
|
TMPO=./scummvm-conf
|
2004-09-19 09:57:24 +00:00
|
|
|
TMPC=${TMPO}.cpp
|
2008-07-15 10:47:24 +00:00
|
|
|
TMPLOG=config.log
|
2004-09-19 09:57:24 +00:00
|
|
|
|
2010-05-08 20:22:50 +00:00
|
|
|
cc_check_no_clean() {
|
2003-12-10 00:15:20 +00:00
|
|
|
echo >> "$TMPLOG"
|
|
|
|
cat "$TMPC" >> "$TMPLOG"
|
|
|
|
echo >> "$TMPLOG"
|
2010-05-08 20:22:50 +00:00
|
|
|
echo "$CXX $LDFLAGS $CXXFLAGS $TMPC -o $TMPO$HOSTEXEEXT $@" >> "$TMPLOG"
|
2009-03-23 17:40:46 +00:00
|
|
|
rm -f "$TMPO$HOSTEXEEXT"
|
2010-04-09 14:23:30 +00:00
|
|
|
( $CXX $LDFLAGS $CXXFLAGS "$TMPC" -o "$TMPO$HOSTEXEEXT" "$@" ) >> "$TMPLOG" 2>&1
|
2003-12-10 00:15:20 +00:00
|
|
|
TMP="$?"
|
2010-05-08 20:22:50 +00:00
|
|
|
echo "return code: $TMP" >> "$TMPLOG"
|
2003-12-10 00:15:20 +00:00
|
|
|
echo >> "$TMPLOG"
|
|
|
|
return "$TMP"
|
2003-05-18 11:23:12 +00:00
|
|
|
}
|
2003-05-18 05:43:52 +00:00
|
|
|
|
2010-05-08 20:22:50 +00:00
|
|
|
cc_check_clean() {
|
|
|
|
rm -rf $TMPC $TMPO $TMPO.o $TMPO.dSYM $TMPO$HOSTEXEEXT "$@"
|
|
|
|
}
|
|
|
|
|
|
|
|
cc_check() {
|
|
|
|
cc_check_no_clean "$@"
|
2010-05-08 20:52:17 +00:00
|
|
|
TMP="$?"
|
2010-05-08 20:22:50 +00:00
|
|
|
cc_check_clean
|
2010-05-08 20:52:17 +00:00
|
|
|
return "$TMP"
|
2010-05-08 20:22:50 +00:00
|
|
|
}
|
|
|
|
|
2010-04-09 12:23:43 +00:00
|
|
|
cc_check_define() {
|
|
|
|
cat > $TMPC << EOF
|
|
|
|
int main(void) {
|
2010-04-09 12:46:13 +00:00
|
|
|
#ifndef $1
|
|
|
|
syntax error
|
2010-04-09 12:23:43 +00:00
|
|
|
#endif
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EOF
|
2010-04-09 15:47:49 +00:00
|
|
|
cc_check -c
|
2010-04-09 12:23:43 +00:00
|
|
|
return $?
|
|
|
|
}
|
|
|
|
|
|
|
|
gcc_get_define() {
|
2010-04-17 15:03:16 +00:00
|
|
|
# Note: The AmigaOS compiler doesn't like the "-" input file, so a real file
|
|
|
|
# is used instead
|
2010-05-08 20:22:50 +00:00
|
|
|
rm -f $TMPC
|
2010-04-17 15:03:16 +00:00
|
|
|
touch $TMPC
|
|
|
|
$CXX -dM -E $TMPC | fgrep "$1" | head -n1 | cut -d ' ' -f 3-
|
|
|
|
rm -f $TMPC
|
2010-04-09 12:23:43 +00:00
|
|
|
}
|
|
|
|
|
2009-03-22 11:24:23 +00:00
|
|
|
#
|
|
|
|
# Function to provide echo -n for bourne shells that don't have it
|
|
|
|
#
|
|
|
|
echo_n() {
|
|
|
|
printf "$@"
|
|
|
|
}
|
|
|
|
|
2009-03-19 21:42:50 +00:00
|
|
|
echocheck() {
|
2004-03-04 22:44:10 +00:00
|
|
|
echo_n "Checking for $@... "
|
2003-05-18 05:43:52 +00:00
|
|
|
}
|
|
|
|
|
2007-06-24 20:35:02 +00:00
|
|
|
# Add a line of data to config.mk.
|
|
|
|
add_line_to_config_mk() {
|
|
|
|
_config_mk_data="$_config_mk_data"'
|
|
|
|
'"$1"
|
|
|
|
}
|
|
|
|
|
2008-06-10 23:13:28 +00:00
|
|
|
# Add a line of data to config.h.
|
2007-06-24 20:35:02 +00:00
|
|
|
add_line_to_config_h() {
|
|
|
|
_config_h_data="$_config_h_data"'
|
|
|
|
'"$1"
|
|
|
|
}
|
|
|
|
|
2010-07-20 08:24:48 +00:00
|
|
|
# Conditionally add a line of data to config.h. Takes two parameters:
|
|
|
|
# The first one can be set to 'no' to "comment out" the line, i.e.
|
|
|
|
# make it ineffective, use 'yes' otherwise.
|
|
|
|
# The second param is the line to insert.
|
2007-06-24 20:35:02 +00:00
|
|
|
add_to_config_h_if_yes() {
|
|
|
|
if test "$1" = yes ; then
|
|
|
|
add_line_to_config_h "$2"
|
|
|
|
else
|
|
|
|
add_line_to_config_h "/* $2 */"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# Conditionally add a line of data to config.mk. Takes two parameters:
|
|
|
|
# The first one can be set to 'no' to "comment out" the line, i.e.
|
|
|
|
# make it ineffective, use 'yes' otherwise.
|
|
|
|
# The second param is the line to insert.
|
|
|
|
add_to_config_mk_if_yes() {
|
|
|
|
if test "$1" = yes ; then
|
|
|
|
add_line_to_config_mk "$2"
|
|
|
|
else
|
|
|
|
add_line_to_config_mk "# $2"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2010-07-20 08:24:48 +00:00
|
|
|
# Conditionally add a '#define' line to config.h. Takes two parameters:
|
|
|
|
# The first one can be set to 'yes' or 'no'. If 'yes' is used, then
|
|
|
|
# the line "#define $2" is added to config.h, otherwise "#undef $2".
|
|
|
|
define_in_config_h_if_yes() {
|
|
|
|
if test "$1" = yes ; then
|
|
|
|
add_line_to_config_h "#define $2"
|
2006-08-04 22:46:06 +00:00
|
|
|
else
|
2010-07-20 08:24:48 +00:00
|
|
|
add_line_to_config_h "#undef $2"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# Conditionally add definitions to config.h and config.mk. Takes two parameters:
|
|
|
|
# The first one can be set to 'yes' or 'no'. If 'yes' is used, then
|
|
|
|
# the line "#define $2" is added to config.h and "$2 = 1" to config.mk.
|
|
|
|
# Otherwise "#undef $2" is added to config.h and "# $2 = 1" to config.mk
|
|
|
|
define_in_config_if_yes() {
|
|
|
|
if test "$1" = yes ; then
|
|
|
|
add_line_to_config_h "#define $2"
|
|
|
|
add_line_to_config_mk "$2 = 1"
|
|
|
|
else
|
|
|
|
add_line_to_config_h "#undef $2"
|
|
|
|
add_line_to_config_mk "# $2 = 1"
|
2006-08-04 22:46:06 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2003-07-06 06:21:17 +00:00
|
|
|
#
|
|
|
|
# Determine sdl-config
|
|
|
|
#
|
2009-11-24 12:34:31 +00:00
|
|
|
# TODO: small bit of code to test sdl usability
|
2009-03-19 21:42:50 +00:00
|
|
|
find_sdlconfig() {
|
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=
|
2008-01-27 19:47:41 +00:00
|
|
|
|
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
|
2006-02-20 15:16:26 +00:00
|
|
|
#reset separator to parse sdlconfigs
|
|
|
|
IFS=":"
|
2004-12-16 22:15:32 +00:00
|
|
|
for sdlconfig in $sdlconfigs; do
|
2008-03-23 11:46:55 +00:00
|
|
|
if test -f "$path_dir/$sdlconfig" ; then
|
2004-12-16 22:15:32 +00:00
|
|
|
_sdlconfig="$path_dir/$sdlconfig"
|
|
|
|
echo $_sdlconfig
|
2008-02-07 15:15:10 +00:00
|
|
|
# Save the prefix
|
|
|
|
_sdlpath=$path_dir
|
|
|
|
if test `basename $path_dir` = bin ; then
|
|
|
|
_sdlpath=`dirname $path_dir`
|
|
|
|
fi
|
2006-04-27 19:55:09 +00:00
|
|
|
# break at first sdl-config found in path
|
|
|
|
break 2
|
2004-12-16 22:15:32 +00:00
|
|
|
fi
|
|
|
|
done
|
2003-12-10 00:15:20 +00:00
|
|
|
done
|
2008-01-27 19:47:41 +00:00
|
|
|
|
2003-12-10 00:15:20 +00:00
|
|
|
IFS="$ac_save_ifs"
|
2008-01-27 19:47:41 +00:00
|
|
|
|
2003-12-10 00:15:20 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2009-03-23 17:40:46 +00:00
|
|
|
#
|
|
|
|
# Determine extension used for executables
|
|
|
|
#
|
|
|
|
get_system_exe_extension() {
|
|
|
|
case $1 in
|
|
|
|
arm-riscos)
|
|
|
|
_exeext=",ff8"
|
2010-10-12 02:18:11 +00:00
|
|
|
;;
|
2010-08-02 17:11:25 +00:00
|
|
|
dreamcast | ds | gamecube | n64 | ps2 | psp | wii)
|
2010-02-02 11:46:35 +00:00
|
|
|
_exeext=".elf"
|
2010-01-25 01:39:44 +00:00
|
|
|
;;
|
2010-09-26 20:23:58 +00:00
|
|
|
gph-linux)
|
|
|
|
_exeext=".gph"
|
2010-02-02 11:46:35 +00:00
|
|
|
;;
|
|
|
|
mingw* | *os2-emx | wince)
|
|
|
|
_exeext=".exe"
|
2009-03-23 17:40:46 +00:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
_exeext=""
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
2009-03-22 11:24:23 +00:00
|
|
|
|
2004-03-04 22:44:10 +00:00
|
|
|
#
|
2009-03-22 11:24:23 +00:00
|
|
|
# Generic options functions
|
2004-03-04 22:44:10 +00:00
|
|
|
#
|
2009-03-22 11:24:23 +00:00
|
|
|
|
|
|
|
# Show the configure help line for an option
|
|
|
|
option_help() {
|
2009-07-02 21:37:13 +00:00
|
|
|
tmpopt=`echo $1 | sed 's/_/-/g'`
|
2009-03-22 11:24:23 +00:00
|
|
|
option=`echo "--${tmpopt} " | sed "s/\(.\{23\}\).*/\1/"`
|
|
|
|
echo " ${option} ${2}"
|
|
|
|
}
|
|
|
|
|
|
|
|
# Show an error about an unknown option
|
|
|
|
option_error() {
|
|
|
|
echo "error: unrecognised option: $ac_option
|
|
|
|
Try \`$0 --help' for more information." >&2
|
|
|
|
exit 1
|
2004-03-04 22:44:10 +00:00
|
|
|
}
|
|
|
|
|
2009-03-22 11:24:23 +00:00
|
|
|
|
2002-08-24 16:05:53 +00:00
|
|
|
#
|
2009-03-22 11:24:23 +00:00
|
|
|
# Engine handling functions
|
2002-08-24 16:05:53 +00:00
|
|
|
#
|
2004-05-21 02:08:48 +00:00
|
|
|
|
2007-10-31 19:38:09 +00:00
|
|
|
# Get the name of the engine
|
|
|
|
get_engine_name() {
|
2009-08-31 01:24:04 +00:00
|
|
|
get_var _engine_$1_name
|
2007-10-31 19:38:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Will this engine be built?
|
|
|
|
get_engine_build() {
|
2009-08-31 01:24:04 +00:00
|
|
|
get_var _engine_$1_build
|
2007-10-31 19:38:09 +00:00
|
|
|
}
|
|
|
|
|
2007-11-04 06:55:45 +00:00
|
|
|
# Get the subengines
|
|
|
|
get_engine_subengines() {
|
2009-08-31 01:24:04 +00:00
|
|
|
get_var _engine_$1_subengines
|
2007-11-04 06:55:45 +00:00
|
|
|
}
|
|
|
|
|
2007-10-31 19:38:09 +00:00
|
|
|
# Ask if this is a subengine
|
|
|
|
get_engine_sub() {
|
2009-08-31 01:24:04 +00:00
|
|
|
sub=`get_var _engine_$1_sub`
|
2007-11-04 06:55:45 +00:00
|
|
|
if test -z "$sub" ; then
|
2007-10-31 19:38:09 +00:00
|
|
|
sub=no
|
|
|
|
fi
|
|
|
|
echo $sub
|
|
|
|
}
|
|
|
|
|
2009-03-13 16:31:53 +00:00
|
|
|
# Enable *all* engines
|
|
|
|
engine_enable_all() {
|
|
|
|
for engine in $_engines; do
|
2009-08-31 01:24:04 +00:00
|
|
|
set_var _engine_${engine}_build "yes"
|
2009-03-13 16:31:53 +00:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
# Disable *all* engines
|
|
|
|
engine_disable_all() {
|
|
|
|
for engine in $_engines; do
|
2009-08-31 01:24:04 +00:00
|
|
|
set_var _engine_${engine}_build "no"
|
2009-03-13 16:31:53 +00:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2007-10-31 19:38:09 +00:00
|
|
|
# Enable the given engine
|
|
|
|
engine_enable() {
|
2008-05-06 03:00:26 +00:00
|
|
|
# Get the parameter
|
|
|
|
if ( echo $1 | grep '=' ) 2> /dev/null > /dev/null ; then
|
|
|
|
eng=`echo $1 | cut -d '=' -f 1`
|
|
|
|
opt=`echo $1 | cut -d '=' -f 2`
|
|
|
|
else
|
|
|
|
eng=$1
|
|
|
|
opt=yes
|
|
|
|
fi
|
|
|
|
engine=`echo $eng | sed 's/-/_/g'`
|
2008-05-07 01:15:46 +00:00
|
|
|
|
|
|
|
# Filter the parameter for the subengines
|
|
|
|
if test "`get_engine_sub ${engine}`" != "no" -a "$opt" != "yes" ; then
|
|
|
|
option_error
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2008-05-06 04:47:58 +00:00
|
|
|
if test "$opt" = "static" -o "$opt" = "dynamic" -o "$opt" = "yes" ; then
|
2008-06-09 02:36:34 +00:00
|
|
|
if test "`get_engine_name ${engine}`" != "" ; then
|
2009-08-31 01:24:04 +00:00
|
|
|
set_var _engine_${engine}_build "$opt"
|
2008-05-06 03:00:26 +00:00
|
|
|
else
|
|
|
|
option_error
|
|
|
|
fi
|
2007-10-31 19:38:09 +00:00
|
|
|
else
|
2008-05-06 03:00:26 +00:00
|
|
|
option_error
|
2007-10-31 19:38:09 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# Disable the given engine
|
|
|
|
engine_disable() {
|
2008-05-07 01:15:46 +00:00
|
|
|
# Filter malformed options
|
|
|
|
if ( echo $1 | grep '=' ) 2> /dev/null > /dev/null ; then
|
|
|
|
option_error
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2007-10-31 19:38:09 +00:00
|
|
|
engine=`echo $1 | sed 's/-/_/g'`
|
2008-06-09 02:36:34 +00:00
|
|
|
if test "`get_engine_name ${engine}`" != "" ; then
|
2009-08-31 01:24:04 +00:00
|
|
|
set_var _engine_${engine}_build "no"
|
2007-10-31 19:38:09 +00:00
|
|
|
else
|
2008-05-06 03:00:26 +00:00
|
|
|
option_error
|
2007-10-31 19:38:09 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# Show the configure help line for a given engine
|
|
|
|
show_engine_help() {
|
|
|
|
if test `get_engine_build $1` = yes ; then
|
|
|
|
option="disable"
|
|
|
|
do="don't "
|
|
|
|
else
|
|
|
|
option="enable"
|
|
|
|
do=""
|
|
|
|
fi
|
|
|
|
name=`get_engine_name $1`
|
2007-11-04 06:55:45 +00:00
|
|
|
option_help ${option}-${1} "${do}build the ${name} engine"
|
|
|
|
for sub in `get_engine_subengines $1`; do
|
|
|
|
show_subengine_help $sub $1
|
|
|
|
done
|
2007-10-31 19:38:09 +00:00
|
|
|
}
|
|
|
|
|
2007-11-04 06:55:45 +00:00
|
|
|
# Show the configure help line for a given subengine
|
|
|
|
show_subengine_help() {
|
|
|
|
if test `get_engine_build $1` = yes ; then
|
|
|
|
option="disable"
|
|
|
|
do="exclude"
|
2007-10-31 19:38:09 +00:00
|
|
|
else
|
2007-11-04 06:55:45 +00:00
|
|
|
option="enable"
|
|
|
|
do="include"
|
2007-10-31 19:38:09 +00:00
|
|
|
fi
|
2007-11-04 06:55:45 +00:00
|
|
|
name=`get_engine_name $1`
|
|
|
|
parent=`get_engine_name $2`
|
|
|
|
option_help ${option}-${1} "${do} the ${name} in ${parent} engine"
|
2007-10-31 19:38:09 +00:00
|
|
|
}
|
|
|
|
|
2007-11-04 06:55:45 +00:00
|
|
|
# Prepare the strings about the engines to build
|
|
|
|
prepare_engine_build_strings() {
|
2008-05-06 03:00:26 +00:00
|
|
|
string=`get_engine_build_string $1 static`
|
|
|
|
if test -n "$string" ; then
|
|
|
|
_engines_built_static="${_engines_built_static}#$string@"
|
2007-11-04 06:55:45 +00:00
|
|
|
fi
|
|
|
|
|
2008-05-06 03:00:26 +00:00
|
|
|
string=`get_engine_build_string $1 dynamic`
|
|
|
|
if test -n "$string" ; then
|
|
|
|
_engines_built_dynamic="${_engines_built_dynamic}#$string@"
|
|
|
|
fi
|
|
|
|
|
|
|
|
string=`get_engine_build_string $1 no`
|
|
|
|
if test -n "$string" ; then
|
|
|
|
_engines_skipped="${_engines_skipped}#$string@"
|
2007-11-04 06:55:45 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# Get the string about building an engine
|
|
|
|
get_engine_build_string() {
|
|
|
|
engine_string=""
|
2008-05-06 03:00:26 +00:00
|
|
|
engine_build=`get_engine_build $1`
|
2008-05-07 00:35:55 +00:00
|
|
|
show=no
|
|
|
|
|
|
|
|
# Check if the current engine should be shown for the current status
|
|
|
|
if test $engine_build = $2 ; then
|
|
|
|
show=yes
|
|
|
|
else
|
|
|
|
# Test for disabled sub-engines
|
2007-11-04 06:55:45 +00:00
|
|
|
if test $2 = no ; then
|
2008-05-07 00:35:55 +00:00
|
|
|
for subeng in `get_engine_subengines $1` ; do
|
|
|
|
if test `get_engine_build $subeng` = no ; then
|
|
|
|
engine_build=no
|
|
|
|
show=yes
|
|
|
|
fi
|
|
|
|
done
|
2007-10-31 19:38:09 +00:00
|
|
|
fi
|
2008-05-07 00:35:55 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Convert static/dynamic to yes to ease the check of subengines
|
|
|
|
if test $engine_build != no ; then
|
|
|
|
engine_build=yes
|
|
|
|
fi
|
|
|
|
|
|
|
|
# The engine should be shown, build the string
|
|
|
|
if test $show = yes ; then
|
2007-11-04 06:55:45 +00:00
|
|
|
build_string_func=get_${1}_build_string
|
|
|
|
if ( type $build_string_func | grep function ) 2> /dev/null > /dev/null ; then
|
2008-05-07 00:35:55 +00:00
|
|
|
engine_string=`$build_string_func $1 $engine_build`
|
2007-11-04 06:55:45 +00:00
|
|
|
else
|
2008-05-07 00:35:55 +00:00
|
|
|
engine_string=`get_subengines_build_string $1 $engine_build`
|
2007-11-04 06:55:45 +00:00
|
|
|
fi
|
2007-10-31 19:38:09 +00:00
|
|
|
|
2008-05-07 00:35:55 +00:00
|
|
|
engine_string="`get_engine_name $1` $engine_string"
|
2007-11-04 06:55:45 +00:00
|
|
|
fi
|
2007-10-31 19:38:09 +00:00
|
|
|
|
2007-11-04 06:55:45 +00:00
|
|
|
echo $engine_string
|
|
|
|
}
|
2007-10-31 19:38:09 +00:00
|
|
|
|
2007-11-04 06:55:45 +00:00
|
|
|
# Get the string about building subengines
|
|
|
|
get_subengines_build_string() {
|
|
|
|
all=yes
|
|
|
|
subengine_string=$3
|
|
|
|
for subeng in `get_engine_subengines $1` ; do
|
|
|
|
if test `get_engine_build $subeng` = $2 ; then
|
|
|
|
subengine_string="$subengine_string [`get_engine_name $subeng`]"
|
2007-10-31 19:38:09 +00:00
|
|
|
else
|
2007-11-04 06:55:45 +00:00
|
|
|
all=no
|
2007-10-31 19:38:09 +00:00
|
|
|
fi
|
2007-11-04 06:55:45 +00:00
|
|
|
done
|
2008-05-06 03:00:26 +00:00
|
|
|
if test $2 != no ; then
|
2007-11-04 06:55:45 +00:00
|
|
|
if test -n "$subengine_string" ; then
|
|
|
|
if test $all = yes ; then
|
|
|
|
subengine_string="[all games]"
|
|
|
|
fi
|
2007-10-31 19:38:09 +00:00
|
|
|
fi
|
2007-11-04 06:55:45 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
echo $subengine_string
|
|
|
|
}
|
2007-10-31 19:38:09 +00:00
|
|
|
|
2007-11-04 06:55:45 +00:00
|
|
|
# Engine specific build strings
|
|
|
|
get_scumm_build_string() {
|
2008-05-07 00:35:55 +00:00
|
|
|
if test `get_engine_build $1` != no ; then
|
|
|
|
if test $2 != no ; then
|
|
|
|
base="[v0-v6 games]"
|
|
|
|
fi
|
|
|
|
get_subengines_build_string $1 $2 "$base"
|
2007-10-31 19:38:09 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2009-01-02 18:01:19 +00:00
|
|
|
get_saga_build_string() {
|
|
|
|
if test `get_engine_build $1` != no ; then
|
|
|
|
if test $2 != no ; then
|
|
|
|
base="[ITE]"
|
|
|
|
fi
|
|
|
|
get_subengines_build_string $1 $2 "$base"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2002-08-24 16:05:53 +00:00
|
|
|
#
|
|
|
|
# Greet user
|
|
|
|
#
|
|
|
|
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
|
2007-11-01 21:03:16 +00:00
|
|
|
if test "$parm" = "--help" || test "$parm" = "-help" || test "$parm" = "-h" ; then
|
|
|
|
for engine in $_engines; do
|
2007-11-04 06:55:45 +00:00
|
|
|
if test `get_engine_sub $engine` = no ; then
|
|
|
|
engines_help="$engines_help`show_engine_help $engine`
|
2007-10-31 19:38:09 +00:00
|
|
|
"
|
2007-11-04 06:55:45 +00:00
|
|
|
fi
|
2007-11-01 21:03:16 +00:00
|
|
|
done
|
|
|
|
cat << EOF
|
2003-05-18 05:43:52 +00:00
|
|
|
|
|
|
|
Usage: $0 [OPTIONS]...
|
|
|
|
|
|
|
|
Configuration:
|
2010-05-09 20:42:18 +00:00
|
|
|
-h, --help display this help and exit
|
2010-10-11 23:26:26 +00:00
|
|
|
--backend=BACKEND backend to build (android, dc, dingux, ds, gp2x, gph,
|
|
|
|
iphone, linuxmoto, maemo, n64, null, openpandora, ps2,
|
|
|
|
psp, samsungtv, sdl, symbian, wii, wince) [sdl]
|
2004-01-22 04:31:31 +00:00
|
|
|
|
2004-04-16 08:30:57 +00:00
|
|
|
Installation directories:
|
2010-05-09 20:42:18 +00:00
|
|
|
--prefix=PREFIX install architecture-independent files in PREFIX
|
|
|
|
[/usr/local]
|
|
|
|
--exec-prefix=EPREFIX install architecture-dependent files in EPREFIX
|
|
|
|
[PREFIX]
|
|
|
|
|
|
|
|
By default, \`make install' will install all the files in
|
|
|
|
\`/usr/local/bin', \`/usr/local/lib' etc. You can specify
|
|
|
|
an installation prefix other than \`/usr/local' using \`--prefix',
|
|
|
|
for instance \`--prefix=\$HOME'.
|
|
|
|
|
|
|
|
For better control, use the options below.
|
|
|
|
|
|
|
|
Fine tuning of the installation directories:
|
|
|
|
--bindir=DIR user executables [EPREFIX/bin]
|
|
|
|
--libdir=DIR object code libraries [EPREFIX/lib]
|
|
|
|
--datarootdir=DIR read-only arch.-independent data root [PREFIX/share]
|
2010-09-06 18:13:39 +00:00
|
|
|
--datadir=DIR read-only architecture-independent data
|
|
|
|
[DATAROOTDIR/scummvm]
|
2010-05-09 20:42:18 +00:00
|
|
|
--mandir=DIR man documentation [DATAROOTDIR/man]
|
|
|
|
--docdir=DIR documentation root [DATAROOTDIR/doc/scummvm]
|
2004-04-16 08:30:57 +00:00
|
|
|
|
2004-01-22 04:31:31 +00:00
|
|
|
Special configuration feature:
|
2010-05-09 20:42:18 +00:00
|
|
|
--host=HOST cross-compile to target HOST (arm-linux, ...)
|
2010-10-11 23:26:26 +00:00
|
|
|
special targets: android for Android
|
2010-10-20 13:03:19 +00:00
|
|
|
caanoo for Caanoo
|
2010-10-11 23:26:26 +00:00
|
|
|
dingux for Dingux
|
|
|
|
dreamcast for Sega Dreamcast
|
|
|
|
ds for Nintendo DS
|
2010-05-09 20:42:18 +00:00
|
|
|
gamecube for Nintendo GameCube
|
2010-10-11 23:26:26 +00:00
|
|
|
gp2x for GP2X
|
|
|
|
gp2xwiz for GP2X Wiz
|
2010-05-09 20:42:18 +00:00
|
|
|
iphone for Apple iPhone
|
|
|
|
linupy for Yopy PDA
|
2010-10-11 23:26:26 +00:00
|
|
|
motoezx for MotoEZX
|
|
|
|
motomagx for MotoMAGX
|
|
|
|
n64 for Nintendo 64
|
|
|
|
openpandora for OpenPandora
|
2010-05-09 20:42:18 +00:00
|
|
|
ps2 for PlayStation 2
|
|
|
|
psp for PlayStation Portable
|
2010-10-11 23:26:26 +00:00
|
|
|
samsungtv for Samsung TV
|
2010-05-09 20:42:18 +00:00
|
|
|
wii for Nintendo Wii
|
|
|
|
wince for Windows CE
|
2003-05-18 05:43:52 +00:00
|
|
|
|
2009-08-31 01:25:04 +00:00
|
|
|
Game engines:
|
2009-03-13 16:31:53 +00:00
|
|
|
--enable-all-engines enable all engines
|
|
|
|
--disable-all-engines disable all engines
|
2007-10-31 19:38:09 +00:00
|
|
|
$engines_help
|
2009-08-31 01:25:04 +00:00
|
|
|
Optional Features:
|
|
|
|
--disable-debug disable building with debugging symbols
|
|
|
|
--enable-Werror treat warnings as errors
|
2010-09-06 18:13:39 +00:00
|
|
|
--enable-release enable building in release mode (this activates
|
|
|
|
optimizations)
|
2010-03-24 23:19:42 +00:00
|
|
|
--enable-profiling enable profiling
|
2008-05-06 03:00:26 +00:00
|
|
|
--enable-plugins enable the support for dynamic plugins
|
|
|
|
--default-dynamic make plugins dynamic by default
|
2004-11-06 01:41:32 +00:00
|
|
|
--disable-mt32emu don't enable the integrated MT-32 emulator
|
2009-08-21 10:39:02 +00:00
|
|
|
--disable-16bit don't enable 16bit color support
|
2006-01-24 22:21:23 +00:00
|
|
|
--disable-scalers exclude scalers
|
2010-05-09 11:00:17 +00:00
|
|
|
--disable-hq-scalers exclude HQ2x and HQ3x scalers
|
2010-06-15 10:44:51 +00:00
|
|
|
--disable-translation don't build support for translated messages
|
2009-07-25 23:36:24 +00:00
|
|
|
--enable-text-console use text console instead of graphical console
|
2010-09-06 18:13:39 +00:00
|
|
|
--enable-verbose-build enable regular echoing of commands during build
|
|
|
|
process
|
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)
|
2005-11-08 22:40:10 +00:00
|
|
|
--disable-tremor disable tremor support [autodetect]
|
2005-06-30 09:14:36 +00:00
|
|
|
|
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]
|
2005-11-08 22:40:10 +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)
|
2009-03-01 12:19:28 +00:00
|
|
|
--enable-mpeg2 enable mpeg2 codec for cutscenes [no]
|
2004-02-15 01:21:02 +00:00
|
|
|
|
2010-11-28 17:42:05 +00:00
|
|
|
--with-opengl-prefix=DIR Prefix where OpenGL (ES) is installed (optional)
|
|
|
|
--disable-opengl disable OpenGL (ES) support [autodetect]
|
|
|
|
|
2009-08-29 19:48:01 +00:00
|
|
|
--disable-indeo3 disable Indeo3 decoder [autodetect]
|
|
|
|
|
2010-10-12 21:12:50 +00:00
|
|
|
--with-png-prefix=DIR Prefix where libpng is installed (optional)
|
|
|
|
--disable-png disable PNG decoder [autodetect]
|
|
|
|
|
2010-10-13 13:43:13 +00:00
|
|
|
--with-theoradec-prefix=DIR Prefix where libtheoradec is installed (optional)
|
2010-10-12 21:12:50 +00:00
|
|
|
--disable-theoradec disable Theora decoder [autodetect]
|
|
|
|
|
2010-10-12 02:18:11 +00:00
|
|
|
--with-fluidsynth-prefix=DIR Prefix where libfluidsynth is
|
2010-09-06 18:13:39 +00:00
|
|
|
installed (optional)
|
2005-04-10 14:33:44 +00:00
|
|
|
--disable-fluidsynth disable fluidsynth MIDI driver [autodetect]
|
|
|
|
|
2010-09-06 18:13:39 +00:00
|
|
|
--with-sdl-prefix=DIR Prefix where the sdl-config script is
|
|
|
|
installed (optional)
|
2004-05-21 02:08:48 +00:00
|
|
|
|
|
|
|
--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
|
|
|
|
2009-07-25 23:36:24 +00:00
|
|
|
--with-readline-prefix=DIR Prefix where readline is installed (optional)
|
2009-08-22 15:11:50 +00:00
|
|
|
--disable-readline disable readline support in text console [autodetect]
|
2009-07-25 23:36:24 +00:00
|
|
|
|
2004-02-13 00:53:56 +00:00
|
|
|
Some influential environment variables:
|
2009-09-11 18:13:27 +00:00
|
|
|
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>
|
|
|
|
ASFLAGS assembler flags
|
|
|
|
WINDRESFLAGS Windows resource compiler flags
|
2004-02-13 00:53:56 +00:00
|
|
|
|
2003-05-18 05:43:52 +00:00
|
|
|
EOF
|
2007-11-01 21:03:16 +00:00
|
|
|
exit 0
|
|
|
|
fi
|
2003-05-18 05:43:52 +00:00
|
|
|
done # for parm in ...
|
|
|
|
|
2003-05-26 05:18:40 +00:00
|
|
|
for ac_option in $@; do
|
2007-11-01 21:03:16 +00:00
|
|
|
case "$ac_option" in
|
2009-08-21 09:43:30 +00:00
|
|
|
--disable-16bit) _16bit=no ;;
|
2007-11-01 21:03:16 +00:00
|
|
|
--disable-scalers) _build_scalers=no ;;
|
2010-05-09 11:00:17 +00:00
|
|
|
--disable-hq-scalers) _build_hq_scalers=no ;;
|
2007-11-01 21:03:16 +00:00
|
|
|
--enable-alsa) _alsa=yes ;;
|
|
|
|
--disable-alsa) _alsa=no ;;
|
2010-10-11 19:50:17 +00:00
|
|
|
--enable-seq-midi) _seq_midi=yes ;;
|
|
|
|
--disable-seq-midi) _seq_midi=no ;;
|
2010-10-13 00:48:40 +00:00
|
|
|
--enable-timidity) _timidity=yes ;;
|
|
|
|
--disable-timidity) _timidity=no ;;
|
2007-11-01 21:03:16 +00:00
|
|
|
--enable-vorbis) _vorbis=yes ;;
|
|
|
|
--disable-vorbis) _vorbis=no ;;
|
|
|
|
--enable-tremor) _tremor=yes ;;
|
|
|
|
--disable-tremor) _tremor=no ;;
|
|
|
|
--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 ;;
|
2009-03-01 12:19:28 +00:00
|
|
|
--enable-mpeg2) _mpeg2=yes ;;
|
2009-08-29 19:48:01 +00:00
|
|
|
--disable-indeo3) _indeo3=no ;;
|
|
|
|
--enable-indeo3) _indeo3=yes ;;
|
2010-10-12 21:12:50 +00:00
|
|
|
--disable-png) _png=no ;;
|
|
|
|
--enable-png) _png=yes ;;
|
2010-10-13 13:36:55 +00:00
|
|
|
--disable-theoradec) _theoradec=no ;;
|
|
|
|
--enable-theoradec) _theoradec=yes ;;
|
2007-11-01 21:03:16 +00:00
|
|
|
--disable-fluidsynth) _fluidsynth=no ;;
|
2009-07-25 23:36:24 +00:00
|
|
|
--enable-readline) _readline=yes ;;
|
|
|
|
--disable-readline) _readline=no ;;
|
2010-11-28 17:42:05 +00:00
|
|
|
--enable-opengl) _opengl=yes ;;
|
|
|
|
--disable-opengl) _opengl=no ;;
|
2009-08-22 11:03:00 +00:00
|
|
|
--enable-verbose-build) _verbose_build=yes ;;
|
2008-05-06 03:11:01 +00:00
|
|
|
--enable-plugins) _dynamic_modules=yes ;;
|
2008-05-06 03:00:26 +00:00
|
|
|
--default-dynamic) _plugins_default=dynamic ;;
|
2007-11-01 21:03:16 +00:00
|
|
|
--enable-mt32emu) _mt32emu=yes ;;
|
|
|
|
--disable-mt32emu) _mt32emu=no ;;
|
2010-06-15 10:44:51 +00:00
|
|
|
--enable-translation) _translation=yes ;;
|
|
|
|
--disable-translation) _translation=no ;;
|
2008-09-30 13:51:01 +00:00
|
|
|
--enable-vkeybd) _vkeybd=yes ;;
|
|
|
|
--disable-vkeybd) _vkeybd=no ;;
|
|
|
|
--enable-keymapper) _keymapper=yes ;;
|
|
|
|
--disable-keymapper) _keymapper=no ;;
|
2009-07-25 23:36:24 +00:00
|
|
|
--enable-text-console) _text_console=yes ;;
|
|
|
|
--disable-text-console) _text_console=no ;;
|
2007-11-01 21:03:16 +00:00
|
|
|
--with-fluidsynth-prefix=*)
|
|
|
|
arg=`echo $ac_option | cut -d '=' -f 2`
|
|
|
|
FLUIDSYNTH_CFLAGS="-I$arg/include"
|
|
|
|
FLUIDSYNTH_LIBS="-L$arg/lib"
|
|
|
|
;;
|
|
|
|
--with-mpeg2-prefix=*)
|
|
|
|
arg=`echo $ac_option | cut -d '=' -f 2`
|
|
|
|
MPEG2_CFLAGS="-I$arg/include"
|
|
|
|
MPEG2_LIBS="-L$arg/lib"
|
|
|
|
;;
|
|
|
|
--with-alsa-prefix=*)
|
|
|
|
arg=`echo $ac_option | cut -d '=' -f 2`
|
|
|
|
ALSA_CFLAGS="-I$arg/include"
|
|
|
|
ALSA_LIBS="-L$arg/lib"
|
|
|
|
;;
|
|
|
|
--with-ogg-prefix=*)
|
|
|
|
arg=`echo $ac_option | cut -d '=' -f 2`
|
|
|
|
OGG_CFLAGS="-I$arg/include"
|
|
|
|
OGG_LIBS="-L$arg/lib"
|
|
|
|
;;
|
|
|
|
--with-vorbis-prefix=*)
|
|
|
|
arg=`echo $ac_option | cut -d '=' -f 2`
|
|
|
|
VORBIS_CFLAGS="-I$arg/include"
|
|
|
|
VORBIS_LIBS="-L$arg/lib"
|
|
|
|
;;
|
|
|
|
--with-tremor-prefix=*)
|
|
|
|
arg=`echo $ac_option | cut -d '=' -f 2`
|
|
|
|
TREMOR_CFLAGS="-I$arg/include"
|
|
|
|
TREMOR_LIBS="-L$arg/lib"
|
|
|
|
;;
|
|
|
|
--with-flac-prefix=*)
|
|
|
|
arg=`echo $ac_option | cut -d '=' -f 2`
|
|
|
|
FLAC_CFLAGS="-I$arg/include"
|
|
|
|
FLAC_LIBS="-L$arg/lib"
|
|
|
|
;;
|
|
|
|
--with-mad-prefix=*)
|
|
|
|
arg=`echo $ac_option | cut -d '=' -f 2`
|
|
|
|
MAD_CFLAGS="-I$arg/include"
|
|
|
|
MAD_LIBS="-L$arg/lib"
|
|
|
|
;;
|
2010-10-12 21:12:50 +00:00
|
|
|
--with-png-prefix=*)
|
|
|
|
arg=`echo $ac_option | cut -d '=' -f 2`
|
|
|
|
PNG_CFLAGS="-I$arg/include"
|
|
|
|
PNG_LIBS="-L$arg/lib"
|
|
|
|
;;
|
|
|
|
--with-theoradec-prefix=*)
|
|
|
|
arg=`echo $ac_option | cut -d '=' -f 2`
|
|
|
|
THEORADEC_CFLAGS="-I$arg/include"
|
|
|
|
THEORADEC_LIBS="-L$arg/lib"
|
|
|
|
;;
|
2007-11-01 21:03:16 +00:00
|
|
|
--with-zlib-prefix=*)
|
|
|
|
arg=`echo $ac_option | cut -d '=' -f 2`
|
|
|
|
ZLIB_CFLAGS="-I$arg/include"
|
|
|
|
ZLIB_LIBS="-L$arg/lib"
|
|
|
|
;;
|
2009-07-25 23:36:24 +00:00
|
|
|
--with-readline-prefix=*)
|
|
|
|
arg=`echo $ac_option | cut -d '=' -f 2`
|
|
|
|
READLINE_CFLAGS="-I$arg/include"
|
|
|
|
READLINE_LIBS="-L$arg/lib"
|
|
|
|
;;
|
2010-11-28 17:42:05 +00:00
|
|
|
--with-opengl-prefix=*)
|
|
|
|
arg=`echo $ac_option | cut -d '=' -f 2`
|
|
|
|
OPENGL_CFLAGS="-I$arg/include"
|
|
|
|
OPENGL_LIBS="-L$arg/lib"
|
|
|
|
;;
|
2007-11-01 21:03:16 +00:00
|
|
|
--backend=*)
|
|
|
|
_backend=`echo $ac_option | cut -d '=' -f 2`
|
|
|
|
;;
|
|
|
|
--enable-debug)
|
2009-10-13 18:50:46 +00:00
|
|
|
_debug_build=yes
|
2007-11-01 21:03:16 +00:00
|
|
|
;;
|
|
|
|
--disable-debug)
|
2009-10-13 18:50:46 +00:00
|
|
|
_debug_build=no
|
2007-11-01 21:03:16 +00:00
|
|
|
;;
|
|
|
|
--enable-Werror)
|
|
|
|
CXXFLAGS="$CXXFLAGS -Werror"
|
|
|
|
;;
|
|
|
|
--enable-release)
|
2009-10-13 18:50:46 +00:00
|
|
|
_release_build=yes
|
|
|
|
;;
|
|
|
|
--disable-release)
|
|
|
|
_release_build=no
|
2007-11-01 21:03:16 +00:00
|
|
|
;;
|
2008-07-09 02:19:57 +00:00
|
|
|
--enable-profiling)
|
2010-04-26 12:11:19 +00:00
|
|
|
_enable_prof=yes
|
2008-07-09 02:19:57 +00:00
|
|
|
;;
|
2007-11-01 21:03:16 +00:00
|
|
|
--with-sdl-prefix=*)
|
|
|
|
arg=`echo $ac_option | cut -d '=' -f 2`
|
|
|
|
_sdlpath="$arg:$arg/bin"
|
|
|
|
;;
|
|
|
|
--with-nasm-prefix=*)
|
|
|
|
arg=`echo $ac_option | cut -d '=' -f 2`
|
|
|
|
_nasmpath="$arg:$arg/bin"
|
|
|
|
;;
|
2009-03-19 20:53:33 +00:00
|
|
|
--with-staticlib-prefix=*)
|
|
|
|
_staticlibpath=`echo $ac_option | cut -d '=' -f 2`
|
|
|
|
;;
|
2007-11-01 21:03:16 +00:00
|
|
|
--host=*)
|
|
|
|
_host=`echo $ac_option | cut -d '=' -f 2`
|
|
|
|
;;
|
|
|
|
--prefix=*)
|
2010-05-09 20:42:18 +00:00
|
|
|
prefix=`echo $ac_option | cut -d '=' -f 2`
|
2007-11-01 21:03:16 +00:00
|
|
|
;;
|
2010-10-11 19:50:17 +00:00
|
|
|
--exec-prefix=*)
|
|
|
|
exec_prefix=`echo $ac_option | cut -d '=' -f 2`
|
|
|
|
;;
|
2007-11-01 21:03:16 +00:00
|
|
|
--bindir=*)
|
2010-05-09 20:42:18 +00:00
|
|
|
bindir=`echo $ac_option | cut -d '=' -f 2`
|
2007-11-01 21:03:16 +00:00
|
|
|
;;
|
2010-10-11 19:50:17 +00:00
|
|
|
--libdir=*)
|
|
|
|
libdir=`echo $ac_option | cut -d '=' -f 2`
|
2010-05-09 20:42:18 +00:00
|
|
|
;;
|
|
|
|
--datarootdir=*)
|
|
|
|
datarootdir=`echo $ac_option | cut -d '=' -f 2`
|
2007-11-01 21:03:16 +00:00
|
|
|
;;
|
|
|
|
--datadir=*)
|
2010-05-09 20:42:18 +00:00
|
|
|
datadir=`echo $ac_option | cut -d '=' -f 2`
|
2007-11-01 21:03:16 +00:00
|
|
|
;;
|
2010-10-11 19:50:17 +00:00
|
|
|
--mandir=*)
|
|
|
|
mandir=`echo $ac_option | cut -d '=' -f 2`
|
|
|
|
;;
|
|
|
|
--docdir=*)
|
|
|
|
docdir=`echo $ac_option | cut -d '=' -f 2`
|
2008-05-02 14:30:06 +00:00
|
|
|
;;
|
2009-03-13 16:31:53 +00:00
|
|
|
--enable-all-engines)
|
|
|
|
engine_enable_all
|
|
|
|
;;
|
|
|
|
--disable-all-engines)
|
|
|
|
engine_disable_all
|
|
|
|
;;
|
2007-11-01 21:03:16 +00:00
|
|
|
--enable-*)
|
|
|
|
engine_enable `echo $ac_option | cut -d '-' -f 4-`
|
|
|
|
;;
|
|
|
|
--disable-*)
|
|
|
|
engine_disable `echo $ac_option | cut -d '-' -f 4-`
|
|
|
|
;;
|
|
|
|
*)
|
2008-05-06 03:00:26 +00:00
|
|
|
option_error
|
2007-11-01 21:03:16 +00:00
|
|
|
;;
|
|
|
|
esac;
|
2002-08-24 15:24:38 +00:00
|
|
|
done;
|
|
|
|
|
2009-03-23 17:40:46 +00:00
|
|
|
guessed_host=`$_srcdir/config.guess`
|
|
|
|
get_system_exe_extension $guessed_host
|
|
|
|
NATIVEEXEEXT=$_exeext
|
|
|
|
|
2004-12-16 22:05:45 +00:00
|
|
|
case $_host in
|
2010-08-02 17:11:25 +00:00
|
|
|
android)
|
|
|
|
_host_os=android
|
|
|
|
_host_cpu=arm
|
2011-02-06 14:23:47 +00:00
|
|
|
_host_alias=arm-linux-androideabi
|
2010-08-02 17:11:25 +00:00
|
|
|
;;
|
2005-07-08 16:16:32 +00:00
|
|
|
arm-riscos)
|
2004-12-16 22:15:32 +00:00
|
|
|
_host_os=riscos
|
|
|
|
_host_cpu=arm
|
|
|
|
;;
|
2010-08-26 11:28:30 +00:00
|
|
|
caanoo)
|
2010-09-20 19:33:58 +00:00
|
|
|
_host_os=gph-linux
|
2010-08-26 11:28:30 +00:00
|
|
|
_host_cpu=arm
|
|
|
|
_host_alias=arm-none-linux-gnueabi
|
2010-09-20 19:33:58 +00:00
|
|
|
if test "$_debug_build" = auto; then
|
|
|
|
# If you want to debug on the Caanoo use '--disable-release --enable-debug'
|
|
|
|
_debug_build=no
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test "$_release_build" = auto; then
|
|
|
|
# Enable release build by default.
|
|
|
|
_release_build=yes
|
2010-10-12 02:18:11 +00:00
|
|
|
fi
|
2010-08-26 11:28:30 +00:00
|
|
|
;;
|
2010-08-19 12:43:37 +00:00
|
|
|
dingux)
|
|
|
|
_host_os=linux
|
|
|
|
_host_cpu=mipsel
|
|
|
|
_host_alias=mipsel-linux
|
|
|
|
;;
|
2010-02-02 11:46:35 +00:00
|
|
|
dreamcast)
|
|
|
|
_host_os=dreamcast
|
|
|
|
_host_cpu=sh
|
|
|
|
_host_alias=sh-elf
|
|
|
|
CXXFLAGS="$CXXFLAGS -ml -m4-single-only"
|
|
|
|
LDFLAGS="$LDFLAGS -ml -m4-single-only"
|
|
|
|
;;
|
2010-08-02 17:11:25 +00:00
|
|
|
ds)
|
|
|
|
_host_os=ds
|
|
|
|
_host_cpu=arm
|
|
|
|
_host_alias=arm-eabi
|
|
|
|
;;
|
2010-02-02 11:46:35 +00:00
|
|
|
gamecube)
|
|
|
|
_host_os=gamecube
|
2005-05-09 21:21:21 +00:00
|
|
|
_host_cpu=ppc
|
2010-02-02 11:46:35 +00:00
|
|
|
_host_alias=powerpc-gekko
|
2005-05-09 21:21:21 +00:00
|
|
|
;;
|
2010-02-02 11:46:35 +00:00
|
|
|
gp2x)
|
2010-09-20 19:33:58 +00:00
|
|
|
_host_os=gph-linux
|
2009-06-04 08:30:31 +00:00
|
|
|
_host_cpu=arm
|
|
|
|
_host_alias=arm-open2x-linux
|
2010-09-20 19:33:58 +00:00
|
|
|
if test "$_debug_build" = auto; then
|
|
|
|
# If you want to debug on the GP2X use '--disable-release --enable-debug'
|
|
|
|
_debug_build=no
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test "$_release_build" = auto; then
|
|
|
|
# Enable release build by default.
|
|
|
|
_release_build=yes
|
2010-10-12 02:18:11 +00:00
|
|
|
fi
|
2010-01-25 01:39:44 +00:00
|
|
|
;;
|
2010-02-02 11:46:35 +00:00
|
|
|
gp2xwiz)
|
2010-09-20 19:33:58 +00:00
|
|
|
_host_os=gph-linux
|
2006-10-06 19:01:39 +00:00
|
|
|
_host_cpu=arm
|
2009-03-27 14:12:42 +00:00
|
|
|
_host_alias=arm-open2x-linux
|
2010-09-20 19:33:58 +00:00
|
|
|
if test "$_debug_build" = auto; then
|
|
|
|
# If you want to debug on the GP2XWiz use '--disable-release --enable-debug'
|
|
|
|
_debug_build=no
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test "$_release_build" = auto; then
|
|
|
|
# Enable release build by default.
|
|
|
|
_release_build=yes
|
2010-10-12 02:18:11 +00:00
|
|
|
fi
|
2006-10-06 19:01:39 +00:00
|
|
|
;;
|
2007-03-18 22:56:56 +00:00
|
|
|
i586-mingw32msvc)
|
|
|
|
_host_os=mingw32msvc
|
|
|
|
_host_cpu=i586
|
|
|
|
;;
|
2009-03-22 16:46:45 +00:00
|
|
|
iphone)
|
|
|
|
_host_os=iphone
|
|
|
|
_host_cpu=arm
|
2009-03-22 17:48:42 +00:00
|
|
|
_host_alias=arm-apple-darwin9
|
2009-03-22 16:46:45 +00:00
|
|
|
;;
|
2010-02-02 11:46:35 +00:00
|
|
|
linupy)
|
|
|
|
_host_os=linux
|
2009-07-28 22:42:08 +00:00
|
|
|
_host_cpu=arm
|
|
|
|
;;
|
2010-02-02 11:46:35 +00:00
|
|
|
motoezx)
|
2008-07-23 19:50:57 +00:00
|
|
|
_host_os=linux
|
|
|
|
_host_cpu=arm
|
2010-02-02 11:46:35 +00:00
|
|
|
_host_alias=arm-linux-gnu
|
2008-07-23 19:50:57 +00:00
|
|
|
;;
|
2010-02-02 11:46:35 +00:00
|
|
|
motomagx)
|
|
|
|
_host_os=linux
|
|
|
|
_host_cpu=arm
|
|
|
|
_host_alias=arm-linux-gnueabi
|
2009-07-30 18:27:50 +00:00
|
|
|
;;
|
2010-10-12 02:18:11 +00:00
|
|
|
n64)
|
2010-08-01 17:16:39 +00:00
|
|
|
_host_os=n64
|
|
|
|
_host_cpu=mips
|
|
|
|
_host_alias=mips64
|
|
|
|
;;
|
2010-02-02 11:46:35 +00:00
|
|
|
neuros)
|
|
|
|
_host_os=linux
|
|
|
|
_host_cpu=arm
|
|
|
|
;;
|
2010-09-06 17:35:27 +00:00
|
|
|
openpandora)
|
2010-09-20 19:33:58 +00:00
|
|
|
_host_os=linux
|
2010-09-06 17:35:27 +00:00
|
|
|
_host_cpu=arm
|
|
|
|
_host_alias=arm-angstrom-linux-gnueabi
|
2010-09-20 19:33:58 +00:00
|
|
|
if test "$_debug_build" = auto; then
|
|
|
|
# If you want to debug on the OP use '--disable-release --enable-debug'
|
|
|
|
_debug_build=no
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test "$_release_build" = auto; then
|
|
|
|
# Enable release build by default.
|
|
|
|
_release_build=yes
|
2010-10-12 02:18:11 +00:00
|
|
|
fi
|
2010-09-06 17:35:27 +00:00
|
|
|
;;
|
2010-02-02 11:46:35 +00:00
|
|
|
ppc-amigaos)
|
|
|
|
_host_os=amigaos
|
|
|
|
_host_cpu=ppc
|
2009-03-25 21:58:16 +00:00
|
|
|
;;
|
2009-10-08 20:59:53 +00:00
|
|
|
ps2)
|
|
|
|
_host_os=ps2
|
2009-10-09 11:38:13 +00:00
|
|
|
_host_cpu=mips64r5900el
|
2009-10-08 20:59:53 +00:00
|
|
|
_host_alias=ee
|
2009-10-14 12:56:14 +00:00
|
|
|
if test "$_debug_build" = auto; then
|
|
|
|
# Disable debug mode by default. The resulting binaries are far too big in general,
|
|
|
|
# and one has to disable multiple engines to make it usable.
|
|
|
|
_debug_build=no
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test "$_release_build" = auto; then
|
|
|
|
# Enable release build by default.
|
|
|
|
_release_build=yes
|
|
|
|
fi
|
2009-10-08 20:59:53 +00:00
|
|
|
;;
|
2010-02-02 11:46:35 +00:00
|
|
|
psp)
|
|
|
|
_host_os=psp
|
|
|
|
_host_cpu=mipsallegrexel
|
|
|
|
_host_alias=psp
|
|
|
|
if test -z "$PSPDEV"; then
|
2010-03-10 10:57:03 +00:00
|
|
|
PSPDEV=`psp-config --pspdev-path`
|
2010-02-02 11:46:35 +00:00
|
|
|
fi
|
|
|
|
if test -d "$PSPDEV/psp/lib"; then
|
|
|
|
LDFLAGS="$LDFLAGS -L$PSPDEV/psp/lib"
|
|
|
|
fi
|
|
|
|
LDFLAGS="$LDFLAGS -L$PSPDEV/psp/sdk/lib -specs=$_srcdir/backends/platform/psp/psp.spec"
|
|
|
|
;;
|
|
|
|
samsungtv)
|
|
|
|
_host_os=linux
|
|
|
|
_host_cpu=arm
|
2010-03-24 16:40:35 +00:00
|
|
|
_host_alias=arm-linux-gnueabi
|
2010-02-02 11:46:35 +00:00
|
|
|
;;
|
|
|
|
wii)
|
|
|
|
_host_os=wii
|
|
|
|
_host_cpu=ppc
|
|
|
|
_host_alias=powerpc-gekko
|
|
|
|
;;
|
|
|
|
wince)
|
|
|
|
_host_os=wince
|
|
|
|
_host_cpu=arm
|
|
|
|
_host_alias=arm-wince-mingw32ce
|
|
|
|
;;
|
2004-12-16 22:05:45 +00:00
|
|
|
*)
|
2009-03-23 17:40:46 +00:00
|
|
|
if test -n "$_host"; then
|
2007-10-28 13:14:23 +00:00
|
|
|
guessed_host=`$_srcdir/config.sub $_host`
|
|
|
|
fi
|
2004-12-16 22:15:32 +00:00
|
|
|
_host_cpu=`echo $guessed_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
|
|
|
|
_host_vendor=`echo $guessed_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
|
2009-03-19 21:42:50 +00:00
|
|
|
_host_os=`echo $guessed_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
|
2004-12-16 22:15:32 +00:00
|
|
|
;;
|
2004-12-16 22:05:45 +00:00
|
|
|
esac
|
2004-01-22 04:31:31 +00:00
|
|
|
|
2009-03-18 21:07:28 +00:00
|
|
|
if test -z "$_host_alias"; then
|
|
|
|
_host_alias="$_host_cpu-$_host_os"
|
2009-08-22 16:30:20 +00:00
|
|
|
else
|
|
|
|
# if _host_alias was set, default to the standard GNU tools
|
|
|
|
_ranlib=$_host_alias-ranlib
|
|
|
|
_strip=$_host_alias-strip
|
|
|
|
_ar="$_host_alias-ar cru"
|
|
|
|
_as="$_host_alias-as"
|
|
|
|
_windres=$_host_alias-windres
|
2009-03-18 21:07:28 +00:00
|
|
|
fi
|
|
|
|
|
2009-10-13 18:50:46 +00:00
|
|
|
#
|
|
|
|
# Determine extra build flags for debug and/or release builds
|
|
|
|
#
|
|
|
|
|
|
|
|
if test "$_debug_build" != no; then
|
|
|
|
# debug mode not explicitly disabled -> compile with -g
|
|
|
|
CXXFLAGS="$CXXFLAGS -g"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test "$_release_build" = yes; then
|
|
|
|
# Release mode enabled: enable optimizations. This also
|
|
|
|
# makes it possible to use -Wuninitialized, so let's do that.
|
2010-06-24 22:33:49 +00:00
|
|
|
# We will also add a define, which indicates we are doing
|
|
|
|
# an build for a release version.
|
|
|
|
CXXFLAGS="$CXXFLAGS -O2 -Wuninitialized -DRELEASE_BUILD"
|
2009-10-13 18:50:46 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
2004-04-08 22:54:22 +00:00
|
|
|
#
|
|
|
|
# Determine extension used for executables
|
|
|
|
#
|
2010-01-25 01:39:44 +00:00
|
|
|
get_system_exe_extension $_host_os
|
2011-02-06 14:29:22 +00:00
|
|
|
HOSTEXEPRE=
|
2009-03-23 17:40:46 +00:00
|
|
|
HOSTEXEEXT=$_exeext
|
2004-04-08 22:54:22 +00:00
|
|
|
|
2005-10-11 11:27:18 +00:00
|
|
|
#
|
|
|
|
# Determine separator used for $PATH
|
|
|
|
#
|
|
|
|
case $_host_os in
|
2010-10-18 17:42:24 +00:00
|
|
|
os2-emx*)
|
2006-02-20 15:16:26 +00:00
|
|
|
SEPARATOR=";"
|
|
|
|
;;
|
2010-10-18 17:42:24 +00:00
|
|
|
*)
|
2006-02-20 15:16:26 +00:00
|
|
|
SEPARATOR=":"
|
|
|
|
;;
|
2005-10-11 11:27:18 +00:00
|
|
|
esac
|
|
|
|
|
2009-03-19 18:56:54 +00:00
|
|
|
#
|
|
|
|
# Platform specific sanity checks
|
|
|
|
#
|
|
|
|
case $_host_os in
|
2010-08-02 17:11:25 +00:00
|
|
|
android)
|
|
|
|
if test -z "$ANDROID_SDK"; then
|
|
|
|
echo "Please set ANDROID_SDK in your environment. export ANDROID_SDK=<path to Android SDK>"
|
|
|
|
exit 1
|
|
|
|
fi
|
2011-02-06 14:23:47 +00:00
|
|
|
if test -z "$ANDROID_NDK"; then
|
|
|
|
echo "Please set ANDROID_NDK in your environment. export ANDROID_NDK=<path to Android NDK>"
|
|
|
|
exit 1
|
|
|
|
fi
|
2010-08-02 17:11:25 +00:00
|
|
|
;;
|
|
|
|
ds | gamecube | wii)
|
2009-03-19 18:56:54 +00:00
|
|
|
if test -z "$DEVKITPRO"; then
|
|
|
|
echo "Please set DEVKITPRO in your environment. export DEVKITPRO=<path to devkitPRO>"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
;;
|
2010-08-03 00:03:04 +00:00
|
|
|
n64)
|
|
|
|
if test -z "$N64SDK"; then
|
|
|
|
echo "Please set N64SDK in your environment. export N64SDK=<path to n64 sdk>"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
;;
|
2010-02-02 11:46:35 +00:00
|
|
|
ps2)
|
|
|
|
if test -z "$PS2SDK"; then
|
|
|
|
echo "Please set PS2SDK in your environment. export PS2SDK=<path to ps2 sdk>"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
;;
|
2009-03-25 21:58:16 +00:00
|
|
|
psp)
|
2010-03-10 10:57:03 +00:00
|
|
|
PSPSDK=`psp-config --pspsdk-path`
|
2009-10-09 12:10:08 +00:00
|
|
|
if test -z "$PSPSDK"; then
|
|
|
|
echo "Please set the path to PSPSDK in your environment."
|
2009-03-25 21:58:16 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
;;
|
2009-03-19 18:56:54 +00:00
|
|
|
*)
|
|
|
|
;;
|
|
|
|
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... "
|
2009-03-19 21:42:50 +00:00
|
|
|
|
|
|
|
# Check whether the given command is a working C++ compiler
|
|
|
|
test_compiler() {
|
2010-05-08 20:22:50 +00:00
|
|
|
cat > tmp_cxx_compiler.cpp << EOF
|
2009-03-19 21:42:50 +00:00
|
|
|
class Foo { int a; };
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
Foo *a = new Foo(); delete a; return 0;
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
|
2010-05-08 20:22:50 +00:00
|
|
|
echo "testing compiler: $1" >> "$TMPLOG"
|
|
|
|
|
2009-03-19 21:42:50 +00:00
|
|
|
if test -n "$_host"; then
|
|
|
|
# In cross-compiling mode, we cannot run the result
|
2010-05-08 20:22:50 +00:00
|
|
|
eval "$1 $CXXFLAGS $LDFLAGS -o $TMPO.o -c tmp_cxx_compiler.cpp" 2> /dev/null && cc_check_clean tmp_cxx_compiler.cpp
|
2009-03-19 21:42:50 +00:00
|
|
|
else
|
2010-05-08 20:22:50 +00:00
|
|
|
eval "$1 $CXXFLAGS $LDFLAGS -o $TMPO$HOSTEXEEXT tmp_cxx_compiler.cpp" 2> /dev/null && eval "$TMPO$HOSTEXEEXT 2> /dev/null" && cc_check_clean tmp_cxx_compiler.cpp
|
2009-03-19 21:42:50 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# Prepare a list of candidates for the C++ compiler
|
2009-03-23 15:47:45 +00:00
|
|
|
if test -n "$CXX" && test_compiler "$CXX"; then
|
|
|
|
# Use the compiler specified in CXX
|
|
|
|
echo $CXX
|
2004-01-22 04:31:31 +00:00
|
|
|
else
|
2009-03-23 15:47:45 +00:00
|
|
|
if test -n "$_host"; then
|
|
|
|
compilers="$_host_alias-g++ $_host_alias-c++ $_host-g++ $_host-c++"
|
|
|
|
else
|
|
|
|
compilers="g++ c++"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Iterate over all candidates, pick the first working one
|
|
|
|
CXX=
|
|
|
|
for compiler in $compilers; do
|
|
|
|
if test_compiler $compiler; then
|
2010-09-09 14:01:33 +00:00
|
|
|
echo "success testing compiler: $compiler" >> "$TMPLOG"
|
2009-03-23 15:47:45 +00:00
|
|
|
CXX=$compiler
|
|
|
|
echo $CXX
|
|
|
|
break
|
2010-07-01 23:12:28 +00:00
|
|
|
else
|
2010-09-09 14:01:33 +00:00
|
|
|
echo "failure testing compiler: $compiler" >> "$TMPLOG"
|
2009-03-23 15:47:45 +00:00
|
|
|
fi
|
|
|
|
done
|
2004-01-22 04:31:31 +00:00
|
|
|
fi
|
|
|
|
|
2006-10-15 00:49:36 +00:00
|
|
|
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
|
|
|
|
|
2009-10-09 11:38:13 +00:00
|
|
|
# By default, use the C++ compiler as linker
|
|
|
|
LD=$CXX
|
|
|
|
|
2003-06-02 03:01:22 +00:00
|
|
|
#
|
|
|
|
# Determine the compiler version
|
2009-03-18 21:51:56 +00:00
|
|
|
#
|
2003-06-02 03:01:22 +00:00
|
|
|
echocheck "compiler version"
|
|
|
|
|
2011-02-10 01:05:48 +00:00
|
|
|
# We first check whether we have an Intel compiler here, since the Intel compiler
|
|
|
|
# can also fake itself as an gcc (to ease compatibility with common Linux etc.
|
|
|
|
# programs).
|
|
|
|
have_icc=no
|
|
|
|
cc_check_define __INTEL_COMPILER && have_icc=yes
|
|
|
|
|
|
|
|
if test "$have_icc" = yes; then
|
|
|
|
add_line_to_config_mk 'HAVE_ICC = 1'
|
|
|
|
|
|
|
|
# Make ICC error our on unknown command line options instead of printing
|
|
|
|
# a warning. This is for example required to make the -Wglobal-destructors
|
|
|
|
# detection work correctly.
|
|
|
|
CXXFLAGS="$CXXFLAGS -diag-error 10006,10148"
|
|
|
|
fi
|
|
|
|
|
2009-09-25 12:11:27 +00:00
|
|
|
have_gcc=no
|
2010-04-09 13:10:33 +00:00
|
|
|
cc_check_define __GNUC__ && have_gcc=yes
|
2010-04-09 12:23:43 +00:00
|
|
|
|
|
|
|
if test "$have_gcc" = yes; then
|
|
|
|
add_line_to_config_mk 'HAVE_GCC = 1'
|
|
|
|
_cxx_major=`gcc_get_define __GNUC__`
|
|
|
|
_cxx_minor=`gcc_get_define __GNUC_MINOR__`
|
|
|
|
cxx_version="`( $CXX -dumpversion ) 2>&1`"
|
|
|
|
|
|
|
|
if test -n "`gcc_get_define __clang__`"; then
|
|
|
|
add_line_to_config_mk 'HAVE_CLANG = 1'
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test "$_cxx_major" -eq 2 && test "$_cxx_minor" -ge 95 || \
|
|
|
|
test "$_cxx_major" -gt 2 ; then
|
|
|
|
cxx_version="$cxx_version, ok"
|
|
|
|
cxx_verc_fail=no
|
|
|
|
else
|
|
|
|
cxx_version="$cxx_version, bad"
|
|
|
|
cxx_verc_fail=yes
|
|
|
|
fi
|
2011-02-10 01:05:48 +00:00
|
|
|
elif test "$have_icc" = yes; then
|
|
|
|
cxx_version="`( $CXX -dumpversion ) 2>/dev/null`"
|
|
|
|
_cxx_major="`echo "${cxx_version}" | sed -ne 's/\([0-9][0-9]*\)\..*/\1/gp'`"
|
|
|
|
_cxx_minor="`echo "${cxx_version}" | sed -ne 's/[0-9][0-9]*\.\([0-9][0-9]*\)/\1/gp'`"
|
|
|
|
cxx_version="ICC $cxx_version, ok"
|
2010-04-09 12:23:43 +00:00
|
|
|
else
|
|
|
|
# TODO: Big scary warning about unsupported compilers
|
2009-09-25 12:11:27 +00:00
|
|
|
cxx_version=`( $CXX -version ) 2>&1`
|
|
|
|
if test "$?" -eq 0; then
|
|
|
|
cxx_version="`echo "${cxx_version}" | sed -ne 's/^.*[^0-9]\([0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\).*$/\1/gp'`"
|
|
|
|
if test -z "${cxx_version}"; then
|
|
|
|
cxx_version="not found"
|
|
|
|
cxx_verc_fail=yes
|
|
|
|
fi
|
|
|
|
echo non-gcc compiler version ${cxx_version}
|
|
|
|
else
|
|
|
|
cxx_version="not found"
|
|
|
|
cxx_verc_fail=yes
|
|
|
|
echo found non-gcc compiler version ${cxx_version}
|
|
|
|
fi
|
2003-06-02 03:01:22 +00:00
|
|
|
|
2009-09-25 12:11:27 +00:00
|
|
|
case $_host_os in
|
|
|
|
irix*)
|
|
|
|
case $cxx_version in
|
|
|
|
7.4.4*)
|
2010-04-22 15:30:26 +00:00
|
|
|
# We just assume this is SGI MIPSpro
|
2009-09-25 12:11:27 +00:00
|
|
|
_cxx_major=7
|
|
|
|
_cxx_minor=4
|
2010-04-22 15:30:26 +00:00
|
|
|
cxx_verc_fail=no
|
2009-09-25 12:11:27 +00:00
|
|
|
add_line_to_config_mk 'CXX_UPDATE_DEP_FLAG = -MDupdate "$(*D)/$(DEPDIR)/$(*F).d"'
|
2009-09-25 12:25:27 +00:00
|
|
|
add_line_to_config_mk '-include Makedepend'
|
2009-09-25 12:11:27 +00:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
cxx_version="$cxx_version, bad"
|
|
|
|
cxx_verc_fail=yes
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
;;
|
2010-01-25 01:39:44 +00:00
|
|
|
*)
|
2009-09-25 12:11:27 +00:00
|
|
|
cxx_version="$cxx_version, bad"
|
|
|
|
cxx_verc_fail=yes
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
2003-06-02 03:01:22 +00:00
|
|
|
|
|
|
|
echo "$cxx_version"
|
|
|
|
|
|
|
|
if test "$cxx_verc_fail" = yes ; then
|
|
|
|
echo
|
|
|
|
echo "The version of your compiler is not supported at this time"
|
2006-01-29 03:47:46 +00:00
|
|
|
echo "Please ensure you are using GCC >= 2.95"
|
2008-01-27 19:47:41 +00:00
|
|
|
exit 1
|
2003-06-02 03:01:22 +00:00
|
|
|
fi
|
|
|
|
|
2010-08-17 13:51:36 +00:00
|
|
|
echocheck "whether -Wglobal-constructors work"
|
|
|
|
cat > $TMPC << EOF
|
|
|
|
int main() { return 0; }
|
|
|
|
EOF
|
|
|
|
cc_check -Wglobal-constructors && _global_constructors=yes
|
|
|
|
|
|
|
|
if test "$_global_constructors" = yes; then
|
|
|
|
CXXFLAGS="$CXXFLAGS -Wglobal-constructors"
|
|
|
|
fi
|
|
|
|
echo $_global_constructors
|
|
|
|
|
2007-10-28 13:14:23 +00:00
|
|
|
#
|
|
|
|
# Check for endianness
|
|
|
|
#
|
|
|
|
echo_n "Checking endianness... "
|
2010-05-08 20:22:50 +00:00
|
|
|
cat > tmp_endianness_check.cpp << EOF
|
2007-10-28 13:14:23 +00:00
|
|
|
short ascii_mm[] = { 0x4249, 0x4765, 0x6E44, 0x6961, 0x6E53, 0x7953, 0 };
|
|
|
|
short ascii_ii[] = { 0x694C, 0x5454, 0x656C, 0x6E45, 0x6944, 0x6E61, 0 };
|
|
|
|
void _ascii() { char* s = (char*) ascii_mm; s = (char*) ascii_ii; }
|
|
|
|
short ebcdic_ii[] = { 0x89D3, 0xE3E3, 0x8593, 0x95C5, 0x89C4, 0x9581, 0 };
|
|
|
|
short ebcdic_mm[] = { 0xC2C9, 0xC785, 0x95C4, 0x8981, 0x95E2, 0xA8E2, 0 };
|
|
|
|
void _ebcdic() { char* s = (char*) ebcdic_mm; s = (char*) ebcdic_ii; }
|
|
|
|
int main() { _ascii (); _ebcdic (); return 0; }
|
|
|
|
EOF
|
2010-05-08 20:22:50 +00:00
|
|
|
$CXX $CXXFLAGS -c -o $TMPO.o tmp_endianness_check.cpp
|
|
|
|
if strings $TMPO.o | grep BIGenDianSyS >/dev/null; then
|
2007-10-28 13:14:23 +00:00
|
|
|
_endian=big
|
|
|
|
else
|
|
|
|
_endian=little
|
|
|
|
fi
|
|
|
|
echo $_endian;
|
2010-05-08 20:22:50 +00:00
|
|
|
cc_check_clean tmp_endianness_check.cpp
|
2007-10-28 13:14:23 +00:00
|
|
|
|
2009-03-22 11:24:23 +00:00
|
|
|
#
|
|
|
|
# Determine a data type with the given length
|
|
|
|
#
|
|
|
|
find_type_with_size() {
|
|
|
|
for datatype in int short char long unknown; do
|
2010-05-08 20:22:50 +00:00
|
|
|
cat > tmp_find_type_with_size.cpp << EOF
|
2009-03-22 11:24:23 +00:00
|
|
|
typedef $datatype ac__type_sizeof_;
|
|
|
|
int main() {
|
|
|
|
static int test_array [1 - 2 * !(((long int) (sizeof (ac__type_sizeof_))) == $1)];
|
|
|
|
test_array [0] = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EOF
|
2010-05-08 20:22:50 +00:00
|
|
|
if $CXX $CXXFLAGS -c -o $TMPO.o tmp_find_type_with_size.cpp 2>/dev/null ; then
|
|
|
|
break
|
|
|
|
else
|
|
|
|
if test "$datatype" = "unknown"; then
|
|
|
|
echo "couldn't find data type with $1 bytes"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
continue
|
2009-03-22 11:24:23 +00:00
|
|
|
fi
|
|
|
|
done
|
2010-05-08 20:22:50 +00:00
|
|
|
cc_check_clean tmp_find_type_with_size.cpp
|
2009-03-22 11:24:23 +00:00
|
|
|
echo $datatype
|
|
|
|
}
|
|
|
|
|
2007-10-28 13:14:23 +00:00
|
|
|
#
|
|
|
|
# Determine data type sizes
|
|
|
|
#
|
|
|
|
echo_n "Type with 1 byte... "
|
|
|
|
type_1_byte=`find_type_with_size 1`
|
2007-12-02 20:59:19 +00:00
|
|
|
TMP="$?"
|
2007-10-28 13:14:23 +00:00
|
|
|
echo "$type_1_byte"
|
2007-12-02 20:59:19 +00:00
|
|
|
test $TMP -eq 0 || exit 1 # check exit code of subshell
|
2008-01-27 19:47:41 +00:00
|
|
|
|
2007-10-28 13:14:23 +00:00
|
|
|
echo_n "Type with 2 bytes... "
|
|
|
|
type_2_byte=`find_type_with_size 2`
|
2007-12-02 20:59:19 +00:00
|
|
|
TMP="$?"
|
2007-10-28 13:14:23 +00:00
|
|
|
echo "$type_2_byte"
|
2007-12-02 20:59:19 +00:00
|
|
|
test $TMP -eq 0 || exit 1 # check exit code of subshell
|
2008-01-27 19:47:41 +00:00
|
|
|
|
2007-10-28 13:14:23 +00:00
|
|
|
echo_n "Type with 4 bytes... "
|
|
|
|
type_4_byte=`find_type_with_size 4`
|
2007-12-02 20:59:19 +00:00
|
|
|
TMP="$?"
|
2007-10-28 13:14:23 +00:00
|
|
|
echo "$type_4_byte"
|
2007-12-02 20:59:19 +00:00
|
|
|
test $TMP -eq 0 || exit 1 # check exit code of subshell
|
2008-01-27 19:47:41 +00:00
|
|
|
|
2007-10-28 13:14:23 +00:00
|
|
|
#
|
|
|
|
# Check whether we can use x86 asm routines
|
|
|
|
#
|
2009-01-21 17:16:58 +00:00
|
|
|
echo_n "Compiling for x86... "
|
2007-10-28 13:14:23 +00:00
|
|
|
case $_host_cpu in
|
|
|
|
i386|i486|i586|i686)
|
|
|
|
_have_x86=yes
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
_have_x86=no
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
echo "$_have_x86"
|
|
|
|
|
|
|
|
#
|
|
|
|
# Determine build settings
|
|
|
|
#
|
|
|
|
echo_n "Checking hosttype... "
|
|
|
|
echo $_host_os
|
|
|
|
case $_host_os in
|
2010-02-02 11:46:35 +00:00
|
|
|
amigaos*)
|
|
|
|
CXXFLAGS="$CXXFLAGS -mcrt=newlib -mstrict-align -mcpu=750 -mtune=7400"
|
2010-07-24 23:11:24 +00:00
|
|
|
LDFLAGS="$LDFLAGS -mcrt=newlib -use-dynld -LSDK:Local/newib/lib"
|
2010-02-02 11:46:35 +00:00
|
|
|
# We have to use 'long' for our 4 byte typedef because AmigaOS already typedefs (u)int32
|
|
|
|
# as (unsigned) long, and consequently we'd get a compiler error otherwise.
|
|
|
|
type_4_byte='long'
|
2010-11-28 17:41:33 +00:00
|
|
|
add_line_to_config_mk 'AMIGAOS = 1'
|
2009-05-16 12:35:48 +00:00
|
|
|
;;
|
2010-08-02 17:11:25 +00:00
|
|
|
android)
|
2011-02-06 14:23:47 +00:00
|
|
|
CXXFLAGS="$CXXFLAGS --sysroot=$ANDROID_NDK/platforms/android-4/arch-arm"
|
2011-02-22 21:13:44 +00:00
|
|
|
CXXFLAGS="$CXXFLAGS -march=armv5te -mtune=xscale -msoft-float"
|
|
|
|
CXXFLAGS="$CXXFLAGS -fpic -ffunction-sections -funwind-tables"
|
|
|
|
if test "$_release_build" = yes; then
|
|
|
|
CXXFLAGS="$CXXFLAGS -fomit-frame-pointer -fstrict-aliasing"
|
|
|
|
else
|
|
|
|
CXXFLAGS="$CXXFLAGS -fno-omit-frame-pointer -fno-strict-aliasing"
|
|
|
|
fi
|
|
|
|
CXXFLAGS="$CXXFLAGS -finline-limit=300"
|
|
|
|
CXXFLAGS="$CXXFLAGS -Os -mthumb-interwork"
|
|
|
|
CXXFLAGS="$CXXFLAGS -D__ARM_ARCH_5__ -D__ARM_ARCH_5T__"
|
|
|
|
CXXFLAGS="$CXXFLAGS -D__ARM_ARCH_5E__ -D__ARM_ARCH_5TE__"
|
2011-02-06 14:23:47 +00:00
|
|
|
# supress 'mangling of 'va_list' has changed in GCC 4.4'
|
|
|
|
CXXFLAGS="$CXXFLAGS -Wno-psabi"
|
|
|
|
LDFLAGS="$LDFLAGS --sysroot=$ANDROID_NDK/platforms/android-4/arch-arm"
|
2011-02-22 21:13:44 +00:00
|
|
|
LDFLAGS="$LDFLAGS -mthumb-interwork"
|
2010-08-02 17:11:25 +00:00
|
|
|
add_line_to_config_mk "ANDROID_SDK = $ANDROID_SDK"
|
|
|
|
_unix=yes
|
|
|
|
_seq_midi=no
|
|
|
|
;;
|
2008-01-31 12:20:47 +00:00
|
|
|
beos*)
|
2010-07-20 08:25:13 +00:00
|
|
|
DEFINES="$DEFINES -DSYSTEM_NOT_SUPPORTING_D_TYPE"
|
2008-02-26 16:55:58 +00:00
|
|
|
# Needs -lbind -lsocket for the timidity MIDI driver
|
2009-01-05 20:12:28 +00:00
|
|
|
LDFLAGS="-L/boot/home/config/lib"
|
|
|
|
CFLAGS="-I/boot/home/config/include"
|
|
|
|
CXXFLAGS="$CXXFLAGS -fhuge-objects"
|
2008-01-31 12:20:47 +00:00
|
|
|
LIBS="$LIBS -lbind -lsocket"
|
2010-07-20 08:25:13 +00:00
|
|
|
_unix=yes
|
|
|
|
_seq_midi=no
|
2009-03-19 21:42:50 +00:00
|
|
|
;;
|
2010-02-02 11:46:35 +00:00
|
|
|
bsd* | hpux* | netbsd* | openbsd* | sunos*)
|
2010-07-20 08:25:13 +00:00
|
|
|
_unix=yes
|
2010-02-02 11:46:35 +00:00
|
|
|
;;
|
|
|
|
cygwin*)
|
|
|
|
echo ERROR: Cygwin building is not supported by ScummVM anymore. Consider using MinGW.
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
darwin*)
|
2010-07-20 08:25:13 +00:00
|
|
|
DEFINES="$DEFINES -DMACOSX"
|
2010-02-02 11:46:35 +00:00
|
|
|
LIBS="$LIBS -framework AudioUnit -framework AudioToolbox -framework Carbon -framework CoreMIDI"
|
|
|
|
add_line_to_config_mk 'MACOSX = 1'
|
2010-07-20 08:25:13 +00:00
|
|
|
_unix=yes
|
2010-02-02 11:46:35 +00:00
|
|
|
;;
|
|
|
|
dreamcast)
|
|
|
|
DEFINES="$DEFINES -D__DC__ -DNONSTANDARD_PORT"
|
|
|
|
;;
|
2010-08-02 17:11:25 +00:00
|
|
|
ds)
|
|
|
|
# TODO Nintendo DS
|
|
|
|
DEFINES="$DEFINES -D__DS__ -DNDS -DARM9 -DARM -DNONSTANDARD_PORT"
|
|
|
|
CXXFLAGS="$CXXFLAGS -isystem $DEVKITPRO/libnds/include -isystem $DEVKITPRO/devkitARM/arm-eabi/include"
|
2010-08-02 17:12:03 +00:00
|
|
|
CXXFLAGS="$CXXFLAGS -mcpu=arm9tdmi -mtune=arm9tdmi -fomit-frame-pointer -mthumb-interwork"
|
|
|
|
CXXFLAGS="$CXXFLAGS -ffunction-sections -fdata-sections -fno-strict-aliasing"
|
2010-09-06 20:34:00 +00:00
|
|
|
CXXFLAGS="$CXXFLAGS -fuse-cxa-atexit"
|
2010-08-13 07:25:21 +00:00
|
|
|
LDFLAGS="$LDFLAGS -specs=ds_arm9.specs -mthumb-interwork -mno-fpu -Wl,-Map,map.txt"
|
2010-08-13 19:55:22 +00:00
|
|
|
if test "$_dynamic_modules" = no ; then
|
|
|
|
LDFLAGS="$LDFLAGS -Wl,--gc-sections"
|
2010-08-15 08:15:28 +00:00
|
|
|
else
|
2011-02-20 12:03:28 +00:00
|
|
|
LDFLAGS="$LDFLAGS -Wl,--no-gc-sections"
|
|
|
|
# TODO automate this required 2 step linking phase
|
|
|
|
# LDFLAGS="$LDFLAGS -Wl,--retain-symbols-file,ds.syms"
|
2010-08-15 08:15:28 +00:00
|
|
|
fi
|
2010-08-02 17:11:25 +00:00
|
|
|
LDFLAGS="$LDFLAGS -L$DEVKITPRO/libnds/lib"
|
|
|
|
LIBS="$LIBS -lnds9"
|
|
|
|
;;
|
2010-02-02 11:46:35 +00:00
|
|
|
freebsd*)
|
|
|
|
LDFLAGS="$LDFLAGS -L/usr/local/lib"
|
|
|
|
CXXFLAGS="$CXXFLAGS -I/usr/local/include"
|
2010-07-20 08:25:13 +00:00
|
|
|
_unix=yes
|
2010-02-02 11:46:35 +00:00
|
|
|
;;
|
|
|
|
gamecube)
|
|
|
|
CXXFLAGS="$CXXFLAGS -Os -mogc -mcpu=750 -meabi -mhard-float"
|
|
|
|
CXXFLAGS="$CXXFLAGS -ffunction-sections -fdata-sections -fmodulo-sched"
|
2010-09-15 07:44:24 +00:00
|
|
|
CXXFLAGS="$CXXFLAGS -fuse-cxa-atexit"
|
2010-08-14 00:56:12 +00:00
|
|
|
CXXFLAGS="$CXXFLAGS -I$DEVKITPRO/libogc/include"
|
2010-06-15 18:42:08 +00:00
|
|
|
# libogc is required to link the cc tests (includes _start())
|
2010-08-14 00:56:12 +00:00
|
|
|
LDFLAGS="$LDFLAGS -mogc -mcpu=750 -L$DEVKITPRO/libogc/lib/cube -logc"
|
2010-09-05 12:49:29 +00:00
|
|
|
if test "$_dynamic_modules" = "yes" ; then
|
|
|
|
# retarded toolchain patch forces --gc-sections, overwrite it
|
|
|
|
LDFLAGS="$LDFLAGS -Wl,--no-gc-sections"
|
|
|
|
fi
|
2010-02-02 11:46:35 +00:00
|
|
|
;;
|
2009-01-05 20:12:28 +00:00
|
|
|
haiku*)
|
2010-07-20 08:25:13 +00:00
|
|
|
DEFINES="$DEFINES -DSYSTEM_NOT_SUPPORTING_D_TYPE"
|
2009-01-05 20:12:28 +00:00
|
|
|
# Needs -lnetwork for the timidity MIDI driver
|
|
|
|
LIBS="$LIBS -lnetwork"
|
2010-07-20 08:25:13 +00:00
|
|
|
_unix=yes
|
|
|
|
_seq_midi=no
|
2009-03-19 21:42:50 +00:00
|
|
|
;;
|
2007-10-28 13:14:23 +00:00
|
|
|
irix*)
|
2010-07-20 08:25:13 +00:00
|
|
|
DEFINES="$DEFINES -DIRIX -DSYSTEM_NOT_SUPPORTING_D_TYPE"
|
2009-09-25 12:11:27 +00:00
|
|
|
LIBS="$LIBS -lmd -lfastm -lm"
|
2007-10-28 13:14:23 +00:00
|
|
|
_ranlib=:
|
2010-07-20 08:25:13 +00:00
|
|
|
_unix=yes
|
2007-10-28 13:14:23 +00:00
|
|
|
;;
|
2010-02-02 11:46:35 +00:00
|
|
|
linux* | uclinux*)
|
|
|
|
# When not cross-compiling, enable large file support, but don't
|
|
|
|
# care if getconf doesn't exist or doesn't recognize LFS_CFLAGS.
|
|
|
|
if test -z "$_host"; then
|
|
|
|
CXXFLAGS="$CXXFLAGS $(getconf LFS_CFLAGS 2>/dev/null)"
|
|
|
|
fi
|
2010-07-20 08:25:13 +00:00
|
|
|
_unix=yes
|
2011-01-06 00:43:36 +00:00
|
|
|
DEFINES="$DEFINES -DLUA_USE_POSIX"
|
2007-10-28 13:14:23 +00:00
|
|
|
;;
|
|
|
|
mingw*)
|
2008-09-12 01:28:28 +00:00
|
|
|
DEFINES="$DEFINES -DWIN32 -D__USE_MINGW_ANSI_STDIO=0"
|
2007-10-28 13:14:23 +00:00
|
|
|
LIBS="$LIBS -lmingw32 -lwinmm"
|
|
|
|
OBJS="$OBJS scummvmico.o"
|
2010-11-28 17:41:33 +00:00
|
|
|
add_line_to_config_mk 'WIN32 = 1'
|
2007-10-28 13:14:23 +00:00
|
|
|
;;
|
|
|
|
mint*)
|
2010-07-20 08:25:13 +00:00
|
|
|
DEFINES="$DEFINES -DSYSTEM_NOT_SUPPORTING_D_TYPE"
|
|
|
|
_unix=yes
|
2007-10-28 13:14:23 +00:00
|
|
|
;;
|
2010-08-01 17:16:39 +00:00
|
|
|
n64)
|
2010-08-17 11:19:34 +00:00
|
|
|
DEFINES="$DEFINES -D__N64__ -DLIMIT_FPS -DNONSTANDARD_PORT"
|
2010-08-01 17:16:39 +00:00
|
|
|
DEFINES="$DEFINES -DDISABLE_DEFAULT_SAVEFILEMANAGER -DDISABLE_COMMAND_LINE"
|
2010-08-03 11:25:52 +00:00
|
|
|
DEFINES="$DEFINES -DDISABLE_FANCY_THEMES -DDISABLE_DOSBOX_OPL -DDISABLE_SID -DDISABLE_NES_APU"
|
2010-10-07 15:45:38 +00:00
|
|
|
DEFINES="$DEFINES -DREDUCE_MEMORY_USAGE"
|
2010-08-01 17:16:39 +00:00
|
|
|
;;
|
2010-02-02 11:46:35 +00:00
|
|
|
os2-emx*)
|
2010-07-20 08:25:13 +00:00
|
|
|
_unix=yes # FIXME??? Why??
|
2009-03-25 21:58:16 +00:00
|
|
|
;;
|
2009-10-08 20:59:53 +00:00
|
|
|
ps2)
|
|
|
|
# TODO ps2
|
2009-11-18 16:09:38 +00:00
|
|
|
CXXFLAGS="$CXXFLAGS -G2"
|
2009-10-09 11:38:13 +00:00
|
|
|
DEFINES="$DEFINES -D_EE -D__PLAYSTATION2__"
|
2009-10-08 20:59:53 +00:00
|
|
|
;;
|
2010-02-02 11:46:35 +00:00
|
|
|
psp)
|
2010-09-01 12:56:34 +00:00
|
|
|
CXXFLAGS="$CXXFLAGS -O3 -I$PSPSDK/include -D_PSP_FW_VERSION=150"
|
2010-02-02 11:46:35 +00:00
|
|
|
;;
|
|
|
|
solaris*)
|
2010-07-20 08:25:13 +00:00
|
|
|
DEFINES="$DEFINES -DSOLARIS -DSYSTEM_NOT_SUPPORTING_D_TYPE"
|
2010-02-02 11:46:35 +00:00
|
|
|
# Needs -lbind -lsocket for the timidity MIDI driver
|
|
|
|
LIBS="$LIBS -lnsl -lsocket"
|
2010-07-20 08:25:13 +00:00
|
|
|
_unix=yes
|
2010-02-02 11:46:35 +00:00
|
|
|
;;
|
|
|
|
wii)
|
|
|
|
CXXFLAGS="$CXXFLAGS -Os -mrvl -mcpu=750 -meabi -mhard-float"
|
|
|
|
CXXFLAGS="$CXXFLAGS -ffunction-sections -fdata-sections -fmodulo-sched"
|
2010-09-06 20:34:00 +00:00
|
|
|
CXXFLAGS="$CXXFLAGS -fuse-cxa-atexit"
|
2010-08-14 00:56:12 +00:00
|
|
|
CXXFLAGS="$CXXFLAGS -I$DEVKITPRO/libogc/include"
|
2010-06-15 18:30:30 +00:00
|
|
|
# libogc is required to link the cc tests (includes _start())
|
2010-08-14 00:56:12 +00:00
|
|
|
LDFLAGS="$LDFLAGS -mrvl -mcpu=750 -L$DEVKITPRO/libogc/lib/wii -logc"
|
2010-09-05 12:49:29 +00:00
|
|
|
if test "$_dynamic_modules" = "yes" ; then
|
|
|
|
# retarded toolchain patch forces --gc-sections, overwrite it
|
|
|
|
LDFLAGS="$LDFLAGS -Wl,--no-gc-sections"
|
|
|
|
fi
|
2010-02-02 11:46:35 +00:00
|
|
|
;;
|
2009-07-28 22:42:08 +00:00
|
|
|
wince)
|
2011-03-08 18:46:48 +00:00
|
|
|
CXXFLAGS="$CXXFLAGS -O3 -fno-inline-functions -march=armv4 -mtune=xscale"
|
2009-11-18 16:09:38 +00:00
|
|
|
DEFINES="$DEFINES -D_WIN32_WCE=300 -D__ARM__ -D_ARM_ -DUNICODE -DFPM_DEFAULT -DNONSTANDARD_PORT"
|
|
|
|
DEFINES="$DEFINES -DWIN32 -Dcdecl= -D__cdecl__="
|
2009-07-28 22:42:08 +00:00
|
|
|
;;
|
2007-10-28 13:14:23 +00:00
|
|
|
# given this is a shell script assume some type of unix
|
|
|
|
*)
|
|
|
|
echo "WARNING: could not establish system type, assuming unix like"
|
2010-07-20 08:25:13 +00:00
|
|
|
_unix=yes
|
2007-10-28 13:14:23 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
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
|
2010-04-09 14:30:10 +00:00
|
|
|
echo "Cross-compiling to $_host"
|
2004-12-16 22:15:32 +00:00
|
|
|
case "$_host" in
|
2010-08-02 17:11:25 +00:00
|
|
|
android)
|
|
|
|
_unix=yes
|
|
|
|
_need_memalign=yes
|
2011-02-06 14:23:47 +00:00
|
|
|
# we link a .so as default
|
|
|
|
LDFLAGS="$LDFLAGS -shared -Wl,-Bsymbolic,--no-undefined"
|
|
|
|
HOSTEXEPRE=lib
|
|
|
|
HOSTEXEEXT=.so
|
2010-08-02 17:11:25 +00:00
|
|
|
add_line_to_config_mk 'USE_ARM_SOUND_ASM = 1'
|
|
|
|
add_line_to_config_mk 'USE_ARM_SMUSH_ASM = 1'
|
|
|
|
add_line_to_config_mk 'USE_ARM_GFX_ASM = 1'
|
|
|
|
add_line_to_config_mk 'USE_ARM_SCALER_ASM = 1'
|
|
|
|
add_line_to_config_mk 'USE_ARM_COSTUME_ASM = 1'
|
|
|
|
_backend="android"
|
|
|
|
_port_mk="backends/platform/android/android.mk"
|
2011-02-06 14:23:47 +00:00
|
|
|
_build_scalers=no
|
2010-08-02 17:11:25 +00:00
|
|
|
_seq_midi=no
|
2011-02-18 18:00:43 +00:00
|
|
|
_mt32emu=no
|
|
|
|
_timidity=no
|
2010-08-02 17:11:25 +00:00
|
|
|
;;
|
2010-02-23 21:01:05 +00:00
|
|
|
arm-linux|arm*-linux-gnueabi|arm-*-linux)
|
2010-07-20 08:25:13 +00:00
|
|
|
_unix=yes
|
2007-06-24 20:35:02 +00:00
|
|
|
_need_memalign=yes
|
|
|
|
add_line_to_config_mk 'USE_ARM_SOUND_ASM = 1'
|
|
|
|
add_line_to_config_mk 'USE_ARM_SMUSH_ASM = 1'
|
2010-04-16 12:58:42 +00:00
|
|
|
add_line_to_config_mk 'USE_ARM_GFX_ASM = 1'
|
|
|
|
add_line_to_config_mk 'USE_ARM_COSTUME_ASM = 1'
|
|
|
|
add_line_to_config_mk 'USE_ARM_SCALER_ASM = 1'
|
2005-10-26 17:39:23 +00:00
|
|
|
;;
|
2010-02-02 11:46:35 +00:00
|
|
|
arm-riscos|linupy)
|
2010-07-20 08:25:13 +00:00
|
|
|
DEFINES="$DEFINES -DLINUPY"
|
|
|
|
_unix=yes
|
2009-11-09 14:43:05 +00:00
|
|
|
_need_memalign=yes
|
|
|
|
;;
|
2010-02-02 11:46:35 +00:00
|
|
|
bfin*)
|
2009-08-22 12:35:49 +00:00
|
|
|
_need_memalign=yes
|
2010-02-02 11:46:35 +00:00
|
|
|
;;
|
2010-08-26 11:28:30 +00:00
|
|
|
caanoo)
|
2010-10-20 13:03:19 +00:00
|
|
|
# This uses the GPH backend.
|
|
|
|
DEFINES="$DEFINES -DGPH_DEVICE"
|
2010-09-20 19:33:58 +00:00
|
|
|
DEFINES="$DEFINES -DCAANOO -DREDUCE_MEMORY_USAGE"
|
|
|
|
if test "$_debug_build" = yes; then
|
|
|
|
DEFINES="$DEFINES -DGPH_DEBUG"
|
|
|
|
else
|
|
|
|
# Use -O3 on the Caanoo for non-debug builds.
|
|
|
|
CXXFLAGS="$CXXFLAGS -O3"
|
|
|
|
fi
|
2010-08-26 11:28:30 +00:00
|
|
|
CXXFLAGS="$CXXFLAGS -mcpu=arm926ej-s -mtune=arm926ej-s"
|
|
|
|
ASFLAGS="$ASFLAGS"
|
|
|
|
_unix=yes
|
|
|
|
_need_memalign=yes
|
|
|
|
add_line_to_config_mk 'USE_ARM_SOUND_ASM = 1'
|
|
|
|
add_line_to_config_mk 'USE_ARM_SMUSH_ASM = 1'
|
|
|
|
add_line_to_config_mk 'USE_ARM_GFX_ASM = 1'
|
|
|
|
add_line_to_config_mk 'USE_ARM_COSTUME_ASM = 1'
|
|
|
|
add_line_to_config_mk 'USE_ARM_SCALER_ASM = 1'
|
2010-09-09 09:55:07 +00:00
|
|
|
_backend="gph"
|
2010-08-26 11:28:30 +00:00
|
|
|
_build_hq_scalers=no
|
|
|
|
_mt32emu=no
|
|
|
|
_vkeybd=yes
|
|
|
|
_seq_midi=no
|
2010-09-09 09:55:07 +00:00
|
|
|
_port_mk="backends/platform/gph/caanoo-bundle.mk"
|
2010-10-12 02:18:11 +00:00
|
|
|
;;
|
2010-02-02 11:46:35 +00:00
|
|
|
*darwin*)
|
|
|
|
_ranlib=$_host-ranlib
|
|
|
|
_strip=$_host-strip
|
|
|
|
;;
|
2010-08-19 12:43:37 +00:00
|
|
|
dingux)
|
2010-10-07 15:45:38 +00:00
|
|
|
DEFINES="$DEFINES -DUNIX -DDINGUX -DDISABLE_DOSBOX_OPL -DREDUCE_MEMORY_USAGE"
|
2010-08-19 12:43:37 +00:00
|
|
|
ASFLAGS="$ASFLAGS"
|
|
|
|
CXXFLAGS="$CXXFLAGS -msoft-float -mips32"
|
|
|
|
_need_memalign=yes
|
|
|
|
_backend="dingux"
|
|
|
|
_mt32emu=no
|
|
|
|
_vkeybd=yes
|
|
|
|
_build_hq_scalers=no
|
|
|
|
_keymapper=no
|
2010-08-19 15:13:03 +00:00
|
|
|
# Force disable vorbis on dingux, it has terrible performance compared to tremor
|
|
|
|
_vorbis=no
|
2010-08-20 05:06:07 +00:00
|
|
|
# Force disable seq on dingux, no way to use it and it would get enabled by default with configure
|
|
|
|
_seq_midi=no
|
2010-09-08 08:26:20 +00:00
|
|
|
_port_mk="backends/platform/dingux/dingux.mk"
|
2010-08-19 12:43:37 +00:00
|
|
|
;;
|
2010-02-02 11:46:35 +00:00
|
|
|
dreamcast)
|
|
|
|
DEFINES="$DEFINES -DDISABLE_DEFAULT_SAVEFILEMANAGER -DDISABLE_TEXT_CONSOLE -DDISABLE_COMMAND_LINE"
|
|
|
|
CXXFLAGS="$CXXFLAGS -O3 -funroll-loops -fschedule-insns2 -fomit-frame-pointer -fdelete-null-pointer-checks"
|
|
|
|
_need_memalign=yes
|
|
|
|
_backend="dc"
|
2010-08-02 17:12:34 +00:00
|
|
|
_build_scalers=no
|
|
|
|
_mad=yes
|
|
|
|
_zlib=yes
|
2010-04-16 13:03:26 +00:00
|
|
|
add_line_to_config_mk 'ronindir = /usr/local/ronin'
|
2010-04-16 10:59:23 +00:00
|
|
|
_port_mk="backends/platform/dc/dreamcast.mk"
|
2010-02-02 11:46:35 +00:00
|
|
|
;;
|
2010-08-02 17:11:25 +00:00
|
|
|
ds)
|
|
|
|
# TODO: complete this
|
|
|
|
DEFINES="$DEFINES -DDISABLE_FANCY_THEMES -DVECTOR_RENDERER_FORMAT=1555"
|
|
|
|
DEFINES="$DEFINES -DDISABLE_DEFAULT_SAVEFILEMANAGER"
|
|
|
|
DEFINES="$DEFINES -DREDUCE_MEMORY_USAGE -DSTREAM_AUDIO_FROM_DISK"
|
2010-08-03 11:25:37 +00:00
|
|
|
DEFINES="$DEFINES -DDISABLE_DOSBOX_OPL -DDISABLE_SID -DDISABLE_NES_APU"
|
2010-09-04 22:19:20 +00:00
|
|
|
DEFINES="$DEFINES -DDISABLE_COMMAND_LINE"
|
2010-08-02 17:11:25 +00:00
|
|
|
_need_memalign=yes
|
|
|
|
add_line_to_config_mk 'USE_ARM_SOUND_ASM = 1'
|
|
|
|
add_line_to_config_mk 'USE_ARM_SMUSH_ASM = 1'
|
|
|
|
add_line_to_config_mk 'USE_ARM_GFX_ASM = 1'
|
|
|
|
add_line_to_config_mk 'USE_ARM_COSTUME_ASM = 1'
|
|
|
|
add_line_to_config_mk 'USE_ARM_SCALER_ASM = 1'
|
2010-09-04 22:19:20 +00:00
|
|
|
add_line_to_config_h '#define DISABLE_TEXT_CONSOLE'
|
2010-08-02 17:11:25 +00:00
|
|
|
_backend="ds"
|
2010-08-02 17:12:34 +00:00
|
|
|
_build_scalers=no
|
|
|
|
_mt32emu=no
|
2010-08-02 17:11:25 +00:00
|
|
|
_port_mk="backends/platform/ds/ds.mk"
|
|
|
|
;;
|
2010-02-02 11:46:35 +00:00
|
|
|
gamecube)
|
|
|
|
_endian=big
|
|
|
|
_need_memalign=yes
|
|
|
|
_backend="wii"
|
2010-08-02 17:12:34 +00:00
|
|
|
_build_scalers=no
|
|
|
|
_mt32emu=no
|
2010-02-02 11:46:35 +00:00
|
|
|
_port_mk="backends/platform/wii/wii.mk"
|
|
|
|
add_line_to_config_mk 'GAMECUBE = 1'
|
2010-08-24 18:44:14 +00:00
|
|
|
add_line_to_config_h '#define AUDIO_REVERSE_STEREO'
|
2010-02-02 11:46:35 +00:00
|
|
|
add_line_to_config_h '#define GAMECUBE'
|
|
|
|
add_line_to_config_h "/* #define DEBUG_WII_USBGECKO */"
|
|
|
|
add_line_to_config_h "/* #define DEBUG_WII_MEMSTATS */"
|
|
|
|
add_line_to_config_h "/* #define DEBUG_WII_GDB */"
|
2010-08-14 00:56:12 +00:00
|
|
|
add_line_to_config_h "#define USE_WII_DI"
|
2009-08-22 12:35:49 +00:00
|
|
|
;;
|
2010-02-02 11:46:35 +00:00
|
|
|
gp2x)
|
2010-10-20 13:03:19 +00:00
|
|
|
# This uses the GPH backend.
|
|
|
|
DEFINES="$DEFINES -DGPH_DEVICE"
|
2010-09-20 19:33:58 +00:00
|
|
|
DEFINES="$DEFINES -DGP2X -DREDUCE_MEMORY_USAGE"
|
|
|
|
if test "$_debug_build" = yes; then
|
|
|
|
DEFINES="$DEFINES -DGPH_DEBUG"
|
|
|
|
fi
|
2010-02-02 11:46:35 +00:00
|
|
|
CXXFLAGS="$CXXFLAGS -march=armv4t"
|
|
|
|
ASFLAGS="$ASFLAGS -mfloat-abi=soft"
|
|
|
|
LDFLAGS="$LDFLAGS -static"
|
2010-07-20 08:25:13 +00:00
|
|
|
_unix=yes
|
2009-08-22 12:35:49 +00:00
|
|
|
_need_memalign=yes
|
|
|
|
add_line_to_config_mk 'USE_ARM_SOUND_ASM = 1'
|
|
|
|
add_line_to_config_mk 'USE_ARM_SMUSH_ASM = 1'
|
2009-08-29 20:43:00 +00:00
|
|
|
add_line_to_config_mk 'USE_ARM_GFX_ASM = 1'
|
2010-02-02 11:46:35 +00:00
|
|
|
add_line_to_config_mk 'USE_ARM_COSTUME_ASM = 1'
|
2010-04-16 12:58:42 +00:00
|
|
|
add_line_to_config_mk 'USE_ARM_SCALER_ASM = 1'
|
2010-02-02 11:46:35 +00:00
|
|
|
_backend="gp2x"
|
2010-08-02 17:12:34 +00:00
|
|
|
_build_hq_scalers=no
|
|
|
|
_mt32emu=no
|
|
|
|
_vkeybd=yes
|
2010-07-20 08:25:13 +00:00
|
|
|
_seq_midi=no
|
2010-06-15 20:45:13 +00:00
|
|
|
_port_mk="backends/platform/gp2x/gp2x-bundle.mk"
|
2009-03-18 23:17:54 +00:00
|
|
|
;;
|
2009-06-04 08:30:31 +00:00
|
|
|
gp2xwiz)
|
2010-10-20 13:03:19 +00:00
|
|
|
# This uses the GPH backend.
|
|
|
|
DEFINES="$DEFINES -DGPH_DEVICE"
|
2010-09-20 19:33:58 +00:00
|
|
|
DEFINES="$DEFINES -DGP2XWIZ -DREDUCE_MEMORY_USAGE"
|
|
|
|
if test "$_debug_build" = yes; then
|
|
|
|
DEFINES="$DEFINES -DGPH_DEBUG"
|
|
|
|
fi
|
2009-06-04 08:30:31 +00:00
|
|
|
CXXFLAGS="$CXXFLAGS -mcpu=arm926ej-s -mtune=arm926ej-s"
|
2009-11-05 13:47:17 +00:00
|
|
|
ASFLAGS="$ASFLAGS -mfloat-abi=soft"
|
2010-07-20 08:25:13 +00:00
|
|
|
_unix=yes
|
2009-06-04 08:30:31 +00:00
|
|
|
_need_memalign=yes
|
|
|
|
add_line_to_config_mk 'USE_ARM_SOUND_ASM = 1'
|
|
|
|
add_line_to_config_mk 'USE_ARM_SMUSH_ASM = 1'
|
2009-07-28 20:22:38 +00:00
|
|
|
add_line_to_config_mk 'USE_ARM_GFX_ASM = 1'
|
|
|
|
add_line_to_config_mk 'USE_ARM_COSTUME_ASM = 1'
|
2010-04-16 12:58:42 +00:00
|
|
|
add_line_to_config_mk 'USE_ARM_SCALER_ASM = 1'
|
2010-09-09 09:55:07 +00:00
|
|
|
_backend="gph"
|
2010-08-02 17:12:34 +00:00
|
|
|
_build_hq_scalers=no
|
|
|
|
_mt32emu=no
|
|
|
|
_vkeybd=yes
|
2010-07-20 08:25:13 +00:00
|
|
|
_seq_midi=no
|
2010-09-09 09:55:07 +00:00
|
|
|
_port_mk="backends/platform/gph/gp2xwiz-bundle.mk"
|
2010-01-25 01:39:44 +00:00
|
|
|
;;
|
2010-02-02 11:46:35 +00:00
|
|
|
iphone)
|
2010-07-20 08:25:13 +00:00
|
|
|
DEFINES="$DEFINES -DIPHONE"
|
|
|
|
_unix=yes
|
2007-06-24 20:35:02 +00:00
|
|
|
_need_memalign=yes
|
2007-06-26 08:37:40 +00:00
|
|
|
add_line_to_config_mk 'USE_ARM_SOUND_ASM = 1'
|
|
|
|
add_line_to_config_mk 'USE_ARM_SMUSH_ASM = 1'
|
2010-02-02 11:46:35 +00:00
|
|
|
_backend="iphone"
|
2010-08-02 17:12:34 +00:00
|
|
|
_build_hq_scalers=no
|
2010-07-20 08:25:13 +00:00
|
|
|
_seq_midi=no
|
2005-05-09 21:21:21 +00:00
|
|
|
;;
|
2007-01-13 13:55:30 +00:00
|
|
|
m68k-atari-mint)
|
2010-07-20 08:25:13 +00:00
|
|
|
DEFINES="$DEFINES -DSYSTEM_NOT_SUPPORTING_D_TYPE"
|
|
|
|
_unix=yes
|
2007-06-24 20:35:02 +00:00
|
|
|
_endian=big
|
|
|
|
_need_memalign=yes
|
2007-01-13 13:55:30 +00:00
|
|
|
_ranlib=m68k-atari-mint-ranlib
|
2007-12-19 14:03:53 +00:00
|
|
|
_ar="m68k-atari-mint-ar cru"
|
2010-07-20 08:25:13 +00:00
|
|
|
_seq_midi=no
|
2007-01-13 13:55:30 +00:00
|
|
|
;;
|
2008-02-07 15:23:27 +00:00
|
|
|
*mingw32*)
|
|
|
|
_sdlconfig=$_host-sdl-config
|
|
|
|
_windres=$_host-windres
|
|
|
|
_ar="$_host-ar cru"
|
|
|
|
_ranlib=$_host-ranlib
|
2007-11-13 08:06:15 +00:00
|
|
|
;;
|
2010-05-23 19:24:19 +00:00
|
|
|
mips-sgi*)
|
2010-10-13 12:45:14 +00:00
|
|
|
LDFLAGS="$LDFLAGS -static-libgcc"
|
|
|
|
LIBS="$LIBS -laudio"
|
2010-05-23 19:24:19 +00:00
|
|
|
_endian=big
|
|
|
|
_need_memalign=yes
|
|
|
|
;;
|
2010-02-02 11:46:35 +00:00
|
|
|
motoezx)
|
2010-07-20 08:25:13 +00:00
|
|
|
DEFINES="$DEFINES -DMOTOEZX"
|
2010-02-02 11:46:35 +00:00
|
|
|
ASFLAGS="$ASFLAGS -mfpu=vfp"
|
2010-07-20 08:25:13 +00:00
|
|
|
_unix=yes
|
2007-11-13 08:06:15 +00:00
|
|
|
_need_memalign=yes
|
2007-12-31 01:50:18 +00:00
|
|
|
add_line_to_config_mk 'USE_ARM_SOUND_ASM = 1'
|
|
|
|
add_line_to_config_mk 'USE_ARM_SMUSH_ASM = 1'
|
2010-02-02 11:46:35 +00:00
|
|
|
add_line_to_config_mk 'USE_ARM_GFX_ASM = 1'
|
|
|
|
add_line_to_config_mk 'USE_ARM_COSTUME_ASM = 1'
|
|
|
|
add_line_to_config_mk 'USE_ARM_SCALER_ASM = 1'
|
|
|
|
_backend="linuxmoto"
|
2010-08-02 17:12:34 +00:00
|
|
|
_build_hq_scalers=no
|
|
|
|
_mt32emu=no
|
|
|
|
_vkeybd=yes
|
2010-07-20 08:25:13 +00:00
|
|
|
_seq_midi=no
|
2010-02-02 11:46:35 +00:00
|
|
|
_port_mk="backends/platform/linuxmoto/linuxmoto.mk"
|
2007-11-13 08:06:15 +00:00
|
|
|
;;
|
2010-02-02 11:46:35 +00:00
|
|
|
motomagx)
|
2010-07-20 08:25:13 +00:00
|
|
|
DEFINES="$DEFINES -DMOTOMAGX"
|
2010-02-02 11:46:35 +00:00
|
|
|
ASFLAGS="$ASFLAGS -mfpu=vfp"
|
2010-07-20 08:25:13 +00:00
|
|
|
_unix=yes
|
2009-07-28 22:42:08 +00:00
|
|
|
_need_memalign=yes
|
|
|
|
add_line_to_config_mk 'USE_ARM_SOUND_ASM = 1'
|
|
|
|
add_line_to_config_mk 'USE_ARM_SMUSH_ASM = 1'
|
|
|
|
add_line_to_config_mk 'USE_ARM_GFX_ASM = 1'
|
|
|
|
add_line_to_config_mk 'USE_ARM_COSTUME_ASM = 1'
|
|
|
|
add_line_to_config_mk 'USE_ARM_SCALER_ASM = 1'
|
2010-02-02 11:46:35 +00:00
|
|
|
_backend="linuxmoto"
|
2010-08-02 17:12:34 +00:00
|
|
|
_build_hq_scalers=no
|
|
|
|
_mt32emu=no
|
|
|
|
_vkeybd=yes
|
2010-07-20 08:25:13 +00:00
|
|
|
_seq_midi=no
|
2010-02-02 11:46:35 +00:00
|
|
|
_port_mk="backends/platform/linuxmoto/linuxmoto.mk"
|
2009-03-19 18:56:54 +00:00
|
|
|
;;
|
2010-08-01 17:16:39 +00:00
|
|
|
n64)
|
2010-08-02 20:38:06 +00:00
|
|
|
CXXFLAGS="$CXXFLAGS -mno-extern-sdata --param max-inline-insns-auto=20 -fomit-frame-pointer"
|
|
|
|
CXXFLAGS="$CXXFLAGS -march=vr4300 -mtune=vr4300 -mhard-float"
|
|
|
|
LDFLAGS="$LDFLAGS -march=vr4300 -mtune=vr4300 -nodefaultlibs -nostartfiles -mno-crt0"
|
|
|
|
LDFLAGS="$LDFLAGS -L$N64SDK/hkz-libn64 -L$N64SDK/lib"
|
2010-08-01 17:16:39 +00:00
|
|
|
LDFLAGS="$LDFLAGS -T n64ld_cpp.x -Xlinker -Map -Xlinker scummvm.map"
|
|
|
|
_backend="n64"
|
|
|
|
_need_memalign=yes
|
|
|
|
_mt32emu=no
|
|
|
|
_build_scalers=no
|
|
|
|
_indeo3=no
|
|
|
|
_translation=no
|
|
|
|
_keymapper=no
|
|
|
|
_text_console=no
|
|
|
|
_vkeybd=yes
|
|
|
|
_dynamic_modules=no
|
|
|
|
_plugins_default=static
|
|
|
|
# Force use of libmad, libtremor and zlib
|
2010-11-07 12:09:53 +00:00
|
|
|
_mad=no
|
2010-08-01 17:16:39 +00:00
|
|
|
_tremor=yes
|
|
|
|
_zlib=yes
|
2010-09-08 18:04:38 +00:00
|
|
|
_port_mk="backends/platform/n64/n64.mk"
|
2010-08-01 17:16:39 +00:00
|
|
|
;;
|
2010-02-02 11:46:35 +00:00
|
|
|
neuros)
|
2010-07-20 08:25:13 +00:00
|
|
|
DEFINES="$DEFINES -DNEUROS"
|
|
|
|
_unix=yes
|
2009-03-25 21:58:16 +00:00
|
|
|
_need_memalign=yes
|
2010-02-02 11:46:35 +00:00
|
|
|
_backend='null'
|
2010-08-02 17:12:34 +00:00
|
|
|
_build_hq_scalers=no
|
|
|
|
_mt32emu=no
|
2010-02-02 11:46:35 +00:00
|
|
|
;;
|
2010-09-06 17:35:27 +00:00
|
|
|
openpandora)
|
2010-09-20 19:33:58 +00:00
|
|
|
DEFINES="$DEFINES -DOPENPANDORA -DREDUCE_MEMORY_USAGE"
|
|
|
|
if test "$_release_build" = no; then
|
|
|
|
DEFINES="$DEFINES -DOP_DEBUG"
|
|
|
|
else
|
|
|
|
# Use -O3 on the OpenPandora for non-debug builds.
|
|
|
|
CXXFLAGS="$CXXFLAGS -O3"
|
|
|
|
fi
|
2010-09-06 17:35:27 +00:00
|
|
|
CXXFLAGS="$CXXFLAGS -march=armv7-a -mtune=cortex-a8 -mfpu=neon"
|
|
|
|
ASFLAGS="$ASFLAGS -mfloat-abi=soft"
|
|
|
|
_unix=yes
|
|
|
|
_need_memalign=yes
|
|
|
|
add_line_to_config_mk 'USE_ARM_SOUND_ASM = 1'
|
|
|
|
add_line_to_config_mk 'USE_ARM_SMUSH_ASM = 1'
|
|
|
|
add_line_to_config_mk 'USE_ARM_GFX_ASM = 1'
|
|
|
|
add_line_to_config_mk 'USE_ARM_COSTUME_ASM = 1'
|
|
|
|
add_line_to_config_mk 'USE_ARM_SCALER_ASM = 1'
|
|
|
|
_backend="openpandora"
|
|
|
|
_build_hq_scalers=yes
|
|
|
|
_mt32emu=no
|
|
|
|
_vkeybd=no
|
|
|
|
_seq_midi=no
|
|
|
|
_port_mk="backends/platform/openpandora/op-bundle.mk"
|
2010-10-12 02:18:11 +00:00
|
|
|
;;
|
2010-02-02 11:46:35 +00:00
|
|
|
ppc-amigaos)
|
|
|
|
_endian=big
|
|
|
|
_need_memalign=yes
|
2009-03-25 21:58:16 +00:00
|
|
|
;;
|
2009-10-08 20:59:53 +00:00
|
|
|
ps2)
|
|
|
|
# TODO: complete this
|
2009-10-20 23:07:32 +00:00
|
|
|
DEFINES="$DEFINES -DDISABLE_TEXT_CONSOLE -DDISABLE_COMMAND_LINE -DDISABLE_DOSBOX_OPL"
|
2010-08-03 11:26:10 +00:00
|
|
|
DEFINES="$DEFINES -DDISABLE_SID -DDISABLE_NES_APU"
|
2009-10-08 20:59:53 +00:00
|
|
|
_need_memalign=yes
|
|
|
|
_backend="ps2"
|
2010-08-02 17:12:34 +00:00
|
|
|
_build_scalers=no
|
|
|
|
_mt32emu=no
|
2009-10-09 12:28:11 +00:00
|
|
|
# HACK to enable mad & zlib (they are not properly detected due to linker issues).
|
2009-11-20 00:13:03 +00:00
|
|
|
# This trick doesn't work for tremor right now, as the PS2 port the resulting library
|
2009-10-09 12:28:11 +00:00
|
|
|
# libtremor, while our code later on expects it to be called libvorbisidec.
|
|
|
|
# TODO: Enable tremor, e.g. by adding -ltremor or by renaming the lib.
|
2010-08-02 17:12:34 +00:00
|
|
|
_mad=yes
|
|
|
|
_zlib=yes
|
2009-10-09 11:38:13 +00:00
|
|
|
# HACK to fix compilation of C source files for now.
|
|
|
|
add_line_to_config_mk 'CC = ee-gcc'
|
|
|
|
# HACK to fix linking for now. It seems ee-g++ does not handle linking correctly.
|
|
|
|
LD=ee-gcc
|
2009-10-14 12:56:14 +00:00
|
|
|
|
|
|
|
if test "$_debug_build" = yes; then
|
|
|
|
# TODO: Setup debug build properly
|
|
|
|
DEFINES="$DEFINES -D__PS2_DEBUG__"
|
|
|
|
#INCLUDES="$INCLUDES -I$(PS2GDB)/ee"
|
|
|
|
#LDFLAGS="$LDFLAGS -L$(PS2GDB)/lib"
|
|
|
|
LDFLAGS="$LDFLAGS -lps2gdbStub -lps2ip -ldebug"
|
|
|
|
else
|
|
|
|
# If not building for debug mode, strip binaries.
|
|
|
|
CXXFLAGS="$CXXFLAGS -s"
|
|
|
|
fi
|
2009-10-08 20:59:53 +00:00
|
|
|
;;
|
2010-02-02 11:46:35 +00:00
|
|
|
psp)
|
|
|
|
_need_memalign=yes
|
|
|
|
_backend="psp"
|
2010-08-02 17:12:34 +00:00
|
|
|
_build_scalers=no
|
|
|
|
_mt32emu=no
|
2010-02-02 11:46:35 +00:00
|
|
|
_port_mk="backends/platform/psp/psp.mk"
|
|
|
|
;;
|
|
|
|
samsungtv)
|
2010-07-20 08:25:13 +00:00
|
|
|
DEFINES="$DEFINES -DSAMSUNGTV -DDISABLE_COMMAND_LINE"
|
2010-02-02 11:46:35 +00:00
|
|
|
ASFLAGS="$ASFLAGS -mfpu=vfp"
|
|
|
|
HOSTEXEEXT=".so"
|
2010-07-20 08:25:13 +00:00
|
|
|
_unix=yes
|
2010-02-02 11:46:35 +00:00
|
|
|
_need_memalign=yes
|
|
|
|
add_line_to_config_mk 'USE_ARM_SOUND_ASM = 1'
|
|
|
|
add_line_to_config_mk 'USE_ARM_SMUSH_ASM = 1'
|
|
|
|
add_line_to_config_mk 'USE_ARM_GFX_ASM = 1'
|
|
|
|
add_line_to_config_mk 'USE_ARM_COSTUME_ASM = 1'
|
|
|
|
add_line_to_config_mk 'USE_ARM_SCALER_ASM = 1'
|
|
|
|
_backend="samsungtv"
|
2010-08-02 17:12:34 +00:00
|
|
|
_mt32emu=no
|
|
|
|
_vkeybd=yes
|
2010-02-02 11:46:35 +00:00
|
|
|
;;
|
|
|
|
wii)
|
|
|
|
_endian=big
|
|
|
|
_need_memalign=yes
|
|
|
|
_backend="wii"
|
2010-08-02 17:12:34 +00:00
|
|
|
_build_scalers=no
|
2010-02-02 11:46:35 +00:00
|
|
|
_port_mk="backends/platform/wii/wii.mk"
|
|
|
|
add_line_to_config_mk 'GAMECUBE = 0'
|
2010-08-24 18:44:14 +00:00
|
|
|
add_line_to_config_h '#define AUDIO_REVERSE_STEREO'
|
2010-02-02 11:46:35 +00:00
|
|
|
add_line_to_config_h "#define DEBUG_WII_USBGECKO"
|
|
|
|
add_line_to_config_h "/* #define DEBUG_WII_MEMSTATS */"
|
|
|
|
add_line_to_config_h "/* #define DEBUG_WII_GDB */"
|
|
|
|
add_line_to_config_h "#define USE_WII_DI"
|
|
|
|
add_line_to_config_h "#define USE_WII_SMB"
|
|
|
|
add_line_to_config_h "#define USE_WII_KBD"
|
|
|
|
;;
|
|
|
|
wince)
|
|
|
|
LDFLAGS="$LDFLAGS -Wl,-Map,scummvm.exe.map -Wl,--stack,65536"
|
|
|
|
_need_memalign=yes
|
|
|
|
add_line_to_config_mk 'USE_TREMOLO = 1'
|
|
|
|
add_line_to_config_mk 'USE_ARM_SOUND_ASM = 1'
|
|
|
|
add_line_to_config_mk 'USE_ARM_SMUSH_ASM = 1'
|
|
|
|
add_line_to_config_mk 'USE_ARM_GFX_ASM = 1'
|
|
|
|
add_line_to_config_mk 'USE_ARM_COSTUME_ASM = 1'
|
|
|
|
add_line_to_config_mk 'USE_ARM_SCALER_ASM = 1'
|
|
|
|
_backend="wince"
|
2010-08-02 17:12:34 +00:00
|
|
|
_mt32emu=no
|
2010-02-02 11:46:35 +00:00
|
|
|
_port_mk="backends/platform/wince/wince.mk"
|
|
|
|
;;
|
2004-12-16 22:15:32 +00:00
|
|
|
*)
|
2009-10-19 17:47:25 +00:00
|
|
|
echo "WARNING: Unknown target, continuing with auto-detected values"
|
2004-12-16 22:15:32 +00:00
|
|
|
;;
|
|
|
|
esac
|
2008-01-27 19:47:41 +00:00
|
|
|
|
2004-01-22 04:31:31 +00:00
|
|
|
else
|
2004-12-16 22:15:32 +00:00
|
|
|
#
|
|
|
|
# Check whether memory alignment is required
|
|
|
|
#
|
|
|
|
echo_n "Alignment required... "
|
|
|
|
case $_host_cpu in
|
|
|
|
alpha*)
|
|
|
|
# Hardcode alignment requirements for Alpha processsors
|
|
|
|
_need_memalign=yes
|
|
|
|
;;
|
2010-02-02 11:46:35 +00:00
|
|
|
arm*)
|
2007-01-18 21:36:44 +00:00
|
|
|
_need_memalign=yes
|
|
|
|
;;
|
|
|
|
mips*)
|
|
|
|
# Hardcode alignment requirements for MIPS processsors.
|
|
|
|
# While these can emulate unaligned memory access, this
|
|
|
|
# emulation is rather slow.
|
|
|
|
_need_memalign=yes
|
|
|
|
;;
|
2010-02-02 11:46:35 +00:00
|
|
|
sh*)
|
|
|
|
# Hardcode alignment requirements for SH processsors.
|
|
|
|
# While these can emulate unaligned memory access, this
|
|
|
|
# emulation is rather slow.
|
|
|
|
_need_memalign=yes
|
|
|
|
;;
|
2004-12-16 22:15:32 +00:00
|
|
|
*)
|
|
|
|
# Try to auto-detect....
|
|
|
|
cat > $TMPC << EOF
|
2003-06-02 21:22:54 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <signal.h>
|
2009-03-19 21:42:50 +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
|
2007-11-03 11:27:34 +00:00
|
|
|
_need_memalign=yes
|
2010-05-08 20:22:50 +00:00
|
|
|
cc_check_no_clean && $TMPO$HOSTEXEEXT && _need_memalign=no
|
|
|
|
cc_check_clean
|
2004-12-16 22:15:32 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
echo "$_need_memalign"
|
2003-05-20 09:43:33 +00:00
|
|
|
fi
|
2003-05-20 10:15:38 +00:00
|
|
|
|
2009-08-21 17:19:06 +00:00
|
|
|
#
|
|
|
|
# Enable 16bit support only for backends which support it
|
|
|
|
#
|
|
|
|
case $_backend in
|
2011-03-05 17:21:35 +00:00
|
|
|
android | dingux | dreamcast | gph | openpandora | psp | samsungtv | sdl | wii)
|
2009-08-21 17:19:06 +00:00
|
|
|
if test "$_16bit" = auto ; then
|
|
|
|
_16bit=yes
|
|
|
|
else
|
|
|
|
_16bit=no
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
_16bit=no
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
|
2007-06-24 20:35:02 +00:00
|
|
|
#
|
|
|
|
# Add the results of the above checks to config.h
|
|
|
|
#
|
|
|
|
case $_endian in
|
|
|
|
big)
|
2010-07-20 08:24:48 +00:00
|
|
|
add_line_to_config_h '#undef SCUMM_LITTLE_ENDIAN'
|
2007-06-24 20:35:02 +00:00
|
|
|
add_line_to_config_h '#define SCUMM_BIG_ENDIAN'
|
|
|
|
;;
|
|
|
|
little)
|
|
|
|
add_line_to_config_h '#define SCUMM_LITTLE_ENDIAN'
|
2010-07-20 08:24:48 +00:00
|
|
|
add_line_to_config_h '#undef SCUMM_BIG_ENDIAN'
|
2007-06-24 20:35:02 +00:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2010-07-20 08:24:48 +00:00
|
|
|
define_in_config_h_if_yes $_have_x86 'HAVE_X86'
|
2007-06-24 20:35:02 +00:00
|
|
|
|
2010-07-20 08:24:48 +00:00
|
|
|
define_in_config_h_if_yes $_need_memalign 'SCUMM_NEED_ALIGNMENT'
|
2007-06-24 20:35:02 +00:00
|
|
|
|
2010-07-20 08:25:13 +00:00
|
|
|
if test "$_unix" = yes ; then
|
|
|
|
DEFINES="$DEFINES -DUNIX"
|
2010-11-28 17:42:25 +00:00
|
|
|
add_line_to_config_mk 'UNIX = 1'
|
2010-07-20 08:25:13 +00:00
|
|
|
fi
|
|
|
|
|
2009-08-22 11:03:00 +00:00
|
|
|
#
|
|
|
|
# Check whether to enable a verbose build
|
|
|
|
#
|
|
|
|
echo_n "Checking whether to have a verbose build... "
|
|
|
|
echo "$_verbose_build"
|
|
|
|
add_to_config_mk_if_yes "$_verbose_build" 'VERBOSE_BUILD = 1'
|
2007-06-24 20:35:02 +00:00
|
|
|
|
2004-02-15 01:21:02 +00:00
|
|
|
#
|
|
|
|
# Check whether plugin support is requested and possible
|
|
|
|
#
|
2005-11-18 21:37:58 +00:00
|
|
|
echo_n "Checking whether building plugins was requested... "
|
2008-05-06 03:11:01 +00:00
|
|
|
echo "$_dynamic_modules"
|
2004-02-15 01:21:02 +00:00
|
|
|
_mak_plugins=
|
2007-06-24 20:35:02 +00:00
|
|
|
_def_plugin="/* -> plugins disabled */"
|
2005-11-18 21:37:58 +00:00
|
|
|
|
2008-05-06 03:11:01 +00:00
|
|
|
if test "$_dynamic_modules" = yes ; then
|
2007-11-01 21:03:16 +00:00
|
|
|
echo_n "Checking whether building plugins is supported... "
|
|
|
|
case $_host_os in
|
2011-02-06 14:23:47 +00:00
|
|
|
android)
|
|
|
|
_def_plugin='
|
|
|
|
#define PLUGIN_PREFIX "lib"
|
|
|
|
#define PLUGIN_SUFFIX ".so"
|
|
|
|
'
|
|
|
|
# Work around an Android 2.0+ run-time linker bug:
|
|
|
|
# The linker doesn't actually look in previously
|
|
|
|
# loaded libraries when trying to resolve symbols -
|
|
|
|
# effectively turning all dlopen(RTLD_GLOBAL) calls
|
|
|
|
# into dlopen(RTLD_LOCAL). It *does* look in
|
|
|
|
# DT_NEEDED libraries, so the workaround is to add an
|
|
|
|
# (otherwise unnecessary) dependency from plugins back
|
|
|
|
# to the main libscummvm.so.
|
|
|
|
_mak_plugins='
|
|
|
|
DYNAMIC_MODULES := 1
|
|
|
|
PLUGIN_PREFIX := lib
|
|
|
|
PLUGIN_SUFFIX := .so
|
|
|
|
PLUGIN_EXTRA_DEPS = libscummvm.so
|
|
|
|
CXXFLAGS += -DDYNAMIC_MODULES
|
|
|
|
CXXFLAGS += -fpic
|
|
|
|
PLUGIN_LDFLAGS += $(LDFLAGS) -L. -lscummvm
|
|
|
|
PRE_OBJS_FLAGS := -Wl,-export-dynamic -Wl,-whole-archive
|
|
|
|
POST_OBJS_FLAGS := -Wl,-no-whole-archive
|
|
|
|
LIBS += -ldl
|
|
|
|
'
|
|
|
|
;;
|
2010-02-02 11:46:35 +00:00
|
|
|
darwin*)
|
2005-02-06 17:21:31 +00:00
|
|
|
_def_plugin='
|
2010-02-02 11:46:35 +00:00
|
|
|
#define PLUGIN_PREFIX ""
|
|
|
|
#define PLUGIN_SUFFIX ".plugin"
|
2005-02-06 17:21:31 +00:00
|
|
|
'
|
2004-02-15 01:21:02 +00:00
|
|
|
_mak_plugins='
|
2008-05-06 03:11:01 +00:00
|
|
|
DYNAMIC_MODULES := 1
|
2010-02-02 11:46:35 +00:00
|
|
|
PLUGIN_PREFIX :=
|
|
|
|
PLUGIN_SUFFIX := .plugin
|
|
|
|
PLUGIN_EXTRA_DEPS = $(EXECUTABLE)
|
2007-11-03 11:27:34 +00:00
|
|
|
CXXFLAGS += -DDYNAMIC_MODULES
|
2010-02-02 11:46:35 +00:00
|
|
|
PLUGIN_LDFLAGS += -bundle -bundle_loader $(EXECUTABLE) -exported_symbols_list "$(srcdir)/plugin.exp"
|
|
|
|
PRE_OBJS_FLAGS := -all_load
|
|
|
|
POST_OBJS_FLAGS :=
|
2004-02-15 01:21:02 +00:00
|
|
|
LIBS += -ldl
|
2010-02-02 11:46:35 +00:00
|
|
|
'
|
|
|
|
;;
|
|
|
|
dreamcast)
|
|
|
|
_def_plugin='
|
|
|
|
#define PLUGIN_PREFIX ""
|
|
|
|
#define PLUGIN_SUFFIX ".plg"
|
|
|
|
'
|
|
|
|
_mak_plugins='
|
|
|
|
DYNAMIC_MODULES := 1
|
|
|
|
PLUGIN_PREFIX :=
|
|
|
|
PLUGIN_SUFFIX := .plg
|
2011-01-07 16:25:05 +00:00
|
|
|
PLUGIN_EXTRA_DEPS = $(abspath $(srcdir)/backends/platform/dc/plugin.x $(srcdir)/backends/platform/dc/plugin.syms) $(EXECUTABLE) backends/platform/dc/plugin_head.o
|
2010-02-02 11:46:35 +00:00
|
|
|
CXXFLAGS += -DDYNAMIC_MODULES
|
2011-01-07 16:25:05 +00:00
|
|
|
PLUGIN_LDFLAGS = -ml -m4-single-only -nostartfiles -Wl,-q,-T$(srcdir)/backends/platform/dc/plugin.x,--just-symbols,$(EXECUTABLE),--retain-symbols-file,$(srcdir)/backends/platform/dc/plugin.syms -L$(ronindir)/lib backends/platform/dc/plugin_head.o
|
2010-02-02 11:46:35 +00:00
|
|
|
PRE_OBJS_FLAGS := -Wl,--whole-archive
|
|
|
|
POST_OBJS_FLAGS := -Wl,--no-whole-archive
|
2010-08-13 07:25:21 +00:00
|
|
|
'
|
|
|
|
;;
|
|
|
|
ds)
|
2010-09-15 07:43:16 +00:00
|
|
|
_elf_loader=yes
|
2010-12-30 08:01:58 +00:00
|
|
|
DEFINES="$DEFINES -DARM_TARGET -DELF_LOADER_CXA_ATEXIT -DUNCACHED_PLUGINS -DELF_NO_MEM_MANAGER"
|
2010-08-13 07:25:21 +00:00
|
|
|
_mak_plugins='
|
2010-09-15 07:43:16 +00:00
|
|
|
PLUGIN_LDFLAGS += -Wl,-T$(srcdir)/backends/plugins/ds/plugin.ld -mthumb-interwork -mno-fpu
|
2004-04-25 19:33:46 +00:00
|
|
|
'
|
2007-11-01 21:03:16 +00:00
|
|
|
;;
|
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='
|
2008-05-06 03:11:01 +00:00
|
|
|
DYNAMIC_MODULES := 1
|
2005-02-06 17:21:31 +00:00
|
|
|
PLUGIN_PREFIX := lib
|
|
|
|
PLUGIN_SUFFIX := .so
|
2007-12-28 07:52:56 +00:00
|
|
|
PLUGIN_EXTRA_DEPS =
|
2007-11-03 11:27:34 +00:00
|
|
|
CXXFLAGS += -DDYNAMIC_MODULES
|
2004-04-25 19:33:46 +00:00
|
|
|
CXXFLAGS += -fpic
|
|
|
|
PLUGIN_LDFLAGS += -shared
|
|
|
|
PRE_OBJS_FLAGS := -Wl,-export-dynamic -Wl,-whole-archive
|
|
|
|
POST_OBJS_FLAGS := -Wl,-no-whole-archive
|
2010-09-05 12:49:29 +00:00
|
|
|
'
|
|
|
|
;;
|
|
|
|
gamecube | wii)
|
2010-09-15 07:43:16 +00:00
|
|
|
_elf_loader=yes
|
2010-12-30 08:01:58 +00:00
|
|
|
DEFINES="$DEFINES -DPPC_TARGET -DELF_LOADER_CXA_ATEXIT -DUNCACHED_PLUGINS"
|
2010-09-05 12:49:29 +00:00
|
|
|
_mak_plugins='
|
2010-09-15 07:43:16 +00:00
|
|
|
PLUGIN_LDFLAGS += -Wl,-T$(srcdir)/backends/plugins/wii/plugin.ld
|
2010-08-17 11:40:48 +00:00
|
|
|
'
|
|
|
|
;;
|
2010-09-20 19:33:58 +00:00
|
|
|
gph*)
|
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='
|
2008-05-06 03:11:01 +00:00
|
|
|
DYNAMIC_MODULES := 1
|
2008-01-27 19:47:41 +00:00
|
|
|
PLUGIN_PREFIX :=
|
2005-02-06 17:21:31 +00:00
|
|
|
PLUGIN_SUFFIX := .plugin
|
2005-02-06 17:45:16 +00:00
|
|
|
PLUGIN_EXTRA_DEPS = $(EXECUTABLE)
|
2007-11-03 11:27:34 +00:00
|
|
|
CXXFLAGS += -DDYNAMIC_MODULES
|
2010-02-02 11:46:35 +00:00
|
|
|
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
|
|
|
LIBS += -ldl
|
|
|
|
'
|
2007-11-01 21:03:16 +00:00
|
|
|
;;
|
2011-02-06 14:23:47 +00:00
|
|
|
linux*)
|
2009-06-04 08:30:31 +00:00
|
|
|
_def_plugin='
|
2010-02-02 11:46:35 +00:00
|
|
|
#define PLUGIN_PREFIX "lib"
|
|
|
|
#define PLUGIN_SUFFIX ".so"
|
2009-06-04 08:30:31 +00:00
|
|
|
'
|
|
|
|
_mak_plugins='
|
|
|
|
DYNAMIC_MODULES := 1
|
2010-02-02 11:46:35 +00:00
|
|
|
PLUGIN_PREFIX := lib
|
|
|
|
PLUGIN_SUFFIX := .so
|
|
|
|
PLUGIN_EXTRA_DEPS =
|
2009-06-04 08:30:31 +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
|
|
|
|
'
|
2010-01-25 01:39:44 +00:00
|
|
|
;;
|
2010-02-02 11:46:35 +00:00
|
|
|
*mingw32*)
|
2009-03-21 15:15:29 +00:00
|
|
|
_def_plugin='
|
|
|
|
#define PLUGIN_PREFIX ""
|
2010-02-02 11:46:35 +00:00
|
|
|
#define PLUGIN_SUFFIX ".dll"
|
2009-03-21 15:15:29 +00:00
|
|
|
'
|
|
|
|
_mak_plugins='
|
|
|
|
DYNAMIC_MODULES := 1
|
|
|
|
PLUGIN_PREFIX :=
|
2010-02-02 11:46:35 +00:00
|
|
|
PLUGIN_SUFFIX := .dll
|
|
|
|
PLUGIN_EXTRA_DEPS = $(EXECUTABLE)
|
2009-03-21 15:15:29 +00:00
|
|
|
CXXFLAGS += -DDYNAMIC_MODULES
|
2010-02-02 11:46:35 +00:00
|
|
|
PLUGIN_LDFLAGS := -Wl,--enable-auto-import -shared ./libscummvm.a
|
2009-03-21 15:15:29 +00:00
|
|
|
PRE_OBJS_FLAGS := -Wl,--whole-archive
|
2010-02-02 11:46:35 +00:00
|
|
|
POST_OBJS_FLAGS := -Wl,--export-all-symbols -Wl,--no-whole-archive -Wl,--out-implib,./libscummvm.a
|
2009-10-09 12:10:08 +00:00
|
|
|
'
|
|
|
|
;;
|
2010-08-14 09:03:35 +00:00
|
|
|
ps2)
|
2010-09-15 07:43:16 +00:00
|
|
|
_elf_loader=yes
|
|
|
|
DEFINES="$DEFINES -DMIPS_TARGET"
|
2010-08-14 09:03:35 +00:00
|
|
|
_mak_plugins='
|
2010-09-15 07:43:16 +00:00
|
|
|
LDFLAGS += -mno-crt0 $(PS2SDK)/ee/startup/crt0.o -T$(srcdir)/backends/plugins/ps2/main_prog.ld
|
|
|
|
PLUGIN_LDFLAGS += -mno-crt0 $(PS2SDK)/ee/startup/crt0.o -Wl,-T$(srcdir)/backends/plugins/ps2/plugin.ld -lstdc++ -lc
|
2009-10-09 12:10:08 +00:00
|
|
|
'
|
|
|
|
;;
|
|
|
|
psp)
|
2010-09-15 07:43:16 +00:00
|
|
|
_elf_loader=yes
|
2010-12-30 08:01:58 +00:00
|
|
|
DEFINES="$DEFINES -DMIPS_TARGET -DUNCACHED_PLUGINS"
|
2009-10-09 12:10:08 +00:00
|
|
|
_mak_plugins='
|
2010-11-04 06:28:34 +00:00
|
|
|
LDFLAGS += -Wl,-T$(srcdir)/backends/plugins/psp/main_prog.ld
|
2010-11-01 06:31:09 +00:00
|
|
|
PLUGIN_LDFLAGS += -Wl,-T$(srcdir)/backends/plugins/psp/plugin.ld -lstdc++ -lc
|
2007-05-27 10:46:47 +00:00
|
|
|
'
|
|
|
|
;;
|
2004-02-15 01:21:02 +00:00
|
|
|
*)
|
2008-05-06 03:11:01 +00:00
|
|
|
_dynamic_modules=no
|
2005-02-06 17:21:31 +00:00
|
|
|
_mak_plugins=
|
|
|
|
_def_plugin=
|
2007-11-01 21:03:16 +00:00
|
|
|
;;
|
|
|
|
esac
|
2008-05-06 03:11:01 +00:00
|
|
|
echo "$_dynamic_modules"
|
2004-02-15 01:21:02 +00:00
|
|
|
fi
|
|
|
|
|
2010-09-15 07:43:16 +00:00
|
|
|
#
|
|
|
|
# Check whether integrated ELF loader support is requested
|
|
|
|
#
|
|
|
|
define_in_config_if_yes "$_elf_loader" 'USE_ELF_LOADER'
|
|
|
|
|
|
|
|
if test "$_elf_loader" = yes; then
|
|
|
|
CXXFLAGS="$CXXFLAGS -DDYNAMIC_MODULES"
|
|
|
|
_def_plugin='
|
|
|
|
#define PLUGIN_PREFIX ""
|
|
|
|
#define PLUGIN_SUFFIX ".plg"
|
|
|
|
'
|
|
|
|
_mak_plugins='
|
|
|
|
DYNAMIC_MODULES := 1
|
|
|
|
PLUGIN_PREFIX :=
|
|
|
|
PLUGIN_SUFFIX := .plg
|
|
|
|
PLUGIN_EXTRA_DEPS = $(EXECUTABLE)
|
2010-09-15 07:44:08 +00:00
|
|
|
PLUGIN_LDFLAGS = -nostartfiles backends/plugins/elf/version.o -Wl,-q,--just-symbols,$(EXECUTABLE),--retain-symbols-file,$(srcdir)/backends/plugins/elf/plugin.syms
|
2010-09-15 07:43:16 +00:00
|
|
|
PRE_OBJS_FLAGS := -Wl,--whole-archive
|
|
|
|
POST_OBJS_FLAGS := -Wl,--no-whole-archive
|
|
|
|
'"$_mak_plugins"
|
|
|
|
fi
|
2004-11-06 01:41:32 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Check whether integrated MT-32 emulator support is requested
|
|
|
|
#
|
2010-07-20 08:24:48 +00:00
|
|
|
define_in_config_if_yes "$_mt32emu" 'USE_MT32EMU'
|
2004-11-06 01:41:32 +00:00
|
|
|
|
2009-08-21 09:43:30 +00:00
|
|
|
#
|
|
|
|
# Check whether 16bit color support is requested
|
|
|
|
#
|
2010-07-20 08:24:48 +00:00
|
|
|
define_in_config_if_yes "$_16bit" 'USE_RGB_COLOR'
|
2009-08-21 09:43:30 +00:00
|
|
|
|
2009-03-18 21:51:56 +00:00
|
|
|
#
|
|
|
|
# Check whether to enable the (hq) scalers
|
|
|
|
#
|
2010-05-09 11:00:17 +00:00
|
|
|
if test "$_build_scalers" = no ; then
|
2010-05-10 17:25:12 +00:00
|
|
|
_build_hq_scalers=no
|
2010-05-09 11:00:17 +00:00
|
|
|
fi
|
2010-07-20 08:24:48 +00:00
|
|
|
define_in_config_if_yes "$_build_scalers" 'USE_SCALERS'
|
2010-05-09 11:00:17 +00:00
|
|
|
|
2010-07-20 08:24:48 +00:00
|
|
|
define_in_config_if_yes "$_build_hq_scalers" 'USE_HQ_SCALERS'
|
2009-03-18 21:51:56 +00:00
|
|
|
|
2009-08-29 19:48:01 +00:00
|
|
|
#
|
|
|
|
# Check whether to compile the Indeo3 decoder
|
|
|
|
#
|
|
|
|
if test "$_indeo3" = auto ; then
|
|
|
|
# Autodetect. Build if either the gob engine or plugins are enabled
|
|
|
|
if test `get_engine_build gob` = yes || test "$_dynamic_modules" = yes ; then
|
2010-08-02 17:12:34 +00:00
|
|
|
_indeo3=yes
|
2009-08-29 19:48:01 +00:00
|
|
|
else
|
2010-08-02 17:12:34 +00:00
|
|
|
_indeo3=no
|
2009-08-29 19:48:01 +00:00
|
|
|
fi
|
|
|
|
fi
|
2010-07-20 08:24:48 +00:00
|
|
|
define_in_config_if_yes "$_indeo3" 'USE_INDEO3'
|
2009-08-29 19:48:01 +00:00
|
|
|
|
2008-01-31 12:20:47 +00:00
|
|
|
#
|
|
|
|
# Check for math lib
|
|
|
|
#
|
2008-02-07 15:53:26 +00:00
|
|
|
cat > $TMPC << EOF
|
|
|
|
int main(void) { return 0; }
|
|
|
|
EOF
|
2010-07-05 01:00:59 +00:00
|
|
|
cc_check -lm && LIBS="$LIBS -lm"
|
2008-01-31 12:20:47 +00:00
|
|
|
|
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
|
2010-04-09 14:23:30 +00:00
|
|
|
cc_check $OGG_CFLAGS $OGG_LIBS $VORBIS_CFLAGS $VORBIS_LIBS \
|
2008-01-31 12:20:47 +00:00
|
|
|
-lvorbisfile -lvorbis -logg && _vorbis=yes
|
2003-05-18 05:43:52 +00:00
|
|
|
fi
|
|
|
|
if test "$_vorbis" = yes ; then
|
2004-12-16 22:15:32 +00:00
|
|
|
LIBS="$LIBS $OGG_LIBS $VORBIS_LIBS -lvorbisfile -lvorbis -logg"
|
|
|
|
INCLUDES="$INCLUDES $OGG_CFLAGS $VORBIS_CFLAGS"
|
2003-05-18 05:43:52 +00:00
|
|
|
fi
|
2010-07-20 08:24:48 +00:00
|
|
|
define_in_config_if_yes "$_vorbis" 'USE_VORBIS'
|
2003-05-18 05:43:52 +00:00
|
|
|
echo "$_vorbis"
|
|
|
|
|
2005-06-30 09:14:36 +00:00
|
|
|
#
|
|
|
|
# Check for Tremor
|
|
|
|
#
|
|
|
|
echocheck "Tremor"
|
|
|
|
if test "$_tremor" = auto ; then
|
2007-11-01 21:03:16 +00:00
|
|
|
_tremor=no
|
|
|
|
cat > $TMPC << EOF
|
2005-06-30 09:14:36 +00:00
|
|
|
#include <tremor/ivorbiscodec.h>
|
2009-03-19 18:36:45 +00:00
|
|
|
int main(void) { vorbis_info_init(0); return 0; }
|
2005-06-30 09:14:36 +00:00
|
|
|
EOF
|
2010-04-09 14:23:30 +00:00
|
|
|
cc_check $TREMOR_CFLAGS $TREMOR_LIBS -lvorbisidec && \
|
2007-11-01 21:03:16 +00:00
|
|
|
_tremor=yes
|
2005-06-30 09:14:36 +00:00
|
|
|
fi
|
|
|
|
if test "$_tremor" = yes && test "$_vorbis" = no; then
|
2010-07-20 08:24:48 +00:00
|
|
|
add_line_to_config_h '#define USE_TREMOR'
|
|
|
|
add_line_to_config_h '#define USE_VORBIS'
|
2007-04-28 13:43:51 +00:00
|
|
|
LIBS="$LIBS $TREMOR_LIBS -lvorbisidec"
|
|
|
|
INCLUDES="$INCLUDES $TREMOR_CFLAGS"
|
2005-06-30 09:14:36 +00:00
|
|
|
else
|
2007-04-28 13:43:51 +00:00
|
|
|
if test "$_vorbis" = yes; then
|
|
|
|
_tremor="no (Ogg Vorbis/Tremor support is mutually exclusive)"
|
|
|
|
fi
|
2010-07-20 08:24:48 +00:00
|
|
|
add_line_to_config_h '#undef USE_TREMOR'
|
2005-06-30 09:14:36 +00:00
|
|
|
fi
|
2008-04-08 03:05:31 +00:00
|
|
|
add_to_config_mk_if_yes "$_tremor" 'USE_TREMOR = 1'
|
2005-06-30 09:14:36 +00:00
|
|
|
echo "$_tremor"
|
|
|
|
|
2006-08-05 10:51:15 +00:00
|
|
|
#
|
|
|
|
# Check for FLAC
|
|
|
|
#
|
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
|
2006-10-28 13:21:43 +00:00
|
|
|
#include <FLAC/format.h>
|
|
|
|
int main(void) { return FLAC__STREAM_SYNC_LEN >> 30; /* guaranteed to be 0 */ }
|
2004-02-22 14:11:16 +00:00
|
|
|
EOF
|
2009-03-19 18:47:01 +00:00
|
|
|
if test "$_vorbis" = yes ; then
|
2010-04-09 14:23:30 +00:00
|
|
|
cc_check $FLAC_CFLAGS $FLAC_LIBS $OGG_CFLAGS $OGG_LIBS \
|
2009-03-19 18:47:01 +00:00
|
|
|
-lFLAC -logg && _flac=yes
|
|
|
|
else
|
2010-04-09 14:23:30 +00:00
|
|
|
cc_check $FLAC_CFLAGS $FLAC_LIBS \
|
2009-03-19 18:47:01 +00:00
|
|
|
-lFLAC && _flac=yes
|
|
|
|
fi
|
2004-02-22 14:11:16 +00:00
|
|
|
fi
|
|
|
|
if test "$_flac" = yes ; then
|
2008-01-11 23:01:20 +00:00
|
|
|
if test "$_vorbis" = yes ; then
|
2008-01-11 22:44:28 +00:00
|
|
|
LIBS="$LIBS $FLAC_LIBS $OGG_LIBS -lFLAC -logg"
|
|
|
|
else
|
|
|
|
LIBS="$LIBS $FLAC_LIBS -lFLAC"
|
|
|
|
fi
|
2004-12-16 22:15:32 +00:00
|
|
|
INCLUDES="$INCLUDES $FLAC_CFLAGS"
|
2004-02-22 14:11:16 +00:00
|
|
|
fi
|
2010-07-20 08:24:48 +00:00
|
|
|
define_in_config_if_yes "$_flac" 'USE_FLAC'
|
2004-02-22 14:11:16 +00:00
|
|
|
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>
|
2009-03-19 21:42:50 +00:00
|
|
|
int main(void) { return 0; }
|
2003-05-18 05:43:52 +00:00
|
|
|
EOF
|
2010-04-09 14:23:30 +00:00
|
|
|
cc_check $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
|
|
|
LIBS="$LIBS $MAD_LIBS -lmad"
|
|
|
|
INCLUDES="$INCLUDES $MAD_CFLAGS"
|
2003-05-18 05:43:52 +00:00
|
|
|
fi
|
2010-07-20 08:24:48 +00:00
|
|
|
define_in_config_if_yes "$_mad" 'USE_MAD'
|
2003-05-18 05:43:52 +00:00
|
|
|
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
|
2010-04-09 14:23:30 +00:00
|
|
|
cc_check $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
|
|
|
LIBS="$LIBS $ALSA_LIBS -lasound"
|
|
|
|
INCLUDES="$INCLUDES $ALSA_CFLAGS"
|
2003-05-18 05:43:52 +00:00
|
|
|
fi
|
2010-07-20 08:24:48 +00:00
|
|
|
define_in_config_h_if_yes "$_alsa" 'USE_ALSA'
|
2003-05-18 05:43:52 +00:00
|
|
|
echo "$_alsa"
|
|
|
|
|
2010-10-12 21:12:50 +00:00
|
|
|
#
|
|
|
|
# Check for PNG
|
|
|
|
#
|
|
|
|
echocheck "PNG >= 1.2.8"
|
|
|
|
if test "$_png" = auto ; then
|
|
|
|
_png=no
|
|
|
|
cat > $TMPC << EOF
|
|
|
|
#include <png.h>
|
2010-10-13 10:50:45 +00:00
|
|
|
int main(void) {
|
|
|
|
#if PNG_LIBPNG_VER >= 10208
|
|
|
|
#else
|
|
|
|
syntax error
|
|
|
|
#endif
|
|
|
|
return 0;
|
|
|
|
}
|
2010-10-12 21:12:50 +00:00
|
|
|
EOF
|
2010-10-13 10:50:45 +00:00
|
|
|
cc_check $PNG_CFLAGS $PNG_LIBS -lpng && _png=yes
|
2010-10-12 21:12:50 +00:00
|
|
|
fi
|
|
|
|
if test "$_png" = yes ; then
|
|
|
|
LIBS="$LIBS $PNG_LIBS -lpng"
|
|
|
|
INCLUDES="$INCLUDES $PNG_CFLAGS"
|
|
|
|
fi
|
2010-10-15 03:33:54 +00:00
|
|
|
define_in_config_if_yes "$_png" 'USE_PNG'
|
2010-10-12 21:12:50 +00:00
|
|
|
echo "$_png"
|
|
|
|
|
|
|
|
if test `get_engine_build sword25` = yes && test ! "$_png" = yes ; then
|
|
|
|
echo "...disabling Broken Sword 2.5 engine. PNG is required"
|
|
|
|
engine_disable sword25
|
|
|
|
fi
|
|
|
|
|
|
|
|
#
|
|
|
|
# Check for Theora Decoder
|
|
|
|
#
|
|
|
|
echocheck "libtheoradec >= 1.0"
|
|
|
|
if test "$_vorbis" = no ; then
|
|
|
|
echo "skipping. no vorbis"
|
|
|
|
_theoradec=notsupported
|
|
|
|
fi
|
|
|
|
if test "$_theoradec" = auto ; then
|
|
|
|
_theoradec=no
|
|
|
|
cat > $TMPC << EOF
|
|
|
|
#include <theora/theoradec.h>
|
|
|
|
#include <vorbis/codec.h>
|
|
|
|
int main(void) { th_ycbcr_buffer yuv; th_decode_ycbcr_out(NULL, yuv); }
|
|
|
|
EOF
|
|
|
|
cc_check $THEORADEC_CFLAGS $THEORADEC_LIBS -ltheoradec && _theoradec=yes
|
|
|
|
fi
|
|
|
|
if test "$_theoradec" = yes ; then
|
|
|
|
LIBS="$LIBS $THEORADEC_LIBS -ltheoradec"
|
|
|
|
INCLUDES="$INCLUDES $THEORADEC_CFLAGS"
|
|
|
|
fi
|
2010-10-13 15:00:51 +00:00
|
|
|
define_in_config_if_yes "$_theoradec" 'USE_THEORADEC'
|
2010-10-12 21:12:50 +00:00
|
|
|
if test ! "$_theoradec" = notsupported ; then
|
|
|
|
echo "$_theoradec"
|
|
|
|
fi
|
|
|
|
|
2010-07-20 08:24:48 +00:00
|
|
|
#
|
|
|
|
# Check for SEQ MIDI
|
|
|
|
#
|
|
|
|
echocheck "SEQ MIDI"
|
2010-07-20 08:25:13 +00:00
|
|
|
if test "$_seq_midi" = auto ; then
|
2010-07-20 08:24:48 +00:00
|
|
|
# TODO: Test for /dev/sequencer presence? Or maybe just for /dev ?
|
2010-07-20 08:25:13 +00:00
|
|
|
# For now, we just always enable it when "unix" mode is on (backends
|
|
|
|
# that do not want it can disable it by setting _seq_midi=no).
|
|
|
|
_seq_midi="$_unix"
|
2010-07-20 08:24:48 +00:00
|
|
|
fi
|
2010-07-20 08:25:13 +00:00
|
|
|
define_in_config_h_if_yes "$_seq_midi" 'USE_SEQ_MIDI'
|
|
|
|
echo "$_seq_midi"
|
2010-07-20 08:24:48 +00:00
|
|
|
|
2010-10-13 00:48:40 +00:00
|
|
|
#
|
|
|
|
# Check for TiMidity(++)
|
|
|
|
#
|
|
|
|
echocheck "TiMidity"
|
|
|
|
if test "$_timidity" = auto ; then
|
|
|
|
# TODO: Is there a good possibility of auto detecting whether we
|
|
|
|
# should include TiMidity support? It can only be used on Unix
|
|
|
|
# currently so we use that as "detection" for now.
|
|
|
|
_timidity="$_unix"
|
|
|
|
fi
|
|
|
|
define_in_config_h_if_yes "$_timidity" 'USE_TIMIDITY'
|
|
|
|
echo "$_timidity"
|
|
|
|
|
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
|
2010-04-09 14:23:30 +00:00
|
|
|
cc_check $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
|
|
|
LIBS="$LIBS $ZLIB_LIBS -lz"
|
|
|
|
INCLUDES="$INCLUDES $ZLIB_CFLAGS"
|
2003-12-10 00:15:20 +00:00
|
|
|
fi
|
2010-07-20 08:24:48 +00:00
|
|
|
define_in_config_if_yes "$_zlib" 'USE_ZLIB'
|
2003-12-10 00:15:20 +00:00
|
|
|
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;
|
|
|
|
|
2007-11-01 21:03:16 +00:00
|
|
|
#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
|
2006-01-24 19:24:22 +00:00
|
|
|
|
|
|
|
if test -n "$_host"; then
|
|
|
|
# don't execute while cross compiling
|
2010-04-09 14:23:30 +00:00
|
|
|
cc_check $MPEG2_CFLAGS $MPEG2_LIBS -lmpeg2 && _mpeg2=yes
|
2006-01-24 19:24:22 +00:00
|
|
|
else
|
2010-05-08 20:22:50 +00:00
|
|
|
cc_check_no_clean $MPEG2_CFLAGS $MPEG2_LIBS -lmpeg2 && $TMPO$HOSTEXEEXT && _mpeg2=yes
|
|
|
|
cc_check_clean
|
2006-01-24 19:24:22 +00:00
|
|
|
fi
|
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
|
|
|
INCLUDES="$INCLUDES $MPEG2_CFLAGS"
|
|
|
|
LIBS="$LIBS $MPEG2_LIBS -lmpeg2"
|
2004-01-12 11:11:19 +00:00
|
|
|
fi
|
2010-07-20 08:24:48 +00:00
|
|
|
define_in_config_if_yes "$_mpeg2" 'USE_MPEG2'
|
2004-01-12 11:11:19 +00:00
|
|
|
echo "$_mpeg2"
|
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
|
2010-04-09 14:23:30 +00:00
|
|
|
cc_check $FLUIDSYNTH_CFLAGS $FLUIDSYNTH_LIBS -lfluidsynth && _fluidsynth=yes
|
2005-04-10 14:33:44 +00:00
|
|
|
fi
|
|
|
|
if test "$_fluidsynth" = yes ; then
|
2009-03-30 03:44:26 +00:00
|
|
|
case $_host_os in
|
2009-03-30 09:10:28 +00:00
|
|
|
mingw*)
|
2009-03-30 03:44:26 +00:00
|
|
|
LIBS="$LIBS $FLUIDSYNTH_LIBS -lfluidsynth -ldsound -lwinmm"
|
|
|
|
;;
|
|
|
|
*)
|
2009-05-31 23:23:25 +00:00
|
|
|
LIBS="$LIBS $FLUIDSYNTH_LIBS -lfluidsynth"
|
2009-03-30 03:44:26 +00:00
|
|
|
;;
|
|
|
|
esac
|
2006-08-04 22:59:49 +00:00
|
|
|
INCLUDES="$INCLUDES $FLUIDSYNTH_CFLAGS"
|
2005-04-10 14:33:44 +00:00
|
|
|
fi
|
2010-07-20 08:24:48 +00:00
|
|
|
define_in_config_h_if_yes "$_fluidsynth" 'USE_FLUIDSYNTH'
|
2005-04-10 14:33:44 +00:00
|
|
|
echo "$_fluidsynth"
|
|
|
|
|
2009-07-25 23:36:24 +00:00
|
|
|
#
|
|
|
|
# Check for readline if text_console is enabled
|
|
|
|
#
|
|
|
|
echocheck "readline"
|
|
|
|
if test "$_text_console" = yes ; then
|
2009-09-30 11:21:09 +00:00
|
|
|
_READLINE_LIBS="-lreadline"
|
2009-07-25 23:36:24 +00:00
|
|
|
if test "$_readline" = auto ; then
|
|
|
|
_readline=no
|
|
|
|
cat > $TMPC << EOF
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <readline/readline.h>
|
|
|
|
#include <readline/history.h>
|
|
|
|
|
|
|
|
int main(void) {
|
|
|
|
char *x = readline("");
|
|
|
|
}
|
|
|
|
EOF
|
2010-07-20 10:00:18 +00:00
|
|
|
cc_check_no_clean $READLINE_CFLAGS $READLINE_LIBS $_READLINE_LIBS && _readline=yes
|
2009-09-30 11:21:09 +00:00
|
|
|
if test "$_readline" = no ; then
|
|
|
|
_READLINE_LIBS="-lreadline -ltermcap"
|
2010-07-20 10:00:18 +00:00
|
|
|
cc_check_no_clean $READLINE_CFLAGS $READLINE_LIBS $_READLINE_LIBS && _readline=yes
|
2009-09-30 11:21:09 +00:00
|
|
|
fi
|
2009-07-25 23:36:24 +00:00
|
|
|
fi
|
2010-07-20 10:00:18 +00:00
|
|
|
cc_check_clean
|
2009-07-25 23:36:24 +00:00
|
|
|
echo "$_readline"
|
|
|
|
else
|
|
|
|
_readline=no
|
|
|
|
echo "skipping (text console disabled)"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test "$_readline" = yes ; then
|
2009-09-30 11:21:09 +00:00
|
|
|
LIBS="$LIBS $READLINE_LIBS $_READLINE_LIBS"
|
2009-07-25 23:36:24 +00:00
|
|
|
INCLUDES="$INCLUDES $READLINE_CFLAGS"
|
|
|
|
fi
|
2010-07-20 08:24:48 +00:00
|
|
|
define_in_config_h_if_yes "$_readline" 'USE_READLINE'
|
2009-07-25 23:36:24 +00:00
|
|
|
|
2010-07-20 08:24:48 +00:00
|
|
|
define_in_config_h_if_yes "$_text_console" 'USE_TEXT_CONSOLE'
|
2009-07-25 23:36:24 +00:00
|
|
|
|
2010-11-28 17:42:05 +00:00
|
|
|
#
|
|
|
|
# Check for OpenGL (ES)
|
|
|
|
#
|
2010-12-02 12:44:36 +00:00
|
|
|
echocheck "OpenGL"
|
2010-11-28 17:42:05 +00:00
|
|
|
if test "$_opengl" = auto ; then
|
|
|
|
_opengl=no
|
|
|
|
if test "$_backend" = "sdl" ; then
|
2010-11-29 20:07:09 +00:00
|
|
|
# Try different header filenames
|
|
|
|
# 1) GL/gl.h This is usually used on POSIX and Windows systems
|
|
|
|
# 2) OpenGL/gl.h This is used on Mac OS X
|
2010-12-02 12:44:36 +00:00
|
|
|
# 3) GLES/gl.h This is used for OpenGL ES 1.x
|
|
|
|
for i in "GL/gl.h" "OpenGL/gl.h" "GLES/gl.h"; do
|
|
|
|
# Test the current header for OpenGL
|
2010-11-29 20:07:09 +00:00
|
|
|
cat > $TMPC << EOF
|
|
|
|
#include <$i>
|
2010-11-28 17:42:05 +00:00
|
|
|
int main(void) { return GL_VERSION_1_1; }
|
|
|
|
EOF
|
2010-11-29 20:07:09 +00:00
|
|
|
cc_check $DEFINES $OPENGL_CFLAGS $OPENGL_LIBS && _opengl=yes && break
|
2010-12-02 12:44:36 +00:00
|
|
|
|
|
|
|
# Test the current header for OpenGL ES
|
|
|
|
cat > $TMPC << EOF
|
|
|
|
#include <$i>
|
|
|
|
int main(void) { return GL_OES_VERSION_1_1; }
|
|
|
|
EOF
|
|
|
|
cc_check $DEFINES $OPENGL_CFLAGS $OPENGL_LIBS && _opengl=yes && _opengles=yes && break
|
2010-11-29 20:07:09 +00:00
|
|
|
done
|
2010-11-28 17:42:05 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if test "$_opengl" = yes ; then
|
2010-11-29 20:07:09 +00:00
|
|
|
# Our simple test case
|
|
|
|
cat > $TMPC << EOF
|
|
|
|
int main(void) { return 0; }
|
|
|
|
EOF
|
|
|
|
|
|
|
|
_opengl=no
|
|
|
|
# Try different library names
|
2010-12-02 12:44:36 +00:00
|
|
|
if test "$_opengles" = "yes" ; then
|
|
|
|
# 1) GLES_CM This is usually used for OpenGL ES 1.1 (Common profile)
|
|
|
|
# 2) GLESv1_CM This is used by the Windows Mali OpenGL ES 1.1 Emulator
|
|
|
|
# 3) glesv1 This is used by the Linux Mali OpenGL ES 1.1 Emulator
|
|
|
|
_opengles=no
|
|
|
|
for lib in "-lGLES_CM" "-lGLESv1_CM" "-lglesv1"; do
|
|
|
|
if cc_check_no_clean $DEFINES $OPENGL_CFLAGS $OPENGL_LIBS $lib
|
|
|
|
then
|
|
|
|
_opengl=yes
|
|
|
|
_opengles=yes
|
|
|
|
OPENGL_LIBS="$OPENGL_LIBS $lib"
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
else
|
|
|
|
# 1) -framework OpenGL This is used on Mac OS X
|
|
|
|
# 2) GL This is usually used on POSIX systems
|
|
|
|
# 3) opengl32 This is used on Windows
|
|
|
|
#
|
|
|
|
# We try "-framework OpenGL" first here to assure it will always be
|
|
|
|
# picked up by the configure script on Mac OS X, even when a libGL
|
|
|
|
# exists.
|
|
|
|
for lib in "-framework OpenGL" "-lGL" "-lopengl32"; do
|
|
|
|
if cc_check_no_clean $DEFINES $OPENGL_CFLAGS $OPENGL_LIBS $lib
|
|
|
|
then
|
|
|
|
_opengl=yes
|
|
|
|
OPENGL_LIBS="$OPENGL_LIBS $lib"
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|
2010-11-29 20:07:09 +00:00
|
|
|
cc_check_clean
|
|
|
|
|
|
|
|
if test "$_opengl" = yes ; then
|
|
|
|
LIBS="$LIBS $OPENGL_LIBS"
|
|
|
|
INCLUDES="$INCLUDES $OPENGL_CFLAGS"
|
|
|
|
fi
|
2010-11-28 17:42:05 +00:00
|
|
|
fi
|
|
|
|
|
2010-12-02 12:44:36 +00:00
|
|
|
if test "$_opengles" = "yes" ; then
|
|
|
|
echo "yes (OpenGL ES)"
|
|
|
|
else
|
|
|
|
echo "$_opengl"
|
|
|
|
fi
|
2010-11-28 17:42:05 +00:00
|
|
|
|
2010-11-29 20:07:09 +00:00
|
|
|
define_in_config_if_yes "$_opengl" "USE_OPENGL"
|
2010-12-02 12:44:36 +00:00
|
|
|
define_in_config_if_yes "$_opengles" "USE_GLES"
|
2010-11-28 17:42:05 +00:00
|
|
|
|
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
|
2009-03-19 21:42:50 +00:00
|
|
|
echocheck "nasm"
|
|
|
|
if test "$_nasm" = no ; then
|
|
|
|
echo "disabled"
|
2009-03-22 21:12:15 +00:00
|
|
|
else
|
|
|
|
IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=$SEPARATOR
|
2009-03-19 21:42:50 +00:00
|
|
|
|
2009-03-22 21:12:15 +00:00
|
|
|
for path_dir in $_nasmpath; do
|
2009-03-23 17:40:46 +00:00
|
|
|
if test -x "$path_dir/nasm$NATIVEEXEEXT" ; then
|
|
|
|
NASM="$path_dir/nasm$NATIVEEXEEXT"
|
2010-05-09 13:31:34 +00:00
|
|
|
NASMFLAGS="-O1 -g"
|
2009-03-22 21:12:15 +00:00
|
|
|
echo $NASM
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
2009-03-19 21:42:50 +00:00
|
|
|
|
2010-05-09 13:31:34 +00:00
|
|
|
# fallback to the nasm compatible yasm
|
|
|
|
if test x$NASM = x -o x$NASM = x'"$NASM"'; then
|
|
|
|
for path_dir in $_nasmpath; do
|
|
|
|
if test -x "$path_dir/yasm$NATIVEEXEEXT" ; then
|
|
|
|
NASM="$path_dir/yasm$NATIVEEXEEXT"
|
|
|
|
NASMFLAGS="-a x86 -m x86"
|
|
|
|
echo $NASM
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
2009-03-22 21:12:15 +00:00
|
|
|
IFS="$ac_save_ifs"
|
2009-03-19 21:42:50 +00:00
|
|
|
|
2009-03-22 21:12:15 +00:00
|
|
|
if test x$NASM = x -o x$NASM = x'"$NASM"'; then
|
|
|
|
echo "not found"
|
|
|
|
_nasm=no
|
|
|
|
else
|
|
|
|
case $_host_os in
|
2010-10-11 23:26:26 +00:00
|
|
|
darwin*)
|
|
|
|
NASMFLAGS="$NASMFLAGS -f macho"
|
2009-03-22 21:12:15 +00:00
|
|
|
;;
|
2009-03-30 09:10:28 +00:00
|
|
|
mingw*)
|
2010-05-09 13:31:34 +00:00
|
|
|
NASMFLAGS="$NASMFLAGS -f win32"
|
2009-03-22 21:12:15 +00:00
|
|
|
;;
|
2010-10-11 23:26:26 +00:00
|
|
|
os2-emx*)
|
|
|
|
NASMFLAGS="$NASMFLAGS -f aout"
|
2009-03-22 21:12:15 +00:00
|
|
|
;;
|
|
|
|
*)
|
2010-05-09 13:31:34 +00:00
|
|
|
NASMFLAGS="$NASMFLAGS -f elf"
|
2009-03-22 21:12:15 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
_nasm=yes
|
|
|
|
fi
|
2009-03-19 21:42:50 +00:00
|
|
|
fi
|
2005-01-06 15:50:41 +00:00
|
|
|
fi
|
2004-05-21 02:08:48 +00:00
|
|
|
|
2010-07-20 08:24:48 +00:00
|
|
|
define_in_config_if_yes $_nasm 'USE_NASM'
|
2004-05-21 02:08:48 +00:00
|
|
|
|
2008-09-30 13:51:01 +00:00
|
|
|
#
|
2009-03-19 21:42:50 +00:00
|
|
|
# Enable vkeybd / keymapper
|
2008-09-30 13:51:01 +00:00
|
|
|
#
|
2009-01-20 22:46:34 +00:00
|
|
|
if test "$_vkeybd" = yes ; then
|
|
|
|
DEFINES="$DEFINES -DENABLE_VKEYBD"
|
|
|
|
fi
|
|
|
|
if test "$_keymapper" = yes ; then
|
|
|
|
DEFINES="$DEFINES -DENABLE_KEYMAPPER"
|
|
|
|
fi
|
2008-09-30 13:51:01 +00:00
|
|
|
|
2010-06-15 10:44:51 +00:00
|
|
|
# Check whether to build translation support
|
|
|
|
#
|
|
|
|
echo_n "Building translation support... "
|
2010-07-20 08:24:48 +00:00
|
|
|
define_in_config_if_yes $_translation 'USE_TRANSLATION'
|
2010-06-15 10:44:51 +00:00
|
|
|
if test "$_translation" = no ; then
|
|
|
|
echo "no"
|
|
|
|
else
|
|
|
|
echo_n "yes ("
|
|
|
|
|
|
|
|
cat > $TMPC << EOF
|
|
|
|
#include <locale.h>
|
|
|
|
int main(void) { setlocale(LC_ALL, ""); return 0; }
|
|
|
|
EOF
|
|
|
|
_detectlang=no
|
|
|
|
cc_check $LDFLAGS $CXXFLAGS && _detectlang=yes
|
|
|
|
|
2010-07-20 08:24:48 +00:00
|
|
|
define_in_config_h_if_yes $_detectlang 'USE_DETECTLANG'
|
2010-06-15 10:44:51 +00:00
|
|
|
if test "$_detectlang" = yes ; then
|
2010-07-01 16:26:00 +00:00
|
|
|
echo "with runtime language detection)"
|
2010-06-15 10:44:51 +00:00
|
|
|
else
|
|
|
|
echo "without runtime language detection)"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2004-04-16 08:30:57 +00:00
|
|
|
#
|
2009-03-22 11:24:23 +00:00
|
|
|
# Figure out installation directories
|
2004-04-16 08:30:57 +00:00
|
|
|
#
|
2010-05-09 20:42:18 +00:00
|
|
|
test "x$prefix" = xNONE && prefix=/usr/local
|
|
|
|
test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
|
2006-08-18 21:55:11 +00:00
|
|
|
|
2010-05-09 20:42:18 +00:00
|
|
|
DEFINES="$DEFINES -DDATA_PATH=\\\"$datadir\\\""
|
2006-08-18 21:55:11 +00:00
|
|
|
|
2010-10-20 13:03:19 +00:00
|
|
|
case $_backend in
|
|
|
|
openpandora)
|
|
|
|
# Add ../plugins as a path so plugins can be found when running from a .PND.
|
|
|
|
DEFINES="$DEFINES -DPLUGIN_DIRECTORY=\\\"../plugins\\\""
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
DEFINES="$DEFINES -DPLUGIN_DIRECTORY=\\\"$libdir/scummvm\\\""
|
|
|
|
;;
|
|
|
|
esac
|
2004-04-16 08:30:57 +00:00
|
|
|
|
2010-04-26 12:11:19 +00:00
|
|
|
#
|
|
|
|
# Set variables for profiling.
|
|
|
|
# We need to do it here to prevent mess-ups with the tests e.g. on the PSP
|
|
|
|
#
|
|
|
|
if test "$_enable_prof" = yes ; then
|
|
|
|
CXXFLAGS="$CXXFLAGS -pg"
|
|
|
|
LDFLAGS="$LDFLAGS -pg"
|
|
|
|
DEFINES="$DEFINES -DENABLE_PROFILING"
|
|
|
|
fi
|
|
|
|
|
2009-01-21 16:15:07 +00:00
|
|
|
echo_n "Backend... "
|
|
|
|
echo_n "$_backend"
|
|
|
|
|
|
|
|
if test "$_nasm" = yes ; then
|
|
|
|
echo_n ", assembly routines"
|
|
|
|
fi
|
|
|
|
|
2009-08-21 09:43:30 +00:00
|
|
|
if test "$_16bit" = yes ; then
|
|
|
|
echo_n ", 16bit color"
|
|
|
|
fi
|
|
|
|
|
2010-05-09 11:00:17 +00:00
|
|
|
if test "$_build_scalers" = yes ; then
|
2010-05-10 17:25:12 +00:00
|
|
|
if test "$_build_hq_scalers" = yes ; then
|
|
|
|
echo_n ", HQ scalers"
|
|
|
|
else
|
|
|
|
echo_n ", scalers"
|
|
|
|
fi
|
2009-01-21 16:15:07 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
if test "$_mt32emu" = yes ; then
|
|
|
|
echo_n ", MT-32 emu"
|
|
|
|
fi
|
|
|
|
|
2009-08-29 19:48:01 +00:00
|
|
|
if test "$_indeo3" = yes ; then
|
|
|
|
echo_n ", Indeo3 decoder"
|
|
|
|
fi
|
|
|
|
|
2009-07-25 23:36:24 +00:00
|
|
|
if test "$_text_console" = yes ; then
|
|
|
|
echo_n ", text console"
|
|
|
|
fi
|
|
|
|
|
2009-01-21 16:15:07 +00:00
|
|
|
if test "$_vkeybd" = yes ; then
|
|
|
|
echo_n ", virtual keyboard"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test "$_keymapper" = yes ; then
|
|
|
|
echo ", keymapper"
|
|
|
|
else
|
|
|
|
echo
|
|
|
|
fi
|
|
|
|
|
|
|
|
#
|
|
|
|
# Backend related stuff
|
|
|
|
#
|
|
|
|
case $_backend in
|
2010-08-02 17:11:25 +00:00
|
|
|
android)
|
2011-02-22 21:13:44 +00:00
|
|
|
# ssp at this point so the cxxtests link
|
|
|
|
CXXFLAGS="$CXXFLAGS -fstack-protector -Wa,--noexecstack"
|
|
|
|
LDFLAGS="$LDFLAGS -Wl,-z,noexecstack"
|
|
|
|
|
2010-08-02 17:11:25 +00:00
|
|
|
static_libs=''
|
|
|
|
system_libs=''
|
|
|
|
for lib in $LIBS; do
|
|
|
|
case $lib in
|
|
|
|
-lz|-lm)
|
|
|
|
system_libs="$system_libs $lib"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
static_libs="$static_libs $lib"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
# -lgcc is carefully placed here - we want to catch
|
|
|
|
# all toolchain symbols in *our* libraries rather
|
|
|
|
# than pick up anything unhygenic from the Android libs.
|
2011-02-06 14:23:47 +00:00
|
|
|
LIBS="-Wl,-Bstatic $static_libs"
|
|
|
|
LIBS="$LIBS -Wl,-Bdynamic -lgcc $system_libs -llog -lGLESv1_CM"
|
2011-02-22 21:13:44 +00:00
|
|
|
DEFINES="$DEFINES -DREDUCE_MEMORY_USAGE"
|
2010-08-02 17:11:25 +00:00
|
|
|
;;
|
2010-02-02 11:46:35 +00:00
|
|
|
dc)
|
|
|
|
INCLUDES="$INCLUDES "'-I$(srcdir)/backends/platform/dc -isystem $(ronindir)/include'
|
|
|
|
LDFLAGS="$LDFLAGS -Wl,-Ttext,0x8c010000 -nostartfiles "'$(ronindir)/lib/crt0.o -L$(ronindir)/lib'
|
|
|
|
LIBS="$LIBS -lronin -lm"
|
2009-01-21 16:15:07 +00:00
|
|
|
;;
|
2010-08-19 12:43:37 +00:00
|
|
|
dingux)
|
|
|
|
find_sdlconfig
|
|
|
|
INCLUDES="$INCLUDES `$_sdlconfig --prefix="$_sdlpath" --cflags`"
|
|
|
|
LIBS="$LIBS `$_sdlconfig --prefix="$_sdlpath" --libs`"
|
|
|
|
DEFINES="$DEFINES -DSDL_BACKEND -DDINGUX"
|
|
|
|
LDFLAGS="$LDFLAGS "
|
|
|
|
MODULES="$MODULES backends/platform/sdl"
|
|
|
|
;;
|
2010-08-02 17:11:25 +00:00
|
|
|
ds)
|
|
|
|
# TODO ds
|
|
|
|
INCLUDES="$INCLUDES "'-I$(srcdir)/backends/platform/ds/arm9/source'
|
|
|
|
INCLUDES="$INCLUDES "'-I$(srcdir)/backends/platform/ds/commoninclude'
|
|
|
|
INCLUDES="$INCLUDES "'-Ibackends/platform/ds/arm9/data'
|
|
|
|
;;
|
2010-02-02 11:46:35 +00:00
|
|
|
gp2x)
|
2009-01-21 16:15:07 +00:00
|
|
|
find_sdlconfig
|
|
|
|
INCLUDES="$INCLUDES `$_sdlconfig --prefix="$_sdlpath" --cflags`"
|
|
|
|
LIBS="$LIBS `$_sdlconfig --prefix="$_sdlpath" --libs`"
|
2010-09-20 19:33:58 +00:00
|
|
|
LDFLAGS="$LDFLAGS"
|
2010-11-09 05:21:07 +00:00
|
|
|
DEFINES="$DEFINES -DSDL_BACKEND"
|
2010-02-02 11:46:35 +00:00
|
|
|
;;
|
2010-09-09 09:55:07 +00:00
|
|
|
gph)
|
2010-02-02 11:46:35 +00:00
|
|
|
find_sdlconfig
|
|
|
|
INCLUDES="$INCLUDES `$_sdlconfig --prefix="$_sdlpath" --cflags`"
|
|
|
|
LIBS="$LIBS `$_sdlconfig --prefix="$_sdlpath" --libs`"
|
|
|
|
LDFLAGS="$LDFLAGS"
|
2010-11-09 05:21:07 +00:00
|
|
|
DEFINES="$DEFINES -DSDL_BACKEND"
|
2010-02-02 11:46:35 +00:00
|
|
|
;;
|
|
|
|
iphone)
|
|
|
|
OBJCFLAGS="$OBJCFLAGS --std=c99"
|
|
|
|
LIBS="$LIBS -lobjc -framework UIKit -framework CoreGraphics -framework OpenGLES -framework QuartzCore -framework GraphicsServices -framework CoreFoundation -framework Foundation -framework AudioToolbox -framework CoreAudio"
|
2009-01-21 16:15:07 +00:00
|
|
|
;;
|
2009-08-22 12:35:49 +00:00
|
|
|
linuxmoto)
|
|
|
|
find_sdlconfig
|
|
|
|
INCLUDES="$INCLUDES `$_sdlconfig --prefix="$_sdlpath" --cflags`"
|
|
|
|
LIBS="$LIBS `$_sdlconfig --prefix="$_sdlpath" --libs`"
|
|
|
|
DEFINES="$DEFINES -DSDL_BACKEND -DLINUXMOTO"
|
|
|
|
;;
|
2010-08-01 17:16:39 +00:00
|
|
|
n64)
|
2010-08-02 20:38:06 +00:00
|
|
|
INCLUDES="$INCLUDES "'-I$(N64SDK)/include'
|
|
|
|
INCLUDES="$INCLUDES "'-I$(N64SDK)/mips64/include'
|
|
|
|
INCLUDES="$INCLUDES "'-I$(N64SDK)/hkz-libn64'
|
2010-08-01 17:16:39 +00:00
|
|
|
INCLUDES="$INCLUDES "'-I$(srcdir)/backends/platform/n64'
|
|
|
|
LIBS="$LIBS -lpakfs -lframfs -ln64 -ln64utils -lromfs -lm -lstdc++ -lc -lgcc -lz -lnosys"
|
|
|
|
;;
|
2010-02-02 11:46:35 +00:00
|
|
|
null)
|
|
|
|
DEFINES="$DEFINES -DUSE_NULL_DRIVER"
|
|
|
|
;;
|
2010-09-06 17:35:27 +00:00
|
|
|
openpandora)
|
|
|
|
find_sdlconfig
|
|
|
|
INCLUDES="$INCLUDES `$_sdlconfig --prefix="$_sdlpath" --cflags`"
|
|
|
|
LIBS="$LIBS `$_sdlconfig --prefix="$_sdlpath" --libs`"
|
|
|
|
LDFLAGS="$LDFLAGS"
|
|
|
|
;;
|
2010-02-02 11:46:35 +00:00
|
|
|
ps2)
|
|
|
|
# TODO ps2
|
|
|
|
DEFINES="$DEFINES -D_EE -DFORCE_RTL"
|
|
|
|
INCLUDES="$INCLUDES -I$PS2SDK/ee/include -I$PS2SDK/common/include -I$PS2SDK/ports/include"
|
2010-08-14 09:03:35 +00:00
|
|
|
if test "$_dynamic_modules" = no ; then
|
|
|
|
LDFLAGS="$LDFLAGS -mno-crt0 $PS2SDK/ee/startup/crt0.o -T $PS2SDK/ee/startup/linkfile"
|
|
|
|
fi
|
2010-02-02 11:46:35 +00:00
|
|
|
LDFLAGS="$LDFLAGS -L$PS2SDK/ee/lib -L$PS2SDK/ports/lib"
|
|
|
|
LIBS="$LIBS -lmc -lpad -lmouse -lhdd -lpoweroff -lsjpcm -lm -lc -lfileXio -lkernel -lstdc++ "
|
|
|
|
;;
|
|
|
|
psp)
|
2010-10-31 11:08:43 +00:00
|
|
|
DEFINES="$DEFINES -D__PSP__ -DDISABLE_COMMAND_LINE -DDISABLE_DOSBOX_OPL"
|
2010-06-16 09:04:27 +00:00
|
|
|
LIBS="$LIBS -lpng -Wl,-Map,mapfile.txt"
|
2010-02-02 11:46:35 +00:00
|
|
|
;;
|
2009-11-09 14:43:05 +00:00
|
|
|
samsungtv)
|
|
|
|
find_sdlconfig
|
2010-03-13 19:30:12 +00:00
|
|
|
INCLUDES="$INCLUDES `$_sdlconfig --prefix="$_sdlpath" --cflags`"
|
|
|
|
LIBS="$LIBS `$_sdlconfig --prefix="$_sdlpath" --libs`"
|
2009-11-09 14:43:05 +00:00
|
|
|
DEFINES="$DEFINES -DSDL_BACKEND -DSAMSUNGTV"
|
2010-03-24 21:25:18 +00:00
|
|
|
LDFLAGS="$LDFLAGS -shared -fpic"
|
2009-11-10 17:18:19 +00:00
|
|
|
MODULES="$MODULES backends/platform/sdl"
|
2009-11-09 14:43:05 +00:00
|
|
|
;;
|
2010-02-02 11:46:35 +00:00
|
|
|
sdl)
|
2009-06-04 08:30:31 +00:00
|
|
|
find_sdlconfig
|
|
|
|
INCLUDES="$INCLUDES `$_sdlconfig --prefix="$_sdlpath" --cflags`"
|
|
|
|
LIBS="$LIBS `$_sdlconfig --prefix="$_sdlpath" --libs`"
|
2010-02-02 11:46:35 +00:00
|
|
|
DEFINES="$DEFINES -DSDL_BACKEND"
|
2009-03-18 23:38:25 +00:00
|
|
|
;;
|
2009-03-19 18:56:54 +00:00
|
|
|
wii)
|
|
|
|
DEFINES="$DEFINES -D__WII__ -DGEKKO"
|
|
|
|
case $_host_os in
|
|
|
|
gamecube)
|
2010-08-14 00:56:12 +00:00
|
|
|
LIBS="$LIBS -lgxflux -liso9660 -lfat -logc -ldb"
|
2009-03-19 18:56:54 +00:00
|
|
|
;;
|
|
|
|
*)
|
2010-08-14 00:56:12 +00:00
|
|
|
LIBS="$LIBS -lgxflux -ldi -liso9660 -ltinysmb -lfat -lwiiuse -lbte -logc -lwiikeyboard -ldb"
|
2009-03-19 18:56:54 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
;;
|
2010-02-02 11:46:35 +00:00
|
|
|
wince)
|
|
|
|
INCLUDES="$INCLUDES "'-I$(srcdir) -I$(srcdir)/backends/platform/wince -I$(srcdir)/engines -I$(srcdir)/backends/platform/wince/missing/gcc -I$(srcdir)/backends/platform/wince/CEgui -I$(srcdir)/backends/platform/wince/CEkeys'
|
|
|
|
LIBS="$LIBS -static -lSDL"
|
2010-11-09 05:21:07 +00:00
|
|
|
DEFINES="$DEFINES -DSDL_BACKEND"
|
2009-10-08 20:59:53 +00:00
|
|
|
;;
|
2009-01-21 16:15:07 +00:00
|
|
|
*)
|
|
|
|
echo "support for $_backend backend not implemented in configure script yet"
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
2009-03-22 11:24:23 +00:00
|
|
|
MODULES="$MODULES backends/platform/$_backend"
|
2009-01-21 16:15:07 +00:00
|
|
|
|
2009-03-19 18:52:38 +00:00
|
|
|
#
|
2009-12-26 16:59:14 +00:00
|
|
|
# Do CXXFLAGS now that we know the compiler version
|
2009-03-19 18:52:38 +00:00
|
|
|
#
|
2009-09-25 12:11:27 +00:00
|
|
|
if test "$have_gcc" = yes ; then
|
|
|
|
if test "$_cxx_major" -ge "3" ; then
|
|
|
|
case $_host_os in
|
2010-01-25 01:39:44 +00:00
|
|
|
# newlib-based system include files suppress non-C89 function
|
2009-09-25 12:11:27 +00:00
|
|
|
# declarations under __STRICT_ANSI__
|
2010-10-11 23:26:26 +00:00
|
|
|
amigaos* | android | dreamcast | ds | gamecube | mingw* | n64 | psp | wii | wince )
|
2009-09-25 12:11:27 +00:00
|
|
|
CXXFLAGS="$CXXFLAGS -W -Wno-unused-parameter"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
CXXFLAGS="$CXXFLAGS -ansi -W -Wno-unused-parameter"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
add_line_to_config_mk 'HAVE_GCC3 = 1'
|
2010-04-09 12:23:43 +00:00
|
|
|
add_line_to_config_mk 'CXX_UPDATE_DEP_FLAG = -MMD -MF "$(*D)/$(DEPDIR)/$(*F).d" -MQ "$@" -MP'
|
2009-09-25 12:11:27 +00:00
|
|
|
fi;
|
2009-03-19 18:52:38 +00:00
|
|
|
|
2010-04-09 12:30:45 +00:00
|
|
|
if test "$_cxx_major" -eq 4 && test "$_cxx_minor" -ge 3 || \
|
|
|
|
test "$_cxx_major" -gt 4 ; then
|
2009-09-25 12:11:27 +00:00
|
|
|
CXXFLAGS="$CXXFLAGS -Wno-empty-body"
|
|
|
|
else
|
|
|
|
CXXFLAGS="$CXXFLAGS -Wconversion"
|
|
|
|
fi;
|
2011-02-10 01:05:48 +00:00
|
|
|
elif test "$have_icc" = yes ; then
|
|
|
|
add_line_to_config_mk 'CXX_UPDATE_DEP_FLAG = -MMD -MF "$(*D)/$(DEPDIR)/$(*F).d" -MQ "$@" -MP'
|
2009-03-19 18:52:38 +00:00
|
|
|
fi;
|
|
|
|
|
|
|
|
# Some platforms use certain GNU extensions in header files
|
|
|
|
case $_host_os in
|
2010-08-02 17:11:25 +00:00
|
|
|
android | gamecube | psp | wii)
|
2009-03-19 18:56:54 +00:00
|
|
|
;;
|
2009-03-19 18:52:38 +00:00
|
|
|
*)
|
2011-02-10 01:05:48 +00:00
|
|
|
# ICC does not support pedantic
|
|
|
|
if test "$have_icc" = no ; then
|
|
|
|
CXXFLAGS="$CXXFLAGS -pedantic"
|
|
|
|
fi
|
2009-03-19 18:52:38 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2004-02-15 01:21:02 +00:00
|
|
|
#
|
2008-05-06 03:00:26 +00:00
|
|
|
# Engine selection
|
2004-02-15 01:21:02 +00:00
|
|
|
#
|
2008-05-06 03:00:26 +00:00
|
|
|
_engines_built_static=""
|
|
|
|
_engines_built_dynamic=""
|
2007-10-31 19:38:09 +00:00
|
|
|
_engines_skipped=""
|
2007-10-29 21:40:38 +00:00
|
|
|
|
2007-10-31 19:38:09 +00:00
|
|
|
for engine in $_engines; do
|
|
|
|
if test "`get_engine_sub $engine`" = "no" ; then
|
2008-05-06 03:00:26 +00:00
|
|
|
# It's a main engine
|
|
|
|
if test `get_engine_build $engine` = no ; then
|
|
|
|
isbuilt=no
|
|
|
|
else
|
|
|
|
# If dynamic plugins aren't supported, mark
|
|
|
|
# all the engines as static
|
2008-05-06 03:11:01 +00:00
|
|
|
if test $_dynamic_modules = no ; then
|
2009-08-31 01:24:04 +00:00
|
|
|
set_var _engine_${engine}_build "static"
|
2008-05-06 03:00:26 +00:00
|
|
|
else
|
|
|
|
# If it wasn't explicitly marked as static or
|
|
|
|
# dynamic, use the configured default
|
|
|
|
if test `get_engine_build $engine` = yes ; then
|
2009-08-31 01:24:04 +00:00
|
|
|
set_var _engine_${engine}_build "${_plugins_default}"
|
2008-05-06 03:00:26 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Prepare the defines
|
|
|
|
if test `get_engine_build $engine` = dynamic ; then
|
|
|
|
isbuilt=DYNAMIC_PLUGIN
|
|
|
|
else
|
2009-08-31 01:24:04 +00:00
|
|
|
set_var _engine_${engine}_build "static"
|
2008-05-06 03:00:26 +00:00
|
|
|
isbuilt=STATIC_PLUGIN
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Prepare the information to be shown
|
2007-11-04 06:55:45 +00:00
|
|
|
prepare_engine_build_strings $engine
|
2008-05-06 03:00:26 +00:00
|
|
|
else
|
|
|
|
# It's a subengine, just say yes or no
|
|
|
|
if test "`get_engine_build $engine`" = "no" ; then
|
|
|
|
isbuilt=no
|
|
|
|
else
|
|
|
|
isbuilt=1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Save the settings
|
2008-07-23 19:50:57 +00:00
|
|
|
defname="ENABLE_`echo $engine | tr '[a-z]' '[A-Z]'`"
|
2008-05-06 03:00:26 +00:00
|
|
|
if test "$isbuilt" = "no" ; then
|
|
|
|
add_line_to_config_mk "# $defname"
|
|
|
|
else
|
|
|
|
add_line_to_config_mk "$defname = $isbuilt"
|
2004-12-16 22:15:32 +00:00
|
|
|
fi
|
2007-10-31 19:38:09 +00:00
|
|
|
done
|
|
|
|
|
2008-05-06 03:00:26 +00:00
|
|
|
#
|
|
|
|
# Show which engines ("frontends") are to be built
|
|
|
|
#
|
2007-10-31 19:38:09 +00:00
|
|
|
echo
|
2008-05-06 03:00:26 +00:00
|
|
|
if test -n "$_engines_built_static" ; then
|
|
|
|
echo "Engines (builtin):"
|
|
|
|
echo $_engines_built_static | sed 's/@/\
|
|
|
|
/g
|
|
|
|
s/#/ /g'
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test -n "$_engines_built_dynamic" ; then
|
|
|
|
echo "Engines (plugins):"
|
|
|
|
echo $_engines_built_dynamic | sed 's/@/\
|
2007-10-31 19:38:09 +00:00
|
|
|
/g
|
|
|
|
s/#/ /g'
|
2003-07-28 02:12:59 +00:00
|
|
|
fi
|
2007-10-31 19:38:09 +00:00
|
|
|
|
2007-11-04 06:55:45 +00:00
|
|
|
if test -n "$_engines_skipped" ; then
|
2007-10-31 19:38:09 +00:00
|
|
|
echo "Engines Skipped:"
|
|
|
|
echo $_engines_skipped | sed 's/@/\
|
|
|
|
/g
|
|
|
|
s/#/ /g'
|
2006-11-03 21:23:07 +00:00
|
|
|
fi
|
2006-05-23 23:51:59 +00:00
|
|
|
|
2003-07-06 02:40:02 +00:00
|
|
|
|
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
|
|
|
|
|
2007-06-24 20:35:02 +00:00
|
|
|
$_config_h_data
|
2004-01-22 04:31:31 +00:00
|
|
|
|
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;
|
|
|
|
|
2005-02-06 17:21:31 +00:00
|
|
|
/* Plugin settings */
|
|
|
|
$_def_plugin
|
|
|
|
|
2003-05-20 10:15:38 +00:00
|
|
|
#endif /* CONFIG_H */
|
|
|
|
EOF
|
|
|
|
|
2006-06-24 08:48:11 +00:00
|
|
|
echo "Creating config.mk"
|
|
|
|
cat > config.mk << EOF
|
2003-05-18 09:54:28 +00:00
|
|
|
# -------- Generated by configure -----------
|
|
|
|
|
2003-05-20 10:24:24 +00:00
|
|
|
CXX := $CXX
|
2005-04-14 06:59:46 +00:00
|
|
|
CXXFLAGS := $CXXFLAGS
|
2009-10-09 11:38:13 +00:00
|
|
|
LD := $LD
|
2003-12-05 23:14:01 +00:00
|
|
|
LIBS += $LIBS
|
2003-05-20 10:24:24 +00:00
|
|
|
RANLIB := $_ranlib
|
2009-03-19 20:49:22 +00:00
|
|
|
STRIP := $_strip
|
2004-07-27 12:16:03 +00:00
|
|
|
AR := $_ar
|
2009-08-22 12:35:49 +00:00
|
|
|
AS := $_as
|
2009-08-22 16:30:20 +00:00
|
|
|
ASFLAGS := $ASFLAGS
|
2007-03-18 22:56:56 +00:00
|
|
|
WINDRES := $_windres
|
2009-09-11 18:13:27 +00:00
|
|
|
WINDRESFLAGS := $WINDRESFLAGS
|
2004-07-27 12:16:03 +00:00
|
|
|
WIN32PATH=$_win32path
|
2006-04-14 01:11:10 +00:00
|
|
|
AOS4PATH=$_aos4path
|
2009-03-19 20:49:22 +00:00
|
|
|
STATICLIBPATH=$_staticlibpath
|
2004-07-27 12:16:03 +00:00
|
|
|
|
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
|
2011-02-06 14:29:22 +00:00
|
|
|
EXEPRE := $HOSTEXEPRE
|
2009-03-23 17:40:46 +00:00
|
|
|
EXEEXT := $HOSTEXEEXT
|
2004-05-21 02:08:48 +00:00
|
|
|
NASM := $NASM
|
|
|
|
NASMFLAGS := $NASMFLAGS
|
2003-08-02 09:21:34 +00:00
|
|
|
|
2010-05-09 20:42:18 +00:00
|
|
|
prefix = $prefix
|
|
|
|
exec_prefix = $exec_prefix
|
|
|
|
bindir = $bindir
|
2010-10-11 19:50:17 +00:00
|
|
|
libdir = $libdir
|
2010-05-09 20:42:18 +00:00
|
|
|
datarootdir = $datarootdir
|
|
|
|
datadir = $datadir
|
|
|
|
mandir = $mandir
|
2010-10-11 19:50:17 +00:00
|
|
|
docdir = $docdir
|
2004-04-16 08:30:57 +00:00
|
|
|
|
2006-08-04 22:46:06 +00:00
|
|
|
$_config_mk_data
|
2005-05-14 22:56:41 +00:00
|
|
|
|
2003-07-06 02:40:02 +00:00
|
|
|
INCLUDES += $INCLUDES
|
|
|
|
OBJS += $OBJS
|
|
|
|
DEFINES += $DEFINES
|
2003-07-06 05:50:49 +00:00
|
|
|
LDFLAGS += $LDFLAGS
|
2007-11-06 17:23:33 +00:00
|
|
|
|
2007-12-02 12:11:59 +00:00
|
|
|
$_mak_plugins
|
|
|
|
|
2009-09-27 14:59:40 +00:00
|
|
|
port_mk = $_port_mk
|
|
|
|
|
2009-09-11 18:13:27 +00:00
|
|
|
SAVED_CONFIGFLAGS := $SAVED_CONFIGFLAGS
|
|
|
|
SAVED_LDFLAGS := $SAVED_LDFLAGS
|
|
|
|
SAVED_CXX := $SAVED_CXX
|
|
|
|
SAVED_CXXFLAGS := $SAVED_CXXFLAGS
|
|
|
|
SAVED_CPPFLAGS := $SAVED_CPPFLAGS
|
|
|
|
SAVED_ASFLAGS := $SAVED_ASFLAGS
|
|
|
|
SAVED_WINDRESFLAGS := $SAVED_WINDRESFLAGS
|
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'
|
|
|
|
#
|
2009-12-26 17:46:22 +00:00
|
|
|
if test ! -f Makefile.common ; then
|
2004-02-21 15:55:26 +00:00
|
|
|
echo "Creating Makefile"
|
|
|
|
|
|
|
|
cat > Makefile << EOF
|
|
|
|
# -------- Generated by configure -----------
|
|
|
|
srcdir = $_srcdir
|
|
|
|
vpath %.h \$(srcdir)
|
2007-12-01 17:56:24 +00:00
|
|
|
vpath %.cpp \$(srcdir)
|
|
|
|
vpath %.c \$(srcdir)
|
|
|
|
vpath %.m \$(srcdir)
|
2009-12-26 13:35:57 +00:00
|
|
|
vpath %.mm \$(srcdir)
|
2007-11-30 17:59:02 +00:00
|
|
|
vpath %.asm \$(srcdir)
|
2007-12-01 17:56:24 +00:00
|
|
|
vpath %.s \$(srcdir)
|
2009-03-18 23:38:25 +00:00
|
|
|
vpath %.S \$(srcdir)
|
2004-02-21 15:55:26 +00:00
|
|
|
include \$(srcdir)/Makefile
|
|
|
|
EOF
|
|
|
|
|
|
|
|
fi
|