summaryrefslogtreecommitdiff
path: root/multimedia
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 /multimedia
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 'multimedia')
-rw-r--r--multimedia/libaom/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/multimedia/libaom/Makefile b/multimedia/libaom/Makefile
index 093283e7073..cc15fda849a 100644
--- a/multimedia/libaom/Makefile
+++ b/multimedia/libaom/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.10 2020/12/23 15:03:09 gdt Exp $
+# $NetBSD: Makefile,v 1.11 2021/04/25 07:51:25 mrg Exp $
PKGNAME= libaom-1.0.0
PKGREVISION= 3
@@ -38,7 +38,7 @@ CMAKE_ARGS+= -DENABLE_WERROR:BOOL=OFF
.include "../../mk/bsd.prefs.mk"
.if !empty(MACHINE_PLATFORM:MNetBSD-*-*arm*) \
- || !empty(MACHINE_PLATFORM:MNetBSD-*-aarch64) \
+ || !empty(MACHINE_PLATFORM:MNetBSD-*-aarch64*) \
|| !empty(MACHINE_PLATFORM:MDarwin-*-aarch64)
CMAKE_ARGS+= -DCONFIG_RUNTIME_CPU_DETECT=0
.endif