From e4b1d8cc06b75b36983884cd3bfe721631550769 Mon Sep 17 00:00:00 2001 From: Yehor Popovych Date: Sat, 2 May 2026 18:02:51 +0100 Subject: [PATCH] mpd: enabled dsd for mpd-full variant Fixes: #29281 Signed-off-by: Yehor Popovych --- sound/mpd/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sound/mpd/Makefile b/sound/mpd/Makefile index 847674640b..d70d501737 100644 --- a/sound/mpd/Makefile +++ b/sound/mpd/Makefile @@ -7,7 +7,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=mpd PKG_VERSION:=0.23.16 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=https://www.musicpd.org/download/mpd/0.23 @@ -118,7 +118,6 @@ MESON_ARGS += \ -Dtcp=true \ -Dipv6=$(if $(CONFIG_IPV6),en,dis)abled \ -Dlocal_socket=true \ - -Ddsd=false \ -Ddatabase=true \ -Dlibmpdclient=enabled \ -Dneighbor=false \ @@ -181,6 +180,7 @@ ifeq ($(BUILD_VARIANT),full) MESON_ARGS += \ -Dupnp=npupnp \ -Dmms=enabled \ + -Ddsd=true \ -Dsoundcloud=enabled \ -Dffmpeg=enabled \ -Dmad=$(if $(CONFIG_BUILD_PATENTED),dis,en)abled \ @@ -207,6 +207,7 @@ ifeq ($(BUILD_VARIANT),mini) MESON_ARGS += \ -Dupnp=disabled \ -Dmms=disabled \ + -Ddsd=false \ -Dsoundcloud=disabled \ -Dffmpeg=disabled \ -Dmad=enabled \