[SCM] vdr-plugin-vnsiserver/master: Fixing FTBFS with GCC 6 (Closes: #811949)

tiber-guest at users.alioth.debian.org tiber-guest at users.alioth.debian.org
Sat Jan 23 20:59:17 UTC 2016


The following commit has been merged in the master branch:
commit 0eb23e55e2167b37639a3c3731c962032b959caf
Author: Tobias Grimm <etobi at debian.org>
Date:   Sat Jan 23 21:53:57 2016 +0100

    Fixing FTBFS with GCC 6 (Closes: #811949)

diff --git a/debian/patches/gcc6-fixes.patch b/debian/patches/gcc6-fixes.patch
new file mode 100644
index 0000000..fdbfac3
--- /dev/null
+++ b/debian/patches/gcc6-fixes.patch
@@ -0,0 +1,33 @@
+Description: GCC 6 related fixes
+Author: Tobias Grimm <etobi at debian.org>
+Bug: https://github.com/FernetMenta/vdr-plugin-vnsiserver/pull/38
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+--- a/config.h
++++ b/config.h
+@@ -34,19 +34,19 @@
+ // log output configuration
+ 
+ #ifdef CONSOLEDEBUG
+-#define DEBUGLOG(x...) printf("VNSI: "x)
++#define DEBUGLOG(x...) printf("VNSI: " x)
+ #elif defined  DEBUG
+-#define DEBUGLOG(x...) dsyslog("VNSI: "x)
++#define DEBUGLOG(x...) dsyslog("VNSI: " x)
+ #else
+ #define DEBUGLOG(x...)
+ #endif
+ 
+ #ifdef CONSOLEDEBUG
+-#define INFOLOG(x...) printf("VNSI: "x)
+-#define ERRORLOG(x...) printf("VNSI-Error: "x)
++#define INFOLOG(x...) printf("VNSI: " x )
++#define ERRORLOG(x...) printf("VNSI-Error: " x)
+ #else
+-#define INFOLOG(x...) isyslog("VNSI: "x)
+-#define ERRORLOG(x...) esyslog("VNSI-Error: "x)
++#define INFOLOG(x...) isyslog("VNSI: " x)
++#define ERRORLOG(x...) esyslog("VNSI-Error: " x)
+ #endif
+ 
+ // default settings
diff --git a/debian/patches/series b/debian/patches/series
index ede8cc7..65d26e6 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1 +1,2 @@
 fix-RAM-timeshift-stream-corruption.patch
+gcc6-fixes.patch

-- 
vdr-plugin-vnsiserver packaging



More information about the pkg-multimedia-commits mailing list