diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-08-22 22:27:01 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-08-22 22:27:01 +0000 |
commit | e241ba148fb725c84cdaef896f960767c5d6dcc4 (patch) | |
tree | 192577df344fdd277d28982842408de3b4efc4b1 /configure | |
parent | ded66cdb67194591d46ce818488c8fb9f73e4140 (diff) | |
download | ffmpeg-e241ba148fb725c84cdaef896f960767c5d6dcc4.tar.gz |
Revert previous unneeded mipsel patch (obsoleted by endianness detection fix).
Originally committed as revision 10189 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 11 |
1 files changed, 3 insertions, 8 deletions
@@ -645,7 +645,6 @@ ARCH_LIST=' ia64 m68k mips - mipsel parisc powerpc s390 @@ -731,7 +730,7 @@ altivec_deps="powerpc" armv5te_deps="armv4l" armv6_deps="armv4l" iwmmxt_deps="armv4l" -mmi_deps_any="mips mipsel" +mmi_deps="mips" mmx_deps="x86" ssse3_deps="x86" @@ -1052,12 +1051,9 @@ case "$arch" in arch="powerpc" enable fast_64bit ;; - mips|IP*) + mips|mipsel|IP*) arch="mips" ;; - mipsel) - arch="mipsel" - ;; sun4u|sparc64) arch="sparc64" enable fast_64bit @@ -1096,7 +1092,6 @@ esac enable $arch enabled_any x86_32 x86_64 && enable x86 enabled sparc64 && enable sparc -enabled mipsel && enable mips # OS specific osextralibs="-lm" @@ -1828,7 +1823,7 @@ if test $arch = "armv4l"; then echo "ARMv6 enabled ${armv6-no}" echo "IWMMXT enabled ${iwmmxt-no}" fi -if test $arch = "mips" -o $arch = "mipsel"; then +if test $arch = "mips"; then echo "MMI enabled ${mmi-no}" fi if test $arch = "powerpc"; then |