diff options
author | abs <abs@pkgsrc.org> | 2008-12-05 00:41:31 +0000 |
---|---|---|
committer | abs <abs@pkgsrc.org> | 2008-12-05 00:41:31 +0000 |
commit | 726ffbdbb2686477d2e2be4b89b70c98a60582d9 (patch) | |
tree | fa69cbf2b7bd27cd306ae81cb645887ae80e62b2 /devel/cpuflags | |
parent | 30d7688b41f9cbdf9c086971d12549db41c7528d (diff) | |
download | pkgsrc-726ffbdbb2686477d2e2be4b89b70c98a60582d9.tar.gz |
Updated devel/cpuflags to 1.21
- Add case for:
'AMD Athlon Model 4 (Thunderbird) ' (-march=athlon-tbird)
Thanks Aleksey Cheusov
Diffstat (limited to 'devel/cpuflags')
-rw-r--r-- | devel/cpuflags/Makefile | 4 | ||||
-rwxr-xr-x | devel/cpuflags/files/subr_NetBSD | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/devel/cpuflags/Makefile b/devel/cpuflags/Makefile index fa9219a142e..5ad4068a271 100644 --- a/devel/cpuflags/Makefile +++ b/devel/cpuflags/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.126 2008/12/04 11:45:35 abs Exp $ +# $NetBSD: Makefile,v 1.127 2008/12/05 00:41:31 abs Exp $ -DISTNAME= cpuflags-1.20 +DISTNAME= cpuflags-1.21 CATEGORIES= devel sysutils MASTER_SITES= # empty DISTFILES= # empty diff --git a/devel/cpuflags/files/subr_NetBSD b/devel/cpuflags/files/subr_NetBSD index 425cf28fd78..dc1a8c35749 100755 --- a/devel/cpuflags/files/subr_NetBSD +++ b/devel/cpuflags/files/subr_NetBSD @@ -1,4 +1,4 @@ -# $NetBSD: subr_NetBSD,v 1.4 2008/12/04 11:45:35 abs Exp $ +# $NetBSD: subr_NetBSD,v 1.5 2008/12/05 00:41:31 abs Exp $ AWK=awk SED=sed @@ -97,6 +97,7 @@ determine_arch() 'AMD Athlon 64 or Athlon 64 FX or Opteron '*) ARCH='-march=opteron' ;; 'AMD Athlon 64 or Sempron (686-class)'*) ARCH='-march=athlon64' ;; 'AMD Dual-Core Opteron or Athlon 64 X2 '*) ARCH='-march=opteron' ;; + 'AMD Athlon Model 4 (Thunderbird) '*) ARCH='-march=athlon-tbird' ;; 'Intel (686-class)'*) ARCH='-march=pentiumpro' ;; 'Intel Celeron (686-class)'*) ARCH='-march=pentiumpro' ;; 'Intel Core 2 (Merom) (686-class)'*) ARCH='-march=core2' ;; |