Handle linux SMP machines (suggested by Martin Aumueller)

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1315 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
jkeil 2001-07-13 09:20:13 +00:00
parent efd8217aca
commit 8138cfbf18
1 changed files with 7 additions and 7 deletions

14
configure vendored
View File

@ -362,15 +362,15 @@ if [ "$host_arch" = i386 ]; then
_cpuinfo="TOOLS/cpuinfo"
fi
pname=`$_cpuinfo | grep 'model name' | cut -d ':' -f 2`
pparam=`$_cpuinfo | grep 'features' | cut -d ':' -f 2`
pname=`$_cpuinfo | grep 'model name' | cut -d ':' -f 2 | head -1`
pparam=`$_cpuinfo | grep 'features' | cut -d ':' -f 2 | head -1`
if [ -z "$pparam" ]; then
pparam=`$_cpuinfo | grep 'flags' | cut -d ':' -f 2`
pparam=`$_cpuinfo | grep 'flags' | cut -d ':' -f 2 | head -1`
fi
pvendor=`$_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2`
pfamily=`$_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2`
pmodel=`$_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2`
pstepping=`$_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2`
pvendor=`$_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -1`
pfamily=`$_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -1`
pmodel=`$_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -1`
pstepping=`$_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -1`
else
# not an x86 host, cpuinfo stuff is not relevant
pname= pparam= pvendor= pfamily= pmodel= pstepping=