pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

rtv: Add an entry about NetBSD curses(3) and subsubwindows and minor formatting



Module Name:	pkgsrc-wip
Committed By:	Leonardo Taccari <leot%NetBSD.org@localhost>
Pushed By:	leot
Date:		Mon Mar 19 10:50:02 2018 +0100
Changeset:	f7026be21f8fe3a823447a80ac9b0c1c5835c725

Modified Files:
	rtv/TODO

Log Message:
rtv: Add an entry about NetBSD curses(3) and subsubwindows and minor formatting

(<roy> fixed that in -current a couple of months ago and probably it is worth to
be pulled up in netbsd-8)

While here also indent the CVE list.

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=f7026be21f8fe3a823447a80ac9b0c1c5835c725

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 rtv/TODO | 17 ++++++++++++++++-
 1 file changed, 16 insertions(+), 1 deletion(-)

diffs:
diff --git a/rtv/TODO b/rtv/TODO
index 574fd6da74..569d297f70 100644
--- a/rtv/TODO
+++ b/rtv/TODO
@@ -1,3 +1,18 @@
+- If curses(3) is used on NetBSD it will be probably problematic because a
+  subwindow could not contain another subwindow.
+  To reproduce that:
+
+    | import curses
+    | 
+    | stdscr = curses.initscr()
+    | subwin = stdscr.derwin(0, 0, 0, 0)
+    | subsubwin = subwin.derwin(0, 0, 0, 0)
+
+  <roy> fixed that via src/lib/libcurses/newwin.c,r1.15 but is not in netbsd-8.
+  Should we request a pullup for it?
+
+    -- leot (2018/03/19)
+
 - Colors don't seem to work on NetBSD when built with curses(3) (it's just
   mostly monochrome despite using the `default' theme).
   Investigate why that happens and if possible fix that.
@@ -7,4 +22,4 @@
     -- leot (2018/03/19)
 
 - This package has known vulnerabilities, please investigate and fix if possible:
- CVE-2017-17516
+   CVE-2017-17516


Home | Main Index | Thread Index | Old Index