Mercurial > mplayer.hg
changeset 24794:300dd571ba64
Certain VIDIX drivers only work on x86, disable for other arches.
This patch was coproduced by Reimar, Andrea Menucci and myself.
author | diego |
---|---|
date | Sat, 20 Oct 2007 22:19:38 +0000 |
parents | a77d2ba096f0 |
children | deb3d1cc2852 |
files | configure |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/configure Sat Oct 20 16:03:12 2007 +0000 +++ b/configure Sat Oct 20 22:19:38 2007 +0000 @@ -4236,8 +4236,8 @@ 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]'`