diff options
author | Torbjörn Andersson | 2009-03-01 12:19:28 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2009-03-01 12:19:28 +0000 |
commit | 40c4733124a43fb2e921efd07a782ed1688cbc90 (patch) | |
tree | bd3e212731fa9a8f9460dc8dfa0fcddeac4e56d8 | |
parent | b2cffb1364ee0e4065cb14abcf8c98eff7c08fab (diff) | |
download | scummvm-rg350-40c4733124a43fb2e921efd07a782ed1688cbc90.tar.gz scummvm-rg350-40c4733124a43fb2e921efd07a782ed1688cbc90.tar.bz2 scummvm-rg350-40c4733124a43fb2e921efd07a782ed1688cbc90.zip |
By default, do not check for libmpeg2. Currently, there's no engine that needs it
though I guess it's possible that some will in the future.
svn-id: r39035
-rwxr-xr-x | configure | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -62,7 +62,7 @@ _flac=auto _mad=auto _alsa=auto _zlib=auto -_mpeg2=auto +_mpeg2=no _fluidsynth=auto _mt32emu=yes # default option behaviour yes/no @@ -630,7 +630,7 @@ Optional Libraries: --disable-zlib disable zlib (compression) support [autodetect] --with-mpeg2-prefix=DIR Prefix where libmpeg2 is installed (optional) - --disable-mpeg2 disable mpeg2 codec for cutscenes [autodetect] + --enable-mpeg2 enable mpeg2 codec for cutscenes [no] --with-fluidsynth-prefix=DIR Prefix where libfluidsynth is installed (optional) --disable-fluidsynth disable fluidsynth MIDI driver [autodetect] @@ -679,7 +679,7 @@ for ac_option in $@; do --disable-zlib) _zlib=no ;; --enable-nasm) _nasm=yes ;; --disable-nasm) _nasm=no ;; - --disable-mpeg2) _mpeg2=no ;; + --enable-mpeg2) _mpeg2=yes ;; --disable-fluidsynth) _fluidsynth=no ;; --enable-plugins) _dynamic_modules=yes ;; --default-dynamic) _plugins_default=dynamic ;; |