From 06ca08ce555feca38ef2824ea9cd0e2b67f5e01e Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 31 Oct 2018 15:03:28 +0100 Subject: output/roar: remove Bugs in libroar which broke the MPD build have been annoying me for quite some time, and the newest bug has now hit my main build machine: https://github.com/MusicPlayerDaemon/MPD/issues/377 Problem is the usage of the typedef `_IO_off64_t` in libroar's `vio_stdio.h`: int roar_vio_to_stdio_lseek (void *__cookie, _IO_off64_t *__pos, int __w); This `_IO_off64_t` is an internal implementation detail of glibc and was removed in version 2.28. Nobody must ever use it. Why the **** did the RoarAudio developers use it? Not using internal typedefs isn't exactly rocket science. This annoys me enough to finally remove the plugin. Anyway, I've never heard of anybody using RoarAudio, so my best guess is that nobody will notice. --- meson_options.txt | 1 - 1 file changed, 1 deletion(-) (limited to 'meson_options.txt') diff --git a/meson_options.txt b/meson_options.txt index 48622b5f1..c2d388a46 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -163,7 +163,6 @@ option('oss', type: 'feature', description: 'Open Sound System support') option('pipe', type: 'boolean', value: true, description: 'Pipe output plugin') option('pulse', type: 'feature', description: 'PulseAudio support') option('recorder', type: 'boolean', value: true, description: 'Recorder output plugin') -option('roar', type: 'feature', description: 'Roar output plugin') option('shout', type: 'feature', description: 'Shoutcast streaming support using libshout') option('sndio', type: 'feature', description: 'sndio output plugin') option('solaris_output', type: 'feature', description: 'Solaris /dev/audio support') -- cgit v1.2.3