diff options
author | sobomax <sobomax@FreeBSD.org> | 2001-03-10 11:55:50 +0000 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2001-03-10 11:55:50 +0000 |
commit | e4b3e74e18d37f7186950e0997d0fa60b2e9522a (patch) | |
tree | 86584154bcfc2f8e439e57e74eb22d674bc890b4 /audio | |
parent | 251170d20bc80017da65e81cb9d99693a24e88a4 (diff) | |
download | FreeBSD-ports-e4b3e74e18d37f7186950e0997d0fa60b2e9522a.zip FreeBSD-ports-e4b3e74e18d37f7186950e0997d0fa60b2e9522a.tar.gz |
Use ${MACHINE_CPU:M3dnow} to detect presence of 3DNOW extension instead of
${MACHINE_CPU:Mk6}, because:
1. k6 CPU don't really support 3DNOW, this extension was first was introduced
in k6-2 CPUs;
2. Duron/Athlon (aka k7) CPUs support this extension as well.
Missed by: kris
Submitted by: Philipp Mergenthaler <un1i@rz.uni-karlsruhe.de>
Diffstat (limited to 'audio')
-rw-r--r-- | audio/mpg123/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/mpg123/Makefile b/audio/mpg123/Makefile index 6aa1ee6..f2fe4a4 100644 --- a/audio/mpg123/Makefile +++ b/audio/mpg123/Makefile @@ -58,7 +58,7 @@ pre-fetch: .endif .if ${MACHINE_ARCH} == "i386" .if ${OSVERSION} >= 500018 -.if ${MACHINE_CPU:Mk6} +.if ${MACHINE_CPU:M3dnow} OPT_ARCH= 3dnow .elif ${MACHINE_CPU:Mi586} OPT_ARCH= i586 |