changeset 5838:d53251b98ed6

Disable vidix on cygwin for now.
author atmos4
date Fri, 26 Apr 2002 15:35:00 +0000
parents 7e082f42497a
children 80af8b0589e1
files configure
diffstat 1 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/configure	Fri Apr 26 13:07:03 2002 +0000
+++ b/configure	Fri Apr 26 15:35:00 2002 +0000
@@ -139,7 +139,7 @@
   --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 @@
 
 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