From 020d575bcc9c78ca47cd1ff5fb46caff472ddb36 Mon Sep 17 00:00:00 2001 From: John Ernberg Date: Sun, 10 May 2026 21:38:22 +0200 Subject: [PATCH] package/mpd: Disable sidplay support Commit 25af5a3b3aa3 ("package/mpd: update version to 0.24") from March 2025 bumped mpd to a version that dropped support for the libsidplay2 library in favor of libsidplayfp. [1] Since libsidplayfp is not provided by buildroot and no one has complained yet the sidplay feature is likely unused, as enabling it breaks the build. Drop support. If someone needs it it can be re-added along with the dependency. Link: https://raw.githubusercontent.com/MusicPlayerDaemon/MPD/v0.24/NEWS [1] Cc: Andreas Ziegler Signed-off-by: John Ernberg Signed-off-by: Arnout Vandecappelle (cherry picked from commit 7a5b27453fb06bd25c5c78012ae1e5bcd7e2c07e) Fixes: https://autobuild.buildroot.org/results/c72d11535857a447acae806397c451b167e00b13 --- package/mpd/mpd.mk | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/package/mpd/mpd.mk b/package/mpd/mpd.mk index e94858897a..65cd390ff9 100644 --- a/package/mpd/mpd.mk +++ b/package/mpd/mpd.mk @@ -24,6 +24,7 @@ MPD_CONF_OPTS = \ -Dmpcdec=disabled \ -Dopenmpt=disabled \ -Dpipewire=disabled \ + -Dsidplay=disabled \ -Dsnapcast=false ifeq ($(BR2_PACKAGE_EXPAT),y) @@ -284,13 +285,6 @@ else MPD_CONF_OPTS += -Dshout=disabled endif -ifeq ($(BR2_PACKAGE_MPD_SIDPLAY),y) -MPD_DEPENDENCIES += libsidplay2 -MPD_CONF_OPTS += -Dsidplay=enabled -else -MPD_CONF_OPTS += -Dsidplay=disabled -endif - ifeq ($(BR2_PACKAGE_MPD_SQLITE),y) MPD_DEPENDENCIES += sqlite MPD_CONF_OPTS += -Dsqlite=enabled