diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2003-08-05 23:53:06 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2003-08-05 23:53:06 +0000 |
commit | b70ce4ba45c719d873432342ab4e4480200d60f8 (patch) | |
tree | e8fd69f303e6825600623d4fe6a60c4a0a05c524 | |
parent | 970dd1a66ca09227225e3fd48551589ce9fbb4a2 (diff) |
_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
-rwxr-xr-x | configure | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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 |