[MPlayer-cvslog] r24822 - trunk/configure

diego subversion at mplayerhq.hu
Sun Oct 21 00:19:39 CEST 2007


Author: diego
Date: Sun Oct 21 00:19:38 2007
New Revision: 24822

Log:
Certain VIDIX drivers only work on x86, disable for other arches.
This patch was coproduced by Reimar, Andrea Menucci and myself.


Modified:
   trunk/configure

Modified: trunk/configure
==============================================================================
--- trunk/configure	(original)
+++ trunk/configure	Sun Oct 21 00:19:38 2007
@@ -4236,8 +4236,8 @@ if test "$_vidix" = yes ; then
   test "$_vidix_drivers" || _vidix_drivers="cyberblade ivtv mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 savage sis unichrome"
   test $_ivtv = "yes" || _vidix_drivers=`echo $_vidix_drivers | sed s/ivtv//`
 
-  # some vidix drivers are not meant to work on powerpc, discard them
-  ppc && _vidix_drivers=`echo $_vidix_drivers | sed -e s/cyberblade// -e s/sis// -e s/unichrome//`
+  # some vidix drivers are meant to work on x86 only, discard them elsewhere
+  x86 || _vidix_drivers=`echo $_vidix_drivers | sed -e s/cyberblade// -e s/sis// -e s/unichrome//`
 
   for driver in $_vidix_drivers ; do
     uc_driver=`echo $driver | tr '[a-z]' '[A-Z]'`



More information about the MPlayer-cvslog mailing list