diff options
author | abs <abs> | 2008-12-23 09:48:38 +0000 |
---|---|---|
committer | abs <abs> | 2008-12-23 09:48:38 +0000 |
commit | 90e3462625f62d2bcebe4a46fe74bd3614b526e0 (patch) | |
tree | d93dcc4aa3fa6cc9437f2074513d82344f2138fc /devel/cpuflags | |
parent | ef3632d656ffa422f2c27419bc9ce1e9d9de4a0c (diff) | |
download | pkgsrc-90e3462625f62d2bcebe4a46fe74bd3614b526e0.tar.gz |
Updated devel/cpuflags to 1.29 (leaf package)
Add:
"Intel(R) Pentium(R) 4 CPU 2.00GHz" - thanks to Ćukasz
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 44bcc2a6acd..287498e6ba8 100644 --- a/devel/cpuflags/Makefile +++ b/devel/cpuflags/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.134 2008/12/21 15:49:27 abs Exp $ +# $NetBSD: Makefile,v 1.135 2008/12/23 09:48:38 abs Exp $ -DISTNAME= cpuflags-1.28 +DISTNAME= cpuflags-1.29 CATEGORIES= devel sysutils MASTER_SITES= # empty DISTFILES= # empty diff --git a/devel/cpuflags/files/subr_x86 b/devel/cpuflags/files/subr_x86 index cd87bc5606b..77f01a58015 100644 --- a/devel/cpuflags/files/subr_x86 +++ b/devel/cpuflags/files/subr_x86 @@ -1,4 +1,4 @@ -# $NetBSD: subr_x86,v 1.6 2008/12/21 15:49:27 abs Exp $ +# $NetBSD: subr_x86,v 1.7 2008/12/23 09:48:38 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 @@ -25,6 +25,7 @@ map_x86_brand_string() "Intel(R) Core(TM)2 CPU "*) echo '-march=core2' ;; "Intel(R) Core(TM)2 Duo CPU "*) echo '-march=core2' ;; "Intel(R) Core(TM)2 Quad CPU"*) echo '-march=core2' ;; + "Intel(R) Pentium(R) 4 CPU 2.00GHz") echo '-march=pentium4' ;; "Intel(R) Pentium(R) 4 CPU 2.80GHz") echo '-march=pentium4' ;; "Intel(R) Pentium(R) 4 CPU 3.00GHz") echo '-march=prescott' ;; "Intel(R) Pentium(R) 4 CPU 3.20GHz") echo '-march=prescott' ;; |