summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authoratmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-05-12 14:39:40 +0000
committeratmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-05-12 14:39:40 +0000
commit6932244e6ce71ec8548a36d86d0e2e60e7ef7cf1 (patch)
treef5e7b315d3e47a7dc2b203ab236b69a525027916 /configure
parent65bce6d1caa866c40e6034a0d660f8293667117f (diff)
downloadmpv-6932244e6ce71ec8548a36d86d0e2e60e7ef7cf1.tar.bz2
mpv-6932244e6ce71ec8548a36d86d0e2e60e7ef7cf1.tar.xz
change logic for detecting real codecs dir (loop in to prefer RealPlayer 9 codecs
over RealPlayer 8 codecs) and add another codecs location as used by RealPlayer9 on gentoo. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10101 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure5
1 files changed, 3 insertions, 2 deletions
diff --git a/configure b/configure
index 853922813c..2dbc915a34 100755
--- a/configure
+++ b/configure
@@ -4301,10 +4301,11 @@ if test "$_real" = auto ; then
if test -z "$_reallibdir" ; then
for I in "$_libdir/codecs" "$_libdir/real" /usr/lib/real \
/usr/lib/RealPlayer*/Codecs /usr/local/RealPlayer*/Codecs \
- /usr/local/lib/RealPlayer*/Codecs /opt/RealPlayer*/Codecs; do
+ /usr/local/lib/RealPlayer*/Codecs /opt/RealPlayer*/Codecs \
+ /opt/RealPlayer*/Real/Codecs; do
if test -d "$I" ; then
_reallibdir="$I"
- break;
+ #break; 8 comes before 9 so loop on ::atmos
fi;
done
fi