Mercurial > mplayer.hg
diff configure @ 10100:00c091706a73
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.
author | atmos4 |
---|---|
date | Mon, 12 May 2003 14:39:40 +0000 |
parents | f327d76a7b6f |
children | 7b338ec311e2 |
line wrap: on
line diff
--- a/configure Sun May 11 19:33:46 2003 +0000 +++ b/configure Mon May 12 14:39:40 2003 +0000 @@ -4301,10 +4301,11 @@ 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