summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorgabucino <gabucino@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-11-19 10:37:48 +0000
committergabucino <gabucino@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-11-19 10:37:48 +0000
commit82c91e7585cadee07fc59e4d33f47334228ae463 (patch)
treef72532bda810b4286e0cbcdd41bef1bf2b3e813b /configure
parentcf36e872773ac822c57aac5a63a1ca1c1f82119d (diff)
downloadmpv-82c91e7585cadee07fc59e4d33f47334228ae463.tar.bz2
mpv-82c91e7585cadee07fc59e4d33f47334228ae463.tar.xz
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
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 4 insertions, 2 deletions
diff --git a/configure b/configure
index 4f256de913..944e50b502 100755
--- a/configure
+++ b/configure
@@ -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