mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-03-23 04:24:35 +02:00
Tell configure about hppa, s390, mipsel, m68k and ia64 architectures.
patch by Sam Hocevar < sam -- at -- zoy -- dot -- org > Originally committed as revision 4614 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
29799f8b75
commit
67860b268e
26
configure
vendored
26
configure
vendored
@ -146,7 +146,7 @@ case "$cpu" in
|
|||||||
"Power Macintosh"|ppc)
|
"Power Macintosh"|ppc)
|
||||||
cpu="powerpc"
|
cpu="powerpc"
|
||||||
;;
|
;;
|
||||||
mips)
|
mips|mipsel)
|
||||||
cpu="mips"
|
cpu="mips"
|
||||||
;;
|
;;
|
||||||
sun4u|sparc64)
|
sun4u|sparc64)
|
||||||
@ -158,6 +158,18 @@ case "$cpu" in
|
|||||||
sh4)
|
sh4)
|
||||||
cpu="sh4"
|
cpu="sh4"
|
||||||
;;
|
;;
|
||||||
|
parisc|parisc64)
|
||||||
|
cpu="parisc"
|
||||||
|
;;
|
||||||
|
s390|s390x)
|
||||||
|
cpu="s390"
|
||||||
|
;;
|
||||||
|
m68k)
|
||||||
|
cpu="m68k"
|
||||||
|
;;
|
||||||
|
ia64)
|
||||||
|
cpu="ia64"
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
cpu="unknown"
|
cpu="unknown"
|
||||||
;;
|
;;
|
||||||
@ -1320,6 +1332,18 @@ elif test "$cpu" = "mips" ; then
|
|||||||
elif test "$cpu" = "sh4" ; then
|
elif test "$cpu" = "sh4" ; then
|
||||||
echo "TARGET_ARCH_SH4=yes" >> config.mak
|
echo "TARGET_ARCH_SH4=yes" >> config.mak
|
||||||
echo "#define ARCH_SH4 1" >> $TMPH
|
echo "#define ARCH_SH4 1" >> $TMPH
|
||||||
|
elif test "$cpu" = "parisc" ; then
|
||||||
|
echo "TARGET_ARCH_PARISC=yes" >> config.mak
|
||||||
|
echo "#define ARCH_PARISC 1" >> $TMPH
|
||||||
|
elif test "$cpu" = "s390" ; then
|
||||||
|
echo "TARGET_ARCH_S390=yes" >> config.mak
|
||||||
|
echo "#define ARCH_S390 1" >> $TMPH
|
||||||
|
elif test "$cpu" = "m68k" ; then
|
||||||
|
echo "TARGET_ARCH_M68K=yes" >> config.mak
|
||||||
|
echo "#define ARCH_M68K 1" >> $TMPH
|
||||||
|
elif test "$cpu" = "ia64" ; then
|
||||||
|
echo "TARGET_ARCH_IA64=yes" >> config.mak
|
||||||
|
echo "#define ARCH_IA64 1" >> $TMPH
|
||||||
fi
|
fi
|
||||||
echo "#define TUNECPU $TUNECPU" >> $TMPH
|
echo "#define TUNECPU $TUNECPU" >> $TMPH
|
||||||
if test "$bigendian" = "yes" ; then
|
if test "$bigendian" = "yes" ; then
|
||||||
|
Loading…
x
Reference in New Issue
Block a user