diff options
author | salo <salo@pkgsrc.org> | 2003-06-03 10:17:48 +0000 |
---|---|---|
committer | salo <salo@pkgsrc.org> | 2003-06-03 10:17:48 +0000 |
commit | 6b285a97dbe334f03a4967f3d83d0bc13cbc0606 (patch) | |
tree | 83f75cde621b3bfd944302e4ab27e404529a3f85 /devel/cpuflags/files | |
parent | d3b33181eeaa4070c51c0547390d73428672451e (diff) | |
download | pkgsrc-6b285a97dbe334f03a4967f3d83d0bc13cbc0606.tar.gz |
Version 0.43:
- match more Athlons
XXX: This really should be more fine-grained.
- whitespace
Diffstat (limited to 'devel/cpuflags/files')
-rwxr-xr-x | devel/cpuflags/files/cpuflags.NetBSD | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/devel/cpuflags/files/cpuflags.NetBSD b/devel/cpuflags/files/cpuflags.NetBSD index ff14801426d..78f353efc34 100755 --- a/devel/cpuflags/files/cpuflags.NetBSD +++ b/devel/cpuflags/files/cpuflags.NetBSD @@ -1,5 +1,5 @@ #!/bin/sh -# $NetBSD: cpuflags.NetBSD,v 1.35 2003/05/29 11:45:50 abs Exp $ +# $NetBSD: cpuflags.NetBSD,v 1.36 2003/06/03 10:17:48 salo Exp $ if [ -x /sbin/sysctl ] ;then SYSCTL=/sbin/sysctl @@ -60,12 +60,12 @@ case $hw_machine_arch in i386) case $hw_model in *Intel\ Pentium\ II\ *) FLAGS='-march=pentium2' ;; - *Intel\ Pentium\ III\ *) FLAGS='-march=pentium3' ;; + *Intel\ Pentium\ III\ *) FLAGS='-march=pentium3' ;; *Intel\ Pentium\ 4\ *) FLAGS='-march=pentium4' ;; *AMD\ K6-III*) FLAGS='-march=k6-3' ;; *AMD\ K6-2*) FLAGS='-march=k6-2' ;; *AMD\ K6*) FLAGS='-march=k6' ;; - *AMD\ K7*) FLAGS='-march=athlon' ;; + *AMD\ K7*|*AMD\ Athlon*) FLAGS='-march=athlon' ;; *386-class*) FLAGS='-march=i386' ;; *486-class*) FLAGS='-march=i486' ;; *586-class*) FLAGS='-march=pentium' ;; |