summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-05-11 22:34:38 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-05-11 22:34:38 +0000
commitd9f6a7774d8b7877216c6013dd0054701677386a (patch)
tree5222a8775e687ce338985bb79034e64e4768cd54 /configure
parent20e2dba9eb2a5465a0b66eda377ca9cb7a218679 (diff)
downloadmpv-d9f6a7774d8b7877216c6013dd0054701677386a.tar.bz2
mpv-d9f6a7774d8b7877216c6013dd0054701677386a.tar.xz
Fall back on the codecs subdirectory of the current directory for Real
and Win32 DLLs on Windows. based on a patch by Zuxy Meng zuxy**.**meng**@**gmail**.**com git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18450 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 4 insertions, 0 deletions
diff --git a/configure b/configure
index 9d64b1ca00..208783a3a1 100755
--- a/configure
+++ b/configure
@@ -5834,6 +5834,8 @@ if test "$_win32" != no ; then
break;
fi;
done
+ # Fall back on a subfolder of the current dir on Windows
+ mingw32 && _win32libdir="codecs"
fi
fi
@@ -5971,6 +5973,8 @@ if test "$_real" = auto ; then
_reallibdir="$I"
break
fi
+ # Fall back on a subfolder of the current dir on Windows
+ mingw32 && _reallibdir="codecs"
done
fi
test "$_reallibdir" && _real=yes