Mercurial > mplayer.hg
comparison configure @ 21740:6f7d4885744d
cosmetics: Fix indentation after last commit.
author | diego |
---|---|
date | Sun, 24 Dec 2006 00:45:26 +0000 |
parents | e75482a7009a |
children | 86765ad85b1b |
comparison
equal
deleted
inserted
replaced
21739:e75482a7009a | 21740:6f7d4885744d |
---|---|
1126 cpuopt=-mtune | 1126 cpuopt=-mtune |
1127 else | 1127 else |
1128 cpuopt=-mcpu | 1128 cpuopt=-mcpu |
1129 fi | 1129 fi |
1130 if test "$_runtime_cpudetection" = no ; then | 1130 if test "$_runtime_cpudetection" = no ; then |
1131 case "$pvendor" in | 1131 case "$pvendor" in |
1132 AuthenticAMD) | 1132 AuthenticAMD) |
1133 proc=k8;; | 1133 proc=k8;; |
1134 GenuineIntel) | 1134 GenuineIntel) |
1135 case "$pmodel" in | 1135 case "$pmodel" in |
1136 6) proc=core2;; | 1136 6) proc=core2;; |
1137 *) | |
1138 # 64-bit prescotts exist, but as far as GCC is concerned they | |
1139 # have the same capabilities as a nocona. | |
1140 proc=nocona;; | |
1141 esac | |
1142 ;; | |
1137 *) | 1143 *) |
1138 # 64-bit prescotts exist, but as far as GCC is concerned they have the | 1144 proc=error;; |
1139 # same capabilities as a nocona. | |
1140 proc=nocona;; | |
1141 esac | 1145 esac |
1142 ;; | |
1143 *) | |
1144 proc=error;; | |
1145 esac | |
1146 fi # test "$_runtime_cpudetection" = no | 1146 fi # test "$_runtime_cpudetection" = no |
1147 | 1147 |
1148 echocheck "GCC & CPU optimization abilities" | 1148 echocheck "GCC & CPU optimization abilities" |
1149 cat > $TMPC << EOF | 1149 cat > $TMPC << EOF |
1150 int main(void) { return 0; } | 1150 int main(void) { return 0; } |