mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-27 13:16:35 +00:00
package/kodi: add optional support for bluez5
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> [Thomas: add missing dependency on BR2_TOOLCHAIN_HAS_SYNC_4 from bluez5_utils.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
6c4fe5188d
commit
43122d64e0
@ -113,6 +113,15 @@ config BR2_PACKAGE_KODI_AVAHI
|
|||||||
Enable Avahi support.
|
Enable Avahi support.
|
||||||
Select this if you want Kodi to support Bonjour protocol.
|
Select this if you want Kodi to support Bonjour protocol.
|
||||||
|
|
||||||
|
config BR2_PACKAGE_KODI_BLUEZ
|
||||||
|
bool "bluetooth"
|
||||||
|
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_4 # bluez5_utils
|
||||||
|
depends on !BR2_PACKAGE_BLUEZ_UTILS # bluez5_utils
|
||||||
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # bluez5_utils
|
||||||
|
select BR2_PACKAGE_BLUEZ5_UTILS
|
||||||
|
help
|
||||||
|
Enable bluetooth support
|
||||||
|
|
||||||
config BR2_PACKAGE_KODI_DBUS
|
config BR2_PACKAGE_KODI_DBUS
|
||||||
bool "dbus"
|
bool "dbus"
|
||||||
select BR2_PACKAGE_DBUS
|
select BR2_PACKAGE_DBUS
|
||||||
|
@ -183,6 +183,13 @@ else
|
|||||||
KODI_CONF_OPTS += -DENABLE_CAP=OFF
|
KODI_CONF_OPTS += -DENABLE_CAP=OFF
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(BR2_PACKAGE_KODI_BLUEZ),y)
|
||||||
|
KODI_CONF_OPTS += -DENABLE_BLUETOOTH=ON
|
||||||
|
KODI_DEPENDENCIES += bluez5_utils
|
||||||
|
else
|
||||||
|
KODI_CONF_OPTS += -DENABLE_BLUETOOTH=OFF
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_KODI_DBUS),y)
|
ifeq ($(BR2_PACKAGE_KODI_DBUS),y)
|
||||||
KODI_DEPENDENCIES += dbus
|
KODI_DEPENDENCIES += dbus
|
||||||
KODI_CONF_OPTS += -DENABLE_DBUS=ON
|
KODI_CONF_OPTS += -DENABLE_DBUS=ON
|
||||||
|
Loading…
x
Reference in New Issue
Block a user