summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-10-20 22:19:38 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-10-20 22:19:38 +0000
commit5bb44cb440b5c27327f1be7fc0ec3934cdce2cf8 (patch)
treea5813a249dd821666f1751b8653944e648a0ef32 /configure
parent5eb46caadad3ad94a573e83c59eae4f0bdbeb218 (diff)
downloadmpv-5bb44cb440b5c27327f1be7fc0ec3934cdce2cf8.tar.bz2
mpv-5bb44cb440b5c27327f1be7fc0ec3934cdce2cf8.tar.xz
Certain VIDIX drivers only work on x86, disable for other arches.
This patch was coproduced by Reimar, Andrea Menucci and myself. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24822 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index 82d558683c..d9444c27db 100755
--- a/configure
+++ b/configure
@@ -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]'`