1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-15 19:35:49 +00:00

Detect ppc64 and powerpc64 architectures as PowerPC variants.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27416 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
ben 2008-08-04 22:38:57 +00:00
parent 5c1de42c0c
commit 6f37cd89a4

4
configure vendored
View File

@ -140,7 +140,7 @@ x86() {
ppc() {
case "$host_arch" in
ppc|powerpc) return 0;;
ppc|ppc64|powerpc|powerpc64) return 0;;
*) return 1;;
esac
}
@ -2022,7 +2022,7 @@ EOF
_optimizing=''
;;
ppc|powerpc)
ppc|ppc64|powerpc|powerpc64)
_arch='POWERPC PPC'
_def_dcbzl='#undef HAVE_DCBZL'
_target_arch='ARCH_POWERPC = yes'