* [Buildroot] [PATCH 1/2] package/fbv: renumber patches
@ 2022-05-26 22:17 Fabrice Fontaine
2022-05-26 22:17 ` [Buildroot] [PATCH 2/2] package/fbv: fix build with giflib and gcc >= 10 Fabrice Fontaine
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Fabrice Fontaine @ 2022-05-26 22:17 UTC (permalink / raw)
To: buildroot; +Cc: Fabrice Fontaine
Commit 9863553fe8fa16a4d19f652b409a44bb58ef5567 forgot to renumber
patches
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
package/fbv/{0002-cross.patch => 0001-cross.patch} | 0
...ig-endian.patch => 0002-fix-24bpp-support-on-big-endian.patch} | 0
package/fbv/{0004-fix-bgr555.patch => 0003-fix-bgr555.patch} | 0
package/fbv/{0005-giflib.patch => 0004-giflib.patch} | 0
package/fbv/{0006-include.patch => 0005-include.patch} | 0
package/fbv/{0007-libpng15.patch => 0006-libpng15.patch} | 0
6 files changed, 0 insertions(+), 0 deletions(-)
rename package/fbv/{0002-cross.patch => 0001-cross.patch} (100%)
rename package/fbv/{0003-fix-24bpp-support-on-big-endian.patch => 0002-fix-24bpp-support-on-big-endian.patch} (100%)
rename package/fbv/{0004-fix-bgr555.patch => 0003-fix-bgr555.patch} (100%)
rename package/fbv/{0005-giflib.patch => 0004-giflib.patch} (100%)
rename package/fbv/{0006-include.patch => 0005-include.patch} (100%)
rename package/fbv/{0007-libpng15.patch => 0006-libpng15.patch} (100%)
diff --git a/package/fbv/0002-cross.patch b/package/fbv/0001-cross.patch
similarity index 100%
rename from package/fbv/0002-cross.patch
rename to package/fbv/0001-cross.patch
diff --git a/package/fbv/0003-fix-24bpp-support-on-big-endian.patch b/package/fbv/0002-fix-24bpp-support-on-big-endian.patch
similarity index 100%
rename from package/fbv/0003-fix-24bpp-support-on-big-endian.patch
rename to package/fbv/0002-fix-24bpp-support-on-big-endian.patch
diff --git a/package/fbv/0004-fix-bgr555.patch b/package/fbv/0003-fix-bgr555.patch
similarity index 100%
rename from package/fbv/0004-fix-bgr555.patch
rename to package/fbv/0003-fix-bgr555.patch
diff --git a/package/fbv/0005-giflib.patch b/package/fbv/0004-giflib.patch
similarity index 100%
rename from package/fbv/0005-giflib.patch
rename to package/fbv/0004-giflib.patch
diff --git a/package/fbv/0006-include.patch b/package/fbv/0005-include.patch
similarity index 100%
rename from package/fbv/0006-include.patch
rename to package/fbv/0005-include.patch
diff --git a/package/fbv/0007-libpng15.patch b/package/fbv/0006-libpng15.patch
similarity index 100%
rename from package/fbv/0007-libpng15.patch
rename to package/fbv/0006-libpng15.patch
--
2.35.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 5+ messages in thread* [Buildroot] [PATCH 2/2] package/fbv: fix build with giflib and gcc >= 10 2022-05-26 22:17 [Buildroot] [PATCH 1/2] package/fbv: renumber patches Fabrice Fontaine @ 2022-05-26 22:17 ` Fabrice Fontaine 2022-06-06 12:27 ` Peter Korsgaard 2022-05-30 20:26 ` [Buildroot] [PATCH 1/2] package/fbv: renumber patches Thomas Petazzoni via buildroot 2022-06-06 12:27 ` Peter Korsgaard 2 siblings, 1 reply; 5+ messages in thread From: Fabrice Fontaine @ 2022-05-26 22:17 UTC (permalink / raw) To: buildroot; +Cc: Fabrice Fontaine Fix the following build failure with giflib and gcc >= 10: /nvmedata/autobuild/instance-30/output-1/per-package/fbv/host/bin/../lib/gcc/powerpc-buildroot-linux-uclibc/11.3.0/../../../../powerpc-buildroot-linux-uclibc/bin/ld: gif.o: in function `fh_gif_load': gif.c:(.text+0x338): undefined reference to `m_rend_gif_decodecolormap' Fixes: - http://autobuild.buildroot.org/results/dca603a61b1fd0558992b4a40152d23b5b9c0049 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> --- .../0007-gif.c-fic-build-with-gcc-10.patch | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 package/fbv/0007-gif.c-fic-build-with-gcc-10.patch diff --git a/package/fbv/0007-gif.c-fic-build-with-gcc-10.patch b/package/fbv/0007-gif.c-fic-build-with-gcc-10.patch new file mode 100644 index 0000000000..57d5777b61 --- /dev/null +++ b/package/fbv/0007-gif.c-fic-build-with-gcc-10.patch @@ -0,0 +1,36 @@ +From 8877207b290da1c3bc100f2705c30e6bdafcd985 Mon Sep 17 00:00:00 2001 +From: Fabrice Fontaine <fontaine.fabrice@gmail.com> +Date: Thu, 26 May 2022 23:59:46 +0200 +Subject: [PATCH] gif.c: fic build with gcc >= 10 + +Fix the following build failure with gcc >= 10:: + +/nvmedata/autobuild/instance-30/output-1/per-package/fbv/host/bin/../lib/gcc/powerpc-buildroot-linux-uclibc/11.3.0/../../../../powerpc-buildroot-linux-uclibc/bin/ld: gif.o: in function `fh_gif_load': +gif.c:(.text+0x338): undefined reference to `m_rend_gif_decodecolormap' + +Fixes: + - http://autobuild.buildroot.org/results/dca603a61b1fd0558992b4a40152d23b5b9c0049 + +Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> +[Upstream status: not upstreamable (most active fork dropped gif +support: https://github.com/godspeed1989/fbv/pull/17)] +--- + gif.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/gif.c b/gif.c +index 689e549..5560f25 100644 +--- a/gif.c ++++ b/gif.c +@@ -48,7 +48,7 @@ int fh_gif_id(char *name) + return(0); + } + +-inline void m_rend_gif_decodecolormap(unsigned char *cmb,unsigned char *rgbb,ColorMapObject *cm,int s,int l, int transparency) ++static inline void m_rend_gif_decodecolormap(unsigned char *cmb,unsigned char *rgbb,ColorMapObject *cm,int s,int l, int transparency) + { + GifColorType *cmentry; + int i; +-- +2.35.1 + -- 2.35.1 _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot ^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [Buildroot] [PATCH 2/2] package/fbv: fix build with giflib and gcc >= 10 2022-05-26 22:17 ` [Buildroot] [PATCH 2/2] package/fbv: fix build with giflib and gcc >= 10 Fabrice Fontaine @ 2022-06-06 12:27 ` Peter Korsgaard 0 siblings, 0 replies; 5+ messages in thread From: Peter Korsgaard @ 2022-06-06 12:27 UTC (permalink / raw) To: Fabrice Fontaine; +Cc: buildroot >>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes: > Fix the following build failure with giflib and gcc >= 10: > /nvmedata/autobuild/instance-30/output-1/per-package/fbv/host/bin/../lib/gcc/powerpc-buildroot-linux-uclibc/11.3.0/../../../../powerpc-buildroot-linux-uclibc/bin/ld: > gif.o: in function `fh_gif_load': > gif.c:(.text+0x338): undefined reference to `m_rend_gif_decodecolormap' > Fixes: > - http://autobuild.buildroot.org/results/dca603a61b1fd0558992b4a40152d23b5b9c0049 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Committed to 2022.02.x, thanks. -- Bye, Peter Korsgaard _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Buildroot] [PATCH 1/2] package/fbv: renumber patches 2022-05-26 22:17 [Buildroot] [PATCH 1/2] package/fbv: renumber patches Fabrice Fontaine 2022-05-26 22:17 ` [Buildroot] [PATCH 2/2] package/fbv: fix build with giflib and gcc >= 10 Fabrice Fontaine @ 2022-05-30 20:26 ` Thomas Petazzoni via buildroot 2022-06-06 12:27 ` Peter Korsgaard 2 siblings, 0 replies; 5+ messages in thread From: Thomas Petazzoni via buildroot @ 2022-05-30 20:26 UTC (permalink / raw) To: Fabrice Fontaine; +Cc: buildroot On Fri, 27 May 2022 00:17:10 +0200 Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote: > Commit 9863553fe8fa16a4d19f652b409a44bb58ef5567 forgot to renumber > patches > > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> > --- > package/fbv/{0002-cross.patch => 0001-cross.patch} | 0 > ...ig-endian.patch => 0002-fix-24bpp-support-on-big-endian.patch} | 0 > package/fbv/{0004-fix-bgr555.patch => 0003-fix-bgr555.patch} | 0 > package/fbv/{0005-giflib.patch => 0004-giflib.patch} | 0 > package/fbv/{0006-include.patch => 0005-include.patch} | 0 > package/fbv/{0007-libpng15.patch => 0006-libpng15.patch} | 0 > 6 files changed, 0 insertions(+), 0 deletions(-) > rename package/fbv/{0002-cross.patch => 0001-cross.patch} (100%) > rename package/fbv/{0003-fix-24bpp-support-on-big-endian.patch => 0002-fix-24bpp-support-on-big-endian.patch} (100%) > rename package/fbv/{0004-fix-bgr555.patch => 0003-fix-bgr555.patch} (100%) > rename package/fbv/{0005-giflib.patch => 0004-giflib.patch} (100%) > rename package/fbv/{0006-include.patch => 0005-include.patch} (100%) > rename package/fbv/{0007-libpng15.patch => 0006-libpng15.patch} (100%) Both applied to master, thanks. I don't know if we should really continue to support such old unmaintained packages, though :-/ Thomas -- Thomas Petazzoni, CTO, Bootlin Embedded Linux and Kernel engineering https://bootlin.com _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Buildroot] [PATCH 1/2] package/fbv: renumber patches 2022-05-26 22:17 [Buildroot] [PATCH 1/2] package/fbv: renumber patches Fabrice Fontaine 2022-05-26 22:17 ` [Buildroot] [PATCH 2/2] package/fbv: fix build with giflib and gcc >= 10 Fabrice Fontaine 2022-05-30 20:26 ` [Buildroot] [PATCH 1/2] package/fbv: renumber patches Thomas Petazzoni via buildroot @ 2022-06-06 12:27 ` Peter Korsgaard 2 siblings, 0 replies; 5+ messages in thread From: Peter Korsgaard @ 2022-06-06 12:27 UTC (permalink / raw) To: Fabrice Fontaine; +Cc: buildroot >>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes: > Commit 9863553fe8fa16a4d19f652b409a44bb58ef5567 forgot to renumber > patches > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Committed to 2022.02.x, thanks. -- Bye, Peter Korsgaard _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2022-06-06 12:27 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-05-26 22:17 [Buildroot] [PATCH 1/2] package/fbv: renumber patches Fabrice Fontaine 2022-05-26 22:17 ` [Buildroot] [PATCH 2/2] package/fbv: fix build with giflib and gcc >= 10 Fabrice Fontaine 2022-06-06 12:27 ` Peter Korsgaard 2022-05-30 20:26 ` [Buildroot] [PATCH 1/2] package/fbv: renumber patches Thomas Petazzoni via buildroot 2022-06-06 12:27 ` Peter Korsgaard
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox