pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/devel/cpuflags Update cpuflags to 0.72:
details: https://anonhg.NetBSD.org/pkgsrc/rev/ef9050c79834
branches: trunk
changeset: 477675:ef9050c79834
user: abs <abs%pkgsrc.org@localhost>
date: Tue Jul 06 23:00:10 2004 +0000
description:
Update cpuflags to 0.72:
Handle c3 as 'c3' or '586', not '686'. From Dick Davies
Rationale: http://www3.sympatico.ca/howlettfamily/epia/epia_howto/x881.html#pentium_compatible
diffstat:
devel/cpuflags/Makefile | 4 ++--
devel/cpuflags/files/cpuflags.NetBSD | 4 +++-
2 files changed, 5 insertions(+), 3 deletions(-)
diffs (39 lines):
diff -r e43c74ec788f -r ef9050c79834 devel/cpuflags/Makefile
--- a/devel/cpuflags/Makefile Tue Jul 06 22:57:48 2004 +0000
+++ b/devel/cpuflags/Makefile Tue Jul 06 23:00:10 2004 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.74 2004/06/09 20:51:11 cube Exp $
+# $NetBSD: Makefile,v 1.75 2004/07/06 23:00:10 abs Exp $
#
-DISTNAME= cpuflags-0.71
+DISTNAME= cpuflags-0.72
CATEGORIES= sysutils
MASTER_SITES= # empty
DISTFILES= # empty
diff -r e43c74ec788f -r ef9050c79834 devel/cpuflags/files/cpuflags.NetBSD
--- a/devel/cpuflags/files/cpuflags.NetBSD Tue Jul 06 22:57:48 2004 +0000
+++ b/devel/cpuflags/files/cpuflags.NetBSD Tue Jul 06 23:00:10 2004 +0000
@@ -1,5 +1,5 @@
#!/bin/sh
-# $NetBSD: cpuflags.NetBSD,v 1.50 2004/06/09 20:51:11 cube Exp $
+# $NetBSD: cpuflags.NetBSD,v 1.51 2004/07/06 23:00:10 abs Exp $
if [ -x /sbin/sysctl ] ;then
SYSCTL=/sbin/sysctl
@@ -71,6 +71,7 @@
*Intel\ Pentium\ M\ *) FLAGS='-march=pentium3' ;;
*Intel\ Mobile\ Pentium\ 4\ *) FLAGS='-march=pentium4' ;;
*Intel\ Pentium\ 4\ *) FLAGS='-march=pentium4' ;;
+ *VIA\ C3*\ Samuel*) FLAGS='-march=c3' ;;
*AMD\ K6-III*) FLAGS='-march=k6-3' ;;
*AMD\ K6-2*) FLAGS='-march=k6-2' ;;
*AMD\ K6*) FLAGS='-march=k6' ;;
@@ -228,6 +229,7 @@
3.1:-mtune=r5000:-cpu=r5000
3.1:-mtune=r6000:-cpu=r6000
3.1:-mtune=r8000:-cpu=r8000
+3.3:-march=c3:-march=i586
EOD
`
fi
Home |
Main Index |
Thread Index |
Old Index