96a54b0907
See release announce: https://lists.gnu.org/archive/html/screen-users/2023-08/msg00000.html Fixes: CVE-2023-24626: https://www.cve.org/CVERecord?id=CVE-2023-24626 Note: Buildroot installs screen as setuid, so the described scenario in CVE applies. This commit also rebases all patches on this release. Patch were regenerated with 'git format-patch -N', so patch file name changed in this process. The file .checkpackageignore is also updated accordingly. Signed-off-by: Julien Olivain <ju.o@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
38 lines
1.5 KiB
Diff
38 lines
1.5 KiB
Diff
From 8d8899b3ffd26d5049f8a9ccf12ff9ac65c352b4 Mon Sep 17 00:00:00 2001
|
|
From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
|
Date: Wed, 3 Oct 2018 22:29:32 +0200
|
|
Subject: [PATCH] comm.h needed for list_{display,generic}.o
|
|
|
|
comm.h is needed to build list_display.o and list_generic.o otherwise
|
|
parallel builds will sometimes fail
|
|
|
|
Fixes:
|
|
- http://autobuild.buildroot.org/results/43105f14857dbe72d8878fc7b3db67f7bdca93cc
|
|
- http://autobuild.buildroot.org/results/47f4ecbec1355285633df287fc9c4e7cccde9378
|
|
|
|
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
|
[Upstream status: https://savannah.gnu.org/bugs/index.php?54776]
|
|
[Julien: rebase on top of 4.9.1]
|
|
Signed-off-by: Julien Olivain <ju.o@free.fr>
|
|
---
|
|
Makefile.in | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/Makefile.in b/Makefile.in
|
|
index 7082a3e..cd363b7 100644
|
|
--- a/Makefile.in
|
|
+++ b/Makefile.in
|
|
@@ -349,7 +349,7 @@ layout.o: layout.h viewport.h canvas.h layout.c config.h screen.h os.h osdef.h a
|
|
viewport.o: layout.h viewport.h canvas.h viewport.c config.h screen.h os.h osdef.h ansi.h acls.h \
|
|
comm.h layer.h term.h image.h display.h window.h extern.h \
|
|
braille.h
|
|
-list_generic.o: list_generic.h list_generic.c layer.h screen.h osdef.h
|
|
-list_display.o: list_generic.h list_display.c layer.h screen.h osdef.h
|
|
+list_generic.o: list_generic.h list_generic.c layer.h screen.h osdef.h comm.h
|
|
+list_display.o: list_generic.h list_display.c layer.h screen.h osdef.h comm.h
|
|
list_window.o: list_generic.h list_window.c window.h layer.h screen.h osdef.h comm.h
|
|
|
|
--
|
|
2.41.0
|
|
|