summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-09-04 23:02:30 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-09-04 23:02:30 +0000
commit1bf4d61c1e52d4fb05931658b4a1ff57a6bad63d (patch)
tree403c558afcc00338f2b0ce96211a663b29e69efd /configure
parentc23359b19bd91fdca99bfc8b3c526b40ce4dde33 (diff)
downloadmpv-1bf4d61c1e52d4fb05931658b4a1ff57a6bad63d.tar.bz2
mpv-1bf4d61c1e52d4fb05931658b4a1ff57a6bad63d.tar.xz
enable vidix on AMD64, at least for nVidia it seems to work.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16394 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure8
1 files changed, 8 insertions, 0 deletions
diff --git a/configure b/configure
index c012bce6d9..7b7a59e519 100755
--- a/configure
+++ b/configure
@@ -86,6 +86,13 @@ x86() {
esac
}
+x86_64() {
+ case "$host_arch" in
+ x86_64|amd64) return 0 ;;
+ *) return 1 ;;
+ esac
+}
+
ppc() {
case "$host_arch" in
ppc) return 0;;
@@ -2142,6 +2149,7 @@ if test "$_vidix" = auto ; then
_vidix=no
# should check for x86 systems supporting VIDIX (does QNX have VIDIX?)
x86 && _vidix=yes
+ x86_64 && _vidix=yes
ppc && linux && _vidix=yes
alpha && linux && _vidix=yes
qnx && _vidix=no