package/kodi: add optional support for lcms2
Support was added by https://github.com/xbmc/xbmc/pull/11846 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
8ac0b448b9
commit
802d2527b1
@ -151,6 +151,12 @@ config BR2_PACKAGE_KODI_LIBCEC
|
||||
comment "hdmi cec support needs udev /dev management"
|
||||
depends on !BR2_PACKAGE_HAS_UDEV
|
||||
|
||||
config BR2_PACKAGE_KODI_LCMS2
|
||||
bool "lcms2"
|
||||
select BR2_PACKAGE_LCMS2
|
||||
help
|
||||
Enable color management support.
|
||||
|
||||
config BR2_PACKAGE_KODI_LIRC
|
||||
bool "lirc"
|
||||
help
|
||||
|
@ -289,6 +289,13 @@ else
|
||||
KODI_CONF_OPTS += -DENABLE_CEC=OFF
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_KODI_LCMS2),y)
|
||||
KODI_DEPENDENCIES += lcms2
|
||||
KODI_CONF_OPTS += -DENABLE_LCMS2=ON
|
||||
else
|
||||
KODI_CONF_OPTS += -DENABLE_LCMS2=OFF
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_KODI_LIRC),y)
|
||||
KODI_CONF_OPTS += -DENABLE_LIRC=ON
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user