package/kodi: fix libudfread dependency
Buildrootc619346111
commit added a broken dependency to libudfread. In fact libudfread is still an optional dependency, just the configure options changes due to upstream commit5f9b9cfa26
Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
This commit is contained in:
parent
5cfda60060
commit
76e473154d
@ -166,7 +166,6 @@ config BR2_PACKAGE_KODI_EVENTCLIENTS
|
||||
config BR2_PACKAGE_KODI_LIBBLURAY
|
||||
bool "blu-ray"
|
||||
select BR2_PACKAGE_LIBBLURAY
|
||||
select BR2_PACKAGE_LIBUDFREAD
|
||||
help
|
||||
Enable Blu-ray input support.
|
||||
Select this if you want to play back Blu-ray content.
|
||||
|
@ -45,7 +45,6 @@ KODI_DEPENDENCIES = \
|
||||
libfribidi \
|
||||
libplist \
|
||||
libpng \
|
||||
libudfread \
|
||||
lzo \
|
||||
openssl \
|
||||
pcre \
|
||||
@ -388,6 +387,13 @@ else
|
||||
KODI_CONF_OPTS += -DENABLE_PULSEAUDIO=OFF
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBUDFREAD),y)
|
||||
KODI_CONF_OPTS += -DENABLE_UDFREAD=ON
|
||||
KODI_DEPENDENCIES += libudfread
|
||||
else
|
||||
KODI_CONF_OPTS += -DENABLE_UDFREAD=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