Mercurial > mplayer.hg
changeset 16393:3d7779252f58
enable vidix on AMD64, at least for nVidia it seems to work.
author | reimar |
---|---|
date | Sun, 04 Sep 2005 23:02:30 +0000 |
parents | cdd649f1de0b |
children | 21c16d991b81 |
files | configure |
diffstat | 1 files changed, 8 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- 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