Mercurial > mplayer.hg
diff configure @ 5840:4e3cf9473628
Allow disabling of libfame and allow to enforce (not) building libavcodec.
author | atmos4 |
---|---|
date | Fri, 26 Apr 2002 17:18:02 +0000 |
parents | d53251b98ed6 |
children | 9cc33be028bb |
line wrap: on
line diff
--- a/configure Fri Apr 26 15:48:18 2002 +0000 +++ b/configure Fri Apr 26 17:18:02 2002 +0000 @@ -130,6 +130,8 @@ --disable-xvid disable XviD codec [autodetect] --disable-divx4linux disable DivX4linux codec [autodetect] --enable-opendivx enable _old_ OpenDivx codec [disable] + --disable-libavcodec disable libavcodec [autodetect] + --disable-libfame disable libfame realtime-encoder [autodetect] --enable-vorbis build with OggVorbis support [autodetect] --enable-faad build with FAAD (AAC) support [autodetect] --disable-iconv do not use iconv(3) function [autodetect] @@ -765,6 +767,7 @@ # If autodetection is available then the third state is: auto _libavcodec=auto _libavcodecso=no # changed default to no as it causes problems - atmos +_fame=auto _mp1e=no _mencoder=yes _x11=auto @@ -946,6 +949,10 @@ --disable-divx4linux) _divx4linux=no ;; --enable-opendivx) _opendivx=yes ;; --disable-opendivx) _opendivx=no ;; + --enable-libavcodec) _libavcodec=yes ;; + --disable-libavcodec) _libavcodec=no ;; + --enable-libfame) _fame=yes ;; + --disable-libfame) _fame=no ;; --enable-lirc) _lirc=yes ;; --disable-lirc) _lirc=no ;; --enable-gui) _gui=yes ;; @@ -3021,6 +3028,27 @@ _nocodecmodules="libavcodec $_nocodecmodules" fi +echocheck "libfame" +if test "$_fame" = auto ; then + _fame=no + if test -d libfame && test -f libfame/fame.h ; then + # disable fame on cygwin as no sense to port - atmos + cygwin || _fame=yes + echores $_fame + else + echores "no (no fame dir)" + fi +else + echores "$_fame" +fi + +_def_fame='#undef USE_LIBFAME' +if test "$_fame" = yes ; then + _def_fame='#define USE_LIBFAME 1' + _ld_fame='-Llibfame -lfame' + _dep_fame='libfame/libfame.a' +fi + echocheck "libdv-0.9.5 (for mencoder)" if test "$_libdv" = auto ; then _libdv=no @@ -3581,6 +3609,9 @@ DS_LIB = $_ld_dshow AV_DEP = $_dep_libavcodec AV_LIB = $_ld_libavcodec +FAME = $_fame +FAME_LIB = $_ld_fame +FAME_DEB = $_dep_fame MP1E_DEP = $_dep_mp1e MP1E_LIB = $_ld_mp1e ARCH_LIB = $_ld_arch $_ld_iconv @@ -3795,6 +3826,9 @@ /* Use libavcodec's encoders */ #define CONFIG_ENCODERS 1 +/* Use libfame encoder filter */ +$_def_fame + /* XAnim DLL support */ $_def_xanim /* Default search path */