pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/audio/pulseaudio



Module Name:    pkgsrc
Committed By:   jmcneill
Date:           Sun May 20 10:57:40 UTC 2018

Modified Files:
        pkgsrc/audio/pulseaudio: Makefile

Log Message:
Fix build on NetBSD/aarch64 with clang.


To generate a diff of this commit:
cvs rdiff -u -r1.126 -r1.127 pkgsrc/audio/pulseaudio/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/audio/pulseaudio/Makefile
diff -u pkgsrc/audio/pulseaudio/Makefile:1.126 pkgsrc/audio/pulseaudio/Makefile:1.127
--- pkgsrc/audio/pulseaudio/Makefile:1.126      Mon Apr 16 14:34:08 2018
+++ pkgsrc/audio/pulseaudio/Makefile    Sun May 20 10:57:40 2018
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.126 2018/04/16 14:34:08 wiz Exp $
+# $NetBSD: Makefile,v 1.127 2018/05/20 10:57:40 jmcneill Exp $
 
 DISTNAME=      pulseaudio-11.1
 PKGREVISION=   5
@@ -49,6 +49,11 @@ CONFIGURE_ARGS+=     --disable-tcpwrap
 CONFIGURE_ARGS+=       --localstatedir=${VARBASE:Q}
 CONFIGURE_ARGS+=       --sysconfdir=${PKG_SYSCONFBASEDIR:Q}
 
+# Disable NEON on NetBSD/aarch64 (does not build with pulseaudio 11.1)
+.if !empty(PKGSRC_COMPILER:Mclang) && ${OPSYS} == "NetBSD" && ${MACHINE_CPU} == "aarch64"
+CONFIGURE_ARGS+=       --disable-neon-opt
+.endif
+
 # Use native atomic ops on NetBSD >= 5.0, otherwise
 # fallback to libatomic_ops
 .if !(${OPSYS} == "NetBSD" && exists(/usr/include/sys/atomic.h))



Home | Main Index | Thread Index | Old Index