Please consider adding attached patch.

Salsa Merge Request:
  https://salsa.debian.org/tux4kids-pkg-team/t4kcommon/-/merge_requests/1

Regards,

-- 
Antoni Villalonga
https://friki.cat/
Description: fix ftbfs with GCC-10
 Fix wrapped_lines variable declaration (extern)
Author: ant...@friki.cat
Forwarded: https://github.com/tux4kids/t4kcommon/pull/8
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/src/t4k_common.h
+++ b/src/t4k_common.h
@@ -239,7 +239,7 @@ MFStrategy;
 #define MAX_LINES 128     //!< Maximum lines to wrap.
 #define MAX_LINEWIDTH 256 //!< Maximum characters of each line.
 
-char wrapped_lines[MAX_LINES][MAX_LINEWIDTH]; //!< Global buffer for wrapped lines.
+extern char wrapped_lines[MAX_LINES][MAX_LINEWIDTH]; //!< Global buffer for wrapped lines.
 
 //TODO separate headers for different areas a la SDL?
 

Reply via email to