Mercurial > mplayer.hg
comparison configure @ 9129:6ecc0b5c08cb
libgif/libungif based demuxer support for libmpdemux.
patch by Joey Parrish <joey@nicewarrior.org>
author | arpi |
---|---|
date | Tue, 28 Jan 2003 00:12:23 +0000 |
parents | 971ed787054f |
children | 72d97f7e56ec |
comparison
equal
deleted
inserted
replaced
9128:c947458ad326 | 9129:6ecc0b5c08cb |
---|---|
165 --disable-new-conf Disable new experimental config parser code [enabled] | 165 --disable-new-conf Disable new experimental config parser code [enabled] |
166 --enable-menu Enable osd menu support (needs new config) [disabled] | 166 --enable-menu Enable osd menu support (needs new config) [disabled] |
167 --disable-sortsub Disable subtitles sorting [enabled] | 167 --disable-sortsub Disable subtitles sorting [enabled] |
168 | 168 |
169 Codecs: | 169 Codecs: |
170 --enable-gif enable gif89a output support [autodetect] | 170 --enable-gif enable gif support [autodetect] |
171 --enable-png enable png input/output support [autodetect] | 171 --enable-png enable png input/output support [autodetect] |
172 --enable-jpeg enable jpeg input/output support [autodetect] | 172 --enable-jpeg enable jpeg input/output support [autodetect] |
173 --enable-liblzo enable external liblzo support [autodetect] | 173 --enable-liblzo enable external liblzo support [autodetect] |
174 --disable-win32 disable Win32 DLL support [autodetect] | 174 --disable-win32 disable Win32 DLL support [autodetect] |
175 --disable-dshow disable Win32/DirectShow support [autodetect] | 175 --disable-dshow disable Win32/DirectShow support [autodetect] |
2886 _novomodules="jpeg $_novomodules" | 2886 _novomodules="jpeg $_novomodules" |
2887 _mkf_jpg="no" | 2887 _mkf_jpg="no" |
2888 fi | 2888 fi |
2889 | 2889 |
2890 | 2890 |
2891 echocheck "GIF89a support" | 2891 echocheck "GIF support" |
2892 if test "$_gif" = auto ; then | 2892 if test "$_gif" = auto ; then |
2893 _gif=no | 2893 _gif=no |
2894 cat > $TMPC << EOF | 2894 cat > $TMPC << EOF |
2895 #include <gif_lib.h> | 2895 #include <gif_lib.h> |
2896 int main(void) { | 2896 int main(void) { |
2913 fi | 2913 fi |
2914 | 2914 |
2915 if test "$_gif" = yes ; then | 2915 if test "$_gif" = yes ; then |
2916 _def_gif='#define HAVE_GIF 1' | 2916 _def_gif='#define HAVE_GIF 1' |
2917 _vosrc="$_vosrc vo_gif89a.c" | 2917 _vosrc="$_vosrc vo_gif89a.c" |
2918 _codecmodules="gif $_codecmodules" | |
2918 _vomodules="gif89a $_vomodules" | 2919 _vomodules="gif89a $_vomodules" |
2919 _mkf_gif="yes" | 2920 _mkf_gif="yes" |
2920 _gif="yes (old version, some functions disabled)" | 2921 _gif="yes (old version, some encoding functions disabled)" |
2921 _def_gif_4='#undef HAVE_GIF_4' | 2922 _def_gif_4='#undef HAVE_GIF_4' |
2922 | 2923 |
2923 cat > $TMPC << EOF | 2924 cat > $TMPC << EOF |
2924 #include <signal.h> | 2925 #include <signal.h> |
2925 #include <gif_lib.h> | 2926 #include <gif_lib.h> |
2937 fi | 2938 fi |
2938 else | 2939 else |
2939 _def_gif='#undef HAVE_GIF' | 2940 _def_gif='#undef HAVE_GIF' |
2940 _def_gif_4='#undef HAVE_GIF_4' | 2941 _def_gif_4='#undef HAVE_GIF_4' |
2941 _novomodules="gif89a $_novomodules" | 2942 _novomodules="gif89a $_novomodules" |
2943 _nocodecmodules="gif $_codecmodules" | |
2942 _mkf_gif="no" | 2944 _mkf_gif="no" |
2943 fi | 2945 fi |
2944 echores "$_gif" | 2946 echores "$_gif" |
2945 | 2947 |
2946 | 2948 |