mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Revert previous unneeded mipsel patch (obsoleted by endianness detection fix).
Originally committed as revision 10189 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
ded66cdb67
commit
e241ba148f
11
configure
vendored
11
configure
vendored
@ -645,7 +645,6 @@ ARCH_LIST='
|
|||||||
ia64
|
ia64
|
||||||
m68k
|
m68k
|
||||||
mips
|
mips
|
||||||
mipsel
|
|
||||||
parisc
|
parisc
|
||||||
powerpc
|
powerpc
|
||||||
s390
|
s390
|
||||||
@ -731,7 +730,7 @@ altivec_deps="powerpc"
|
|||||||
armv5te_deps="armv4l"
|
armv5te_deps="armv4l"
|
||||||
armv6_deps="armv4l"
|
armv6_deps="armv4l"
|
||||||
iwmmxt_deps="armv4l"
|
iwmmxt_deps="armv4l"
|
||||||
mmi_deps_any="mips mipsel"
|
mmi_deps="mips"
|
||||||
mmx_deps="x86"
|
mmx_deps="x86"
|
||||||
ssse3_deps="x86"
|
ssse3_deps="x86"
|
||||||
|
|
||||||
@ -1052,12 +1051,9 @@ case "$arch" in
|
|||||||
arch="powerpc"
|
arch="powerpc"
|
||||||
enable fast_64bit
|
enable fast_64bit
|
||||||
;;
|
;;
|
||||||
mips|IP*)
|
mips|mipsel|IP*)
|
||||||
arch="mips"
|
arch="mips"
|
||||||
;;
|
;;
|
||||||
mipsel)
|
|
||||||
arch="mipsel"
|
|
||||||
;;
|
|
||||||
sun4u|sparc64)
|
sun4u|sparc64)
|
||||||
arch="sparc64"
|
arch="sparc64"
|
||||||
enable fast_64bit
|
enable fast_64bit
|
||||||
@ -1096,7 +1092,6 @@ esac
|
|||||||
enable $arch
|
enable $arch
|
||||||
enabled_any x86_32 x86_64 && enable x86
|
enabled_any x86_32 x86_64 && enable x86
|
||||||
enabled sparc64 && enable sparc
|
enabled sparc64 && enable sparc
|
||||||
enabled mipsel && enable mips
|
|
||||||
|
|
||||||
# OS specific
|
# OS specific
|
||||||
osextralibs="-lm"
|
osextralibs="-lm"
|
||||||
@ -1828,7 +1823,7 @@ if test $arch = "armv4l"; then
|
|||||||
echo "ARMv6 enabled ${armv6-no}"
|
echo "ARMv6 enabled ${armv6-no}"
|
||||||
echo "IWMMXT enabled ${iwmmxt-no}"
|
echo "IWMMXT enabled ${iwmmxt-no}"
|
||||||
fi
|
fi
|
||||||
if test $arch = "mips" -o $arch = "mipsel"; then
|
if test $arch = "mips"; then
|
||||||
echo "MMI enabled ${mmi-no}"
|
echo "MMI enabled ${mmi-no}"
|
||||||
fi
|
fi
|
||||||
if test $arch = "powerpc"; then
|
if test $arch = "powerpc"; then
|
||||||
|
Loading…
Reference in New Issue
Block a user