Skip to content

Commit

Permalink
package/kodi: add optional support for lcms2
Browse files Browse the repository at this point in the history
Colormanager support for was added with
xbmc/xbmc#9731
  • Loading branch information
bkuhls committed Jul 25, 2016
1 parent d5ffb5c commit 858db61
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
6 changes: 6 additions & 0 deletions package/kodi/Config.in
Expand Up @@ -134,6 +134,12 @@ config BR2_PACKAGE_KODI_DBUS
help
Enable D-Bus support

config BR2_PACKAGE_KODI_LCMS2
bool "lcms2"
select BR2_PACKAGE_LCMS2
help
Enable lcms2 support

config BR2_PACKAGE_KODI_LIBBLURAY
bool "blu-ray"
select BR2_PACKAGE_LIBBLURAY
Expand Down
7 changes: 7 additions & 0 deletions package/kodi/kodi.mk
Expand Up @@ -187,6 +187,13 @@ else
KODI_CONF_OPTS += --disable-nfs
endif

ifeq ($(BR2_PACKAGE_KODI_LCMS2),y)
KODI_DEPENDENCIES += lcms2
KODI_CONF_OPTS += --enable-lcms2
else
KODI_CONF_OPTS += --disable-lcms2
endif

ifeq ($(BR2_PACKAGE_KODI_LIBBLURAY),y)
KODI_DEPENDENCIES += libbluray
KODI_CONF_OPTS += --enable-libbluray
Expand Down

0 comments on commit 858db61

Please sign in to comment.