_win32libdir (not _libdir/win32) should be searched after other locations.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10532 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2003-08-05 23:53:06 +00:00
parent 970dd1a66c
commit b70ce4ba45
1 changed files with 3 additions and 2 deletions

5
configure vendored
View File

@ -4428,9 +4428,10 @@ if test "$_real" = auto ; then
fi
if test "$_real" = yes ; then
if test -z "$_reallibdir" ; then
for I in "$_libdir/codecs" "$_libdir/real" "$_libdir/win32" /usr/lib/real \
for I in "$_libdir/codecs" "$_libdir/real" /usr/lib/real \
/usr/lib/RealPlayer{9,8,}/Codecs /usr/local/RealPlayer{9,8,}/Codecs \
/usr/local/lib/RealPlayer{9,8,}/Codecs /opt/RealPlayer{9,8,}/{Real/,}Codecs ; do
/usr/local/lib/RealPlayer{9,8,}/Codecs /opt/RealPlayer{9,8,}/{Real/,}Codecs \
"$_win32libdir"; do
if test -d "$I" ; then
_reallibdir="$I"
break