1 From 6abc52190accc8d8b17455420e234a1d7dc7ba55 Mon Sep 17 00:00:00 2001
2 From: Peter Korsgaard <peter@korsgaard.com>
3 Date: Mon, 16 Nov 2015 23:15:27 +0100
4 Subject: [PATCH] ushare: fix building with gcc 5.x
6 GCC5 defaults to -std=gnu11, which has different semantics for inline than
9 https://gcc.gnu.org/gcc-5/porting_to.html
11 Which causes linker issues when display_headers() and start_log() are
12 referenced from other files. There's no real reason why these needs to be
13 inline, so just drop the keyword.
15 Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
19 2 files changed, 2 insertions(+), 2 deletions(-)
21 diff --git a/src/trace.c b/src/trace.c
22 index 50729ef..4e314ef 100644
25 @@ -57,7 +57,7 @@ print_log (log_level level, const char *format, ...)
33 openlog (PACKAGE_NAME, LOG_PID, LOG_DAEMON);
34 diff --git a/src/ushare.c b/src/ushare.c
35 index b64451e..af46e78 100644
38 @@ -496,7 +496,7 @@ reload_config (int s __attribute__ ((unused)))
44 display_headers (void)
46 printf (_("%s (version %s), a lightweight UPnP A/V and DLNA Media Server.\n"),