Mercurial > mplayer.hg
changeset 8777:bd9daec7b087
fixed dll path with --enable-win32
bugrep by Maximo Ramos <maximo@violadores.org>
author | arpi |
---|---|
date | Sat, 04 Jan 2003 19:07:46 +0000 |
parents | 298208d7a703 |
children | ff92d9b5ade5 |
files | configure |
diffstat | 1 files changed, 19 insertions(+), 11 deletions(-) [+] |
line wrap: on
line diff
--- a/configure Sat Jan 04 19:01:36 2003 +0000 +++ b/configure Sat Jan 04 19:07:46 2003 +0000 @@ -3733,13 +3733,17 @@ fi echores "$_faad" - -echocheck "Win32 DLL support" -qnx && _win32=no -cygwin && _win32="Win32 DLLs not supported under Cygwin" if test "$_win32" = auto ; then - _win32=no if x86 ; then + cygwin && _win32=no # Win32 DLLs not supported under Cygwin + qnx && _win32=no + else + _win32=no # x86 arch only + fi +fi + +if test "$_win32" != no ; then + echocheck "Win32 codec DLL files path" if test -z "$_win32libdir" ; then for I in "$_libdir/win32" /usr/local/lib/win32 /usr/lib/win32 ; do if test -d "$I" ; then @@ -3748,15 +3752,20 @@ fi; done fi - test "$_win32libdir" && _win32=yes - fi + echores "$_win32libdir" +fi + +echocheck "Win32 codec DLL support" +if test "$_win32" = auto ; then + _win32=no + test -n "$_win32libdir" && _win32=yes fi if test "$_win32" = yes ; then _def_win32='#define USE_WIN32DLL 1' _ld_win32='loader/libloader.a' _dep_win32='loader/libloader.a' _codecmodules="win32 $_codecmodules" - echores "yes (using $_win32libdir)" + echores "yes" if openbsd ; then x86 && _ld_win32="$_ld_win32 -li386" fi @@ -3764,9 +3773,8 @@ _def_win32='#undef USE_WIN32DLL' _nocodecmodules="win32 $_nocodecmodules" _dshow=no - echores "$_win32" -fi - + echores "no" +fi echocheck "DirectShow" if false ; then