summaryrefslogtreecommitdiff
path: root/audio/mpg123
diff options
context:
space:
mode:
authormrg <mrg@pkgsrc.org>2021-04-25 07:51:24 +0000
committermrg <mrg@pkgsrc.org>2021-04-25 07:51:24 +0000
commit7119f88b9776507ec462df37e406d07c4c7fd82f (patch)
tree5b11f665d63bb4941473175d4698186fdc49d5e7 /audio/mpg123
parent1332b79f038553a52c80b898801cae5681454356 (diff)
downloadpkgsrc-7119f88b9776507ec462df37e406d07c4c7fd82f.tar.gz
various fixes for arm64 big endian support.
most of these simply extend matching from "aarch64" to "aarch64eb" in various forms of code. most remaining uses in pkgsrc of "MACHINE_ARCH == aarch64" are because of missing aarch64eb support, such as most of the binary-bootstrap requiring languages like rust, go, and java. no pkg-bump because this shouldn't change packages on systems that could already build all of these.
Diffstat (limited to 'audio/mpg123')
-rw-r--r--audio/mpg123/options.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/mpg123/options.mk b/audio/mpg123/options.mk
index 113063a2e2d..72b25fb54f5 100644
--- a/audio/mpg123/options.mk
+++ b/audio/mpg123/options.mk
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.9 2021/03/15 18:25:21 dholland Exp $
+# $NetBSD: options.mk,v 1.10 2021/04/25 07:51:24 mrg Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.mpg123
PKG_OPTIONS_OPTIONAL_GROUPS= fpu
@@ -8,7 +8,7 @@ PKG_OPTIONS_GROUP.fpu= mpg123-with-fpu
.include "../../mk/bsd.fast.prefs.mk"
-.if ${MACHINE_ARCH} == "aarch64"
+.if ${MACHINE_CPU} == "aarch64"
PKG_OPTIONS_GROUP.fpu+= mpg123-neon64 mpg123-aarch64
PKG_SUGGESTED_OPTIONS+= mpg123-aarch64
.elif ${MACHINE_ARCH} == "powerpc"