kodi: set ADDONS_CONFIGURE_AT_STARTUP=OFF instead of patching kodi

Signed-off-by: Matthias Reichl <hias@horus.com>
This commit is contained in:
Matthias Reichl 2022-07-03 10:05:22 +02:00
parent 96dfa0adb8
commit a634566a79
2 changed files with 1 additions and 22 deletions

View File

@ -233,6 +233,7 @@ configure_package() {
-DENABLE_TESTING=OFF \
-DENABLE_INTERNAL_FLATBUFFERS=OFF \
-DENABLE_LCMS2=OFF \
-DADDONS_CONFIGURE_AT_STARTUP=OFF \
${PKG_KODI_USE_LTO} \
${KODI_ARCH} \
${KODI_NEON} \

View File

@ -1,22 +0,0 @@
Date: Tue, 25 May 2021 19:32:28 +0200
Subject: [PATCH] Remove "disable addon dialog at startup" for LibreELEC.
The feature is not only not needed for LE but as well does enable the DVB
driver addons.
See https://github.com/LibreELEC/LibreELEC.tv/issues/5397 and
https://github.com/xbmc/xbmc/pull/19091
---
xbmc/platform/linux/PlatformLinux.h | 1 -
1 file changed, 1 deletion(-)
--- a/xbmc/platform/linux/PlatformLinux.h
+++ b/xbmc/platform/linux/PlatformLinux.h
@@ -23,7 +23,6 @@ public:
bool InitStageOne() override;
void DeinitStageOne() override;
- bool IsConfigureAddonsAtStartupEnabled() override { return true; }
private:
std::unique_ptr<OPTIONALS::CLircContainer, OPTIONALS::delete_CLircContainer> m_lirc;