1
mirror of https://github.com/mpv-player/mpv synced 2024-08-04 14:59:58 +02:00

Setup better cflags for PPC G3 patch by Colin Leroy <colin@colino.net>. IMHO needs improvements for other ppc cpus, too.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6314 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
atmos4 2002-06-06 16:46:05 +00:00
parent ead24872f1
commit 82c2987659

14
configure vendored
View File

@ -76,6 +76,13 @@ x86() {
esac
}
ppc() {
case "$host_arch" in
ppc) return 0;;
*) return 1;;
esac
}
# Use this before starting a check
echocheck() {
echo "============ Checking for $@ ============" >> "$TMPLOG"
@ -455,7 +462,7 @@ if test "$_as" = auto ; then
fi
# Try to find the available options for the current CPU
if x86 ; then
if x86 || ppc; then
if test -r /proc/cpuinfo ; then
# linux with /proc mounted, extract cpu information from it
_cpuinfo="cat /proc/cpuinfo"
@ -707,6 +714,11 @@ EOF
proc=''
_march=''
_mcpu=''
cpu750=`$_cpuinfo | grep "cpu.*750"`
if test -n "$cpu750"; then
_march=''
_mcpu='-mcpu=750'
fi
;;
alpha)