aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorclone27272011-07-18 16:04:39 -0700
committerclone27272011-07-18 16:04:39 -0700
commit6370984b2238f90aa3e03ac70725b3cfc671d581 (patch)
tree031784ab3bfc44bff048e3b4d9b9e1e969a22af8 /configure
parent85a056f3824151e4f1838de2ca3aeb7e824c32b8 (diff)
parent26d15ce675447070ed5ba99a3b21253b1a4459f7 (diff)
downloadscummvm-rg350-6370984b2238f90aa3e03ac70725b3cfc671d581.tar.gz
scummvm-rg350-6370984b2238f90aa3e03ac70725b3cfc671d581.tar.bz2
scummvm-rg350-6370984b2238f90aa3e03ac70725b3cfc671d581.zip
Merge pull request #50 from clone2727/bink
Add support for Bink video to SCUMM HE
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure11
1 files changed, 11 insertions, 0 deletions
diff --git a/configure b/configure
index 74541e3d98..9ec277bf60 100755
--- a/configure
+++ b/configure
@@ -153,6 +153,7 @@ _build_scalers=yes
_build_hq_scalers=yes
_enable_prof=no
_global_constructors=no
+_bink=yes
# Default vkeybd/keymapper options
_vkeybd=no
_keymapper=no
@@ -774,6 +775,7 @@ Optional Features:
--enable-text-console use text console instead of graphical console
--enable-verbose-build enable regular echoing of commands during build
process
+ --disable-bink don't build with Bink video support
Optional Libraries:
--with-alsa-prefix=DIR Prefix where alsa is installed (optional)
@@ -876,6 +878,8 @@ for ac_option in $@; do
--disable-libunity) _libunity=no ;;
--enable-opengl) _opengl=yes ;;
--disable-opengl) _opengl=no ;;
+ --enable-bink) _bink=yes ;;
+ --disable-bink) _bink=no ;;
--enable-verbose-build) _verbose_build=yes ;;
--enable-plugins) _dynamic_modules=yes ;;
--default-dynamic) _plugins_default=dynamic ;;
@@ -3266,6 +3270,13 @@ else
fi
#
+# Check whether to build Bink video support
+#
+echo_n "Building Bink video support... "
+define_in_config_if_yes $_bink 'USE_BINK'
+echo "$_bink"
+
+#
# Figure out installation directories
#
test "x$prefix" = xNONE && prefix=/usr/local