CVS commit: xsrc/external/mit/xf86-video-suncg14/dist/src

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Mon Jan  9 03:57:27 UTC 2023

Modified Files:
xsrc/external/mit/xf86-video-suncg14/dist/src: cg14.h

Log Message:
fix previous - still include xf86Cursor.h


To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 \
xsrc/external/mit/xf86-video-suncg14/dist/src/cg14.h

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

Modified files:

Index: xsrc/external/mit/xf86-video-suncg14/dist/src/cg14.h
diff -u xsrc/external/mit/xf86-video-suncg14/dist/src/cg14.h:1.19 xsrc/external/mit/xf86-video-suncg14/dist/src/cg14.h:1.20
--- xsrc/external/mit/xf86-video-suncg14/dist/src/cg14.h:1.19	Sun Jan  8 22:03:02 2023
+++ xsrc/external/mit/xf86-video-suncg14/dist/src/cg14.h	Mon Jan  9 03:57:27 2023
@@ -29,6 +29,7 @@
 #include 
 #include "gcstruct.h"
 #include "xf86sbusBus.h"
+#include "xf86Cursor.h"
 #include "exa.h"
 #include 
 



CVS commit: xsrc/external/mit/xf86-video-suncg14/dist/src

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Mon Jan  9 03:57:27 UTC 2023

Modified Files:
xsrc/external/mit/xf86-video-suncg14/dist/src: cg14.h

Log Message:
fix previous - still include xf86Cursor.h


To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 \
xsrc/external/mit/xf86-video-suncg14/dist/src/cg14.h

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



CVS commit: xsrc/external/mit/pixman/dist/pixman

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Mon Jan  9 02:49:52 UTC 2023

Modified Files:
xsrc/external/mit/pixman/dist/pixman: pixman.h

Log Message:
pull across a fix from upstream to fix clang builds.

https://gitlab.freedesktop.org/pixman/pixman/-/merge_requests/16/diffs?commit_id=d60b0af5e32fed034bd163d244148947d3ed91a8

Avoid undefined behavior (left-shifting negative value) in pixman_int_to_fixed

Reported in https://bugzilla.mozilla.org/show_bug.cgi?id=1580352. Casting
the argument to uint32_t should avoid invoking undefined behavior here.
We'll still have *implementation-defined* behavior when casting the result
back to pixman_fixed_t, but that's better than *undefined*.


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 xsrc/external/mit/pixman/dist/pixman/pixman.h

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

Modified files:

Index: xsrc/external/mit/pixman/dist/pixman/pixman.h
diff -u xsrc/external/mit/pixman/dist/pixman/pixman.h:1.9 xsrc/external/mit/pixman/dist/pixman/pixman.h:1.10
--- xsrc/external/mit/pixman/dist/pixman/pixman.h:1.9	Sat Dec 17 09:06:34 2022
+++ xsrc/external/mit/pixman/dist/pixman/pixman.h	Mon Jan  9 02:49:51 2023
@@ -127,7 +127,7 @@ typedef pixman_fixed_16_16_t	pixman_fixe
 #define pixman_fixed_1_minus_e		(pixman_fixed_1 - pixman_fixed_e)
 #define pixman_fixed_minus_1		(pixman_int_to_fixed(-1))
 #define pixman_fixed_to_int(f)		((int) ((f) >> 16))
-#define pixman_int_to_fixed(i)		((pixman_fixed_t) ((i) << 16))
+#define pixman_int_to_fixed(i)		((pixman_fixed_t) ((uint32_t) (i) << 16))
 #define pixman_fixed_to_double(f)	(double) ((f) / (double) pixman_fixed_1)
 #define pixman_double_to_fixed(d)	((pixman_fixed_t) ((d) * 65536.0))
 #define pixman_fixed_frac(f)		((f) & pixman_fixed_1_minus_e)



CVS commit: xsrc/external/mit/pixman/dist/pixman

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Mon Jan  9 02:49:52 UTC 2023

Modified Files:
xsrc/external/mit/pixman/dist/pixman: pixman.h

Log Message:
pull across a fix from upstream to fix clang builds.

https://gitlab.freedesktop.org/pixman/pixman/-/merge_requests/16/diffs?commit_id=d60b0af5e32fed034bd163d244148947d3ed91a8

Avoid undefined behavior (left-shifting negative value) in pixman_int_to_fixed

Reported in https://bugzilla.mozilla.org/show_bug.cgi?id=1580352. Casting
the argument to uint32_t should avoid invoking undefined behavior here.
We'll still have *implementation-defined* behavior when casting the result
back to pixman_fixed_t, but that's better than *undefined*.


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 xsrc/external/mit/pixman/dist/pixman/pixman.h

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



CVS commit: src/usr.bin/xlint/lint1

2023-01-08 Thread Roland Illig
Module Name:src
Committed By:   rillig
Date:   Mon Jan  9 00:07:30 UTC 2023

Modified Files:
src/usr.bin/xlint/lint1: scan.l

Log Message:
lint: in the lex scanner, use fewer definitions

No binary change.


To generate a diff of this commit:
cvs rdiff -u -r1.137 -r1.138 src/usr.bin/xlint/lint1/scan.l

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

Modified files:

Index: src/usr.bin/xlint/lint1/scan.l
diff -u src/usr.bin/xlint/lint1/scan.l:1.137 src/usr.bin/xlint/lint1/scan.l:1.138
--- src/usr.bin/xlint/lint1/scan.l:1.137	Sun Jan  8 22:46:00 2023
+++ src/usr.bin/xlint/lint1/scan.l	Mon Jan  9 00:07:30 2023
@@ -1,5 +1,5 @@
 %{
-/* $NetBSD: scan.l,v 1.137 2023/01/08 22:46:00 rillig Exp $ */
+/* $NetBSD: scan.l,v 1.138 2023/01/09 00:07:30 rillig Exp $ */
 
 /*
  * Copyright (c) 1996 Christopher G. Demetriou.  All Rights Reserved.
@@ -35,7 +35,7 @@
 
 #include 
 #if defined(__RCSID)
-__RCSID("$NetBSD: scan.l,v 1.137 2023/01/08 22:46:00 rillig Exp $");
+__RCSID("$NetBSD: scan.l,v 1.138 2023/01/09 00:07:30 rillig Exp $");
 #endif
 
 #include "lint1.h"
@@ -44,30 +44,25 @@ __RCSID("$NetBSD: scan.l,v 1.137 2023/01
 %}
 
 
-L	[_A-Za-z]
-D	[0-9]
-NZD	[1-9]
-BD	[0-1]
-OD	[0-7]
-HD	[0-9A-Fa-f]
-EX	([eE][+-]?[0-9]+)
-HX	(p[+-]?[0-9A-Fa-f]+)
-TL	([fFlL]?[i]?)
+HEX	[0-9A-Fa-f]
+EXP	([eE][+-]?[0-9]+)
+PEXP	(p[+-]?[0-9A-Fa-f]+)
+FSUF	([fFlL]?[i]?)
 
 %option nounput
 
 %%
 
-{L}({L}|{D})*			return lex_name(yytext, yyleng);
-0[bB]{BD}+[lLuU]*		return lex_integer_constant(yytext, yyleng, 2);
-0{OD}*[lLuU]*			return lex_integer_constant(yytext, yyleng, 8);
-{NZD}{D}*[lLuU]*		return lex_integer_constant(yytext, yyleng, 10);
-0[xX]{HD}+[lLuU]*		return lex_integer_constant(yytext, yyleng, 16);
-{D}+\.{D}*{EX}?{TL}		|
-{D}+{EX}{TL}			|
-0[xX]{HD}+\.{HD}*{HX}{TL}	|
-0[xX]{HD}+{HX}{TL}		|
-\.{D}+{EX}?{TL}			return lex_floating_constant(yytext, yyleng);
+[_A-Za-z][_A-Za-z0-9]*		return lex_name(yytext, yyleng);
+0[bB][01]+[lLuU]*		return lex_integer_constant(yytext, yyleng, 2);
+0[0-7]*[lLuU]*			return lex_integer_constant(yytext, yyleng, 8);
+[1-9][0-9]*[lLuU]*		return lex_integer_constant(yytext, yyleng, 10);
+0[xX]{HEX}+[lLuU]*		return lex_integer_constant(yytext, yyleng, 16);
+[0-9]+\.[0-9]*{EXP}?{FSUF}	|
+[0-9]+{EXP}{FSUF}		|
+0[xX]{HEX}+\.{HEX}*{PEXP}{FSUF}	|
+0[xX]{HEX}+{PEXP}{FSUF}		|
+\.[0-9]+{EXP}?{FSUF}		return lex_floating_constant(yytext, yyleng);
 "="return T_ASSIGN;
 "*="return lex_operator(T_OPASSIGN, MULASS);
 "/="return lex_operator(T_OPASSIGN, DIVASS);



CVS commit: src/usr.bin/xlint/lint1

2023-01-08 Thread Roland Illig
Module Name:src
Committed By:   rillig
Date:   Mon Jan  9 00:07:30 UTC 2023

Modified Files:
src/usr.bin/xlint/lint1: scan.l

Log Message:
lint: in the lex scanner, use fewer definitions

No binary change.


To generate a diff of this commit:
cvs rdiff -u -r1.137 -r1.138 src/usr.bin/xlint/lint1/scan.l

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



CVS commit: src/usr.bin/xlint/lint1

2023-01-08 Thread Roland Illig
Module Name:src
Committed By:   rillig
Date:   Sun Jan  8 22:46:00 UTC 2023

Modified Files:
src/usr.bin/xlint/lint1: lex.c scan.l

Log Message:
lint: document how reading tokens from the input works

Rename inpc to read_byte, to make the name more expressive.  Since C99,
lint is no longer required to use overly short identifiers.

No functional change.


To generate a diff of this commit:
cvs rdiff -u -r1.134 -r1.135 src/usr.bin/xlint/lint1/lex.c
cvs rdiff -u -r1.136 -r1.137 src/usr.bin/xlint/lint1/scan.l

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

Modified files:

Index: src/usr.bin/xlint/lint1/lex.c
diff -u src/usr.bin/xlint/lint1/lex.c:1.134 src/usr.bin/xlint/lint1/lex.c:1.135
--- src/usr.bin/xlint/lint1/lex.c:1.134	Sat Oct  1 10:04:06 2022
+++ src/usr.bin/xlint/lint1/lex.c	Sun Jan  8 22:46:00 2023
@@ -1,4 +1,4 @@
-/* $NetBSD: lex.c,v 1.134 2022/10/01 10:04:06 rillig Exp $ */
+/* $NetBSD: lex.c,v 1.135 2023/01/08 22:46:00 rillig Exp $ */
 
 /*
  * Copyright (c) 1996 Christopher G. Demetriou.  All Rights Reserved.
@@ -38,7 +38,7 @@
 
 #include 
 #if defined(__RCSID)
-__RCSID("$NetBSD: lex.c,v 1.134 2022/10/01 10:04:06 rillig Exp $");
+__RCSID("$NetBSD: lex.c,v 1.135 2023/01/08 22:46:00 rillig Exp $");
 #endif
 
 #include 
@@ -398,11 +398,13 @@ initscan(void)
 }
 
 /*
- * Read a character and ensure that it is positive (except EOF).
- * Increment line count(s) if necessary.
+ * When scanning the remainder of a long token (see lex_input), read a byte
+ * and return it as an unsigned char or as EOF.
+ *
+ * Increment the line counts if necessary.
  */
 static int
-inpc(void)
+read_byte(void)
 {
 	int	c;
 
@@ -846,7 +848,7 @@ get_escaped_char(int delim)
 	int	n, c, v;
 
 	if (pbc == -1) {
-		c = inpc();
+		c = read_byte();
 	} else {
 		c = pbc;
 		pbc = -1;
@@ -868,7 +870,7 @@ get_escaped_char(int delim)
 	case EOF:
 		return -2;
 	case '\\':
-		switch (c = inpc()) {
+		switch (c = read_byte()) {
 		case '"':
 			if (!allow_c90 && delim == '\'')
 /* \" inside character constants undef... */
@@ -913,7 +915,7 @@ get_escaped_char(int delim)
 			v = 0;
 			do {
 v = (v << 3) + (c - '0');
-c = inpc();
+c = read_byte();
 			} while (--n > 0 && '0' <= c && c <= '7');
 			pbc = c;
 			if (v > TARG_UCHAR_MAX) {
@@ -928,7 +930,7 @@ get_escaped_char(int delim)
 warning(82);
 			v = 0;
 			n = 0;
-			while (c = inpc(), isxdigit(c)) {
+			while (c = read_byte(), isxdigit(c)) {
 c = isdigit(c) ?
 c - '0' : toupper(c) - 'A' + 10;
 v = (v << 4) + c;
@@ -1048,7 +1050,7 @@ lex_directive(const char *yytext)
 		/* empty string means stdin */
 		if (fnl == 0) {
 			fn = "{standard input}";
-			fnl = 16;			/* strlen (fn) */
+			fnl = 16;	/* strlen (fn) */
 		}
 		curr_pos.p_file = record_filename(fn, fnl);
 		/*
@@ -1118,7 +1120,7 @@ lex_comment(void)
 	eoc = false;
 
 	/* Skip whitespace after the start of the comment */
-	while (c = inpc(), isspace(c))
+	while (c = read_byte(), isspace(c))
 		continue;
 
 	/* Read the potential keyword to keywd */
@@ -1128,7 +1130,7 @@ lex_comment(void)
 		if (islower(c) && l > 0 && ch_isupper(keywd[0]))
 			break;
 		keywd[l++] = (char)c;
-		c = inpc();
+		c = read_byte();
 	}
 	while (l > 0 && ch_isspace(keywd[l - 1]))
 		l--;
@@ -1144,14 +1146,14 @@ lex_comment(void)
 
 	/* skip whitespace after the keyword */
 	while (isspace(c))
-		c = inpc();
+		c = read_byte();
 
 	/* read the argument, if the keyword accepts one and there is one */
 	l = 0;
 	if (keywtab[i].arg) {
 		while (isdigit(c) && l < sizeof(arg) - 1) {
 			arg[l++] = (char)c;
-			c = inpc();
+			c = read_byte();
 		}
 	}
 	arg[l] = '\0';
@@ -1159,9 +1161,9 @@ lex_comment(void)
 
 	/* skip whitespace after the argument */
 	while (isspace(c))
-		c = inpc();
+		c = read_byte();
 
-	if (c != '*' || (c = inpc()) != '/') {
+	if (c != '*' || (c = read_byte()) != '/') {
 		if (keywtab[i].func != linted)
 			/* extra characters in lint comment */
 			warning(257);
@@ -1179,7 +1181,7 @@ lex_comment(void)
 skip_rest:
 	while (!eoc) {
 		lc = c;
-		if ((c = inpc()) == EOF) {
+		if ((c = read_byte()) == EOF) {
 			/* unterminated comment */
 			error(256);
 			break;
@@ -1201,7 +1203,7 @@ lex_slash_slash_comment(void)
 		/* %s does not support // comments */
 		gnuism(312, allow_c90 ? "C90" : "traditional C");
 
-	while ((c = inpc()) != EOF && c != '\n')
+	while ((c = read_byte()) != EOF && c != '\n')
 		continue;
 }
 

Index: src/usr.bin/xlint/lint1/scan.l
diff -u src/usr.bin/xlint/lint1/scan.l:1.136 src/usr.bin/xlint/lint1/scan.l:1.137
--- src/usr.bin/xlint/lint1/scan.l:1.136	Fri May 20 21:18:55 2022
+++ src/usr.bin/xlint/lint1/scan.l	Sun Jan  8 22:46:00 2023
@@ -1,5 +1,5 @@
 %{
-/* $NetBSD: scan.l,v 1.136 2022/05/20 21:18:55 rillig Exp $ */
+/* $NetBSD: scan.l,v 1.137 2023/01/08 22:46:00 rillig Exp $ */
 
 /*
  * Copyright (c) 1996 Christopher G. Demetriou.  All Rights Reserved.
@@ -35,7 +35,7 @@
 
 #include 
 

CVS commit: src/usr.bin/xlint/lint1

2023-01-08 Thread Roland Illig
Module Name:src
Committed By:   rillig
Date:   Sun Jan  8 22:46:00 UTC 2023

Modified Files:
src/usr.bin/xlint/lint1: lex.c scan.l

Log Message:
lint: document how reading tokens from the input works

Rename inpc to read_byte, to make the name more expressive.  Since C99,
lint is no longer required to use overly short identifiers.

No functional change.


To generate a diff of this commit:
cvs rdiff -u -r1.134 -r1.135 src/usr.bin/xlint/lint1/lex.c
cvs rdiff -u -r1.136 -r1.137 src/usr.bin/xlint/lint1/scan.l

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



CVS commit: xsrc/external/mit

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 22:03:04 UTC 2023

Modified Files:
xsrc/external/mit/xf86-video-suncg14/dist/src: cg14.h cg14_driver.c
xsrc/external/mit/xf86-video-suncg6/dist/src: cg6.h
xsrc/external/mit/xf86-video-sunffb/dist/src: ffb.h ffb_driver.c
ffb_regs.h
xsrc/external/mit/xf86-video-sunleo/dist/src: leo.h leo_accel.c
xsrc/external/mit/xf86-video-suntcx/dist: ChangeLog Makefile.am
Makefile.in aclocal.m4 config.guess config.h.in config.sub
configure configure.ac depcomp install-sh ltmain.sh missing
xsrc/external/mit/xf86-video-suntcx/dist/man: Makefile.in suntcx.man
xsrc/external/mit/xf86-video-suntcx/dist/src: Makefile.in tcx.h
Removed Files:
xsrc/external/mit/xf86-video-suncg14/dist: README
xsrc/external/mit/xf86-video-suncg6/dist: README
xsrc/external/mit/xf86-video-sunffb/dist: README
xsrc/external/mit/xf86-video-sunleo/dist: README
xsrc/external/mit/xf86-video-suntcx/dist: README

Log Message:
merge xf86-video-suncg14 1.1.3, xf86-video-suncg6 1.1.3,
xf86-video-sunffb 1.2.3, xf86-video-sunleo 1.2.3,
and xf86-video-suntcx 1.1.3.

ffb_driver.c probably needs explicit testing that the EXA/XAA
code still works properly.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r0 xsrc/external/mit/xf86-video-suncg14/dist/README
cvs rdiff -u -r1.18 -r1.19 \
xsrc/external/mit/xf86-video-suncg14/dist/src/cg14.h
cvs rdiff -u -r1.19 -r1.20 \
xsrc/external/mit/xf86-video-suncg14/dist/src/cg14_driver.c
cvs rdiff -u -r1.1.1.1 -r0 xsrc/external/mit/xf86-video-suncg6/dist/README
cvs rdiff -u -r1.8 -r1.9 xsrc/external/mit/xf86-video-suncg6/dist/src/cg6.h
cvs rdiff -u -r1.1.1.1 -r0 xsrc/external/mit/xf86-video-sunffb/dist/README
cvs rdiff -u -r1.10 -r1.11 xsrc/external/mit/xf86-video-sunffb/dist/src/ffb.h
cvs rdiff -u -r1.11 -r1.12 \
xsrc/external/mit/xf86-video-sunffb/dist/src/ffb_driver.c
cvs rdiff -u -r1.2 -r1.3 \
xsrc/external/mit/xf86-video-sunffb/dist/src/ffb_regs.h
cvs rdiff -u -r1.1.1.1 -r0 xsrc/external/mit/xf86-video-sunleo/dist/README
cvs rdiff -u -r1.4 -r1.5 xsrc/external/mit/xf86-video-sunleo/dist/src/leo.h
cvs rdiff -u -r1.7 -r1.8 \
xsrc/external/mit/xf86-video-sunleo/dist/src/leo_accel.c
cvs rdiff -u -r1.2 -r1.3 xsrc/external/mit/xf86-video-suntcx/dist/ChangeLog \
xsrc/external/mit/xf86-video-suntcx/dist/Makefile.am \
xsrc/external/mit/xf86-video-suntcx/dist/Makefile.in \
xsrc/external/mit/xf86-video-suntcx/dist/aclocal.m4 \
xsrc/external/mit/xf86-video-suntcx/dist/config.guess \
xsrc/external/mit/xf86-video-suntcx/dist/config.h.in \
xsrc/external/mit/xf86-video-suntcx/dist/config.sub \
xsrc/external/mit/xf86-video-suntcx/dist/configure \
xsrc/external/mit/xf86-video-suntcx/dist/configure.ac \
xsrc/external/mit/xf86-video-suntcx/dist/depcomp \
xsrc/external/mit/xf86-video-suntcx/dist/install-sh \
xsrc/external/mit/xf86-video-suntcx/dist/ltmain.sh \
xsrc/external/mit/xf86-video-suntcx/dist/missing
cvs rdiff -u -r1.1 -r0 xsrc/external/mit/xf86-video-suntcx/dist/README
cvs rdiff -u -r1.2 -r1.3 \
xsrc/external/mit/xf86-video-suntcx/dist/man/Makefile.in \
xsrc/external/mit/xf86-video-suntcx/dist/man/suntcx.man
cvs rdiff -u -r1.2 -r1.3 \
xsrc/external/mit/xf86-video-suntcx/dist/src/Makefile.in
cvs rdiff -u -r1.9 -r1.10 xsrc/external/mit/xf86-video-suntcx/dist/src/tcx.h

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



CVS commit: xsrc/external/mit

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 22:03:04 UTC 2023

Modified Files:
xsrc/external/mit/xf86-video-suncg14/dist/src: cg14.h cg14_driver.c
xsrc/external/mit/xf86-video-suncg6/dist/src: cg6.h
xsrc/external/mit/xf86-video-sunffb/dist/src: ffb.h ffb_driver.c
ffb_regs.h
xsrc/external/mit/xf86-video-sunleo/dist/src: leo.h leo_accel.c
xsrc/external/mit/xf86-video-suntcx/dist: ChangeLog Makefile.am
Makefile.in aclocal.m4 config.guess config.h.in config.sub
configure configure.ac depcomp install-sh ltmain.sh missing
xsrc/external/mit/xf86-video-suntcx/dist/man: Makefile.in suntcx.man
xsrc/external/mit/xf86-video-suntcx/dist/src: Makefile.in tcx.h
Removed Files:
xsrc/external/mit/xf86-video-suncg14/dist: README
xsrc/external/mit/xf86-video-suncg6/dist: README
xsrc/external/mit/xf86-video-sunffb/dist: README
xsrc/external/mit/xf86-video-sunleo/dist: README
xsrc/external/mit/xf86-video-suntcx/dist: README

Log Message:
merge xf86-video-suncg14 1.1.3, xf86-video-suncg6 1.1.3,
xf86-video-sunffb 1.2.3, xf86-video-sunleo 1.2.3,
and xf86-video-suntcx 1.1.3.

ffb_driver.c probably needs explicit testing that the EXA/XAA
code still works properly.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r0 xsrc/external/mit/xf86-video-suncg14/dist/README
cvs rdiff -u -r1.18 -r1.19 \
xsrc/external/mit/xf86-video-suncg14/dist/src/cg14.h
cvs rdiff -u -r1.19 -r1.20 \
xsrc/external/mit/xf86-video-suncg14/dist/src/cg14_driver.c
cvs rdiff -u -r1.1.1.1 -r0 xsrc/external/mit/xf86-video-suncg6/dist/README
cvs rdiff -u -r1.8 -r1.9 xsrc/external/mit/xf86-video-suncg6/dist/src/cg6.h
cvs rdiff -u -r1.1.1.1 -r0 xsrc/external/mit/xf86-video-sunffb/dist/README
cvs rdiff -u -r1.10 -r1.11 xsrc/external/mit/xf86-video-sunffb/dist/src/ffb.h
cvs rdiff -u -r1.11 -r1.12 \
xsrc/external/mit/xf86-video-sunffb/dist/src/ffb_driver.c
cvs rdiff -u -r1.2 -r1.3 \
xsrc/external/mit/xf86-video-sunffb/dist/src/ffb_regs.h
cvs rdiff -u -r1.1.1.1 -r0 xsrc/external/mit/xf86-video-sunleo/dist/README
cvs rdiff -u -r1.4 -r1.5 xsrc/external/mit/xf86-video-sunleo/dist/src/leo.h
cvs rdiff -u -r1.7 -r1.8 \
xsrc/external/mit/xf86-video-sunleo/dist/src/leo_accel.c
cvs rdiff -u -r1.2 -r1.3 xsrc/external/mit/xf86-video-suntcx/dist/ChangeLog \
xsrc/external/mit/xf86-video-suntcx/dist/Makefile.am \
xsrc/external/mit/xf86-video-suntcx/dist/Makefile.in \
xsrc/external/mit/xf86-video-suntcx/dist/aclocal.m4 \
xsrc/external/mit/xf86-video-suntcx/dist/config.guess \
xsrc/external/mit/xf86-video-suntcx/dist/config.h.in \
xsrc/external/mit/xf86-video-suntcx/dist/config.sub \
xsrc/external/mit/xf86-video-suntcx/dist/configure \
xsrc/external/mit/xf86-video-suntcx/dist/configure.ac \
xsrc/external/mit/xf86-video-suntcx/dist/depcomp \
xsrc/external/mit/xf86-video-suntcx/dist/install-sh \
xsrc/external/mit/xf86-video-suntcx/dist/ltmain.sh \
xsrc/external/mit/xf86-video-suntcx/dist/missing
cvs rdiff -u -r1.1 -r0 xsrc/external/mit/xf86-video-suntcx/dist/README
cvs rdiff -u -r1.2 -r1.3 \
xsrc/external/mit/xf86-video-suntcx/dist/man/Makefile.in \
xsrc/external/mit/xf86-video-suntcx/dist/man/suntcx.man
cvs rdiff -u -r1.2 -r1.3 \
xsrc/external/mit/xf86-video-suntcx/dist/src/Makefile.in
cvs rdiff -u -r1.9 -r1.10 xsrc/external/mit/xf86-video-suntcx/dist/src/tcx.h

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

diffs are larger than 1MB and have been omitted


CVS import: xsrc/external/mit/xf86-video-suntcx/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 21:52:58 UTC 2023

Update of /cvsroot/xsrc/external/mit/xf86-video-suntcx/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv5165

Log Message:
initial import of xf86-video-suntcx-1.1.3

Status:

Vendor Tag: xorg
Release Tags:   xf86-video-suntcx-1-1-3

C xsrc/external/mit/xf86-video-suntcx/dist/missing
C xsrc/external/mit/xf86-video-suntcx/dist/depcomp
C xsrc/external/mit/xf86-video-suntcx/dist/aclocal.m4
C xsrc/external/mit/xf86-video-suntcx/dist/install-sh
C xsrc/external/mit/xf86-video-suntcx/dist/config.guess
C xsrc/external/mit/xf86-video-suntcx/dist/ltmain.sh
N xsrc/external/mit/xf86-video-suntcx/dist/compile
C xsrc/external/mit/xf86-video-suntcx/dist/config.h.in
U xsrc/external/mit/xf86-video-suntcx/dist/COPYING
C xsrc/external/mit/xf86-video-suntcx/dist/config.sub
C xsrc/external/mit/xf86-video-suntcx/dist/Makefile.am
C xsrc/external/mit/xf86-video-suntcx/dist/configure.ac
C xsrc/external/mit/xf86-video-suntcx/dist/Makefile.in
U xsrc/external/mit/xf86-video-suntcx/dist/INSTALL
C xsrc/external/mit/xf86-video-suntcx/dist/ChangeLog
C xsrc/external/mit/xf86-video-suntcx/dist/configure
N xsrc/external/mit/xf86-video-suntcx/dist/README.md
C xsrc/external/mit/xf86-video-suntcx/dist/src/Makefile.in
C xsrc/external/mit/xf86-video-suntcx/dist/src/tcx.h
U xsrc/external/mit/xf86-video-suntcx/dist/src/Makefile.am
U xsrc/external/mit/xf86-video-suntcx/dist/src/tcx_driver.c
U xsrc/external/mit/xf86-video-suntcx/dist/src/tcx_regs.h
U xsrc/external/mit/xf86-video-suntcx/dist/src/tcx_cursor.c
U xsrc/external/mit/xf86-video-suntcx/dist/src/compat-api.h
U xsrc/external/mit/xf86-video-suntcx/dist/man/Makefile.am
C xsrc/external/mit/xf86-video-suntcx/dist/man/suntcx.man
C xsrc/external/mit/xf86-video-suntcx/dist/man/Makefile.in

17 conflicts created by this import.
Use the following command to help the merge:

cvs checkout -jxorg:yesterday -jxorg 
xsrc/external/mit/xf86-video-suntcx/dist



CVS import: xsrc/external/mit/xf86-video-sunleo/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 21:52:55 UTC 2023

Update of /cvsroot/xsrc/external/mit/xf86-video-sunleo/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv21926

Log Message:
initial import of xf86-video-sunleo-1.2.3

Status:

Vendor Tag: xorg
Release Tags:   xf86-video-sunleo-1-2-3

U xsrc/external/mit/xf86-video-sunleo/dist/INSTALL
U xsrc/external/mit/xf86-video-sunleo/dist/Makefile.am
U xsrc/external/mit/xf86-video-sunleo/dist/configure
U xsrc/external/mit/xf86-video-sunleo/dist/config.guess
N xsrc/external/mit/xf86-video-sunleo/dist/README.md
U xsrc/external/mit/xf86-video-sunleo/dist/install-sh
U xsrc/external/mit/xf86-video-sunleo/dist/ChangeLog
U xsrc/external/mit/xf86-video-sunleo/dist/aclocal.m4
U xsrc/external/mit/xf86-video-sunleo/dist/Makefile.in
U xsrc/external/mit/xf86-video-sunleo/dist/compile
U xsrc/external/mit/xf86-video-sunleo/dist/COPYING
U xsrc/external/mit/xf86-video-sunleo/dist/configure.ac
U xsrc/external/mit/xf86-video-sunleo/dist/config.h.in
U xsrc/external/mit/xf86-video-sunleo/dist/config.sub
U xsrc/external/mit/xf86-video-sunleo/dist/depcomp
U xsrc/external/mit/xf86-video-sunleo/dist/missing
U xsrc/external/mit/xf86-video-sunleo/dist/ltmain.sh
U xsrc/external/mit/xf86-video-sunleo/dist/man/sunleo.man
U xsrc/external/mit/xf86-video-sunleo/dist/man/Makefile.am
U xsrc/external/mit/xf86-video-sunleo/dist/man/Makefile.in
U xsrc/external/mit/xf86-video-sunleo/dist/src/leo_regs.h
U xsrc/external/mit/xf86-video-sunleo/dist/src/leo_driver.c
C xsrc/external/mit/xf86-video-sunleo/dist/src/leo_accel.c
U xsrc/external/mit/xf86-video-sunleo/dist/src/leo_cursor.c
U xsrc/external/mit/xf86-video-sunleo/dist/src/Makefile.am
C xsrc/external/mit/xf86-video-sunleo/dist/src/leo.h
U xsrc/external/mit/xf86-video-sunleo/dist/src/compat-api.h
U xsrc/external/mit/xf86-video-sunleo/dist/src/Makefile.in

2 conflicts created by this import.
Use the following command to help the merge:

cvs checkout -jxorg:yesterday -jxorg 
xsrc/external/mit/xf86-video-sunleo/dist



CVS import: xsrc/external/mit/xf86-video-suntcx/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 21:52:58 UTC 2023

Update of /cvsroot/xsrc/external/mit/xf86-video-suntcx/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv5165

Log Message:
initial import of xf86-video-suntcx-1.1.3

Status:

Vendor Tag: xorg
Release Tags:   xf86-video-suntcx-1-1-3

C xsrc/external/mit/xf86-video-suntcx/dist/missing
C xsrc/external/mit/xf86-video-suntcx/dist/depcomp
C xsrc/external/mit/xf86-video-suntcx/dist/aclocal.m4
C xsrc/external/mit/xf86-video-suntcx/dist/install-sh
C xsrc/external/mit/xf86-video-suntcx/dist/config.guess
C xsrc/external/mit/xf86-video-suntcx/dist/ltmain.sh
N xsrc/external/mit/xf86-video-suntcx/dist/compile
C xsrc/external/mit/xf86-video-suntcx/dist/config.h.in
U xsrc/external/mit/xf86-video-suntcx/dist/COPYING
C xsrc/external/mit/xf86-video-suntcx/dist/config.sub
C xsrc/external/mit/xf86-video-suntcx/dist/Makefile.am
C xsrc/external/mit/xf86-video-suntcx/dist/configure.ac
C xsrc/external/mit/xf86-video-suntcx/dist/Makefile.in
U xsrc/external/mit/xf86-video-suntcx/dist/INSTALL
C xsrc/external/mit/xf86-video-suntcx/dist/ChangeLog
C xsrc/external/mit/xf86-video-suntcx/dist/configure
N xsrc/external/mit/xf86-video-suntcx/dist/README.md
C xsrc/external/mit/xf86-video-suntcx/dist/src/Makefile.in
C xsrc/external/mit/xf86-video-suntcx/dist/src/tcx.h
U xsrc/external/mit/xf86-video-suntcx/dist/src/Makefile.am
U xsrc/external/mit/xf86-video-suntcx/dist/src/tcx_driver.c
U xsrc/external/mit/xf86-video-suntcx/dist/src/tcx_regs.h
U xsrc/external/mit/xf86-video-suntcx/dist/src/tcx_cursor.c
U xsrc/external/mit/xf86-video-suntcx/dist/src/compat-api.h
U xsrc/external/mit/xf86-video-suntcx/dist/man/Makefile.am
C xsrc/external/mit/xf86-video-suntcx/dist/man/suntcx.man
C xsrc/external/mit/xf86-video-suntcx/dist/man/Makefile.in

17 conflicts created by this import.
Use the following command to help the merge:

cvs checkout -jxorg:yesterday -jxorg 
xsrc/external/mit/xf86-video-suntcx/dist



CVS import: xsrc/external/mit/xf86-video-sunleo/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 21:52:55 UTC 2023

Update of /cvsroot/xsrc/external/mit/xf86-video-sunleo/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv21926

Log Message:
initial import of xf86-video-sunleo-1.2.3

Status:

Vendor Tag: xorg
Release Tags:   xf86-video-sunleo-1-2-3

U xsrc/external/mit/xf86-video-sunleo/dist/INSTALL
U xsrc/external/mit/xf86-video-sunleo/dist/Makefile.am
U xsrc/external/mit/xf86-video-sunleo/dist/configure
U xsrc/external/mit/xf86-video-sunleo/dist/config.guess
N xsrc/external/mit/xf86-video-sunleo/dist/README.md
U xsrc/external/mit/xf86-video-sunleo/dist/install-sh
U xsrc/external/mit/xf86-video-sunleo/dist/ChangeLog
U xsrc/external/mit/xf86-video-sunleo/dist/aclocal.m4
U xsrc/external/mit/xf86-video-sunleo/dist/Makefile.in
U xsrc/external/mit/xf86-video-sunleo/dist/compile
U xsrc/external/mit/xf86-video-sunleo/dist/COPYING
U xsrc/external/mit/xf86-video-sunleo/dist/configure.ac
U xsrc/external/mit/xf86-video-sunleo/dist/config.h.in
U xsrc/external/mit/xf86-video-sunleo/dist/config.sub
U xsrc/external/mit/xf86-video-sunleo/dist/depcomp
U xsrc/external/mit/xf86-video-sunleo/dist/missing
U xsrc/external/mit/xf86-video-sunleo/dist/ltmain.sh
U xsrc/external/mit/xf86-video-sunleo/dist/man/sunleo.man
U xsrc/external/mit/xf86-video-sunleo/dist/man/Makefile.am
U xsrc/external/mit/xf86-video-sunleo/dist/man/Makefile.in
U xsrc/external/mit/xf86-video-sunleo/dist/src/leo_regs.h
U xsrc/external/mit/xf86-video-sunleo/dist/src/leo_driver.c
C xsrc/external/mit/xf86-video-sunleo/dist/src/leo_accel.c
U xsrc/external/mit/xf86-video-sunleo/dist/src/leo_cursor.c
U xsrc/external/mit/xf86-video-sunleo/dist/src/Makefile.am
C xsrc/external/mit/xf86-video-sunleo/dist/src/leo.h
U xsrc/external/mit/xf86-video-sunleo/dist/src/compat-api.h
U xsrc/external/mit/xf86-video-sunleo/dist/src/Makefile.in

2 conflicts created by this import.
Use the following command to help the merge:

cvs checkout -jxorg:yesterday -jxorg 
xsrc/external/mit/xf86-video-sunleo/dist



CVS import: xsrc/external/mit/xf86-video-sunffb/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 21:52:51 UTC 2023

Update of /cvsroot/xsrc/external/mit/xf86-video-sunffb/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv16433

Log Message:
initial import of xf86-video-sunffb-1.2.3

Status:

Vendor Tag: xorg
Release Tags:   xf86-video-sunffb-1-2-3

U xsrc/external/mit/xf86-video-sunffb/dist/missing
N xsrc/external/mit/xf86-video-sunffb/dist/README.md
U xsrc/external/mit/xf86-video-sunffb/dist/depcomp
U xsrc/external/mit/xf86-video-sunffb/dist/configure
U xsrc/external/mit/xf86-video-sunffb/dist/config.h.in
U xsrc/external/mit/xf86-video-sunffb/dist/ChangeLog
U xsrc/external/mit/xf86-video-sunffb/dist/config.guess
N xsrc/external/mit/xf86-video-sunffb/dist/compile
U xsrc/external/mit/xf86-video-sunffb/dist/install-sh
U xsrc/external/mit/xf86-video-sunffb/dist/aclocal.m4
U xsrc/external/mit/xf86-video-sunffb/dist/COPYING
U xsrc/external/mit/xf86-video-sunffb/dist/Makefile.in
U xsrc/external/mit/xf86-video-sunffb/dist/ltmain.sh
U xsrc/external/mit/xf86-video-sunffb/dist/INSTALL
U xsrc/external/mit/xf86-video-sunffb/dist/Makefile.am
U xsrc/external/mit/xf86-video-sunffb/dist/configure.ac
U xsrc/external/mit/xf86-video-sunffb/dist/config.sub
U xsrc/external/mit/xf86-video-sunffb/dist/man/sunffb.man
U xsrc/external/mit/xf86-video-sunffb/dist/man/Makefile.in
U xsrc/external/mit/xf86-video-sunffb/dist/man/Makefile.am
U xsrc/external/mit/xf86-video-sunffb/dist/src/ffb_loops.h
U xsrc/external/mit/xf86-video-sunffb/dist/src/ffb_wid.c
U xsrc/external/mit/xf86-video-sunffb/dist/src/ffb_cursor.c
U xsrc/external/mit/xf86-video-sunffb/dist/src/ffb_dac.c
U xsrc/external/mit/xf86-video-sunffb/dist/src/compat-api.h
U xsrc/external/mit/xf86-video-sunffb/dist/src/ffb_dga.c
C xsrc/external/mit/xf86-video-sunffb/dist/src/ffb_regs.h
C xsrc/external/mit/xf86-video-sunffb/dist/src/ffb.h
U xsrc/external/mit/xf86-video-sunffb/dist/src/ffb_accel.c
U xsrc/external/mit/xf86-video-sunffb/dist/src/ffb_asm.s
U xsrc/external/mit/xf86-video-sunffb/dist/src/ffb_ddc.c
U xsrc/external/mit/xf86-video-sunffb/dist/src/Makefile.in
U xsrc/external/mit/xf86-video-sunffb/dist/src/ffb_fifo.h
U xsrc/external/mit/xf86-video-sunffb/dist/src/ffb_dac.h
U xsrc/external/mit/xf86-video-sunffb/dist/src/VISmoveImage.s
U xsrc/external/mit/xf86-video-sunffb/dist/src/ffb_attr.c
U xsrc/external/mit/xf86-video-sunffb/dist/src/Makefile.am
U xsrc/external/mit/xf86-video-sunffb/dist/src/ffb_rcache.h
C xsrc/external/mit/xf86-video-sunffb/dist/src/ffb_driver.c

3 conflicts created by this import.
Use the following command to help the merge:

cvs checkout -jxorg:yesterday -jxorg 
xsrc/external/mit/xf86-video-sunffb/dist



CVS import: xsrc/external/mit/xf86-video-sunffb/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 21:52:51 UTC 2023

Update of /cvsroot/xsrc/external/mit/xf86-video-sunffb/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv16433

Log Message:
initial import of xf86-video-sunffb-1.2.3

Status:

Vendor Tag: xorg
Release Tags:   xf86-video-sunffb-1-2-3

U xsrc/external/mit/xf86-video-sunffb/dist/missing
N xsrc/external/mit/xf86-video-sunffb/dist/README.md
U xsrc/external/mit/xf86-video-sunffb/dist/depcomp
U xsrc/external/mit/xf86-video-sunffb/dist/configure
U xsrc/external/mit/xf86-video-sunffb/dist/config.h.in
U xsrc/external/mit/xf86-video-sunffb/dist/ChangeLog
U xsrc/external/mit/xf86-video-sunffb/dist/config.guess
N xsrc/external/mit/xf86-video-sunffb/dist/compile
U xsrc/external/mit/xf86-video-sunffb/dist/install-sh
U xsrc/external/mit/xf86-video-sunffb/dist/aclocal.m4
U xsrc/external/mit/xf86-video-sunffb/dist/COPYING
U xsrc/external/mit/xf86-video-sunffb/dist/Makefile.in
U xsrc/external/mit/xf86-video-sunffb/dist/ltmain.sh
U xsrc/external/mit/xf86-video-sunffb/dist/INSTALL
U xsrc/external/mit/xf86-video-sunffb/dist/Makefile.am
U xsrc/external/mit/xf86-video-sunffb/dist/configure.ac
U xsrc/external/mit/xf86-video-sunffb/dist/config.sub
U xsrc/external/mit/xf86-video-sunffb/dist/man/sunffb.man
U xsrc/external/mit/xf86-video-sunffb/dist/man/Makefile.in
U xsrc/external/mit/xf86-video-sunffb/dist/man/Makefile.am
U xsrc/external/mit/xf86-video-sunffb/dist/src/ffb_loops.h
U xsrc/external/mit/xf86-video-sunffb/dist/src/ffb_wid.c
U xsrc/external/mit/xf86-video-sunffb/dist/src/ffb_cursor.c
U xsrc/external/mit/xf86-video-sunffb/dist/src/ffb_dac.c
U xsrc/external/mit/xf86-video-sunffb/dist/src/compat-api.h
U xsrc/external/mit/xf86-video-sunffb/dist/src/ffb_dga.c
C xsrc/external/mit/xf86-video-sunffb/dist/src/ffb_regs.h
C xsrc/external/mit/xf86-video-sunffb/dist/src/ffb.h
U xsrc/external/mit/xf86-video-sunffb/dist/src/ffb_accel.c
U xsrc/external/mit/xf86-video-sunffb/dist/src/ffb_asm.s
U xsrc/external/mit/xf86-video-sunffb/dist/src/ffb_ddc.c
U xsrc/external/mit/xf86-video-sunffb/dist/src/Makefile.in
U xsrc/external/mit/xf86-video-sunffb/dist/src/ffb_fifo.h
U xsrc/external/mit/xf86-video-sunffb/dist/src/ffb_dac.h
U xsrc/external/mit/xf86-video-sunffb/dist/src/VISmoveImage.s
U xsrc/external/mit/xf86-video-sunffb/dist/src/ffb_attr.c
U xsrc/external/mit/xf86-video-sunffb/dist/src/Makefile.am
U xsrc/external/mit/xf86-video-sunffb/dist/src/ffb_rcache.h
C xsrc/external/mit/xf86-video-sunffb/dist/src/ffb_driver.c

3 conflicts created by this import.
Use the following command to help the merge:

cvs checkout -jxorg:yesterday -jxorg 
xsrc/external/mit/xf86-video-sunffb/dist



CVS import: xsrc/external/mit/xf86-video-suncg6/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 21:52:48 UTC 2023

Update of /cvsroot/xsrc/external/mit/xf86-video-suncg6/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv25808

Log Message:
initial import of xf86-video-suncg6-1.1.3

Status:

Vendor Tag: xorg
Release Tags:   xf86-video-suncg6-1-1-3

U xsrc/external/mit/xf86-video-suncg6/dist/config.sub
U xsrc/external/mit/xf86-video-suncg6/dist/COPYING
N xsrc/external/mit/xf86-video-suncg6/dist/compile
U xsrc/external/mit/xf86-video-suncg6/dist/config.h.in
U xsrc/external/mit/xf86-video-suncg6/dist/missing
U xsrc/external/mit/xf86-video-suncg6/dist/depcomp
U xsrc/external/mit/xf86-video-suncg6/dist/ltmain.sh
U xsrc/external/mit/xf86-video-suncg6/dist/config.guess
U xsrc/external/mit/xf86-video-suncg6/dist/configure.ac
U xsrc/external/mit/xf86-video-suncg6/dist/INSTALL
U xsrc/external/mit/xf86-video-suncg6/dist/aclocal.m4
U xsrc/external/mit/xf86-video-suncg6/dist/Makefile.am
U xsrc/external/mit/xf86-video-suncg6/dist/install-sh
N xsrc/external/mit/xf86-video-suncg6/dist/README.md
U xsrc/external/mit/xf86-video-suncg6/dist/configure
U xsrc/external/mit/xf86-video-suncg6/dist/ChangeLog
U xsrc/external/mit/xf86-video-suncg6/dist/Makefile.in
U xsrc/external/mit/xf86-video-suncg6/dist/man/Makefile.in
U xsrc/external/mit/xf86-video-suncg6/dist/man/Makefile.am
U xsrc/external/mit/xf86-video-suncg6/dist/man/suncg6.man
U xsrc/external/mit/xf86-video-suncg6/dist/src/cg6_cursor.c
U xsrc/external/mit/xf86-video-suncg6/dist/src/compat-api.h
U xsrc/external/mit/xf86-video-suncg6/dist/src/Makefile.am
U xsrc/external/mit/xf86-video-suncg6/dist/src/Makefile.in
U xsrc/external/mit/xf86-video-suncg6/dist/src/cg6_regs.h
C xsrc/external/mit/xf86-video-suncg6/dist/src/cg6.h
U xsrc/external/mit/xf86-video-suncg6/dist/src/cg6_driver.c

1 conflicts created by this import.
Use the following command to help the merge:

cvs checkout -jxorg:yesterday -jxorg 
xsrc/external/mit/xf86-video-suncg6/dist



CVS import: xsrc/external/mit/xf86-video-suncg14/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 21:52:46 UTC 2023

Update of /cvsroot/xsrc/external/mit/xf86-video-suncg14/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv23936

Log Message:
initial import of xf86-video-suncg14-1.1.3

Status:

Vendor Tag: xorg
Release Tags:   xf86-video-suncg14-1-1-3

U xsrc/external/mit/xf86-video-suncg14/dist/ChangeLog
U xsrc/external/mit/xf86-video-suncg14/dist/configure
N xsrc/external/mit/xf86-video-suncg14/dist/README.md
U xsrc/external/mit/xf86-video-suncg14/dist/config.h.in
U xsrc/external/mit/xf86-video-suncg14/dist/INSTALL
U xsrc/external/mit/xf86-video-suncg14/dist/config.sub
U xsrc/external/mit/xf86-video-suncg14/dist/config.guess
U xsrc/external/mit/xf86-video-suncg14/dist/configure.ac
U xsrc/external/mit/xf86-video-suncg14/dist/ltmain.sh
U xsrc/external/mit/xf86-video-suncg14/dist/Makefile.in
U xsrc/external/mit/xf86-video-suncg14/dist/missing
U xsrc/external/mit/xf86-video-suncg14/dist/depcomp
N xsrc/external/mit/xf86-video-suncg14/dist/compile
U xsrc/external/mit/xf86-video-suncg14/dist/Makefile.am
U xsrc/external/mit/xf86-video-suncg14/dist/COPYING
U xsrc/external/mit/xf86-video-suncg14/dist/install-sh
U xsrc/external/mit/xf86-video-suncg14/dist/aclocal.m4
C xsrc/external/mit/xf86-video-suncg14/dist/src/cg14_driver.c
C xsrc/external/mit/xf86-video-suncg14/dist/src/cg14.h
U xsrc/external/mit/xf86-video-suncg14/dist/src/Makefile.in
U xsrc/external/mit/xf86-video-suncg14/dist/src/compat-api.h
U xsrc/external/mit/xf86-video-suncg14/dist/src/Makefile.am
U xsrc/external/mit/xf86-video-suncg14/dist/man/Makefile.am
U xsrc/external/mit/xf86-video-suncg14/dist/man/Makefile.in
U xsrc/external/mit/xf86-video-suncg14/dist/man/suncg14.man

2 conflicts created by this import.
Use the following command to help the merge:

cvs checkout -jxorg:yesterday -jxorg 
xsrc/external/mit/xf86-video-suncg14/dist



CVS import: xsrc/external/mit/xf86-video-suncg6/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 21:52:48 UTC 2023

Update of /cvsroot/xsrc/external/mit/xf86-video-suncg6/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv25808

Log Message:
initial import of xf86-video-suncg6-1.1.3

Status:

Vendor Tag: xorg
Release Tags:   xf86-video-suncg6-1-1-3

U xsrc/external/mit/xf86-video-suncg6/dist/config.sub
U xsrc/external/mit/xf86-video-suncg6/dist/COPYING
N xsrc/external/mit/xf86-video-suncg6/dist/compile
U xsrc/external/mit/xf86-video-suncg6/dist/config.h.in
U xsrc/external/mit/xf86-video-suncg6/dist/missing
U xsrc/external/mit/xf86-video-suncg6/dist/depcomp
U xsrc/external/mit/xf86-video-suncg6/dist/ltmain.sh
U xsrc/external/mit/xf86-video-suncg6/dist/config.guess
U xsrc/external/mit/xf86-video-suncg6/dist/configure.ac
U xsrc/external/mit/xf86-video-suncg6/dist/INSTALL
U xsrc/external/mit/xf86-video-suncg6/dist/aclocal.m4
U xsrc/external/mit/xf86-video-suncg6/dist/Makefile.am
U xsrc/external/mit/xf86-video-suncg6/dist/install-sh
N xsrc/external/mit/xf86-video-suncg6/dist/README.md
U xsrc/external/mit/xf86-video-suncg6/dist/configure
U xsrc/external/mit/xf86-video-suncg6/dist/ChangeLog
U xsrc/external/mit/xf86-video-suncg6/dist/Makefile.in
U xsrc/external/mit/xf86-video-suncg6/dist/man/Makefile.in
U xsrc/external/mit/xf86-video-suncg6/dist/man/Makefile.am
U xsrc/external/mit/xf86-video-suncg6/dist/man/suncg6.man
U xsrc/external/mit/xf86-video-suncg6/dist/src/cg6_cursor.c
U xsrc/external/mit/xf86-video-suncg6/dist/src/compat-api.h
U xsrc/external/mit/xf86-video-suncg6/dist/src/Makefile.am
U xsrc/external/mit/xf86-video-suncg6/dist/src/Makefile.in
U xsrc/external/mit/xf86-video-suncg6/dist/src/cg6_regs.h
C xsrc/external/mit/xf86-video-suncg6/dist/src/cg6.h
U xsrc/external/mit/xf86-video-suncg6/dist/src/cg6_driver.c

1 conflicts created by this import.
Use the following command to help the merge:

cvs checkout -jxorg:yesterday -jxorg 
xsrc/external/mit/xf86-video-suncg6/dist



CVS import: xsrc/external/mit/xf86-video-suncg14/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 21:52:46 UTC 2023

Update of /cvsroot/xsrc/external/mit/xf86-video-suncg14/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv23936

Log Message:
initial import of xf86-video-suncg14-1.1.3

Status:

Vendor Tag: xorg
Release Tags:   xf86-video-suncg14-1-1-3

U xsrc/external/mit/xf86-video-suncg14/dist/ChangeLog
U xsrc/external/mit/xf86-video-suncg14/dist/configure
N xsrc/external/mit/xf86-video-suncg14/dist/README.md
U xsrc/external/mit/xf86-video-suncg14/dist/config.h.in
U xsrc/external/mit/xf86-video-suncg14/dist/INSTALL
U xsrc/external/mit/xf86-video-suncg14/dist/config.sub
U xsrc/external/mit/xf86-video-suncg14/dist/config.guess
U xsrc/external/mit/xf86-video-suncg14/dist/configure.ac
U xsrc/external/mit/xf86-video-suncg14/dist/ltmain.sh
U xsrc/external/mit/xf86-video-suncg14/dist/Makefile.in
U xsrc/external/mit/xf86-video-suncg14/dist/missing
U xsrc/external/mit/xf86-video-suncg14/dist/depcomp
N xsrc/external/mit/xf86-video-suncg14/dist/compile
U xsrc/external/mit/xf86-video-suncg14/dist/Makefile.am
U xsrc/external/mit/xf86-video-suncg14/dist/COPYING
U xsrc/external/mit/xf86-video-suncg14/dist/install-sh
U xsrc/external/mit/xf86-video-suncg14/dist/aclocal.m4
C xsrc/external/mit/xf86-video-suncg14/dist/src/cg14_driver.c
C xsrc/external/mit/xf86-video-suncg14/dist/src/cg14.h
U xsrc/external/mit/xf86-video-suncg14/dist/src/Makefile.in
U xsrc/external/mit/xf86-video-suncg14/dist/src/compat-api.h
U xsrc/external/mit/xf86-video-suncg14/dist/src/Makefile.am
U xsrc/external/mit/xf86-video-suncg14/dist/man/Makefile.am
U xsrc/external/mit/xf86-video-suncg14/dist/man/Makefile.in
U xsrc/external/mit/xf86-video-suncg14/dist/man/suncg14.man

2 conflicts created by this import.
Use the following command to help the merge:

cvs checkout -jxorg:yesterday -jxorg 
xsrc/external/mit/xf86-video-suncg14/dist



CVS commit: xsrc/external/mit

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 21:34:50 UTC 2023

Modified Files:
xsrc/external/mit/xf86-input-elographics/dist/src: xf86Elo.c
xsrc/external/mit/xf86-input-elographics/include: config.h
xsrc/external/mit/xf86-video-ast/dist/src: ast_driver.c ast_vgatool.c
xsrc/external/mit/xf86-video-r128/dist/src: r128.h r128_driver.c
r128_probe.h r128_reg.h
xsrc/external/mit/xf86-video-vesa/dist: Makefile.in aclocal.m4
config.guess config.h.in config.sub configure configure.ac depcomp
install-sh ltmain.sh missing
xsrc/external/mit/xf86-video-vesa/dist/man: Makefile.in
xsrc/external/mit/xf86-video-vesa/dist/src: Makefile.in vesa.c
Removed Files:
xsrc/external/mit/xf86-video-ast/dist: README

Log Message:
merge xf86-input-elographics 1.4.3, xf86-video-ast 1.1.6,
xf86-video-r128 6.12.1, and xf86-video-vesa 2.6.0.


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 \
xsrc/external/mit/xf86-input-elographics/dist/src/xf86Elo.c
cvs rdiff -u -r1.5 -r1.6 \
xsrc/external/mit/xf86-input-elographics/include/config.h
cvs rdiff -u -r1.1.1.1 -r0 xsrc/external/mit/xf86-video-ast/dist/README
cvs rdiff -u -r1.6 -r1.7 \
xsrc/external/mit/xf86-video-ast/dist/src/ast_driver.c
cvs rdiff -u -r1.13 -r1.14 \
xsrc/external/mit/xf86-video-ast/dist/src/ast_vgatool.c
cvs rdiff -u -r1.10 -r1.11 xsrc/external/mit/xf86-video-r128/dist/src/r128.h
cvs rdiff -u -r1.20 -r1.21 \
xsrc/external/mit/xf86-video-r128/dist/src/r128_driver.c
cvs rdiff -u -r1.3 -r1.4 \
xsrc/external/mit/xf86-video-r128/dist/src/r128_probe.h
cvs rdiff -u -r1.4 -r1.5 \
xsrc/external/mit/xf86-video-r128/dist/src/r128_reg.h
cvs rdiff -u -r1.10 -r1.11 xsrc/external/mit/xf86-video-vesa/dist/Makefile.in \
xsrc/external/mit/xf86-video-vesa/dist/aclocal.m4 \
xsrc/external/mit/xf86-video-vesa/dist/configure \
xsrc/external/mit/xf86-video-vesa/dist/configure.ac \
xsrc/external/mit/xf86-video-vesa/dist/depcomp \
xsrc/external/mit/xf86-video-vesa/dist/install-sh \
xsrc/external/mit/xf86-video-vesa/dist/ltmain.sh \
xsrc/external/mit/xf86-video-vesa/dist/missing
cvs rdiff -u -r1.8 -r1.9 xsrc/external/mit/xf86-video-vesa/dist/config.guess \
xsrc/external/mit/xf86-video-vesa/dist/config.h.in \
xsrc/external/mit/xf86-video-vesa/dist/config.sub
cvs rdiff -u -r1.10 -r1.11 \
xsrc/external/mit/xf86-video-vesa/dist/man/Makefile.in
cvs rdiff -u -r1.10 -r1.11 \
xsrc/external/mit/xf86-video-vesa/dist/src/Makefile.in
cvs rdiff -u -r1.11 -r1.12 xsrc/external/mit/xf86-video-vesa/dist/src/vesa.c

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

diffs are larger than 1MB and have been omitted


CVS commit: xsrc/external/mit

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 21:34:50 UTC 2023

Modified Files:
xsrc/external/mit/xf86-input-elographics/dist/src: xf86Elo.c
xsrc/external/mit/xf86-input-elographics/include: config.h
xsrc/external/mit/xf86-video-ast/dist/src: ast_driver.c ast_vgatool.c
xsrc/external/mit/xf86-video-r128/dist/src: r128.h r128_driver.c
r128_probe.h r128_reg.h
xsrc/external/mit/xf86-video-vesa/dist: Makefile.in aclocal.m4
config.guess config.h.in config.sub configure configure.ac depcomp
install-sh ltmain.sh missing
xsrc/external/mit/xf86-video-vesa/dist/man: Makefile.in
xsrc/external/mit/xf86-video-vesa/dist/src: Makefile.in vesa.c
Removed Files:
xsrc/external/mit/xf86-video-ast/dist: README

Log Message:
merge xf86-input-elographics 1.4.3, xf86-video-ast 1.1.6,
xf86-video-r128 6.12.1, and xf86-video-vesa 2.6.0.


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 \
xsrc/external/mit/xf86-input-elographics/dist/src/xf86Elo.c
cvs rdiff -u -r1.5 -r1.6 \
xsrc/external/mit/xf86-input-elographics/include/config.h
cvs rdiff -u -r1.1.1.1 -r0 xsrc/external/mit/xf86-video-ast/dist/README
cvs rdiff -u -r1.6 -r1.7 \
xsrc/external/mit/xf86-video-ast/dist/src/ast_driver.c
cvs rdiff -u -r1.13 -r1.14 \
xsrc/external/mit/xf86-video-ast/dist/src/ast_vgatool.c
cvs rdiff -u -r1.10 -r1.11 xsrc/external/mit/xf86-video-r128/dist/src/r128.h
cvs rdiff -u -r1.20 -r1.21 \
xsrc/external/mit/xf86-video-r128/dist/src/r128_driver.c
cvs rdiff -u -r1.3 -r1.4 \
xsrc/external/mit/xf86-video-r128/dist/src/r128_probe.h
cvs rdiff -u -r1.4 -r1.5 \
xsrc/external/mit/xf86-video-r128/dist/src/r128_reg.h
cvs rdiff -u -r1.10 -r1.11 xsrc/external/mit/xf86-video-vesa/dist/Makefile.in \
xsrc/external/mit/xf86-video-vesa/dist/aclocal.m4 \
xsrc/external/mit/xf86-video-vesa/dist/configure \
xsrc/external/mit/xf86-video-vesa/dist/configure.ac \
xsrc/external/mit/xf86-video-vesa/dist/depcomp \
xsrc/external/mit/xf86-video-vesa/dist/install-sh \
xsrc/external/mit/xf86-video-vesa/dist/ltmain.sh \
xsrc/external/mit/xf86-video-vesa/dist/missing
cvs rdiff -u -r1.8 -r1.9 xsrc/external/mit/xf86-video-vesa/dist/config.guess \
xsrc/external/mit/xf86-video-vesa/dist/config.h.in \
xsrc/external/mit/xf86-video-vesa/dist/config.sub
cvs rdiff -u -r1.10 -r1.11 \
xsrc/external/mit/xf86-video-vesa/dist/man/Makefile.in
cvs rdiff -u -r1.10 -r1.11 \
xsrc/external/mit/xf86-video-vesa/dist/src/Makefile.in
cvs rdiff -u -r1.11 -r1.12 xsrc/external/mit/xf86-video-vesa/dist/src/vesa.c

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



CVS import: xsrc/external/mit/xf86-video-vesa/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 21:32:56 UTC 2023

Update of /cvsroot/xsrc/external/mit/xf86-video-vesa/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv16274

Log Message:
initial import of xf86-video-vesa-2.6.0

Status:

Vendor Tag: xorg
Release Tags:   xf86-video-vesa-2-6-0

U xsrc/external/mit/xf86-video-vesa/dist/Makefile.am
C xsrc/external/mit/xf86-video-vesa/dist/install-sh
C xsrc/external/mit/xf86-video-vesa/dist/config.guess
C xsrc/external/mit/xf86-video-vesa/dist/ltmain.sh
C xsrc/external/mit/xf86-video-vesa/dist/aclocal.m4
U xsrc/external/mit/xf86-video-vesa/dist/INSTALL
C xsrc/external/mit/xf86-video-vesa/dist/Makefile.in
C xsrc/external/mit/xf86-video-vesa/dist/missing
C xsrc/external/mit/xf86-video-vesa/dist/configure
C xsrc/external/mit/xf86-video-vesa/dist/depcomp
C xsrc/external/mit/xf86-video-vesa/dist/config.sub
U xsrc/external/mit/xf86-video-vesa/dist/README.md
U xsrc/external/mit/xf86-video-vesa/dist/ChangeLog
U xsrc/external/mit/xf86-video-vesa/dist/compile
C xsrc/external/mit/xf86-video-vesa/dist/configure.ac
C xsrc/external/mit/xf86-video-vesa/dist/config.h.in
U xsrc/external/mit/xf86-video-vesa/dist/COPYING
U xsrc/external/mit/xf86-video-vesa/dist/man/vesa.man
U xsrc/external/mit/xf86-video-vesa/dist/man/Makefile.am
C xsrc/external/mit/xf86-video-vesa/dist/man/Makefile.in
C xsrc/external/mit/xf86-video-vesa/dist/src/Makefile.in
U xsrc/external/mit/xf86-video-vesa/dist/src/Makefile.am
U xsrc/external/mit/xf86-video-vesa/dist/src/compat-api.h
C xsrc/external/mit/xf86-video-vesa/dist/src/vesa.c
U xsrc/external/mit/xf86-video-vesa/dist/src/vesa.h

14 conflicts created by this import.
Use the following command to help the merge:

cvs checkout -jxorg:yesterday -jxorg 
xsrc/external/mit/xf86-video-vesa/dist



CVS import: xsrc/external/mit/xf86-video-vesa/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 21:32:56 UTC 2023

Update of /cvsroot/xsrc/external/mit/xf86-video-vesa/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv16274

Log Message:
initial import of xf86-video-vesa-2.6.0

Status:

Vendor Tag: xorg
Release Tags:   xf86-video-vesa-2-6-0

U xsrc/external/mit/xf86-video-vesa/dist/Makefile.am
C xsrc/external/mit/xf86-video-vesa/dist/install-sh
C xsrc/external/mit/xf86-video-vesa/dist/config.guess
C xsrc/external/mit/xf86-video-vesa/dist/ltmain.sh
C xsrc/external/mit/xf86-video-vesa/dist/aclocal.m4
U xsrc/external/mit/xf86-video-vesa/dist/INSTALL
C xsrc/external/mit/xf86-video-vesa/dist/Makefile.in
C xsrc/external/mit/xf86-video-vesa/dist/missing
C xsrc/external/mit/xf86-video-vesa/dist/configure
C xsrc/external/mit/xf86-video-vesa/dist/depcomp
C xsrc/external/mit/xf86-video-vesa/dist/config.sub
U xsrc/external/mit/xf86-video-vesa/dist/README.md
U xsrc/external/mit/xf86-video-vesa/dist/ChangeLog
U xsrc/external/mit/xf86-video-vesa/dist/compile
C xsrc/external/mit/xf86-video-vesa/dist/configure.ac
C xsrc/external/mit/xf86-video-vesa/dist/config.h.in
U xsrc/external/mit/xf86-video-vesa/dist/COPYING
U xsrc/external/mit/xf86-video-vesa/dist/man/vesa.man
U xsrc/external/mit/xf86-video-vesa/dist/man/Makefile.am
C xsrc/external/mit/xf86-video-vesa/dist/man/Makefile.in
C xsrc/external/mit/xf86-video-vesa/dist/src/Makefile.in
U xsrc/external/mit/xf86-video-vesa/dist/src/Makefile.am
U xsrc/external/mit/xf86-video-vesa/dist/src/compat-api.h
C xsrc/external/mit/xf86-video-vesa/dist/src/vesa.c
U xsrc/external/mit/xf86-video-vesa/dist/src/vesa.h

14 conflicts created by this import.
Use the following command to help the merge:

cvs checkout -jxorg:yesterday -jxorg 
xsrc/external/mit/xf86-video-vesa/dist



CVS import: xsrc/external/mit/xf86-video-r128/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 21:32:52 UTC 2023

Update of /cvsroot/xsrc/external/mit/xf86-video-r128/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv28909

Log Message:
initial import of xf86-video-r128-6.12.1

Status:

Vendor Tag: xorg
Release Tags:   xf86-video-r128-6-12-1

U xsrc/external/mit/xf86-video-r128/dist/aclocal.m4
U xsrc/external/mit/xf86-video-r128/dist/install-sh
U xsrc/external/mit/xf86-video-r128/dist/Makefile.in
U xsrc/external/mit/xf86-video-r128/dist/config.guess
U xsrc/external/mit/xf86-video-r128/dist/ltmain.sh
U xsrc/external/mit/xf86-video-r128/dist/INSTALL
U xsrc/external/mit/xf86-video-r128/dist/Makefile.am
U xsrc/external/mit/xf86-video-r128/dist/config.h.in
U xsrc/external/mit/xf86-video-r128/dist/missing
U xsrc/external/mit/xf86-video-r128/dist/depcomp
U xsrc/external/mit/xf86-video-r128/dist/config.sub
U xsrc/external/mit/xf86-video-r128/dist/configure
U xsrc/external/mit/xf86-video-r128/dist/COPYING
U xsrc/external/mit/xf86-video-r128/dist/configure.ac
U xsrc/external/mit/xf86-video-r128/dist/compile
U xsrc/external/mit/xf86-video-r128/dist/README
U xsrc/external/mit/xf86-video-r128/dist/ChangeLog
U xsrc/external/mit/xf86-video-r128/dist/src/Makefile.in
U xsrc/external/mit/xf86-video-r128/dist/src/r128_video.c
U xsrc/external/mit/xf86-video-r128/dist/src/atipcirename.h
U xsrc/external/mit/xf86-video-r128/dist/src/compat-api.h
U xsrc/external/mit/xf86-video-r128/dist/src/r128_sarea.h
U xsrc/external/mit/xf86-video-r128/dist/src/r128_version.h
U xsrc/external/mit/xf86-video-r128/dist/src/r128_misc.c
U xsrc/external/mit/xf86-video-r128/dist/src/Makefile.am
C xsrc/external/mit/xf86-video-r128/dist/src/r128_probe.h
U xsrc/external/mit/xf86-video-r128/dist/src/r128_common.h
C xsrc/external/mit/xf86-video-r128/dist/src/r128_driver.c
U xsrc/external/mit/xf86-video-r128/dist/src/r128_dri.c
U xsrc/external/mit/xf86-video-r128/dist/src/r128_rop.h
U xsrc/external/mit/xf86-video-r128/dist/src/r128_output.c
U xsrc/external/mit/xf86-video-r128/dist/src/r128_exa.c
U xsrc/external/mit/xf86-video-r128/dist/src/r128_cursor.c
U xsrc/external/mit/xf86-video-r128/dist/src/r128_dripriv.h
C xsrc/external/mit/xf86-video-r128/dist/src/r128.h
U xsrc/external/mit/xf86-video-r128/dist/src/r128_accel.c
C xsrc/external/mit/xf86-video-r128/dist/src/r128_reg.h
U xsrc/external/mit/xf86-video-r128/dist/src/r128_dri.h
U xsrc/external/mit/xf86-video-r128/dist/src/r128_crtc.c
U xsrc/external/mit/xf86-video-r128/dist/src/r128_probe.c
U xsrc/external/mit/xf86-video-r128/dist/src/r128_exa_render.c
U xsrc/external/mit/xf86-video-r128/dist/man/Makefile.in
U xsrc/external/mit/xf86-video-r128/dist/man/r128.man
U xsrc/external/mit/xf86-video-r128/dist/man/Makefile.am

4 conflicts created by this import.
Use the following command to help the merge:

cvs checkout -jxorg:yesterday -jxorg 
xsrc/external/mit/xf86-video-r128/dist



CVS import: xsrc/external/mit/xf86-video-r128/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 21:32:52 UTC 2023

Update of /cvsroot/xsrc/external/mit/xf86-video-r128/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv28909

Log Message:
initial import of xf86-video-r128-6.12.1

Status:

Vendor Tag: xorg
Release Tags:   xf86-video-r128-6-12-1

U xsrc/external/mit/xf86-video-r128/dist/aclocal.m4
U xsrc/external/mit/xf86-video-r128/dist/install-sh
U xsrc/external/mit/xf86-video-r128/dist/Makefile.in
U xsrc/external/mit/xf86-video-r128/dist/config.guess
U xsrc/external/mit/xf86-video-r128/dist/ltmain.sh
U xsrc/external/mit/xf86-video-r128/dist/INSTALL
U xsrc/external/mit/xf86-video-r128/dist/Makefile.am
U xsrc/external/mit/xf86-video-r128/dist/config.h.in
U xsrc/external/mit/xf86-video-r128/dist/missing
U xsrc/external/mit/xf86-video-r128/dist/depcomp
U xsrc/external/mit/xf86-video-r128/dist/config.sub
U xsrc/external/mit/xf86-video-r128/dist/configure
U xsrc/external/mit/xf86-video-r128/dist/COPYING
U xsrc/external/mit/xf86-video-r128/dist/configure.ac
U xsrc/external/mit/xf86-video-r128/dist/compile
U xsrc/external/mit/xf86-video-r128/dist/README
U xsrc/external/mit/xf86-video-r128/dist/ChangeLog
U xsrc/external/mit/xf86-video-r128/dist/src/Makefile.in
U xsrc/external/mit/xf86-video-r128/dist/src/r128_video.c
U xsrc/external/mit/xf86-video-r128/dist/src/atipcirename.h
U xsrc/external/mit/xf86-video-r128/dist/src/compat-api.h
U xsrc/external/mit/xf86-video-r128/dist/src/r128_sarea.h
U xsrc/external/mit/xf86-video-r128/dist/src/r128_version.h
U xsrc/external/mit/xf86-video-r128/dist/src/r128_misc.c
U xsrc/external/mit/xf86-video-r128/dist/src/Makefile.am
C xsrc/external/mit/xf86-video-r128/dist/src/r128_probe.h
U xsrc/external/mit/xf86-video-r128/dist/src/r128_common.h
C xsrc/external/mit/xf86-video-r128/dist/src/r128_driver.c
U xsrc/external/mit/xf86-video-r128/dist/src/r128_dri.c
U xsrc/external/mit/xf86-video-r128/dist/src/r128_rop.h
U xsrc/external/mit/xf86-video-r128/dist/src/r128_output.c
U xsrc/external/mit/xf86-video-r128/dist/src/r128_exa.c
U xsrc/external/mit/xf86-video-r128/dist/src/r128_cursor.c
U xsrc/external/mit/xf86-video-r128/dist/src/r128_dripriv.h
C xsrc/external/mit/xf86-video-r128/dist/src/r128.h
U xsrc/external/mit/xf86-video-r128/dist/src/r128_accel.c
C xsrc/external/mit/xf86-video-r128/dist/src/r128_reg.h
U xsrc/external/mit/xf86-video-r128/dist/src/r128_dri.h
U xsrc/external/mit/xf86-video-r128/dist/src/r128_crtc.c
U xsrc/external/mit/xf86-video-r128/dist/src/r128_probe.c
U xsrc/external/mit/xf86-video-r128/dist/src/r128_exa_render.c
U xsrc/external/mit/xf86-video-r128/dist/man/Makefile.in
U xsrc/external/mit/xf86-video-r128/dist/man/r128.man
U xsrc/external/mit/xf86-video-r128/dist/man/Makefile.am

4 conflicts created by this import.
Use the following command to help the merge:

cvs checkout -jxorg:yesterday -jxorg 
xsrc/external/mit/xf86-video-r128/dist



CVS import: xsrc/external/mit/xf86-video-ast/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 21:32:48 UTC 2023

Update of /cvsroot/xsrc/external/mit/xf86-video-ast/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv8747

Log Message:
initial import of xf86-video-ast-1.1.6

Status:

Vendor Tag: xorg
Release Tags:   xf86-video-ast-1-1-6

N xsrc/external/mit/xf86-video-ast/dist/README.md
U xsrc/external/mit/xf86-video-ast/dist/configure
U xsrc/external/mit/xf86-video-ast/dist/COPYING
U xsrc/external/mit/xf86-video-ast/dist/ChangeLog
N xsrc/external/mit/xf86-video-ast/dist/compile
U xsrc/external/mit/xf86-video-ast/dist/Makefile.in
U xsrc/external/mit/xf86-video-ast/dist/aclocal.m4
U xsrc/external/mit/xf86-video-ast/dist/config.guess
U xsrc/external/mit/xf86-video-ast/dist/install-sh
U xsrc/external/mit/xf86-video-ast/dist/depcomp
U xsrc/external/mit/xf86-video-ast/dist/Makefile.am
U xsrc/external/mit/xf86-video-ast/dist/missing
U xsrc/external/mit/xf86-video-ast/dist/config.h.in
U xsrc/external/mit/xf86-video-ast/dist/INSTALL
U xsrc/external/mit/xf86-video-ast/dist/ltmain.sh
U xsrc/external/mit/xf86-video-ast/dist/configure.ac
U xsrc/external/mit/xf86-video-ast/dist/config.sub
U xsrc/external/mit/xf86-video-ast/dist/src/ast_cursor.c
C xsrc/external/mit/xf86-video-ast/dist/src/ast_vgatool.c
U xsrc/external/mit/xf86-video-ast/dist/src/ast_mode.c
U xsrc/external/mit/xf86-video-ast/dist/src/ast_2dtool.c
U xsrc/external/mit/xf86-video-ast/dist/src/ast_accel.c
U xsrc/external/mit/xf86-video-ast/dist/src/ast_dp501fw.h
U xsrc/external/mit/xf86-video-ast/dist/src/ast.h
C xsrc/external/mit/xf86-video-ast/dist/src/ast_driver.c
U xsrc/external/mit/xf86-video-ast/dist/src/Makefile.am
U xsrc/external/mit/xf86-video-ast/dist/src/ast_2dtool.h
U xsrc/external/mit/xf86-video-ast/dist/src/ast_tool.c
U xsrc/external/mit/xf86-video-ast/dist/src/compat-api.h
U xsrc/external/mit/xf86-video-ast/dist/src/ast_pcirename.h
U xsrc/external/mit/xf86-video-ast/dist/src/Makefile.in
U xsrc/external/mit/xf86-video-ast/dist/src/ast_cursor.h
U xsrc/external/mit/xf86-video-ast/dist/src/ast_vgatool.h
U xsrc/external/mit/xf86-video-ast/dist/src/ast_mode.h

2 conflicts created by this import.
Use the following command to help the merge:

cvs checkout -jxorg:yesterday -jxorg 
xsrc/external/mit/xf86-video-ast/dist



CVS import: xsrc/external/mit/xf86-video-ast/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 21:32:48 UTC 2023

Update of /cvsroot/xsrc/external/mit/xf86-video-ast/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv8747

Log Message:
initial import of xf86-video-ast-1.1.6

Status:

Vendor Tag: xorg
Release Tags:   xf86-video-ast-1-1-6

N xsrc/external/mit/xf86-video-ast/dist/README.md
U xsrc/external/mit/xf86-video-ast/dist/configure
U xsrc/external/mit/xf86-video-ast/dist/COPYING
U xsrc/external/mit/xf86-video-ast/dist/ChangeLog
N xsrc/external/mit/xf86-video-ast/dist/compile
U xsrc/external/mit/xf86-video-ast/dist/Makefile.in
U xsrc/external/mit/xf86-video-ast/dist/aclocal.m4
U xsrc/external/mit/xf86-video-ast/dist/config.guess
U xsrc/external/mit/xf86-video-ast/dist/install-sh
U xsrc/external/mit/xf86-video-ast/dist/depcomp
U xsrc/external/mit/xf86-video-ast/dist/Makefile.am
U xsrc/external/mit/xf86-video-ast/dist/missing
U xsrc/external/mit/xf86-video-ast/dist/config.h.in
U xsrc/external/mit/xf86-video-ast/dist/INSTALL
U xsrc/external/mit/xf86-video-ast/dist/ltmain.sh
U xsrc/external/mit/xf86-video-ast/dist/configure.ac
U xsrc/external/mit/xf86-video-ast/dist/config.sub
U xsrc/external/mit/xf86-video-ast/dist/src/ast_cursor.c
C xsrc/external/mit/xf86-video-ast/dist/src/ast_vgatool.c
U xsrc/external/mit/xf86-video-ast/dist/src/ast_mode.c
U xsrc/external/mit/xf86-video-ast/dist/src/ast_2dtool.c
U xsrc/external/mit/xf86-video-ast/dist/src/ast_accel.c
U xsrc/external/mit/xf86-video-ast/dist/src/ast_dp501fw.h
U xsrc/external/mit/xf86-video-ast/dist/src/ast.h
C xsrc/external/mit/xf86-video-ast/dist/src/ast_driver.c
U xsrc/external/mit/xf86-video-ast/dist/src/Makefile.am
U xsrc/external/mit/xf86-video-ast/dist/src/ast_2dtool.h
U xsrc/external/mit/xf86-video-ast/dist/src/ast_tool.c
U xsrc/external/mit/xf86-video-ast/dist/src/compat-api.h
U xsrc/external/mit/xf86-video-ast/dist/src/ast_pcirename.h
U xsrc/external/mit/xf86-video-ast/dist/src/Makefile.in
U xsrc/external/mit/xf86-video-ast/dist/src/ast_cursor.h
U xsrc/external/mit/xf86-video-ast/dist/src/ast_vgatool.h
U xsrc/external/mit/xf86-video-ast/dist/src/ast_mode.h

2 conflicts created by this import.
Use the following command to help the merge:

cvs checkout -jxorg:yesterday -jxorg 
xsrc/external/mit/xf86-video-ast/dist



CVS import: xsrc/external/mit/xf86-input-elographics/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 21:32:45 UTC 2023

Update of /cvsroot/xsrc/external/mit/xf86-input-elographics/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv15368

Log Message:
initial import of xf86-input-elographics-1.4.3

Status:

Vendor Tag: xorg
Release Tags:   xf86-input-elographics-1-4-3

U xsrc/external/mit/xf86-input-elographics/dist/ltmain.sh
U xsrc/external/mit/xf86-input-elographics/dist/config.guess
U xsrc/external/mit/xf86-input-elographics/dist/config.sub
U xsrc/external/mit/xf86-input-elographics/dist/config.h.in
U xsrc/external/mit/xf86-input-elographics/dist/Makefile.am
U xsrc/external/mit/xf86-input-elographics/dist/compile
U xsrc/external/mit/xf86-input-elographics/dist/COPYING
U xsrc/external/mit/xf86-input-elographics/dist/configure.ac
U xsrc/external/mit/xf86-input-elographics/dist/Makefile.in
U xsrc/external/mit/xf86-input-elographics/dist/depcomp
U xsrc/external/mit/xf86-input-elographics/dist/missing
U xsrc/external/mit/xf86-input-elographics/dist/ChangeLog
U xsrc/external/mit/xf86-input-elographics/dist/install-sh
U xsrc/external/mit/xf86-input-elographics/dist/configure
U xsrc/external/mit/xf86-input-elographics/dist/aclocal.m4
U xsrc/external/mit/xf86-input-elographics/dist/README.md
U xsrc/external/mit/xf86-input-elographics/dist/src/Makefile.am
C xsrc/external/mit/xf86-input-elographics/dist/src/xf86Elo.c
U xsrc/external/mit/xf86-input-elographics/dist/src/Makefile.in
U xsrc/external/mit/xf86-input-elographics/dist/man/Makefile.in
U xsrc/external/mit/xf86-input-elographics/dist/man/Makefile.am
U xsrc/external/mit/xf86-input-elographics/dist/man/elographics.man

1 conflicts created by this import.
Use the following command to help the merge:

cvs checkout -jxorg:yesterday -jxorg 
xsrc/external/mit/xf86-input-elographics/dist



CVS import: xsrc/external/mit/xf86-input-elographics/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 21:32:45 UTC 2023

Update of /cvsroot/xsrc/external/mit/xf86-input-elographics/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv15368

Log Message:
initial import of xf86-input-elographics-1.4.3

Status:

Vendor Tag: xorg
Release Tags:   xf86-input-elographics-1-4-3

U xsrc/external/mit/xf86-input-elographics/dist/ltmain.sh
U xsrc/external/mit/xf86-input-elographics/dist/config.guess
U xsrc/external/mit/xf86-input-elographics/dist/config.sub
U xsrc/external/mit/xf86-input-elographics/dist/config.h.in
U xsrc/external/mit/xf86-input-elographics/dist/Makefile.am
U xsrc/external/mit/xf86-input-elographics/dist/compile
U xsrc/external/mit/xf86-input-elographics/dist/COPYING
U xsrc/external/mit/xf86-input-elographics/dist/configure.ac
U xsrc/external/mit/xf86-input-elographics/dist/Makefile.in
U xsrc/external/mit/xf86-input-elographics/dist/depcomp
U xsrc/external/mit/xf86-input-elographics/dist/missing
U xsrc/external/mit/xf86-input-elographics/dist/ChangeLog
U xsrc/external/mit/xf86-input-elographics/dist/install-sh
U xsrc/external/mit/xf86-input-elographics/dist/configure
U xsrc/external/mit/xf86-input-elographics/dist/aclocal.m4
U xsrc/external/mit/xf86-input-elographics/dist/README.md
U xsrc/external/mit/xf86-input-elographics/dist/src/Makefile.am
C xsrc/external/mit/xf86-input-elographics/dist/src/xf86Elo.c
U xsrc/external/mit/xf86-input-elographics/dist/src/Makefile.in
U xsrc/external/mit/xf86-input-elographics/dist/man/Makefile.in
U xsrc/external/mit/xf86-input-elographics/dist/man/Makefile.am
U xsrc/external/mit/xf86-input-elographics/dist/man/elographics.man

1 conflicts created by this import.
Use the following command to help the merge:

cvs checkout -jxorg:yesterday -jxorg 
xsrc/external/mit/xf86-input-elographics/dist



CVS commit: src/distrib/sets/lists/comp

2023-01-08 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Sun Jan  8 21:11:45 UTC 2023

Modified Files:
src/distrib/sets/lists/comp: md.amd64

Log Message:
add some files that are obsolete with binutils 2.39


To generate a diff of this commit:
cvs rdiff -u -r1.293 -r1.294 src/distrib/sets/lists/comp/md.amd64

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

Modified files:

Index: src/distrib/sets/lists/comp/md.amd64
diff -u src/distrib/sets/lists/comp/md.amd64:1.293 src/distrib/sets/lists/comp/md.amd64:1.294
--- src/distrib/sets/lists/comp/md.amd64:1.293	Sun Jan  8 21:11:07 2023
+++ src/distrib/sets/lists/comp/md.amd64	Sun Jan  8 21:11:45 2023
@@ -1,4 +1,4 @@
-# $NetBSD: md.amd64,v 1.293 2023/01/08 21:11:07 wiz Exp $
+# $NetBSD: md.amd64,v 1.294 2023/01/08 21:11:45 wiz Exp $
 ./usr/include/amd64comp-c-include
 ./usr/include/amd64/ansi.h			comp-c-include
 ./usr/include/amd64/aout_machdep.h		comp-c-include
@@ -1462,32 +1462,58 @@
 ./usr/libdata/ldscripts/elf_iamcu.xsw		comp-util-bin		binutils
 ./usr/libdata/ldscripts/elf_iamcu.xu		comp-util-bin		binutils
 ./usr/libdata/ldscripts/elf_iamcu.xw		comp-util-bin		binutils
+./usr/libdata/ldscripts/elf_k1om.x		comp-obsolete	obsolete,binutils=239
 ./usr/libdata/ldscripts/elf_k1om.x		comp-util-bin		binutils=234
+./usr/libdata/ldscripts/elf_k1om.xbn		comp-obsolete	obsolete,binutils=239
 ./usr/libdata/ldscripts/elf_k1om.xbn		comp-util-bin		binutils=234
+./usr/libdata/ldscripts/elf_k1om.xc		comp-obsolete	obsolete,binutils=239
 ./usr/libdata/ldscripts/elf_k1om.xc		comp-util-bin		binutils=234
 ./usr/libdata/ldscripts/elf_k1om.xc		comp-util-bin		binutils=234
+./usr/libdata/ldscripts/elf_k1om.xd		comp-obsolete	obsolete,binutils=239
 ./usr/libdata/ldscripts/elf_k1om.xd		comp-util-bin		binutils=234
+./usr/libdata/ldscripts/elf_k1om.xdc		comp-obsolete	obsolete,binutils=239
 ./usr/libdata/ldscripts/elf_k1om.xdc		comp-util-bin		binutils=234
+./usr/libdata/ldscripts/elf_k1om.xdw		comp-obsolete	obsolete,binutils=239
 ./usr/libdata/ldscripts/elf_k1om.xdw		comp-util-bin		binutils=234
+./usr/libdata/ldscripts/elf_k1om.xn		comp-obsolete	obsolete,binutils=239
 ./usr/libdata/ldscripts/elf_k1om.xn		comp-util-bin		binutils=234
+./usr/libdata/ldscripts/elf_k1om.xr		comp-obsolete	obsolete,binutils=239
 ./usr/libdata/ldscripts/elf_k1om.xr		comp-util-bin		binutils=234
+./usr/libdata/ldscripts/elf_k1om.xs		comp-obsolete	obsolete,binutils=239
 ./usr/libdata/ldscripts/elf_k1om.xs		comp-util-bin		binutils=234
+./usr/libdata/ldscripts/elf_k1om.xsc		comp-obsolete	obsolete,binutils=239
 ./usr/libdata/ldscripts/elf_k1om.xsc		comp-util-bin		binutils=234
+./usr/libdata/ldscripts/elf_k1om.xsw		comp-obsolete	obsolete,binutils=239
 ./usr/libdata/ldscripts/elf_k1om.xsw		comp-util-bin		binutils=234
+./usr/libdata/ldscripts/elf_k1om.xu		comp-obsolete	obsolete,binutils=239
 ./usr/libdata/ldscripts/elf_k1om.xu		comp-util-bin		binutils=234
+./usr/libdata/ldscripts/elf_k1om.xw		comp-obsolete	obsolete,binutils=239
 ./usr/libdata/ldscripts/elf_k1om.xw		comp-util-bin		binutils=234
+./usr/libdata/ldscripts/elf_l1om.x		comp-obsolete	obsolete,binutils=239
 ./usr/libdata/ldscripts/elf_l1om.x		comp-util-bin		binutils=234
+./usr/libdata/ldscripts/elf_l1om.xbn		comp-obsolete	obsolete,binutils=239
 ./usr/libdata/ldscripts/elf_l1om.xbn		comp-util-bin		binutils=234
+./usr/libdata/ldscripts/elf_l1om.xc		comp-obsolete	obsolete,binutils=239
 ./usr/libdata/ldscripts/elf_l1om.xc		comp-util-bin		binutils=234
+./usr/libdata/ldscripts/elf_l1om.xd		comp-obsolete	obsolete,binutils=239
 ./usr/libdata/ldscripts/elf_l1om.xd		comp-util-bin		binutils=234
+./usr/libdata/ldscripts/elf_l1om.xdc		comp-obsolete	obsolete,binutils=239
 ./usr/libdata/ldscripts/elf_l1om.xdc		comp-util-bin		binutils=234
+./usr/libdata/ldscripts/elf_l1om.xdw		comp-obsolete	obsolete,binutils=239
 ./usr/libdata/ldscripts/elf_l1om.xdw		comp-util-bin		binutils=234
+./usr/libdata/ldscripts/elf_l1om.xn		comp-obsolete	obsolete,binutils=239
 ./usr/libdata/ldscripts/elf_l1om.xn		comp-util-bin		binutils=234
+./usr/libdata/ldscripts/elf_l1om.xr		comp-obsolete	obsolete,binutils=239
 ./usr/libdata/ldscripts/elf_l1om.xr		comp-util-bin		binutils=234
+./usr/libdata/ldscripts/elf_l1om.xs		comp-obsolete	obsolete,binutils=239
 ./usr/libdata/ldscripts/elf_l1om.xs		comp-util-bin		binutils=234
+./usr/libdata/ldscripts/elf_l1om.xsc		comp-obsolete	obsolete,binutils=239
 ./usr/libdata/ldscripts/elf_l1om.xsc		comp-util-bin		binutils=234
+./usr/libdata/ldscripts/elf_l1om.xsw		comp-obsolete	obsolete,binutils=239
 ./usr/libdata/ldscripts/elf_l1om.xsw		comp-util-bin		binutils=234
+./usr/libdata/ldscripts/elf_l1om.xu		comp-obsolete	obsolete,binutils=239
 ./usr/libdata/ldscripts/elf_l1om.xu		comp-util-bin		binutils=234
+./usr/libdata/ldscripts/elf_l1om.xw		comp-obsolete	obsolete,binutils=239
 ./usr/libdata/ldscripts/elf_l1om.xw		comp-util-bin		binutils=234
 ./usr/libdata/ldscripts/elf_x86_64.x		comp-util-bin		binutils
 

CVS commit: src/distrib/sets/lists/comp

2023-01-08 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Sun Jan  8 21:11:45 UTC 2023

Modified Files:
src/distrib/sets/lists/comp: md.amd64

Log Message:
add some files that are obsolete with binutils 2.39


To generate a diff of this commit:
cvs rdiff -u -r1.293 -r1.294 src/distrib/sets/lists/comp/md.amd64

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



CVS commit: src/distrib/sets/lists/comp

2023-01-08 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Sun Jan  8 21:11:08 UTC 2023

Modified Files:
src/distrib/sets/lists/comp: md.amd64

Log Message:
sort


To generate a diff of this commit:
cvs rdiff -u -r1.292 -r1.293 src/distrib/sets/lists/comp/md.amd64

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

Modified files:

Index: src/distrib/sets/lists/comp/md.amd64
diff -u src/distrib/sets/lists/comp/md.amd64:1.292 src/distrib/sets/lists/comp/md.amd64:1.293
--- src/distrib/sets/lists/comp/md.amd64:1.292	Fri Jan  6 15:47:38 2023
+++ src/distrib/sets/lists/comp/md.amd64	Sun Jan  8 21:11:07 2023
@@ -1,4 +1,4 @@
-# $NetBSD: md.amd64,v 1.292 2023/01/06 15:47:38 christos Exp $
+# $NetBSD: md.amd64,v 1.293 2023/01/08 21:11:07 wiz Exp $
 ./usr/include/amd64comp-c-include
 ./usr/include/amd64/ansi.h			comp-c-include
 ./usr/include/amd64/aout_machdep.h		comp-c-include
@@ -70,6 +70,98 @@
 ./usr/include/amd64/varargs.h			comp-obsolete		obsolete
 ./usr/include/amd64/vmparam.h			comp-c-include
 ./usr/include/amd64/wchar_limits.h		comp-c-include
+./usr/include/clang-13.0/__wmmintrin_aes.h	comp-c-include		llvm
+./usr/include/clang-13.0/__wmmintrin_pclmul.h	comp-c-include		llvm
+./usr/include/clang-13.0/adxintrin.h		comp-c-include		llvm
+./usr/include/clang-13.0/ammintrin.h		comp-c-include		llvm
+./usr/include/clang-13.0/amxintrin.h		comp-c-include		llvm
+./usr/include/clang-13.0/avx2intrin.h		comp-c-include		llvm
+./usr/include/clang-13.0/avx512bf16intrin.h	comp-c-include		llvm
+./usr/include/clang-13.0/avx512bitalgintrin.h	comp-c-include		llvm
+./usr/include/clang-13.0/avx512bwintrin.h	comp-c-include		llvm
+./usr/include/clang-13.0/avx512cdintrin.h	comp-c-include		llvm
+./usr/include/clang-13.0/avx512dqintrin.h	comp-c-include		llvm
+./usr/include/clang-13.0/avx512erintrin.h	comp-c-include		llvm
+./usr/include/clang-13.0/avx512fintrin.h	comp-c-include		llvm
+./usr/include/clang-13.0/avx512ifmaintrin.h	comp-c-include		llvm
+./usr/include/clang-13.0/avx512ifmavlintrin.h	comp-c-include		llvm
+./usr/include/clang-13.0/avx512pfintrin.h	comp-c-include		llvm
+./usr/include/clang-13.0/avx512vbmi2intrin.h	comp-c-include		llvm
+./usr/include/clang-13.0/avx512vbmiintrin.h	comp-c-include		llvm
+./usr/include/clang-13.0/avx512vbmivlintrin.h	comp-c-include		llvm
+./usr/include/clang-13.0/avx512vlbf16intrin.h	comp-c-include		llvm
+./usr/include/clang-13.0/avx512vlbitalgintrin.h	comp-c-include		llvm
+./usr/include/clang-13.0/avx512vlbwintrin.h	comp-c-include		llvm
+./usr/include/clang-13.0/avx512vlcdintrin.h	comp-c-include		llvm
+./usr/include/clang-13.0/avx512vldqintrin.h	comp-c-include		llvm
+./usr/include/clang-13.0/avx512vlintrin.h	comp-c-include		llvm
+./usr/include/clang-13.0/avx512vlvbmi2intrin.h	comp-c-include		llvm
+./usr/include/clang-13.0/avx512vlvnniintrin.h	comp-c-include		llvm
+./usr/include/clang-13.0/avx512vlvp2intersectintrin.h	comp-c-include		llvm
+./usr/include/clang-13.0/avx512vnniintrin.h	comp-c-include		llvm
+./usr/include/clang-13.0/avx512vp2intersectintrin.h	comp-c-include		llvm
+./usr/include/clang-13.0/avx512vpopcntdqintrin.h	comp-c-include		llvm
+./usr/include/clang-13.0/avx512vpopcntdqvlintrin.h	comp-c-include		llvm
+./usr/include/clang-13.0/avxintrin.h		comp-c-include		llvm
+./usr/include/clang-13.0/avxvnniintrin.h	comp-c-include		llvm
+./usr/include/clang-13.0/bmi2intrin.h		comp-c-include		llvm
+./usr/include/clang-13.0/bmiintrin.h		comp-c-include		llvm
+./usr/include/clang-13.0/cetintrin.h		comp-c-include		llvm
+./usr/include/clang-13.0/cldemoteintrin.h	comp-c-include		llvm
+./usr/include/clang-13.0/clflushoptintrin.h	comp-c-include		llvm
+./usr/include/clang-13.0/clwbintrin.h		comp-c-include		llvm
+./usr/include/clang-13.0/clzerointrin.h		comp-c-include		llvm
+./usr/include/clang-13.0/cpuid.h		comp-c-include		llvm
+./usr/include/clang-13.0/emmintrin.h		comp-c-include		llvm
+./usr/include/clang-13.0/enqcmdintrin.h		comp-c-include		llvm
+./usr/include/clang-13.0/f16cintrin.h		comp-c-include		llvm
+./usr/include/clang-13.0/fma4intrin.h		comp-c-include		llvm
+./usr/include/clang-13.0/fmaintrin.h		comp-c-include		llvm
+./usr/include/clang-13.0/fxsrintrin.h		comp-c-include		llvm
+./usr/include/clang-13.0/gfniintrin.h		comp-c-include		llvm
+./usr/include/clang-13.0/hresetintrin.h		comp-c-include		llvm
+./usr/include/clang-13.0/ia32intrin.h		comp-c-include		llvm
+./usr/include/clang-13.0/immintrin.h		comp-c-include		llvm
+./usr/include/clang-13.0/invpcidintrin.h	comp-c-include		llvm
+./usr/include/clang-13.0/keylockerintrin.h	comp-c-include		llvm
+./usr/include/clang-13.0/lwpintrin.h		comp-c-include		llvm
+./usr/include/clang-13.0/lzcntintrin.h		comp-c-include		llvm
+./usr/include/clang-13.0/mm3dnow.h		comp-c-include		llvm
+./usr/include/clang-13.0/mm_malloc.h		comp-c-include		llvm
+./usr/include/clang-13.0/mmintrin.h		comp-c-include		llvm
+./usr/include/clang-13.0/movdirintrin.h		comp-c-include		llvm

CVS commit: src/distrib/sets/lists/comp

2023-01-08 Thread Thomas Klausner
Module Name:src
Committed By:   wiz
Date:   Sun Jan  8 21:11:08 UTC 2023

Modified Files:
src/distrib/sets/lists/comp: md.amd64

Log Message:
sort


To generate a diff of this commit:
cvs rdiff -u -r1.292 -r1.293 src/distrib/sets/lists/comp/md.amd64

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



CVS import: xsrc/external/mit/libxshmfence/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 20:52:45 UTC 2023

Update of /cvsroot/xsrc/external/mit/libxshmfence/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv8816

Log Message:
initial import of libxshmfence-1.3.2

Status:

Vendor Tag: xorg
Release Tags:   libxshmfence-1-3-2

U xsrc/external/mit/libxshmfence/dist/config.guess
U xsrc/external/mit/libxshmfence/dist/aclocal.m4
U xsrc/external/mit/libxshmfence/dist/install-sh
U xsrc/external/mit/libxshmfence/dist/ChangeLog
U xsrc/external/mit/libxshmfence/dist/config.h.in
U xsrc/external/mit/libxshmfence/dist/README.md
U xsrc/external/mit/libxshmfence/dist/configure
U xsrc/external/mit/libxshmfence/dist/test-driver
U xsrc/external/mit/libxshmfence/dist/compile
U xsrc/external/mit/libxshmfence/dist/config.sub
U xsrc/external/mit/libxshmfence/dist/Makefile.am
U xsrc/external/mit/libxshmfence/dist/COPYING
U xsrc/external/mit/libxshmfence/dist/depcomp
U xsrc/external/mit/libxshmfence/dist/missing
U xsrc/external/mit/libxshmfence/dist/ltmain.sh
U xsrc/external/mit/libxshmfence/dist/Makefile.in
U xsrc/external/mit/libxshmfence/dist/configure.ac
U xsrc/external/mit/libxshmfence/dist/xshmfence.pc.in
U xsrc/external/mit/libxshmfence/dist/test/Makefile.am
U xsrc/external/mit/libxshmfence/dist/test/xshmfence_test.c
U xsrc/external/mit/libxshmfence/dist/test/Makefile.in
U xsrc/external/mit/libxshmfence/dist/src/xshmfence_pthread.h
U xsrc/external/mit/libxshmfence/dist/src/xshmfence_futex.h
U xsrc/external/mit/libxshmfence/dist/src/xshmfence_pthread.c
U xsrc/external/mit/libxshmfence/dist/src/Makefile.in
U xsrc/external/mit/libxshmfence/dist/src/Makefile.am
U xsrc/external/mit/libxshmfence/dist/src/xshmfenceint.h
U xsrc/external/mit/libxshmfence/dist/src/xshmfence_alloc.c
U xsrc/external/mit/libxshmfence/dist/src/xshmfence.h
U xsrc/external/mit/libxshmfence/dist/src/xshmfence_futex.c

No conflicts created by this import



CVS import: xsrc/external/mit/libxshmfence/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 20:52:45 UTC 2023

Update of /cvsroot/xsrc/external/mit/libxshmfence/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv8816

Log Message:
initial import of libxshmfence-1.3.2

Status:

Vendor Tag: xorg
Release Tags:   libxshmfence-1-3-2

U xsrc/external/mit/libxshmfence/dist/config.guess
U xsrc/external/mit/libxshmfence/dist/aclocal.m4
U xsrc/external/mit/libxshmfence/dist/install-sh
U xsrc/external/mit/libxshmfence/dist/ChangeLog
U xsrc/external/mit/libxshmfence/dist/config.h.in
U xsrc/external/mit/libxshmfence/dist/README.md
U xsrc/external/mit/libxshmfence/dist/configure
U xsrc/external/mit/libxshmfence/dist/test-driver
U xsrc/external/mit/libxshmfence/dist/compile
U xsrc/external/mit/libxshmfence/dist/config.sub
U xsrc/external/mit/libxshmfence/dist/Makefile.am
U xsrc/external/mit/libxshmfence/dist/COPYING
U xsrc/external/mit/libxshmfence/dist/depcomp
U xsrc/external/mit/libxshmfence/dist/missing
U xsrc/external/mit/libxshmfence/dist/ltmain.sh
U xsrc/external/mit/libxshmfence/dist/Makefile.in
U xsrc/external/mit/libxshmfence/dist/configure.ac
U xsrc/external/mit/libxshmfence/dist/xshmfence.pc.in
U xsrc/external/mit/libxshmfence/dist/test/Makefile.am
U xsrc/external/mit/libxshmfence/dist/test/xshmfence_test.c
U xsrc/external/mit/libxshmfence/dist/test/Makefile.in
U xsrc/external/mit/libxshmfence/dist/src/xshmfence_pthread.h
U xsrc/external/mit/libxshmfence/dist/src/xshmfence_futex.h
U xsrc/external/mit/libxshmfence/dist/src/xshmfence_pthread.c
U xsrc/external/mit/libxshmfence/dist/src/Makefile.in
U xsrc/external/mit/libxshmfence/dist/src/Makefile.am
U xsrc/external/mit/libxshmfence/dist/src/xshmfenceint.h
U xsrc/external/mit/libxshmfence/dist/src/xshmfence_alloc.c
U xsrc/external/mit/libxshmfence/dist/src/xshmfence.h
U xsrc/external/mit/libxshmfence/dist/src/xshmfence_futex.c

No conflicts created by this import



CVS import: xsrc/external/mit/libxkbfile/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 20:52:43 UTC 2023

Update of /cvsroot/xsrc/external/mit/libxkbfile/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv11329

Log Message:
initial import of libxkbfile-1.1.2

Status:

Vendor Tag: xorg
Release Tags:   libxkbfile-1-1-2

U xsrc/external/mit/libxkbfile/dist/config.h.in
U xsrc/external/mit/libxkbfile/dist/install-sh
U xsrc/external/mit/libxkbfile/dist/aclocal.m4
U xsrc/external/mit/libxkbfile/dist/INSTALL
U xsrc/external/mit/libxkbfile/dist/README.md
U xsrc/external/mit/libxkbfile/dist/configure
U xsrc/external/mit/libxkbfile/dist/ChangeLog
U xsrc/external/mit/libxkbfile/dist/configure.ac
U xsrc/external/mit/libxkbfile/dist/depcomp
U xsrc/external/mit/libxkbfile/dist/missing
U xsrc/external/mit/libxkbfile/dist/config.sub
U xsrc/external/mit/libxkbfile/dist/config.guess
U xsrc/external/mit/libxkbfile/dist/Makefile.in
U xsrc/external/mit/libxkbfile/dist/Makefile.am
U xsrc/external/mit/libxkbfile/dist/compile
U xsrc/external/mit/libxkbfile/dist/ltmain.sh
U xsrc/external/mit/libxkbfile/dist/COPYING
U xsrc/external/mit/libxkbfile/dist/xkbfile.pc.in
U xsrc/external/mit/libxkbfile/dist/src/XKBfileInt.h
U xsrc/external/mit/libxkbfile/dist/src/cout.c
U xsrc/external/mit/libxkbfile/dist/src/Makefile.am
U xsrc/external/mit/libxkbfile/dist/src/xkbconfig.c
U xsrc/external/mit/libxkbfile/dist/src/magic
U xsrc/external/mit/libxkbfile/dist/src/xkmread.c
U xsrc/external/mit/libxkbfile/dist/src/maprules.c
U xsrc/external/mit/libxkbfile/dist/src/xkberrs.c
U xsrc/external/mit/libxkbfile/dist/src/Makefile.in
U xsrc/external/mit/libxkbfile/dist/src/xkbout.c
U xsrc/external/mit/libxkbfile/dist/src/xkbdraw.c
U xsrc/external/mit/libxkbfile/dist/src/xkbtext.c
U xsrc/external/mit/libxkbfile/dist/src/xkbmisc.c
U xsrc/external/mit/libxkbfile/dist/src/srvmisc.c
U xsrc/external/mit/libxkbfile/dist/src/xkbatom.c
U xsrc/external/mit/libxkbfile/dist/src/xkbbells.c
U xsrc/external/mit/libxkbfile/dist/src/xkmout.c
U xsrc/external/mit/libxkbfile/dist/include/X11/extensions/XKBconfig.h
U xsrc/external/mit/libxkbfile/dist/include/X11/extensions/XKMformat.h
U xsrc/external/mit/libxkbfile/dist/include/X11/extensions/XKBbells.h
U xsrc/external/mit/libxkbfile/dist/include/X11/extensions/XKBrules.h
U xsrc/external/mit/libxkbfile/dist/include/X11/extensions/XKM.h
U xsrc/external/mit/libxkbfile/dist/include/X11/extensions/XKBfile.h

No conflicts created by this import



CVS import: xsrc/external/mit/libfontenc/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 20:52:38 UTC 2023

Update of /cvsroot/xsrc/external/mit/libfontenc/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv9707

Log Message:
initial import of libfontenc-1.1.7

Status:

Vendor Tag: xorg
Release Tags:   libfontenc-1-1-7

U xsrc/external/mit/libfontenc/dist/COPYING
U xsrc/external/mit/libfontenc/dist/compile
U xsrc/external/mit/libfontenc/dist/ltmain.sh
U xsrc/external/mit/libfontenc/dist/Makefile.in
U xsrc/external/mit/libfontenc/dist/depcomp
U xsrc/external/mit/libfontenc/dist/missing
U xsrc/external/mit/libfontenc/dist/install-sh
U xsrc/external/mit/libfontenc/dist/Makefile.am
U xsrc/external/mit/libfontenc/dist/config.guess
U xsrc/external/mit/libfontenc/dist/aclocal.m4
U xsrc/external/mit/libfontenc/dist/config.h.in
U xsrc/external/mit/libfontenc/dist/configure.ac
U xsrc/external/mit/libfontenc/dist/README.md
U xsrc/external/mit/libfontenc/dist/configure
U xsrc/external/mit/libfontenc/dist/INSTALL
U xsrc/external/mit/libfontenc/dist/ChangeLog
U xsrc/external/mit/libfontenc/dist/config.sub
U xsrc/external/mit/libfontenc/dist/fontenc.pc.in
U xsrc/external/mit/libfontenc/dist/include/X11/fonts/fontenc.h
U xsrc/external/mit/libfontenc/dist/src/reallocarray.c
U xsrc/external/mit/libfontenc/dist/src/fontenc.c
U xsrc/external/mit/libfontenc/dist/src/reallocarray.h
U xsrc/external/mit/libfontenc/dist/src/encparse.c
U xsrc/external/mit/libfontenc/dist/src/Makefile.in
U xsrc/external/mit/libfontenc/dist/src/Makefile.am
U xsrc/external/mit/libfontenc/dist/src/fontencI.h

No conflicts created by this import



CVS import: xsrc/external/mit/libxkbfile/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 20:52:43 UTC 2023

Update of /cvsroot/xsrc/external/mit/libxkbfile/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv11329

Log Message:
initial import of libxkbfile-1.1.2

Status:

Vendor Tag: xorg
Release Tags:   libxkbfile-1-1-2

U xsrc/external/mit/libxkbfile/dist/config.h.in
U xsrc/external/mit/libxkbfile/dist/install-sh
U xsrc/external/mit/libxkbfile/dist/aclocal.m4
U xsrc/external/mit/libxkbfile/dist/INSTALL
U xsrc/external/mit/libxkbfile/dist/README.md
U xsrc/external/mit/libxkbfile/dist/configure
U xsrc/external/mit/libxkbfile/dist/ChangeLog
U xsrc/external/mit/libxkbfile/dist/configure.ac
U xsrc/external/mit/libxkbfile/dist/depcomp
U xsrc/external/mit/libxkbfile/dist/missing
U xsrc/external/mit/libxkbfile/dist/config.sub
U xsrc/external/mit/libxkbfile/dist/config.guess
U xsrc/external/mit/libxkbfile/dist/Makefile.in
U xsrc/external/mit/libxkbfile/dist/Makefile.am
U xsrc/external/mit/libxkbfile/dist/compile
U xsrc/external/mit/libxkbfile/dist/ltmain.sh
U xsrc/external/mit/libxkbfile/dist/COPYING
U xsrc/external/mit/libxkbfile/dist/xkbfile.pc.in
U xsrc/external/mit/libxkbfile/dist/src/XKBfileInt.h
U xsrc/external/mit/libxkbfile/dist/src/cout.c
U xsrc/external/mit/libxkbfile/dist/src/Makefile.am
U xsrc/external/mit/libxkbfile/dist/src/xkbconfig.c
U xsrc/external/mit/libxkbfile/dist/src/magic
U xsrc/external/mit/libxkbfile/dist/src/xkmread.c
U xsrc/external/mit/libxkbfile/dist/src/maprules.c
U xsrc/external/mit/libxkbfile/dist/src/xkberrs.c
U xsrc/external/mit/libxkbfile/dist/src/Makefile.in
U xsrc/external/mit/libxkbfile/dist/src/xkbout.c
U xsrc/external/mit/libxkbfile/dist/src/xkbdraw.c
U xsrc/external/mit/libxkbfile/dist/src/xkbtext.c
U xsrc/external/mit/libxkbfile/dist/src/xkbmisc.c
U xsrc/external/mit/libxkbfile/dist/src/srvmisc.c
U xsrc/external/mit/libxkbfile/dist/src/xkbatom.c
U xsrc/external/mit/libxkbfile/dist/src/xkbbells.c
U xsrc/external/mit/libxkbfile/dist/src/xkmout.c
U xsrc/external/mit/libxkbfile/dist/include/X11/extensions/XKBconfig.h
U xsrc/external/mit/libxkbfile/dist/include/X11/extensions/XKMformat.h
U xsrc/external/mit/libxkbfile/dist/include/X11/extensions/XKBbells.h
U xsrc/external/mit/libxkbfile/dist/include/X11/extensions/XKBrules.h
U xsrc/external/mit/libxkbfile/dist/include/X11/extensions/XKM.h
U xsrc/external/mit/libxkbfile/dist/include/X11/extensions/XKBfile.h

No conflicts created by this import



CVS import: xsrc/external/mit/libXau/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 20:52:35 UTC 2023

Update of /cvsroot/xsrc/external/mit/libXau/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv13832

Log Message:
initial import of libXau-1.0.11

Status:

Vendor Tag: xorg
Release Tags:   libXau-1-0-11

U xsrc/external/mit/libXau/dist/AuUnlock.c
U xsrc/external/mit/libXau/dist/Autest.c
U xsrc/external/mit/libXau/dist/config.sub
U xsrc/external/mit/libXau/dist/AuDispose.c
U xsrc/external/mit/libXau/dist/ltmain.sh
U xsrc/external/mit/libXau/dist/config.h.in
U xsrc/external/mit/libXau/dist/xau.pc.in
U xsrc/external/mit/libXau/dist/INSTALL
U xsrc/external/mit/libXau/dist/configure.ac
U xsrc/external/mit/libXau/dist/AuFileName.c
U xsrc/external/mit/libXau/dist/AuLock.c
U xsrc/external/mit/libXau/dist/Makefile.in
U xsrc/external/mit/libXau/dist/ChangeLog
U xsrc/external/mit/libXau/dist/missing
U xsrc/external/mit/libXau/dist/depcomp
U xsrc/external/mit/libXau/dist/aclocal.m4
U xsrc/external/mit/libXau/dist/config.guess
U xsrc/external/mit/libXau/dist/AuGetBest.c
U xsrc/external/mit/libXau/dist/install-sh
U xsrc/external/mit/libXau/dist/configure
U xsrc/external/mit/libXau/dist/compile
U xsrc/external/mit/libXau/dist/AUTHORS
U xsrc/external/mit/libXau/dist/AuRead.c
U xsrc/external/mit/libXau/dist/AuGetAddr.c
U xsrc/external/mit/libXau/dist/Makefile.am
U xsrc/external/mit/libXau/dist/test-driver
U xsrc/external/mit/libXau/dist/AuWrite.c
U xsrc/external/mit/libXau/dist/README
U xsrc/external/mit/libXau/dist/COPYING
U xsrc/external/mit/libXau/dist/man/XauUnlockAuth.man
U xsrc/external/mit/libXau/dist/man/XauGetAuthByAddr.man
U xsrc/external/mit/libXau/dist/man/Makefile.am
U xsrc/external/mit/libXau/dist/man/XauWriteAuth.man
U xsrc/external/mit/libXau/dist/man/XauLockAuth.man
U xsrc/external/mit/libXau/dist/man/Makefile.in
U xsrc/external/mit/libXau/dist/man/Xau.man
U xsrc/external/mit/libXau/dist/man/XauGetBestAuthByAddr.man
U xsrc/external/mit/libXau/dist/man/XauReadAuth.man
U xsrc/external/mit/libXau/dist/man/XauDisposeAuth.man
U xsrc/external/mit/libXau/dist/man/XauFileName.man
U xsrc/external/mit/libXau/dist/include/X11/Xauth.h

No conflicts created by this import



CVS import: xsrc/external/mit/libXau/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 20:52:35 UTC 2023

Update of /cvsroot/xsrc/external/mit/libXau/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv13832

Log Message:
initial import of libXau-1.0.11

Status:

Vendor Tag: xorg
Release Tags:   libXau-1-0-11

U xsrc/external/mit/libXau/dist/AuUnlock.c
U xsrc/external/mit/libXau/dist/Autest.c
U xsrc/external/mit/libXau/dist/config.sub
U xsrc/external/mit/libXau/dist/AuDispose.c
U xsrc/external/mit/libXau/dist/ltmain.sh
U xsrc/external/mit/libXau/dist/config.h.in
U xsrc/external/mit/libXau/dist/xau.pc.in
U xsrc/external/mit/libXau/dist/INSTALL
U xsrc/external/mit/libXau/dist/configure.ac
U xsrc/external/mit/libXau/dist/AuFileName.c
U xsrc/external/mit/libXau/dist/AuLock.c
U xsrc/external/mit/libXau/dist/Makefile.in
U xsrc/external/mit/libXau/dist/ChangeLog
U xsrc/external/mit/libXau/dist/missing
U xsrc/external/mit/libXau/dist/depcomp
U xsrc/external/mit/libXau/dist/aclocal.m4
U xsrc/external/mit/libXau/dist/config.guess
U xsrc/external/mit/libXau/dist/AuGetBest.c
U xsrc/external/mit/libXau/dist/install-sh
U xsrc/external/mit/libXau/dist/configure
U xsrc/external/mit/libXau/dist/compile
U xsrc/external/mit/libXau/dist/AUTHORS
U xsrc/external/mit/libXau/dist/AuRead.c
U xsrc/external/mit/libXau/dist/AuGetAddr.c
U xsrc/external/mit/libXau/dist/Makefile.am
U xsrc/external/mit/libXau/dist/test-driver
U xsrc/external/mit/libXau/dist/AuWrite.c
U xsrc/external/mit/libXau/dist/README
U xsrc/external/mit/libXau/dist/COPYING
U xsrc/external/mit/libXau/dist/man/XauUnlockAuth.man
U xsrc/external/mit/libXau/dist/man/XauGetAuthByAddr.man
U xsrc/external/mit/libXau/dist/man/Makefile.am
U xsrc/external/mit/libXau/dist/man/XauWriteAuth.man
U xsrc/external/mit/libXau/dist/man/XauLockAuth.man
U xsrc/external/mit/libXau/dist/man/Makefile.in
U xsrc/external/mit/libXau/dist/man/Xau.man
U xsrc/external/mit/libXau/dist/man/XauGetBestAuthByAddr.man
U xsrc/external/mit/libXau/dist/man/XauReadAuth.man
U xsrc/external/mit/libXau/dist/man/XauDisposeAuth.man
U xsrc/external/mit/libXau/dist/man/XauFileName.man
U xsrc/external/mit/libXau/dist/include/X11/Xauth.h

No conflicts created by this import



CVS import: xsrc/external/mit/libfontenc/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 20:52:38 UTC 2023

Update of /cvsroot/xsrc/external/mit/libfontenc/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv9707

Log Message:
initial import of libfontenc-1.1.7

Status:

Vendor Tag: xorg
Release Tags:   libfontenc-1-1-7

U xsrc/external/mit/libfontenc/dist/COPYING
U xsrc/external/mit/libfontenc/dist/compile
U xsrc/external/mit/libfontenc/dist/ltmain.sh
U xsrc/external/mit/libfontenc/dist/Makefile.in
U xsrc/external/mit/libfontenc/dist/depcomp
U xsrc/external/mit/libfontenc/dist/missing
U xsrc/external/mit/libfontenc/dist/install-sh
U xsrc/external/mit/libfontenc/dist/Makefile.am
U xsrc/external/mit/libfontenc/dist/config.guess
U xsrc/external/mit/libfontenc/dist/aclocal.m4
U xsrc/external/mit/libfontenc/dist/config.h.in
U xsrc/external/mit/libfontenc/dist/configure.ac
U xsrc/external/mit/libfontenc/dist/README.md
U xsrc/external/mit/libfontenc/dist/configure
U xsrc/external/mit/libfontenc/dist/INSTALL
U xsrc/external/mit/libfontenc/dist/ChangeLog
U xsrc/external/mit/libfontenc/dist/config.sub
U xsrc/external/mit/libfontenc/dist/fontenc.pc.in
U xsrc/external/mit/libfontenc/dist/include/X11/fonts/fontenc.h
U xsrc/external/mit/libfontenc/dist/src/reallocarray.c
U xsrc/external/mit/libfontenc/dist/src/fontenc.c
U xsrc/external/mit/libfontenc/dist/src/reallocarray.h
U xsrc/external/mit/libfontenc/dist/src/encparse.c
U xsrc/external/mit/libfontenc/dist/src/Makefile.in
U xsrc/external/mit/libfontenc/dist/src/Makefile.am
U xsrc/external/mit/libfontenc/dist/src/fontencI.h

No conflicts created by this import



CVS commit: src

2023-01-08 Thread Roland Illig
Module Name:src
Committed By:   rillig
Date:   Sun Jan  8 18:37:12 UTC 2023

Modified Files:
src/tests/usr.bin/xlint/lint1: queries.c
src/usr.bin/xlint/lint1: tree.c

Log Message:
lint: do not report usual arithmetic conversions for constants


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/tests/usr.bin/xlint/lint1/queries.c
cvs rdiff -u -r1.488 -r1.489 src/usr.bin/xlint/lint1/tree.c

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

Modified files:

Index: src/tests/usr.bin/xlint/lint1/queries.c
diff -u src/tests/usr.bin/xlint/lint1/queries.c:1.7 src/tests/usr.bin/xlint/lint1/queries.c:1.8
--- src/tests/usr.bin/xlint/lint1/queries.c:1.7	Sun Jan  8 18:21:00 2023
+++ src/tests/usr.bin/xlint/lint1/queries.c	Sun Jan  8 18:37:12 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: queries.c,v 1.7 2023/01/08 18:21:00 rillig Exp $	*/
+/*	$NetBSD: queries.c,v 1.8 2023/01/08 18:37:12 rillig Exp $	*/
 # 3 "queries.c"
 
 /*
@@ -96,13 +96,22 @@ unsigned long long
 Q4(signed char *ptr, int i, unsigned long long ull)
 {
 
-	/* expect+1: usual arithmetic conversion for '&' from 'int' to 'unsigned int' [Q4] */
+	/*
+	 * For constants, the usual arithmetic conversions are usually not
+	 * interesting, so omit them.
+	 */
 	u32 = u32 & 0xff;
+	u32 &= 0xff;
+
+	/* expect+2: usual arithmetic conversion for '&' from 'int' to 'unsigned int' [Q4] */
+	/* expect+1: implicit conversion changes sign from 'int' to 'unsigned int' [Q3] */
+	u32 = u32 & s32;
 	/*
 	 * XXX: C99 5.6.16.2 says that the usual arithmetic conversions
 	 * happen for compound assignments as well.
 	 */
-	u32 &= 0xff;
+	/* expect+1: implicit conversion changes sign from 'int' to 'unsigned int' [Q3] */
+	u32 &= s32;
 
 	/* expect+3: implicit conversion changes sign from 'unsigned char' to 'int' [Q3] */
 	/* expect+2: usual arithmetic conversion for '&' from 'int' to 'unsigned int' [Q4] */

Index: src/usr.bin/xlint/lint1/tree.c
diff -u src/usr.bin/xlint/lint1/tree.c:1.488 src/usr.bin/xlint/lint1/tree.c:1.489
--- src/usr.bin/xlint/lint1/tree.c:1.488	Sun Jan  8 18:29:21 2023
+++ src/usr.bin/xlint/lint1/tree.c	Sun Jan  8 18:37:12 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: tree.c,v 1.488 2023/01/08 18:29:21 rillig Exp $	*/
+/*	$NetBSD: tree.c,v 1.489 2023/01/08 18:37:12 rillig Exp $	*/
 
 /*
  * Copyright (c) 1994, 1995 Jochen Pohl
@@ -37,7 +37,7 @@
 
 #include 
 #if defined(__RCSID)
-__RCSID("$NetBSD: tree.c,v 1.488 2023/01/08 18:29:21 rillig Exp $");
+__RCSID("$NetBSD: tree.c,v 1.489 2023/01/08 18:37:12 rillig Exp $");
 #endif
 
 #include 
@@ -2223,9 +2223,11 @@ apply_usual_arithmetic_conversions(op_t 
 {
 	type_t *ntp = expr_dup_type(tn->tn_type);
 	ntp->t_tspec = t;
-	/* usual arithmetic conversion for '%s' from '%s' to '%s' */
-	query_message(4, op_name(op),
-	type_name(tn->tn_type), type_name(ntp));
+	if (tn->tn_op != CON) {
+		/* usual arithmetic conversion for '%s' from '%s' to '%s' */
+		query_message(4, op_name(op),
+		type_name(tn->tn_type), type_name(ntp));
+	}
 	return convert(op, 0, ntp, tn);
 }
 



CVS commit: src

2023-01-08 Thread Roland Illig
Module Name:src
Committed By:   rillig
Date:   Sun Jan  8 18:37:12 UTC 2023

Modified Files:
src/tests/usr.bin/xlint/lint1: queries.c
src/usr.bin/xlint/lint1: tree.c

Log Message:
lint: do not report usual arithmetic conversions for constants


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/tests/usr.bin/xlint/lint1/queries.c
cvs rdiff -u -r1.488 -r1.489 src/usr.bin/xlint/lint1/tree.c

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



CVS commit: src/usr.bin/xlint/lint1

2023-01-08 Thread Roland Illig
Module Name:src
Committed By:   rillig
Date:   Sun Jan  8 18:29:21 UTC 2023

Modified Files:
src/usr.bin/xlint/lint1: tree.c

Log Message:
lint: extract usual arithmetic conversions to separate function

No functional change.


To generate a diff of this commit:
cvs rdiff -u -r1.487 -r1.488 src/usr.bin/xlint/lint1/tree.c

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

Modified files:

Index: src/usr.bin/xlint/lint1/tree.c
diff -u src/usr.bin/xlint/lint1/tree.c:1.487 src/usr.bin/xlint/lint1/tree.c:1.488
--- src/usr.bin/xlint/lint1/tree.c:1.487	Sun Jan  8 15:22:33 2023
+++ src/usr.bin/xlint/lint1/tree.c	Sun Jan  8 18:29:21 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: tree.c,v 1.487 2023/01/08 15:22:33 rillig Exp $	*/
+/*	$NetBSD: tree.c,v 1.488 2023/01/08 18:29:21 rillig Exp $	*/
 
 /*
  * Copyright (c) 1994, 1995 Jochen Pohl
@@ -37,7 +37,7 @@
 
 #include 
 #if defined(__RCSID)
-__RCSID("$NetBSD: tree.c,v 1.487 2023/01/08 15:22:33 rillig Exp $");
+__RCSID("$NetBSD: tree.c,v 1.488 2023/01/08 18:29:21 rillig Exp $");
 #endif
 
 #include 
@@ -2218,6 +2218,17 @@ promote(op_t op, bool farg, tnode_t *tn)
 	return tn;
 }
 
+static tnode_t *
+apply_usual_arithmetic_conversions(op_t op, tnode_t *tn, tspec_t t)
+{
+	type_t *ntp = expr_dup_type(tn->tn_type);
+	ntp->t_tspec = t;
+	/* usual arithmetic conversion for '%s' from '%s' to '%s' */
+	query_message(4, op_name(op),
+	type_name(tn->tn_type), type_name(ntp));
+	return convert(op, 0, ntp, tn);
+}
+
 /*
  * Apply the "usual arithmetic conversions" (C99 6.3.1.8).
  *
@@ -2230,7 +2241,6 @@ balance(op_t op, tnode_t **lnp, tnode_t 
 	tspec_t	lt, rt, t;
 	int	i;
 	bool	u;
-	type_t	*ntp;
 	static const tspec_t tl[] = {
 		LDOUBLE, DOUBLE, FLOAT,
 #ifdef INT128_SIZE
@@ -2295,22 +2305,10 @@ balance(op_t op, tnode_t **lnp, tnode_t 
 			t = unsigned_type(t);
 	}
 
-	if (t != lt) {
-		ntp = expr_dup_type((*lnp)->tn_type);
-		ntp->t_tspec = t;
-		/* usual arithmetic conversion for '%s' from '%s' to '%s' */
-		query_message(4, op_name(op),
-		type_name((*lnp)->tn_type), type_name(ntp));
-		*lnp = convert(op, 0, ntp, *lnp);
-	}
-	if (t != rt) {
-		ntp = expr_dup_type((*rnp)->tn_type);
-		ntp->t_tspec = t;
-		/* usual arithmetic conversion for '%s' from '%s' to '%s' */
-		query_message(4, op_name(op),
-		type_name((*rnp)->tn_type), type_name(ntp));
-		*rnp = convert(op, 0, ntp, *rnp);
-	}
+	if (t != lt)
+		*lnp = apply_usual_arithmetic_conversions(op, *lnp, t);
+	if (t != rt)
+		*rnp = apply_usual_arithmetic_conversions(op, *rnp, t);
 }
 
 static void



CVS commit: src/usr.bin/xlint/lint1

2023-01-08 Thread Roland Illig
Module Name:src
Committed By:   rillig
Date:   Sun Jan  8 18:29:21 UTC 2023

Modified Files:
src/usr.bin/xlint/lint1: tree.c

Log Message:
lint: extract usual arithmetic conversions to separate function

No functional change.


To generate a diff of this commit:
cvs rdiff -u -r1.487 -r1.488 src/usr.bin/xlint/lint1/tree.c

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



CVS commit: src/tests/usr.bin/xlint/lint1

2023-01-08 Thread Roland Illig
Module Name:src
Committed By:   rillig
Date:   Sun Jan  8 18:21:00 UTC 2023

Modified Files:
src/tests/usr.bin/xlint/lint1: queries.c

Log Message:
lint/tests: test query for usual arithmetic conversions


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/tests/usr.bin/xlint/lint1/queries.c

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

Modified files:

Index: src/tests/usr.bin/xlint/lint1/queries.c
diff -u src/tests/usr.bin/xlint/lint1/queries.c:1.6 src/tests/usr.bin/xlint/lint1/queries.c:1.7
--- src/tests/usr.bin/xlint/lint1/queries.c:1.6	Sat Sep 24 19:55:44 2022
+++ src/tests/usr.bin/xlint/lint1/queries.c	Sun Jan  8 18:21:00 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: queries.c,v 1.6 2022/09/24 19:55:44 rillig Exp $	*/
+/*	$NetBSD: queries.c,v 1.7 2023/01/08 18:21:00 rillig Exp $	*/
 # 3 "queries.c"
 
 /*
@@ -95,6 +95,20 @@ Q3(int i, unsigned u)
 unsigned long long
 Q4(signed char *ptr, int i, unsigned long long ull)
 {
+
+	/* expect+1: usual arithmetic conversion for '&' from 'int' to 'unsigned int' [Q4] */
+	u32 = u32 & 0xff;
+	/*
+	 * XXX: C99 5.6.16.2 says that the usual arithmetic conversions
+	 * happen for compound assignments as well.
+	 */
+	u32 &= 0xff;
+
+	/* expect+3: implicit conversion changes sign from 'unsigned char' to 'int' [Q3] */
+	/* expect+2: usual arithmetic conversion for '&' from 'int' to 'unsigned int' [Q4] */
+	/* expect+1: implicit conversion changes sign from 'int' to 'unsigned int' [Q3] */
+	u32 = u32 & u8;
+
 	/*
 	 * The conversion from 'signed char' to 'int' is done by the integer
 	 * promotions (C11 6.3.1.1p2), not by the usual arithmetic



CVS commit: src/tests/usr.bin/xlint/lint1

2023-01-08 Thread Roland Illig
Module Name:src
Committed By:   rillig
Date:   Sun Jan  8 18:21:00 UTC 2023

Modified Files:
src/tests/usr.bin/xlint/lint1: queries.c

Log Message:
lint/tests: test query for usual arithmetic conversions


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/tests/usr.bin/xlint/lint1/queries.c

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



CVS commit: src/usr.bin/xlint/lint1

2023-01-08 Thread Roland Illig
Module Name:src
Committed By:   rillig
Date:   Sun Jan  8 17:54:03 UTC 2023

Modified Files:
src/usr.bin/xlint/lint1: err.c

Log Message:
lint: improve error message for parsing query IDs


To generate a diff of this commit:
cvs rdiff -u -r1.184 -r1.185 src/usr.bin/xlint/lint1/err.c

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

Modified files:

Index: src/usr.bin/xlint/lint1/err.c
diff -u src/usr.bin/xlint/lint1/err.c:1.184 src/usr.bin/xlint/lint1/err.c:1.185
--- src/usr.bin/xlint/lint1/err.c:1.184	Sat Oct  1 09:42:40 2022
+++ src/usr.bin/xlint/lint1/err.c	Sun Jan  8 17:54:03 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: err.c,v 1.184 2022/10/01 09:42:40 rillig Exp $	*/
+/*	$NetBSD: err.c,v 1.185 2023/01/08 17:54:03 rillig Exp $	*/
 
 /*
  * Copyright (c) 1994, 1995 Jochen Pohl
@@ -37,7 +37,7 @@
 
 #include 
 #if defined(__RCSID)
-__RCSID("$NetBSD: err.c,v 1.184 2022/10/01 09:42:40 rillig Exp $");
+__RCSID("$NetBSD: err.c,v 1.185 2023/01/08 17:54:03 rillig Exp $");
 #endif
 
 #include 
@@ -750,7 +750,7 @@ enable_queries(const char *arg)
 		if (!(ch_isdigit(s[0]) && end == e &&
 		  id < sizeof(queries) / sizeof(queries[0]) &&
 		  queries[id][0] != '\0'))
-			errx(1, "invalid query ID '%s'", s);
+			errx(1, "invalid query ID '%.*s'", (int)(e - s), s);
 
 		any_query_enabled = true;
 		is_query_enabled[id] = true;



CVS commit: src/usr.bin/xlint/lint1

2023-01-08 Thread Roland Illig
Module Name:src
Committed By:   rillig
Date:   Sun Jan  8 17:54:03 UTC 2023

Modified Files:
src/usr.bin/xlint/lint1: err.c

Log Message:
lint: improve error message for parsing query IDs


To generate a diff of this commit:
cvs rdiff -u -r1.184 -r1.185 src/usr.bin/xlint/lint1/err.c

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



CVS commit: src/sys/sys

2023-01-08 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Jan  8 17:03:42 UTC 2023

Modified Files:
src/sys/sys: exec_elf.h

Log Message:
sync machine list with spec


To generate a diff of this commit:
cvs rdiff -u -r1.170 -r1.171 src/sys/sys/exec_elf.h

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

Modified files:

Index: src/sys/sys/exec_elf.h
diff -u src/sys/sys/exec_elf.h:1.170 src/sys/sys/exec_elf.h:1.171
--- src/sys/sys/exec_elf.h:1.170	Wed Jun  8 06:12:42 2022
+++ src/sys/sys/exec_elf.h	Sun Jan  8 12:03:42 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: exec_elf.h,v 1.170 2022/06/08 10:12:42 rin Exp $	*/
+/*	$NetBSD: exec_elf.h,v 1.171 2023/01/08 17:03:42 christos Exp $	*/
 
 /*-
  * Copyright (c) 1994 The NetBSD Foundation, Inc.
@@ -216,7 +216,7 @@ typedef struct {
 #define EM_68K		4	/* Motorola 68000 */
 #define EM_88K		5	/* Motorola 88000 */
 #define EM_486		6	/* Intel 80486 [old] */
-#define EM_IAMCU	6	/* Intel MCU. */
+#define EM_IAMCU	EM_486	/* Intel MCU. */
 #define EM_860		7	/* Intel 80860 */
 #define EM_MIPS		8	/* MIPS I Architecture */
 #define EM_S370		9	/* Amdahl UTS on System/370 */
@@ -292,6 +292,7 @@ typedef struct {
 #define EM_OR1K		92	/* OpenRISC 32-bit embedded processor */
 #define EM_OPENRISC	EM_OR1K
 #define EM_ARC_A5	93	/* ARC Cores Tangent-A5 */
+#define EM_ARC_COMPACT	EM_ARC_A5 /* ARC International ARCompact processor (old spelling/synonym: EM_ARC_A5) */
 #define EM_XTENSA	94	/* Tensilica Xtensa Architecture */
 #define EM_VIDEOCORE	95	/* Alphamosaic VideoCore processor */
 #define EM_TMM_GPP	96	/* Thompson Multimedia General Purpose Processor */
@@ -362,6 +363,7 @@ typedef struct {
 #define EM_AARCH64	183	/* AArch64 64-bit ARM microprocessor */
 			/* 184 - Reserved */
 #define EM_AVR32	185	/* Atmel Corporation 32-bit microprocessor family*/
+#define EM_STM8		186	/* STMicroeletronics STM8 8-bit microcontroller */
 #define EM_TILE64	187	/* Tilera TILE64 multicore architecture family */
 #define EM_TILEPRO	188	/* Tilera TILEPro multicore architecture family */
 #define EM_MICROBLAZE	189	/* Xilinx MicroBlaze 32-bit RISC soft processor core */



CVS commit: src/sys/sys

2023-01-08 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Jan  8 17:03:42 UTC 2023

Modified Files:
src/sys/sys: exec_elf.h

Log Message:
sync machine list with spec


To generate a diff of this commit:
cvs rdiff -u -r1.170 -r1.171 src/sys/sys/exec_elf.h

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



CVS commit: src/usr.sbin/flashctl

2023-01-08 Thread Roland Illig
Module Name:src
Committed By:   rillig
Date:   Sun Jan  8 16:01:50 UTC 2023

Modified Files:
src/usr.sbin/flashctl: flashctl.c

Log Message:
flashctl: use consistent markup in usage message


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/usr.sbin/flashctl/flashctl.c

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

Modified files:

Index: src/usr.sbin/flashctl/flashctl.c
diff -u src/usr.sbin/flashctl/flashctl.c:1.8 src/usr.sbin/flashctl/flashctl.c:1.9
--- src/usr.sbin/flashctl/flashctl.c:1.8	Sun Jan  8 15:55:25 2023
+++ src/usr.sbin/flashctl/flashctl.c	Sun Jan  8 16:01:49 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: flashctl.c,v 1.8 2023/01/08 15:55:25 rillig Exp $	*/
+/*	$NetBSD: flashctl.c,v 1.9 2023/01/08 16:01:49 rillig Exp $	*/
 
 /*-
  * Copyright (c) 2010 Department of Software Engineering,
@@ -32,7 +32,7 @@
  */
 
 #include 
-__RCSID("$NetBSD: flashctl.c,v 1.8 2023/01/08 15:55:25 rillig Exp $");
+__RCSID("$NetBSD: flashctl.c,v 1.9 2023/01/08 16:01:49 rillig Exp $");
 
 #include 
 #include 
@@ -252,12 +252,12 @@ to_intmax(intmax_t *num, const char *str
 void
 usage(void)
 {
-	fprintf(stderr, "usage: %s device identify\n",
+	fprintf(stderr, "usage: %s  identify\n",
 	getprogname());
-	fprintf(stderr, "   %s device erase  |all\n",
+	fprintf(stderr, "   %s  erase  |all\n",
 	getprogname());
-	fprintf(stderr, "   %s device badblocks\n",
+	fprintf(stderr, "   %s  badblocks\n",
 	getprogname());
-	fprintf(stderr, "   %s device markbad \n",
+	fprintf(stderr, "   %s  markbad \n",
 	getprogname());
 }



CVS commit: src/usr.sbin/flashctl

2023-01-08 Thread Roland Illig
Module Name:src
Committed By:   rillig
Date:   Sun Jan  8 16:01:50 UTC 2023

Modified Files:
src/usr.sbin/flashctl: flashctl.c

Log Message:
flashctl: use consistent markup in usage message


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/usr.sbin/flashctl/flashctl.c

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



CVS commit: src/usr.sbin/flashctl

2023-01-08 Thread Roland Illig
Module Name:src
Committed By:   rillig
Date:   Sun Jan  8 15:55:26 UTC 2023

Modified Files:
src/usr.sbin/flashctl: flashctl.c

Log Message:
flashctl: remove trailing whitespace

No binary change.


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/usr.sbin/flashctl/flashctl.c

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

Modified files:

Index: src/usr.sbin/flashctl/flashctl.c
diff -u src/usr.sbin/flashctl/flashctl.c:1.7 src/usr.sbin/flashctl/flashctl.c:1.8
--- src/usr.sbin/flashctl/flashctl.c:1.7	Sun Jan  8 15:52:30 2023
+++ src/usr.sbin/flashctl/flashctl.c	Sun Jan  8 15:55:25 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: flashctl.c,v 1.7 2023/01/08 15:52:30 rillig Exp $	*/
+/*	$NetBSD: flashctl.c,v 1.8 2023/01/08 15:55:25 rillig Exp $	*/
 
 /*-
  * Copyright (c) 2010 Department of Software Engineering,
@@ -32,7 +32,7 @@
  */
 
 #include 
-__RCSID("$NetBSD: flashctl.c,v 1.7 2023/01/08 15:52:30 rillig Exp $");
+__RCSID("$NetBSD: flashctl.c,v 1.8 2023/01/08 15:55:25 rillig Exp $");
 
 #include 
 #include 
@@ -140,7 +140,7 @@ main(int argc, char **argv)
 		printf("\n");
 
 		/* TODO: humanize */
-		printf("Capacity %jd Mbytes, %jd pages, %ju bytes/page\n", 
+		printf("Capacity %jd Mbytes, %jd pages, %ju bytes/page\n",
 		(intmax_t)ip.ip_flash_size / 1024 / 1024,
 		(intmax_t)ip.ip_flash_size / ip.ip_page_size,
 		(intmax_t)ip.ip_page_size);



CVS commit: src/usr.sbin/flashctl

2023-01-08 Thread Roland Illig
Module Name:src
Committed By:   rillig
Date:   Sun Jan  8 15:55:26 UTC 2023

Modified Files:
src/usr.sbin/flashctl: flashctl.c

Log Message:
flashctl: remove trailing whitespace

No binary change.


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/usr.sbin/flashctl/flashctl.c

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



CVS commit: src/usr.sbin/flashctl

2023-01-08 Thread Roland Illig
Module Name:src
Committed By:   rillig
Date:   Sun Jan  8 15:52:30 UTC 2023

Modified Files:
src/usr.sbin/flashctl: flashctl.c

Log Message:
flashctl: unexport local functions, add CVS ID

No functional change.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/usr.sbin/flashctl/flashctl.c

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

Modified files:

Index: src/usr.sbin/flashctl/flashctl.c
diff -u src/usr.sbin/flashctl/flashctl.c:1.6 src/usr.sbin/flashctl/flashctl.c:1.7
--- src/usr.sbin/flashctl/flashctl.c:1.6	Sun Jan  8 15:49:51 2023
+++ src/usr.sbin/flashctl/flashctl.c	Sun Jan  8 15:52:30 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: flashctl.c,v 1.6 2023/01/08 15:49:51 rillig Exp $	*/
+/*	$NetBSD: flashctl.c,v 1.7 2023/01/08 15:52:30 rillig Exp $	*/
 
 /*-
  * Copyright (c) 2010 Department of Software Engineering,
@@ -31,6 +31,9 @@
  * SUCH DAMAGE.
  */
 
+#include 
+__RCSID("$NetBSD: flashctl.c,v 1.7 2023/01/08 15:52:30 rillig Exp $");
+
 #include 
 #include 
 #include 
@@ -45,8 +48,8 @@
 #include 
 
 
-void usage(void);
-int to_intmax(intmax_t *, const char *);
+static void usage(void);
+static int to_intmax(intmax_t *, const char *);
 
 int
 main(int argc, char **argv)



CVS commit: src/usr.sbin/flashctl

2023-01-08 Thread Roland Illig
Module Name:src
Committed By:   rillig
Date:   Sun Jan  8 15:52:30 UTC 2023

Modified Files:
src/usr.sbin/flashctl: flashctl.c

Log Message:
flashctl: unexport local functions, add CVS ID

No functional change.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/usr.sbin/flashctl/flashctl.c

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



CVS commit: src/usr.sbin/flashctl

2023-01-08 Thread Roland Illig
Module Name:src
Committed By:   rillig
Date:   Sun Jan  8 15:49:51 UTC 2023

Modified Files:
src/usr.sbin/flashctl: Makefile flashctl.c

Log Message:
flashctl: enable lint's strict bool mode

No binary change.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/usr.sbin/flashctl/Makefile
cvs rdiff -u -r1.5 -r1.6 src/usr.sbin/flashctl/flashctl.c

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



CVS commit: src/usr.sbin/flashctl

2023-01-08 Thread Roland Illig
Module Name:src
Committed By:   rillig
Date:   Sun Jan  8 15:49:51 UTC 2023

Modified Files:
src/usr.sbin/flashctl: Makefile flashctl.c

Log Message:
flashctl: enable lint's strict bool mode

No binary change.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/usr.sbin/flashctl/Makefile
cvs rdiff -u -r1.5 -r1.6 src/usr.sbin/flashctl/flashctl.c

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

Modified files:

Index: src/usr.sbin/flashctl/Makefile
diff -u src/usr.sbin/flashctl/Makefile:1.2 src/usr.sbin/flashctl/Makefile:1.3
--- src/usr.sbin/flashctl/Makefile:1.2	Sun Feb 27 17:51:45 2011
+++ src/usr.sbin/flashctl/Makefile	Sun Jan  8 15:49:51 2023
@@ -1,9 +1,10 @@
-# $NetBSD: Makefile,v 1.2 2011/02/27 17:51:45 ahoka Exp $
+# $NetBSD: Makefile,v 1.3 2023/01/08 15:49:51 rillig Exp $
 
 SRCS=		flashctl.c
 
 PROG=		flashctl
 MAN=		flashctl.8
+LINTFLAGS+=	-T		# strict bool mode
 
 WARNS=		4
 

Index: src/usr.sbin/flashctl/flashctl.c
diff -u src/usr.sbin/flashctl/flashctl.c:1.5 src/usr.sbin/flashctl/flashctl.c:1.6
--- src/usr.sbin/flashctl/flashctl.c:1.5	Sun Jan  8 15:37:56 2023
+++ src/usr.sbin/flashctl/flashctl.c	Sun Jan  8 15:49:51 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: flashctl.c,v 1.5 2023/01/08 15:37:56 rillig Exp $	*/
+/*	$NetBSD: flashctl.c,v 1.6 2023/01/08 15:49:51 rillig Exp $	*/
 
 /*-
  * Copyright (c) 2010 Department of Software Engineering,
@@ -72,29 +72,29 @@ main(int argc, char **argv)
 		err(EXIT_FAILURE, "can't open flash device");
 	}
 
-	if (!strcmp("erase", command)) {
+	if (strcmp("erase", command) == 0) {
 		struct flash_info_params ip;
 		struct flash_erase_params ep;
 
 		error = ioctl(fd, FLASH_GET_INFO, );
-		if (error) {
+		if (error != 0) {
 			warn("ioctl: FLASH_GET_INFO");
 			goto out;
 		}
 
 		if (argc == 2) {
 			error = to_intmax(, argv[0]);
-			if (error) {
+			if (error != 0) {
 warnx("%s", strerror(error));
 goto out;
 			}
 			ep.ep_addr = n;
 
-			if (!strcmp("all", argv[1])) {
+			if (strcmp("all", argv[1]) == 0) {
 ep.ep_len = ip.ip_flash_size;
 			} else {
 error = to_intmax(, argv[1]);
-if (error) {
+if (error != 0) {
 	warnx("%s", strerror(error));
 	goto out;
 }
@@ -105,20 +105,20 @@ main(int argc, char **argv)
 			error = 1;
 			goto out;
 		}
-		
+
 		printf("Erasing %jx bytes starting from %jx\n",
-		(uintmax_t )ep.ep_len, (uintmax_t )ep.ep_addr);
-		
+		(uintmax_t)ep.ep_len, (uintmax_t)ep.ep_addr);
+
 		error = ioctl(fd, FLASH_ERASE_BLOCK, );
-		if (error) {
+		if (error != 0) {
 			warn("ioctl: FLASH_ERASE_BLOCK");
 			goto out;
 		}
-	} else if (!strcmp("identify", command)) {
+	} else if (strcmp("identify", command) == 0) {
 		struct flash_info_params ip;
-		
+
 		error = ioctl(fd, FLASH_GET_INFO, );
-		if (error) {
+		if (error != 0) {
 			warn("ioctl: FLASH_GET_INFO");
 			goto out;
 		}
@@ -138,23 +138,23 @@ main(int argc, char **argv)
 
 		/* TODO: humanize */
 		printf("Capacity %jd Mbytes, %jd pages, %ju bytes/page\n", 
-		(intmax_t )ip.ip_flash_size / 1024 / 1024,
-		(intmax_t )ip.ip_flash_size / ip.ip_page_size,
-		(intmax_t )ip.ip_page_size);
+		(intmax_t)ip.ip_flash_size / 1024 / 1024,
+		(intmax_t)ip.ip_flash_size / ip.ip_page_size,
+		(intmax_t)ip.ip_page_size);
 
 		if (ip.ip_flash_type == FLASH_TYPE_NAND) {
 			printf("Block size %jd Kbytes, %jd pages/block\n",
-			(intmax_t )ip.ip_erase_size / 1024,
-			(intmax_t )ip.ip_erase_size / ip.ip_page_size);
+			(intmax_t)ip.ip_erase_size / 1024,
+			(intmax_t)ip.ip_erase_size / ip.ip_page_size);
 		}
-	} else if (!strcmp("badblocks", command)) {
+	} else if (strcmp("badblocks", command) == 0) {
 		struct flash_info_params ip;
 		struct flash_badblock_params bbp;
 		flash_off_t addr;
 		bool hasbad = false;
 
 		error = ioctl(fd, FLASH_GET_INFO, );
-		if (error) {
+		if (error != 0) {
 			warn("ioctl: FLASH_GET_INFO");
 			goto out;
 		}
@@ -164,9 +164,9 @@ main(int argc, char **argv)
 		addr = 0;
 		while (addr < ip.ip_flash_size) {
 			bbp.bbp_addr = addr;
-			
+
 			error = ioctl(fd, FLASH_BLOCK_ISBAD, );
-			if (error) {
+			if (error != 0) {
 warn("ioctl: FLASH_BLOCK_ISBAD");
 goto out;
 			}
@@ -184,7 +184,7 @@ main(int argc, char **argv)
 		} else {
 			printf("No bad blocks found.\n");
 		}
-	} else if (!strcmp("markbad", command)) {
+	} else if (strcmp("markbad", command) == 0) {
 		flash_off_t address;
 
 		/* TODO: maybe we should let the user specify
@@ -195,26 +195,26 @@ main(int argc, char **argv)
 			error = 1;
 			goto out;
 		}
-		
+
 		error = to_intmax(, argv[0]);
-		if (error) {
+		if (error != 0) {
 			warnx("%s", strerror(error));
 			goto out;
 		}
 
 		address = n;
-		
+
 		printf("Marking block 0x%jx as bad.\n",
-		(intmax_t )address);
+		(intmax_t)address);
 
 		error = ioctl(fd, FLASH_BLOCK_MARKBAD, );
-		if (error) {
+		if (error != 0) {
 			warn("ioctl: FLASH_BLOCK_MARKBAD");
 			goto 

CVS commit: src/usr.sbin/flashctl

2023-01-08 Thread Roland Illig
Module Name:src
Committed By:   rillig
Date:   Sun Jan  8 15:37:56 UTC 2023

Modified Files:
src/usr.sbin/flashctl: flashctl.c

Log Message:
flashctl: fix error handling of integer arguments

Previously, flashctl accepted the command 'erase 0x 0x' as valid, even
though the numbers are not valid hex numbers.

Pointed out by lint, which complained about the wrong type conversion
for tolower, isxdigit and isdigit.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/usr.sbin/flashctl/flashctl.c

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

Modified files:

Index: src/usr.sbin/flashctl/flashctl.c
diff -u src/usr.sbin/flashctl/flashctl.c:1.4 src/usr.sbin/flashctl/flashctl.c:1.5
--- src/usr.sbin/flashctl/flashctl.c:1.4	Tue May 24 13:01:53 2011
+++ src/usr.sbin/flashctl/flashctl.c	Sun Jan  8 15:37:56 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: flashctl.c,v 1.4 2011/05/24 13:01:53 joerg Exp $	*/
+/*	$NetBSD: flashctl.c,v 1.5 2023/01/08 15:37:56 rillig Exp $	*/
 
 /*-
  * Copyright (c) 2010 Department of Software Engineering,
@@ -229,12 +229,12 @@ to_intmax(intmax_t *num, const char *str
 	char *endptr;
 
 	errno = 0;
-	if (str[0] == '0' && tolower((int )str[1]) == 'x') {
-		if (!isxdigit((int )str[0]))
+	if (str[0] == '0' && (str[1] == 'x' || str[1] == 'X')) {
+		if (!isxdigit((unsigned char)str[2]))
 			return EINVAL;
 		*num = strtoimax(str, , 16);
 	} else {
-		if (!isdigit((int )str[0]))
+		if (!isdigit((unsigned char)str[0]))
 			return EINVAL;
 		*num = strtoimax(str, , 10);
 	}



CVS commit: src/usr.sbin/flashctl

2023-01-08 Thread Roland Illig
Module Name:src
Committed By:   rillig
Date:   Sun Jan  8 15:37:56 UTC 2023

Modified Files:
src/usr.sbin/flashctl: flashctl.c

Log Message:
flashctl: fix error handling of integer arguments

Previously, flashctl accepted the command 'erase 0x 0x' as valid, even
though the numbers are not valid hex numbers.

Pointed out by lint, which complained about the wrong type conversion
for tolower, isxdigit and isdigit.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/usr.sbin/flashctl/flashctl.c

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



CVS commit: src

2023-01-08 Thread Roland Illig
Module Name:src
Committed By:   rillig
Date:   Sun Jan  8 15:22:33 UTC 2023

Modified Files:
src/tests/usr.bin/xlint/lint1: msg_348.c
src/usr.bin/xlint/lint1: tree.c

Log Message:
lint: recognize enum constant named 'max' as a count of values

Seen in external/bsd/mdocml/dist/mdoc.h(50).


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/tests/usr.bin/xlint/lint1/msg_348.c
cvs rdiff -u -r1.486 -r1.487 src/usr.bin/xlint/lint1/tree.c

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

Modified files:

Index: src/tests/usr.bin/xlint/lint1/msg_348.c
diff -u src/tests/usr.bin/xlint/lint1/msg_348.c:1.6 src/tests/usr.bin/xlint/lint1/msg_348.c:1.7
--- src/tests/usr.bin/xlint/lint1/msg_348.c:1.6	Sun Jan  8 15:18:02 2023
+++ src/tests/usr.bin/xlint/lint1/msg_348.c	Sun Jan  8 15:22:33 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: msg_348.c,v 1.6 2023/01/08 15:18:02 rillig Exp $	*/
+/*	$NetBSD: msg_348.c,v 1.7 2023/01/08 15:22:33 rillig Exp $	*/
 # 3 "msg_348.c"
 
 // Test for message 348: maximum value %d of '%s' does not match maximum array index %d [348]
@@ -177,7 +177,6 @@ color_with_uc_count_name(enum color_with
 enum uppercase_max {
 	M_FIRST,
 	M_SECOND,
-	/* expect+1: previous declaration of 'M_MAX' [260] */
 	M_MAX
 };
 
@@ -185,14 +184,12 @@ const char *
 uppercase_max_name(enum uppercase_max x)
 {
 	static const char *const name[] = { "first", "second" };
-	/* expect+1: warning: maximum value 2 of 'enum uppercase_max' does not match maximum array index 1 [348] */
 	return name[x];
 }
 
 enum lowercase_max {
 	M_first,
 	M_second,
-	/* expect+1: previous declaration of 'M_max' [260] */
 	M_max
 };
 
@@ -200,6 +197,5 @@ const char *
 lowercase_max_name(enum lowercase_max x)
 {
 	static const char *const name[] = { "first", "second" };
-	/* expect+1: warning: maximum value 2 of 'enum lowercase_max' does not match maximum array index 1 [348] */
 	return name[x];
 }

Index: src/usr.bin/xlint/lint1/tree.c
diff -u src/usr.bin/xlint/lint1/tree.c:1.486 src/usr.bin/xlint/lint1/tree.c:1.487
--- src/usr.bin/xlint/lint1/tree.c:1.486	Wed Jan  4 05:08:22 2023
+++ src/usr.bin/xlint/lint1/tree.c	Sun Jan  8 15:22:33 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: tree.c,v 1.486 2023/01/04 05:08:22 rillig Exp $	*/
+/*	$NetBSD: tree.c,v 1.487 2023/01/08 15:22:33 rillig Exp $	*/
 
 /*
  * Copyright (c) 1994, 1995 Jochen Pohl
@@ -37,7 +37,7 @@
 
 #include 
 #if defined(__RCSID)
-__RCSID("$NetBSD: tree.c,v 1.486 2023/01/04 05:08:22 rillig Exp $");
+__RCSID("$NetBSD: tree.c,v 1.487 2023/01/08 15:22:33 rillig Exp $");
 #endif
 
 #include 
@@ -2058,12 +2058,14 @@ check_enum_array_index(const tnode_t *ln
 		return;
 
 	/*
-	 * If the largest enum constant is named '*_NUM_*', it is typically
-	 * not part of the allowed enum values but a marker for the number
-	 * of actual enum values.
+	 * If the name of the largest enum constant contains 'MAX' or 'NUM',
+	 * that constant is typically not part of the allowed enum values but
+	 * a marker for the number of actual enum values.
 	 */
 	if (max_enum_value == max_array_index + 1 &&
-	(strstr(max_ec->s_name, "NUM") != NULL ||
+	(strstr(max_ec->s_name, "MAX") != NULL ||
+	 strstr(max_ec->s_name, "max") != NULL ||
+	 strstr(max_ec->s_name, "NUM") != NULL ||
 	 strstr(max_ec->s_name, "num") != NULL))
 		return;
 



CVS commit: src

2023-01-08 Thread Roland Illig
Module Name:src
Committed By:   rillig
Date:   Sun Jan  8 15:22:33 UTC 2023

Modified Files:
src/tests/usr.bin/xlint/lint1: msg_348.c
src/usr.bin/xlint/lint1: tree.c

Log Message:
lint: recognize enum constant named 'max' as a count of values

Seen in external/bsd/mdocml/dist/mdoc.h(50).


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/tests/usr.bin/xlint/lint1/msg_348.c
cvs rdiff -u -r1.486 -r1.487 src/usr.bin/xlint/lint1/tree.c

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



CVS commit: src/tests/usr.bin/xlint/lint1

2023-01-08 Thread Roland Illig
Module Name:src
Committed By:   rillig
Date:   Sun Jan  8 15:18:02 UTC 2023

Modified Files:
src/tests/usr.bin/xlint/lint1: msg_348.c

Log Message:
tests/lint: add more tests for enum/array mismatch


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/tests/usr.bin/xlint/lint1/msg_348.c

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

Modified files:

Index: src/tests/usr.bin/xlint/lint1/msg_348.c
diff -u src/tests/usr.bin/xlint/lint1/msg_348.c:1.5 src/tests/usr.bin/xlint/lint1/msg_348.c:1.6
--- src/tests/usr.bin/xlint/lint1/msg_348.c:1.5	Sat Jun 11 11:52:13 2022
+++ src/tests/usr.bin/xlint/lint1/msg_348.c	Sun Jan  8 15:18:02 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: msg_348.c,v 1.5 2022/06/11 11:52:13 rillig Exp $	*/
+/*	$NetBSD: msg_348.c,v 1.6 2023/01/08 15:18:02 rillig Exp $	*/
 # 3 "msg_348.c"
 
 // Test for message 348: maximum value %d of '%s' does not match maximum array index %d [348]
@@ -58,7 +58,7 @@ color_name_computed_index(enum color col
 	"green",
 	"blue"
 	};
-	/* No warning since the array index is not a name. */
+	/* No warning since the array index is not a plain identifier. */
 	return name[color + 1];
 }
 
@@ -71,7 +71,10 @@ color_name_cast_from_int(int c)
 	"green",
 	"blue"
 	};
-	/* No warning since the array index before conversion is not a name. */
+	/*
+	 * No warning since the array index before conversion is not a plain
+	 * identifier.
+	 */
 	return name[(enum color)(c + 1)];
 }
 
@@ -89,7 +92,11 @@ color_name_explicit_cast_to_int(enum col
 const char *
 color_name_computed_pointer(enum color color, const char *name)
 {
-	/* No warning since 'name' is not an array. */
+	/*
+	 * No warning since the first operand of the selection expression
+	 * is '()', whose type is not an array but instead a
+	 * 'pointer to pointer to const char'.
+	 */
 	return ()[color];
 }
 
@@ -131,7 +138,11 @@ const char *
 color_with_count_name(enum color_with_count color)
 {
 	static const char *const name[] = { "red", "green", "blue" };
-	/* No warning since the maximum enum constant is a count. */
+	/*
+	 * No warning since the word 'num' in the last enum constant
+	 * MAY indicate a convenience constant for the total number of
+	 * values, instead of a regular enum value.
+	 */
 	return name[color];
 }
 
@@ -162,3 +173,33 @@ color_with_uc_count_name(enum color_with
 	/* No warning since the maximum enum constant is a count. */
 	return name[color];
 }
+
+enum uppercase_max {
+	M_FIRST,
+	M_SECOND,
+	/* expect+1: previous declaration of 'M_MAX' [260] */
+	M_MAX
+};
+
+const char *
+uppercase_max_name(enum uppercase_max x)
+{
+	static const char *const name[] = { "first", "second" };
+	/* expect+1: warning: maximum value 2 of 'enum uppercase_max' does not match maximum array index 1 [348] */
+	return name[x];
+}
+
+enum lowercase_max {
+	M_first,
+	M_second,
+	/* expect+1: previous declaration of 'M_max' [260] */
+	M_max
+};
+
+const char *
+lowercase_max_name(enum lowercase_max x)
+{
+	static const char *const name[] = { "first", "second" };
+	/* expect+1: warning: maximum value 2 of 'enum lowercase_max' does not match maximum array index 1 [348] */
+	return name[x];
+}



CVS commit: src/tests/usr.bin/xlint/lint1

2023-01-08 Thread Roland Illig
Module Name:src
Committed By:   rillig
Date:   Sun Jan  8 15:18:02 UTC 2023

Modified Files:
src/tests/usr.bin/xlint/lint1: msg_348.c

Log Message:
tests/lint: add more tests for enum/array mismatch


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/tests/usr.bin/xlint/lint1/msg_348.c

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



CVS commit: src/usr.bin/xlint/lint1

2023-01-08 Thread Roland Illig
Module Name:src
Committed By:   rillig
Date:   Sun Jan  8 14:05:03 UTC 2023

Modified Files:
src/usr.bin/xlint/lint1: debug.c

Log Message:
lint: unclutter debug logging for nodes

No functional change.


To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 src/usr.bin/xlint/lint1/debug.c

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

Modified files:

Index: src/usr.bin/xlint/lint1/debug.c
diff -u src/usr.bin/xlint/lint1/debug.c:1.23 src/usr.bin/xlint/lint1/debug.c:1.24
--- src/usr.bin/xlint/lint1/debug.c:1.23	Sat Jul 16 22:23:38 2022
+++ src/usr.bin/xlint/lint1/debug.c	Sun Jan  8 14:05:02 2023
@@ -1,4 +1,4 @@
-/* $NetBSD: debug.c,v 1.23 2022/07/16 22:23:38 rillig Exp $ */
+/* $NetBSD: debug.c,v 1.24 2023/01/08 14:05:02 rillig Exp $ */
 
 /*-
  * Copyright (c) 2021 The NetBSD Foundation, Inc.
@@ -35,7 +35,7 @@
 
 #include 
 #if defined(__RCSID)
-__RCSID("$NetBSD: debug.c,v 1.23 2022/07/16 22:23:38 rillig Exp $");
+__RCSID("$NetBSD: debug.c,v 1.24 2023/01/08 14:05:02 rillig Exp $");
 #endif
 
 #include 
@@ -165,34 +165,40 @@ debug_node(const tnode_t *tn) // NOLINT(
 	if (tn->tn_sys)
 		debug_printf(", sys");
 
-	if (op == NAME)
+	switch (op) {
+	case NAME:
 		debug_printf("\n");
-	else if (op == CON && is_floating(tn->tn_type->t_tspec))
-		debug_printf(", value %Lg\n", tn->tn_val->v_ldbl);
-	else if (op == CON && is_uinteger(tn->tn_type->t_tspec))
-		debug_printf(", value %llu\n",
-		(unsigned long long)tn->tn_val->v_quad);
-	else if (op == CON && is_integer(tn->tn_type->t_tspec))
-		debug_printf(", value %lld\n",
-		(long long)tn->tn_val->v_quad);
-	else if (op == CON && tn->tn_type->t_tspec == BOOL)
-		debug_printf(", value %s\n",
-		tn->tn_val->v_quad != 0 ? "true" : "false");
-	else if (op == CON)
-		debug_printf(", unknown value\n");
-	else if (op == STRING && tn->tn_string->st_char)
-		debug_printf(", length %zu, \"%s\"\n",
-		tn->tn_string->st_len,
-		(const char *)tn->tn_string->st_mem);
-	else if (op == STRING) {
-		size_t n = MB_CUR_MAX * (tn->tn_string->st_len + 1);
-		char *s = xmalloc(n);
-		(void)wcstombs(s, tn->tn_string->st_mem, n);
-		debug_printf(", length %zu, L\"%s\"\n",
-		tn->tn_string->st_len, s);
-		free(s);
-
-	} else {
+		break;
+	case CON:
+		if (is_floating(tn->tn_type->t_tspec))
+			debug_printf(", value %Lg\n", tn->tn_val->v_ldbl);
+		else if (is_uinteger(tn->tn_type->t_tspec))
+			debug_printf(", value %llu\n",
+			(unsigned long long)tn->tn_val->v_quad);
+		else if (is_integer(tn->tn_type->t_tspec))
+			debug_printf(", value %lld\n",
+			(long long)tn->tn_val->v_quad);
+		else if (tn->tn_type->t_tspec == BOOL)
+			debug_printf(", value %s\n",
+			tn->tn_val->v_quad != 0 ? "true" : "false");
+		else
+			debug_printf(", unknown value\n");
+		break;
+	case STRING:
+		if (tn->tn_string->st_char)
+			debug_printf(", length %zu, \"%s\"\n",
+			tn->tn_string->st_len,
+			(const char *)tn->tn_string->st_mem);
+		else {
+			size_t n = MB_CUR_MAX * (tn->tn_string->st_len + 1);
+			char *s = xmalloc(n);
+			(void)wcstombs(s, tn->tn_string->st_mem, n);
+			debug_printf(", length %zu, L\"%s\"\n",
+			tn->tn_string->st_len, s);
+			free(s);
+		}
+		break;
+	default:
 		debug_printf("\n");
 
 		debug_indent_inc();



CVS commit: src/usr.bin/xlint/lint1

2023-01-08 Thread Roland Illig
Module Name:src
Committed By:   rillig
Date:   Sun Jan  8 14:05:03 UTC 2023

Modified Files:
src/usr.bin/xlint/lint1: debug.c

Log Message:
lint: unclutter debug logging for nodes

No functional change.


To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 src/usr.bin/xlint/lint1/debug.c

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



CVS commit: src/external/mit/xorg/bin/xhost

2023-01-08 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Sun Jan  8 12:00:21 UTC 2023

Modified Files:
src/external/mit/xorg/bin/xhost: Makefile

Log Message:
also link -lintl.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/external/mit/xorg/bin/xhost/Makefile

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

Modified files:

Index: src/external/mit/xorg/bin/xhost/Makefile
diff -u src/external/mit/xorg/bin/xhost/Makefile:1.5 src/external/mit/xorg/bin/xhost/Makefile:1.6
--- src/external/mit/xorg/bin/xhost/Makefile:1.5	Sun Jan  8 11:20:28 2023
+++ src/external/mit/xorg/bin/xhost/Makefile	Sun Jan  8 12:00:21 2023
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.5 2023/01/08 11:20:28 mrg Exp $
+#	$NetBSD: Makefile,v 1.6 2023/01/08 12:00:21 mrg Exp $
 
 .include 
 
@@ -12,8 +12,8 @@ CPPFLAGS+=-DUSE_GETTEXT -DLOCALEDIR=\"${
 CPPFLAGS+=  -DIPv6
 .endif
 
-LDADD+=	-lXmuu -lXt -lSM -lICE -lXext -lX11
-DPADD+=	${LIBXMUU} ${LIBXT} ${LIBSM} ${LIBICE} ${LIBXEXT} ${LIBX11}
+LDADD+=	-lXmuu -lXt -lSM -lICE -lXext -lX11 -lintl
+DPADD+=	${LIBXMUU} ${LIBXT} ${LIBSM} ${LIBICE} ${LIBXEXT} ${LIBX11} ${LIBINTL}
 
 .PATH:	${X11SRCDIR.${PROG}}
 .PATH:	${X11SRCDIR.${PROG}}/man



CVS commit: src/external/mit/xorg/bin/xhost

2023-01-08 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Sun Jan  8 12:00:21 UTC 2023

Modified Files:
src/external/mit/xorg/bin/xhost: Makefile

Log Message:
also link -lintl.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/external/mit/xorg/bin/xhost/Makefile

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



CVS commit: src/external/mit/xorg/bin/xhost

2023-01-08 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Sun Jan  8 11:20:28 UTC 2023

Modified Files:
src/external/mit/xorg/bin/xhost: Makefile

Log Message:
enable gettext support


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/external/mit/xorg/bin/xhost/Makefile

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

Modified files:

Index: src/external/mit/xorg/bin/xhost/Makefile
diff -u src/external/mit/xorg/bin/xhost/Makefile:1.4 src/external/mit/xorg/bin/xhost/Makefile:1.5
--- src/external/mit/xorg/bin/xhost/Makefile:1.4	Sun Mar  3 09:19:02 2019
+++ src/external/mit/xorg/bin/xhost/Makefile	Sun Jan  8 11:20:28 2023
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.4 2019/03/03 09:19:02 mrg Exp $
+#	$NetBSD: Makefile,v 1.5 2023/01/08 11:20:28 mrg Exp $
 
 .include 
 
@@ -6,6 +6,7 @@ PROG=	xhost
 
 CPPFLAGS+=${X11FLAGS.CONNECTION} -DBSD44SOCKETS
 CPPFLAGS+=-DHAVE_INET_ATON
+CPPFLAGS+=-DUSE_GETTEXT -DLOCALEDIR=\"${LOCALEDIR}\"
 
 .if (${USE_INET6} != "no")
 CPPFLAGS+=  -DIPv6



CVS commit: src/external/mit/xorg/bin/xhost

2023-01-08 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Sun Jan  8 11:20:28 UTC 2023

Modified Files:
src/external/mit/xorg/bin/xhost: Makefile

Log Message:
enable gettext support


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/external/mit/xorg/bin/xhost/Makefile

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



CVS commit: xsrc/external/mit/xdriinfo/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 10:14:34 UTC 2023

Removed Files:
xsrc/external/mit/xdriinfo/dist: README

Log Message:
merge xdriinfo 1.0.7.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.2 -r0 xsrc/external/mit/xdriinfo/dist/README

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



CVS commit: xsrc/external/mit/xdriinfo/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 10:14:34 UTC 2023

Removed Files:
xsrc/external/mit/xdriinfo/dist: README

Log Message:
merge xdriinfo 1.0.7.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.2 -r0 xsrc/external/mit/xdriinfo/dist/README

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



CVS import: xsrc/external/mit/xvinfo/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 10:11:54 UTC 2023

Update of /cvsroot/xsrc/external/mit/xvinfo/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv6929

Log Message:
initial import of xvinfo-1.1.5

Status:

Vendor Tag: xorg
Release Tags:   xvinfo-1-1-5

U xsrc/external/mit/xvinfo/dist/depcomp
U xsrc/external/mit/xvinfo/dist/missing
U xsrc/external/mit/xvinfo/dist/Makefile.am
U xsrc/external/mit/xvinfo/dist/config.guess
U xsrc/external/mit/xvinfo/dist/config.sub
U xsrc/external/mit/xvinfo/dist/Makefile.in
U xsrc/external/mit/xvinfo/dist/compile
U xsrc/external/mit/xvinfo/dist/COPYING
U xsrc/external/mit/xvinfo/dist/configure
U xsrc/external/mit/xvinfo/dist/install-sh
U xsrc/external/mit/xvinfo/dist/README.md
U xsrc/external/mit/xvinfo/dist/aclocal.m4
U xsrc/external/mit/xvinfo/dist/ChangeLog
U xsrc/external/mit/xvinfo/dist/INSTALL
U xsrc/external/mit/xvinfo/dist/configure.ac
U xsrc/external/mit/xvinfo/dist/xvinfo.c
U xsrc/external/mit/xvinfo/dist/config.h.in
U xsrc/external/mit/xvinfo/dist/man/xvinfo.man
U xsrc/external/mit/xvinfo/dist/man/Makefile.am
U xsrc/external/mit/xvinfo/dist/man/Makefile.in

No conflicts created by this import



CVS import: xsrc/external/mit/xvinfo/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 10:11:54 UTC 2023

Update of /cvsroot/xsrc/external/mit/xvinfo/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv6929

Log Message:
initial import of xvinfo-1.1.5

Status:

Vendor Tag: xorg
Release Tags:   xvinfo-1-1-5

U xsrc/external/mit/xvinfo/dist/depcomp
U xsrc/external/mit/xvinfo/dist/missing
U xsrc/external/mit/xvinfo/dist/Makefile.am
U xsrc/external/mit/xvinfo/dist/config.guess
U xsrc/external/mit/xvinfo/dist/config.sub
U xsrc/external/mit/xvinfo/dist/Makefile.in
U xsrc/external/mit/xvinfo/dist/compile
U xsrc/external/mit/xvinfo/dist/COPYING
U xsrc/external/mit/xvinfo/dist/configure
U xsrc/external/mit/xvinfo/dist/install-sh
U xsrc/external/mit/xvinfo/dist/README.md
U xsrc/external/mit/xvinfo/dist/aclocal.m4
U xsrc/external/mit/xvinfo/dist/ChangeLog
U xsrc/external/mit/xvinfo/dist/INSTALL
U xsrc/external/mit/xvinfo/dist/configure.ac
U xsrc/external/mit/xvinfo/dist/xvinfo.c
U xsrc/external/mit/xvinfo/dist/config.h.in
U xsrc/external/mit/xvinfo/dist/man/xvinfo.man
U xsrc/external/mit/xvinfo/dist/man/Makefile.am
U xsrc/external/mit/xvinfo/dist/man/Makefile.in

No conflicts created by this import



CVS import: xsrc/external/mit/xkbcomp/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 10:11:52 UTC 2023

Update of /cvsroot/xsrc/external/mit/xkbcomp/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv16157

Log Message:
initial import of xkbcomp-1.4.6

Status:

Vendor Tag: xorg
Release Tags:   xkbcomp-1-4-6

U xsrc/external/mit/xkbcomp/dist/action.h
U xsrc/external/mit/xkbcomp/dist/config.sub
U xsrc/external/mit/xkbcomp/dist/config.h.in
U xsrc/external/mit/xkbcomp/dist/tokens.h
U xsrc/external/mit/xkbcomp/dist/parseutils.h
U xsrc/external/mit/xkbcomp/dist/ylwrap
U xsrc/external/mit/xkbcomp/dist/xkbcomp.h
U xsrc/external/mit/xkbcomp/dist/utils.c
U xsrc/external/mit/xkbcomp/dist/vmod.h
U xsrc/external/mit/xkbcomp/dist/compat.c
U xsrc/external/mit/xkbcomp/dist/xkbcomp.pc.in
U xsrc/external/mit/xkbcomp/dist/configure.ac
U xsrc/external/mit/xkbcomp/dist/keycodes.h
U xsrc/external/mit/xkbcomp/dist/keytypes.c
U xsrc/external/mit/xkbcomp/dist/alias.h
U xsrc/external/mit/xkbcomp/dist/INSTALL
U xsrc/external/mit/xkbcomp/dist/misc.h
U xsrc/external/mit/xkbcomp/dist/xkbpath.c
U xsrc/external/mit/xkbcomp/dist/expr.h
U xsrc/external/mit/xkbcomp/dist/indicators.c
U xsrc/external/mit/xkbcomp/dist/xkbcomp.c
U xsrc/external/mit/xkbcomp/dist/utils.h
U xsrc/external/mit/xkbcomp/dist/vmod.c
U xsrc/external/mit/xkbcomp/dist/xkbparse.y
U xsrc/external/mit/xkbcomp/dist/ChangeLog
U xsrc/external/mit/xkbcomp/dist/parseutils.c
U xsrc/external/mit/xkbcomp/dist/install-sh
U xsrc/external/mit/xkbcomp/dist/missing
U xsrc/external/mit/xkbcomp/dist/Makefile.in
U xsrc/external/mit/xkbcomp/dist/configure
U xsrc/external/mit/xkbcomp/dist/depcomp
U xsrc/external/mit/xkbcomp/dist/action.c
U xsrc/external/mit/xkbcomp/dist/aclocal.m4
U xsrc/external/mit/xkbcomp/dist/config.guess
U xsrc/external/mit/xkbcomp/dist/xkbpath.h
U xsrc/external/mit/xkbcomp/dist/expr.c
U xsrc/external/mit/xkbcomp/dist/xkbscan.c
U xsrc/external/mit/xkbcomp/dist/indicators.h
U xsrc/external/mit/xkbcomp/dist/alias.c
U xsrc/external/mit/xkbcomp/dist/geometry.c
U xsrc/external/mit/xkbcomp/dist/COPYING
U xsrc/external/mit/xkbcomp/dist/misc.c
U xsrc/external/mit/xkbcomp/dist/keycodes.c
U xsrc/external/mit/xkbcomp/dist/compile
U xsrc/external/mit/xkbcomp/dist/xkbparse.c
U xsrc/external/mit/xkbcomp/dist/keymap.c
U xsrc/external/mit/xkbcomp/dist/listing.c
U xsrc/external/mit/xkbcomp/dist/README
U xsrc/external/mit/xkbcomp/dist/Makefile.am
U xsrc/external/mit/xkbcomp/dist/compat.h
U xsrc/external/mit/xkbcomp/dist/symbols.c
U xsrc/external/mit/xkbcomp/dist/man/xkbcomp.man
U xsrc/external/mit/xkbcomp/dist/man/Makefile.am
U xsrc/external/mit/xkbcomp/dist/man/Makefile.in

No conflicts created by this import



CVS import: xsrc/external/mit/xkbcomp/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 10:11:52 UTC 2023

Update of /cvsroot/xsrc/external/mit/xkbcomp/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv16157

Log Message:
initial import of xkbcomp-1.4.6

Status:

Vendor Tag: xorg
Release Tags:   xkbcomp-1-4-6

U xsrc/external/mit/xkbcomp/dist/action.h
U xsrc/external/mit/xkbcomp/dist/config.sub
U xsrc/external/mit/xkbcomp/dist/config.h.in
U xsrc/external/mit/xkbcomp/dist/tokens.h
U xsrc/external/mit/xkbcomp/dist/parseutils.h
U xsrc/external/mit/xkbcomp/dist/ylwrap
U xsrc/external/mit/xkbcomp/dist/xkbcomp.h
U xsrc/external/mit/xkbcomp/dist/utils.c
U xsrc/external/mit/xkbcomp/dist/vmod.h
U xsrc/external/mit/xkbcomp/dist/compat.c
U xsrc/external/mit/xkbcomp/dist/xkbcomp.pc.in
U xsrc/external/mit/xkbcomp/dist/configure.ac
U xsrc/external/mit/xkbcomp/dist/keycodes.h
U xsrc/external/mit/xkbcomp/dist/keytypes.c
U xsrc/external/mit/xkbcomp/dist/alias.h
U xsrc/external/mit/xkbcomp/dist/INSTALL
U xsrc/external/mit/xkbcomp/dist/misc.h
U xsrc/external/mit/xkbcomp/dist/xkbpath.c
U xsrc/external/mit/xkbcomp/dist/expr.h
U xsrc/external/mit/xkbcomp/dist/indicators.c
U xsrc/external/mit/xkbcomp/dist/xkbcomp.c
U xsrc/external/mit/xkbcomp/dist/utils.h
U xsrc/external/mit/xkbcomp/dist/vmod.c
U xsrc/external/mit/xkbcomp/dist/xkbparse.y
U xsrc/external/mit/xkbcomp/dist/ChangeLog
U xsrc/external/mit/xkbcomp/dist/parseutils.c
U xsrc/external/mit/xkbcomp/dist/install-sh
U xsrc/external/mit/xkbcomp/dist/missing
U xsrc/external/mit/xkbcomp/dist/Makefile.in
U xsrc/external/mit/xkbcomp/dist/configure
U xsrc/external/mit/xkbcomp/dist/depcomp
U xsrc/external/mit/xkbcomp/dist/action.c
U xsrc/external/mit/xkbcomp/dist/aclocal.m4
U xsrc/external/mit/xkbcomp/dist/config.guess
U xsrc/external/mit/xkbcomp/dist/xkbpath.h
U xsrc/external/mit/xkbcomp/dist/expr.c
U xsrc/external/mit/xkbcomp/dist/xkbscan.c
U xsrc/external/mit/xkbcomp/dist/indicators.h
U xsrc/external/mit/xkbcomp/dist/alias.c
U xsrc/external/mit/xkbcomp/dist/geometry.c
U xsrc/external/mit/xkbcomp/dist/COPYING
U xsrc/external/mit/xkbcomp/dist/misc.c
U xsrc/external/mit/xkbcomp/dist/keycodes.c
U xsrc/external/mit/xkbcomp/dist/compile
U xsrc/external/mit/xkbcomp/dist/xkbparse.c
U xsrc/external/mit/xkbcomp/dist/keymap.c
U xsrc/external/mit/xkbcomp/dist/listing.c
U xsrc/external/mit/xkbcomp/dist/README
U xsrc/external/mit/xkbcomp/dist/Makefile.am
U xsrc/external/mit/xkbcomp/dist/compat.h
U xsrc/external/mit/xkbcomp/dist/symbols.c
U xsrc/external/mit/xkbcomp/dist/man/xkbcomp.man
U xsrc/external/mit/xkbcomp/dist/man/Makefile.am
U xsrc/external/mit/xkbcomp/dist/man/Makefile.in

No conflicts created by this import



CVS import: xsrc/external/mit/xhost/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 10:11:49 UTC 2023

Update of /cvsroot/xsrc/external/mit/xhost/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv12082

Log Message:
initial import of xhost-1.0.9

Status:

Vendor Tag: xorg
Release Tags:   xhost-1-0-9

U xsrc/external/mit/xhost/dist/config.h.in
U xsrc/external/mit/xhost/dist/config.guess
U xsrc/external/mit/xhost/dist/xhost.c
U xsrc/external/mit/xhost/dist/INSTALL
U xsrc/external/mit/xhost/dist/config.sub
U xsrc/external/mit/xhost/dist/missing
U xsrc/external/mit/xhost/dist/README.md
U xsrc/external/mit/xhost/dist/depcomp
U xsrc/external/mit/xhost/dist/configure
U xsrc/external/mit/xhost/dist/ChangeLog
U xsrc/external/mit/xhost/dist/Makefile.in
U xsrc/external/mit/xhost/dist/compile
U xsrc/external/mit/xhost/dist/configure.ac
U xsrc/external/mit/xhost/dist/AUTHORS
U xsrc/external/mit/xhost/dist/install-sh
U xsrc/external/mit/xhost/dist/aclocal.m4
U xsrc/external/mit/xhost/dist/Makefile.am
U xsrc/external/mit/xhost/dist/COPYING
U xsrc/external/mit/xhost/dist/man/Makefile.am
U xsrc/external/mit/xhost/dist/man/Makefile.in
U xsrc/external/mit/xhost/dist/man/xhost.man

No conflicts created by this import



CVS import: xsrc/external/mit/xhost/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 10:11:49 UTC 2023

Update of /cvsroot/xsrc/external/mit/xhost/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv12082

Log Message:
initial import of xhost-1.0.9

Status:

Vendor Tag: xorg
Release Tags:   xhost-1-0-9

U xsrc/external/mit/xhost/dist/config.h.in
U xsrc/external/mit/xhost/dist/config.guess
U xsrc/external/mit/xhost/dist/xhost.c
U xsrc/external/mit/xhost/dist/INSTALL
U xsrc/external/mit/xhost/dist/config.sub
U xsrc/external/mit/xhost/dist/missing
U xsrc/external/mit/xhost/dist/README.md
U xsrc/external/mit/xhost/dist/depcomp
U xsrc/external/mit/xhost/dist/configure
U xsrc/external/mit/xhost/dist/ChangeLog
U xsrc/external/mit/xhost/dist/Makefile.in
U xsrc/external/mit/xhost/dist/compile
U xsrc/external/mit/xhost/dist/configure.ac
U xsrc/external/mit/xhost/dist/AUTHORS
U xsrc/external/mit/xhost/dist/install-sh
U xsrc/external/mit/xhost/dist/aclocal.m4
U xsrc/external/mit/xhost/dist/Makefile.am
U xsrc/external/mit/xhost/dist/COPYING
U xsrc/external/mit/xhost/dist/man/Makefile.am
U xsrc/external/mit/xhost/dist/man/Makefile.in
U xsrc/external/mit/xhost/dist/man/xhost.man

No conflicts created by this import



CVS import: xsrc/external/mit/xdriinfo/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 10:11:47 UTC 2023

Update of /cvsroot/xsrc/external/mit/xdriinfo/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv20871

Log Message:
initial import of xdriinfo-1.0.7

Status:

Vendor Tag: xorg
Release Tags:   xdriinfo-1-0-7

U xsrc/external/mit/xdriinfo/dist/config.sub
U xsrc/external/mit/xdriinfo/dist/Makefile.am
U xsrc/external/mit/xdriinfo/dist/config.guess
U xsrc/external/mit/xdriinfo/dist/INSTALL
U xsrc/external/mit/xdriinfo/dist/Makefile.in
N xsrc/external/mit/xdriinfo/dist/README.md
U xsrc/external/mit/xdriinfo/dist/configure
U xsrc/external/mit/xdriinfo/dist/missing
U xsrc/external/mit/xdriinfo/dist/depcomp
U xsrc/external/mit/xdriinfo/dist/configure.ac
U xsrc/external/mit/xdriinfo/dist/ChangeLog
U xsrc/external/mit/xdriinfo/dist/install-sh
U xsrc/external/mit/xdriinfo/dist/aclocal.m4
U xsrc/external/mit/xdriinfo/dist/config.h.in
U xsrc/external/mit/xdriinfo/dist/xdriinfo.c
U xsrc/external/mit/xdriinfo/dist/AUTHORS
U xsrc/external/mit/xdriinfo/dist/compile
U xsrc/external/mit/xdriinfo/dist/COPYING
U xsrc/external/mit/xdriinfo/dist/man/xdriinfo.man
U xsrc/external/mit/xdriinfo/dist/man/Makefile.am
U xsrc/external/mit/xdriinfo/dist/man/Makefile.in

No conflicts created by this import



CVS import: xsrc/external/mit/xdriinfo/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 10:11:47 UTC 2023

Update of /cvsroot/xsrc/external/mit/xdriinfo/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv20871

Log Message:
initial import of xdriinfo-1.0.7

Status:

Vendor Tag: xorg
Release Tags:   xdriinfo-1-0-7

U xsrc/external/mit/xdriinfo/dist/config.sub
U xsrc/external/mit/xdriinfo/dist/Makefile.am
U xsrc/external/mit/xdriinfo/dist/config.guess
U xsrc/external/mit/xdriinfo/dist/INSTALL
U xsrc/external/mit/xdriinfo/dist/Makefile.in
N xsrc/external/mit/xdriinfo/dist/README.md
U xsrc/external/mit/xdriinfo/dist/configure
U xsrc/external/mit/xdriinfo/dist/missing
U xsrc/external/mit/xdriinfo/dist/depcomp
U xsrc/external/mit/xdriinfo/dist/configure.ac
U xsrc/external/mit/xdriinfo/dist/ChangeLog
U xsrc/external/mit/xdriinfo/dist/install-sh
U xsrc/external/mit/xdriinfo/dist/aclocal.m4
U xsrc/external/mit/xdriinfo/dist/config.h.in
U xsrc/external/mit/xdriinfo/dist/xdriinfo.c
U xsrc/external/mit/xdriinfo/dist/AUTHORS
U xsrc/external/mit/xdriinfo/dist/compile
U xsrc/external/mit/xdriinfo/dist/COPYING
U xsrc/external/mit/xdriinfo/dist/man/xdriinfo.man
U xsrc/external/mit/xdriinfo/dist/man/Makefile.am
U xsrc/external/mit/xdriinfo/dist/man/Makefile.in

No conflicts created by this import



CVS commit: xsrc/external/mit

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 09:59:52 UTC 2023

Modified Files:
xsrc/external/mit/xinit/dist: compile startx.cpp xinit.c
xsrc/external/mit/xinit/dist/man: startx.man
xsrc/external/mit/xprop/include: config.h
xsrc/external/mit/xrandr/dist: compile xrandr.c
xsrc/external/mit/xstdcmap/dist: compile
Removed Files:
xsrc/external/mit/xinit/dist/launchd: console_redirect.c
console_redirect.h
xsrc/external/mit/xrandr/dist: README
xsrc/external/mit/xset/dist: README

Log Message:
merge xinit 1.4.2, xprop 1.2.6, xrandr 1.5.2, xset 1.2.5, and xstdcmap 1.0.5


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 xsrc/external/mit/xinit/dist/compile
cvs rdiff -u -r1.9 -r1.10 xsrc/external/mit/xinit/dist/startx.cpp
cvs rdiff -u -r1.8 -r1.9 xsrc/external/mit/xinit/dist/xinit.c
cvs rdiff -u -r1.1.1.1 -r0 \
xsrc/external/mit/xinit/dist/launchd/console_redirect.c \
xsrc/external/mit/xinit/dist/launchd/console_redirect.h
cvs rdiff -u -r1.2 -r1.3 xsrc/external/mit/xinit/dist/man/startx.man
cvs rdiff -u -r1.7 -r1.8 xsrc/external/mit/xprop/include/config.h
cvs rdiff -u -r1.1.1.2 -r0 xsrc/external/mit/xrandr/dist/README
cvs rdiff -u -r1.3 -r1.4 xsrc/external/mit/xrandr/dist/compile
cvs rdiff -u -r1.14 -r1.15 xsrc/external/mit/xrandr/dist/xrandr.c
cvs rdiff -u -r1.1.1.2 -r0 xsrc/external/mit/xset/dist/README
cvs rdiff -u -r1.3 -r1.4 xsrc/external/mit/xstdcmap/dist/compile

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

Modified files:

Index: xsrc/external/mit/xinit/dist/compile
diff -u xsrc/external/mit/xinit/dist/compile:1.4 xsrc/external/mit/xinit/dist/compile:1.5
--- xsrc/external/mit/xinit/dist/compile:1.4	Sun Mar 11 10:46:02 2018
+++ xsrc/external/mit/xinit/dist/compile	Sun Jan  8 09:59:51 2023
@@ -1,9 +1,9 @@
 #! /bin/sh
 # Wrapper for compilers which do not understand '-c -o'.
 
-scriptversion=2012-10-14.11; # UTC
+scriptversion=2018-03-07.03; # UTC
 
-# Copyright (C) 1999-2014 Free Software Foundation, Inc.
+# Copyright (C) 1999-2021 Free Software Foundation, Inc.
 # Written by Tom Tromey .
 #
 # This program is free software; you can redistribute it and/or modify
@@ -17,7 +17,7 @@ scriptversion=2012-10-14.11; # UTC
 # GNU General Public License for more details.
 #
 # You should have received a copy of the GNU General Public License
-# along with this program.  If not, see .
+# along with this program.  If not, see .
 
 # As a special exception to the GNU General Public License, if you
 # distribute this file as part of a program that contains a
@@ -53,7 +53,7 @@ func_file_conv ()
 	  MINGW*)
 	file_conv=mingw
 	;;
-	  CYGWIN*)
+	  CYGWIN* | MSYS*)
 	file_conv=cygwin
 	;;
 	  *)
@@ -67,7 +67,7 @@ func_file_conv ()
 	mingw/*)
 	  file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'`
 	  ;;
-	cygwin/*)
+	cygwin/* | msys/*)
 	  file=`cygpath -m "$file" || echo "$file"`
 	  ;;
 	wine/*)
@@ -255,7 +255,8 @@ EOF
 echo "compile $scriptversion"
 exit $?
 ;;
-  cl | *[/\\]cl | cl.exe | *[/\\]cl.exe )
+  cl | *[/\\]cl | cl.exe | *[/\\]cl.exe | \
+  icl | *[/\\]icl | icl.exe | *[/\\]icl.exe )
 func_cl_wrapper "$@"  # Doesn't return...
 ;;
 esac
@@ -339,9 +340,9 @@ exit $ret
 # Local Variables:
 # mode: shell-script
 # sh-indentation: 2
-# eval: (add-hook 'write-file-hooks 'time-stamp)
+# eval: (add-hook 'before-save-hook 'time-stamp)
 # time-stamp-start: "scriptversion="
 # time-stamp-format: "%:y-%02m-%02d.%02H"
-# time-stamp-time-zone: "UTC"
+# time-stamp-time-zone: "UTC0"
 # time-stamp-end: "; # UTC"
 # End:

Index: xsrc/external/mit/xinit/dist/startx.cpp
diff -u xsrc/external/mit/xinit/dist/startx.cpp:1.9 xsrc/external/mit/xinit/dist/startx.cpp:1.10
--- xsrc/external/mit/xinit/dist/startx.cpp:1.9	Thu Apr  7 20:28:49 2022
+++ xsrc/external/mit/xinit/dist/startx.cpp	Sun Jan  8 09:59:51 2023
@@ -2,16 +2,16 @@ XCOMM!SHELL_CMD
 
 XCOMM
 XCOMM This is just a sample implementation of a slightly less primitive
-XCOMM interface than xinit.  It looks for user .xinitrc and .xserverrc
-XCOMM files, then system xinitrc and xserverrc files, else lets xinit choose
-XCOMM its default.  The system xinitrc should probably do things like check
-XCOMM for .Xresources files and merge them in, start up a window manager,
-XCOMM and pop a clock and several xterms.
+XCOMM interface than xinit.  It looks for XINITRC and XSERVERRC environment
+XCOMM variables, then user .xinitrc and .xserverrc files, and then system
+XCOMM xinitrc and xserverrc files, else lets xinit choose its default.
+XCOMM The system xinitrc should probably do things like check for
+XCOMM .Xresources files and merge them in, start up a window manager, and
+XCOMM pop a clock and several xterms.
 XCOMM
 XCOMM Site administrators are STRONGLY urged to write nicer versions.
 XCOMM
 
-unset 

CVS commit: xsrc/external/mit

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 09:59:52 UTC 2023

Modified Files:
xsrc/external/mit/xinit/dist: compile startx.cpp xinit.c
xsrc/external/mit/xinit/dist/man: startx.man
xsrc/external/mit/xprop/include: config.h
xsrc/external/mit/xrandr/dist: compile xrandr.c
xsrc/external/mit/xstdcmap/dist: compile
Removed Files:
xsrc/external/mit/xinit/dist/launchd: console_redirect.c
console_redirect.h
xsrc/external/mit/xrandr/dist: README
xsrc/external/mit/xset/dist: README

Log Message:
merge xinit 1.4.2, xprop 1.2.6, xrandr 1.5.2, xset 1.2.5, and xstdcmap 1.0.5


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 xsrc/external/mit/xinit/dist/compile
cvs rdiff -u -r1.9 -r1.10 xsrc/external/mit/xinit/dist/startx.cpp
cvs rdiff -u -r1.8 -r1.9 xsrc/external/mit/xinit/dist/xinit.c
cvs rdiff -u -r1.1.1.1 -r0 \
xsrc/external/mit/xinit/dist/launchd/console_redirect.c \
xsrc/external/mit/xinit/dist/launchd/console_redirect.h
cvs rdiff -u -r1.2 -r1.3 xsrc/external/mit/xinit/dist/man/startx.man
cvs rdiff -u -r1.7 -r1.8 xsrc/external/mit/xprop/include/config.h
cvs rdiff -u -r1.1.1.2 -r0 xsrc/external/mit/xrandr/dist/README
cvs rdiff -u -r1.3 -r1.4 xsrc/external/mit/xrandr/dist/compile
cvs rdiff -u -r1.14 -r1.15 xsrc/external/mit/xrandr/dist/xrandr.c
cvs rdiff -u -r1.1.1.2 -r0 xsrc/external/mit/xset/dist/README
cvs rdiff -u -r1.3 -r1.4 xsrc/external/mit/xstdcmap/dist/compile

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



CVS commit: src/external/mit/xorg/bin/xfd

2023-01-08 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Sun Jan  8 09:56:11 UTC 2023

Modified Files:
src/external/mit/xorg/bin/xfd: Makefile

Log Message:
set -D_CONST_X_STRING for new xfd.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/external/mit/xorg/bin/xfd/Makefile

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

Modified files:

Index: src/external/mit/xorg/bin/xfd/Makefile
diff -u src/external/mit/xorg/bin/xfd/Makefile:1.4 src/external/mit/xorg/bin/xfd/Makefile:1.5
--- src/external/mit/xorg/bin/xfd/Makefile:1.4	Wed May  9 08:39:55 2018
+++ src/external/mit/xorg/bin/xfd/Makefile	Sun Jan  8 09:56:11 2023
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.4 2018/05/09 08:39:55 mrg Exp $
+#	$NetBSD: Makefile,v 1.5 2023/01/08 09:56:11 mrg Exp $
 
 .include 
 
@@ -7,6 +7,7 @@ SRCS=	xfd.c grid.c
 
 CPPFLAGS+=	-DXRENDER -DXFREE86_FT2 -I${DESTDIR}${X11INCDIR}/freetype2
 CPPFLAGS+=	-I${DESTDIR}${X11INCDIR}/freetype2/freetype
+CPPFLAGS+=	-D_CONST_X_STRING
 
 APPDEFS=Xfd
 



CVS commit: src/external/mit/xorg/bin/xfd

2023-01-08 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Sun Jan  8 09:56:11 UTC 2023

Modified Files:
src/external/mit/xorg/bin/xfd: Makefile

Log Message:
set -D_CONST_X_STRING for new xfd.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/external/mit/xorg/bin/xfd/Makefile

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



CVS commit: src/external/mit/xorg/bin/lndir

2023-01-08 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Sun Jan  8 09:55:38 UTC 2023

Modified Files:
src/external/mit/xorg/bin/lndir: Makefile

Log Message:
set -DHAVE_STRLCPY -DHAVE_STRLCAT for new lndir.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/external/mit/xorg/bin/lndir/Makefile

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

Modified files:

Index: src/external/mit/xorg/bin/lndir/Makefile
diff -u src/external/mit/xorg/bin/lndir/Makefile:1.1 src/external/mit/xorg/bin/lndir/Makefile:1.2
--- src/external/mit/xorg/bin/lndir/Makefile:1.1	Sun Nov 21 02:43:31 2010
+++ src/external/mit/xorg/bin/lndir/Makefile	Sun Jan  8 09:55:38 2023
@@ -1,9 +1,11 @@
-#	$NetBSD: Makefile,v 1.1 2010/11/21 02:43:31 mrg Exp $
+#	$NetBSD: Makefile,v 1.2 2023/01/08 09:55:38 mrg Exp $
 
 .include 
 
 PROG=	lndir
 
+CPPFLAGS+=	-DHAVE_STRLCPY -DHAVE_STRLCAT 
+
 .PATH:	${X11SRCDIR.${PROG}}
 
 .include 



CVS commit: src/external/mit/xorg/bin/lndir

2023-01-08 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Sun Jan  8 09:55:38 UTC 2023

Modified Files:
src/external/mit/xorg/bin/lndir: Makefile

Log Message:
set -DHAVE_STRLCPY -DHAVE_STRLCAT for new lndir.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/external/mit/xorg/bin/lndir/Makefile

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



CVS import: xsrc/external/mit/xstdcmap/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 09:55:09 UTC 2023

Update of /cvsroot/xsrc/external/mit/xstdcmap/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv2332

Log Message:
initial import of xstdcmap-1.0.5

Status:

Vendor Tag: xorg
Release Tags:   xstdcmap-1-0-5

C xsrc/external/mit/xstdcmap/dist/compile
U xsrc/external/mit/xstdcmap/dist/config.guess
U xsrc/external/mit/xstdcmap/dist/configure
U xsrc/external/mit/xstdcmap/dist/README.md
U xsrc/external/mit/xstdcmap/dist/config.h.in
U xsrc/external/mit/xstdcmap/dist/COPYING
U xsrc/external/mit/xstdcmap/dist/ChangeLog
U xsrc/external/mit/xstdcmap/dist/missing
U xsrc/external/mit/xstdcmap/dist/depcomp
U xsrc/external/mit/xstdcmap/dist/install-sh
U xsrc/external/mit/xstdcmap/dist/aclocal.m4
U xsrc/external/mit/xstdcmap/dist/Makefile.in
U xsrc/external/mit/xstdcmap/dist/INSTALL
U xsrc/external/mit/xstdcmap/dist/xstdcmap.c
U xsrc/external/mit/xstdcmap/dist/config.sub
U xsrc/external/mit/xstdcmap/dist/Makefile.am
U xsrc/external/mit/xstdcmap/dist/configure.ac
U xsrc/external/mit/xstdcmap/dist/man/Makefile.in
U xsrc/external/mit/xstdcmap/dist/man/Makefile.am
U xsrc/external/mit/xstdcmap/dist/man/xstdcmap.man

1 conflicts created by this import.
Use the following command to help the merge:

cvs checkout -jxorg:yesterday -jxorg xsrc/external/mit/xstdcmap/dist



CVS import: xsrc/external/mit/xstdcmap/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 09:55:09 UTC 2023

Update of /cvsroot/xsrc/external/mit/xstdcmap/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv2332

Log Message:
initial import of xstdcmap-1.0.5

Status:

Vendor Tag: xorg
Release Tags:   xstdcmap-1-0-5

C xsrc/external/mit/xstdcmap/dist/compile
U xsrc/external/mit/xstdcmap/dist/config.guess
U xsrc/external/mit/xstdcmap/dist/configure
U xsrc/external/mit/xstdcmap/dist/README.md
U xsrc/external/mit/xstdcmap/dist/config.h.in
U xsrc/external/mit/xstdcmap/dist/COPYING
U xsrc/external/mit/xstdcmap/dist/ChangeLog
U xsrc/external/mit/xstdcmap/dist/missing
U xsrc/external/mit/xstdcmap/dist/depcomp
U xsrc/external/mit/xstdcmap/dist/install-sh
U xsrc/external/mit/xstdcmap/dist/aclocal.m4
U xsrc/external/mit/xstdcmap/dist/Makefile.in
U xsrc/external/mit/xstdcmap/dist/INSTALL
U xsrc/external/mit/xstdcmap/dist/xstdcmap.c
U xsrc/external/mit/xstdcmap/dist/config.sub
U xsrc/external/mit/xstdcmap/dist/Makefile.am
U xsrc/external/mit/xstdcmap/dist/configure.ac
U xsrc/external/mit/xstdcmap/dist/man/Makefile.in
U xsrc/external/mit/xstdcmap/dist/man/Makefile.am
U xsrc/external/mit/xstdcmap/dist/man/xstdcmap.man

1 conflicts created by this import.
Use the following command to help the merge:

cvs checkout -jxorg:yesterday -jxorg xsrc/external/mit/xstdcmap/dist



CVS import: xsrc/external/mit/xrandr/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 09:55:04 UTC 2023

Update of /cvsroot/xsrc/external/mit/xrandr/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv19907

Log Message:
initial import of xrandr-1.5.2

Status:

Vendor Tag: xorg
Release Tags:   xrandr-1-5-2

U xsrc/external/mit/xrandr/dist/aclocal.m4
U xsrc/external/mit/xrandr/dist/config.h.in
U xsrc/external/mit/xrandr/dist/keystone.5c
U xsrc/external/mit/xrandr/dist/install-sh
U xsrc/external/mit/xrandr/dist/COPYING
C xsrc/external/mit/xrandr/dist/compile
N xsrc/external/mit/xrandr/dist/README.md
U xsrc/external/mit/xrandr/dist/configure
U xsrc/external/mit/xrandr/dist/ChangeLog
U xsrc/external/mit/xrandr/dist/depcomp
U xsrc/external/mit/xrandr/dist/missing
U xsrc/external/mit/xrandr/dist/configure.ac
C xsrc/external/mit/xrandr/dist/xrandr.c
U xsrc/external/mit/xrandr/dist/config.guess
U xsrc/external/mit/xrandr/dist/INSTALL
U xsrc/external/mit/xrandr/dist/config.sub
U xsrc/external/mit/xrandr/dist/Makefile.in
U xsrc/external/mit/xrandr/dist/Makefile.am
U xsrc/external/mit/xrandr/dist/xrandr_test.pl
U xsrc/external/mit/xrandr/dist/man/Makefile.am
U xsrc/external/mit/xrandr/dist/man/xrandr.man
U xsrc/external/mit/xrandr/dist/man/Makefile.in

2 conflicts created by this import.
Use the following command to help the merge:

cvs checkout -jxorg:yesterday -jxorg xsrc/external/mit/xrandr/dist



CVS import: xsrc/external/mit/xset/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 09:55:07 UTC 2023

Update of /cvsroot/xsrc/external/mit/xset/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv9222

Log Message:
initial import of xset-1.2.5

Status:

Vendor Tag: xorg
Release Tags:   xset-1-2-5

U xsrc/external/mit/xset/dist/Makefile.in
U xsrc/external/mit/xset/dist/aclocal.m4
U xsrc/external/mit/xset/dist/configure
U xsrc/external/mit/xset/dist/config.guess
U xsrc/external/mit/xset/dist/install-sh
N xsrc/external/mit/xset/dist/README.md
U xsrc/external/mit/xset/dist/ChangeLog
U xsrc/external/mit/xset/dist/INSTALL
U xsrc/external/mit/xset/dist/Makefile.am
U xsrc/external/mit/xset/dist/config.h.in
U xsrc/external/mit/xset/dist/depcomp
U xsrc/external/mit/xset/dist/missing
U xsrc/external/mit/xset/dist/xset.c
U xsrc/external/mit/xset/dist/configure.ac
U xsrc/external/mit/xset/dist/COPYING
U xsrc/external/mit/xset/dist/config.sub
U xsrc/external/mit/xset/dist/compile
U xsrc/external/mit/xset/dist/man/xset.man
U xsrc/external/mit/xset/dist/man/Makefile.am
U xsrc/external/mit/xset/dist/man/Makefile.in

No conflicts created by this import



CVS import: xsrc/external/mit/xset/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 09:55:07 UTC 2023

Update of /cvsroot/xsrc/external/mit/xset/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv9222

Log Message:
initial import of xset-1.2.5

Status:

Vendor Tag: xorg
Release Tags:   xset-1-2-5

U xsrc/external/mit/xset/dist/Makefile.in
U xsrc/external/mit/xset/dist/aclocal.m4
U xsrc/external/mit/xset/dist/configure
U xsrc/external/mit/xset/dist/config.guess
U xsrc/external/mit/xset/dist/install-sh
N xsrc/external/mit/xset/dist/README.md
U xsrc/external/mit/xset/dist/ChangeLog
U xsrc/external/mit/xset/dist/INSTALL
U xsrc/external/mit/xset/dist/Makefile.am
U xsrc/external/mit/xset/dist/config.h.in
U xsrc/external/mit/xset/dist/depcomp
U xsrc/external/mit/xset/dist/missing
U xsrc/external/mit/xset/dist/xset.c
U xsrc/external/mit/xset/dist/configure.ac
U xsrc/external/mit/xset/dist/COPYING
U xsrc/external/mit/xset/dist/config.sub
U xsrc/external/mit/xset/dist/compile
U xsrc/external/mit/xset/dist/man/xset.man
U xsrc/external/mit/xset/dist/man/Makefile.am
U xsrc/external/mit/xset/dist/man/Makefile.in

No conflicts created by this import



CVS import: xsrc/external/mit/xrandr/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 09:55:04 UTC 2023

Update of /cvsroot/xsrc/external/mit/xrandr/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv19907

Log Message:
initial import of xrandr-1.5.2

Status:

Vendor Tag: xorg
Release Tags:   xrandr-1-5-2

U xsrc/external/mit/xrandr/dist/aclocal.m4
U xsrc/external/mit/xrandr/dist/config.h.in
U xsrc/external/mit/xrandr/dist/keystone.5c
U xsrc/external/mit/xrandr/dist/install-sh
U xsrc/external/mit/xrandr/dist/COPYING
C xsrc/external/mit/xrandr/dist/compile
N xsrc/external/mit/xrandr/dist/README.md
U xsrc/external/mit/xrandr/dist/configure
U xsrc/external/mit/xrandr/dist/ChangeLog
U xsrc/external/mit/xrandr/dist/depcomp
U xsrc/external/mit/xrandr/dist/missing
U xsrc/external/mit/xrandr/dist/configure.ac
C xsrc/external/mit/xrandr/dist/xrandr.c
U xsrc/external/mit/xrandr/dist/config.guess
U xsrc/external/mit/xrandr/dist/INSTALL
U xsrc/external/mit/xrandr/dist/config.sub
U xsrc/external/mit/xrandr/dist/Makefile.in
U xsrc/external/mit/xrandr/dist/Makefile.am
U xsrc/external/mit/xrandr/dist/xrandr_test.pl
U xsrc/external/mit/xrandr/dist/man/Makefile.am
U xsrc/external/mit/xrandr/dist/man/xrandr.man
U xsrc/external/mit/xrandr/dist/man/Makefile.in

2 conflicts created by this import.
Use the following command to help the merge:

cvs checkout -jxorg:yesterday -jxorg xsrc/external/mit/xrandr/dist



CVS import: xsrc/external/mit/xprop/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 09:55:02 UTC 2023

Update of /cvsroot/xsrc/external/mit/xprop/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv10972

Log Message:
initial import of xprop-1.2.6

Status:

Vendor Tag: xorg
Release Tags:   xprop-1-2-6

U xsrc/external/mit/xprop/dist/install-sh
U xsrc/external/mit/xprop/dist/clientwin.h
U xsrc/external/mit/xprop/dist/dsimple.h
U xsrc/external/mit/xprop/dist/aclocal.m4
U xsrc/external/mit/xprop/dist/missing
U xsrc/external/mit/xprop/dist/config.guess
U xsrc/external/mit/xprop/dist/depcomp
U xsrc/external/mit/xprop/dist/COPYING
U xsrc/external/mit/xprop/dist/configure
U xsrc/external/mit/xprop/dist/config.h.in
U xsrc/external/mit/xprop/dist/README.md
U xsrc/external/mit/xprop/dist/compile
U xsrc/external/mit/xprop/dist/ChangeLog
U xsrc/external/mit/xprop/dist/Makefile.am
U xsrc/external/mit/xprop/dist/config.sub
U xsrc/external/mit/xprop/dist/clientwin.c
U xsrc/external/mit/xprop/dist/dsimple.c
U xsrc/external/mit/xprop/dist/configure.ac
U xsrc/external/mit/xprop/dist/xprop.c
U xsrc/external/mit/xprop/dist/Makefile.in
U xsrc/external/mit/xprop/dist/INSTALL
U xsrc/external/mit/xprop/dist/man/Makefile.am
U xsrc/external/mit/xprop/dist/man/xprop.man
U xsrc/external/mit/xprop/dist/man/Makefile.in

No conflicts created by this import



CVS import: xsrc/external/mit/xprop/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 09:55:02 UTC 2023

Update of /cvsroot/xsrc/external/mit/xprop/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv10972

Log Message:
initial import of xprop-1.2.6

Status:

Vendor Tag: xorg
Release Tags:   xprop-1-2-6

U xsrc/external/mit/xprop/dist/install-sh
U xsrc/external/mit/xprop/dist/clientwin.h
U xsrc/external/mit/xprop/dist/dsimple.h
U xsrc/external/mit/xprop/dist/aclocal.m4
U xsrc/external/mit/xprop/dist/missing
U xsrc/external/mit/xprop/dist/config.guess
U xsrc/external/mit/xprop/dist/depcomp
U xsrc/external/mit/xprop/dist/COPYING
U xsrc/external/mit/xprop/dist/configure
U xsrc/external/mit/xprop/dist/config.h.in
U xsrc/external/mit/xprop/dist/README.md
U xsrc/external/mit/xprop/dist/compile
U xsrc/external/mit/xprop/dist/ChangeLog
U xsrc/external/mit/xprop/dist/Makefile.am
U xsrc/external/mit/xprop/dist/config.sub
U xsrc/external/mit/xprop/dist/clientwin.c
U xsrc/external/mit/xprop/dist/dsimple.c
U xsrc/external/mit/xprop/dist/configure.ac
U xsrc/external/mit/xprop/dist/xprop.c
U xsrc/external/mit/xprop/dist/Makefile.in
U xsrc/external/mit/xprop/dist/INSTALL
U xsrc/external/mit/xprop/dist/man/Makefile.am
U xsrc/external/mit/xprop/dist/man/xprop.man
U xsrc/external/mit/xprop/dist/man/Makefile.in

No conflicts created by this import



CVS import: xsrc/external/mit/xinit/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 09:55:00 UTC 2023

Update of /cvsroot/xsrc/external/mit/xinit/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv4109

Log Message:
initial import of xinit-1.4.2

Status:

Vendor Tag: xorg
Release Tags:   xinit-1-4-2

U xsrc/external/mit/xinit/dist/configure.ac
U xsrc/external/mit/xinit/dist/ChangeLog
U xsrc/external/mit/xinit/dist/cpprules.in
U xsrc/external/mit/xinit/dist/configure
U xsrc/external/mit/xinit/dist/README.md
U xsrc/external/mit/xinit/dist/autogen.sh
U xsrc/external/mit/xinit/dist/config.h.in
U xsrc/external/mit/xinit/dist/INSTALL
U xsrc/external/mit/xinit/dist/config.sub
U xsrc/external/mit/xinit/dist/missing
C xsrc/external/mit/xinit/dist/startx.cpp
U xsrc/external/mit/xinit/dist/depcomp
U xsrc/external/mit/xinit/dist/Makefile.am
U xsrc/external/mit/xinit/dist/aclocal.m4
C xsrc/external/mit/xinit/dist/compile
U xsrc/external/mit/xinit/dist/install-sh
U xsrc/external/mit/xinit/dist/config.guess
U xsrc/external/mit/xinit/dist/COPYING
U xsrc/external/mit/xinit/dist/xinitrc.cpp
C xsrc/external/mit/xinit/dist/xinit.c
U xsrc/external/mit/xinit/dist/Makefile.in
U xsrc/external/mit/xinit/dist/launchd/Makefile.am
U xsrc/external/mit/xinit/dist/launchd/Makefile.in
U xsrc/external/mit/xinit/dist/launchd/user_startx/startx.plist.cpp
U xsrc/external/mit/xinit/dist/launchd/user_startx/Makefile.in
U xsrc/external/mit/xinit/dist/launchd/user_startx/launchd_startx.c
U xsrc/external/mit/xinit/dist/launchd/user_startx/Makefile.am
U 
xsrc/external/mit/xinit/dist/launchd/privileged_startx/privileged_startx.plist.cpp
U xsrc/external/mit/xinit/dist/launchd/privileged_startx/client.c
U xsrc/external/mit/xinit/dist/launchd/privileged_startx/10-tmpdirs.cpp
U xsrc/external/mit/xinit/dist/launchd/privileged_startx/server.c
U xsrc/external/mit/xinit/dist/launchd/privileged_startx/Makefile.in
U xsrc/external/mit/xinit/dist/launchd/privileged_startx/privileged_startx.c
U xsrc/external/mit/xinit/dist/launchd/privileged_startx/20-font_cache.cpp
U xsrc/external/mit/xinit/dist/launchd/privileged_startx/Makefile.am
U xsrc/external/mit/xinit/dist/launchd/privileged_startx/privileged_startx.defs
U 
xsrc/external/mit/xinit/dist/launchd/privileged_startx/privileged_startx_types.h
U xsrc/external/mit/xinit/dist/man/Makefile.in
U xsrc/external/mit/xinit/dist/man/Makefile.am
C xsrc/external/mit/xinit/dist/man/startx.man
U xsrc/external/mit/xinit/dist/man/xinit.man

4 conflicts created by this import.
Use the following command to help the merge:

cvs checkout -jxorg:yesterday -jxorg xsrc/external/mit/xinit/dist



CVS import: xsrc/external/mit/xinit/dist

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 09:55:00 UTC 2023

Update of /cvsroot/xsrc/external/mit/xinit/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv4109

Log Message:
initial import of xinit-1.4.2

Status:

Vendor Tag: xorg
Release Tags:   xinit-1-4-2

U xsrc/external/mit/xinit/dist/configure.ac
U xsrc/external/mit/xinit/dist/ChangeLog
U xsrc/external/mit/xinit/dist/cpprules.in
U xsrc/external/mit/xinit/dist/configure
U xsrc/external/mit/xinit/dist/README.md
U xsrc/external/mit/xinit/dist/autogen.sh
U xsrc/external/mit/xinit/dist/config.h.in
U xsrc/external/mit/xinit/dist/INSTALL
U xsrc/external/mit/xinit/dist/config.sub
U xsrc/external/mit/xinit/dist/missing
C xsrc/external/mit/xinit/dist/startx.cpp
U xsrc/external/mit/xinit/dist/depcomp
U xsrc/external/mit/xinit/dist/Makefile.am
U xsrc/external/mit/xinit/dist/aclocal.m4
C xsrc/external/mit/xinit/dist/compile
U xsrc/external/mit/xinit/dist/install-sh
U xsrc/external/mit/xinit/dist/config.guess
U xsrc/external/mit/xinit/dist/COPYING
U xsrc/external/mit/xinit/dist/xinitrc.cpp
C xsrc/external/mit/xinit/dist/xinit.c
U xsrc/external/mit/xinit/dist/Makefile.in
U xsrc/external/mit/xinit/dist/launchd/Makefile.am
U xsrc/external/mit/xinit/dist/launchd/Makefile.in
U xsrc/external/mit/xinit/dist/launchd/user_startx/startx.plist.cpp
U xsrc/external/mit/xinit/dist/launchd/user_startx/Makefile.in
U xsrc/external/mit/xinit/dist/launchd/user_startx/launchd_startx.c
U xsrc/external/mit/xinit/dist/launchd/user_startx/Makefile.am
U 
xsrc/external/mit/xinit/dist/launchd/privileged_startx/privileged_startx.plist.cpp
U xsrc/external/mit/xinit/dist/launchd/privileged_startx/client.c
U xsrc/external/mit/xinit/dist/launchd/privileged_startx/10-tmpdirs.cpp
U xsrc/external/mit/xinit/dist/launchd/privileged_startx/server.c
U xsrc/external/mit/xinit/dist/launchd/privileged_startx/Makefile.in
U xsrc/external/mit/xinit/dist/launchd/privileged_startx/privileged_startx.c
U xsrc/external/mit/xinit/dist/launchd/privileged_startx/20-font_cache.cpp
U xsrc/external/mit/xinit/dist/launchd/privileged_startx/Makefile.am
U xsrc/external/mit/xinit/dist/launchd/privileged_startx/privileged_startx.defs
U 
xsrc/external/mit/xinit/dist/launchd/privileged_startx/privileged_startx_types.h
U xsrc/external/mit/xinit/dist/man/Makefile.in
U xsrc/external/mit/xinit/dist/man/Makefile.am
C xsrc/external/mit/xinit/dist/man/startx.man
U xsrc/external/mit/xinit/dist/man/xinit.man

4 conflicts created by this import.
Use the following command to help the merge:

cvs checkout -jxorg:yesterday -jxorg xsrc/external/mit/xinit/dist



CVS commit: xsrc/external/mit

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 09:19:55 UTC 2023

Modified Files:
xsrc/external/mit/xdm/dist/xdm: session.c xdmauth.c
xsrc/external/mit/xfd/dist: compile
Removed Files:
xsrc/external/mit/lndir/dist: README
xsrc/external/mit/transset/dist: README
xsrc/external/mit/xgamma/dist: README

Log Message:
merge lndir 1.0.4, transset 1.0.3, xdm 1.1.14, xfd 1.1.4, and xgamma 1.0.7


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r0 xsrc/external/mit/lndir/dist/README
cvs rdiff -u -r1.1.1.1 -r0 xsrc/external/mit/transset/dist/README
cvs rdiff -u -r1.3 -r1.4 xsrc/external/mit/xdm/dist/xdm/session.c
cvs rdiff -u -r1.5 -r1.6 xsrc/external/mit/xdm/dist/xdm/xdmauth.c
cvs rdiff -u -r1.4 -r1.5 xsrc/external/mit/xfd/dist/compile
cvs rdiff -u -r1.1.1.2 -r0 xsrc/external/mit/xgamma/dist/README

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

Modified files:

Index: xsrc/external/mit/xdm/dist/xdm/session.c
diff -u xsrc/external/mit/xdm/dist/xdm/session.c:1.3 xsrc/external/mit/xdm/dist/xdm/session.c:1.4
--- xsrc/external/mit/xdm/dist/xdm/session.c:1.3	Tue Mar  5 08:34:27 2019
+++ xsrc/external/mit/xdm/dist/xdm/session.c	Sun Jan  8 09:19:54 2023
@@ -53,11 +53,7 @@ from The Open Group.
 
 # ifdef HAVE_SETPROCTITLE
 #  include 
-#  ifdef __linux__
-#   include 
-#  else
-#   include 
-#  endif
+#  include 
 # endif
 
 #ifndef USE_PAM/* PAM modules should handle these */

Index: xsrc/external/mit/xdm/dist/xdm/xdmauth.c
diff -u xsrc/external/mit/xdm/dist/xdm/xdmauth.c:1.5 xsrc/external/mit/xdm/dist/xdm/xdmauth.c:1.6
--- xsrc/external/mit/xdm/dist/xdm/xdmauth.c:1.5	Tue Mar  5 08:34:27 2019
+++ xsrc/external/mit/xdm/dist/xdm/xdmauth.c	Sun Jan  8 09:19:54 2023
@@ -111,7 +111,7 @@ XdmGetAuthHelper (unsigned short namelen
 	free (new);
 	return (Xauth *) 0;
 }
-memmove( (char *)new->name, name, namelen);
+memcpy(new->name, name, namelen);
 new->name_length = namelen;
 if (!GenerateAuthData ((char *)new->data, new->data_length))
 {
@@ -172,9 +172,9 @@ XdmGetXdmcpAuth (struct protoDisplay *pd
  * which is simply the number we've been passing back and
  * forth via XDMCP
  */
-memmove( fileauth->name, xdmcpauth->name, xdmcpauth->name_length);
-memmove( fileauth->data, pdpy->authenticationData.data, 8);
-memmove( fileauth->data + 8, xdmcpauth->data, 8);
+memcpy(fileauth->name, xdmcpauth->name, xdmcpauth->name_length);
+memcpy(fileauth->data, pdpy->authenticationData.data, 8);
+memcpy(fileauth->data + 8, xdmcpauth->data, 8);
 XdmPrintDataHex ("Accept packet auth", xdmcpauth->data, xdmcpauth->data_length);
 XdmPrintDataHex ("Auth file auth", fileauth->data, fileauth->data_length);
 /* encrypt the session key for its trip back to the server */
@@ -245,7 +245,7 @@ XdmGetKey(struct protoDisplay *pdpy, ARR
 	while (keylen < 7)
 		key[keylen++] = '\0';
 	pdpy->key.data[0] = '\0';
-	memmove( pdpy->key.data + 1, key, 7);
+	memcpy(pdpy->key.data + 1, key, 7);
 	bzero(key, sizeof(key));
 	fclose (keys);
 	return TRUE;

Index: xsrc/external/mit/xfd/dist/compile
diff -u xsrc/external/mit/xfd/dist/compile:1.4 xsrc/external/mit/xfd/dist/compile:1.5
--- xsrc/external/mit/xfd/dist/compile:1.4	Mon Mar 11 06:45:03 2019
+++ xsrc/external/mit/xfd/dist/compile	Sun Jan  8 09:19:54 2023
@@ -1,9 +1,9 @@
 #! /bin/sh
 # Wrapper for compilers which do not understand '-c -o'.
 
-scriptversion=2012-10-14.11; # UTC
+scriptversion=2018-03-07.03; # UTC
 
-# Copyright (C) 1999-2014 Free Software Foundation, Inc.
+# Copyright (C) 1999-2021 Free Software Foundation, Inc.
 # Written by Tom Tromey .
 #
 # This program is free software; you can redistribute it and/or modify
@@ -17,7 +17,7 @@ scriptversion=2012-10-14.11; # UTC
 # GNU General Public License for more details.
 #
 # You should have received a copy of the GNU General Public License
-# along with this program.  If not, see .
+# along with this program.  If not, see .
 
 # As a special exception to the GNU General Public License, if you
 # distribute this file as part of a program that contains a
@@ -53,7 +53,7 @@ func_file_conv ()
 	  MINGW*)
 	file_conv=mingw
 	;;
-	  CYGWIN*)
+	  CYGWIN* | MSYS*)
 	file_conv=cygwin
 	;;
 	  *)
@@ -67,7 +67,7 @@ func_file_conv ()
 	mingw/*)
 	  file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'`
 	  ;;
-	cygwin/*)
+	cygwin/* | msys/*)
 	  file=`cygpath -m "$file" || echo "$file"`
 	  ;;
 	wine/*)
@@ -255,7 +255,8 @@ EOF
 echo "compile $scriptversion"
 exit $?
 ;;
-  cl | *[/\\]cl | cl.exe | *[/\\]cl.exe )
+  cl | *[/\\]cl | cl.exe | *[/\\]cl.exe | \
+  icl | *[/\\]icl | icl.exe | *[/\\]icl.exe )
 func_cl_wrapper "$@"  # Doesn't return...
 ;;
 esac
@@ -339,9 +340,9 @@ exit $ret
 # Local Variables:
 # mode: shell-script
 # 

CVS commit: xsrc/external/mit

2023-01-08 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Jan  8 09:19:55 UTC 2023

Modified Files:
xsrc/external/mit/xdm/dist/xdm: session.c xdmauth.c
xsrc/external/mit/xfd/dist: compile
Removed Files:
xsrc/external/mit/lndir/dist: README
xsrc/external/mit/transset/dist: README
xsrc/external/mit/xgamma/dist: README

Log Message:
merge lndir 1.0.4, transset 1.0.3, xdm 1.1.14, xfd 1.1.4, and xgamma 1.0.7


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r0 xsrc/external/mit/lndir/dist/README
cvs rdiff -u -r1.1.1.1 -r0 xsrc/external/mit/transset/dist/README
cvs rdiff -u -r1.3 -r1.4 xsrc/external/mit/xdm/dist/xdm/session.c
cvs rdiff -u -r1.5 -r1.6 xsrc/external/mit/xdm/dist/xdm/xdmauth.c
cvs rdiff -u -r1.4 -r1.5 xsrc/external/mit/xfd/dist/compile
cvs rdiff -u -r1.1.1.2 -r0 xsrc/external/mit/xgamma/dist/README

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



  1   2   >