mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-26 20:56:33 +00:00
mpd: add mms support
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
5c599c0739
commit
1b3d8129a1
@ -180,6 +180,12 @@ config BR2_PACKAGE_MPD_CURL
|
|||||||
help
|
help
|
||||||
Enable curl streaming (http) support.
|
Enable curl streaming (http) support.
|
||||||
|
|
||||||
|
config BR2_PACKAGE_MPD_LIBMMS
|
||||||
|
bool "mms"
|
||||||
|
select BR2_PACKAGE_LIBMMS
|
||||||
|
help
|
||||||
|
Enable MMS support.
|
||||||
|
|
||||||
config BR2_PACKAGE_MPD_LIBNFS
|
config BR2_PACKAGE_MPD_LIBNFS
|
||||||
bool "nfs"
|
bool "nfs"
|
||||||
# libnfs -> libtirpc
|
# libnfs -> libtirpc
|
||||||
|
@ -120,6 +120,13 @@ else
|
|||||||
MPD_CONF_OPTS += --disable-libmpdclient
|
MPD_CONF_OPTS += --disable-libmpdclient
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(BR2_PACKAGE_MPD_LIBMMS),y)
|
||||||
|
MPD_DEPENDENCIES += libmms
|
||||||
|
MPD_CONF_OPTS += --enable-mms
|
||||||
|
else
|
||||||
|
MPD_CONF_OPTS += --disable-mms
|
||||||
|
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