All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/netsurf: renumber patches
@ 2020-12-01 22:12 Fabrice Fontaine
  2020-12-01 22:13 ` [Buildroot] [PATCH 2/2] package/netsurf: fix build with gcc 10 Fabrice Fontaine
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Fabrice Fontaine @ 2020-12-01 22:12 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 ...-nsgenbind.patch => 0002-do-not-cross-compile-nsgenbind.patch} | 0
 ...without-curl.patch => 0003-fix-compilation-without-curl.patch} | 0
 2 files changed, 0 insertions(+), 0 deletions(-)
 rename package/netsurf/{0003-do-not-cross-compile-nsgenbind.patch => 0002-do-not-cross-compile-nsgenbind.patch} (100%)
 rename package/netsurf/{0004-fix-compilation-without-curl.patch => 0003-fix-compilation-without-curl.patch} (100%)

diff --git a/package/netsurf/0003-do-not-cross-compile-nsgenbind.patch b/package/netsurf/0002-do-not-cross-compile-nsgenbind.patch
similarity index 100%
rename from package/netsurf/0003-do-not-cross-compile-nsgenbind.patch
rename to package/netsurf/0002-do-not-cross-compile-nsgenbind.patch
diff --git a/package/netsurf/0004-fix-compilation-without-curl.patch b/package/netsurf/0003-fix-compilation-without-curl.patch
similarity index 100%
rename from package/netsurf/0004-fix-compilation-without-curl.patch
rename to package/netsurf/0003-fix-compilation-without-curl.patch
-- 
2.29.2

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Buildroot] [PATCH 2/2] package/netsurf: fix build with gcc 10
  2020-12-01 22:12 [Buildroot] [PATCH 1/2] package/netsurf: renumber patches Fabrice Fontaine
@ 2020-12-01 22:13 ` Fabrice Fontaine
  2020-12-01 22:32   ` Peter Korsgaard
  2020-12-12  9:55   ` Peter Korsgaard
  2020-12-01 22:32 ` [Buildroot] [PATCH 1/2] package/netsurf: renumber patches Peter Korsgaard
  2020-12-12  9:55 ` Peter Korsgaard
  2 siblings, 2 replies; 6+ messages in thread
From: Fabrice Fontaine @ 2020-12-01 22:13 UTC (permalink / raw)
  To: buildroot

Fixes:
 - http://autobuild.buildroot.org/results/e81568c2b4f5ef5d055c9b94e624ba2d23f50d16

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 ...nal-font-generated-source-for-GCC-10.patch | 37 +++++++++++++++++++
 1 file changed, 37 insertions(+)
 create mode 100644 package/netsurf/0004-framebuffer-Fix-internal-font-generated-source-for-GCC-10.patch

diff --git a/package/netsurf/0004-framebuffer-Fix-internal-font-generated-source-for-GCC-10.patch b/package/netsurf/0004-framebuffer-Fix-internal-font-generated-source-for-GCC-10.patch
new file mode 100644
index 0000000000..da512645a5
--- /dev/null
+++ b/package/netsurf/0004-framebuffer-Fix-internal-font-generated-source-for-GCC-10.patch
@@ -0,0 +1,37 @@
+From 434f6c3fe7d1d2c6a3e6ae6338608a4a4421ab1b Mon Sep 17 00:00:00 2001
+From: Michael Drake <michael.drake@codethink.co.uk>
+Date: Fri, 13 Nov 2020 11:12:58 +0000
+Subject: framebuffer: Fix internal font generated source for GCC 10.
+
+[Retrieved (and backported) from:
+https://git.netsurf-browser.org/netsurf.git/commit/?id=434f6c3fe7d1d2c6a3e6ae6338608a4a4421ab1b]
+Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
+---
+ tools/convert_font.c | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/netsurf/frontends/framebuffer/convert_font.c b/netsurf/frontends/framebuffer/convert_font.c
+index 9f5734b71..d22c85920 100644
+--- a/netsurf/frontends/framebuffer/convert_font.c
++++ b/netsurf/frontends/framebuffer/convert_font.c
+@@ -290,14 +290,14 @@ static 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");
+ 
+-- 
+cgit v1.2.1
+
-- 
2.29.2

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [Buildroot] [PATCH 1/2] package/netsurf: renumber patches
  2020-12-01 22:12 [Buildroot] [PATCH 1/2] package/netsurf: renumber patches Fabrice Fontaine
  2020-12-01 22:13 ` [Buildroot] [PATCH 2/2] package/netsurf: fix build with gcc 10 Fabrice Fontaine
@ 2020-12-01 22:32 ` Peter Korsgaard
  2020-12-12  9:55 ` Peter Korsgaard
  2 siblings, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2020-12-01 22:32 UTC (permalink / raw)
  To: buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Buildroot] [PATCH 2/2] package/netsurf: fix build with gcc 10
  2020-12-01 22:13 ` [Buildroot] [PATCH 2/2] package/netsurf: fix build with gcc 10 Fabrice Fontaine
@ 2020-12-01 22:32   ` Peter Korsgaard
  2020-12-12  9:55   ` Peter Korsgaard
  1 sibling, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2020-12-01 22:32 UTC (permalink / raw)
  To: buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > Fixes:
 >  - http://autobuild.buildroot.org/results/e81568c2b4f5ef5d055c9b94e624ba2d23f50d16

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Buildroot] [PATCH 1/2] package/netsurf: renumber patches
  2020-12-01 22:12 [Buildroot] [PATCH 1/2] package/netsurf: renumber patches Fabrice Fontaine
  2020-12-01 22:13 ` [Buildroot] [PATCH 2/2] package/netsurf: fix build with gcc 10 Fabrice Fontaine
  2020-12-01 22:32 ` [Buildroot] [PATCH 1/2] package/netsurf: renumber patches Peter Korsgaard
@ 2020-12-12  9:55 ` Peter Korsgaard
  2 siblings, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2020-12-12  9:55 UTC (permalink / raw)
  To: buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed to 2020.08.x, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Buildroot] [PATCH 2/2] package/netsurf: fix build with gcc 10
  2020-12-01 22:13 ` [Buildroot] [PATCH 2/2] package/netsurf: fix build with gcc 10 Fabrice Fontaine
  2020-12-01 22:32   ` Peter Korsgaard
@ 2020-12-12  9:55   ` Peter Korsgaard
  1 sibling, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2020-12-12  9:55 UTC (permalink / raw)
  To: buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > Fixes:
 >  - http://autobuild.buildroot.org/results/e81568c2b4f5ef5d055c9b94e624ba2d23f50d16

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed to 2020.08.x, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2020-12-12  9:55 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-01 22:12 [Buildroot] [PATCH 1/2] package/netsurf: renumber patches Fabrice Fontaine
2020-12-01 22:13 ` [Buildroot] [PATCH 2/2] package/netsurf: fix build with gcc 10 Fabrice Fontaine
2020-12-01 22:32   ` Peter Korsgaard
2020-12-12  9:55   ` Peter Korsgaard
2020-12-01 22:32 ` [Buildroot] [PATCH 1/2] package/netsurf: renumber patches Peter Korsgaard
2020-12-12  9:55 ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.