Skip to content
Snippets Groups Projects
Unverified Commit 4b4f65a4 authored by digitalLumberjack's avatar digitalLumberjack
Browse files

chore(moonlight): bump to latest revision

- fixes #1628
parent 417a91e4
No related tags found
Loading
......@@ -13,6 +13,7 @@ All notable changes to this project will be documented in this file.
- Fix crash when loading heavy themes
- Fix missing popup when changing hostname
- Fix IPv6/IPv4 priority when connecting WIFI
- Bump moonlight to latest commit (#1628)
## [7.2-Reloaded]
......
......@@ -13,6 +13,7 @@
- Fix crash when loading heavy themes
- Fix missing popup when changing hostname
- Fix IPv6/IPv4 priority when connecting WIFI
- Fix Moonlight bumping to last revision
## 7.2-Reloaded
......
From 5b6639c8a76c4bbb5e0b4bcfe41b8df136608885 Mon Sep 17 00:00:00 2001
From: Romain Tisserand <romain.tisserand@gmail.com>
Date: Sat, 11 Jul 2020 21:29:09 +0200
Subject: [PATCH] Fix gcc-10 compilation (fno-common flag enabled by default)
---
src/config.h | 2 +-
src/sdl.h | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/config.h b/src/config.h
index 72c22f3f..c56c1dbe 100644
--- a/src/config.h
+++ b/src/config.h
@@ -48,7 +48,7 @@ typedef struct _CONFIGURATION {
enum codecs codec;
} CONFIGURATION, *PCONFIGURATION;
-bool inputAdded;
+extern bool inputAdded;
bool config_file_parse(char* filename, PCONFIGURATION config);
void config_parse(int argc, char* argv[], PCONFIGURATION config);
diff --git a/src/sdl.h b/src/sdl.h
index c26322ec..65345ba5 100644
--- a/src/sdl.h
+++ b/src/sdl.h
@@ -36,7 +36,7 @@
void sdl_init(int width, int height, bool fullscreen);
void sdl_loop();
-SDL_mutex *mutex;
-int sdlCurrentFrame, sdlNextFrame;
+extern SDL_mutex *mutex;
+extern int sdlCurrentFrame, sdlNextFrame;
#endif /* HAVE_SDL */
......@@ -4,8 +4,9 @@
#
################################################################################
MOONLIGHT_EMBEDDED_VERSION = v2.4.11
MOONLIGHT_EMBEDDED_VERSION = 7c8795febc9fad98084aa10fc5918985cbd8081e
MOONLIGHT_EMBEDDED_SITE = git://github.com/irtimmer/moonlight-embedded.git
MOONLIGHT_EMBEDDED_SITE_METHOD = git
MOONLIGHT_EMBEDDED_GIT_SUBMODULES=y
MOONLIGHT_EMBEDDED_DEPENDENCIES = opus expat libevdev avahi alsa-lib udev libcurl libcec ffmpeg sdl2 libenet
MOONLIGHT_EMBEDDED_LICENSE = GPL-1.0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment