diff options
author | arpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-07-31 22:20:43 +0000 |
---|---|---|
committer | arpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-07-31 22:20:43 +0000 |
commit | 5f8d90d83b69b6945f49cea655c374f430eb6179 (patch) | |
tree | 1adc77428fcc31733f08d55615f72ad34731ce13 /configure | |
parent | 4c80fd1d85a3805cb40902aa9c7990a0809edd32 (diff) |
divx4linux autodetection
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1428 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 30 |
1 files changed, 22 insertions, 8 deletions
@@ -755,15 +755,18 @@ else fi fi fi - + +_divx4linux=no +$_cc $_extraincdir $_extralibdir $TMPC -o $TMPO -ldivxdecore > /dev/null 2>&1 && _divx4linux=yes + _termcap=no -$_cc $TMPC -o $TMPO -ltermcap > /dev/null 2>&1 && _termcap=yes +$_cc $_extraincdir $_extralibdir $TMPC -o $TMPO -ltermcap > /dev/null 2>&1 && _termcap=yes _png=no -$_cc $_extraincdir $_extralibdir $TMPC -o $TMPO -lpng -lz -lm > /dev/null 2>&1 && _png=yes +$_cc $_extraincdir $_extralibdir $_extraincdir $_extralibdir $TMPC -o $TMPO -lpng -lz -lm > /dev/null 2>&1 && _png=yes _ggi=no -$_cc $TMPC -o $TMPO -lggi > /dev/null 2>&1 && _ggi=yes +$_cc $_extraincdir $_extralibdir $TMPC -o $TMPO -lggi > /dev/null 2>&1 && _ggi=yes _kstat=no $_cc $TMPC -o $TMPO -lkstat >/dev/null 2>&1 && _kstat=yes _archlibs="-lkstat $_archlibs" @@ -1360,6 +1363,7 @@ echo "Checking for DeCSS support ... $_css" echo "Checking for PNG support ... $_png" echo "Checking for DirectShow ... $_dshow" echo "Checking for libavcodec ... $_libavcodec" +echo "Checking for divx4linux ... $_divx4linux" echo "Checking for fastmemcpy ... $_fastmemcpy" echo "Extra libs : $_extralibdir" echo "Extra headers : $_extraincdir" @@ -1745,6 +1749,16 @@ else _gui='#undef HAVE_GUI' fi +if [ $_divx4linux = yes ]; then + _divx4def='#define NEW_DECORE' + _decorelibs='-ldivxdecore opendivx/postprocess.o' +else + _divx4def='#undef NEW_DECORE' + _decorelibs='-Lopendivx -ldecore' +# _postproc='#undef MPEG12_POSTPROC' +fi + + _postproc='#define MPEG12_POSTPROC' echo echo "Creating $MCONF" @@ -1778,8 +1792,8 @@ ALSA_LIB = $_alsalib ESD_LIB = $_esdlib ARCH_LIBS = $_archlibs STREAM_SRCS = $_streamingsrcs -DECORE_LIBS = -Lopendivx -ldecore -# DECORE_LIBS=-L/usr/local/lib -ldivxdecore +DECORE_LIBS = $_decorelibs +DIVX4LINUX=$_divx4linux # --- Some stuff for autoconfigure ---- $_target_arch @@ -1805,7 +1819,7 @@ cat > $CCONF << EOF /* Define for using new DivX4Linux library, instead of open-source OpenDivX */ /* You have to change DECORE_LIBS in config.mak too! */ -#undef NEW_DECORE +$_divx4def /* Define this to enable avg. byte/sec-based AVI sync method by default: (use -bps or -nobps commandline option for run-time method selection) */ @@ -1872,7 +1886,7 @@ $_lircdefs $_css /* Define this to enable MPEG 1/2 image postprocessing (requires FAST cpu!) */ -#define MPEG12_POSTPROC +$_postproc /* DirectShow support */ $_dshow |