summaryrefslogtreecommitdiff
path: root/devel/cpuflags
diff options
context:
space:
mode:
authordan <dan@pkgsrc.org>2004-02-20 00:37:46 +0000
committerdan <dan@pkgsrc.org>2004-02-20 00:37:46 +0000
commitb62d8288fcef5082d3cecc005d11e6daf7a43ef3 (patch)
tree4daea9bba1cf9cb8bc30337a58e06483fd0b7e2c /devel/cpuflags
parentc319713c18fef8466e148544527856c8736e1e4e (diff)
downloadpkgsrc-b62d8288fcef5082d3cecc005d11e6daf7a43ef3.tar.gz
Recognise the "Intel Celeron (Mendocino)", which is a p3 but without SSE
Bump version.
Diffstat (limited to 'devel/cpuflags')
-rw-r--r--devel/cpuflags/Makefile4
-rwxr-xr-xdevel/cpuflags/files/cpuflags.NetBSD3
2 files changed, 4 insertions, 3 deletions
diff --git a/devel/cpuflags/Makefile b/devel/cpuflags/Makefile
index 06f5834a579..22f1d3fa140 100644
--- a/devel/cpuflags/Makefile
+++ b/devel/cpuflags/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.65 2004/02/13 21:08:33 abs Exp $
+# $NetBSD: Makefile,v 1.66 2004/02/20 00:37:46 dan Exp $
#
-DISTNAME= cpuflags-0.61
+DISTNAME= cpuflags-0.62
CATEGORIES= sysutils
MASTER_SITES= # empty
DISTFILES= # empty
diff --git a/devel/cpuflags/files/cpuflags.NetBSD b/devel/cpuflags/files/cpuflags.NetBSD
index fd5dc0834ff..a3aca43bd2f 100755
--- a/devel/cpuflags/files/cpuflags.NetBSD
+++ b/devel/cpuflags/files/cpuflags.NetBSD
@@ -1,5 +1,5 @@
#!/bin/sh
-# $NetBSD: cpuflags.NetBSD,v 1.44 2003/12/04 10:13:26 abs Exp $
+# $NetBSD: cpuflags.NetBSD,v 1.45 2004/02/20 00:37:46 dan Exp $
if [ -x /sbin/sysctl ] ;then
SYSCTL=/sbin/sysctl
@@ -63,6 +63,7 @@ case $hw_machine_arch in
*Intel\ Pentium\ II\ *) FLAGS='-march=pentium2' ;;
*Intel\ Pentium\ III\ *) FLAGS='-march=pentium3' ;;
*Intel\ Mobile\ Pentium\ III\ *) FLAGS='-march=pentium3' ;;
+ *Intel\ Celeron\ \(Mendocino\)\ *) FLAGS='-march=pentium3 -mno-sse' ;;
*Intel\ Pentium\ M\ *) FLAGS='-march=pentium3' ;;
*Intel\ Pentium\ 4\ *) FLAGS='-march=pentium4' ;;
*AMD\ K6-III*) FLAGS='-march=k6-3' ;;