package/kodi: add optional support for pulseaudio
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
a29a0c9619
commit
ff45194b3c
@ -192,6 +192,17 @@ config BR2_PACKAGE_KODI_NONFREE
|
||||
Enable components with non-free licenses. This option
|
||||
currently only controls support for RAR archives.
|
||||
|
||||
config BR2_PACKAGE_KODI_PULSEAUDIO
|
||||
bool "pulseaudio"
|
||||
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # pulseaudio -> json-c
|
||||
# Pulseaudio support in kodi needs glib support in Pulseaudio,
|
||||
# see FindPulseAudio.cmake. Kodi meets all dependencies of
|
||||
# libglib2, so there is no need to propagate them here.
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
select BR2_PACKAGE_PULSEAUDIO
|
||||
help
|
||||
Enable Pulseaudio support.
|
||||
|
||||
config BR2_PACKAGE_KODI_LIBSHAIRPLAY
|
||||
bool "shairport"
|
||||
select BR2_PACKAGE_LIBSHAIRPLAY
|
||||
|
@ -333,6 +333,13 @@ else
|
||||
KODI_CONF_OPTS += -DENABLE_OPTICAL=OFF
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_KODI_PULSEAUDIO),y)
|
||||
KODI_CONF_OPTS += -DENABLE_PULSEAUDIO=ON
|
||||
KODI_DEPENDENCIES += pulseaudio
|
||||
else
|
||||
KODI_CONF_OPTS += -DENABLE_PULSEAUDIO=OFF
|
||||
endif
|
||||
|
||||
# Remove versioncheck addon, updating Kodi is done by building a new
|
||||
# buildroot image.
|
||||
KODI_ADDON_MANIFEST = $(TARGET_DIR)/usr/share/kodi/system/addon-manifest.xml
|
||||
|
Loading…
Reference in New Issue
Block a user