mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 06:06:32 +00:00
package/kodi: add optional support for event clients
For details read https://github.com/xbmc/xbmc/blob/master/tools/EventClients/README.txt Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
bf9bfd065b
commit
8ac0b448b9
@ -126,6 +126,13 @@ config BR2_PACKAGE_KODI_DBUS
|
|||||||
help
|
help
|
||||||
Enable D-Bus support
|
Enable D-Bus support
|
||||||
|
|
||||||
|
config BR2_PACKAGE_KODI_EVENTCLIENTS
|
||||||
|
bool "eventclients"
|
||||||
|
help
|
||||||
|
Enable event clients support
|
||||||
|
|
||||||
|
https://github.com/xbmc/xbmc/blob/master/tools/EventClients/README.txt
|
||||||
|
|
||||||
config BR2_PACKAGE_KODI_LIBBLURAY
|
config BR2_PACKAGE_KODI_LIBBLURAY
|
||||||
bool "blu-ray"
|
bool "blu-ray"
|
||||||
select BR2_PACKAGE_LIBBLURAY
|
select BR2_PACKAGE_LIBBLURAY
|
||||||
|
@ -202,6 +202,12 @@ else
|
|||||||
KODI_CONF_OPTS += -DENABLE_DBUS=OFF
|
KODI_CONF_OPTS += -DENABLE_DBUS=OFF
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(BR2_PACKAGE_KODI_EVENTCLIENTS),y)
|
||||||
|
KODI_CONF_OPTS += -DENABLE_EVENTCLIENTS=ON
|
||||||
|
else
|
||||||
|
KODI_CONF_OPTS += -DENABLE_EVENTCLIENTS=OFF
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_KODI_ALSA_LIB),y)
|
ifeq ($(BR2_PACKAGE_KODI_ALSA_LIB),y)
|
||||||
KODI_CONF_OPTS += -DENABLE_ALSA=ON
|
KODI_CONF_OPTS += -DENABLE_ALSA=ON
|
||||||
KODI_DEPENDENCIES += alsa-lib
|
KODI_DEPENDENCIES += alsa-lib
|
||||||
|
Loading…
x
Reference in New Issue
Block a user