Date: Sunday, December 18, 2016 @ 00:06:39 Author: arojas Revision: 284281
Add patch Added: dvdauthor/trunk/dvdauthor-fix-build.patch ---------------------------+ dvdauthor-fix-build.patch | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) Added: dvdauthor-fix-build.patch =================================================================== --- dvdauthor-fix-build.patch (rev 0) +++ dvdauthor-fix-build.patch 2016-12-18 00:06:39 UTC (rev 284281) @@ -0,0 +1,26 @@ +Description: Fix for #807657 -- missing include "config.h" +Author: Tobias Frost <[email protected]> +Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=807657 +Last-Update: 2016-01-07 +--- +This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ +--- a/src/compat.h ++++ b/src/compat.h +@@ -1,6 +1,8 @@ + // basic headers + #define _GNU_SOURCE /* really just for strndup */ + ++#include "config.h" ++ + #ifdef HAVE_STDBOOL_H + # include <stdbool.h> + #else +@@ -17,6 +19,7 @@ + # define __bool_true_false_are_defined 1 + #endif + ++ + #include <stdio.h> + + #ifdef HAVE_STDLIB_H +
