summaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authorabs <abs>2009-02-02 17:09:46 +0000
committerabs <abs>2009-02-02 17:09:46 +0000
commit1278a046bd651b607c5b5dfd6bfe19430a402d0a (patch)
treed984df57a999a75f58a39f922eeee9f91f96a2fc /devel
parentb3b2da35ee22e263131e15d79b06b38efafb4baa (diff)
downloadpkgsrc-1278a046bd651b607c5b5dfd6bfe19430a402d0a.tar.gz
Updated devel/cpuflags to 1.38
Handle Intel Core 2 (Merom) - from Steffen Beyer
Diffstat (limited to 'devel')
-rw-r--r--devel/cpuflags/Makefile4
-rw-r--r--devel/cpuflags/files/subr_x863
2 files changed, 4 insertions, 3 deletions
diff --git a/devel/cpuflags/Makefile b/devel/cpuflags/Makefile
index 7bc6c63627c..3a26a611f42 100644
--- a/devel/cpuflags/Makefile
+++ b/devel/cpuflags/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.143 2009/01/28 23:30:50 abs Exp $
+# $NetBSD: Makefile,v 1.144 2009/02/02 17:09:46 abs Exp $
-DISTNAME= cpuflags-1.37
+DISTNAME= cpuflags-1.38
CATEGORIES= devel sysutils
MASTER_SITES= # empty
DISTFILES= # empty
diff --git a/devel/cpuflags/files/subr_x86 b/devel/cpuflags/files/subr_x86
index b6fe733237a..24c6707babf 100644
--- a/devel/cpuflags/files/subr_x86
+++ b/devel/cpuflags/files/subr_x86
@@ -1,4 +1,4 @@
-# $NetBSD: subr_x86,v 1.10 2009/01/12 21:57:24 abs Exp $
+# $NetBSD: subr_x86,v 1.11 2009/02/02 17:09: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
@@ -35,6 +35,7 @@ map_x86_brand_string()
"Intel(R) Celeron(R) M processor "*) echo '-march=pentium-m' ;;
"Intel(R) Celeron(TM) CPU 1400MHz") echo '-march=pentium3' ;;
"Intel(R) Core(TM)2 "*) echo '-march=core2' ;;
+ "Intel(R) Core 2 "*) echo '-march=core2' ;;
"Intel(R) Pentium(R) 4 CPU"*)
if [ -n "$cpu_feature_SSE3" ] ; then
echo '-march=prescott'