From: Jörg Krause Date: Thu, 24 Jan 2019 10:07:17 +0000 (+0100) Subject: package/upmpdcli: fix static build issue X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bb06035e6a1b41f1cb348a3eaa7d6c1184d0d97e;p=buildroot.git package/upmpdcli: fix static build issue The spotify plugin requires shared library support and needs . Explicitly disable the spotify plugin when building upmpdcli in a static context. Fixes: http://autobuild.buildroot.net/results/cb942d3c5f68959d6cbc85535ccff4a275369f91/ Signed-off-by: Jörg Krause Signed-off-by: Thomas Petazzoni --- diff --git a/package/upmpdcli/upmpdcli.mk b/package/upmpdcli/upmpdcli.mk index d88caac78b..22a5bf2429 100644 --- a/package/upmpdcli/upmpdcli.mk +++ b/package/upmpdcli/upmpdcli.mk @@ -10,6 +10,11 @@ UPMPDCLI_LICENSE = LGPL-2.1+ UPMPDCLI_LICENSE_FILES = COPYING UPMPDCLI_DEPENDENCIES = host-pkgconf libmpdclient libupnpp libmicrohttpd jsoncpp +# Disable spotify plugin which requires dlfcn.h +ifeq ($(BR2_STATIC_LIBS),y) +UPMPDCLI_CONF_OPTS = --disable-spotify +endif + # Upmpdcli only runs if user upmpdcli exists define UPMPDCLI_USERS upmpdcli -1 upmpdcli -1 * - - audio Upmpdcli MPD UPnP Renderer Front-End