mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-11 03:01:01 +00:00
update for bs2
svn-id: r9217
This commit is contained in:
parent
80bea5bc72
commit
78c39e150d
12
configure
vendored
12
configure
vendored
@ -32,6 +32,7 @@ _alsa=auto
|
|||||||
_build_scumm=yes
|
_build_scumm=yes
|
||||||
_build_simon=yes
|
_build_simon=yes
|
||||||
_build_sky=yes
|
_build_sky=yes
|
||||||
|
_build_bs2=yes
|
||||||
_need_memalign=no
|
_need_memalign=no
|
||||||
# more defaults
|
# more defaults
|
||||||
_backend=sdl
|
_backend=sdl
|
||||||
@ -160,6 +161,7 @@ Optional Features:
|
|||||||
--disable-scumm don't build the SCUMM engine
|
--disable-scumm don't build the SCUMM engine
|
||||||
--disable-simon don't build the simon engine
|
--disable-simon don't build the simon engine
|
||||||
--disable-sky don't build the Beneath a Steel Sky engine
|
--disable-sky don't build the Beneath a Steel Sky engine
|
||||||
|
--disable-bs2 don't build the Broken Sword II engine
|
||||||
|
|
||||||
Optional Libraries:
|
Optional Libraries:
|
||||||
--disable-alsa disable ALSA midi sound support [autodetect]
|
--disable-alsa disable ALSA midi sound support [autodetect]
|
||||||
@ -176,6 +178,7 @@ for ac_option in $@; do
|
|||||||
--disable-scumm) _build_scumm=no ;;
|
--disable-scumm) _build_scumm=no ;;
|
||||||
--disable-simon) _build_simon=no ;;
|
--disable-simon) _build_simon=no ;;
|
||||||
--disable-sky) _build_sky=no ;;
|
--disable-sky) _build_sky=no ;;
|
||||||
|
--disable-bs2) _build_bs2=no ;;
|
||||||
--enable-alsa) _alsa=yes ;;
|
--enable-alsa) _alsa=yes ;;
|
||||||
--disable-alsa) _alsa=no ;;
|
--disable-alsa) _alsa=no ;;
|
||||||
--enable-vorbis) _vorbis=yes ;;
|
--enable-vorbis) _vorbis=yes ;;
|
||||||
@ -279,6 +282,11 @@ else
|
|||||||
_def_sky='#undef DISABLE_SKY'
|
_def_sky='#undef DISABLE_SKY'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if test "$_build_bs2" = no ; then
|
||||||
|
_def_bs2='#define DISABLE_BS2'
|
||||||
|
else
|
||||||
|
_def_bs2='#undef DISABLE_BS2'
|
||||||
|
fi
|
||||||
|
|
||||||
#
|
#
|
||||||
# Determine hosttype
|
# Determine hosttype
|
||||||
@ -448,6 +456,9 @@ fi
|
|||||||
if test "$_build_sky" = yes ; then
|
if test "$_build_sky" = yes ; then
|
||||||
echo " Beneath a Steel Sky"
|
echo " Beneath a Steel Sky"
|
||||||
fi
|
fi
|
||||||
|
if test "$_build_bs2" = yes ; then
|
||||||
|
echo " Broken Sword II"
|
||||||
|
fi
|
||||||
echo
|
echo
|
||||||
|
|
||||||
echo -n "Backend... "
|
echo -n "Backend... "
|
||||||
@ -497,6 +508,7 @@ cat > config.h << EOF
|
|||||||
$_def_scumm
|
$_def_scumm
|
||||||
$_def_simon
|
$_def_simon
|
||||||
$_def_sky
|
$_def_sky
|
||||||
|
$_def_bs2
|
||||||
|
|
||||||
$_def_endianess
|
$_def_endianess
|
||||||
$_def_align
|
$_def_align
|
||||||
|
Loading…
x
Reference in New Issue
Block a user