mirror of
https://github.com/mpv-player/mpv
synced 2025-01-20 21:07:29 +01:00
Support for detection of AMD Phenom.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30363 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
91e4519ed0
commit
3b949d7bdf
8
configure
vendored
8
configure
vendored
@ -1818,7 +1818,7 @@ case "$host_arch" in
|
||||
proc=k8
|
||||
;;
|
||||
|
||||
*) proc=k8 iproc=686 ;;
|
||||
*) proc=amdfam10 iproc=686 ;;
|
||||
esac
|
||||
;;
|
||||
GenuineIntel)
|
||||
@ -2028,7 +2028,11 @@ EOF
|
||||
if test "$_runtime_cpudetection" = no ; then
|
||||
case "$pvendor" in
|
||||
AuthenticAMD)
|
||||
proc=k8;;
|
||||
case "$pfamily" in
|
||||
15) proc=k8;;
|
||||
*) proc=amdfam10;;
|
||||
esac
|
||||
;;
|
||||
GenuineIntel)
|
||||
case "$pfamily" in
|
||||
6) proc=core2;;
|
||||
|
Loading…
Reference in New Issue
Block a user