configure: allow mips64el and powerpc64 as values for --arch
authorMåns Rullgård <mans@mansr.com>
Wed, 10 Mar 2010 22:24:39 +0000 (22:24 +0000)
committerMåns Rullgård <mans@mansr.com>
Wed, 10 Mar 2010 22:24:39 +0000 (22:24 +0000)
Originally committed as revision 22439 to svn://svn.ffmpeg.org/ffmpeg/trunk

configure

index 7806a21..94cf368 100755 (executable)
--- a/configure
+++ b/configure
@@ -1897,7 +1897,7 @@ case "$arch" in
     mips|mipsel|IP*)
         arch="mips"
     ;;
-    mips64)
+    mips64*)
         arch="mips"
         subarch="mips64"
     ;;
@@ -1911,7 +1911,7 @@ case "$arch" in
     "Power Macintosh"|ppc|powerpc)
         arch="ppc"
     ;;
-    ppc64)
+    ppc64|powerpc64)
         arch="ppc"
         subarch="ppc64"
     ;;