9f8647640b
Kodi 19 does not support rpbi as a specific core platform anymore and thus cannot be updated to use kodi 19 and its patches. It might be possible that kodi itelf work out of the box now using the gdm core platform using: ``` $ kodi --windowing=gbm ```
11 lines
492 B
Diff
11 lines
492 B
Diff
--- a/xbmc/cores/DllLoader/ldt_keeper.c 2019-01-30 20:08:15.532823846 +0100
|
|
+++ b/xbmc/cores/DllLoader/ldt_keeper.c 2019-01-30 20:08:34.139580225 +0100
|
|
@@ -49,7 +49,7 @@
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
-#if defined(TARGET_ANDROID) && defined(__i386__) && !defined(modify_ldt)
|
|
+#if defined(__linux__) && !defined(__GLIBC__) && !defined(modify_ldt)
|
|
#define modify_ldt(a,b,c) syscall( __NR_modify_ldt, a, b, c);
|
|
#else
|
|
int modify_ldt(int func, void *ptr, unsigned long bytecount);
|