summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authoratmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-04-26 15:35:00 +0000
committeratmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-04-26 15:35:00 +0000
commitd678725306895d17f471f55bc85d43a650c6ccd6 (patch)
treeeb3b9be0b51ea62e989dd57d30b1e9b57a1fe333 /configure
parent1b990d79ecce40772aeffc8240a69b37fb9f52fa (diff)
downloadmpv-d678725306895d17f471f55bc85d43a650c6ccd6.tar.bz2
mpv-d678725306895d17f471f55bc85d43a650c6ccd6.tar.xz
Disable vidix on cygwin for now.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5839 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure5
1 files changed, 3 insertions, 2 deletions
diff --git a/configure b/configure
index f1bffc58b2..1fdcbcebeb 100755
--- a/configure
+++ b/configure
@@ -139,7 +139,7 @@ Optional features:
--disable-libdv disable libdv 0.9.5 support [autodetect]
--disable-streaming disable network streaming support
(support for: http/mms/rtp) [enable]
- --disable-vidix disable VIDIX stuff [enable on x86]
+ --disable-vidix disable VIDIX stuff [enable on x86 *nix]
--disable-new-input disable new input system [enable]
--enable-joystick enable joystick support in new input [disable]
--enable-i18n GNU internationalisation [disable]
@@ -1169,8 +1169,9 @@ fi
if test "$_vidix" = auto ; then
_vidix=no
- # should check for x86 systems supporting vidix (does cygwin or qnx have vidix?)
+ # should check for x86 systems supporting vidix (does qnx have vidix?)
x86 && _vidix=yes
+ cygwin && _vidix=no
fi
# checking for a working awk, I'm using mawk first, because it's fastest - atmos