4146e12c1b
Reworked raspberry pi handling, it is not treated as separate platform anymore. Added dependencies to autoreconf cpluff. The autoreconf is normally called from CMake, but it's better if we do it under our control. Rebased patch - 0001-kodi-config.cmake-use-CMAKE_FIND_ROOT_PATH-to-fix-cr.patch Removed unneeded patch - 0002-CMake-Remove-dependency-on-gmp-and-libintl-from-Find.patch Removed backported patches - 0003-cmake-iconv-is-a-required-dependency.patch - 0004-Fix-ffmpeg-build-for-mips.patch - kodi-texturepacker/0002-fix_reallocarray.patch Added backported patches - 0003-Add-missing-cassert-includes.patch - 0004-Backport-Add-missing-cstddef-includes.patch Updated dependencies - bzip2 is not used anymore - flatbuffers (upstream PR 14209) - fmt (upstream PR 11039) - fstrcmp (upstream PR 14221) - yajl was replaced by RapidJSON (upstream PR 8008) - internal rar support was removed (upstream PR 11912) CMake option ENABLE_NONFREE was also removed - internal sftp support was removed (upstream PR 12005) - host-zip was removed (upstream PR 12643) - CMake option ENABLE_OPENSSL was removed (upstream PR 13650) - lirc support is now provided by lirc-tools (upstream PR 13761) - IMX support was removed (upstream PR 12990) - ENABLE_X11 was renamed to -DCORE_PLATFORM_NAME=x11 (upstream PR 12134) License hash changes because it was converted to markdown. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
45 lines
1.4 KiB
Diff
45 lines
1.4 KiB
Diff
From d1b2a27d2d2795fe82c103b49faef74b55df22c7 Mon Sep 17 00:00:00 2001
|
|
From: Bernd Kuhls <bernd.kuhls@t-online.de>
|
|
Date: Sat, 18 Jan 2020 14:49:16 +0100
|
|
Subject: [PATCH] [Backport] Add missing cstddef includes
|
|
|
|
Backport of https://github.com/xbmc/xbmc/pull/17214
|
|
|
|
Patch sent upstream: https://github.com/xbmc/xbmc/pull/17215
|
|
|
|
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
|
|
---
|
|
.../rendering/VideoRenderers/RPRendererGuiTexture.cpp | 2 ++
|
|
xbmc/pictures/SlideShowPicture.cpp | 2 ++
|
|
2 files changed, 4 insertions(+)
|
|
|
|
diff --git a/xbmc/cores/RetroPlayer/rendering/VideoRenderers/RPRendererGuiTexture.cpp b/xbmc/cores/RetroPlayer/rendering/VideoRenderers/RPRendererGuiTexture.cpp
|
|
index 5485358cad..ad2bf1b984 100644
|
|
--- a/xbmc/cores/RetroPlayer/rendering/VideoRenderers/RPRendererGuiTexture.cpp
|
|
+++ b/xbmc/cores/RetroPlayer/rendering/VideoRenderers/RPRendererGuiTexture.cpp
|
|
@@ -17,6 +17,8 @@
|
|
using namespace DirectX;
|
|
#endif
|
|
|
|
+#include <cstddef>
|
|
+
|
|
using namespace KODI;
|
|
using namespace RETRO;
|
|
|
|
diff --git a/xbmc/pictures/SlideShowPicture.cpp b/xbmc/pictures/SlideShowPicture.cpp
|
|
index 05848191d2..08fc754471 100644
|
|
--- a/xbmc/pictures/SlideShowPicture.cpp
|
|
+++ b/xbmc/pictures/SlideShowPicture.cpp
|
|
@@ -32,6 +32,8 @@ using namespace DirectX;
|
|
using namespace Microsoft::WRL;
|
|
#endif
|
|
|
|
+#include <cstddef>
|
|
+
|
|
#define IMMEDIATE_TRANSITION_TIME 20
|
|
|
|
#define PICTURE_MOVE_AMOUNT 0.02f
|
|
--
|
|
2.20.1
|
|
|