summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorabs <abs@pkgsrc.org>2008-12-18 00:57:12 +0000
committerabs <abs@pkgsrc.org>2008-12-18 00:57:12 +0000
commitcbeaf9d18f5a9a15e8f8e7a99c565771d1a650ce (patch)
tree755f0aa50aa847ac2a854c5d0e315cf0e3bdc251
parent5b78794abca5e8f97b9fa098c883175824d4a771 (diff)
downloadpkgsrc-cbeaf9d18f5a9a15e8f8e7a99c565771d1a650ce.tar.gz
Updated devel/cpuflags to 1.25
Add "Intel(R) Pentium(R) 4 CPU 2.80GHz" from Alaric Snell-Pym Add "Intel(R) Celeron(TM) CPU 1400MHz" from Bernhard Riedel
-rw-r--r--devel/cpuflags/Makefile4
-rw-r--r--devel/cpuflags/files/subr_x864
2 files changed, 5 insertions, 3 deletions
diff --git a/devel/cpuflags/Makefile b/devel/cpuflags/Makefile
index d85ad60c0c1..3b0bf0da742 100644
--- a/devel/cpuflags/Makefile
+++ b/devel/cpuflags/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.130 2008/12/10 23:27:17 abs Exp $
+# $NetBSD: Makefile,v 1.131 2008/12/18 00:57:12 abs Exp $
-DISTNAME= cpuflags-1.24
+DISTNAME= cpuflags-1.25
CATEGORIES= devel sysutils
MASTER_SITES= # empty
DISTFILES= # empty
diff --git a/devel/cpuflags/files/subr_x86 b/devel/cpuflags/files/subr_x86
index ca17d4dc26d..298f2315826 100644
--- a/devel/cpuflags/files/subr_x86
+++ b/devel/cpuflags/files/subr_x86
@@ -1,4 +1,4 @@
-# $NetBSD: subr_x86,v 1.3 2008/12/10 23:27:17 abs Exp $
+# $NetBSD: subr_x86,v 1.4 2008/12/18 00:57:12 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
@@ -9,9 +9,11 @@ map_x86_brand_string()
"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' ;;
+ "Intel(R) Celeron(TM) CPU 1400MHz") echo '-march=pentium3' ;;
"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.80GHz") echo '-march=pentium4' ;;
"Intel(R) Pentium(R) 4 CPU 3.00GHz") echo '-march=prescott' ;;
"Intel(R) Pentium(R) D CPU "*) echo '-march=prescott' ;;
"Intel(R) Xeon(R) CPU 3040"*) echo '-march=core2' ;;