Some systems[1] list the 970 as PPC970 on /proc/cpuinfo, so add support

for this.
[1] namely the PPC64 machine over at powerdev.osuosl.org


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19065 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
gpoirier 2006-07-13 13:28:56 +00:00
parent 4f37c50ecd
commit ad0c589f6b
1 changed files with 1 additions and 1 deletions

2
configure vendored
View File

@ -1267,7 +1267,7 @@ EOF
# gcc 3.2 and up supports 970
if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
case "$proc" in
970*) _march='-mcpu=970' _mcpu='-mtune=970'
970*|PPC970*) _march='-mcpu=970' _mcpu='-mtune=970'
_def_dcbzl='#undef NO_DCBZL' ;;
*) ;;
esac