pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/audio/pulseaudio Oops, array append syntax in Meson is...
details: https://anonhg.NetBSD.org/pkgsrc/rev/03069983be17
branches: trunk
changeset: 458555:03069983be17
user: schmonz <schmonz%pkgsrc.org@localhost>
date: Sat Sep 18 10:38:44 2021 +0000
description:
Oops, array append syntax in Meson is +=. Should fix non-macOS builds.
Problem reported by wiz@.
diffstat:
audio/pulseaudio/distinfo | 4 ++--
audio/pulseaudio/patches/patch-src_pulsecore_meson.build | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diffs (36 lines):
diff -r 9d4fca2606ee -r 03069983be17 audio/pulseaudio/distinfo
--- a/audio/pulseaudio/distinfo Sat Sep 18 09:37:51 2021 +0000
+++ b/audio/pulseaudio/distinfo Sat Sep 18 10:38:44 2021 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.81 2021/09/17 06:47:29 schmonz Exp $
+$NetBSD: distinfo,v 1.82 2021/09/18 10:38:44 schmonz Exp $
SHA1 (pulseaudio-15.0.tar.xz) = 41e9f001770ccf7b47dc228311a99a09bb579563
RMD160 (pulseaudio-15.0.tar.xz) = ed6607183e7c137e5df10cee31e1567c76aa6da1
@@ -14,7 +14,7 @@
SHA1 (patch-src_pulsecore_core-rtclock.c) = f621124e0ae8704ddcbbdf1a03a8c898ba6468e2
SHA1 (patch-src_pulsecore_creds.h) = a22cd7fa038cb3424f3ce6e4ce48fd86de6f0d9d
SHA1 (patch-src_pulsecore_iochannel.c) = d227e379d9b09612f84b9071f9378dbc66cfa4ac
-SHA1 (patch-src_pulsecore_meson.build) = a841a2c670464f971f7f2efe489c58f31fd6c5cb
+SHA1 (patch-src_pulsecore_meson.build) = dbb9247b5185b60f600ea21c3954a324cc007e77
SHA1 (patch-src_pulsecore_mix__neon.c) = 6f6d33d38024d65045d637d48276e1ba92b81342
SHA1 (patch-src_pulsecore_shm.c) = c7079e8ac3461f5069e1415a2816784781aaa59c
SHA1 (patch-src_tests_rtpoll-test.c) = 3584aeda2b6f7eb14af9cb5c665a31d972a306ae
diff -r 9d4fca2606ee -r 03069983be17 audio/pulseaudio/patches/patch-src_pulsecore_meson.build
--- a/audio/pulseaudio/patches/patch-src_pulsecore_meson.build Sat Sep 18 09:37:51 2021 +0000
+++ b/audio/pulseaudio/patches/patch-src_pulsecore_meson.build Sat Sep 18 10:38:44 2021 +0000
@@ -1,4 +1,4 @@
-$NetBSD: patch-src_pulsecore_meson.build,v 1.1 2021/09/17 06:47:30 schmonz Exp $
+$NetBSD: patch-src_pulsecore_meson.build,v 1.2 2021/09/18 10:38:45 schmonz Exp $
Avoid selecting whatever this is on macOS ARM (it gives assembler
errors).
@@ -12,7 +12,7 @@
- { 'neon' : ['remap_neon.c', 'sconv_neon.c', 'mix_neon.c'] },
]
+if host_machine.system() != 'darwin'
-+ simd_variants.append({ 'neon' : ['remap_neon.c', 'sconv_neon.c', 'mix_neon.c'] })
++ simd_variants += { 'neon' : ['remap_neon.c', 'sconv_neon.c', 'mix_neon.c'] }
+endif
libpulsecore_simd_lib = []
Home |
Main Index |
Thread Index |
Old Index