mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-27 13:16:35 +00:00
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"
|
comment "hdmi cec support needs udev /dev management"
|
||||||
depends on !BR2_PACKAGE_HAS_UDEV
|
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
|
config BR2_PACKAGE_KODI_LIRC
|
||||||
bool "lirc"
|
bool "lirc"
|
||||||
help
|
help
|
||||||
|
@ -289,6 +289,13 @@ else
|
|||||||
KODI_CONF_OPTS += -DENABLE_CEC=OFF
|
KODI_CONF_OPTS += -DENABLE_CEC=OFF
|
||||||
endif
|
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)
|
ifeq ($(BR2_PACKAGE_KODI_LIRC),y)
|
||||||
KODI_CONF_OPTS += -DENABLE_LIRC=ON
|
KODI_CONF_OPTS += -DENABLE_LIRC=ON
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user