# HG changeset patch # User reimar # Date 1125874950 0 # Node ID 3d7779252f5889f33af6fe8e003b44a73f99fe9c # Parent cdd649f1de0bde9f7172c9e1e89fa5bfaa97ebc4 enable vidix on AMD64, at least for nVidia it seems to work. diff -r cdd649f1de0b -r 3d7779252f58 configure --- a/configure Sun Sep 04 22:42:01 2005 +0000 +++ b/configure Sun Sep 04 23:02:30 2005 +0000 @@ -86,6 +86,13 @@ 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 @@ _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