summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-12-02 20:54:51 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-12-02 20:54:51 +0000
commit8413c966a8678a8601dad18c24f223dc5eb5fe14 (patch)
treec88ae006925b20ddc96a58955cbf442a5536c96e /configure
parentaf70335917fb516852a791ad0fa7232aece0a3ba (diff)
downloadmpv-8413c966a8678a8601dad18c24f223dc5eb5fe14.tar.bz2
mpv-8413c966a8678a8601dad18c24f223dc5eb5fe14.tar.xz
Use fallback XAnim and Real codecs directories when autodetection is skipped.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21451 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index ce8b669fb2..0afb96164e 100755
--- a/configure
+++ b/configure
@@ -5966,11 +5966,11 @@ if test "$_xanim" = auto ; then
_xanim=no
_res_comment="dynamic loader support needed"
if test "$_dl" = yes ; then
- test -z "$_xanimcodecsdir" && _xanimcodecsdir=$_codecsdir
_xanim=yes
fi
fi
if test "$_xanim" = yes ; then
+ test -z "$_xanimcodecsdir" && _xanimcodecsdir=$_codecsdir
_def_xanim='#define USE_XANIM 1'
_def_xanim_path="#define XACODEC_PATH \"$_xanimcodecsdir\""
_codecmodules="xanim $_codecmodules"
@@ -5989,11 +5989,11 @@ if test "$_real" = auto ; then
_res_comment="dynamic loader support needed"
if test "$_dl" = yes || test "$_win32" = yes &&
(linux || freebsd || netbsd || win32 || darwin) ; then
- test -z "$_realcodecsdir" && _realcodecsdir="$_codecsdir"
_real=yes
fi
fi
if test "$_real" = yes ; then
+ test -z "$_realcodecsdir" && _realcodecsdir="$_codecsdir"
_def_real='#define USE_REALCODECS 1'
_def_real_path="#define REALCODEC_PATH \"$_realcodecsdir\""
_codecmodules="real $_codecmodules"