1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-18 12:55:16 +00:00

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
This commit is contained in:
reimar 2005-09-04 23:02:30 +00:00
parent c23359b19b
commit 1bf4d61c1e

8
configure vendored
View File

@ -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