mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 17:09:10 -07:00
www-client/netsurf: fix build with GCC 10 (-fno-common)
Closes: https://bugs.gentoo.org/835379 Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
23
www-client/netsurf/files/netsurf-3.10-gcc10-fno-common.patch
Normal file
23
www-client/netsurf/files/netsurf-3.10-gcc10-fno-common.patch
Normal file
@@ -0,0 +1,23 @@
|
||||
Backport of upstream fix: https://git.netsurf-browser.org/netsurf.git/commit/?id=434f6c3fe7d1d2c6a3e6ae6338608a4a4421ab1b
|
||||
|
||||
https://bugs.netsurf-browser.org/mantis/view.php?id=2778
|
||||
https://bugs.gentoo.org/835379
|
||||
--- a/frontends/framebuffer/convert_font.c
|
||||
+++ b/frontends/framebuffer/convert_font.c
|
||||
@@ -290,14 +290,14 @@ bool generate_font_header(const char *path, struct font_data *data)
|
||||
|
||||
|
||||
for (s = 0; s < 4; s++) {
|
||||
- fprintf(fp, "const uint8_t *%s_section_table;\n",
|
||||
+ fprintf(fp, "extern const uint8_t *%s_section_table;\n",
|
||||
var_lables[s]);
|
||||
- fprintf(fp, "const uint16_t *%s_sections;\n",
|
||||
+ fprintf(fp, "extern const uint16_t *%s_sections;\n",
|
||||
var_lables[s]);
|
||||
|
||||
}
|
||||
|
||||
- fprintf(fp, "const uint8_t *font_glyph_data;\n");
|
||||
+ fprintf(fp, "extern const uint8_t *font_glyph_data;\n");
|
||||
|
||||
fprintf(fp, "\n\n");
|
||||
@@ -60,6 +60,7 @@ PATCHES=(
|
||||
"${FILESDIR}/${PN}-3.9-conditionally-include-image-headers.patch"
|
||||
"${FILESDIR}/${PN}-3.10-julia-libutf8proc-header-location.patch"
|
||||
"${FILESDIR}/${PN}-3.10-disable-failing-tests.patch"
|
||||
"${FILESDIR}/${PN}-3.10-gcc10-fno-common.patch"
|
||||
)
|
||||
|
||||
DOCS=( README docs/using-framebuffer.md
|
||||
|
||||
Reference in New Issue
Block a user