Files
ports/audio/mpd/patches/patch-src_input_plugins_CdioParanoiaInputPlugin_cxx
landry d03d0491f0 audio/mpd: update to 0.24.3.
see https://raw.githubusercontent.com/MusicPlayerDaemon/MPD/v0.24.3/NEWS
for the changelog.

revert an upstream commit that uses apparently too modern c++ constructs
we dont have in our libcxx 16. thus, keep the boost dependency..

take maintainership while here, after all i've been using it for nearly
20 years.
2025-04-15 06:43:28 +00:00

15 lines
419 B
Plaintext

otherwise NULL is defined to (void*)0 by cdio/types.h
Index: src/input/plugins/CdioParanoiaInputPlugin.cxx
--- src/input/plugins/CdioParanoiaInputPlugin.cxx.orig
+++ src/input/plugins/CdioParanoiaInputPlugin.cxx
@@ -5,6 +5,8 @@
* CD-Audio handling (requires libcdio_paranoia)
*/
+#include <cstddef>
+
#include "CdioParanoiaInputPlugin.hxx"
#include "lib/cdio/Paranoia.hxx"
#include "lib/fmt/RuntimeError.hxx"