diff options
author | pl <pl@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-10-23 15:13:51 +0000 |
---|---|---|
committer | pl <pl@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-10-23 15:13:51 +0000 |
commit | ffa3a86b12cfce81c64ca6ff0c6bc7f10f0ecc99 (patch) | |
tree | d09361dc50e1fbea36c16e5b486a409d450f247a /configure | |
parent | 813566e40be20d29e5d71d2bde462c60aa9ba4fc (diff) |
damn logic (fix did not fix completely)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2428 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 15 |
1 files changed, 12 insertions, 3 deletions
@@ -606,12 +606,12 @@ done _win32libdir= if test "$_win32" = yes ; then for I in /usr/local/lib/win32 /usr/lib/win32 ; do - if test -d /usr/lib/win32 ; then + if test -d "$I" ; then _win32libdir="$I" break; fi; done -fi +fi if test -d libavcodec && test -f libavcodec/Makefile ; then @@ -2644,7 +2644,16 @@ directory or download them from: EOF fi else - echo "Ok, found Win32 codecs directory at $_win32libdir." + if test "$_win32libdir" ; then + echo "Ok, found Win32 codecs directory at $_win32libdir." + else + cat <<EOF +Failed to find a WIN32 codecs dir at $_win32libdir! +Create it and copy the DLL files there! (You can get them from your windows +directory or download them from: + ftp://ftp.MPlayerHQ.hu/MPlayer/releases/w32codec.zip +EOF + fi fi else cat <<EOF |