summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-12-30 13:19:53 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-12-30 13:19:53 +0000
commitf3a18141923fc1fdd70f3cd11dc3dd83296fd39f (patch)
tree44e4684507548d180c6cdc6bc1329afcd55b28f4 /configure
parentd6503d8d76fb75986c8da192f337880d309e062c (diff)
downloadmpv-f3a18141923fc1fdd70f3cd11dc3dd83296fd39f.tar.bz2
mpv-f3a18141923fc1fdd70f3cd11dc3dd83296fd39f.tar.xz
divx4encore detection fixed (D Richard Felker III) + ffmpeg.so detection disabled if static=yes
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3894 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure17
1 files changed, 9 insertions, 8 deletions
diff --git a/configure b/configure
index 26ea660a62..6beb6310ab 100755
--- a/configure
+++ b/configure
@@ -2345,9 +2345,11 @@ else
echores "$_libavcodec"
fi
+if test "$_libavcodec" != yes ; then
echocheck "FFmpeg libavcodec (dynamic)"
-if test "$_libavcodec" != yes && test "$_libavcodecso" = auto ; then
+if test "$_libavcodecso" = auto ; then
_libavcodecso=no
+# FIXME : check for avcodec_find_encoder_by_name() for mencoder
cat > $TMPC << EOF
#define FF_POSTPROCESS 1
#include <libffmpeg/avcodec.h>
@@ -2361,8 +2363,10 @@ EOF
echores "no: libffmpeg.so is broken/obsolete"
fi
else
- echores "no"
+ echores "$_libavcodecso"
+fi
fi
+
_def_libavcodec='#undef USE_LIBAVCODEC'
_def_libavcodecso='#undef USE_LIBAVCODEC_SO'
_def_ffpostprocess='#undef FF_POSTPROCESS'
@@ -2378,7 +2382,6 @@ elif test "$_libavcodecso" = yes ; then
_def_ffpostprocess='#define FF_POSTPROCESS 1'
_codecmodules="libavcodec.so $_codecmodules"
fi
-# FIXME : check for avcodec_find_encoder_by_name() for mencoder
# FIXME : variables don't have a "standard" name so check this one day
@@ -2408,9 +2411,8 @@ else
_codecmodules="opendivx $_codecmodules"
fi
-# mencoder requires those libs: libmp3lame and divx4linux encore
+# mencoder requires (optional) those libs: libmp3lame and divx4linux encore
if test "$_mencoder" != no ; then
- _mencoder=no
echocheck "libmp3lame (required for mencoder)"
_mp3lame=no
@@ -2436,14 +2438,13 @@ int main(void) { (void) encore(0, 0, 0, 0); return 0; }
EOF
if cc_check -ldivxencore -lm ; then
_divx4linux_encore=yes
- _def_encore='#define NEW_ENCORE 1'
+ _def_encore='#define HAVE_DIVX4ENCORE 1'
_ld_encore='-ldivxencore'
else
- _def_encore='#undef NEW_ENCORE'
+ _def_encore='#undef HAVE_DIVX4ENCORE'
fi
echores "$_divx4linux_encore"
- test "$_mp3lame" = yes && test "$_divx4linux_encore" = yes && _mencoder=yes
fi