diff options
author | Max Horn | 2011-05-05 16:34:17 +0200 |
---|---|---|
committer | Max Horn | 2011-05-25 13:24:37 +0200 |
commit | 717a7accf5f4c58e4b4b9187ee349841163c3896 (patch) | |
tree | cf5ec995230d2b835c61d40a156fd296236db5f9 /configure | |
parent | 8387b68c5758819789a0f555abadb089a7c500b1 (diff) | |
download | scummvm-rg350-717a7accf5f4c58e4b4b9187ee349841163c3896.tar.gz scummvm-rg350-717a7accf5f4c58e4b4b9187ee349841163c3896.tar.bz2 scummvm-rg350-717a7accf5f4c58e4b4b9187ee349841163c3896.zip |
BUILD: Always enable indeo3 codec
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 23 |
1 files changed, 0 insertions, 23 deletions
@@ -145,7 +145,6 @@ _text_console=no _mt32emu=yes _build_scalers=yes _build_hq_scalers=yes -_indeo3=auto _enable_prof=no _posix=no _global_constructors=no @@ -746,8 +745,6 @@ Optional Libraries: --with-opengl-prefix=DIR Prefix where OpenGL (ES) is installed (optional) --disable-opengl disable OpenGL (ES) support [autodetect] - --disable-indeo3 disable Indeo3 decoder [autodetect] - --with-png-prefix=DIR Prefix where libpng is installed (optional) --disable-png disable PNG decoder [autodetect] @@ -806,8 +803,6 @@ for ac_option in $@; do --enable-nasm) _nasm=yes ;; --disable-nasm) _nasm=no ;; --enable-mpeg2) _mpeg2=yes ;; - --disable-indeo3) _indeo3=no ;; - --enable-indeo3) _indeo3=yes ;; --disable-png) _png=no ;; --enable-png) _png=yes ;; --disable-theoradec) _theoradec=no ;; @@ -1935,7 +1930,6 @@ if test -n "$_host"; then _backend="n64" _mt32emu=no _build_scalers=no - _indeo3=no _translation=no _keymapper=no _text_console=no @@ -2538,19 +2532,6 @@ define_in_config_if_yes "$_build_scalers" 'USE_SCALERS' define_in_config_if_yes "$_build_hq_scalers" 'USE_HQ_SCALERS' # -# 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 - _indeo3=yes - else - _indeo3=no - fi -fi -define_in_config_if_yes "$_indeo3" 'USE_INDEO3' - -# # Check for math lib # cat > $TMPC << EOF @@ -3157,10 +3138,6 @@ if test "$_mt32emu" = yes ; then echo_n ", MT-32 emu" fi -if test "$_indeo3" = yes ; then - echo_n ", Indeo3 decoder" -fi - if test "$_text_console" = yes ; then echo_n ", text console" fi |