Mercurial > mplayer.hg
changeset 2996:b27e7c3158ab
fixed win32/xanim support on --target=i{4-6}86
pl : - are you sure the other "i386"-only checks are ok?
- X libraries get included (-lX11 etc) when I say --disable-x11, pls check
Besides that, now it compiles static binary (with all my --disable-blah
switches)
author | gabucino |
---|---|
date | Mon, 19 Nov 2001 10:37:48 +0000 |
parents | f294650ae03b |
children | 49b34fdc48bb |
files | configure |
diffstat | 1 files changed, 4 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/configure Mon Nov 19 09:56:22 2001 +0000 +++ b/configure Mon Nov 19 10:37:48 2001 +0000 @@ -1842,7 +1842,8 @@ echocheck "Win32 DLL support" if test "$_win32" = auto ; then _win32=no - if test "$host_arch" = i386 ; then + if test "$host_arch" = i386 || test "$host_arch" = i486 || + test "$host_arch" = i586 || test "$host_arch" = i686; then if test -z "$_win32libdir" ; then for I in /usr/local/lib/win32 /usr/lib/win32 ; do if test -d "$I" ; then @@ -1916,7 +1917,8 @@ if test "$_xanim" = auto ; then _xanim=no if test "$_dl" = yes ; then - if test "$host_arch" = i386 ; then + if test "$host_arch" = i386 || test "$host_arch" = i486 || + test "$host_arch" = i586 || test "$host_arch" = i686; then if test -z "$_xanimlibdir" ; then for I in /usr/local/lib/xanim/mods /usr/lib/xanim/mods ; do if test -d "$I" ; then