diff options
author | abs <abs> | 2008-12-20 09:56:46 +0000 |
---|---|---|
committer | abs <abs> | 2008-12-20 09:56:46 +0000 |
commit | 6e9e339b87db1474adf1bca5dba2025bca832110 (patch) | |
tree | ed13d59c9643f592923d36933164e579d82186d0 /devel/cpuflags | |
parent | d4348dc89453228ea2ae2986cc4a0cc6afef5ec1 (diff) | |
download | pkgsrc-6e9e339b87db1474adf1bca5dba2025bca832110.tar.gz |
Updated devel/cpuflags to 1.27
Add entry for AMD K6-2+/III+ ("AMD-K6(tm)-III Processor")
- from Ulf Bartelt PR 37850
Diffstat (limited to 'devel/cpuflags')
-rw-r--r-- | devel/cpuflags/Makefile | 4 | ||||
-rw-r--r-- | devel/cpuflags/files/subr_x86 | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/devel/cpuflags/Makefile b/devel/cpuflags/Makefile index 0add568bae3..760ba5fd94d 100644 --- a/devel/cpuflags/Makefile +++ b/devel/cpuflags/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.132 2008/12/18 01:01:33 abs Exp $ +# $NetBSD: Makefile,v 1.133 2008/12/20 09:56:46 abs Exp $ -DISTNAME= cpuflags-1.26 +DISTNAME= cpuflags-1.27 CATEGORIES= devel sysutils MASTER_SITES= # empty DISTFILES= # empty diff --git a/devel/cpuflags/files/subr_x86 b/devel/cpuflags/files/subr_x86 index 298f2315826..557fb355740 100644 --- a/devel/cpuflags/files/subr_x86 +++ b/devel/cpuflags/files/subr_x86 @@ -1,4 +1,4 @@ -# $NetBSD: subr_x86,v 1.4 2008/12/18 00:57:12 abs Exp $ +# $NetBSD: subr_x86,v 1.5 2008/12/20 09:56:46 abs Exp $ # Apparently the only way to reliably determine the architecture of a recent # Intel CPU is to use the cpu brand string - as they reused family and @@ -6,6 +6,7 @@ map_x86_brand_string() { case "$1" in + "AMD-K6(tm)-III Processor"*) echo '-march=k6-3' ;; "Genuine Intel(R) CPU T2400"*) echo '-march=core2' ;; "Intel(R) Celeron(R) CPU E1400"*) echo '-march=core2' ;; "Intel(R) Celeron(R) CPU 2.40GHz") echo '-march=pentium4' ;; |