diff options
author | zuxy <zuxy@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2010-01-18 03:06:43 +0000 |
---|---|---|
committer | zuxy <zuxy@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2010-01-18 03:06:43 +0000 |
commit | 3b949d7bdf5dd8806883be37345ead55fff1a030 (patch) | |
tree | 102ef5630eabd4fe4b8f57e33f7eaf2d6aafa608 /configure | |
parent | 91e4519ed0058209c9bf9b0d0e28cf08e8bdf628 (diff) |
Support for detection of AMD Phenom.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30363 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -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;; |