Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2007-08-23 02:16:48 +0400
committerDiego Biurrun <diego@biurrun.de>2007-08-23 02:16:48 +0400
commitded66cdb67194591d46ce818488c8fb9f73e4140 (patch)
tree31eaab338d9f844e9c3600bb1a0d9c571e03bef0 /configure
parent9eebe6873906bad11a352b2e7f2ac3c4805d7a4f (diff)
Add mipsel architecture that differs from mips in endianness.
based on patch by Johansson Erik-EJO017, erik.johansson motorola com Originally committed as revision 10188 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure11
1 files changed, 8 insertions, 3 deletions
diff --git a/configure b/configure
index a9a4fd74ee..e0196f5202 100755
--- a/configure
+++ b/configure
@@ -645,6 +645,7 @@ ARCH_LIST='
ia64
m68k
mips
+ mipsel
parisc
powerpc
s390
@@ -730,7 +731,7 @@ altivec_deps="powerpc"
armv5te_deps="armv4l"
armv6_deps="armv4l"
iwmmxt_deps="armv4l"
-mmi_deps="mips"
+mmi_deps_any="mips mipsel"
mmx_deps="x86"
ssse3_deps="x86"
@@ -1051,9 +1052,12 @@ case "$arch" in
arch="powerpc"
enable fast_64bit
;;
- mips|mipsel|IP*)
+ mips|IP*)
arch="mips"
;;
+ mipsel)
+ arch="mipsel"
+ ;;
sun4u|sparc64)
arch="sparc64"
enable fast_64bit
@@ -1092,6 +1096,7 @@ esac
enable $arch
enabled_any x86_32 x86_64 && enable x86
enabled sparc64 && enable sparc
+enabled mipsel && enable mips
# OS specific
osextralibs="-lm"
@@ -1823,7 +1828,7 @@ if test $arch = "armv4l"; then
echo "ARMv6 enabled ${armv6-no}"
echo "IWMMXT enabled ${iwmmxt-no}"
fi
-if test $arch = "mips"; then
+if test $arch = "mips" -o $arch = "mipsel"; then
echo "MMI enabled ${mmi-no}"
fi
if test $arch = "powerpc"; then