diff options
author | Cy Schubert <cy@FreeBSD.org> | 2022-03-17 10:54:50 -0700 |
---|---|---|
committer | Cy Schubert <cy@FreeBSD.org> | 2022-03-17 16:44:10 -0700 |
commit | 9bdc788616889d0a2b3f9c8b8996610cdfe82be7 (patch) | |
tree | af3bd8afeca7a61f2d03a81f5f1baa1f5aa9019f /sysutils/screen/files/patch-Makefile.in | |
parent | www/gitea: Update to 1.16.4 (diff) |
sysutils/screen: Update to 4.9.0
Update screen to 4.9.0. From the release announcement:
New in this release:
* Hardstatus option for used encoding (escape string '%e')
* Fixes:
- fix combining char handling that could lead to a segfault
- CVE-2021-26937: possible denial of service via a crafted UTF-8
character sequence (bug #60030)
- make screen exit code be 0 when checking --help
- session names limit is 80 symbols (bug #61534)
- option -X ignores specified user in multiuser env (bug #37437)
- a lot of reformations/fixes/cleanups (man page and source code)
For full list of changes see
https://git.savannah.gnu.org/cgit/screen.git/log/?h=v.4.9.0
Note that CVE-2021-26937 was fixed in the FreeBSD port in 2021.
Diffstat (limited to 'sysutils/screen/files/patch-Makefile.in')
-rw-r--r-- | sysutils/screen/files/patch-Makefile.in | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/sysutils/screen/files/patch-Makefile.in b/sysutils/screen/files/patch-Makefile.in deleted file mode 100644 index 101c1703295a..000000000000 --- a/sysutils/screen/files/patch-Makefile.in +++ /dev/null @@ -1,48 +0,0 @@ ---- Makefile.in.orig 2017-07-10 12:26:25.000000000 -0700 -+++ Makefile.in 2017-08-25 20:19:07.289437000 -0700 -@@ -83,19 +83,13 @@ - $(OPTIONS) $(CFLAGS) $< - - install_bin: .version screen installdirs -- -if [ -f $(DESTDIR)$(bindir)/$(SCREEN) ] && [ ! -f $(DESTDIR)$(bindir)/$(SCREEN).old ]; \ -- then mv $(DESTDIR)$(bindir)/$(SCREEN) $(DESTDIR)$(bindir)/$(SCREEN).old; fi -- $(INSTALL_PROGRAM) screen $(DESTDIR)$(bindir)/$(SCREEN) -- -chown root $(DESTDIR)$(bindir)/$(SCREEN) && chmod 4755 $(DESTDIR)$(bindir)/$(SCREEN) --# This doesn't work if $(bindir)/screen is a symlink -- -if [ -f $(DESTDIR)$(bindir)/screen ] && [ ! -f $(DESTDIR)$(bindir)/screen.old ]; then mv $(DESTDIR)$(bindir)/screen $(DESTDIR)$(bindir)/screen.old; fi -- rm -f $(DESTDIR)$(bindir)/screen -- (cd $(DESTDIR)$(bindir) && ln -f -s $(SCREEN) screen) - cp $(srcdir)/utf8encodings/?? $(DESTDIR)$(SCREENENCODINGS) -+ $(INSTALL_PROGRAM) screen $(DESTDIR)$(bindir)/screen -+ -chown root:wheel $(DESTDIR)$(bindir)/screen && chmod 4755 $(DESTDIR)$(bindir)/screen - - ############################################################################### - install: installdirs install_bin -- cd doc ; $(MAKE) install -+ cd doc ; $(MAKE) $(MAKE_ARGS) install - -if [ -d $(DESTDIR)/usr/lib/terminfo ]; then \ - PATH="$$PATH:/usr/5bin" tic ${srcdir}/terminfo/screeninfo.src; \ - chmod 644 $(DESTDIR)/usr/lib/terminfo/s/screen*; \ -@@ -108,7 +102,7 @@ - installdirs: - # Path leading to ETCSCREENRC and Socketdirectory not checked. - $(srcdir)/etc/mkinstalldirs $(DESTDIR)$(bindir) $(DESTDIR)$(SCREENENCODINGS) -- cd doc ; $(MAKE) installdirs -+ cd doc ; $(MAKE) $(MAKE_ARGS) installdirs - - uninstall: .version - rm -f $(DESTDIR)$(bindir)/$(SCREEN) -@@ -350,7 +344,10 @@ - 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_window.o: list_generic.h list_window.c window.h layer.h screen.h osdef.h comm.h -+list_generic.o: list_generic.h list_generic.c layer.h screen.h os.h osdef.h ansi.h acls.h \ -+ comm.h layer.h term.h image.h display.h window.h -+list_display.o: list_generic.h list_display.c layer.h screen.h os.h osdef.h ansi.h acls.h \ -+ comm.h layer.h term.h image.h display.h window.h -+list_window.o: list_generic.h list_window.c window.h layer.h screen.h os.h osdef.h ansi.h acls.h \ -+ comm.h layer.h term.h image.h display.h window.h - |