From 1bf4d61c1e52d4fb05931658b4a1ff57a6bad63d Mon Sep 17 00:00:00 2001 From: reimar Date: Sun, 4 Sep 2005 23:02:30 +0000 Subject: [PATCH] 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 --- configure | 8 ++++++++ 1 file changed, 8 insertions(+) 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