summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgpoirier <gpoirier@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-07-13 13:28:56 +0000
committergpoirier <gpoirier@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-07-13 13:28:56 +0000
commitad0c589f6bfcaed2ecd0caf06c6dc473d040142c (patch)
tree1bd2537b4c1e3d62b62e149d03f480f32fb10ec4
parent4f37c50ecda4a6885802fc9fed5e57b9bdd10c06 (diff)
downloadmpv-ad0c589f6bfcaed2ecd0caf06c6dc473d040142c.tar.bz2
mpv-ad0c589f6bfcaed2ecd0caf06c6dc473d040142c.tar.xz
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
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index e25488607b..cfe27db57c 100755
--- a/configure
+++ b/configure
@@ -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