Dear maintainer,

Please consider the attached debdiff to fix the FTBFS on a gcc-7 rebuild.

The fix is the same used for pinfo in bug #853613, that is, remove the
"inline" word from the function.

thanks
diff -u bogl-0.1.18/debian/changelog bogl-0.1.18/debian/changelog
--- bogl-0.1.18/debian/changelog
+++ bogl-0.1.18/debian/changelog
@@ -1,3 +1,10 @@
+bogl (0.1.18-12) UNRELEASED; urgency=medium
+
+  * reduce-font.c: Get rid of inlined function, which breaks buildling
+    with gcc7 (Closes: #853335).
+
+ -- Tiago Stürmer Daitx <tiago.da...@ubuntu.com>  Thu, 05 Oct 2017 19:39:45 +0000
+
 bogl (0.1.18-11) unstable; urgency=medium
 
   * compat: Bump to 9.
diff -u bogl-0.1.18/reduce-font.c bogl-0.1.18/reduce-font.c
--- bogl-0.1.18/reduce-font.c
+++ bogl-0.1.18/reduce-font.c
@@ -17,7 +17,7 @@
     printf ("usage: reduce-font <font> < text\n");
 }
 
-inline size_t
+size_t
 bits (u_int32_t x)
 {
     size_t r;

Reply via email to