diff options
author | abs <abs> | 2005-11-06 15:31:20 +0000 |
---|---|---|
committer | abs <abs> | 2005-11-06 15:31:20 +0000 |
commit | c3e5e6804f4165c4071b11ed64ae4aae1db5f4fb (patch) | |
tree | c42a915b490c08f0646e496188a989b0579c4bed /devel | |
parent | b557fda4e0abd569d5eaa0e44eb665f2c1bcfd1e (diff) | |
download | pkgsrc-c3e5e6804f4165c4071b11ed64ae4aae1db5f4fb.tar.gz |
Update cpuflags to 0.96:
Handle "AMD Athlon(tm) 64" on Linux - from Clayton Smith
Diffstat (limited to 'devel')
-rw-r--r-- | devel/cpuflags/Makefile | 4 | ||||
-rw-r--r-- | devel/cpuflags/files/Makefile | 4 | ||||
-rwxr-xr-x | devel/cpuflags/files/cpuflags.Linux | 3 |
3 files changed, 6 insertions, 5 deletions
diff --git a/devel/cpuflags/Makefile b/devel/cpuflags/Makefile index 97bd081a0d9..0834ed80a29 100644 --- a/devel/cpuflags/Makefile +++ b/devel/cpuflags/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.98 2005/10/23 18:47:24 minskim Exp $ +# $NetBSD: Makefile,v 1.99 2005/11/06 15:31:20 abs Exp $ # -DISTNAME= cpuflags-0.95 +DISTNAME= cpuflags-0.96 CATEGORIES= sysutils MASTER_SITES= # empty DISTFILES= # empty diff --git a/devel/cpuflags/files/Makefile b/devel/cpuflags/files/Makefile index abe71966a0a..72cb5a4c46d 100644 --- a/devel/cpuflags/files/Makefile +++ b/devel/cpuflags/files/Makefile @@ -1,6 +1,6 @@ -# $Id: Makefile,v 1.4 2005/10/23 14:03:39 rillig Exp $ +# $Id: Makefile,v 1.5 2005/11/06 15:31:20 abs Exp $ -VERSION=0.89 +VERSION=0.96 PREFIX?=/usr/local OPSYS?=`uname` diff --git a/devel/cpuflags/files/cpuflags.Linux b/devel/cpuflags/files/cpuflags.Linux index e4096892172..852b1bfb164 100755 --- a/devel/cpuflags/files/cpuflags.Linux +++ b/devel/cpuflags/files/cpuflags.Linux @@ -1,5 +1,5 @@ #!/bin/sh -# $NetBSD: cpuflags.Linux,v 1.18 2005/07/22 12:13:12 abs Exp $ +# $NetBSD: cpuflags.Linux,v 1.19 2005/11/06 15:31:20 abs Exp $ PATH=/sbin:/usr/sbin:/bin:/usr/bin:$PATH AWK=awk @@ -39,6 +39,7 @@ case $hw_machine_arch in "Mobile Intel(R) Pentium(R) 4 - M "*) FLAGS='-march=pentium4m' ;; "Pentium III (Coppermine)") FLAGS='-march=pentium3' ;; "Pentium III (Katmai)") FLAGS='-march=pentium3' ;; + "AMD Athlon(tm) 64"*) FLAGS='-march=athlon-xp' ;; "Intel(R) Celeron(R) CPU "* | "Intel(R) Xeon(TM) CPU "*) case "$hw_flags" in *" sse2 "*) |