summaryrefslogtreecommitdiff
path: root/multimedia
diff options
context:
space:
mode:
authorgdt <gdt@pkgsrc.org>2020-12-23 13:37:58 +0000
committergdt <gdt@pkgsrc.org>2020-12-23 13:37:58 +0000
commitbf14edef75630fd601a862b667f2708e5662f6be (patch)
tree3ca2dfac18eb5a4d189503ab67085e1202a7c5c3 /multimedia
parente813156dfc3a0c60667eaf7a51885eac4528c207 (diff)
downloadpkgsrc-bf14edef75630fd601a862b667f2708e5662f6be.tar.gz
libaom: Avoid runtime CPU detection on Darwin/aarch64 too
This simply extends the existing list of NetBSD/arm and NetBSD/aarch64. (This is a build fix, so no PKGREVISION++.) From Mark Felder via pkgsrc-users
Diffstat (limited to 'multimedia')
-rw-r--r--multimedia/libaom/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/multimedia/libaom/Makefile b/multimedia/libaom/Makefile
index 436ceb44748..b95ad916573 100644
--- a/multimedia/libaom/Makefile
+++ b/multimedia/libaom/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.8 2020/08/31 18:10:29 wiz Exp $
+# $NetBSD: Makefile,v 1.9 2020/12/23 13:37:58 gdt Exp $
PKGNAME= libaom-1.0.0
PKGREVISION= 3
@@ -38,7 +38,8 @@ 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