diff options
author | arpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2003-01-28 00:12:23 +0000 |
---|---|---|
committer | arpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2003-01-28 00:12:23 +0000 |
commit | 0cf1424936ea52a9eee0ad97ebb3c63be7cebd6c (patch) | |
tree | 8a077be3ff859119b413608054ef5ba25af28dff /configure | |
parent | 7b603cfb2c98112747d4a217dfba9629664623fa (diff) | |
download | mpv-0cf1424936ea52a9eee0ad97ebb3c63be7cebd6c.tar.bz2 mpv-0cf1424936ea52a9eee0ad97ebb3c63be7cebd6c.tar.xz |
libgif/libungif based demuxer support for libmpdemux.
patch by Joey Parrish <joey@nicewarrior.org>
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9130 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -167,7 +167,7 @@ Optional features: --disable-sortsub Disable subtitles sorting [enabled] Codecs: - --enable-gif enable gif89a output support [autodetect] + --enable-gif enable gif support [autodetect] --enable-png enable png input/output support [autodetect] --enable-jpeg enable jpeg input/output support [autodetect] --enable-liblzo enable external liblzo support [autodetect] @@ -2888,7 +2888,7 @@ else fi -echocheck "GIF89a support" +echocheck "GIF support" if test "$_gif" = auto ; then _gif=no cat > $TMPC << EOF @@ -2915,9 +2915,10 @@ fi if test "$_gif" = yes ; then _def_gif='#define HAVE_GIF 1' _vosrc="$_vosrc vo_gif89a.c" + _codecmodules="gif $_codecmodules" _vomodules="gif89a $_vomodules" _mkf_gif="yes" - _gif="yes (old version, some functions disabled)" + _gif="yes (old version, some encoding functions disabled)" _def_gif_4='#undef HAVE_GIF_4' cat > $TMPC << EOF @@ -2939,6 +2940,7 @@ else _def_gif='#undef HAVE_GIF' _def_gif_4='#undef HAVE_GIF_4' _novomodules="gif89a $_novomodules" + _nocodecmodules="gif $_codecmodules" _mkf_gif="no" fi echores "$_gif" |