mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-27 05:06:39 +00:00
mpd: add optional libmpdclient dependency
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
71d1610029
commit
20adc2a9fb
@ -285,6 +285,12 @@ config BR2_PACKAGE_MPD_AVAHI_SUPPORT
|
|||||||
comment "avahi support needs a toolchain w/ dynamic library"
|
comment "avahi support needs a toolchain w/ dynamic library"
|
||||||
depends on BR2_STATIC_LIBS
|
depends on BR2_STATIC_LIBS
|
||||||
|
|
||||||
|
config BR2_PACKAGE_MPD_LIBMPDCLIENT
|
||||||
|
bool "libmpdclient"
|
||||||
|
select BR2_PACKAGE_LIBMPDCLIENT
|
||||||
|
help
|
||||||
|
Enable libmpdclient support.
|
||||||
|
|
||||||
config BR2_PACKAGE_MPD_NEIGHBOR_DISCOVERY_SUPPORT
|
config BR2_PACKAGE_MPD_NEIGHBOR_DISCOVERY_SUPPORT
|
||||||
bool "neighbor discovery support"
|
bool "neighbor discovery support"
|
||||||
depends on BR2_PACKAGE_MPD_LIBSMBCLIENT || BR2_PACKAGE_MPD_UPNP
|
depends on BR2_PACKAGE_MPD_LIBSMBCLIENT || BR2_PACKAGE_MPD_UPNP
|
||||||
|
@ -113,6 +113,13 @@ else
|
|||||||
MPD_CONF_OPTS += --disable-lame-encoder
|
MPD_CONF_OPTS += --disable-lame-encoder
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(BR2_PACKAGE_MPD_LIBMPDCLIENT),y)
|
||||||
|
MPD_DEPENDENCIES += libmpdclient
|
||||||
|
MPD_CONF_OPTS += --enable-libmpdclient
|
||||||
|
else
|
||||||
|
MPD_CONF_OPTS += --disable-libmpdclient
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_MPD_LIBNFS),y)
|
ifeq ($(BR2_PACKAGE_MPD_LIBNFS),y)
|
||||||
MPD_DEPENDENCIES += libnfs
|
MPD_DEPENDENCIES += libnfs
|
||||||
MPD_CONF_OPTS += --enable-nfs
|
MPD_CONF_OPTS += --enable-nfs
|
||||||
|
Loading…
x
Reference in New Issue
Block a user