It makes sense to me to try and use any locally installed win32 DLLs

found under $prefix before trying the system-wide ones.
patch by Jim Radford <radford@robotics.caltech.edu>


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6853 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
arpi 2002-07-30 19:06:51 +00:00
parent ed7f81ec5e
commit 98861b8f69
1 changed files with 1 additions and 1 deletions

2
configure vendored
View File

@ -3239,7 +3239,7 @@ if test "$_win32" = auto ; then
_win32=no
if x86 ; then
if test -z "$_win32libdir" ; then
for I in /usr/local/lib/win32 /usr/lib/win32 ; do
for I in "$_libdir/win32" /usr/local/lib/win32 /usr/lib/win32 ; do
if test -d "$I" ; then
_win32libdir="$I"
break;