[Mplayer-cvslog] CVS: main configure,1.435,1.436

Arpi of Ize arpi at mplayerhq.hu
Wed Apr 24 04:02:53 CEST 2002


Update of /cvsroot/mplayer/main
In directory mail:/var/tmp.root/cvs-serv11038

Modified Files:
	configure 
Log Message:
disable vidix for non-x86 by default

Index: configure
===================================================================
RCS file: /cvsroot/mplayer/main/configure,v
retrieving revision 1.435
retrieving revision 1.436
diff -u -r1.435 -r1.436
--- configure	24 Apr 2002 01:54:37 -0000	1.435
+++ configure	24 Apr 2002 02:02:50 -0000	1.436
@@ -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]
+  --disable-vidix        disable VIDIX stuff [enable on x86]
   --disable-new-input    disable new input system [enable]
   --enable-joystick      enable joystick support in new input [disable]
   --enable-i18n          GNU internationalisation [disable]
@@ -810,7 +810,7 @@
 _tv_v4l=auto
 _tv_bsdbt848=auto
 _streaming=yes
-_vidix=yes
+_vidix=auto
 _new_input=yes
 _joystick=no
 _xvid=auto
@@ -1167,6 +1167,12 @@
   fi
 fi
 
+if test "$_vidix" = auto ; then
+  _vidix=no
+  # should check for x86 systems supporting vidix (does cygwin or qnx have vidix?)
+  x86 && _vidix=yes
+fi
+
 # checking for a working awk, I'm using mawk first, because it's fastest - atmos
 _awk=
 if test "$_vidix" = yes ; then
@@ -1185,7 +1191,7 @@
 echo "Try the GNU implementation, which can be downloaded from:"
 echo "ftp://ftp.gnu.org/gnu/gawk/"
 echo "If you don't need vidix, you can use configure --disable-vidix instead."
-exit
+die "no awk"
 fi
 fi
 




More information about the MPlayer-cvslog mailing list