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)


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2997 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
gabucino 2001-11-19 10:37:48 +00:00
parent cf36e87277
commit 82c91e7585
1 changed files with 4 additions and 2 deletions

6
configure vendored
View File

@ -1842,7 +1842,8 @@ echores "$_vorbis"
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 @@ echocheck "XAnim DLL"
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