summaryrefslogtreecommitdiff
path: root/audio/pulseaudio
diff options
context:
space:
mode:
authormaya <maya@pkgsrc.org>2018-05-20 11:42:33 +0000
committermaya <maya@pkgsrc.org>2018-05-20 11:42:33 +0000
commitbf959fffdab89be1bb0b9f9944c56f16b501d40a (patch)
tree0e199c057e03bc974f3586298bde6c556264d8f7 /audio/pulseaudio
parent714adabc981582f38a9d262f42e05fa913135d83 (diff)
downloadpkgsrc-bf959fffdab89be1bb0b9f9944c56f16b501d40a.tar.gz
pulseaudio: elaborate more why to disable neon optimization on netbsd/aarch64.
the internet suggests that pulseaudio might be wrong to use the same code for aarch64 and aarch32.
Diffstat (limited to 'audio/pulseaudio')
-rw-r--r--audio/pulseaudio/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/audio/pulseaudio/Makefile b/audio/pulseaudio/Makefile
index d68ca7e40e7..0071c8c2154 100644
--- a/audio/pulseaudio/Makefile
+++ b/audio/pulseaudio/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.127 2018/05/20 10:57:40 jmcneill Exp $
+# $NetBSD: Makefile,v 1.128 2018/05/20 11:42:33 maya Exp $
DISTNAME= pulseaudio-11.1
PKGREVISION= 5
@@ -50,6 +50,7 @@ CONFIGURE_ARGS+= --localstatedir=${VARBASE:Q}
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFBASEDIR:Q}
# Disable NEON on NetBSD/aarch64 (does not build with pulseaudio 11.1)
+# use of q0 register in aarch64 is considered not valid
.if !empty(PKGSRC_COMPILER:Mclang) && ${OPSYS} == "NetBSD" && ${MACHINE_CPU} == "aarch64"
CONFIGURE_ARGS+= --disable-neon-opt
.endif