mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-29 13:46:49 +00:00
xbmc (gotham): update to xbmc-31f386c
Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
parent
da62083263
commit
d6fb6199c4
@ -21,7 +21,7 @@
|
|||||||
PKG_NAME="xbmc-theme-Confluence"
|
PKG_NAME="xbmc-theme-Confluence"
|
||||||
PKG_VERSION="12.2.0"
|
PKG_VERSION="12.2.0"
|
||||||
if [ "$XBMC" = "master" ]; then
|
if [ "$XBMC" = "master" ]; then
|
||||||
PKG_VERSION="9ac3e4c"
|
PKG_VERSION="31f386c"
|
||||||
elif [ "$XBMC" = "xbmc-aml" ]; then
|
elif [ "$XBMC" = "xbmc-aml" ]; then
|
||||||
PKG_VERSION="aml-frodo-d9119f2"
|
PKG_VERSION="aml-frodo-d9119f2"
|
||||||
fi
|
fi
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
PKG_NAME="xbmc"
|
PKG_NAME="xbmc"
|
||||||
PKG_VERSION="12.2.0"
|
PKG_VERSION="12.2.0"
|
||||||
if [ "$XBMC" = "master" ]; then
|
if [ "$XBMC" = "master" ]; then
|
||||||
PKG_VERSION="9ac3e4c"
|
PKG_VERSION="31f386c"
|
||||||
elif [ "$XBMC" = "xbmc-aml" ]; then
|
elif [ "$XBMC" = "xbmc-aml" ]; then
|
||||||
PKG_VERSION="aml-frodo-d9119f2"
|
PKG_VERSION="aml-frodo-d9119f2"
|
||||||
fi
|
fi
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,12 @@
|
|||||||
|
diff --git a/xbmc/windowing/WinEventsSDL.cpp b/xbmc/windowing/WinEventsSDL.cpp
|
||||||
|
index c266c1e..9bfd6ac 100644
|
||||||
|
--- a/xbmc/windowing/WinEventsSDL.cpp
|
||||||
|
+++ b/xbmc/windowing/WinEventsSDL.cpp
|
||||||
|
@@ -439,7 +439,6 @@ bool CWinEventsSDL::ProcessLinuxShortcuts(SDL_Event& event)
|
||||||
|
switch(event.key.keysym.sym)
|
||||||
|
{
|
||||||
|
case SDLK_TAB: // ALT+TAB to minimize/hide
|
||||||
|
- g_application.Minimize();
|
||||||
|
return true;
|
||||||
|
default:
|
||||||
|
break;
|
@ -1,12 +0,0 @@
|
|||||||
diff --git a/xbmc/windowing/WinEventsX11.cpp b/xbmc/windowing/WinEventsX11.cpp
|
|
||||||
index ed31c04..34fcfae 100644
|
|
||||||
--- a/xbmc/windowing/WinEventsX11.cpp
|
|
||||||
+++ b/xbmc/windowing/WinEventsX11.cpp
|
|
||||||
@@ -709,7 +709,6 @@ bool CWinEventsX11::ProcessShortcuts(XBMC_Event& event)
|
|
||||||
switch(event.key.keysym.sym)
|
|
||||||
{
|
|
||||||
case XBMCK_TAB: // ALT+TAB to minimize/hide
|
|
||||||
- g_application.Minimize();
|
|
||||||
return true;
|
|
||||||
|
|
||||||
default:
|
|
File diff suppressed because it is too large
Load Diff
@ -1,54 +0,0 @@
|
|||||||
diff -Naur xbmc-74fa128/xbmc/screensavers/rsxs-0.9/lib/stdio.h xbmc-74fa128.patch/xbmc/screensavers/rsxs-0.9/lib/stdio.h
|
|
||||||
diff -Naur xbmc-74fa128/xbmc/screensavers/rsxs-0.9/lib/stdio.in.h xbmc-74fa128.patch/xbmc/screensavers/rsxs-0.9/lib/stdio.in.h
|
|
||||||
--- xbmc-74fa128/xbmc/screensavers/rsxs-0.9/lib/stdio.in.h 2013-04-13 23:19:12.183315057 +0200
|
|
||||||
+++ xbmc-74fa128.patch/xbmc/screensavers/rsxs-0.9/lib/stdio.in.h 2013-04-13 23:42:24.552302369 +0200
|
|
||||||
@@ -699,26 +699,14 @@
|
|
||||||
# endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
-#if @GNULIB_GETS@
|
|
||||||
-# if @REPLACE_STDIO_READ_FUNCS@ && @GNULIB_STDIO_H_NONBLOCKING@
|
|
||||||
-# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
|
|
||||||
-# undef gets
|
|
||||||
-# define gets rpl_gets
|
|
||||||
-# endif
|
|
||||||
-_GL_FUNCDECL_RPL (gets, char *, (char *s) _GL_ARG_NONNULL ((1)));
|
|
||||||
-_GL_CXXALIAS_RPL (gets, char *, (char *s));
|
|
||||||
-# else
|
|
||||||
-_GL_CXXALIAS_SYS (gets, char *, (char *s));
|
|
||||||
-# undef gets
|
|
||||||
-# endif
|
|
||||||
-_GL_CXXALIASWARN (gets);
|
|
||||||
/* It is very rare that the developer ever has full control of stdin,
|
|
||||||
- so any use of gets warrants an unconditional warning. Assume it is
|
|
||||||
- always declared, since it is required by C89. */
|
|
||||||
+ so any use of gets warrants an unconditional warning; besides, C11
|
|
||||||
+ removed it. */
|
|
||||||
+#undef gets
|
|
||||||
+#if HAVE_RAW_DECL_GETS
|
|
||||||
_GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead");
|
|
||||||
#endif
|
|
||||||
|
|
||||||
-
|
|
||||||
#if @GNULIB_OBSTACK_PRINTF@ || @GNULIB_OBSTACK_PRINTF_POSIX@
|
|
||||||
struct obstack;
|
|
||||||
/* Grow an obstack with formatted output. Return the number of
|
|
||||||
diff -Naur xbmc-74fa128/xbmc/screensavers/rsxs-0.9/m4/stdio_h.m4 xbmc-74fa128.patch/xbmc/screensavers/rsxs-0.9/m4/stdio_h.m4
|
|
||||||
--- xbmc-74fa128/xbmc/screensavers/rsxs-0.9/m4/stdio_h.m4 2013-04-13 23:19:12.216314905 +0200
|
|
||||||
+++ xbmc-74fa128.patch/xbmc/screensavers/rsxs-0.9/m4/stdio_h.m4 2013-04-13 23:37:54.379416637 +0200
|
|
||||||
@@ -18,7 +18,6 @@
|
|
||||||
GNULIB_GETC=1
|
|
||||||
GNULIB_GETCHAR=1
|
|
||||||
GNULIB_FGETS=1
|
|
||||||
- GNULIB_GETS=1
|
|
||||||
GNULIB_FREAD=1
|
|
||||||
dnl This ifdef is necessary to avoid an error "missing file lib/stdio-read.c"
|
|
||||||
dnl "expected source file, required through AC_LIBSOURCES, not found". It is
|
|
||||||
@@ -113,7 +112,6 @@
|
|
||||||
GNULIB_GETCHAR=0; AC_SUBST([GNULIB_GETCHAR])
|
|
||||||
GNULIB_GETDELIM=0; AC_SUBST([GNULIB_GETDELIM])
|
|
||||||
GNULIB_GETLINE=0; AC_SUBST([GNULIB_GETLINE])
|
|
||||||
- GNULIB_GETS=0; AC_SUBST([GNULIB_GETS])
|
|
||||||
GNULIB_OBSTACK_PRINTF=0; AC_SUBST([GNULIB_OBSTACK_PRINTF])
|
|
||||||
GNULIB_OBSTACK_PRINTF_POSIX=0; AC_SUBST([GNULIB_OBSTACK_PRINTF_POSIX])
|
|
||||||
GNULIB_PCLOSE=0; AC_SUBST([GNULIB_PCLOSE])
|
|
Loading…
x
Reference in New Issue
Block a user