CVS commit: src/sys/dev

2013-05-30 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Thu May 30 08:28:13 UTC 2013

Modified Files:
src/sys/dev: cgd.c

Log Message:
Avoid dereferencing an uninitialized pointer


To generate a diff of this commit:
cvs rdiff -u -r1.80 -r1.81 src/sys/dev/cgd.c

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

Modified files:

Index: src/sys/dev/cgd.c
diff -u src/sys/dev/cgd.c:1.80 src/sys/dev/cgd.c:1.81
--- src/sys/dev/cgd.c:1.80	Wed May 29 23:25:39 2013
+++ src/sys/dev/cgd.c	Thu May 30 08:28:13 2013
@@ -1,4 +1,4 @@
-/* $NetBSD: cgd.c,v 1.80 2013/05/29 23:25:39 christos Exp $ */
+/* $NetBSD: cgd.c,v 1.81 2013/05/30 08:28:13 martin Exp $ */
 
 /*-
  * Copyright (c) 2002 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include sys/cdefs.h
-__KERNEL_RCSID(0, $NetBSD: cgd.c,v 1.80 2013/05/29 23:25:39 christos Exp $);
+__KERNEL_RCSID(0, $NetBSD: cgd.c,v 1.81 2013/05/30 08:28:13 martin Exp $);
 
 #include sys/types.h
 #include sys/param.h
@@ -747,7 +747,7 @@ cgd_ioctl_clr(struct cgd_softc *cs, stru
 static int
 cgd_ioctl_get(dev_t dev, void *data, struct lwp *l)
 {
-	struct cgd_softc *cs;
+	struct cgd_softc *cs = getcgd_softc(dev);
 	struct cgd_user *cgu;
 	int unit;
 	struct	dk_softc *dksc = cs-sc_dksc;



CVS commit: src/sys/arch/sparc64/dev

2013-05-30 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Thu May 30 16:01:25 UTC 2013

Modified Files:
src/sys/arch/sparc64/dev: fdc.c

Log Message:
Make it compile again


To generate a diff of this commit:
cvs rdiff -u -r1.37 -r1.38 src/sys/arch/sparc64/dev/fdc.c

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

Modified files:

Index: src/sys/arch/sparc64/dev/fdc.c
diff -u src/sys/arch/sparc64/dev/fdc.c:1.37 src/sys/arch/sparc64/dev/fdc.c:1.38
--- src/sys/arch/sparc64/dev/fdc.c:1.37	Wed May 29 00:47:48 2013
+++ src/sys/arch/sparc64/dev/fdc.c	Thu May 30 16:01:25 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: fdc.c,v 1.37 2013/05/29 00:47:48 christos Exp $	*/
+/*	$NetBSD: fdc.c,v 1.38 2013/05/30 16:01:25 martin Exp $	*/
 
 /*-
  * Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -101,7 +101,7 @@
  */
 
 #include sys/cdefs.h
-__KERNEL_RCSID(0, $NetBSD: fdc.c,v 1.37 2013/05/29 00:47:48 christos Exp $);
+__KERNEL_RCSID(0, $NetBSD: fdc.c,v 1.38 2013/05/30 16:01:25 martin Exp $);
 
 #include opt_ddb.h
 #include opt_md.h
@@ -2575,7 +2575,7 @@ fd_set_geometry(struct fd_softc *fd)
 			return;
 	}
 
-	struct disk_geom *dg = fd-sc_dkdev.dk_geom;
+	struct disk_geom *dg = fd-sc_dk.dk_geom;
 
 	memset(dg, 0, sizeof(*dg));
 	dg-dg_secperunit = fdt-size;
@@ -2591,6 +2591,6 @@ fd_set_geometry(struct fd_softc *fd)
 		break;
 	}
 	dg-dg_ntracks = fdt-heads;
-	dg-dg_ncylinders = fdt-cyls;
-	disk_set_info(fd-sc_dev, fd-sc_dkdev, NULL);
+	dg-dg_ncylinders = fdt-cylinders;
+	disk_set_info(fd-sc_dev, fd-sc_dk, NULL);
 }



CVS commit: src/sys/arch/sparc

2013-05-30 Thread Michael Lorenz
Module Name:src
Committed By:   macallan
Date:   Thu May 30 20:08:47 UTC 2013

Modified Files:
src/sys/arch/sparc: Makefile
Added Files:
src/sys/arch/sparc/dev: Makefile

Log Message:
install sxreg.h to /usr/include/sparc/


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/sys/arch/sparc/Makefile
cvs rdiff -u -r0 -r1.1 src/sys/arch/sparc/dev/Makefile

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

Modified files:

Index: src/sys/arch/sparc/Makefile
diff -u src/sys/arch/sparc/Makefile:1.10 src/sys/arch/sparc/Makefile:1.11
--- src/sys/arch/sparc/Makefile:1.10	Mon Apr  4 19:41:24 2011
+++ src/sys/arch/sparc/Makefile	Thu May 30 20:08:47 2013
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.10 2011/04/04 19:41:24 dyoung Exp $
+#	$NetBSD: Makefile,v 1.11 2013/05/30 20:08:47 macallan Exp $
 
 # Makefile for sparc tags file and boot blocks
 
@@ -29,6 +29,6 @@ links:
 	(cd $$i  rm -f tags; ln -s ../tags tags); done
 
 
-SUBDIR=	compile include stand
+SUBDIR=	compile include stand dev
 
 .include bsd.subdir.mk

Added files:

Index: src/sys/arch/sparc/dev/Makefile
diff -u /dev/null src/sys/arch/sparc/dev/Makefile:1.1
--- /dev/null	Thu May 30 20:08:47 2013
+++ src/sys/arch/sparc/dev/Makefile	Thu May 30 20:08:47 2013
@@ -0,0 +1,7 @@
+#	$NetBSD: Makefile,v 1.1 2013/05/30 20:08:47 macallan Exp $
+
+INCSDIR=/usr/include/sparc
+
+INCS=	sxreg.h
+
+.include bsd.kinc.mk



CVS commit: src/sys/arch/sparc/dev

2013-05-30 Thread Michael Lorenz
Module Name:src
Committed By:   macallan
Date:   Thu May 30 20:09:23 UTC 2013

Modified Files:
src/sys/arch/sparc/dev: sxreg.h

Log Message:
add SX_SELECT_S instruction


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/sparc/dev/sxreg.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/arch/sparc/dev/sxreg.h
diff -u src/sys/arch/sparc/dev/sxreg.h:1.4 src/sys/arch/sparc/dev/sxreg.h:1.5
--- src/sys/arch/sparc/dev/sxreg.h:1.4	Wed May 29 22:25:23 2013
+++ src/sys/arch/sparc/dev/sxreg.h	Thu May 30 20:09:23 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: sxreg.h,v 1.4 2013/05/29 22:25:23 macallan Exp $	*/
+/*	$NetBSD: sxreg.h,v 1.5 2013/05/30 20:09:23 macallan Exp $	*/
 
 /*-
  * Copyright (c) 2013 The NetBSD Foundation, Inc.
@@ -171,4 +171,6 @@
 
 #define SX_ROP(sa, sb, d, cnt) (0x9000 | ((cnt)  24) | SX_ROPL | \
 		((sa)  14) | (sb) | ((d)  7))
+#define SX_SELECT_S(sa, sb, d, cnt) (0x9000 | ((cnt)  24) | SX_SELS | \
+		((sa)  14) | (sb) | ((d)  7))
 #endif /* SXREG_H */



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

2013-05-30 Thread Michael Lorenz
Module Name:src
Committed By:   macallan
Date:   Thu May 30 20:10:14 UTC 2013

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

Log Message:
add sxreg.h


To generate a diff of this commit:
cvs rdiff -u -r1.78 -r1.79 src/distrib/sets/lists/comp/md.sparc

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.sparc
diff -u src/distrib/sets/lists/comp/md.sparc:1.78 src/distrib/sets/lists/comp/md.sparc:1.79
--- src/distrib/sets/lists/comp/md.sparc:1.78	Wed Jan 16 16:01:06 2013
+++ src/distrib/sets/lists/comp/md.sparc	Thu May 30 20:10:14 2013
@@ -1,4 +1,4 @@
-# $NetBSD: md.sparc,v 1.78 2013/01/16 16:01:06 christos Exp $
+# $NetBSD: md.sparc,v 1.79 2013/05/30 20:10:14 macallan Exp $
 ./usr/include/gcc-4.5/tgmath.h			comp-c-include		gcccmds,gcc=45
 ./usr/include/ieeefp.hcomp-c-include
 ./usr/include/sparccomp-c-include
@@ -59,6 +59,7 @@
 ./usr/include/sparc/signal.h			comp-c-include
 ./usr/include/sparc/sljitarch.h			comp-c-include
 ./usr/include/sparc/stdarg.h			comp-obsolete		obsolete
+./usr/include/sparc/sxreg.h			comp-c-include
 ./usr/include/sparc/tctrl.h			comp-c-include
 ./usr/include/sparc/trap.h			comp-c-include
 ./usr/include/sparc/types.h			comp-c-include



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Thu May 30 20:18:41 UTC 2013

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

Log Message:
initial import of bigreqsproto-1.1.2

Status:

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

U xsrc/external/mit/bigreqsproto/dist/bigreqsproto.pc.in
U xsrc/external/mit/bigreqsproto/dist/Makefile.in
U xsrc/external/mit/bigreqsproto/dist/README
U xsrc/external/mit/bigreqsproto/dist/INSTALL
U xsrc/external/mit/bigreqsproto/dist/Makefile.am
U xsrc/external/mit/bigreqsproto/dist/bigreqsproto.h
U xsrc/external/mit/bigreqsproto/dist/bigreqstr.h
U xsrc/external/mit/bigreqsproto/dist/config.guess
U xsrc/external/mit/bigreqsproto/dist/config.sub
U xsrc/external/mit/bigreqsproto/dist/ChangeLog
U xsrc/external/mit/bigreqsproto/dist/COPYING
U xsrc/external/mit/bigreqsproto/dist/configure.ac
U xsrc/external/mit/bigreqsproto/dist/configure
N xsrc/external/mit/bigreqsproto/dist/docbook.am
U xsrc/external/mit/bigreqsproto/dist/install-sh
U xsrc/external/mit/bigreqsproto/dist/aclocal.m4
U xsrc/external/mit/bigreqsproto/dist/missing
U xsrc/external/mit/bigreqsproto/dist/specs/bigreq.xml
U xsrc/external/mit/bigreqsproto/dist/specs/Makefile.in
U xsrc/external/mit/bigreqsproto/dist/specs/Makefile.am

No conflicts created by this import



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Thu May 30 20:18:44 UTC 2013

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

Log Message:
initial import of inputproto-2.3

Status:

Vendor Tag: xorg
Release Tags:   inputproto-2-3

U xsrc/external/mit/inputproto/dist/Makefile.in
U xsrc/external/mit/inputproto/dist/COPYING
U xsrc/external/mit/inputproto/dist/XI2proto.h
U xsrc/external/mit/inputproto/dist/missing
U xsrc/external/mit/inputproto/dist/XI2.h
U xsrc/external/mit/inputproto/dist/XI.h
U xsrc/external/mit/inputproto/dist/inputproto.pc.in
U xsrc/external/mit/inputproto/dist/ChangeLog
U xsrc/external/mit/inputproto/dist/README
U xsrc/external/mit/inputproto/dist/install-sh
U xsrc/external/mit/inputproto/dist/XIproto.h
U xsrc/external/mit/inputproto/dist/Makefile.am
U xsrc/external/mit/inputproto/dist/config.sub
U xsrc/external/mit/inputproto/dist/configure
U xsrc/external/mit/inputproto/dist/config.guess
U xsrc/external/mit/inputproto/dist/aclocal.m4
U xsrc/external/mit/inputproto/dist/configure.ac
U xsrc/external/mit/inputproto/dist/INSTALL
N xsrc/external/mit/inputproto/dist/specs/XIproto.txt
N xsrc/external/mit/inputproto/dist/specs/Makefile.in
N xsrc/external/mit/inputproto/dist/specs/Makefile.am
N xsrc/external/mit/inputproto/dist/specs/XI2proto.txt

No conflicts created by this import



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Thu May 30 20:18:47 UTC 2013

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

Log Message:
initial import of randrproto-1.4.0

Status:

Vendor Tag: xorg
Release Tags:   randrproto-1-4-0

U xsrc/external/mit/randrproto/dist/randrproto.pc.in
U xsrc/external/mit/randrproto/dist/install-sh
U xsrc/external/mit/randrproto/dist/configure
U xsrc/external/mit/randrproto/dist/INSTALL
U xsrc/external/mit/randrproto/dist/randr.h
U xsrc/external/mit/randrproto/dist/README
C xsrc/external/mit/randrproto/dist/randrproto.h
U xsrc/external/mit/randrproto/dist/randrproto.txt
U xsrc/external/mit/randrproto/dist/COPYING
U xsrc/external/mit/randrproto/dist/Makefile.in
U xsrc/external/mit/randrproto/dist/Makefile.am
U xsrc/external/mit/randrproto/dist/config.sub
U xsrc/external/mit/randrproto/dist/ChangeLog
U xsrc/external/mit/randrproto/dist/missing
U xsrc/external/mit/randrproto/dist/configure.ac
U xsrc/external/mit/randrproto/dist/config.guess
U xsrc/external/mit/randrproto/dist/aclocal.m4

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

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



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Thu May 30 20:18:46 UTC 2013

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

Log Message:
initial import of kbproto-1.0.6

Status:

Vendor Tag: xorg
Release Tags:   kbproto-1-0-6

U xsrc/external/mit/kbproto/dist/ChangeLog
U xsrc/external/mit/kbproto/dist/README
U xsrc/external/mit/kbproto/dist/configure.ac
U xsrc/external/mit/kbproto/dist/XKBstr.h
U xsrc/external/mit/kbproto/dist/configure
U xsrc/external/mit/kbproto/dist/missing
U xsrc/external/mit/kbproto/dist/config.sub
U xsrc/external/mit/kbproto/dist/COPYING
U xsrc/external/mit/kbproto/dist/XKBgeom.h
U xsrc/external/mit/kbproto/dist/XKB.h
N xsrc/external/mit/kbproto/dist/docbook.am
U xsrc/external/mit/kbproto/dist/XKBproto.h
U xsrc/external/mit/kbproto/dist/kbproto.pc.in
U xsrc/external/mit/kbproto/dist/Makefile.am
U xsrc/external/mit/kbproto/dist/XKBsrv.h
U xsrc/external/mit/kbproto/dist/config.guess
U xsrc/external/mit/kbproto/dist/INSTALL
U xsrc/external/mit/kbproto/dist/install-sh
U xsrc/external/mit/kbproto/dist/aclocal.m4
U xsrc/external/mit/kbproto/dist/Makefile.in
N xsrc/external/mit/kbproto/dist/specs/XKBproto-7.svg
N xsrc/external/mit/kbproto/dist/specs/Makefile.am
N xsrc/external/mit/kbproto/dist/specs/ch14.xml
N xsrc/external/mit/kbproto/dist/specs/XKBproto-2.svg
N xsrc/external/mit/kbproto/dist/specs/acknowledgements.xml
N xsrc/external/mit/kbproto/dist/specs/ch13.xml
N xsrc/external/mit/kbproto/dist/specs/XKBproto-9.svg
N xsrc/external/mit/kbproto/dist/specs/ch02.xml
N xsrc/external/mit/kbproto/dist/specs/ch05.xml
N xsrc/external/mit/kbproto/dist/specs/XKBproto-11.svg
N xsrc/external/mit/kbproto/dist/specs/XKBproto-8.svg
N xsrc/external/mit/kbproto/dist/specs/XKBproto-6.svg
N xsrc/external/mit/kbproto/dist/specs/ch12.xml
N xsrc/external/mit/kbproto/dist/specs/appA.xml
N xsrc/external/mit/kbproto/dist/specs/ch15.xml
N xsrc/external/mit/kbproto/dist/specs/XKBproto-1.svg
N xsrc/external/mit/kbproto/dist/specs/Makefile.in
N xsrc/external/mit/kbproto/dist/specs/XKBproto-10.svg
N xsrc/external/mit/kbproto/dist/specs/ch04.xml
N xsrc/external/mit/kbproto/dist/specs/ch03.xml
N xsrc/external/mit/kbproto/dist/specs/xkbproto.xml
N xsrc/external/mit/kbproto/dist/specs/ch07.xml
N xsrc/external/mit/kbproto/dist/specs/ch09.xml
N xsrc/external/mit/kbproto/dist/specs/ch16.xml
N xsrc/external/mit/kbproto/dist/specs/XKBproto-5.svg
N xsrc/external/mit/kbproto/dist/specs/ch11.xml
N xsrc/external/mit/kbproto/dist/specs/appB.xml
N xsrc/external/mit/kbproto/dist/specs/ch08.xml
N xsrc/external/mit/kbproto/dist/specs/ch06.xml
N xsrc/external/mit/kbproto/dist/specs/ch01.xml
N xsrc/external/mit/kbproto/dist/specs/XKBproto-4.svg
N xsrc/external/mit/kbproto/dist/specs/ch10.xml
N xsrc/external/mit/kbproto/dist/specs/appC.xml
N xsrc/external/mit/kbproto/dist/specs/appD.xml
N xsrc/external/mit/kbproto/dist/specs/XKBproto-3.svg

No conflicts created by this import



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Thu May 30 20:18:48 UTC 2013

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

Log Message:
initial import of recordproto-1.14.2

Status:

Vendor Tag: xorg
Release Tags:   recordproto-1-14-2

U xsrc/external/mit/recordproto/dist/recordproto.h
U xsrc/external/mit/recordproto/dist/Makefile.am
U xsrc/external/mit/recordproto/dist/INSTALL
U xsrc/external/mit/recordproto/dist/config.guess
U xsrc/external/mit/recordproto/dist/config.sub
U xsrc/external/mit/recordproto/dist/COPYING
U xsrc/external/mit/recordproto/dist/recordconst.h
U xsrc/external/mit/recordproto/dist/Makefile.in
N xsrc/external/mit/recordproto/dist/docbook.am
U xsrc/external/mit/recordproto/dist/missing
U xsrc/external/mit/recordproto/dist/configure.ac
U xsrc/external/mit/recordproto/dist/README
U xsrc/external/mit/recordproto/dist/recordstr.h
U xsrc/external/mit/recordproto/dist/configure
U xsrc/external/mit/recordproto/dist/recordproto.pc.in
U xsrc/external/mit/recordproto/dist/ChangeLog
U xsrc/external/mit/recordproto/dist/install-sh
U xsrc/external/mit/recordproto/dist/aclocal.m4
U xsrc/external/mit/recordproto/dist/specs/record.xml
U xsrc/external/mit/recordproto/dist/specs/Makefile.in
U xsrc/external/mit/recordproto/dist/specs/Makefile.am

No conflicts created by this import



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Thu May 30 20:18:50 UTC 2013

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

Log Message:
initial import of scrnsaverproto-1.2.2

Status:

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

U xsrc/external/mit/scrnsaverproto/dist/aclocal.m4
U xsrc/external/mit/scrnsaverproto/dist/INSTALL
U xsrc/external/mit/scrnsaverproto/dist/install-sh
U xsrc/external/mit/scrnsaverproto/dist/saver.h
U xsrc/external/mit/scrnsaverproto/dist/configure
U xsrc/external/mit/scrnsaverproto/dist/README
N xsrc/external/mit/scrnsaverproto/dist/docbook.am
U xsrc/external/mit/scrnsaverproto/dist/ChangeLog
U xsrc/external/mit/scrnsaverproto/dist/config.guess
U xsrc/external/mit/scrnsaverproto/dist/configure.ac
U xsrc/external/mit/scrnsaverproto/dist/saverproto.h
U xsrc/external/mit/scrnsaverproto/dist/Makefile.in
U xsrc/external/mit/scrnsaverproto/dist/config.sub
U xsrc/external/mit/scrnsaverproto/dist/COPYING
U xsrc/external/mit/scrnsaverproto/dist/Makefile.am
U xsrc/external/mit/scrnsaverproto/dist/missing
U xsrc/external/mit/scrnsaverproto/dist/scrnsaverproto.pc.in
U xsrc/external/mit/scrnsaverproto/dist/specs/Makefile.am
U xsrc/external/mit/scrnsaverproto/dist/specs/saver.xml
U xsrc/external/mit/scrnsaverproto/dist/specs/Makefile.in

No conflicts created by this import



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Thu May 30 20:18:51 UTC 2013

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

Log Message:
initial import of xcmiscproto-1.2.2

Status:

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

U xsrc/external/mit/xcmiscproto/dist/xcmiscproto.pc.in
U xsrc/external/mit/xcmiscproto/dist/configure
U xsrc/external/mit/xcmiscproto/dist/xcmiscproto.h
U xsrc/external/mit/xcmiscproto/dist/config.sub
U xsrc/external/mit/xcmiscproto/dist/ChangeLog
U xsrc/external/mit/xcmiscproto/dist/xcmiscstr.h
U xsrc/external/mit/xcmiscproto/dist/INSTALL
U xsrc/external/mit/xcmiscproto/dist/README
U xsrc/external/mit/xcmiscproto/dist/config.guess
U xsrc/external/mit/xcmiscproto/dist/configure.ac
U xsrc/external/mit/xcmiscproto/dist/install-sh
U xsrc/external/mit/xcmiscproto/dist/Makefile.in
U xsrc/external/mit/xcmiscproto/dist/missing
U xsrc/external/mit/xcmiscproto/dist/aclocal.m4
U xsrc/external/mit/xcmiscproto/dist/Makefile.am
U xsrc/external/mit/xcmiscproto/dist/COPYING
N xsrc/external/mit/xcmiscproto/dist/docbook.am
U xsrc/external/mit/xcmiscproto/dist/specs/Makefile.am
U xsrc/external/mit/xcmiscproto/dist/specs/Makefile.in
U xsrc/external/mit/xcmiscproto/dist/specs/xc-misc.xml

No conflicts created by this import



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Thu May 30 20:18:53 UTC 2013

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

Log Message:
initial import of xextproto-7.2.1

Status:

Vendor Tag: xorg
Release Tags:   xextproto-7-2-1

U xsrc/external/mit/xextproto/dist/xextproto.pc.in
U xsrc/external/mit/xextproto/dist/cupproto.h
U xsrc/external/mit/xextproto/dist/xtestconst.h
U xsrc/external/mit/xextproto/dist/xtestproto.h
U xsrc/external/mit/xextproto/dist/geproto.h
U xsrc/external/mit/xextproto/dist/shmstr.h
U xsrc/external/mit/xextproto/dist/syncconst.h
U xsrc/external/mit/xextproto/dist/lbx.h
U xsrc/external/mit/xextproto/dist/secur.h
U xsrc/external/mit/xextproto/dist/Makefile.in
U xsrc/external/mit/xextproto/dist/syncproto.h
U xsrc/external/mit/xextproto/dist/dbe.h
U xsrc/external/mit/xextproto/dist/cup.h
U xsrc/external/mit/xextproto/dist/shm.h
U xsrc/external/mit/xextproto/dist/xtestext1proto.h
U xsrc/external/mit/xextproto/dist/Makefile.am
U xsrc/external/mit/xextproto/dist/lbxproto.h
U xsrc/external/mit/xextproto/dist/EVIproto.h
U xsrc/external/mit/xextproto/dist/ge.h
U xsrc/external/mit/xextproto/dist/config.guess
U xsrc/external/mit/xextproto/dist/securproto.h
U xsrc/external/mit/xextproto/dist/INSTALL
U xsrc/external/mit/xextproto/dist/ag.h
U xsrc/external/mit/xextproto/dist/config.sub
U xsrc/external/mit/xextproto/dist/README
U xsrc/external/mit/xextproto/dist/configure
U xsrc/external/mit/xextproto/dist/shmproto.h
U xsrc/external/mit/xextproto/dist/xtestext1const.h
U xsrc/external/mit/xextproto/dist/configure.ac
U xsrc/external/mit/xextproto/dist/missing
U xsrc/external/mit/xextproto/dist/ChangeLog
U xsrc/external/mit/xextproto/dist/dbeproto.h
N xsrc/external/mit/xextproto/dist/docbook.am
U xsrc/external/mit/xextproto/dist/EVI.h
U xsrc/external/mit/xextproto/dist/dpmsproto.h
U xsrc/external/mit/xextproto/dist/install-sh
U xsrc/external/mit/xextproto/dist/dpmsconst.h
U xsrc/external/mit/xextproto/dist/shapestr.h
U xsrc/external/mit/xextproto/dist/aclocal.m4
U xsrc/external/mit/xextproto/dist/COPYING
U xsrc/external/mit/xextproto/dist/multibufconst.h
U xsrc/external/mit/xextproto/dist/shapeproto.h
U xsrc/external/mit/xextproto/dist/multibufproto.h
U xsrc/external/mit/xextproto/dist/shapeconst.h
U xsrc/external/mit/xextproto/dist/agproto.h
U xsrc/external/mit/xextproto/dist/mitmiscproto.h
U xsrc/external/mit/xextproto/dist/mitmiscconst.h
U xsrc/external/mit/xextproto/dist/syncstr.h
U xsrc/external/mit/xextproto/dist/specs/security.xml
U xsrc/external/mit/xextproto/dist/specs/dbe.xml
U xsrc/external/mit/xextproto/dist/specs/sync.xml
U xsrc/external/mit/xextproto/dist/specs/geproto.xml
U xsrc/external/mit/xextproto/dist/specs/shape.xml
U xsrc/external/mit/xextproto/dist/specs/xtest.xml
U xsrc/external/mit/xextproto/dist/specs/multibuf.xml
U xsrc/external/mit/xextproto/dist/specs/dpms.xml
U xsrc/external/mit/xextproto/dist/specs/Makefile.am
U xsrc/external/mit/xextproto/dist/specs/appgrp.xml
U xsrc/external/mit/xextproto/dist/specs/evi.xml
U xsrc/external/mit/xextproto/dist/specs/shm.xml
U xsrc/external/mit/xextproto/dist/specs/lbx.xml
U xsrc/external/mit/xextproto/dist/specs/tog-cup.xml
U xsrc/external/mit/xextproto/dist/specs/Makefile.in
U xsrc/external/mit/xextproto/dist/specs/appendix.xml

No conflicts created by this import



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Thu May 30 20:18:55 UTC 2013

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

Log Message:
initial import of xproto-7.0.24

Status:

Vendor Tag: xorg
Release Tags:   xproto-7-0-24

U xsrc/external/mit/xproto/dist/Xfuncproto.h.in
U xsrc/external/mit/xproto/dist/Makefile.in
U xsrc/external/mit/xproto/dist/docbook.am
U xsrc/external/mit/xproto/dist/COPYING
U xsrc/external/mit/xproto/dist/AUTHORS
U xsrc/external/mit/xproto/dist/config.guess
U xsrc/external/mit/xproto/dist/X.h
U xsrc/external/mit/xproto/dist/ap_keysym.h
U xsrc/external/mit/xproto/dist/HPkeysym.h
U xsrc/external/mit/xproto/dist/ChangeLog
U xsrc/external/mit/xproto/dist/Makefile.am
U xsrc/external/mit/xproto/dist/Xproto.h
U xsrc/external/mit/xproto/dist/README
U xsrc/external/mit/xproto/dist/Xos.h
U xsrc/external/mit/xproto/dist/configure
U xsrc/external/mit/xproto/dist/missing
U xsrc/external/mit/xproto/dist/install-sh
U xsrc/external/mit/xproto/dist/Xthreads.h
U xsrc/external/mit/xproto/dist/Xw32defs.h
U xsrc/external/mit/xproto/dist/aclocal.m4
U xsrc/external/mit/xproto/dist/Xwindows.h
U xsrc/external/mit/xproto/dist/keysym.h
U xsrc/external/mit/xproto/dist/do-not-use-config.h.in
U xsrc/external/mit/xproto/dist/Xos_r.h
U xsrc/external/mit/xproto/dist/Xpoll.h.in
U xsrc/external/mit/xproto/dist/XF86keysym.h
U xsrc/external/mit/xproto/dist/INSTALL
U xsrc/external/mit/xproto/dist/Xfuncs.h
U xsrc/external/mit/xproto/dist/XWDFile.h
U xsrc/external/mit/xproto/dist/Xatom.h
U xsrc/external/mit/xproto/dist/Xarch.h
U xsrc/external/mit/xproto/dist/Xmd.h
U xsrc/external/mit/xproto/dist/DECkeysym.h
U xsrc/external/mit/xproto/dist/Xosdefs.h
U xsrc/external/mit/xproto/dist/Xprotostr.h
U xsrc/external/mit/xproto/dist/Xalloca.h
U xsrc/external/mit/xproto/dist/config.sub
U xsrc/external/mit/xproto/dist/keysymdef.h
U xsrc/external/mit/xproto/dist/configure.ac
U xsrc/external/mit/xproto/dist/Sunkeysym.h
U xsrc/external/mit/xproto/dist/Xdefs.h
U xsrc/external/mit/xproto/dist/xproto.pc.in
U xsrc/external/mit/xproto/dist/Xwinsock.h
U xsrc/external/mit/xproto/dist/specs/keysyms.xml
U xsrc/external/mit/xproto/dist/specs/encoding.xml
U xsrc/external/mit/xproto/dist/specs/Makefile.in
U xsrc/external/mit/xproto/dist/specs/x11protocol.xml
U xsrc/external/mit/xproto/dist/specs/Makefile.am
U xsrc/external/mit/xproto/dist/specs/sect1-9.xml
U xsrc/external/mit/xproto/dist/specs/glossary.xml
U xsrc/external/mit/xproto/dist/specs/SIAddresses/localuser.txt
U xsrc/external/mit/xproto/dist/specs/SIAddresses/Makefile.am
U xsrc/external/mit/xproto/dist/specs/SIAddresses/Makefile.in
U xsrc/external/mit/xproto/dist/specs/SIAddresses/hostname.txt
U xsrc/external/mit/xproto/dist/specs/SIAddresses/README
U xsrc/external/mit/xproto/dist/specs/SIAddresses/IPv6.txt

No conflicts created by this import



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Thu May 30 20:20:23 UTC 2013

Removed Files:
xsrc/external/mit/inputproto/dist: XI2proto.txt XIproto.txt

Log Message:
merge inputproto 2.3.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.2 -r0 xsrc/external/mit/inputproto/dist/XI2proto.txt
cvs rdiff -u -r1.1.1.3 -r0 xsrc/external/mit/inputproto/dist/XIproto.txt

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



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Thu May 30 20:20:39 UTC 2013

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

Log Message:
merge randrproto 1.4.0


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 xsrc/external/mit/randrproto/dist/randrproto.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/randrproto/dist/randrproto.h
diff -u xsrc/external/mit/randrproto/dist/randrproto.h:1.3 xsrc/external/mit/randrproto/dist/randrproto.h:1.4
--- xsrc/external/mit/randrproto/dist/randrproto.h:1.3	Tue Mar 10 04:20:18 2009
+++ xsrc/external/mit/randrproto/dist/randrproto.h	Thu May 30 20:20:39 2013
@@ -48,6 +48,7 @@
 #define RROutput CARD32
 #define RRMode CARD32
 #define RRCrtc CARD32
+#define RRProvider CARD32
 #define RRModeFlags CARD32
 
 #define Rotation CARD16
@@ -646,6 +647,195 @@ typedef struct {
 #define sz_xRRGetOutputPrimaryReply	32
 
 /*
+ * Additions for V1.4
+ */
+
+typedef struct {
+CARD8	reqType;
+CARD8	randrReqType;
+CARD16	length B16;
+Window	window B32;
+} xRRGetProvidersReq;
+#define sz_xRRGetProvidersReq 8
+
+typedef struct {
+BYTE	type;
+CARD8	pad;
+CARD16	sequenceNumber B16;
+CARD32	length B32;
+Time	timestamp B32;
+CARD16	nProviders;
+CARD16	pad1 B16;
+CARD32	pad2 B32;
+CARD32	pad3 B32;
+CARD32	pad4 B32;
+CARD32	pad5 B32;
+} xRRGetProvidersReply;
+#define sz_xRRGetProvidersReply 32
+
+typedef struct {
+CARD8	reqType;
+CARD8	randrReqType;
+CARD16	length B16;
+RRProvider	provider B32;
+Time	configTimestamp B32;
+} xRRGetProviderInfoReq;
+#define sz_xRRGetProviderInfoReq 12
+
+typedef struct {
+BYTE	type;
+CARD8	status;
+CARD16	sequenceNumber B16;
+CARD32	length B32;
+Time	timestamp B32;
+CARD32	capabilities B32;
+CARD16	nCrtcs B16;
+CARD16	nOutputs B16;
+CARD16	nAssociatedProviders B16;
+CARD16	nameLength B16;
+CARD32  pad1 B32;
+CARD32  pad2 B32;
+} xRRGetProviderInfoReply;
+#define sz_xRRGetProviderInfoReply 32
+
+typedef struct {
+CARD8	reqType;
+CARD8	randrReqType;
+CARD16	length B16;
+RRProvider  provider B32;
+RRProvider  source_provider B32;
+Time	configTimestamp B32;
+} xRRSetProviderOutputSourceReq;
+#define sz_xRRSetProviderOutputSourceReq 16
+
+typedef struct {
+CARD8	reqType;
+CARD8	randrReqType;
+CARD16	length B16;
+RRProvider  provider B32;
+RRProvider  sink_provider B32;
+Time	configTimestamp B32;
+} xRRSetProviderOffloadSinkReq;
+#define sz_xRRSetProviderOffloadSinkReq 16
+
+typedef struct {
+CARD8	reqType;
+CARD8	randrReqType;
+CARD16	length B16;
+RRProvider	provider B32;
+} xRRListProviderPropertiesReq; 
+#define sz_xRRListProviderPropertiesReq	8
+
+typedef struct {
+BYTE	type;
+CARD8	pad0;
+CARD16	sequenceNumber B16;
+CARD32	length B32;
+CARD16	nAtoms B16;
+CARD16	pad1 B16;
+CARD32	pad2 B32;
+CARD32	pad3 B32;
+CARD32	pad4 B32;
+CARD32	pad5 B32;
+CARD32	pad6 B32;
+} xRRListProviderPropertiesReply;
+#define sz_xRRListProviderPropertiesReply	32
+
+typedef struct {
+CARD8	reqType;
+CARD8	randrReqType;
+CARD16	length B16;
+RRProvider	provider B32;
+Atom	property B32;
+} xRRQueryProviderPropertyReq; 
+#define sz_xRRQueryProviderPropertyReq	12
+
+typedef struct {
+BYTE	type;
+BYTE	pad0;
+CARD16	sequenceNumber B16;
+CARD32	length B32;
+BOOL	pending;
+BOOL	range;
+BOOL	immutable;
+BYTE	pad1;
+CARD32	pad2 B32;
+CARD32	pad3 B32;
+CARD32	pad4 B32;
+CARD32	pad5 B32;
+CARD32	pad6 B32;
+} xRRQueryProviderPropertyReply;
+#define sz_xRRQueryProviderPropertyReply	32
+
+typedef struct {
+CARD8	reqType;
+CARD8	randrReqType;
+CARD16	length B16;
+RRProvider	provider B32;
+Atom	property B32;
+BOOL	pending;
+BOOL	range;
+CARD16	pad B16;
+} xRRConfigureProviderPropertyReq; 
+#define sz_xRRConfigureProviderPropertyReq	16
+
+typedef struct {
+CARD8	reqType;
+CARD8	randrReqType;
+CARD16	length B16;
+RRProvider	provider B32;
+Atom	property B32;
+Atom	type B32;
+CARD8	format;
+CARD8	mode;
+CARD16	pad;
+CARD32	nUnits B32;
+} xRRChangeProviderPropertyReq;
+#define sz_xRRChangeProviderPropertyReq	24
+
+typedef struct {
+CARD8	reqType;
+CARD8	randrReqType;
+CARD16	length B16;
+RRProvider	provider B32;
+Atom	property B32;
+} xRRDeleteProviderPropertyReq;
+#define sz_xRRDeleteProviderPropertyReq	12
+
+typedef struct {
+CARD8	reqType;
+CARD8	randrReqType;
+CARD16	length B16;
+RRProvider	provider B32;
+Atom	property B32;
+Atom	type B32;
+CARD32	longOffset B32;
+CARD32	longLength B32;
+#ifdef __cplusplus
+BOOL	_delete;
+#else
+BOOL	delete;
+#endif
+BOOL	pending;
+CARD16	pad1 B16;
+} xRRGetProviderPropertyReq;

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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Thu May 30 20:23:54 UTC 2013

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

Log Message:
initial import of libFS-1.0.5

Status:

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

U xsrc/external/mit/libFS/dist/config.guess
U xsrc/external/mit/libFS/dist/INSTALL
U xsrc/external/mit/libFS/dist/README
U xsrc/external/mit/libFS/dist/ltmain.sh
U xsrc/external/mit/libFS/dist/config.sub
U xsrc/external/mit/libFS/dist/config.h.in
U xsrc/external/mit/libFS/dist/Makefile.am
U xsrc/external/mit/libFS/dist/COPYING
U xsrc/external/mit/libFS/dist/libfs.pc.in
U xsrc/external/mit/libFS/dist/ChangeLog
U xsrc/external/mit/libFS/dist/missing
U xsrc/external/mit/libFS/dist/configure.ac
U xsrc/external/mit/libFS/dist/Makefile.in
U xsrc/external/mit/libFS/dist/depcomp
U xsrc/external/mit/libFS/dist/install-sh
U xsrc/external/mit/libFS/dist/configure
U xsrc/external/mit/libFS/dist/aclocal.m4
U xsrc/external/mit/libFS/dist/doc/FSlib.txt
U xsrc/external/mit/libFS/dist/src/fs_transport.c
U xsrc/external/mit/libFS/dist/src/FSSynchro.c
U xsrc/external/mit/libFS/dist/src/FSNextEv.c
U xsrc/external/mit/libFS/dist/src/FSErrHndlr.c
U xsrc/external/mit/libFS/dist/src/Makefile.in
U xsrc/external/mit/libFS/dist/src/FSQuExt.c
U xsrc/external/mit/libFS/dist/src/FSMisc.c
U xsrc/external/mit/libFS/dist/src/FSErrDis.c
U xsrc/external/mit/libFS/dist/src/FSListExt.c
U xsrc/external/mit/libFS/dist/src/FSQXInfo.c
U xsrc/external/mit/libFS/dist/src/Makefile.am
U xsrc/external/mit/libFS/dist/src/FSGetCats.c
U xsrc/external/mit/libFS/dist/src/FSSync.c
U xsrc/external/mit/libFS/dist/src/FSQGlyphs.c
U xsrc/external/mit/libFS/dist/src/FSSetCats.c
U xsrc/external/mit/libFS/dist/src/FSOpenFont.c
U xsrc/external/mit/libFS/dist/src/FSlibint.h
U xsrc/external/mit/libFS/dist/src/FSFontInfo.c
U xsrc/external/mit/libFS/dist/src/FSServName.c
U xsrc/external/mit/libFS/dist/src/FSQXExt.c
U xsrc/external/mit/libFS/dist/src/FSConnServ.c
U xsrc/external/mit/libFS/dist/src/FSFlush.c
U xsrc/external/mit/libFS/dist/src/FSListCats.c
U xsrc/external/mit/libFS/dist/src/FSClServ.c
U xsrc/external/mit/libFS/dist/src/FSlibos.h
C xsrc/external/mit/libFS/dist/src/FSlibInt.c
U xsrc/external/mit/libFS/dist/src/FSFtNames.c
U xsrc/external/mit/libFS/dist/src/FSOpenServ.c
U xsrc/external/mit/libFS/dist/src/FSCloseFt.c
U xsrc/external/mit/libFS/dist/include/X11/fonts/FSlib.h
N xsrc/external/mit/libFS/dist/test/FSGetErrorText.c
N xsrc/external/mit/libFS/dist/test/Makefile.am
N xsrc/external/mit/libFS/dist/test/Makefile.in

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

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



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Thu May 30 20:23:56 UTC 2013

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

Log Message:
initial import of libXcursor-1.1.14

Status:

Vendor Tag: xorg
Release Tags:   libXcursor-1-1-14

U xsrc/external/mit/libXcursor/dist/INSTALL
U xsrc/external/mit/libXcursor/dist/ltmain.sh
U xsrc/external/mit/libXcursor/dist/install-sh
U xsrc/external/mit/libXcursor/dist/README
U xsrc/external/mit/libXcursor/dist/aclocal.m4
U xsrc/external/mit/libXcursor/dist/config.h.in
U xsrc/external/mit/libXcursor/dist/xcursor.pc.in
U xsrc/external/mit/libXcursor/dist/configure.ac
U xsrc/external/mit/libXcursor/dist/config.guess
U xsrc/external/mit/libXcursor/dist/ChangeLog
U xsrc/external/mit/libXcursor/dist/Makefile.in
U xsrc/external/mit/libXcursor/dist/configure
U xsrc/external/mit/libXcursor/dist/missing
U xsrc/external/mit/libXcursor/dist/depcomp
U xsrc/external/mit/libXcursor/dist/config.sub
U xsrc/external/mit/libXcursor/dist/COPYING
U xsrc/external/mit/libXcursor/dist/Makefile.am
U xsrc/external/mit/libXcursor/dist/AUTHORS
U xsrc/external/mit/libXcursor/dist/src/display.c
U xsrc/external/mit/libXcursor/dist/src/Makefile.am
U xsrc/external/mit/libXcursor/dist/src/file.c
U xsrc/external/mit/libXcursor/dist/src/xcursorint.h
U xsrc/external/mit/libXcursor/dist/src/Makefile.in
U xsrc/external/mit/libXcursor/dist/src/cursor.c
U xsrc/external/mit/libXcursor/dist/src/library.c
U xsrc/external/mit/libXcursor/dist/src/xlib.c
U xsrc/external/mit/libXcursor/dist/include/X11/Xcursor/Xcursor.h
N xsrc/external/mit/libXcursor/dist/include/X11/Xcursor/Xcursor.h.in
U xsrc/external/mit/libXcursor/dist/man/XcursorLibraryLoadCursor.man
U xsrc/external/mit/libXcursor/dist/man/XcursorImagesDestroy.man
U xsrc/external/mit/libXcursor/dist/man/Makefile.in
U xsrc/external/mit/libXcursor/dist/man/XcursorFilenameSave.man
U xsrc/external/mit/libXcursor/dist/man/XcursorXcFileSave.man
U xsrc/external/mit/libXcursor/dist/man/XcursorCursorsCreate.man
U xsrc/external/mit/libXcursor/dist/man/XcursorFilenameSaveImages.man
U xsrc/external/mit/libXcursor/dist/man/XcursorShapeLoadImages.man
U xsrc/external/mit/libXcursor/dist/man/XcursorSetTheme.man
U xsrc/external/mit/libXcursor/dist/man/XcursorFilenameLoadAllImages.man
U xsrc/external/mit/libXcursor/dist/man/XcursorSetDefaultSize.man
U xsrc/external/mit/libXcursor/dist/man/XcursorGetTheme.man
U xsrc/external/mit/libXcursor/dist/man/Makefile.am
U xsrc/external/mit/libXcursor/dist/man/XcursorImagesCreate.man
U xsrc/external/mit/libXcursor/dist/man/Xcursor.man
U xsrc/external/mit/libXcursor/dist/man/XcursorShapeLoadCursors.man
U xsrc/external/mit/libXcursor/dist/man/XcursorFilenameLoadImages.man
U xsrc/external/mit/libXcursor/dist/man/XcursorLibraryLoadImages.man
U xsrc/external/mit/libXcursor/dist/man/XcursorImageCreate.man
U xsrc/external/mit/libXcursor/dist/man/XcursorShapeLoadCursor.man
U xsrc/external/mit/libXcursor/dist/man/XcursorLibraryLoadImage.man
U xsrc/external/mit/libXcursor/dist/man/XcursorFilenameLoad.man
U xsrc/external/mit/libXcursor/dist/man/XcursorFilenameLoadImage.man
U xsrc/external/mit/libXcursor/dist/man/XcursorXcFileLoad.man
U xsrc/external/mit/libXcursor/dist/man/XcursorXcFileLoadImages.man
U xsrc/external/mit/libXcursor/dist/man/XcursorXcFileLoadAllImages.man
U xsrc/external/mit/libXcursor/dist/man/XcursorLibraryLoadCursors.man
U xsrc/external/mit/libXcursor/dist/man/XcursorImageDestroy.man
U xsrc/external/mit/libXcursor/dist/man/XcursorCursorsDestroy.man
U xsrc/external/mit/libXcursor/dist/man/XcursorSupportsARGB.man
U xsrc/external/mit/libXcursor/dist/man/XcursorXcFileLoadImage.man
U xsrc/external/mit/libXcursor/dist/man/XcursorFilenameLoadCursor.man
U xsrc/external/mit/libXcursor/dist/man/XcursorShapeLoadImage.man
U xsrc/external/mit/libXcursor/dist/man/XcursorGetDefaultSize.man

No conflicts created by this import



CVS commit: xsrc/external/mit/libFS/dist/src

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Thu May 30 20:24:25 UTC 2013

Modified Files:
xsrc/external/mit/libFS/dist/src: FSlibInt.c

Log Message:
merge libFS 1.0.5


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 xsrc/external/mit/libFS/dist/src/FSlibInt.c

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/libFS/dist/src/FSlibInt.c
diff -u xsrc/external/mit/libFS/dist/src/FSlibInt.c:1.2 xsrc/external/mit/libFS/dist/src/FSlibInt.c:1.3
--- xsrc/external/mit/libFS/dist/src/FSlibInt.c:1.2	Tue Jun  1 04:21:06 2010
+++ xsrc/external/mit/libFS/dist/src/FSlibInt.c	Thu May 30 20:24:25 2013
@@ -2,24 +2,24 @@
  * Copyright 1990 Network Computing Devices;
  * Portions Copyright 1987 by Digital Equipment Corporation
  *
- * Permission to use, copy, modify, distribute, and sell this software 
- * and its documentation for any purpose is hereby granted without fee, 
- * provided that the above copyright notice appear in all copies and 
- * that both that copyright notice and this permission notice appear 
- * in supporting documentation, and that the names of Network Computing 
- * Devices or Digital not be used in advertising or publicity pertaining 
- * to distribution of the software without specific, written prior 
- * permission. Network Computing Devices or Digital make no representations 
- * about the suitability of this software for any purpose.  It is provided 
+ * Permission to use, copy, modify, distribute, and sell this software
+ * and its documentation for any purpose is hereby granted without fee,
+ * provided that the above copyright notice appear in all copies and
+ * that both that copyright notice and this permission notice appear
+ * in supporting documentation, and that the names of Network Computing
+ * Devices or Digital not be used in advertising or publicity pertaining
+ * to distribution of the software without specific, written prior
+ * permission. Network Computing Devices or Digital make no representations
+ * about the suitability of this software for any purpose.  It is provided
  * as is without express or implied warranty.
  *
  * NETWORK COMPUTING DEVICES AND  DIGITAL DISCLAIM ALL WARRANTIES WITH
- * REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF 
+ * REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
  * MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL NETWORK COMPUTING DEVICES
- * OR DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES 
- * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, 
- * WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, 
- * ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS 
+ * OR DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES
+ * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
+ * WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
+ * ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  * SOFTWARE.
  */
 
@@ -61,7 +61,7 @@ in this Software without prior written a
 #include X11/Xos.h
 
 static void _EatData32 ( FSServer *svr, unsigned long n );
-static char * _SysErrorMsg ( int n );
+static const char * _SysErrorMsg ( int n );
 
 /* check for both EAGAIN and EWOULDBLOCK, because some supposedly POSIX
  * systems are broken and return EWOULDBLOCK when they should return EAGAIN
@@ -127,7 +127,7 @@ static fsReq _dummy_request = {
  * action is taken.  This routine correctly handles incremental writes.
  * This routine may have to be reworked if int  long.
  */
-void 
+void
 _FSFlush(register FSServer *svr)
 {
 register long size,
@@ -211,7 +211,7 @@ _FSEventsQueued(
 /* _FSReadEvents - Flush the output queue,
  * then read as many events as possible (but at least 1) and enqueue them
  */
-void 
+void
 _FSReadEvents(register FSServer *svr)
 {
 charbuf[BUFSIZE];
@@ -268,7 +268,7 @@ _FSReadEvents(register FSServer *svr)
  * _FSRead - Read bytes from the socket taking into account incomplete
  * reads.  This routine may have to be reworked if int  long.
  */
-void 
+void
 _FSRead(
 register FSServer	*svr,
 register char	*data,
@@ -343,7 +343,7 @@ _FSRead(
  *into a long (64 bits on a CRAY computer).
  *
  */
-static void 
+static void
 _doFSRead32(
 register FSServer	*svr,
 register long	*data,
@@ -397,7 +397,7 @@ _FSRead32(
  *into a long (64 bits on a CRAY computer).
  *
  */
-static void 
+static void
 _doFSRead16(
 register FSServer	*svr,
 register short	*data,
@@ -429,7 +429,7 @@ _doFSRead16(
 }
 }
 
-void 
+void
 _FSRead16(
 FSServer	*svr,
 short	*data,
@@ -444,7 +444,7 @@ _FSRead16(
 _doFSRead16(svr, data, len, packbuffer);
 }
 
-void 
+void
 _FSRead16Pad(
 FSServer	*svr,
 short	*data,
@@ -467,7 +467,7 @@ _FSRead16Pad(
  * reads.  If the number of bytes is 

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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Thu May 30 20:18:43 UTC 2013

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

Log Message:
initial import of glproto-1.4.16

Status:

Vendor Tag: xorg
Release Tags:   glproto-1-4-16

U xsrc/external/mit/glproto/dist/glproto.pc.in
U xsrc/external/mit/glproto/dist/install-sh
U xsrc/external/mit/glproto/dist/configure
U xsrc/external/mit/glproto/dist/INSTALL
U xsrc/external/mit/glproto/dist/glxmd.h
U xsrc/external/mit/glproto/dist/README
U xsrc/external/mit/glproto/dist/glxproto.h
U xsrc/external/mit/glproto/dist/glcore.h
U xsrc/external/mit/glproto/dist/Makefile.in
U xsrc/external/mit/glproto/dist/COPYING
U xsrc/external/mit/glproto/dist/glxint.h
U xsrc/external/mit/glproto/dist/Makefile.am
U xsrc/external/mit/glproto/dist/config.sub
U xsrc/external/mit/glproto/dist/ChangeLog
U xsrc/external/mit/glproto/dist/missing
U xsrc/external/mit/glproto/dist/configure.ac
U xsrc/external/mit/glproto/dist/glxtokens.h
U xsrc/external/mit/glproto/dist/config.guess
U xsrc/external/mit/glproto/dist/aclocal.m4

No conflicts created by this import



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Thu May 30 23:09:16 UTC 2013

Modified Files:
xsrc/external/mit/libX11/dist/man: XCreateGC.man
xsrc/external/mit/libX11/dist/modules/lc/gen: lcGenConv.c
xsrc/external/mit/libX11/dist/src: XlibInt.c
xsrc/external/mit/libX11/dist/src/xcms: cmsTrig.c
Removed Files:
xsrc/external/mit/libX11/dist/nls: compose-chart.pl xmlrules.in
xsrc/external/mit/libX11/dist/nls/ja.S90: Compose.pre XI18N_OBJS
XLC_LOCALE.pre
xsrc/external/mit/libX11/dist/nls/ja.U90: Compose.pre XI18N_OBJS
XLC_LOCALE.pre

Log Message:
merge libX11 1.5.99.902.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 xsrc/external/mit/libX11/dist/man/XCreateGC.man
cvs rdiff -u -r1.4 -r1.5 \
xsrc/external/mit/libX11/dist/modules/lc/gen/lcGenConv.c
cvs rdiff -u -r1.1.1.2 -r0 xsrc/external/mit/libX11/dist/nls/compose-chart.pl
cvs rdiff -u -r1.1.1.1 -r0 xsrc/external/mit/libX11/dist/nls/xmlrules.in
cvs rdiff -u -r1.1.1.1 -r0 \
xsrc/external/mit/libX11/dist/nls/ja.S90/Compose.pre \
xsrc/external/mit/libX11/dist/nls/ja.S90/XI18N_OBJS
cvs rdiff -u -r1.1.1.2 -r0 \
xsrc/external/mit/libX11/dist/nls/ja.S90/XLC_LOCALE.pre
cvs rdiff -u -r1.1.1.1 -r0 \
xsrc/external/mit/libX11/dist/nls/ja.U90/Compose.pre \
xsrc/external/mit/libX11/dist/nls/ja.U90/XI18N_OBJS
cvs rdiff -u -r1.1.1.2 -r0 \
xsrc/external/mit/libX11/dist/nls/ja.U90/XLC_LOCALE.pre
cvs rdiff -u -r1.4 -r1.5 xsrc/external/mit/libX11/dist/src/XlibInt.c
cvs rdiff -u -r1.2 -r1.3 xsrc/external/mit/libX11/dist/src/xcms/cmsTrig.c

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/libX11/dist/man/XCreateGC.man
diff -u xsrc/external/mit/libX11/dist/man/XCreateGC.man:1.2 xsrc/external/mit/libX11/dist/man/XCreateGC.man:1.3
--- xsrc/external/mit/libX11/dist/man/XCreateGC.man:1.2	Wed Jun  2 20:38:54 2010
+++ xsrc/external/mit/libX11/dist/man/XCreateGC.man	Thu May 30 23:09:16 2013
@@ -50,7 +50,7 @@
 .de Ds
 .nf
 .\\$1D \\$2 \\$1
-.ft 1
+.ft CW
 .\.ps \\n(PS
 .\.if \\n(VS=40 .vs \\n(VSu
 .\.if \\n(VS=39 .vs \\n(VSp
@@ -64,43 +64,8 @@
 .sp \\n(DDu
 .fi
 ..
-.de FD
-.LP
-.KS
-.TA .5i 3i
-.ta .5i 3i
-.nf
-..
-.de FN
-.fi
-.KE
-.LP
-..
 .de IN		\ send an index entry to the stderr
 ..
-.de C{
-.KS
-.nf
-.D
-.\
-.\	choose appropriate monospace font
-.\	the imagen conditional, 480,
-.\	may be changed to L if LB is too
-.\	heavy for your eyes...
-.\
-.ie \\*(.T480 .ft L
-.el .ie \\*(.T300 .ft L
-.el .ie \\*(.T202 .ft PO
-.el .ie \\*(.Taps .ft CW
-.el .ft R
-.ps \\n(PS
-.ie \\n(VS40 .vs \\n(VSu
-.el .vs \\n(VSp
-..
-.de C}
-.DE
-.R
-..
 .de Pn
 .ie t \\$1\fB\^\\$2\^\fR\\$3
 .el \\$1\fI\^\\$2\^\fP\\$3
@@ -113,32 +78,6 @@
 .ie t \fB\\$1\fR\\$2
 .el \fI\\$1\fP\\$2
 ..
-.de NT
-.ne 7
-.ds NO Note
-.if \\n(.$$1 .if !'\\$2'C' .ds NO \\$2
-.if \\n(.$ .if !'\\$1'C' .ds NO \\$1
-.ie n .sp
-.el .sp 10p
-.TB
-.ce
-\\*(NO
-.ie n .sp
-.el .sp 5p
-.if '\\$1'C' .ce 99
-.if '\\$2'C' .ce 99
-.in +5n
-.ll -5n
-.R
-..
-.		\ Note End -- doug kraft 3/85
-.de NE
-.ce 0
-.in -5n
-.ll +5n
-.ie n .sp
-.el .sp 10p
-..
 .ny0
 '\ t
 .TH XCreateGC __libmansuffix__ __xorgversion__ XLIB FUNCTIONS
@@ -476,34 +415,32 @@ T}
 .TE
 .IN XGCValues  @DEF@
 .Ds 0
-.TA .5i 3i
-.ta .5i 3i
 /\* Values */
 
 typedef struct {
-	int function;	/\* logical operation */
-	unsigned long plane_mask;	/\* plane mask */
-	unsigned long foreground;	/\* foreground pixel */
-	unsigned long background;	/\* background pixel */
-	int line_width;	/\* line width (in pixels) */
-	int line_style;	/\* LineSolid, LineOnOffDash, LineDoubleDash */
-	int cap_style;	/\* CapNotLast, CapButt, CapRound, CapProjecting */
-	int join_style;	/\* JoinMiter, JoinRound, JoinBevel */
-	int fill_style;	/\* FillSolid, FillTiled, FillStippled FillOpaqueStippled*/
-	int fill_rule;	/\* EvenOddRule, WindingRule */
-	int arc_mode;	/\* ArcChord, ArcPieSlice */
-	Pixmap tile;	/\* tile pixmap for tiling operations */
-	Pixmap stipple;	/\* stipple 1 plane pixmap for stippling */
-	int ts_x_origin;	/\* offset for tile or stipple operations */
-	int ts_y_origin;
-	Font font;	/\* default text font for text operations */
-	int subwindow_mode;	/\* ClipByChildren, IncludeInferiors */
-	Bool graphics_exposures;	/\* boolean, should exposures be generated */
-	int clip_x_origin;	/\* origin for clipping */
-	int clip_y_origin;
-	Pixmap clip_mask;	/\* bitmap clipping; other calls for rects */
-	int dash_offset;	/\* patterned/dashed line information */
-	char dashes;
+int function;   /\* logical operation */
+unsigned long plane_mask;   /\* plane mask */
+unsigned long foreground;   /\* foreground pixel */
+unsigned long background;   /\* background pixel */
+int line_width; /\* line width (in pixels) */
+int line_style; /\* LineSolid, LineOnOffDash, LineDoubleDash */
+int cap_style;  /\* 

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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Thu May 30 23:10:29 UTC 2013

Modified Files:
xsrc/external/mit/fstobdf/dist: fstobdf.c

Log Message:
FSServerName() returns const char *.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.2 -r1.2 xsrc/external/mit/fstobdf/dist/fstobdf.c

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/fstobdf/dist/fstobdf.c
diff -u xsrc/external/mit/fstobdf/dist/fstobdf.c:1.1.1.2 xsrc/external/mit/fstobdf/dist/fstobdf.c:1.2
--- xsrc/external/mit/fstobdf/dist/fstobdf.c:1.1.1.2	Sun Nov 21 02:14:02 2010
+++ xsrc/external/mit/fstobdf/dist/fstobdf.c	Thu May 30 23:10:29 2013
@@ -102,7 +102,7 @@ main(int argc, char *argv[])
 
 fontServer = FSOpenServer(serverName);
 if (!fontServer) {
-	char *sn = FSServerName(serverName);
+	const char *sn = FSServerName(serverName);
 	if (sn)
 	fprintf(stderr, %s: can't open font server \%s\\n,
 	  	argv[0], sn);



CVS commit: src

2013-05-30 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Thu May 30 23:42:20 UTC 2013

Modified Files:
src/distrib/sets/lists/xbase: mi
src/external/mit/xorg/bin/xmodmap: Makefile
src/external/mit/xorg/bin/xprop: Makefile
src/external/mit/xorg/bin/xterm: Makefile
src/external/mit/xorg/lib/libX11: Makefile.libx11
src/external/mit/xorg/lib/libX11/ximcp: Makefile
src/external/mit/xorg/share/nls: Makefile
src/external/mit/xorg/tools/xkbcomp: xkbcomp-stubs.c
Removed Files:
src/external/mit/xorg/share/nls/ja.S90: Makefile
src/external/mit/xorg/share/nls/ja.U90: Makefile

Log Message:
updates for libX11 1.5.99.902:

- remove ja.S90 and ja.U90 locales
- use -Wno-error for files that use (now deprecated) XKeycodeToKeysym()
- add -I${X11SRCDIR.X11}/src for xicmp
- add stub for _XGetRequest()


To generate a diff of this commit:
cvs rdiff -u -r1.114 -r1.115 src/distrib/sets/lists/xbase/mi
cvs rdiff -u -r1.2 -r1.3 src/external/mit/xorg/bin/xmodmap/Makefile
cvs rdiff -u -r1.4 -r1.5 src/external/mit/xorg/bin/xprop/Makefile
cvs rdiff -u -r1.9 -r1.10 src/external/mit/xorg/bin/xterm/Makefile
cvs rdiff -u -r1.9 -r1.10 src/external/mit/xorg/lib/libX11/Makefile.libx11
cvs rdiff -u -r1.2 -r1.3 src/external/mit/xorg/lib/libX11/ximcp/Makefile
cvs rdiff -u -r1.2 -r1.3 src/external/mit/xorg/share/nls/Makefile
cvs rdiff -u -r1.1.1.1 -r0 src/external/mit/xorg/share/nls/ja.S90/Makefile
cvs rdiff -u -r1.1.1.1 -r0 src/external/mit/xorg/share/nls/ja.U90/Makefile
cvs rdiff -u -r1.1.1.1 -r1.2 \
src/external/mit/xorg/tools/xkbcomp/xkbcomp-stubs.c

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/xbase/mi
diff -u src/distrib/sets/lists/xbase/mi:1.114 src/distrib/sets/lists/xbase/mi:1.115
--- src/distrib/sets/lists/xbase/mi:1.114	Wed Jun 13 18:51:36 2012
+++ src/distrib/sets/lists/xbase/mi	Thu May 30 23:42:19 2013
@@ -1,4 +1,4 @@
-# $NetBSD: mi,v 1.114 2012/06/13 18:51:36 martin Exp $
+# $NetBSD: mi,v 1.115 2013/05/30 23:42:19 mrg Exp $
 #
 # Note: don't delete entries from here - mark them as obsolete instead.
 #
@@ -1694,18 +1694,18 @@
 ./usr/X11R7/lib/X11/locale/ja.JIS/Compose		-unknown-	xorg
 ./usr/X11R7/lib/X11/locale/ja.JIS/XI18N_OBJS		-unknown-	xorg
 ./usr/X11R7/lib/X11/locale/ja.JIS/XLC_LOCALE		-unknown-	xorg
-./usr/X11R7/lib/X11/locale/ja.S90			base-x11-root	xorg
-./usr/X11R7/lib/X11/locale/ja.S90/Compose		-unknown-	xorg
-./usr/X11R7/lib/X11/locale/ja.S90/XI18N_OBJS		-unknown-	xorg
-./usr/X11R7/lib/X11/locale/ja.S90/XLC_LOCALE		-unknown-	xorg
+./usr/X11R7/lib/X11/locale/ja.S90			base-x11-obsolete	obsolete
+./usr/X11R7/lib/X11/locale/ja.S90/Compose		-unknown-	obsolete
+./usr/X11R7/lib/X11/locale/ja.S90/XI18N_OBJS		-unknown-	obsolete
+./usr/X11R7/lib/X11/locale/ja.S90/XLC_LOCALE		-unknown-	obsolete
 ./usr/X11R7/lib/X11/locale/ja.SJIS			base-x11-root	xorg
 ./usr/X11R7/lib/X11/locale/ja.SJIS/Compose		-unknown-	xorg
 ./usr/X11R7/lib/X11/locale/ja.SJIS/XI18N_OBJS		-unknown-	xorg
 ./usr/X11R7/lib/X11/locale/ja.SJIS/XLC_LOCALE		-unknown-	xorg
-./usr/X11R7/lib/X11/locale/ja.U90			base-x11-root	xorg
-./usr/X11R7/lib/X11/locale/ja.U90/Compose		-unknown-	xorg
-./usr/X11R7/lib/X11/locale/ja.U90/XI18N_OBJS		-unknown-	xorg
-./usr/X11R7/lib/X11/locale/ja.U90/XLC_LOCALE		-unknown-	xorg
+./usr/X11R7/lib/X11/locale/ja.U90			base-x11-obsolete	obsolete
+./usr/X11R7/lib/X11/locale/ja.U90/Compose		-unknown-	obsolete
+./usr/X11R7/lib/X11/locale/ja.U90/XI18N_OBJS		-unknown-	obsolete
+./usr/X11R7/lib/X11/locale/ja.U90/XLC_LOCALE		-unknown-	obsolete
 ./usr/X11R7/lib/X11/locale/ja/Compose			-unknown-	xorg
 ./usr/X11R7/lib/X11/locale/ja/XI18N_OBJS		-unknown-	xorg
 ./usr/X11R7/lib/X11/locale/ja/XLC_LOCALE		-unknown-	xorg

Index: src/external/mit/xorg/bin/xmodmap/Makefile
diff -u src/external/mit/xorg/bin/xmodmap/Makefile:1.2 src/external/mit/xorg/bin/xmodmap/Makefile:1.3
--- src/external/mit/xorg/bin/xmodmap/Makefile:1.2	Sat Nov 20 23:17:51 2010
+++ src/external/mit/xorg/bin/xmodmap/Makefile	Thu May 30 23:42:19 2013
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.2 2010/11/20 23:17:51 mrg Exp $
+#	$NetBSD: Makefile,v 1.3 2013/05/30 23:42:19 mrg Exp $
 
 .include bsd.own.mk
 
@@ -12,5 +12,8 @@ DPADD+=	${LIBX11}
 
 .PATH:	${X11SRCDIR.${PROG}} ${X11SRCDIR.${PROG}}/man
 
+COPTS.handle.c+=-Wno-error	# uses XKeycodeToKeysym
+COPTS.exec.c+=	-Wno-error	# uses XKeycodeToKeysym
+
 .include bsd.x11.mk
 .include bsd.prog.mk

Index: src/external/mit/xorg/bin/xprop/Makefile
diff -u src/external/mit/xorg/bin/xprop/Makefile:1.4 src/external/mit/xorg/bin/xprop/Makefile:1.5
--- src/external/mit/xorg/bin/xprop/Makefile:1.4	Sat Jul 23 06:06:40 2011
+++ src/external/mit/xorg/bin/xprop/Makefile	Thu May 30 23:42:19 2013
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.4 2011/07/23 06:06:40 mrg Exp $
+#	$NetBSD: Makefile,v 1.5 2013/05/30 23:42:19 mrg Exp $
 
 .include bsd.own.mk
 
@@ -13,5 +13,7 @@ DPADD+=	

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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 00:16:11 UTC 2013

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

Log Message:
initial import of libXfixes-5.0.1

Status:

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

U xsrc/external/mit/libXfixes/dist/config.h.in
U xsrc/external/mit/libXfixes/dist/COPYING
U xsrc/external/mit/libXfixes/dist/README
U xsrc/external/mit/libXfixes/dist/ltmain.sh
U xsrc/external/mit/libXfixes/dist/AUTHORS
U xsrc/external/mit/libXfixes/dist/INSTALL
U xsrc/external/mit/libXfixes/dist/config.guess
U xsrc/external/mit/libXfixes/dist/config.sub
U xsrc/external/mit/libXfixes/dist/depcomp
U xsrc/external/mit/libXfixes/dist/missing
U xsrc/external/mit/libXfixes/dist/configure
U xsrc/external/mit/libXfixes/dist/configure.ac
U xsrc/external/mit/libXfixes/dist/Makefile.in
U xsrc/external/mit/libXfixes/dist/ChangeLog
U xsrc/external/mit/libXfixes/dist/aclocal.m4
U xsrc/external/mit/libXfixes/dist/install-sh
U xsrc/external/mit/libXfixes/dist/xfixes.pc.in
U xsrc/external/mit/libXfixes/dist/Makefile.am
U xsrc/external/mit/libXfixes/dist/include/X11/extensions/Xfixes.h
U xsrc/external/mit/libXfixes/dist/src/Selection.c
U xsrc/external/mit/libXfixes/dist/src/Xfixes.c
U xsrc/external/mit/libXfixes/dist/src/Xfixesint.h
U xsrc/external/mit/libXfixes/dist/src/Region.c
U xsrc/external/mit/libXfixes/dist/src/Makefile.in
U xsrc/external/mit/libXfixes/dist/src/SaveSet.c
U xsrc/external/mit/libXfixes/dist/src/Cursor.c
U xsrc/external/mit/libXfixes/dist/src/Makefile.am
U xsrc/external/mit/libXfixes/dist/man/Makefile.in
U xsrc/external/mit/libXfixes/dist/man/Makefile.am
U xsrc/external/mit/libXfixes/dist/man/Xfixes.man

No conflicts created by this import



CVS import: xsrc/external/mit/font-util/dist

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 00:34:24 UTC 2013

Update of /cvsroot/xsrc/external/mit/font-util/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv7066

Log Message:
initial import of font-util-1.3.0

Status:

Vendor Tag: xorg
Release Tags:   font-util-1-3-0

U xsrc/external/mit/font-util/dist/fontutil.pc.in
U xsrc/external/mit/font-util/dist/config.h.in
U xsrc/external/mit/font-util/dist/map-KOI8-R
U xsrc/external/mit/font-util/dist/config.sub
U xsrc/external/mit/font-util/dist/map-JISX0201.1976-0
U xsrc/external/mit/font-util/dist/map-ISO8859-3
U xsrc/external/mit/font-util/dist/map-ISO8859-14
U xsrc/external/mit/font-util/dist/map-ISO8859-9
U xsrc/external/mit/font-util/dist/map-ISO8859-4
U xsrc/external/mit/font-util/dist/map-ISO8859-13
U xsrc/external/mit/font-util/dist/config.guess
U xsrc/external/mit/font-util/dist/ChangeLog
U xsrc/external/mit/font-util/dist/configure
U xsrc/external/mit/font-util/dist/bdftruncate.c
U xsrc/external/mit/font-util/dist/map-ISO8859-10
U xsrc/external/mit/font-util/dist/INSTALL
U xsrc/external/mit/font-util/dist/map-ISO8859-7
U xsrc/external/mit/font-util/dist/map-ISO8859-5
U xsrc/external/mit/font-util/dist/ucs2any.c
U xsrc/external/mit/font-util/dist/map-ISO8859-8
U xsrc/external/mit/font-util/dist/map-ISO8859-15
U xsrc/external/mit/font-util/dist/missing
U xsrc/external/mit/font-util/dist/map-ISO8859-2
U xsrc/external/mit/font-util/dist/depcomp
U xsrc/external/mit/font-util/dist/aclocal.m4
U xsrc/external/mit/font-util/dist/README
U xsrc/external/mit/font-util/dist/install-sh
U xsrc/external/mit/font-util/dist/Makefile.in
U xsrc/external/mit/font-util/dist/map-ISO8859-6
U xsrc/external/mit/font-util/dist/COPYING
U xsrc/external/mit/font-util/dist/configure.ac
U xsrc/external/mit/font-util/dist/map-ISO8859-11
U xsrc/external/mit/font-util/dist/map-ISO8859-1
U xsrc/external/mit/font-util/dist/map-ISO8859-16
U xsrc/external/mit/font-util/dist/Makefile.am
U xsrc/external/mit/font-util/dist/fontutil.m4.in
U xsrc/external/mit/font-util/dist/man/bdftruncate.man
U xsrc/external/mit/font-util/dist/man/Makefile.in
U xsrc/external/mit/font-util/dist/man/Makefile.am
U xsrc/external/mit/font-util/dist/man/ucs2any.man

No conflicts created by this import



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 00:34:26 UTC 2013

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

Log Message:
initial import of libICE-1.0.8

Status:

Vendor Tag: xorg
Release Tags:   libICE-1-0-8

U xsrc/external/mit/libICE/dist/ice.pc.in
U xsrc/external/mit/libICE/dist/configure.ac
U xsrc/external/mit/libICE/dist/ChangeLog
U xsrc/external/mit/libICE/dist/AUTHORS
U xsrc/external/mit/libICE/dist/configure
U xsrc/external/mit/libICE/dist/config.h.in
U xsrc/external/mit/libICE/dist/INSTALL
U xsrc/external/mit/libICE/dist/README
U xsrc/external/mit/libICE/dist/config.sub
U xsrc/external/mit/libICE/dist/depcomp
U xsrc/external/mit/libICE/dist/ltmain.sh
U xsrc/external/mit/libICE/dist/missing
N xsrc/external/mit/libICE/dist/docbook.am
U xsrc/external/mit/libICE/dist/Makefile.am
U xsrc/external/mit/libICE/dist/install-sh
U xsrc/external/mit/libICE/dist/config.guess
U xsrc/external/mit/libICE/dist/COPYING
U xsrc/external/mit/libICE/dist/aclocal.m4
U xsrc/external/mit/libICE/dist/Makefile.in
U xsrc/external/mit/libICE/dist/specs/Makefile.am
U xsrc/external/mit/libICE/dist/specs/ice.xml
U xsrc/external/mit/libICE/dist/specs/Makefile.in
U xsrc/external/mit/libICE/dist/doc/Makefile.am
U xsrc/external/mit/libICE/dist/doc/ICElib.xml
U xsrc/external/mit/libICE/dist/doc/Makefile.in
U xsrc/external/mit/libICE/dist/src/Makefile.in
U xsrc/external/mit/libICE/dist/src/misc.c
U xsrc/external/mit/libICE/dist/src/icetrans.c
U xsrc/external/mit/libICE/dist/src/listen.c
U xsrc/external/mit/libICE/dist/src/ping.c
U xsrc/external/mit/libICE/dist/src/connect.c
U xsrc/external/mit/libICE/dist/src/listenwk.c
U xsrc/external/mit/libICE/dist/src/watch.c
U xsrc/external/mit/libICE/dist/src/Makefile.am
U xsrc/external/mit/libICE/dist/src/register.c
U xsrc/external/mit/libICE/dist/src/locking.c
U xsrc/external/mit/libICE/dist/src/error.c
U xsrc/external/mit/libICE/dist/src/replywait.c
U xsrc/external/mit/libICE/dist/src/globals.h
U xsrc/external/mit/libICE/dist/src/accept.c
U xsrc/external/mit/libICE/dist/src/shutdown.c
U xsrc/external/mit/libICE/dist/src/ICElibint.h
U xsrc/external/mit/libICE/dist/src/iceauth.c
U xsrc/external/mit/libICE/dist/src/setauth.c
U xsrc/external/mit/libICE/dist/src/getauth.c
U xsrc/external/mit/libICE/dist/src/process.c
U xsrc/external/mit/libICE/dist/src/protosetup.c
U xsrc/external/mit/libICE/dist/src/authutil.c
U xsrc/external/mit/libICE/dist/include/X11/ICE/ICEconn.h
U xsrc/external/mit/libICE/dist/include/X11/ICE/ICE.h
U xsrc/external/mit/libICE/dist/include/X11/ICE/ICElib.h
U xsrc/external/mit/libICE/dist/include/X11/ICE/ICEmsg.h
U xsrc/external/mit/libICE/dist/include/X11/ICE/ICEproto.h
U xsrc/external/mit/libICE/dist/include/X11/ICE/ICEutil.h

No conflicts created by this import



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 00:34:29 UTC 2013

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

Log Message:
initial import of libSM-1.2.1

Status:

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

U xsrc/external/mit/libSM/dist/depcomp
U xsrc/external/mit/libSM/dist/config.sub
U xsrc/external/mit/libSM/dist/Makefile.in
U xsrc/external/mit/libSM/dist/missing
U xsrc/external/mit/libSM/dist/COPYING
U xsrc/external/mit/libSM/dist/ChangeLog
U xsrc/external/mit/libSM/dist/Makefile.am
U xsrc/external/mit/libSM/dist/configure.ac
U xsrc/external/mit/libSM/dist/configure
U xsrc/external/mit/libSM/dist/AUTHORS
U xsrc/external/mit/libSM/dist/config.guess
U xsrc/external/mit/libSM/dist/config.h.in
U xsrc/external/mit/libSM/dist/README
U xsrc/external/mit/libSM/dist/aclocal.m4
U xsrc/external/mit/libSM/dist/install-sh
N xsrc/external/mit/libSM/dist/docbook.am
U xsrc/external/mit/libSM/dist/sm.pc.in
U xsrc/external/mit/libSM/dist/ltmain.sh
U xsrc/external/mit/libSM/dist/INSTALL
U xsrc/external/mit/libSM/dist/src/sm_misc.c
U xsrc/external/mit/libSM/dist/src/sm_genid.c
U xsrc/external/mit/libSM/dist/src/sm_client.c
U xsrc/external/mit/libSM/dist/src/sm_auth.c
U xsrc/external/mit/libSM/dist/src/sm_manager.c
U xsrc/external/mit/libSM/dist/src/Makefile.in
U xsrc/external/mit/libSM/dist/src/SMlibint.h
U xsrc/external/mit/libSM/dist/src/Makefile.am
U xsrc/external/mit/libSM/dist/src/sm_process.c
U xsrc/external/mit/libSM/dist/src/sm_error.c
U xsrc/external/mit/libSM/dist/include/X11/SM/SMlib.h
U xsrc/external/mit/libSM/dist/include/X11/SM/SM.h
U xsrc/external/mit/libSM/dist/include/X11/SM/SMproto.h
U xsrc/external/mit/libSM/dist/doc/SMlib.xml
U xsrc/external/mit/libSM/dist/doc/xsmp.xml
U xsrc/external/mit/libSM/dist/doc/Makefile.in
U xsrc/external/mit/libSM/dist/doc/Makefile.am

No conflicts created by this import



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 00:34:33 UTC 2013

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

Log Message:
initial import of libXTrap-1.0.1

Status:

Vendor Tag: xorg
Release Tags:   libXTrap-1-0-1

U xsrc/external/mit/libXTrap/dist/aclocal.m4
U xsrc/external/mit/libXTrap/dist/AUTHORS
U xsrc/external/mit/libXTrap/dist/ChangeLog
U xsrc/external/mit/libXTrap/dist/config.guess
U xsrc/external/mit/libXTrap/dist/config.h.in
U xsrc/external/mit/libXTrap/dist/config.sub
U xsrc/external/mit/libXTrap/dist/configure
U xsrc/external/mit/libXTrap/dist/configure.ac
U xsrc/external/mit/libXTrap/dist/COPYING
U xsrc/external/mit/libXTrap/dist/depcomp
U xsrc/external/mit/libXTrap/dist/INSTALL
U xsrc/external/mit/libXTrap/dist/install-sh
U xsrc/external/mit/libXTrap/dist/ltmain.sh
U xsrc/external/mit/libXTrap/dist/Makefile.am
U xsrc/external/mit/libXTrap/dist/Makefile.in
U xsrc/external/mit/libXTrap/dist/missing
U xsrc/external/mit/libXTrap/dist/NEWS
U xsrc/external/mit/libXTrap/dist/README
U xsrc/external/mit/libXTrap/dist/xtrap.pc.in
U xsrc/external/mit/libXTrap/dist/src/Makefile.am
U xsrc/external/mit/libXTrap/dist/src/Makefile.in
U xsrc/external/mit/libXTrap/dist/src/XECallBcks.c
C xsrc/external/mit/libXTrap/dist/src/XEConTxt.c
U xsrc/external/mit/libXTrap/dist/src/XEDsptch.c
U xsrc/external/mit/libXTrap/dist/src/XEPrInfo.c
U xsrc/external/mit/libXTrap/dist/src/XERqsts.c
U xsrc/external/mit/libXTrap/dist/src/XEStrMap.c
U xsrc/external/mit/libXTrap/dist/src/XETrapInit.c
U xsrc/external/mit/libXTrap/dist/src/XEWrappers.c

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

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



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 00:34:31 UTC 2013

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

Log Message:
initial import of libXScrnSaver-1.2.2

Status:

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

U xsrc/external/mit/libXScrnSaver/dist/config.guess
U xsrc/external/mit/libXScrnSaver/dist/COPYING
U xsrc/external/mit/libXScrnSaver/dist/config.h.in
U xsrc/external/mit/libXScrnSaver/dist/ltmain.sh
U xsrc/external/mit/libXScrnSaver/dist/INSTALL
U xsrc/external/mit/libXScrnSaver/dist/install-sh
U xsrc/external/mit/libXScrnSaver/dist/depcomp
U xsrc/external/mit/libXScrnSaver/dist/aclocal.m4
U xsrc/external/mit/libXScrnSaver/dist/missing
U xsrc/external/mit/libXScrnSaver/dist/configure
U xsrc/external/mit/libXScrnSaver/dist/xscrnsaver.pc.in
U xsrc/external/mit/libXScrnSaver/dist/Makefile.in
U xsrc/external/mit/libXScrnSaver/dist/ChangeLog
U xsrc/external/mit/libXScrnSaver/dist/README
U xsrc/external/mit/libXScrnSaver/dist/Makefile.am
U xsrc/external/mit/libXScrnSaver/dist/configure.ac
U xsrc/external/mit/libXScrnSaver/dist/config.sub
U xsrc/external/mit/libXScrnSaver/dist/include/X11/extensions/scrnsaver.h
U xsrc/external/mit/libXScrnSaver/dist/src/XScrnSaver.c
U xsrc/external/mit/libXScrnSaver/dist/src/Makefile.in
U xsrc/external/mit/libXScrnSaver/dist/src/Makefile.am
U xsrc/external/mit/libXScrnSaver/dist/man/XScreenSaverUnregister.man
U xsrc/external/mit/libXScrnSaver/dist/man/XScreenSaverSuspend.man
U xsrc/external/mit/libXScrnSaver/dist/man/XScreenSaverRegister.man
U xsrc/external/mit/libXScrnSaver/dist/man/Makefile.in
U xsrc/external/mit/libXScrnSaver/dist/man/Xss.man
U xsrc/external/mit/libXScrnSaver/dist/man/Makefile.am
U xsrc/external/mit/libXScrnSaver/dist/man/XScreenSaverGetRegistered.man
U xsrc/external/mit/libXScrnSaver/dist/man/XScreenSaverQueryExtension.man
U xsrc/external/mit/libXScrnSaver/dist/man/XScreenSaverQueryInfo.man
U xsrc/external/mit/libXScrnSaver/dist/man/XScreenSaverSetAttributes.man
U xsrc/external/mit/libXScrnSaver/dist/man/XScreenSaverQueryVersion.man
U xsrc/external/mit/libXScrnSaver/dist/man/XScreenSaverSelectInput.man
U xsrc/external/mit/libXScrnSaver/dist/man/XScreenSaverAllocInfo.man
U xsrc/external/mit/libXScrnSaver/dist/man/XScreenSaverUnsetAttributes.man

No conflicts created by this import



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 00:34:35 UTC 2013

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

Log Message:
initial import of libXau-1.0.8

Status:

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

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

No conflicts created by this import



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 00:34:39 UTC 2013

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

Log Message:
initial import of libXaw-1.0.11

Status:

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

U xsrc/external/mit/libXaw/dist/Makefile.am
U xsrc/external/mit/libXaw/dist/configure
U xsrc/external/mit/libXaw/dist/README
U xsrc/external/mit/libXaw/dist/INSTALL
U xsrc/external/mit/libXaw/dist/ChangeLog
N xsrc/external/mit/libXaw/dist/docbook.am
U xsrc/external/mit/libXaw/dist/configure.ac
U xsrc/external/mit/libXaw/dist/install-sh
U xsrc/external/mit/libXaw/dist/aclocal.m4
U xsrc/external/mit/libXaw/dist/Makefile.in
U xsrc/external/mit/libXaw/dist/xaw6.pc.in
U xsrc/external/mit/libXaw/dist/xaw7.pc.in
U xsrc/external/mit/libXaw/dist/COPYING
U xsrc/external/mit/libXaw/dist/compile
U xsrc/external/mit/libXaw/dist/depcomp
U xsrc/external/mit/libXaw/dist/autogen.sh
U xsrc/external/mit/libXaw/dist/config.guess
U xsrc/external/mit/libXaw/dist/ltmain.sh
U xsrc/external/mit/libXaw/dist/missing
U xsrc/external/mit/libXaw/dist/config.h.in
U xsrc/external/mit/libXaw/dist/config.sub
U xsrc/external/mit/libXaw/dist/specs/AsciiText.xml
U xsrc/external/mit/libXaw/dist/specs/SmeLine.xml
U xsrc/external/mit/libXaw/dist/specs/SmeBSB.xml
U xsrc/external/mit/libXaw/dist/specs/Tree.xml
U xsrc/external/mit/libXaw/dist/specs/Template_private_header_file.xml
U xsrc/external/mit/libXaw/dist/specs/CH6.xml
U xsrc/external/mit/libXaw/dist/specs/Sme.xml
U xsrc/external/mit/libXaw/dist/specs/CH1.xml
U xsrc/external/mit/libXaw/dist/specs/Box.xml
U xsrc/external/mit/libXaw/dist/specs/Repeater.xml
U xsrc/external/mit/libXaw/dist/specs/List.xml
U xsrc/external/mit/libXaw/dist/specs/TPage_Credits.xml
U xsrc/external/mit/libXaw/dist/specs/Porthole.xml
U xsrc/external/mit/libXaw/dist/specs/CH7.xml
U xsrc/external/mit/libXaw/dist/specs/Toggle.xml
U xsrc/external/mit/libXaw/dist/specs/MenuButton.xml
U xsrc/external/mit/libXaw/dist/specs/Dialog.xml
U xsrc/external/mit/libXaw/dist/specs/Grip.xml
U xsrc/external/mit/libXaw/dist/specs/Panner.xml
U xsrc/external/mit/libXaw/dist/specs/Simple.xml
U xsrc/external/mit/libXaw/dist/specs/Viewport.xml
U xsrc/external/mit/libXaw/dist/specs/TextSink.xml
U xsrc/external/mit/libXaw/dist/specs/StripChart.xml
U xsrc/external/mit/libXaw/dist/specs/TextSource.xml
U xsrc/external/mit/libXaw/dist/specs/Form.xml
U xsrc/external/mit/libXaw/dist/specs/Text.xml
U xsrc/external/mit/libXaw/dist/specs/CH4.xml
U xsrc/external/mit/libXaw/dist/specs/CH3.xml
U xsrc/external/mit/libXaw/dist/specs/Makefile.am
U xsrc/external/mit/libXaw/dist/specs/TextActions_text_widget_actions.xml
U xsrc/external/mit/libXaw/dist/specs/Template_public_header_file.xml
U xsrc/external/mit/libXaw/dist/specs/SimpleMenu.xml
U xsrc/external/mit/libXaw/dist/specs/Label.xml
U 
xsrc/external/mit/libXaw/dist/specs/TextActions_default_translation_bindings.xml
U xsrc/external/mit/libXaw/dist/specs/AsciiSink.xml
U xsrc/external/mit/libXaw/dist/specs/TextFuncs.xml
U xsrc/external/mit/libXaw/dist/specs/Template_widget_source_file.xml
U xsrc/external/mit/libXaw/dist/specs/Scrollbar.xml
U xsrc/external/mit/libXaw/dist/specs/AsciiSource.xml
U xsrc/external/mit/libXaw/dist/specs/Template.xml
U xsrc/external/mit/libXaw/dist/specs/libXaw.xml
U xsrc/external/mit/libXaw/dist/specs/TextCustom.xml
U xsrc/external/mit/libXaw/dist/specs/Paned.xml
U xsrc/external/mit/libXaw/dist/specs/TextActions.xml
U xsrc/external/mit/libXaw/dist/specs/Command.xml
U xsrc/external/mit/libXaw/dist/specs/CH2.xml
U xsrc/external/mit/libXaw/dist/specs/Makefile.in
U xsrc/external/mit/libXaw/dist/specs/CH5.xml
U xsrc/external/mit/libXaw/dist/man/Makefile.in
U xsrc/external/mit/libXaw/dist/man/Makefile.am
U xsrc/external/mit/libXaw/dist/man/Xaw.man
U xsrc/external/mit/libXaw/dist/src/DisplayList.c
U xsrc/external/mit/libXaw/dist/src/Repeater.c
U xsrc/external/mit/libXaw/dist/src/Converters.c
U xsrc/external/mit/libXaw/dist/src/XawInit.c
U xsrc/external/mit/libXaw/dist/src/SmeBSB.c
U xsrc/external/mit/libXaw/dist/src/SimpleMenu.c
U xsrc/external/mit/libXaw/dist/src/Actions.c
U xsrc/external/mit/libXaw/dist/src/AsciiSrc.c
U xsrc/external/mit/libXaw/dist/src/StripChart.c
U xsrc/external/mit/libXaw/dist/src/Scrollbar.c
U xsrc/external/mit/libXaw/dist/src/Porthole.c
U xsrc/external/mit/libXaw/dist/src/Sme.c
U xsrc/external/mit/libXaw/dist/src/Private.h
U xsrc/external/mit/libXaw/dist/src/TextPop.c
U xsrc/external/mit/libXaw/dist/src/TextAction.c
U xsrc/external/mit/libXaw/dist/src/Form.c
U xsrc/external/mit/libXaw/dist/src/MenuButton.c
U xsrc/external/mit/libXaw/dist/src/Tip.c
U xsrc/external/mit/libXaw/dist/src/Panner.c
U xsrc/external/mit/libXaw/dist/src/List.c
U xsrc/external/mit/libXaw/dist/src/TextSink.c
U xsrc/external/mit/libXaw/dist/src/Text.c
U xsrc/external/mit/libXaw/dist/src/XawI18n.h
U xsrc/external/mit/libXaw/dist/src/SmeLine.c
U xsrc/external/mit/libXaw/dist/src/Command.c
U 

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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 00:37:09 UTC 2013

Modified Files:
xsrc/external/mit/libXTrap/dist/src: XEConTxt.c
Removed Files:
xsrc/external/mit/libXTrap/dist: autogen.sh mkinstalldirs

Log Message:
merge libXTrap 1.0.1


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r0 xsrc/external/mit/libXTrap/dist/autogen.sh \
xsrc/external/mit/libXTrap/dist/mkinstalldirs
cvs rdiff -u -r1.2 -r1.3 xsrc/external/mit/libXTrap/dist/src/XEConTxt.c

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/libXTrap/dist/src/XEConTxt.c
diff -u xsrc/external/mit/libXTrap/dist/src/XEConTxt.c:1.2 xsrc/external/mit/libXTrap/dist/src/XEConTxt.c:1.3
--- xsrc/external/mit/libXTrap/dist/src/XEConTxt.c:1.2	Thu Aug 11 22:10:52 2011
+++ xsrc/external/mit/libXTrap/dist/src/XEConTxt.c	Fri May 31 00:37:09 2013
@@ -49,8 +49,6 @@ SOFTWARE.
 # define FALSE 0L
 #endif
 
-extern char *extensionData;
-
 static XETC TC;
 
 /*
@@ -71,7 +69,7 @@ XETC *XECreateTC(Display *dpy, CARD32 va
 {   
 firsttime = False;
 /* The first Trap Context is the Template (default) TC */
-(void)memset(tc,0L,sizeof(*tc));
+memset(tc,0L,sizeof(*tc));
 tc-eventBase = 0x7FFFL;
 tc-errorBase = 0x7FFFL;
 tc-values.v.max_pkt_size = 0x7FFFL;
@@ -325,10 +323,6 @@ void XEFreeTC(XETC *tc)
 }
 
 XtFree((XtPointer)tc);
-if (extensionData)
-{
-XtFree(extensionData);
-}
 }
 return;
 }
@@ -342,7 +336,7 @@ int XETrapSetMaxPacket(XETC *tc, Bool se
 XETCValues tcv;
 int status = True;
 
-(void)memset((char *)tcv,0L,sizeof(tcv));
+memset((char *)tcv,0L,sizeof(tcv));
 XETrapSetCfgFlagMaxPacket(tcv, valid, True);
 XETrapSetCfgFlagMaxPacket(tcv, data, set_flag);
 XETrapSetCfgMaxPktSize(tcv, size);
@@ -355,7 +349,7 @@ int XETrapSetCommandKey(XETC *tc, Bool s
 int status = True;
 KeyCode cmd_keycode;
 
-(void)memset((char *)tcv,0L,sizeof(tcv));
+memset((char *)tcv,0L,sizeof(tcv));
 XETrapSetCfgFlagCmd(tcv, valid, True);
 XETrapSetCfgFlagCmd(tcv, data, set_flag);
 if (set_flag == True)
@@ -389,7 +383,7 @@ int XETrapSetTimestamps(XETC *tc, Bool s
 XETCValues tcv;
 int status = True;
 
-(void)memset((char *)tcv,0L,sizeof(tcv));
+memset((char *)tcv,0L,sizeof(tcv));
 XETrapSetCfgFlagTimestamp(tcv, valid, True);
 XETrapSetCfgFlagTimestamp(tcv, data, set_flag);
 XETrapSetValFlagDeltaTimes(tcv, delta_flag);
@@ -402,7 +396,7 @@ int XETrapSetWinXY(XETC *tc, Bool set_fl
 XETCValues tcv;
 int status = True;
 
-(void)memset((char *)tcv,0L,sizeof(tcv));
+memset((char *)tcv,0L,sizeof(tcv));
 XETrapSetCfgFlagWinXY(tcv, valid, True);
 XETrapSetCfgFlagWinXY(tcv, data, set_flag);
 status = XEChangeTC(tc, TCWinXY, tcv);
@@ -414,7 +408,7 @@ int XETrapSetCursor(XETC *tc, Bool set_f
 XETCValues tcv;
 int status = True;
 
-(void)memset((char *)tcv,0L,sizeof(tcv));
+memset((char *)tcv,0L,sizeof(tcv));
 XETrapSetCfgFlagCursor(tcv, valid, True);
 XETrapSetCfgFlagCursor(tcv, data, set_flag);
 status = XEChangeTC(tc, TCCursor, tcv);
@@ -426,7 +420,7 @@ int XETrapSetXInput(XETC *tc, Bool set_f
 XETCValues tcv;
 int status = True;
 
-(void)memset((char *)tcv,0L,sizeof(tcv));
+memset((char *)tcv,0L,sizeof(tcv));
 XETrapSetCfgFlagXInput(tcv, valid, True);
 XETrapSetCfgFlagXInput(tcv, data, set_flag);
 status = XEChangeTC(tc, TCXInput, tcv);
@@ -438,7 +432,7 @@ int XETrapSetColorReplies(XETC *tc, Bool
 XETCValues tcv;
 int status = True;
 
-(void)memset((char *)tcv,0L,sizeof(tcv));
+memset((char *)tcv,0L,sizeof(tcv));
 XETrapSetCfgFlagColorReplies(tcv, valid, True);
 XETrapSetCfgFlagColorReplies(tcv, data, set_flag);
 status = XEChangeTC(tc, TCColorReplies, tcv);
@@ -450,7 +444,7 @@ int XETrapSetGrabServer(XETC *tc, Bool s
 XETCValues tcv;
 int status = True;
 
-(void)memset((char *)tcv,0L,sizeof(tcv));
+memset((char *)tcv,0L,sizeof(tcv));
 XETrapSetCfgFlagGrabServer(tcv, valid, True);
 XETrapSetCfgFlagGrabServer(tcv, data, set_flag);
 status = XEChangeTC(tc, TCGrabServer, tcv);
@@ -462,7 +456,7 @@ int XETrapSetStatistics(XETC *tc, Bool s
 XETCValues tcv;
 int status = True;
 
-(void)memset((char *)tcv,0L,sizeof(tcv));
+memset((char *)tcv,0L,sizeof(tcv));
 XETrapSetCfgFlagStatistics(tcv, valid, True);
 XETrapSetCfgFlagStatistics(tcv, data, set_flag);
 status = XEChangeTC(tc, TCStatistics, tcv);
@@ -475,7 +469,7 @@ int XETrapSetRequests(XETC *tc, Bool set
 int status = True;
 int i;
 
-(void)memset((char *)tcv,0L,sizeof(tcv));
+memset((char *)tcv,0L,sizeof(tcv));
 XETrapSetCfgFlagRequest(tcv, valid, 

CVS commit: src/external/mit/xorg/lib/libXau

2013-05-30 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Fri May 31 00:38:16 UTC 2013

Modified Files:
src/external/mit/xorg/lib/libXau: Makefile

Log Message:
find the moved manual.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/external/mit/xorg/lib/libXau/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/lib/libXau/Makefile
diff -u src/external/mit/xorg/lib/libXau/Makefile:1.4 src/external/mit/xorg/lib/libXau/Makefile:1.5
--- src/external/mit/xorg/lib/libXau/Makefile:1.4	Mon Nov  9 00:41:42 2009
+++ src/external/mit/xorg/lib/libXau/Makefile	Fri May 31 00:38:16 2013
@@ -1,9 +1,10 @@
-#	$NetBSD: Makefile,v 1.4 2009/11/09 00:41:42 mrg Exp $
+#	$NetBSD: Makefile,v 1.5 2013/05/31 00:38:16 mrg Exp $
 
 .include bsd.own.mk
 
 LIB=	Xau
 .PATH:	${X11SRCDIR.${LIB}}
+.PATH:	${X11SRCDIR.${LIB}}/man
 .PATH:	${X11SRCDIR.${LIB}}/include/X11
 
 SRCS=	AuDispose.c AuFileName.c AuGetAddr.c AuGetBest.c AuLock.c \



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 00:38:29 UTC 2013

Removed Files:
xsrc/external/mit/libXau/dist: Xau.man

Log Message:
merge libXau 1.0.8


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

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/lib/libXfixes

2013-05-30 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Fri May 31 00:47:53 UTC 2013

Modified Files:
src/external/mit/xorg/lib/libXfixes: Makefile

Log Message:
need to define HAVE__XEATDATAWORDS.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/external/mit/xorg/lib/libXfixes/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/lib/libXfixes/Makefile
diff -u src/external/mit/xorg/lib/libXfixes/Makefile:1.4 src/external/mit/xorg/lib/libXfixes/Makefile:1.5
--- src/external/mit/xorg/lib/libXfixes/Makefile:1.4	Thu Nov  6 22:28:25 2008
+++ src/external/mit/xorg/lib/libXfixes/Makefile	Fri May 31 00:47:53 2013
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.4 2008/11/06 22:28:25 veego Exp $
+#	$NetBSD: Makefile,v 1.5 2013/05/31 00:47:53 mrg Exp $
 
 .include bsd.own.mk
 
@@ -13,6 +13,8 @@ SRCS=		Cursor.c Region.c SaveSet.c Selec
 INCS=	Xfixes.h
 INCSDIR=${X11INCDIR}/X11/extensions
 
+CPPFLAGS+=	-DHAVE__XEATDATAWORDS 
+
 CPPFLAGS+=	-I${DESTDIR}${X11INCDIR}/X11/extensions
 
 MAN=	Xfixes.3



CVS commit: xsrc/external/mit/libXScrnSaver/dist/src

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 00:50:10 UTC 2013

Modified Files:
xsrc/external/mit/libXScrnSaver/dist/src: XScrnSaver.c

Log Message:
don't declare a 'const char *' when you pass it to a 'char *'.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.4 -r1.2 \
xsrc/external/mit/libXScrnSaver/dist/src/XScrnSaver.c

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/libXScrnSaver/dist/src/XScrnSaver.c
diff -u xsrc/external/mit/libXScrnSaver/dist/src/XScrnSaver.c:1.1.1.4 xsrc/external/mit/libXScrnSaver/dist/src/XScrnSaver.c:1.2
--- xsrc/external/mit/libXScrnSaver/dist/src/XScrnSaver.c:1.1.1.4	Fri May 31 00:34:30 2013
+++ xsrc/external/mit/libXScrnSaver/dist/src/XScrnSaver.c	Fri May 31 00:50:10 2013
@@ -36,7 +36,7 @@ in this Software without prior written a
 
 static XExtensionInfo _screen_saver_info_data;
 static XExtensionInfo *screen_saver_info = _screen_saver_info_data;
-static const char *screen_saver_extension_name = ScreenSaverName;
+static char *screen_saver_extension_name = ScreenSaverName;
 
 #define ScreenSaverCheckExtension(dpy,i,val) \
   XextCheckExtension (dpy, i, screen_saver_extension_name, val)



CVS commit: src/external/mit/xorg/lib/libICE

2013-05-30 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Fri May 31 00:54:59 UTC 2013

Modified Files:
src/external/mit/xorg/lib/libICE: Makefile

Log Message:
need -DHAVE_ASPRINTF


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/external/mit/xorg/lib/libICE/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/lib/libICE/Makefile
diff -u src/external/mit/xorg/lib/libICE/Makefile:1.3 src/external/mit/xorg/lib/libICE/Makefile:1.4
--- src/external/mit/xorg/lib/libICE/Makefile:1.3	Wed Apr  4 10:59:45 2012
+++ src/external/mit/xorg/lib/libICE/Makefile	Fri May 31 00:54:58 2013
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.3 2012/04/04 10:59:45 joerg Exp $
+#	$NetBSD: Makefile,v 1.4 2013/05/31 00:54:58 mrg Exp $
 
 .include bsd.own.mk
 
@@ -16,6 +16,8 @@ INCSDIR=${X11INCDIR}/X11/ICE
 CONN_DEFINES=	${X11FLAGS.CONNECTION} -DICE_t=1 -DTRANS_CLIENT -DTRANS_SERVER
 SOCK_DEFINES=	-DBSD44SOCKETS
 
+CPPFLAGS+=	-DHAVE_ASPRINTF
+
 CPPFLAGS+=	$(TRANS_INCLUDES) $(CONN_DEFINES) $(SOCK_DEFINES)
 
 PKGDIST=	${LIB}



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 01:08:51 UTC 2013

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

Log Message:
initial import of libXcomposite-0.4.4

Status:

Vendor Tag: xorg
Release Tags:   libXcomposite-0-4-4

U xsrc/external/mit/libXcomposite/dist/config.h.in
U xsrc/external/mit/libXcomposite/dist/AUTHORS
U xsrc/external/mit/libXcomposite/dist/README
U xsrc/external/mit/libXcomposite/dist/ChangeLog
U xsrc/external/mit/libXcomposite/dist/config.sub
U xsrc/external/mit/libXcomposite/dist/configure
U xsrc/external/mit/libXcomposite/dist/COPYING
U xsrc/external/mit/libXcomposite/dist/config.guess
U xsrc/external/mit/libXcomposite/dist/depcomp
U xsrc/external/mit/libXcomposite/dist/missing
U xsrc/external/mit/libXcomposite/dist/aclocal.m4
U xsrc/external/mit/libXcomposite/dist/INSTALL
U xsrc/external/mit/libXcomposite/dist/ltmain.sh
U xsrc/external/mit/libXcomposite/dist/install-sh
U xsrc/external/mit/libXcomposite/dist/xcomposite.pc.in
U xsrc/external/mit/libXcomposite/dist/Makefile.in
U xsrc/external/mit/libXcomposite/dist/configure.ac
U xsrc/external/mit/libXcomposite/dist/Makefile.am
U xsrc/external/mit/libXcomposite/dist/include/X11/extensions/Xcomposite.h
U xsrc/external/mit/libXcomposite/dist/src/xcompositeint.h
U xsrc/external/mit/libXcomposite/dist/src/Xcomposite.c
U xsrc/external/mit/libXcomposite/dist/src/Makefile.am
U xsrc/external/mit/libXcomposite/dist/src/Makefile.in
C xsrc/external/mit/libXcomposite/dist/man/Xcomposite.man
U xsrc/external/mit/libXcomposite/dist/man/Makefile.am
U xsrc/external/mit/libXcomposite/dist/man/XCompositeUnredirectSubwindows.man
U xsrc/external/mit/libXcomposite/dist/man/XCompositeRedirectWindow.man
U xsrc/external/mit/libXcomposite/dist/man/Makefile.in
U xsrc/external/mit/libXcomposite/dist/man/Xcomposite.xml
U xsrc/external/mit/libXcomposite/dist/man/XCompositeVersion.man
U 
xsrc/external/mit/libXcomposite/dist/man/XCompositeCreateRegionFromBorderClip.man
U xsrc/external/mit/libXcomposite/dist/man/XCompositeReleaseOverlayWindow.man
U xsrc/external/mit/libXcomposite/dist/man/XCompositeRedirectSubwindows.man
U xsrc/external/mit/libXcomposite/dist/man/XCompositeQueryExtension.man
U xsrc/external/mit/libXcomposite/dist/man/XCompositeGetOverlayWindow.man
U xsrc/external/mit/libXcomposite/dist/man/XCompositeQueryVersion.man
U xsrc/external/mit/libXcomposite/dist/man/XCompositeNameWindowPixmap.man
U xsrc/external/mit/libXcomposite/dist/man/XCompositeUnredirectWindow.man

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

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



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 01:08:53 UTC 2013

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

Log Message:
initial import of libXdamage-1.1.4

Status:

Vendor Tag: xorg
Release Tags:   libXdamage-1-1-4

U xsrc/external/mit/libXdamage/dist/INSTALL
U xsrc/external/mit/libXdamage/dist/config.guess
U xsrc/external/mit/libXdamage/dist/ltmain.sh
U xsrc/external/mit/libXdamage/dist/config.h.in
U xsrc/external/mit/libXdamage/dist/xdamage.pc.in
U xsrc/external/mit/libXdamage/dist/config.sub
U xsrc/external/mit/libXdamage/dist/NEWS
U xsrc/external/mit/libXdamage/dist/ChangeLog
U xsrc/external/mit/libXdamage/dist/missing
U xsrc/external/mit/libXdamage/dist/depcomp
U xsrc/external/mit/libXdamage/dist/Makefile.in
U xsrc/external/mit/libXdamage/dist/configure
U xsrc/external/mit/libXdamage/dist/install-sh
U xsrc/external/mit/libXdamage/dist/Makefile.am
U xsrc/external/mit/libXdamage/dist/aclocal.m4
U xsrc/external/mit/libXdamage/dist/AUTHORS
U xsrc/external/mit/libXdamage/dist/README
U xsrc/external/mit/libXdamage/dist/COPYING
U xsrc/external/mit/libXdamage/dist/configure.ac
U xsrc/external/mit/libXdamage/dist/src/Makefile.in
U xsrc/external/mit/libXdamage/dist/src/Xdamage.c
U xsrc/external/mit/libXdamage/dist/src/Makefile.am
U xsrc/external/mit/libXdamage/dist/src/xdamageint.h
U xsrc/external/mit/libXdamage/dist/include/X11/extensions/Xdamage.h

No conflicts created by this import



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 01:08:55 UTC 2013

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

Log Message:
initial import of libXdmcp-1.1.1

Status:

Vendor Tag: xorg
Release Tags:   libXdmcp-1-1-1

U xsrc/external/mit/libXdmcp/dist/Makefile.in
U xsrc/external/mit/libXdmcp/dist/INSTALL
U xsrc/external/mit/libXdmcp/dist/config.guess
U xsrc/external/mit/libXdmcp/dist/Wraphelp.c
N xsrc/external/mit/libXdmcp/dist/docbook.am
U xsrc/external/mit/libXdmcp/dist/Unwrap.c
U xsrc/external/mit/libXdmcp/dist/xdmcp.pc.in
U xsrc/external/mit/libXdmcp/dist/Makefile.am
U xsrc/external/mit/libXdmcp/dist/Wraphelp.README.crypto
U xsrc/external/mit/libXdmcp/dist/install-sh
U xsrc/external/mit/libXdmcp/dist/ltmain.sh
U xsrc/external/mit/libXdmcp/dist/Wrap.c
U xsrc/external/mit/libXdmcp/dist/aclocal.m4
U xsrc/external/mit/libXdmcp/dist/Flush.c
U xsrc/external/mit/libXdmcp/dist/AUTHORS
U xsrc/external/mit/libXdmcp/dist/Write.c
U xsrc/external/mit/libXdmcp/dist/README
U xsrc/external/mit/libXdmcp/dist/autogen.sh
U xsrc/external/mit/libXdmcp/dist/Fill.c
U xsrc/external/mit/libXdmcp/dist/configure.ac
U xsrc/external/mit/libXdmcp/dist/config.h.in
U xsrc/external/mit/libXdmcp/dist/COPYING
U xsrc/external/mit/libXdmcp/dist/Read.c
U xsrc/external/mit/libXdmcp/dist/Array.c
U xsrc/external/mit/libXdmcp/dist/depcomp
U xsrc/external/mit/libXdmcp/dist/missing
U xsrc/external/mit/libXdmcp/dist/ChangeLog
U xsrc/external/mit/libXdmcp/dist/Key.c
U xsrc/external/mit/libXdmcp/dist/configure
U xsrc/external/mit/libXdmcp/dist/config.sub
U xsrc/external/mit/libXdmcp/dist/Wrap.h
U xsrc/external/mit/libXdmcp/dist/include/X11/Xdmcp.h
U xsrc/external/mit/libXdmcp/dist/doc/Makefile.in
U xsrc/external/mit/libXdmcp/dist/doc/xdmcp.xml
U xsrc/external/mit/libXdmcp/dist/doc/Makefile.am

No conflicts created by this import



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 01:08:59 UTC 2013

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

Log Message:
initial import of libXfont-1.4.5

Status:

Vendor Tag: xorg
Release Tags:   libXfont-1-4-5

U xsrc/external/mit/libXfont/dist/README
U xsrc/external/mit/libXfont/dist/ltmain.sh
U xsrc/external/mit/libXfont/dist/INSTALL
U xsrc/external/mit/libXfont/dist/Makefile.in
U xsrc/external/mit/libXfont/dist/configure.ac
U xsrc/external/mit/libXfont/dist/config.sub
U xsrc/external/mit/libXfont/dist/Makefile.am
N xsrc/external/mit/libXfont/dist/devbook.am
U xsrc/external/mit/libXfont/dist/xfont.pc.in
U xsrc/external/mit/libXfont/dist/config.h.in
U xsrc/external/mit/libXfont/dist/ChangeLog
U xsrc/external/mit/libXfont/dist/config.guess
U xsrc/external/mit/libXfont/dist/COPYING
U xsrc/external/mit/libXfont/dist/AUTHORS
U xsrc/external/mit/libXfont/dist/configure
U xsrc/external/mit/libXfont/dist/missing
U xsrc/external/mit/libXfont/dist/aclocal.m4
U xsrc/external/mit/libXfont/dist/depcomp
U xsrc/external/mit/libXfont/dist/install-sh
U xsrc/external/mit/libXfont/dist/src/Makefile.in
U xsrc/external/mit/libXfont/dist/src/dummy.c
U xsrc/external/mit/libXfont/dist/src/Makefile.am
U xsrc/external/mit/libXfont/dist/src/stubs/getnewfntcid.c
U xsrc/external/mit/libXfont/dist/src/stubs/gettime.c
U xsrc/external/mit/libXfont/dist/src/stubs/fatalerror.c
U xsrc/external/mit/libXfont/dist/src/stubs/servclient.c
U xsrc/external/mit/libXfont/dist/src/stubs/initfshdl.c
U xsrc/external/mit/libXfont/dist/src/stubs/delfntcid.c
U xsrc/external/mit/libXfont/dist/src/stubs/setfntauth.c
U xsrc/external/mit/libXfont/dist/src/stubs/csignal.c
U xsrc/external/mit/libXfont/dist/src/stubs/getcres.c
U xsrc/external/mit/libXfont/dist/src/stubs/stfntcfnt.c
U xsrc/external/mit/libXfont/dist/src/stubs/rmfshdl.c
U xsrc/external/mit/libXfont/dist/src/stubs/cauthgen.c
U xsrc/external/mit/libXfont/dist/src/stubs/regfpefunc.c
U xsrc/external/mit/libXfont/dist/src/stubs/getdefptsize.c
U xsrc/external/mit/libXfont/dist/src/stubs/Makefile.am
U xsrc/external/mit/libXfont/dist/src/stubs/stubs.h
U xsrc/external/mit/libXfont/dist/src/stubs/Makefile.in
U xsrc/external/mit/libXfont/dist/src/stubs/findoldfnt.c
U xsrc/external/mit/libXfont/dist/src/stubs/errorf.c
U xsrc/external/mit/libXfont/dist/src/fontfile/fontencc.c
U xsrc/external/mit/libXfont/dist/src/fontfile/fontdir.c
U xsrc/external/mit/libXfont/dist/src/fontfile/bufio.c
U xsrc/external/mit/libXfont/dist/src/fontfile/filewr.c
U xsrc/external/mit/libXfont/dist/src/fontfile/dirfile.c
U xsrc/external/mit/libXfont/dist/src/fontfile/fontscale.c
C xsrc/external/mit/libXfont/dist/src/fontfile/decompress.c
U xsrc/external/mit/libXfont/dist/src/fontfile/Makefile.am
U xsrc/external/mit/libXfont/dist/src/fontfile/gunzip.c
U xsrc/external/mit/libXfont/dist/src/fontfile/fontfile.c
U xsrc/external/mit/libXfont/dist/src/fontfile/bitsource.c
U xsrc/external/mit/libXfont/dist/src/fontfile/Makefile.in
U xsrc/external/mit/libXfont/dist/src/fontfile/catalogue.c
U xsrc/external/mit/libXfont/dist/src/fontfile/defaults.c
U xsrc/external/mit/libXfont/dist/src/fontfile/renderers.c
U xsrc/external/mit/libXfont/dist/src/fontfile/register.c
C xsrc/external/mit/libXfont/dist/src/fontfile/bunzip2.c
U xsrc/external/mit/libXfont/dist/src/fontfile/fileio.c
U xsrc/external/mit/libXfont/dist/src/bitmap/Makefile.am
U xsrc/external/mit/libXfont/dist/src/bitmap/pcfwrite.c
U xsrc/external/mit/libXfont/dist/src/bitmap/bdfutils.c
U xsrc/external/mit/libXfont/dist/src/bitmap/snfread.c
U xsrc/external/mit/libXfont/dist/src/bitmap/Makefile.in
U xsrc/external/mit/libXfont/dist/src/bitmap/fontink.c
U xsrc/external/mit/libXfont/dist/src/bitmap/bdfread.c
U xsrc/external/mit/libXfont/dist/src/bitmap/snfstr.h
U xsrc/external/mit/libXfont/dist/src/bitmap/bitmapfunc.c
U xsrc/external/mit/libXfont/dist/src/bitmap/bitmaputil.c
U xsrc/external/mit/libXfont/dist/src/bitmap/bitscale.c
C xsrc/external/mit/libXfont/dist/src/bitmap/pcfread.c
U xsrc/external/mit/libXfont/dist/src/bitmap/bitmap.c
U xsrc/external/mit/libXfont/dist/src/fc/fservestr.h
U xsrc/external/mit/libXfont/dist/src/fc/fsconvert.c
U xsrc/external/mit/libXfont/dist/src/fc/fslibos.h
U xsrc/external/mit/libXfont/dist/src/fc/fsio.h
U xsrc/external/mit/libXfont/dist/src/fc/fserve.c
U xsrc/external/mit/libXfont/dist/src/fc/fserve.h
U xsrc/external/mit/libXfont/dist/src/fc/fsio.c
U xsrc/external/mit/libXfont/dist/src/fc/Makefile.am
U xsrc/external/mit/libXfont/dist/src/fc/fstrans.c
U xsrc/external/mit/libXfont/dist/src/fc/Makefile.in
U xsrc/external/mit/libXfont/dist/src/builtins/Makefile.am
U xsrc/external/mit/libXfont/dist/src/builtins/builtin.h
U xsrc/external/mit/libXfont/dist/src/builtins/render.c
U xsrc/external/mit/libXfont/dist/src/builtins/Makefile.in
U xsrc/external/mit/libXfont/dist/src/builtins/buildfont
U xsrc/external/mit/libXfont/dist/src/builtins/dir.c
U 

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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 01:09:01 UTC 2013

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

Log Message:
initial import of libXmu-1.1.1

Status:

Vendor Tag: xorg
Release Tags:   libXmu-1-1-1

U xsrc/external/mit/libXmu/dist/config.h.in
U xsrc/external/mit/libXmu/dist/missing
U xsrc/external/mit/libXmu/dist/depcomp
U xsrc/external/mit/libXmu/dist/config.guess
U xsrc/external/mit/libXmu/dist/config.sub
U xsrc/external/mit/libXmu/dist/configure
U xsrc/external/mit/libXmu/dist/INSTALL
U xsrc/external/mit/libXmu/dist/ChangeLog
U xsrc/external/mit/libXmu/dist/README
U xsrc/external/mit/libXmu/dist/xmu.pc.in
U xsrc/external/mit/libXmu/dist/COPYING
N xsrc/external/mit/libXmu/dist/docbook.am
U xsrc/external/mit/libXmu/dist/Makefile.in
U xsrc/external/mit/libXmu/dist/xmuu.pc.in
U xsrc/external/mit/libXmu/dist/configure.ac
U xsrc/external/mit/libXmu/dist/Makefile.am
U xsrc/external/mit/libXmu/dist/install-sh
U xsrc/external/mit/libXmu/dist/aclocal.m4
U xsrc/external/mit/libXmu/dist/ltmain.sh
U xsrc/external/mit/libXmu/dist/include/Makefile.in
U xsrc/external/mit/libXmu/dist/include/Makefile.am
U xsrc/external/mit/libXmu/dist/include/X11/Xmu/DisplayQue.h
U xsrc/external/mit/libXmu/dist/include/X11/Xmu/Initer.h
U xsrc/external/mit/libXmu/dist/include/X11/Xmu/WhitePoint.h
U xsrc/external/mit/libXmu/dist/include/X11/Xmu/Xmu.h
U xsrc/external/mit/libXmu/dist/include/X11/Xmu/CvtCache.h
U xsrc/external/mit/libXmu/dist/include/X11/Xmu/Converters.h
U xsrc/external/mit/libXmu/dist/include/X11/Xmu/CurUtil.h
U xsrc/external/mit/libXmu/dist/include/X11/Xmu/StdCmap.h
U xsrc/external/mit/libXmu/dist/include/X11/Xmu/SysUtil.h
U xsrc/external/mit/libXmu/dist/include/X11/Xmu/Misc.h
U xsrc/external/mit/libXmu/dist/include/X11/Xmu/WinUtil.h
U xsrc/external/mit/libXmu/dist/include/X11/Xmu/EditresP.h
U xsrc/external/mit/libXmu/dist/include/X11/Xmu/Atoms.h
U xsrc/external/mit/libXmu/dist/include/X11/Xmu/Lookup.h
U xsrc/external/mit/libXmu/dist/include/X11/Xmu/ExtAgent.h
U xsrc/external/mit/libXmu/dist/include/X11/Xmu/Error.h
U xsrc/external/mit/libXmu/dist/include/X11/Xmu/Editres.h
U xsrc/external/mit/libXmu/dist/include/X11/Xmu/WidgetNode.h
U xsrc/external/mit/libXmu/dist/include/X11/Xmu/Drawing.h
U xsrc/external/mit/libXmu/dist/include/X11/Xmu/CharSet.h
U xsrc/external/mit/libXmu/dist/include/X11/Xmu/Xct.h
U xsrc/external/mit/libXmu/dist/include/X11/Xmu/CloseHook.h
U xsrc/external/mit/libXmu/dist/include/X11/Xmu/StdSel.h
U xsrc/external/mit/libXmu/dist/src/StrToWidg.c
U xsrc/external/mit/libXmu/dist/src/WidgetNode.c
U xsrc/external/mit/libXmu/dist/src/Makefile.am
U xsrc/external/mit/libXmu/dist/src/EditresCom.c
U xsrc/external/mit/libXmu/dist/src/StrToOrnt.c
U xsrc/external/mit/libXmu/dist/src/CursorName.c
U xsrc/external/mit/libXmu/dist/src/VisCmap.c
U xsrc/external/mit/libXmu/dist/src/ExtAgent.c
U xsrc/external/mit/libXmu/dist/src/UpdMapHint.c
U xsrc/external/mit/libXmu/dist/src/Makefile.in
U xsrc/external/mit/libXmu/dist/src/ShapeWidg.c
U xsrc/external/mit/libXmu/dist/src/FToCback.c
U xsrc/external/mit/libXmu/dist/src/StrToShap.c
U xsrc/external/mit/libXmu/dist/src/StrToBS.c
U xsrc/external/mit/libXmu/dist/src/StrToLong.c
U xsrc/external/mit/libXmu/dist/src/Initer.c
U xsrc/external/mit/libXmu/dist/src/ClientWin.c
U xsrc/external/mit/libXmu/dist/src/sharedlib.c
U xsrc/external/mit/libXmu/dist/src/StrToCurs.c
U xsrc/external/mit/libXmu/dist/src/CrPixFBit.c
U xsrc/external/mit/libXmu/dist/src/RdBitF.c
U xsrc/external/mit/libXmu/dist/src/Lower.c
U xsrc/external/mit/libXmu/dist/src/StdCmap.c
U xsrc/external/mit/libXmu/dist/src/DefErrMsg.c
C xsrc/external/mit/libXmu/dist/src/CmapAlloc.c
U xsrc/external/mit/libXmu/dist/src/DisplayQue.c
U xsrc/external/mit/libXmu/dist/src/CrCmap.c
U xsrc/external/mit/libXmu/dist/src/StrToJust.c
U xsrc/external/mit/libXmu/dist/src/Atoms.c
U xsrc/external/mit/libXmu/dist/src/DrawLogo.c
U xsrc/external/mit/libXmu/dist/src/LookupCmap.c
U xsrc/external/mit/libXmu/dist/src/ScrOfWin.c
U xsrc/external/mit/libXmu/dist/src/Xct.c
U xsrc/external/mit/libXmu/dist/src/StrToBmap.c
U xsrc/external/mit/libXmu/dist/src/GrayPixmap.c
U xsrc/external/mit/libXmu/dist/src/Clip.c
U xsrc/external/mit/libXmu/dist/src/StrToGrav.c
U xsrc/external/mit/libXmu/dist/src/DelCmap.c
U xsrc/external/mit/libXmu/dist/src/CvtStdSel.c
U xsrc/external/mit/libXmu/dist/src/GetHost.c
U xsrc/external/mit/libXmu/dist/src/LocBitmap.c
U xsrc/external/mit/libXmu/dist/src/Distinct.c
U xsrc/external/mit/libXmu/dist/src/CvtCache.c
U xsrc/external/mit/libXmu/dist/src/Lookup.c
U xsrc/external/mit/libXmu/dist/src/AllCmap.c
U xsrc/external/mit/libXmu/dist/src/DrRndRect.c
U xsrc/external/mit/libXmu/dist/src/CloseHook.c
U xsrc/external/mit/libXmu/dist/doc/xlogo.svg
U xsrc/external/mit/libXmu/dist/doc/Makefile.in
U xsrc/external/mit/libXmu/dist/doc/Makefile.am
U xsrc/external/mit/libXmu/dist/doc/Xmu.xml

1 conflicts created by this import.
Use the 

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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 01:09:08 UTC 2013

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

Log Message:
initial import of libfontenc-1.1.2

Status:

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

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

No conflicts created by this import



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 01:09:04 UTC 2013

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

Log Message:
initial import of libXpm-3.5.10

Status:

Vendor Tag: xorg
Release Tags:   libXpm-3-5-10

U xsrc/external/mit/libXpm/dist/xpm.pc.in
U xsrc/external/mit/libXpm/dist/depcomp
U xsrc/external/mit/libXpm/dist/missing
U xsrc/external/mit/libXpm/dist/config.sub
U xsrc/external/mit/libXpm/dist/README
U xsrc/external/mit/libXpm/dist/ltmain.sh
U xsrc/external/mit/libXpm/dist/configure.ac
U xsrc/external/mit/libXpm/dist/AUTHORS
U xsrc/external/mit/libXpm/dist/config.h.in
U xsrc/external/mit/libXpm/dist/aclocal.m4
U xsrc/external/mit/libXpm/dist/COPYING
U xsrc/external/mit/libXpm/dist/Makefile.am
U xsrc/external/mit/libXpm/dist/configure
U xsrc/external/mit/libXpm/dist/install-sh
U xsrc/external/mit/libXpm/dist/ChangeLog
U xsrc/external/mit/libXpm/dist/INSTALL
U xsrc/external/mit/libXpm/dist/config.guess
U xsrc/external/mit/libXpm/dist/COPYRIGHT
U xsrc/external/mit/libXpm/dist/Makefile.in
U xsrc/external/mit/libXpm/dist/sxpm/plaid_mask.xpm
U xsrc/external/mit/libXpm/dist/sxpm/Makefile.am
U xsrc/external/mit/libXpm/dist/sxpm/Makefile.in
U xsrc/external/mit/libXpm/dist/sxpm/plaid_ext.xpm
U xsrc/external/mit/libXpm/dist/sxpm/plaid.xpm
U xsrc/external/mit/libXpm/dist/sxpm/sxpm.c
U xsrc/external/mit/libXpm/dist/cxpm/Makefile.am
U xsrc/external/mit/libXpm/dist/cxpm/cxpm.c
U xsrc/external/mit/libXpm/dist/cxpm/Makefile.in
U xsrc/external/mit/libXpm/dist/doc/README.html
U xsrc/external/mit/libXpm/dist/doc/Makefile.in
U xsrc/external/mit/libXpm/dist/doc/xpm.PS.gz
U xsrc/external/mit/libXpm/dist/doc/FAQ.html
U xsrc/external/mit/libXpm/dist/doc/README.AMIGA
U xsrc/external/mit/libXpm/dist/doc/Makefile.am
U xsrc/external/mit/libXpm/dist/doc/README.MSW
U xsrc/external/mit/libXpm/dist/include/Makefile.am
U xsrc/external/mit/libXpm/dist/include/Makefile.in
U xsrc/external/mit/libXpm/dist/include/X11/xpm.h
N xsrc/external/mit/libXpm/dist/man/Makefile.am
N xsrc/external/mit/libXpm/dist/man/cxpm.man
N xsrc/external/mit/libXpm/dist/man/Makefile.in
N xsrc/external/mit/libXpm/dist/man/sxpm.man
U xsrc/external/mit/libXpm/dist/m4/ax_define_dir.m4
U xsrc/external/mit/libXpm/dist/src/CrDatFrP.c
U xsrc/external/mit/libXpm/dist/src/CrPFrI.c
U xsrc/external/mit/libXpm/dist/src/WrFFrDat.c
U xsrc/external/mit/libXpm/dist/src/simx.c
U xsrc/external/mit/libXpm/dist/src/CrIFrBuf.c
U xsrc/external/mit/libXpm/dist/src/scan.c
U xsrc/external/mit/libXpm/dist/src/amigax.h
U xsrc/external/mit/libXpm/dist/src/CrBufFrI.c
U xsrc/external/mit/libXpm/dist/src/Attrib.c
U xsrc/external/mit/libXpm/dist/src/Image.c
U xsrc/external/mit/libXpm/dist/src/CrPFrDat.c
U xsrc/external/mit/libXpm/dist/src/Makefile.am
U xsrc/external/mit/libXpm/dist/src/WrFFrI.c
U xsrc/external/mit/libXpm/dist/src/create.c
U xsrc/external/mit/libXpm/dist/src/RdFToBuf.c
U xsrc/external/mit/libXpm/dist/src/RdFToI.c
U xsrc/external/mit/libXpm/dist/src/CrDatFrI.c
U xsrc/external/mit/libXpm/dist/src/amigax.c
U xsrc/external/mit/libXpm/dist/src/CrIFrDat.c
U xsrc/external/mit/libXpm/dist/src/parse.c
U xsrc/external/mit/libXpm/dist/src/hashtab.c
U xsrc/external/mit/libXpm/dist/src/data.c
U xsrc/external/mit/libXpm/dist/src/CrIFrP.c
U xsrc/external/mit/libXpm/dist/src/simx.h
U xsrc/external/mit/libXpm/dist/src/misc.c
U xsrc/external/mit/libXpm/dist/src/Info.c
U xsrc/external/mit/libXpm/dist/src/CrPFrBuf.c
U xsrc/external/mit/libXpm/dist/src/rgbtab.h
U xsrc/external/mit/libXpm/dist/src/RdFToDat.c
U xsrc/external/mit/libXpm/dist/src/rgb.c
U xsrc/external/mit/libXpm/dist/src/Makefile.in
U xsrc/external/mit/libXpm/dist/src/CrBufFrP.c
U xsrc/external/mit/libXpm/dist/src/WrFFrP.c
U xsrc/external/mit/libXpm/dist/src/WrFFrBuf.c
U xsrc/external/mit/libXpm/dist/src/RdFToP.c
U xsrc/external/mit/libXpm/dist/src/XpmI.h

No conflicts created by this import



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 01:09:06 UTC 2013

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

Log Message:
initial import of libXtst-1.2.1

Status:

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

U xsrc/external/mit/libXtst/dist/INSTALL
U xsrc/external/mit/libXtst/dist/Makefile.am
U xsrc/external/mit/libXtst/dist/ltmain.sh
U xsrc/external/mit/libXtst/dist/Makefile.in
U xsrc/external/mit/libXtst/dist/config.sub
U xsrc/external/mit/libXtst/dist/configure.ac
U xsrc/external/mit/libXtst/dist/config.guess
U xsrc/external/mit/libXtst/dist/configure
N xsrc/external/mit/libXtst/dist/docbook.am
U xsrc/external/mit/libXtst/dist/xtst.pc.in
U xsrc/external/mit/libXtst/dist/missing
U xsrc/external/mit/libXtst/dist/depcomp
U xsrc/external/mit/libXtst/dist/ChangeLog
U xsrc/external/mit/libXtst/dist/install-sh
U xsrc/external/mit/libXtst/dist/README
U xsrc/external/mit/libXtst/dist/COPYING
U xsrc/external/mit/libXtst/dist/config.h.in
U xsrc/external/mit/libXtst/dist/aclocal.m4
U xsrc/external/mit/libXtst/dist/man/x.stamp
U xsrc/external/mit/libXtst/dist/man/XTestFakeMotionEvent.man
U xsrc/external/mit/libXtst/dist/man/XTestDiscard.man
U xsrc/external/mit/libXtst/dist/man/XTestFakeKeyEvent.man
U xsrc/external/mit/libXtst/dist/man/XTestSetGContextOfGC.man
U xsrc/external/mit/libXtst/dist/man/XTestCompareCursorWithWindow.man
U xsrc/external/mit/libXtst/dist/man/XTestFakeButtonEvent.man
U xsrc/external/mit/libXtst/dist/man/Makefile.in
U xsrc/external/mit/libXtst/dist/man/XTestSetVisualIDOfVisual.man
U xsrc/external/mit/libXtst/dist/man/Makefile.am
U xsrc/external/mit/libXtst/dist/man/XTestCompareCurrentCursorWithWindow.man
U xsrc/external/mit/libXtst/dist/man/XTestGrabControl.man
C xsrc/external/mit/libXtst/dist/man/XTestQueryExtension.man
U xsrc/external/mit/libXtst/dist/man/XTest.xml
U xsrc/external/mit/libXtst/dist/man/XTestFakeRelativeMotionEvent.man
U xsrc/external/mit/libXtst/dist/specs/recordlib.xml
U xsrc/external/mit/libXtst/dist/specs/Makefile.in
U xsrc/external/mit/libXtst/dist/specs/Makefile.am
U xsrc/external/mit/libXtst/dist/specs/xtestlib.xml
U xsrc/external/mit/libXtst/dist/src/Makefile.am
U xsrc/external/mit/libXtst/dist/src/XTest.c
U xsrc/external/mit/libXtst/dist/src/Makefile.in
U xsrc/external/mit/libXtst/dist/src/XRecord.c
U xsrc/external/mit/libXtst/dist/include/X11/extensions/XTest.h
U xsrc/external/mit/libXtst/dist/include/X11/extensions/record.h

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

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



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 01:09:10 UTC 2013

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

Log Message:
initial import of libxkbfile-1.0.8

Status:

Vendor Tag: xorg
Release Tags:   libxkbfile-1-0-8

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

No conflicts created by this import



CVS commit: xsrc/external/mit/libXcomposite/dist/man

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 01:18:29 UTC 2013

Modified Files:
xsrc/external/mit/libXcomposite/dist/man: Xcomposite.man

Log Message:
merge libXcomposite 0.4.4


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 \
xsrc/external/mit/libXcomposite/dist/man/Xcomposite.man

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/libXcomposite/dist/man/Xcomposite.man
diff -u xsrc/external/mit/libXcomposite/dist/man/Xcomposite.man:1.2 xsrc/external/mit/libXcomposite/dist/man/Xcomposite.man:1.3
--- xsrc/external/mit/libXcomposite/dist/man/Xcomposite.man:1.2	Thu Jun  3 17:26:14 2010
+++ xsrc/external/mit/libXcomposite/dist/man/Xcomposite.man	Fri May 31 01:18:29 2013
@@ -1,183 +1,270 @@
-.\ ** You probably do not want to edit this file directly **
-.\ It was generated using the DocBook XSL Stylesheets (version 1.69.1).
-.\ Instead of manually editing it, you probably should edit the DocBook XML
-.\ source for it and then use the DocBook XSL Stylesheets to regenerate it.
-.TH XCOMPOSITE __libmansuffix__ 23 April 2007 __vendorversion__ X Composite Extension Library
+'\ t
+.\ Title: Xcomposite
+.\Author: Keith Packard kei...@keithp.com
+.\ Generator: DocBook XSL Stylesheets vsnapshot_9276 http://docbook.sf.net/
+.\  Date: pubdate23 April 2007/pubdate
+.\Manual: X Composite Extension Library
+.\Source: __vendorversion__
+.\  Language: English
+.\
+.TH XCOMPOSITE __libmansuffix__ pubdate23 April 2007/pubdate __vendorversion__ X Composite Extension Library
+.\ -
+.\ * Define some portability stuff
+.\ -
+.\ ~
+.\ http://bugs.debian.org/507673
+.\ http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
+.\ ~
+.ie \n(.g .ds Aq \(aq
+.el   .ds Aq '
+.\ -
+.\ * set default formatting
+.\ -
 .\ disable hyphenation
 .nh
 .\ disable justification (adjust text to left margin only)
 .ad l
+.\ -
+.\ * MAIN CONTENT STARTS HERE *
+.\ -
 .SH NAME
 Xcomposite \- X Composite Extension library
 .SH SYNOPSIS
-.PP
-\fB#include X11/extensions/Xcomposite.h\fR
-.HP 30
-\fBBool\ \fBXCompositeQueryExtension\fR\fR\fB(\fR\fB\fBDisplay\ *\fR\fR\fB\fIdpy\fR\fR\fB, \fR\fBint\ *\fR\fB\fIevent_base_return\fR\fR\fB, \fR\fBint\ *\fR\fB\fIerror_base_return\fR\fR\fB);\fR
-.HP 30
-\fBStatus\ \fBXCompositeQueryVersion\fR\fR\fB(\fR\fBDisplay\ *\fR\fB\fIdpy\fR\fR\fB, \fR\fBint\ *\fR\fB\fImajor_version_return\fR\fR\fB, \fR\fBint\ *\fR\fB\fIminor_version_return\fR\fR\fB);\fR
-.HP 22
-\fBint\ \fBXCompositeVersion\fR\fR\fB(\fR\fBvoid);\fR
-.HP 30
-\fBvoid\ \fBXCompositeRedirectWindow\fR\fR\fB(\fR\fBDisplay\ *\fR\fB\fIdpy\fR\fR\fB, \fR\fBWindow\ \fR\fB\fIwindow\fR\fR\fB, \fR\fBint\ \fR\fB\fIupdate\fR\fR\fB);\fR
-.HP 34
-\fBvoid\ \fBXCompositeRedirectSubwindows\fR\fR\fB(\fR\fBDisplay\ *\fR\fB\fIdpy\fR\fR\fB, \fR\fBWindow\ \fR\fB\fIwindow\fR\fR\fB, \fR\fBint\ \fR\fB\fIupdate\fR\fR\fB);\fR
-.HP 32
-\fBvoid\ \fBXCompositeUnredirectWindow\fR\fR\fB(\fR\fBDisplay\ *\fR\fB\fIdpy\fR\fR\fB, \fR\fBWindow\ \fR\fB\fIwindow\fR\fR\fB, \fR\fBint\ \fR\fB\fIupdate\fR\fR\fB);\fR
-.HP 36
-\fBvoid\ \fBXCompositeUnredirectSubwindows\fR\fR\fB(\fR\fBDisplay\ *\fR\fB\fIdpy\fR\fR\fB, \fR\fBWindow\ \fR\fB\fIwindow\fR\fR\fB, \fR\fBint\ \fR\fB\fIupdate\fR\fR\fB);\fR
-.HP 51
-\fBXserverRegion\ \fBXCompositeCreateRegionFromBorderClip\fR\fR\fB(\fR\fBDisplay\ *\fR\fB\fIdpy\fR\fR\fB, \fR\fBWindow\ \fR\fB\fIwindow\fR\fR\fB);\fR
-.HP 34
-\fBPixmap\ \fBXCompositeNameWindowPixmap\fR\fR\fB(\fR\fBDisplay\ *\fR\fB\fIdpy\fR\fR\fB, \fR\fBWindow\ \fR\fB\fIwindow\fR\fR\fB);\fR
-.HP 34
-\fBWindow\ \fBXCompositeGetOverlayWindow\fR\fR\fB(\fR\fBDisplay\ *\fR\fB\fIdpy\fR\fR\fB, \fR\fBWindow\ \fR\fB\fIwindow\fR\fR\fB);\fR
-.HP 36
-\fBvoid\ \fBXCompositeReleaseOverlayWindow\fR\fR\fB(\fR\fBDisplay\ *\fR\fB\fIdpy\fR\fR\fB, \fR\fBWindow\ \fR\fB\fIwindow\fR\fR\fB);\fR
+.sp
+.ft B
+.nf
+#include X11/extensions/Xcomposite\.h
+.fi
+.ft
+.HP \w'Bool\ XCompositeQueryExtension('u
+.BI Bool XCompositeQueryExtension(Display\ * dpy , int\ * event_base_return , int\ * error_base_return );
+.HP \w'Status\ XCompositeQueryVersion('u
+.BI Status XCompositeQueryVersion(Display\ * dpy , int\ * major_version_return , int\ * minor_version_return );
+.HP \w'int\ XCompositeVersion('u
+.BI int XCompositeVersion(void);
+.HP \w'void\ XCompositeRedirectWindow('u
+.BI void XCompositeRedirectWindow(Display\ * dpy , Window\  window , int\  update );
+.HP 

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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 01:18:45 UTC 2013

Modified Files:
xsrc/external/mit/libXfont/dist/src/FreeType: ftfuncs.c
xsrc/external/mit/libXfont/dist/src/bitmap: pcfread.c
xsrc/external/mit/libXfont/dist/src/fontfile: bunzip2.c decompress.c
Removed Files:
xsrc/external/mit/libXfont/dist/doc: fontlib.css fontlib.xsl

Log Message:
merge libXfont 1.4.5


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.2 -r0 xsrc/external/mit/libXfont/dist/doc/fontlib.css \
xsrc/external/mit/libXfont/dist/doc/fontlib.xsl
cvs rdiff -u -r1.2 -r1.3 \
xsrc/external/mit/libXfont/dist/src/FreeType/ftfuncs.c
cvs rdiff -u -r1.2 -r1.3 xsrc/external/mit/libXfont/dist/src/bitmap/pcfread.c
cvs rdiff -u -r1.3 -r1.4 \
xsrc/external/mit/libXfont/dist/src/fontfile/bunzip2.c \
xsrc/external/mit/libXfont/dist/src/fontfile/decompress.c

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/libXfont/dist/src/FreeType/ftfuncs.c
diff -u xsrc/external/mit/libXfont/dist/src/FreeType/ftfuncs.c:1.2 xsrc/external/mit/libXfont/dist/src/FreeType/ftfuncs.c:1.3
--- xsrc/external/mit/libXfont/dist/src/FreeType/ftfuncs.c:1.2	Thu Aug 11 22:12:07 2011
+++ xsrc/external/mit/libXfont/dist/src/FreeType/ftfuncs.c	Fri May 31 01:18:45 2013
@@ -25,9 +25,6 @@ LIABILITY, WHETHER IN AN ACTION OF CONTR
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 THE SOFTWARE.
 */
-/* $XdotOrg: xc/lib/font/FreeType/ftfuncs.c,v 1.11 2005/07/03 07:00:58 daniels Exp $ */
-
-/* $XFree86: xc/lib/font/FreeType/ftfuncs.c,v 1.43 2004/02/07 04:37:18 dawes Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include config.h
@@ -51,7 +48,7 @@ THE SOFTWARE.
 #include FT_BBOX_H
 #include FT_TRUETYPE_TAGS_H
 /*
- *  If you want to use FT_Outline_Get_CBox instead of 
+ *  If you want to use FT_Outline_Get_CBox instead of
  *  FT_Outline_Get_BBox, define here.
  */
 /* #define USE_GET_CBOX */
@@ -97,7 +94,7 @@ static CharInfoRec noSuchChar = { /* met
 
 /* The propery names for all the XLFD properties. */
 
-static char *xlfd_props[] = {
+static const char *xlfd_props[] = {
 FOUNDRY,
 FAMILY_NAME,
 WEIGHT_NAME,
@@ -163,7 +160,7 @@ iceil(int x, int y)
 {
 return ifloor(x + y - 1, y);
 }
-  
+
 static int
 FreeTypeOpenFace(FTFacePtr *facep, char *FTFileName, char *realFileName, int faceNumber)
 {
@@ -188,7 +185,7 @@ FreeTypeOpenFace(FTFacePtr *facep, char 
 otherFace = otherFace-next;
 }
 if(otherFace) {
-MUMBLE1(Returning cached face: %s\n, otherFace-filename);
+MUMBLE(Returning cached face: %s\n, otherFace-filename);
 *facep = otherFace;
 return Successful;
 }
@@ -253,7 +250,7 @@ FreeTypeFreeFace(FTFacePtr face)
 else
 ErrorF(FreeType: freeing unknown face\n);
 }
-MUMBLE1(Closing face: %s\n, face-filename);
+MUMBLE(Closing face: %s\n, face-filename);
 FT_Done_Face(face-face);
 free(face-filename);
 free(face);
@@ -270,7 +267,7 @@ TransEqual(FTNormalisedTransformationPtr
 else if(t1-nonIdentity != t2-nonIdentity)
 return 0;
 else if(t1-nonIdentity  t2-nonIdentity) {
-return 
+return
 t1-matrix.xx == t2-matrix.xx 
 t1-matrix.yx == t2-matrix.yx 
 t1-matrix.yy == t2-matrix.yy 
@@ -303,7 +300,7 @@ TTCapEqual(struct TTCapInfo *t1, struct 
 	t1-flags == t2-flags 
 	t1-scaleBitmap == t2-scaleBitmap 
 	/*
-	  If we use forceConstantSpacing, 
+	  If we use forceConstantSpacing,
 	  we *MUST* allocate new instance.
 	*/
 	t1-forceConstantSpacingEnd  0 
@@ -314,7 +311,7 @@ static int
 FTInstanceMatch(FTInstancePtr instance,
 		char *FTFileName, FTNormalisedTransformationPtr trans,
 		int spacing, FontBitmapFormatPtr bmfmt,
-		struct TTCapInfo *tmp_ttcap, FT_Int32 load_flags) 
+		struct TTCapInfo *tmp_ttcap, FT_Int32 load_flags)
 {
 if(strcmp(instance-face-filename, FTFileName) != 0) {
 return 0;
@@ -350,7 +347,7 @@ FreeTypeActivateInstance(FTInstancePtr i
  instance-transformation.nonIdentity ?
  instance-transformation.matrix : 0,
  0);
-
+
 instance-face-active_instance = instance;
 return Successful;
 }
@@ -380,7 +377,7 @@ FTFindSize(FT_Face face, FTNormalisedTra
 j = i;
 d = dd;
 }
-}
+}
 }
 if(j  0)
 return BadFontName;
@@ -533,7 +530,7 @@ FreeTypeOpenInstance(FTInstancePtr *inst
 /* maintain a linked list of instances */
 instance-next = instance-face-instances;
 instance-face-instances = instance;
-
+
 *instance_return = instance;
 return Successful;
 }
@@ -550,7 +547,7 @@ FreeTypeFreeInstance(FTInstancePtr insta
 instance-refcount--;
 if(instance-refcount = 0) {
   

CVS commit: xsrc/external/mit/libXmu/dist/src

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 01:19:01 UTC 2013

Modified Files:
xsrc/external/mit/libXmu/dist/src: CmapAlloc.c

Log Message:
merge libXmu 1.1.1


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 xsrc/external/mit/libXmu/dist/src/CmapAlloc.c

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/libXmu/dist/src/CmapAlloc.c
diff -u xsrc/external/mit/libXmu/dist/src/CmapAlloc.c:1.4 xsrc/external/mit/libXmu/dist/src/CmapAlloc.c:1.5
--- xsrc/external/mit/libXmu/dist/src/CmapAlloc.c:1.4	Wed Jul 18 14:58:49 2012
+++ xsrc/external/mit/libXmu/dist/src/CmapAlloc.c	Fri May 31 01:19:01 2013
@@ -1,4 +1,4 @@
-/* 
+/*
 
 Copyright 1989, 1994, 1998  The Open Group
 
@@ -52,11 +52,11 @@ static int icbrt(int);
 static int icbrt_with_bits(int, int);
 static int icbrt_with_guess(int, int);
 
-/* To determine the best allocation of reds, greens, and blues in a 
+/* To determine the best allocation of reds, greens, and blues in a
  * standard colormap, use XmuGetColormapAllocation.
  * 	vinfo		specifies visual information for a chosen visual
  *	property	specifies one of the standard colormap property names
- * 	red_max		returns maximum red value 
+ * 	red_max		returns maximum red value
  *  green_max	returns maximum green value
  * 	blue_max	returns maximum blue value
  *
@@ -115,15 +115,15 @@ gray_allocation(int n, unsigned long *re
 		unsigned long *blue_max)
 {
 *red_max = (n * 30) / 100;
-*green_max = (n * 59) / 100; 
-*blue_max = (n * 11) / 100; 
+*green_max = (n * 59) / 100;
+*blue_max = (n * 11) / 100;
 *green_max += ((n - 1) - (*red_max + *green_max + *blue_max));
 }
 
 //
 /* Determine an appropriate color allocation for the RGB_DEFAULT_MAP.
  * If a map has less than a minimum number of definable entries, we do not
- * produce an allocation for an RGB_DEFAULT_MAP.  
+ * produce an allocation for an RGB_DEFAULT_MAP.
  *
  * For 16 planes, the default colormap will have 27 each RGB; for 12 planes,
  * 12 each.  For 8 planes, let n = the number of colormap entries, which may
@@ -183,7 +183,7 @@ default_allocation(XVisualInfo *vinfo, u
 	ngrays = 12;
 	gray_allocation(ngrays, red, green, blue);
 	break;
-	
+
   default:
 	return 0;
 }
@@ -207,7 +207,7 @@ default_allocation(XVisualInfo *vinfo, u
  * Which, on a GPX, allows for 252 entries in the best map, out of 254
  * defineable colormap entries.
  */
- 
+
 static void
 best_allocation(XVisualInfo *vinfo, unsigned long *red, unsigned long *green,
 		unsigned long *blue)
@@ -228,7 +228,7 @@ best_allocation(XVisualInfo *vinfo, unsi
 else
 {
 	register int bits, n;
-	
+
 	/* Determine n such that n is the least integral power of 2 which is
 	 * greater than or equal to the number of entries in the colormap.
  */
@@ -239,11 +239,11 @@ best_allocation(XVisualInfo *vinfo, unsi
 	n = n  1;
 	bits++;
 	}
-	
+
 	/* If the number of entries in the colormap is a power of 2, determine
 	 * the allocation by dealing the bits, first to green, then red, then
 	 * blue.  If not, find the maximum integral red, green, and blue values
-	 * which, when multiplied together, do not exceed the number of 
+	 * which, when multiplied together, do not exceed the number of
 
 	 * colormap entries.
 	 */
@@ -260,7 +260,7 @@ best_allocation(XVisualInfo *vinfo, unsi
 	else
 	{
 	*red = icbrt_with_bits(vinfo-colormap_size, bits);
-	*blue = *red;	
+	*blue = *red;
 	*green = (vinfo-colormap_size / ((*red) * (*blue)));
 	}
 	(*red)--;



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 01:19:21 UTC 2013

Removed Files:
xsrc/external/mit/libXpm/dist/cxpm: cxpm.man
xsrc/external/mit/libXpm/dist/sxpm: sxpm.man

Log Message:
merge libXpm 3.5.10


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r0 xsrc/external/mit/libXpm/dist/cxpm/cxpm.man
cvs rdiff -u -r1.1.1.2 -r0 xsrc/external/mit/libXpm/dist/sxpm/sxpm.man

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



CVS commit: xsrc/external/mit/libXtst/dist/man

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 01:19:45 UTC 2013

Modified Files:
xsrc/external/mit/libXtst/dist/man: XTestQueryExtension.man

Log Message:
merge libXtst 1.2.1


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 \
xsrc/external/mit/libXtst/dist/man/XTestQueryExtension.man

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/libXtst/dist/man/XTestQueryExtension.man
diff -u xsrc/external/mit/libXtst/dist/man/XTestQueryExtension.man:1.3 xsrc/external/mit/libXtst/dist/man/XTestQueryExtension.man:1.4
--- xsrc/external/mit/libXtst/dist/man/XTestQueryExtension.man:1.3	Sun Nov 21 05:52:59 2010
+++ xsrc/external/mit/libXtst/dist/man/XTestQueryExtension.man	Fri May 31 01:19:45 2013
@@ -1,152 +1,216 @@
-.\ ** You probably do not want to edit this file directly **
-.\ It was generated using the DocBook XSL Stylesheets (version 1.69.1).
-.\ Instead of manually editing it, you probably should edit the DocBook XML
-.\ source for it and then use the DocBook XSL Stylesheets to regenerate it.
-.TH XTEST __libmansuffix__ 6 June 2007 __xorgversion__ XTST FUNCTIONS
+'\ t
+.\ Title: XTest
+.\Author: Kieron Drake
+.\ Generator: DocBook XSL Stylesheets v1.76.1 http://docbook.sf.net/
+.\  Date: pubdate6 June 2007/pubdate
+.\Manual: XTST FUNCTIONS
+.\Source: __xorgversion__
+.\  Language: English
+.\
+.TH XTEST __libmansuffix__ pubdate6 June 2007/pubdate __xorgversion__ XTST FUNCTIONS
+.\ -
+.\ * Define some portability stuff
+.\ -
+.\ ~
+.\ http://bugs.debian.org/507673
+.\ http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
+.\ ~
+.ie \n(.g .ds Aq \(aq
+.el   .ds Aq '
+.\ -
+.\ * set default formatting
+.\ -
 .\ disable hyphenation
 .nh
 .\ disable justification (adjust text to left margin only)
 .ad l
+.\ -
+.\ * MAIN CONTENT STARTS HERE *
+.\ -
 .SH NAME
 XTestQueryExtension, XTestCompareCursorWithWindow, XTestCompareCurrentCursorWithWindow, XTestFakeKeyEvent, XTestFakeButtonEvent, XTestFakeMotionEvent, XTestFakeRelativeMotionEvent, XTestGrabControl, XTestSetGContextOfGC, XTestSetVisualIDOfVisual, XTestDiscard \- XTest extension functions
 .SH SYNOPSIS
-.PP
-\fB
-cc [ flag ... ] file ... \-lXtst  [ library ... ]
-\fR
-.PP
-\fB
-#include X11/extensions/XTest.h
-\fR
-.HP 25
-\fB\fBBool\fR\ XTestQueryExtension\fR\fB(\fR\fB\fIdisplay\fR\fR\fB, \fR\fB\fIevent_base_return\fR\fR\fB, \fR\fB\fIerror_base_return\fR\fR\fB, \fR\fB\fImajor_version_return\fR\fR\fB, \fR\fB\fIminor_version_return\fR\fR\fB);\fR
-.PP
-\fB
+.sp
+.ft B
+.nf
+cc [ flag \.\.\. ] file \.\.\. \-lXtst  [ library \.\.\. ]
+.fi
+.ft
+.sp
+.ft B
+.nf
+#include X11/extensions/XTest\.h
+.fi
+.ft
+.HP \w'Bool\ XTestQueryExtension('u
+.BI Bool XTestQueryExtension( display ,  event_base_return ,  error_base_return ,  major_version_return ,  minor_version_return );
+.sp
+.ft B
+.nf
  Display *display;
  int *event_base_return;
  int *error_base_return;
  int *major_version_return;
  int *minor_version_return;
-\fR
-.HP 34
-\fB\fBBool\fR\ XTestCompareCursorWithWindow\fR\fB(\fR\fB\fIdisplay\fR\fR\fB, \fR\fB\fIwindow\fR\fR\fB, \fR\fB\fIcursor\fR\fR\fB);\fR
-.PP
-\fB
+.fi
+.ft
+.HP \w'Bool\ XTestCompareCursorWithWindow('u
+.BI Bool XTestCompareCursorWithWindow( display ,  window ,  cursor );
+.sp
+.ft B
+.nf
  Display *display;
  Window window;
  Cursor cursor;
-\fR
-.HP 41
-\fB\fBBool\fR\ XTestCompareCurrentCursorWithWindow\fR\fB(\fR\fB\fIdisplay\fR\fR\fB, \fR\fB\fIwindow\fR\fR\fB);\fR
-.PP
-\fB
+.fi
+.ft
+.HP \w'Bool\ XTestCompareCurrentCursorWithWindow('u
+.BI Bool XTestCompareCurrentCursorWithWindow( display ,  window );
+.sp
+.ft B
+.nf
  Display *display;
  Window window;
-\fR
-.HP 22
-\fBint\ \fBXTestFakeKeyEvent\fR\fR\fB(\fR\fB\fIdisplay\fR\fR\fB, \fR\fB\fIkeycode\fR\fR\fB, \fR\fB\fIis_press\fR\fR\fB, \fR\fB\fIdelay\fR\fR\fB);\fR
-.PP
-\fB
+.fi
+.ft
+.HP \w'int\ XTestFakeKeyEvent('u
+.BI int XTestFakeKeyEvent( display ,  keycode ,  is_press ,  delay );
+.sp
+.ft B
+.nf
  Display *display;
  unsigned int keycode;
  Bool is_press;
  unsigned long delay;
-\fR
-.HP 25
-\fBint\ \fBXTestFakeButtonEvent\fR\fR\fB(\fR\fB\fIdisplay\fR\fR\fB, \fR\fB\fIbutton\fR\fR\fB, \fR\fB\fIis_press\fR\fR\fB, \fR\fB\fIdelay\fR\fR\fB);\fR
-.PP
-\fB
+.fi
+.ft
+.HP \w'int\ XTestFakeButtonEvent('u
+.BI int XTestFakeButtonEvent( display ,  button ,  is_press ,  delay );
+.sp
+.ft B
+.nf
  Display *display;
  

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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 01:19:57 UTC 2013

Removed Files:
xsrc/external/mit/libxkbfile/dist: AUTHORS NEWS

Log Message:
merge libxkbfile 1.0.8


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r0 xsrc/external/mit/libxkbfile/dist/AUTHORS \
xsrc/external/mit/libxkbfile/dist/NEWS

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



CVS commit: xsrc/external/mit

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 01:37:29 UTC 2013

Modified Files:
xsrc/external/mit/libXmu/dist/src: StrToGrav.c
xsrc/external/mit/libXtst/dist/src: XRecord.c XTest.c

Log Message:
fix some const issues.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.3 -r1.2 xsrc/external/mit/libXmu/dist/src/StrToGrav.c
cvs rdiff -u -r1.1.1.4 -r1.2 xsrc/external/mit/libXtst/dist/src/XRecord.c \
xsrc/external/mit/libXtst/dist/src/XTest.c

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/libXmu/dist/src/StrToGrav.c
diff -u xsrc/external/mit/libXmu/dist/src/StrToGrav.c:1.1.1.3 xsrc/external/mit/libXmu/dist/src/StrToGrav.c:1.2
--- xsrc/external/mit/libXmu/dist/src/StrToGrav.c:1.1.1.3	Fri May 31 01:09:00 2013
+++ xsrc/external/mit/libXmu/dist/src/StrToGrav.c	Fri May 31 01:37:29 2013
@@ -106,7 +106,7 @@ Boolean
 XmuCvtGravityToString(Display *dpy, XrmValue *args, Cardinal *num_args,
 		  XrmValue *fromVal, XrmValue *toVal, XtPointer *data)
 {
-  static char *buffer;
+  static const char *buffer;
   Cardinal size;
   struct _namepair *np;
   XtGravity gravity;

Index: xsrc/external/mit/libXtst/dist/src/XRecord.c
diff -u xsrc/external/mit/libXtst/dist/src/XRecord.c:1.1.1.4 xsrc/external/mit/libXtst/dist/src/XRecord.c:1.2
--- xsrc/external/mit/libXtst/dist/src/XRecord.c:1.1.1.4	Fri May 31 01:09:05 2013
+++ xsrc/external/mit/libXtst/dist/src/XRecord.c	Fri May 31 01:37:29 2013
@@ -59,7 +59,7 @@ from The Open Group.
 
 static XExtensionInfo _xrecord_info_data;
 static XExtensionInfo *xrecord_info = _xrecord_info_data;
-static const char *xrecord_extension_name = RECORD_NAME;
+static char *xrecord_extension_name = RECORD_NAME;
 
 #define XRecordCheckExtension(dpy,i,val) \
 XextCheckExtension(dpy, i, xrecord_extension_name, val)
Index: xsrc/external/mit/libXtst/dist/src/XTest.c
diff -u xsrc/external/mit/libXtst/dist/src/XTest.c:1.1.1.4 xsrc/external/mit/libXtst/dist/src/XTest.c:1.2
--- xsrc/external/mit/libXtst/dist/src/XTest.c:1.1.1.4	Fri May 31 01:09:05 2013
+++ xsrc/external/mit/libXtst/dist/src/XTest.c	Fri May 31 01:37:29 2013
@@ -40,7 +40,7 @@ from The Open Group.
 
 static XExtensionInfo _xtest_info_data;
 static XExtensionInfo *xtest_info = _xtest_info_data;
-static const char *xtest_extension_name = XTestExtensionName;
+static char *xtest_extension_name = XTestExtensionName;
 
 #define XTestCheckExtension(dpy,i,val) \
   XextCheckExtension (dpy, i, xtest_extension_name, val)



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

2013-05-30 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Fri May 31 01:41:08 UTC 2013

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

Log Message:
find the relocated cxpm.1 manual.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r1.2 src/external/mit/xorg/bin/cxpm/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/cxpm/Makefile
diff -u src/external/mit/xorg/bin/cxpm/Makefile:1.1.1.1 src/external/mit/xorg/bin/cxpm/Makefile:1.2
--- src/external/mit/xorg/bin/cxpm/Makefile:1.1.1.1	Tue Jul 29 05:01:22 2008
+++ src/external/mit/xorg/bin/cxpm/Makefile	Fri May 31 01:41:08 2013
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.1.1.1 2008/07/29 05:01:22 mrg Exp $
+#	$NetBSD: Makefile,v 1.2 2013/05/31 01:41:08 mrg Exp $
 
 .include bsd.own.mk
 
@@ -11,6 +11,7 @@ LDADD+=	-lXpm -lXt -lSM -lICE -lXext -lX
 DPADD+=	${LIBXPM} ${LIBXT} ${LIBSM} ${LIBICE} ${LIBXEXT} ${LIBX11}
 
 .PATH:	${X11SRCDIR.Xpm}/${PROG}
+.PATH:	${X11SRCDIR.Xpm}/man
 
 .include bsd.x11.mk
 .include bsd.prog.mk



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

2013-05-30 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Fri May 31 01:41:56 UTC 2013

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

Log Message:
find the relocated sxpm.man


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r1.2 src/external/mit/xorg/bin/sxpm/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/sxpm/Makefile
diff -u src/external/mit/xorg/bin/sxpm/Makefile:1.1.1.1 src/external/mit/xorg/bin/sxpm/Makefile:1.2
--- src/external/mit/xorg/bin/sxpm/Makefile:1.1.1.1	Tue Jul 29 05:01:22 2008
+++ src/external/mit/xorg/bin/sxpm/Makefile	Fri May 31 01:41:56 2013
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.1.1.1 2008/07/29 05:01:22 mrg Exp $
+#	$NetBSD: Makefile,v 1.2 2013/05/31 01:41:56 mrg Exp $
 
 .include bsd.own.mk
 
@@ -11,6 +11,7 @@ LDADD+=	-lXpm -lXt -lSM -lICE -lXext -lX
 DPADD+=	${LIBXPM} ${LIBXT} ${LIBSM} ${LIBICE} ${LIBXEXT} ${LIBX11}
 
 .PATH:	${X11SRCDIR.Xpm}/${PROG}
+.PATH:	${X11SRCDIR.Xpm}/man
 
 .include bsd.x11.mk
 .include bsd.prog.mk



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 01:45:48 UTC 2013

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

Log Message:
initial import of xfs-1.1.3

Status:

Vendor Tag: xorg
Release Tags:   xfs-1-1-3

U xsrc/external/mit/xfs/dist/Makefile.in
U xsrc/external/mit/xfs/dist/install-sh
U xsrc/external/mit/xfs/dist/aclocal.m4
U xsrc/external/mit/xfs/dist/Makefile.am
U xsrc/external/mit/xfs/dist/configure.ac
U xsrc/external/mit/xfs/dist/README
U xsrc/external/mit/xfs/dist/INSTALL
U xsrc/external/mit/xfs/dist/ChangeLog
U xsrc/external/mit/xfs/dist/config.sub
N xsrc/external/mit/xfs/dist/devbook.am
U xsrc/external/mit/xfs/dist/config.guess
U xsrc/external/mit/xfs/dist/depcomp
U xsrc/external/mit/xfs/dist/configure
N xsrc/external/mit/xfs/dist/config.h.in
U xsrc/external/mit/xfs/dist/missing
U xsrc/external/mit/xfs/dist/COPYING
U xsrc/external/mit/xfs/dist/doc/xfs-design.xml
U xsrc/external/mit/xfs/dist/doc/Makefile.in
U xsrc/external/mit/xfs/dist/doc/Makefile.am
U xsrc/external/mit/xfs/dist/man/Makefile.in
U xsrc/external/mit/xfs/dist/man/Makefile.am
U xsrc/external/mit/xfs/dist/man/xfs.man
U xsrc/external/mit/xfs/dist/config/Makefile.am
U xsrc/external/mit/xfs/dist/config/config.cpp
U xsrc/external/mit/xfs/dist/config/Makefile.in
U xsrc/external/mit/xfs/dist/m4/ax_define_dir.m4
U xsrc/external/mit/xfs/dist/difs/resource.c
U xsrc/external/mit/xfs/dist/difs/main.c
U xsrc/external/mit/xfs/dist/difs/swapreq.c
U xsrc/external/mit/xfs/dist/difs/swaprep.c
U xsrc/external/mit/xfs/dist/difs/atom.c
U xsrc/external/mit/xfs/dist/difs/difsutils.c
U xsrc/external/mit/xfs/dist/difs/charinfo.c
U xsrc/external/mit/xfs/dist/difs/extensions.c
U xsrc/external/mit/xfs/dist/difs/dispatch.c
U xsrc/external/mit/xfs/dist/difs/fontinfo.c
U xsrc/external/mit/xfs/dist/difs/tables.c
U xsrc/external/mit/xfs/dist/difs/events.c
U xsrc/external/mit/xfs/dist/difs/globals.c
U xsrc/external/mit/xfs/dist/difs/fonts.c
U xsrc/external/mit/xfs/dist/difs/initfonts.c
U xsrc/external/mit/xfs/dist/os/waitfor.c
U xsrc/external/mit/xfs/dist/os/daemon.c
U xsrc/external/mit/xfs/dist/os/xfstrans.c
U xsrc/external/mit/xfs/dist/os/connection.c
U xsrc/external/mit/xfs/dist/os/utils.c
U xsrc/external/mit/xfs/dist/os/osdep.h
U xsrc/external/mit/xfs/dist/os/osglue.c
U xsrc/external/mit/xfs/dist/os/error.c
U xsrc/external/mit/xfs/dist/os/access.c
U xsrc/external/mit/xfs/dist/os/io.c
U xsrc/external/mit/xfs/dist/os/osinit.c
U xsrc/external/mit/xfs/dist/os/config.c
U xsrc/external/mit/xfs/dist/os/configstr.h
U xsrc/external/mit/xfs/dist/include/authstr.h
U xsrc/external/mit/xfs/dist/include/fsresource.h
U xsrc/external/mit/xfs/dist/include/difsfnst.h
U xsrc/external/mit/xfs/dist/include/closestr.h
U xsrc/external/mit/xfs/dist/include/misc.h
U xsrc/external/mit/xfs/dist/include/globals.h
U xsrc/external/mit/xfs/dist/include/assert.h
U xsrc/external/mit/xfs/dist/include/access.h
U xsrc/external/mit/xfs/dist/include/site.h
U xsrc/external/mit/xfs/dist/include/fsevents.h
U xsrc/external/mit/xfs/dist/include/auth.h
U xsrc/external/mit/xfs/dist/include/difsutils.h
U xsrc/external/mit/xfs/dist/include/extentst.h
U xsrc/external/mit/xfs/dist/include/client.h
U xsrc/external/mit/xfs/dist/include/difs.h
U xsrc/external/mit/xfs/dist/include/os.h
U xsrc/external/mit/xfs/dist/include/servermd.h
U xsrc/external/mit/xfs/dist/include/dispatch.h
U xsrc/external/mit/xfs/dist/include/osstruct.h
U xsrc/external/mit/xfs/dist/include/difsfn.h
U xsrc/external/mit/xfs/dist/include/swaprep.h
U xsrc/external/mit/xfs/dist/include/closure.h
U xsrc/external/mit/xfs/dist/include/swapreq.h
U xsrc/external/mit/xfs/dist/include/clientstr.h

No conflicts created by this import



CVS commit: xsrc/external/mit/xfs/include

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 01:49:13 UTC 2013

Added Files:
xsrc/external/mit/xfs/include: config.h
Removed Files:
xsrc/external/mit/xfs/include: xfs-config.h

Log Message:
merge xfs 1.1.3


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 xsrc/external/mit/xfs/include/config.h
cvs rdiff -u -r1.3 -r0 xsrc/external/mit/xfs/include/xfs-config.h

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

Added files:

Index: xsrc/external/mit/xfs/include/config.h
diff -u /dev/null xsrc/external/mit/xfs/include/config.h:1.1
--- /dev/null	Fri May 31 01:49:13 2013
+++ xsrc/external/mit/xfs/include/config.h	Fri May 31 01:49:13 2013
@@ -0,0 +1,133 @@
+/* xfs-config.h.  Generated from xfs-config.h.in by configure.  */
+/* xfs-config.h.in.  Generated from configure.ac by autoheader.  */
+
+/* Define to 1 if `struct sockaddr_in' has a `sin_len' member */
+#define BSD44SOCKETS 1
+
+/* comma-separated list of strings for config file paths when not specified */
+#ifndef DEFAULT_CONFIG_FILE
+#define DEFAULT_CONFIG_FILE /etc/X11/fs/config
+#endif
+
+/* Define to 1 if you have the `daemon' function. */
+#define HAVE_DAEMON 1
+
+/* Define to 1 if you have the inttypes.h header file. */
+#define HAVE_INTTYPES_H 1
+
+/* Define to 1 if you have the `ws2_32' library (-lws2_32). */
+/* #undef HAVE_LIBWS2_32 */
+
+/* Define to 1 if you have the memory.h header file. */
+#define HAVE_MEMORY_H 1
+
+/* Define to 1 if the system has the type `socklen_t'. */
+#define HAVE_SOCKLEN_T 1
+
+/* Define to 1 if you have the stdint.h header file. */
+#define HAVE_STDINT_H 1
+
+/* Define to 1 if you have the stdlib.h header file. */
+#define HAVE_STDLIB_H 1
+
+/* Define to 1 if you have the strings.h header file. */
+#define HAVE_STRINGS_H 1
+
+/* Define to 1 if you have the string.h header file. */
+#define HAVE_STRING_H 1
+
+/* Define to 1 if you have the sys/stat.h header file. */
+#define HAVE_SYS_STAT_H 1
+
+/* Define to 1 if you have the sys/types.h header file. */
+#define HAVE_SYS_TYPES_H 1
+
+/* Define to 1 if you have the unistd.h header file. */
+#define HAVE_UNISTD_H 1
+
+/* Support IPv6 for TCP connections */
+#define IPv6 1
+
+/* Support os-specific local connections */
+/* #undef LOCALCONN */
+
+/* Name of package */
+#define PACKAGE xfs
+
+/* Define to the address where bug reports for this package should be sent. */
+#define PACKAGE_BUGREPORT https://bugs.freedesktop.org/enter_bug.cgi?product=xorg;
+
+/* Define to the full name of this package. */
+#define PACKAGE_NAME xfs
+
+/* Define to the full name and version of this package. */
+#define PACKAGE_STRING xfs 1.1.3
+
+/* Define to the one symbol short name of this package. */
+#define PACKAGE_TARNAME xfs
+
+/* Define to the version of this package. */
+#define PACKAGE_VERSION 1.1.3
+
+/* Major version of this package */
+#define PACKAGE_VERSION_MAJOR 1
+
+/* Minor version of this package */
+#define PACKAGE_VERSION_MINOR 1
+
+/* Patch version of this package */
+#define PACKAGE_VERSION_PATCHLEVEL 3
+
+/* Define as the return type of signal handlers (`int' or `void'). */
+#define RETSIGTYPE void
+
+/* Define to 1 if you have the ANSI C header files. */
+#define STDC_HEADERS 1
+
+/* Support TCP socket connections */
+#define TCPCONN 1
+
+/* Support UNIX socket connections */
+#define UNIXCONN 1
+
+/* Build support for logging via syslog */
+#define USE_SYSLOG 1
+
+/* Version number of package */
+#define VERSION 1.1.3
+
+/* Build support for starting from inetd */
+#define XFS_INETD 1
+
+/* Define to 1 if on AIX 3.
+   System headers sometimes define this.
+   We just want to avoid a redefinition error message.  */
+#ifndef _ALL_SOURCE
+/* # undef _ALL_SOURCE */
+#endif
+
+/* Enable GNU extensions on systems that have them.  */
+#ifndef _GNU_SOURCE
+# define _GNU_SOURCE 1
+#endif
+
+/* Define to 1 if on MINIX. */
+/* #undef _MINIX */
+
+/* Define to 2 if the system does not provide POSIX.1 features except with
+   this defined. */
+/* #undef _POSIX_1_SOURCE */
+
+/* Define to 1 if you need to in order for `stat' and other things to work. */
+/* #undef _POSIX_SOURCE */
+
+/* Enable extensions on Solaris.  */
+#ifndef __EXTENSIONS__
+# define __EXTENSIONS__ 1
+#endif
+#ifndef _POSIX_PTHREAD_SEMANTICS
+# define _POSIX_PTHREAD_SEMANTICS 1
+#endif
+#ifndef _TANDEM_SOURCE
+# define _TANDEM_SOURCE 1
+#endif



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 01:49:26 UTC 2013

Removed Files:
xsrc/external/mit/xfs/dist: xfs-config.h.in xfs.def
xsrc/external/mit/xfs/dist/difs: cache.c
xsrc/external/mit/xfs/dist/include: cache.h cachestr.h
xsrc/external/mit/xfs/dist/os: config.h

Log Message:
merge xfs 1.1.3


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.3 -r0 xsrc/external/mit/xfs/dist/xfs-config.h.in
cvs rdiff -u -r1.1.1.1 -r0 xsrc/external/mit/xfs/dist/xfs.def
cvs rdiff -u -r1.1.1.2 -r0 xsrc/external/mit/xfs/dist/difs/cache.c
cvs rdiff -u -r1.1.1.2 -r0 xsrc/external/mit/xfs/dist/include/cache.h \
xsrc/external/mit/xfs/dist/include/cachestr.h
cvs rdiff -u -r1.1.1.2 -r0 xsrc/external/mit/xfs/dist/os/config.h

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/xfs

2013-05-30 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Fri May 31 01:50:25 UTC 2013

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

Log Message:
remove cache.c from SRCS list for xfs 1.1.3


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/external/mit/xorg/bin/xfs/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/xfs/Makefile
diff -u src/external/mit/xorg/bin/xfs/Makefile:1.8 src/external/mit/xorg/bin/xfs/Makefile:1.9
--- src/external/mit/xorg/bin/xfs/Makefile:1.8	Sun Nov 21 02:33:41 2010
+++ src/external/mit/xorg/bin/xfs/Makefile	Fri May 31 01:50:25 2013
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.8 2010/11/21 02:33:41 mrg Exp $
+#	$NetBSD: Makefile,v 1.9 2013/05/31 01:50:25 mrg Exp $
 
 .include bsd.own.mk
 
@@ -9,7 +9,7 @@ XFSDIR= ${X11SRCDIR.${PROG}}
 .PATH:	${XFSDIR}/man
 
 .PATH:	${XFSDIR}/difs
-SRCS=	atom.c cache.c charinfo.c difsutils.c dispatch.c events.c \
+SRCS=	atom.c charinfo.c difsutils.c dispatch.c events.c \
 	extensions.c fontinfo.c fonts.c globals.c initfonts.c main.c \
 	resource.c swaprep.c swapreq.c tables.c
 



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 05:00:21 UTC 2013

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

Log Message:
initial import of appres-1.0.4

Status:

Vendor Tag: xorg
Release Tags:   appres-1-0-4

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

No conflicts created by this import



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 05:00:23 UTC 2013

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

Log Message:
initial import of bdftopcf-1.0.4

Status:

Vendor Tag: xorg
Release Tags:   bdftopcf-1-0-4

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

No conflicts created by this import



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 05:00:25 UTC 2013

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

Log Message:
initial import of beforelight-1.0.5

Status:

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

U xsrc/external/mit/beforelight/dist/missing
U xsrc/external/mit/beforelight/dist/depcomp
U xsrc/external/mit/beforelight/dist/configure.ac
U xsrc/external/mit/beforelight/dist/Makefile.am
U xsrc/external/mit/beforelight/dist/install-sh
U xsrc/external/mit/beforelight/dist/COPYING
U xsrc/external/mit/beforelight/dist/Makefile.in
U xsrc/external/mit/beforelight/dist/aclocal.m4
U xsrc/external/mit/beforelight/dist/ChangeLog
U xsrc/external/mit/beforelight/dist/README
U xsrc/external/mit/beforelight/dist/config.h.in
U xsrc/external/mit/beforelight/dist/config.guess
U xsrc/external/mit/beforelight/dist/INSTALL
U xsrc/external/mit/beforelight/dist/config.sub
U xsrc/external/mit/beforelight/dist/configure
U xsrc/external/mit/beforelight/dist/b4light.c
N xsrc/external/mit/beforelight/dist/man/beforelight.man
N xsrc/external/mit/beforelight/dist/man/Makefile.in
N xsrc/external/mit/beforelight/dist/man/Makefile.am
U xsrc/external/mit/beforelight/dist/app-defaults/Beforelight

No conflicts created by this import



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 05:00:28 UTC 2013

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

Log Message:
initial import of fslsfonts-1.0.4

Status:

Vendor Tag: xorg
Release Tags:   fslsfonts-1-0-4

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

No conflicts created by this import



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 05:00:26 UTC 2013

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

Log Message:
initial import of editres-1.0.6

Status:

Vendor Tag: xorg
Release Tags:   editres-1-0-6

U xsrc/external/mit/editres/dist/editres.c
U xsrc/external/mit/editres/dist/svpopup.c
U xsrc/external/mit/editres/dist/Makefile.am
U xsrc/external/mit/editres/dist/geometry.c
U xsrc/external/mit/editres/dist/INSTALL
U xsrc/external/mit/editres/dist/comm.c
U xsrc/external/mit/editres/dist/install-sh
U xsrc/external/mit/editres/dist/aclocal.m4
U xsrc/external/mit/editres/dist/utils.c
U xsrc/external/mit/editres/dist/Makefile.in
U xsrc/external/mit/editres/dist/config.guess
U xsrc/external/mit/editres/dist/editresP.h
U xsrc/external/mit/editres/dist/configure
U xsrc/external/mit/editres/dist/actions.c
U xsrc/external/mit/editres/dist/COPYING
U xsrc/external/mit/editres/dist/configure.ac
U xsrc/external/mit/editres/dist/wtree.c
U xsrc/external/mit/editres/dist/setvalues.c
U xsrc/external/mit/editres/dist/AUTHORS
U xsrc/external/mit/editres/dist/ChangeLog
U xsrc/external/mit/editres/dist/config.h.in
U xsrc/external/mit/editres/dist/handler.c
U xsrc/external/mit/editres/dist/README
U xsrc/external/mit/editres/dist/widgets.c
U xsrc/external/mit/editres/dist/missing
U xsrc/external/mit/editres/dist/depcomp
U xsrc/external/mit/editres/dist/config.sub
N xsrc/external/mit/editres/dist/man/Makefile.in
N xsrc/external/mit/editres/dist/man/Makefile.am
N xsrc/external/mit/editres/dist/man/editres.man
U xsrc/external/mit/editres/dist/app-defaults/Editres-color
U xsrc/external/mit/editres/dist/app-defaults/Editres

No conflicts created by this import



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 05:00:30 UTC 2013

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

Log Message:
initial import of fstobdf-1.0.5

Status:

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

U xsrc/external/mit/fstobdf/dist/INSTALL
U xsrc/external/mit/fstobdf/dist/configure.ac
U xsrc/external/mit/fstobdf/dist/Makefile.in
U xsrc/external/mit/fstobdf/dist/aclocal.m4
U xsrc/external/mit/fstobdf/dist/header.c
U xsrc/external/mit/fstobdf/dist/install-sh
U xsrc/external/mit/fstobdf/dist/Makefile.am
C xsrc/external/mit/fstobdf/dist/fstobdf.c
U xsrc/external/mit/fstobdf/dist/config.h.in
U xsrc/external/mit/fstobdf/dist/configure
U xsrc/external/mit/fstobdf/dist/ChangeLog
U xsrc/external/mit/fstobdf/dist/props.c
U xsrc/external/mit/fstobdf/dist/COPYING
U xsrc/external/mit/fstobdf/dist/missing
U xsrc/external/mit/fstobdf/dist/depcomp
U xsrc/external/mit/fstobdf/dist/config.guess
U xsrc/external/mit/fstobdf/dist/fstobdf.h
U xsrc/external/mit/fstobdf/dist/chars.c
U xsrc/external/mit/fstobdf/dist/config.sub
U xsrc/external/mit/fstobdf/dist/README
N xsrc/external/mit/fstobdf/dist/man/fstobdf.man
N xsrc/external/mit/fstobdf/dist/man/Makefile.am
N xsrc/external/mit/fstobdf/dist/man/Makefile.in

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

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



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 05:00:32 UTC 2013

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

Log Message:
initial import of imake-1.0.5

Status:

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

U xsrc/external/mit/imake/dist/mkhtmlindex.sh
U xsrc/external/mit/imake/dist/config.sub
U xsrc/external/mit/imake/dist/revpath.c
U xsrc/external/mit/imake/dist/mergelib.man
U xsrc/external/mit/imake/dist/imake.man
U xsrc/external/mit/imake/dist/xmkmf.cpp
U xsrc/external/mit/imake/dist/mkhtmlindex.pl
U xsrc/external/mit/imake/dist/ccmakedep.man
U xsrc/external/mit/imake/dist/imakemdep.h
U xsrc/external/mit/imake/dist/mkhtmlindex.man
U xsrc/external/mit/imake/dist/Makefile.in
U xsrc/external/mit/imake/dist/cleanlinks
U xsrc/external/mit/imake/dist/makeg.man
U xsrc/external/mit/imake/dist/INSTALL
U xsrc/external/mit/imake/dist/configure.ac
U xsrc/external/mit/imake/dist/Makefile.am
U xsrc/external/mit/imake/dist/makeg
U xsrc/external/mit/imake/dist/config.h.in
U xsrc/external/mit/imake/dist/xmkmf.man
U xsrc/external/mit/imake/dist/README
U xsrc/external/mit/imake/dist/mkdirhier
U xsrc/external/mit/imake/dist/config.guess
U xsrc/external/mit/imake/dist/mergelib.cpp
U xsrc/external/mit/imake/dist/aclocal.m4
U xsrc/external/mit/imake/dist/mdepend.cpp
U xsrc/external/mit/imake/dist/depcomp
U xsrc/external/mit/imake/dist/missing
U xsrc/external/mit/imake/dist/cleanlinks.man
U xsrc/external/mit/imake/dist/install-sh
U xsrc/external/mit/imake/dist/revpath.man
U xsrc/external/mit/imake/dist/mkdirhier.man
U xsrc/external/mit/imake/dist/ChangeLog
U xsrc/external/mit/imake/dist/COPYING
U xsrc/external/mit/imake/dist/configure
U xsrc/external/mit/imake/dist/imake.c

No conflicts created by this import



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 05:00:33 UTC 2013

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

Log Message:
initial import of listres-1.0.3

Status:

Vendor Tag: xorg
Release Tags:   listres-1-0-3

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

No conflicts created by this import



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 05:00:37 UTC 2013

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

Log Message:
initial import of makedepend-1.0.4

Status:

Vendor Tag: xorg
Release Tags:   makedepend-1-0-4

U xsrc/external/mit/makedepend/dist/config.sub
U xsrc/external/mit/makedepend/dist/AUTHORS
U xsrc/external/mit/makedepend/dist/makedepend.man
U xsrc/external/mit/makedepend/dist/Makefile.am
U xsrc/external/mit/makedepend/dist/include.c
U xsrc/external/mit/makedepend/dist/cppsetup.c
U xsrc/external/mit/makedepend/dist/COPYING
U xsrc/external/mit/makedepend/dist/autogen.sh
U xsrc/external/mit/makedepend/dist/missing
U xsrc/external/mit/makedepend/dist/depcomp
U xsrc/external/mit/makedepend/dist/Makefile.in
U xsrc/external/mit/makedepend/dist/configure.ac
U xsrc/external/mit/makedepend/dist/imakemdep.h
U xsrc/external/mit/makedepend/dist/ifparser.c
U xsrc/external/mit/makedepend/dist/config.guess
U xsrc/external/mit/makedepend/dist/install-sh
U xsrc/external/mit/makedepend/dist/main.c
U xsrc/external/mit/makedepend/dist/pr.c
U xsrc/external/mit/makedepend/dist/aclocal.m4
U xsrc/external/mit/makedepend/dist/ifparser.h
U xsrc/external/mit/makedepend/dist/ChangeLog
U xsrc/external/mit/makedepend/dist/configure
U xsrc/external/mit/makedepend/dist/parse.c
N xsrc/external/mit/makedepend/dist/README
U xsrc/external/mit/makedepend/dist/def.h
U xsrc/external/mit/makedepend/dist/makedepend-config.h.in
U xsrc/external/mit/makedepend/dist/tests/28045/makedep.sh
U xsrc/external/mit/makedepend/dist/tests/28045/foo.cpp

No conflicts created by this import



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 05:00:35 UTC 2013

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

Log Message:
initial import of lndir-1.0.3

Status:

Vendor Tag: xorg
Release Tags:   lndir-1-0-3

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

No conflicts created by this import



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 05:00:40 UTC 2013

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

Log Message:
initial import of mkfontscale-1.1.0

Status:

Vendor Tag: xorg
Release Tags:   mkfontscale-1-1-0

U xsrc/external/mit/mkfontscale/dist/mkfontscale.c
U xsrc/external/mit/mkfontscale/dist/Makefile.in
U xsrc/external/mit/mkfontscale/dist/config.guess
U xsrc/external/mit/mkfontscale/dist/Makefile.am
U xsrc/external/mit/mkfontscale/dist/INSTALL
U xsrc/external/mit/mkfontscale/dist/ident.h
U xsrc/external/mit/mkfontscale/dist/config.sub
U xsrc/external/mit/mkfontscale/dist/hash.h
U xsrc/external/mit/mkfontscale/dist/list.h
U xsrc/external/mit/mkfontscale/dist/data.h
U xsrc/external/mit/mkfontscale/dist/configure
C xsrc/external/mit/mkfontscale/dist/ident.c
U xsrc/external/mit/mkfontscale/dist/ChangeLog
U xsrc/external/mit/mkfontscale/dist/COPYING
U xsrc/external/mit/mkfontscale/dist/config.h.in
U xsrc/external/mit/mkfontscale/dist/aclocal.m4
U xsrc/external/mit/mkfontscale/dist/install-sh
U xsrc/external/mit/mkfontscale/dist/README
U xsrc/external/mit/mkfontscale/dist/missing
U xsrc/external/mit/mkfontscale/dist/hash.c
U xsrc/external/mit/mkfontscale/dist/list.c
U xsrc/external/mit/mkfontscale/dist/depcomp
U xsrc/external/mit/mkfontscale/dist/configure.ac
U xsrc/external/mit/mkfontscale/dist/man/mkfontscale.man
U xsrc/external/mit/mkfontscale/dist/man/Makefile.in
U xsrc/external/mit/mkfontscale/dist/man/Makefile.am

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

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



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 05:00:38 UTC 2013

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

Log Message:
initial import of mkfontdir-1.0.7

Status:

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

U xsrc/external/mit/mkfontdir/dist/COPYING
U xsrc/external/mit/mkfontdir/dist/Makefile.am
U xsrc/external/mit/mkfontdir/dist/config.guess
U xsrc/external/mit/mkfontdir/dist/config.sub
U xsrc/external/mit/mkfontdir/dist/INSTALL
U xsrc/external/mit/mkfontdir/dist/ChangeLog
U xsrc/external/mit/mkfontdir/dist/Makefile.in
U xsrc/external/mit/mkfontdir/dist/configure
N xsrc/external/mit/mkfontdir/dist/mkfontdir.in
U xsrc/external/mit/mkfontdir/dist/aclocal.m4
U xsrc/external/mit/mkfontdir/dist/install-sh
U xsrc/external/mit/mkfontdir/dist/missing
U xsrc/external/mit/mkfontdir/dist/README
U xsrc/external/mit/mkfontdir/dist/configure.ac
N xsrc/external/mit/mkfontdir/dist/man/mkfontdir.man
N xsrc/external/mit/mkfontdir/dist/man/Makefile.in
N xsrc/external/mit/mkfontdir/dist/man/Makefile.am

No conflicts created by this import



CVS commit: xsrc/external/mit

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 05:11:36 UTC 2013

Modified Files:
xsrc/external/mit/fstobdf/dist: fstobdf.c
xsrc/external/mit/mkfontscale/dist: ident.c
Removed Files:
xsrc/external/mit/appres/dist: NEWS appres.man autogen.sh compile
xsrc/external/mit/bdftopcf/dist: bdftopcf.man
xsrc/external/mit/beforelight/dist: beforelight.man
xsrc/external/mit/editres/dist: autogen.sh editres.man
xsrc/external/mit/fslsfonts/dist: fslsfonts.man
xsrc/external/mit/fstobdf/dist: fstobdf.man
xsrc/external/mit/listres/dist: listres.man
xsrc/external/mit/mkfontdir/dist: mkfontdir.cpp mkfontdir.man

Log Message:
merge appres 1.0.4, bdftopcf 1.0.4, beforelight 1.0.5, editres 1.0.6,
fslsfonts 1.0.4, fstobdf 1.0.5, listres 1.0.3, and mkfontdir 1.0.7.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r0 xsrc/external/mit/appres/dist/NEWS \
xsrc/external/mit/appres/dist/autogen.sh \
xsrc/external/mit/appres/dist/compile
cvs rdiff -u -r1.1.1.2 -r0 xsrc/external/mit/appres/dist/appres.man
cvs rdiff -u -r1.1.1.2 -r0 xsrc/external/mit/bdftopcf/dist/bdftopcf.man
cvs rdiff -u -r1.1.1.1 -r0 xsrc/external/mit/beforelight/dist/beforelight.man
cvs rdiff -u -r1.1.1.1 -r0 xsrc/external/mit/editres/dist/autogen.sh \
xsrc/external/mit/editres/dist/editres.man
cvs rdiff -u -r1.1.1.2 -r0 xsrc/external/mit/fslsfonts/dist/fslsfonts.man
cvs rdiff -u -r1.2 -r1.3 xsrc/external/mit/fstobdf/dist/fstobdf.c
cvs rdiff -u -r1.1.1.2 -r0 xsrc/external/mit/fstobdf/dist/fstobdf.man
cvs rdiff -u -r1.1.1.1 -r0 xsrc/external/mit/listres/dist/listres.man
cvs rdiff -u -r1.1.1.2 -r0 xsrc/external/mit/mkfontdir/dist/mkfontdir.cpp \
xsrc/external/mit/mkfontdir/dist/mkfontdir.man
cvs rdiff -u -r1.3 -r1.4 xsrc/external/mit/mkfontscale/dist/ident.c

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/fstobdf/dist/fstobdf.c
diff -u xsrc/external/mit/fstobdf/dist/fstobdf.c:1.2 xsrc/external/mit/fstobdf/dist/fstobdf.c:1.3
--- xsrc/external/mit/fstobdf/dist/fstobdf.c:1.2	Thu May 30 23:10:29 2013
+++ xsrc/external/mit/fstobdf/dist/fstobdf.c	Fri May 31 05:11:35 2013
@@ -1,5 +1,5 @@
 /*
- 
+
 Copyright 1990, 1998  The Open Group
 
 Permission to use, copy, modify, distribute, and sell this software and its
@@ -23,7 +23,7 @@ used in advertising or otherwise to prom
 in this Software without prior written authorization from The Open Group.
 
  * Copyright 1990 Network Computing Devices;
- * Portions Copyright 1987 by Digital Equipment Corporation 
+ * Portions Copyright 1987 by Digital Equipment Corporation
  *
  * Permission to use, copy, modify, distribute, and sell this software and
  * its documentation for any purpose is hereby granted without fee, provided
@@ -47,7 +47,9 @@ in this Software without prior written a
 #include	stdlib.h
 #includestring.h
 #include	fstobdf.h
-static void
+
+
+static void _X_NORETURN
 usage(char *progName)
 {
 fprintf(stderr, Usage: %s [-s font server] -fn font name\n,
@@ -55,7 +57,7 @@ usage(char *progName)
 exit(0);
 }
 
-static void 
+static void _X_NORETURN
 Fail(char *progName)
 {
 fprintf(stderr, %s: unable to dump font\n, progName);

Index: xsrc/external/mit/mkfontscale/dist/ident.c
diff -u xsrc/external/mit/mkfontscale/dist/ident.c:1.3 xsrc/external/mit/mkfontscale/dist/ident.c:1.4
--- xsrc/external/mit/mkfontscale/dist/ident.c:1.3	Sun Nov 21 02:19:23 2010
+++ xsrc/external/mit/mkfontscale/dist/ident.c	Fri May 31 05:11:36 2013
@@ -144,8 +144,8 @@ fontFileSeek(fontFile *ff, z_off_t offse
 	break;
 	  default:
 	return -1;
-	} 
-	
+	}
+
 	while (n  BUFSIZ) {
 	if (BZ2_bzread(ff-f.bz2, buf, BUFSIZ) != BUFSIZ)
 		return -1;
@@ -223,7 +223,7 @@ getInt32(fontFile *f, int format)
 }
 }
 
-int 
+int
 bitmapIdentify(const char *filename, char **name)
 {
 fontFile ff;
@@ -272,7 +272,7 @@ pcfIdentify(fontFile *f, char **name)
 rc = fontFileSeek(f, prop_position, SEEK_SET);
 if(rc  0)
 goto fail;
-
+
 format = getLSB32(f);
 if((format  0xFF00) != 0)
 goto fail;
@@ -430,7 +430,7 @@ bdfIdentify(fontFile *f, char **name)
 while(1) {
 if(!eol) {
 rc = bdfskip(f);
-if(rc  0) 
+if(rc  0)
 goto fail;
 }
 k = getKeyword(f, eol);



CVS commit: xsrc/external/mit

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 05:24:01 UTC 2013

Modified Files:
xsrc/external/mit/imake/include: config.h
Added Files:
xsrc/external/mit/bdftopcf/include: config.h

Log Message:
merge bdftopcf 1.0.4 and imake 1.0.5 configure output.


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 xsrc/external/mit/bdftopcf/include/config.h
cvs rdiff -u -r1.2 -r1.3 xsrc/external/mit/imake/include/config.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/imake/include/config.h
diff -u xsrc/external/mit/imake/include/config.h:1.2 xsrc/external/mit/imake/include/config.h:1.3
--- xsrc/external/mit/imake/include/config.h:1.2	Sun Nov 21 06:40:43 2010
+++ xsrc/external/mit/imake/include/config.h	Fri May 31 05:24:01 2013
@@ -41,7 +41,7 @@
 #define PACKAGE_NAME imake
 
 /* Define to the full name and version of this package. */
-#define PACKAGE_STRING imake 1.0.4
+#define PACKAGE_STRING imake 1.0.5
 
 /* Define to the one symbol short name of this package. */
 #define PACKAGE_TARNAME imake
@@ -50,7 +50,7 @@
 #define PACKAGE_URL 
 
 /* Define to the version of this package. */
-#define PACKAGE_VERSION 1.0.4
+#define PACKAGE_VERSION 1.0.5
 
 /* Major version of this package */
 #define PACKAGE_VERSION_MAJOR 1
@@ -59,10 +59,10 @@
 #define PACKAGE_VERSION_MINOR 0
 
 /* Patch version of this package */
-#define PACKAGE_VERSION_PATCHLEVEL 4
+#define PACKAGE_VERSION_PATCHLEVEL 5
 
 /* Define to 1 if you have the ANSI C header files. */
 #define STDC_HEADERS 1
 
 /* Version number of package */
-#define VERSION 1.0.4
+#define VERSION 1.0.5

Added files:

Index: xsrc/external/mit/bdftopcf/include/config.h
diff -u /dev/null xsrc/external/mit/bdftopcf/include/config.h:1.1
--- /dev/null	Fri May 31 05:24:01 2013
+++ xsrc/external/mit/bdftopcf/include/config.h	Fri May 31 05:24:01 2013
@@ -0,0 +1,65 @@
+/* config.h.  Generated from config.h.in by configure.  */
+/* config.h.in.  Generated from configure.ac by autoheader.  */
+
+/* Define to 1 if you have the inttypes.h header file. */
+#define HAVE_INTTYPES_H 1
+
+/* Define to 1 if you have the memory.h header file. */
+#define HAVE_MEMORY_H 1
+
+/* Define to 1 if you have the stdint.h header file. */
+#define HAVE_STDINT_H 1
+
+/* Define to 1 if you have the stdlib.h header file. */
+#define HAVE_STDLIB_H 1
+
+/* Define to 1 if you have the strings.h header file. */
+#define HAVE_STRINGS_H 1
+
+/* Define to 1 if you have the string.h header file. */
+#define HAVE_STRING_H 1
+
+/* Define to 1 if you have the sys/stat.h header file. */
+#define HAVE_SYS_STAT_H 1
+
+/* Define to 1 if you have the sys/types.h header file. */
+#define HAVE_SYS_TYPES_H 1
+
+/* Define to 1 if you have the unistd.h header file. */
+#define HAVE_UNISTD_H 1
+
+/* Name of package */
+#define PACKAGE bdftopcf
+
+/* Define to the address where bug reports for this package should be sent. */
+#define PACKAGE_BUGREPORT https://bugs.freedesktop.org/enter_bug.cgi?product=xorg;
+
+/* Define to the full name of this package. */
+#define PACKAGE_NAME bdftopcf
+
+/* Define to the full name and version of this package. */
+#define PACKAGE_STRING bdftopcf 1.0.4
+
+/* Define to the one symbol short name of this package. */
+#define PACKAGE_TARNAME bdftopcf
+
+/* Define to the home page for this package. */
+#define PACKAGE_URL 
+
+/* Define to the version of this package. */
+#define PACKAGE_VERSION 1.0.4
+
+/* Major version of this package */
+#define PACKAGE_VERSION_MAJOR 1
+
+/* Minor version of this package */
+#define PACKAGE_VERSION_MINOR 0
+
+/* Patch version of this package */
+#define PACKAGE_VERSION_PATCHLEVEL 4
+
+/* Define to 1 if you have the ANSI C header files. */
+#define STDC_HEADERS 1
+
+/* Version number of package */
+#define VERSION 1.0.4



CVS commit: src/external/mit/xorg

2013-05-30 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Fri May 31 05:24:50 UTC 2013

Modified Files:
src/external/mit/xorg/bin/appres: Makefile
src/external/mit/xorg/bin/bdftopcf: Makefile
src/external/mit/xorg/bin/beforelight: Makefile
src/external/mit/xorg/bin/editres: Makefile
src/external/mit/xorg/bin/fslsfonts: Makefile
src/external/mit/xorg/bin/fstobdf: Makefile
src/external/mit/xorg/bin/listres: Makefile
src/external/mit/xorg/bin/mkfontdir: Makefile
src/external/mit/xorg/tools/bdftopcf: Makefile

Log Message:
handle moved manual pages, and tools build of bdftopcf.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r1.2 src/external/mit/xorg/bin/appres/Makefile
cvs rdiff -u -r1.2 -r1.3 src/external/mit/xorg/bin/bdftopcf/Makefile
cvs rdiff -u -r1.2 -r1.3 src/external/mit/xorg/bin/beforelight/Makefile
cvs rdiff -u -r1.2 -r1.3 src/external/mit/xorg/bin/editres/Makefile
cvs rdiff -u -r1.1.1.1 -r1.2 src/external/mit/xorg/bin/fslsfonts/Makefile
cvs rdiff -u -r1.1.1.1 -r1.2 src/external/mit/xorg/bin/fstobdf/Makefile
cvs rdiff -u -r1.1.1.1 -r1.2 src/external/mit/xorg/bin/listres/Makefile
cvs rdiff -u -r1.1.1.1 -r1.2 src/external/mit/xorg/bin/mkfontdir/Makefile
cvs rdiff -u -r1.5 -r1.6 src/external/mit/xorg/tools/bdftopcf/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/appres/Makefile
diff -u src/external/mit/xorg/bin/appres/Makefile:1.1.1.1 src/external/mit/xorg/bin/appres/Makefile:1.2
--- src/external/mit/xorg/bin/appres/Makefile:1.1.1.1	Tue Jul 29 05:01:22 2008
+++ src/external/mit/xorg/bin/appres/Makefile	Fri May 31 05:24:49 2013
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.1.1.1 2008/07/29 05:01:22 mrg Exp $
+#	$NetBSD: Makefile,v 1.2 2013/05/31 05:24:49 mrg Exp $
 
 .include bsd.own.mk
 
@@ -7,7 +7,8 @@ PROG=	appres
 LDADD+=	-lXt -lSM -lICE -lXext -lX11 -lXdmcp -lXau
 DPADD+=	${LIBXT} ${LIBSM} ${LIBICE} ${LIBXEXT} ${LIBX11} ${LIBXDMCP} ${LIBXAU}
 
-.PATH:	${X11SRCDIR.appres}
+.PATH:	${X11SRCDIR.${PROG}}
+.PATH:	${X11SRCDIR.${PROG}}/man
 
 .include bsd.x11.mk
 .include bsd.prog.mk

Index: src/external/mit/xorg/bin/bdftopcf/Makefile
diff -u src/external/mit/xorg/bin/bdftopcf/Makefile:1.2 src/external/mit/xorg/bin/bdftopcf/Makefile:1.3
--- src/external/mit/xorg/bin/bdftopcf/Makefile:1.2	Sat Jul 23 23:42:02 2011
+++ src/external/mit/xorg/bin/bdftopcf/Makefile	Fri May 31 05:24:49 2013
@@ -1,13 +1,16 @@
-#	$NetBSD: Makefile,v 1.2 2011/07/23 23:42:02 mrg Exp $
+#	$NetBSD: Makefile,v 1.3 2013/05/31 05:24:49 mrg Exp $
 
 .include bsd.own.mk
 
 PROG=	bdftopcf
 
+CPPFLAGS+=	-I${X11SRCDIR.${PROG}}/../include -DHAVE_CONFIG_H
+
 LDADD+=	-lXfont -lfontenc -lfreetype -lm -lz -lbz2
 DPADD+=	${LIBXFONT} ${LIBFONTENC} ${LIBFREETYPE} ${LIBM} ${LIBZ} ${LIBBZ2}
 
 .PATH:	${X11SRCDIR.${PROG}}
+.PATH:	${X11SRCDIR.${PROG}}/man
 
 .include bsd.x11.mk
 .include bsd.prog.mk

Index: src/external/mit/xorg/bin/beforelight/Makefile
diff -u src/external/mit/xorg/bin/beforelight/Makefile:1.2 src/external/mit/xorg/bin/beforelight/Makefile:1.3
--- src/external/mit/xorg/bin/beforelight/Makefile:1.2	Sun Nov 21 02:33:39 2010
+++ src/external/mit/xorg/bin/beforelight/Makefile	Fri May 31 05:24:49 2013
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.2 2010/11/21 02:33:39 mrg Exp $
+#	$NetBSD: Makefile,v 1.3 2013/05/31 05:24:49 mrg Exp $
 
 .include bsd.own.mk
 
@@ -12,6 +12,7 @@ DPADD+=	${LIBXSS} ${LIBXAW} ${LIBXMU} ${
 	${LIBXPM} ${LIBXEXT} ${LIBX11}
 
 .PATH:	${X11SRCDIR.beforelight} ${X11SRCDIR.beforelight}/app-defaults
+.PATH:	${X11SRCDIR.${PROG}}/man
 
 .include bsd.x11.mk
 .include bsd.prog.mk

Index: src/external/mit/xorg/bin/editres/Makefile
diff -u src/external/mit/xorg/bin/editres/Makefile:1.2 src/external/mit/xorg/bin/editres/Makefile:1.3
--- src/external/mit/xorg/bin/editres/Makefile:1.2	Thu Aug 11 23:15:35 2011
+++ src/external/mit/xorg/bin/editres/Makefile	Fri May 31 05:24:49 2013
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.2 2011/08/11 23:15:35 joerg Exp $
+#	$NetBSD: Makefile,v 1.3 2013/05/31 05:24:49 mrg Exp $
 
 .include bsd.own.mk
 
@@ -13,6 +13,7 @@ DPADD+=	${LIBXAW} ${LIBXMU} ${LIBXT} ${L
 	${LIBXPM} ${LIBXEXT} ${LIBX11}
 
 .PATH:	${X11SRCDIR.${PROG}}
+.PATH:	${X11SRCDIR.${PROG}}/man
 
 CWARNFLAGS.clang+=	-Wno-format
 

Index: src/external/mit/xorg/bin/fslsfonts/Makefile
diff -u src/external/mit/xorg/bin/fslsfonts/Makefile:1.1.1.1 src/external/mit/xorg/bin/fslsfonts/Makefile:1.2
--- src/external/mit/xorg/bin/fslsfonts/Makefile:1.1.1.1	Tue Jul 29 05:01:22 2008
+++ src/external/mit/xorg/bin/fslsfonts/Makefile	Fri May 31 05:24:49 2013
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.1.1.1 2008/07/29 05:01:22 mrg Exp $
+#	$NetBSD: Makefile,v 1.2 2013/05/31 05:24:49 mrg Exp $
 
 .include bsd.own.mk
 
@@ -8,6 +8,7 @@ LDADD+=	-lFS
 DPADD+=	${LIBFS}
 
 .PATH:	${X11SRCDIR.${PROG}}
+.PATH:	${X11SRCDIR.${PROG}}/man
 
 .include bsd.x11.mk
 .include 

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

2013-05-30 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Fri May 31 05:41:26 UTC 2013

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

Log Message:
add -Wno-error to work around some const issues.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/external/mit/xorg/bin/imake/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/imake/Makefile
diff -u src/external/mit/xorg/bin/imake/Makefile:1.3 src/external/mit/xorg/bin/imake/Makefile:1.4
--- src/external/mit/xorg/bin/imake/Makefile:1.3	Fri May 21 05:55:24 2010
+++ src/external/mit/xorg/bin/imake/Makefile	Fri May 31 05:41:26 2013
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.3 2010/05/21 05:55:24 mrg Exp $
+#	$NetBSD: Makefile,v 1.4 2013/05/31 05:41:26 mrg Exp $
 
 .include bsd.own.mk
 
@@ -13,5 +13,7 @@ X11EXTRAMANDEFS=-e 's,__cpp__,$(CPP_PROG
 
 .PATH:	${X11SRCDIR.${PROG}}
 
+COPTS.imake.c+=	-Wno-error	# const issues
+
 .include bsd.x11.mk
 .include bsd.prog.mk



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

2013-05-30 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Fri May 31 05:41:50 UTC 2013

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

Log Message:
look for a config.h


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/external/mit/xorg/bin/appres/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/appres/Makefile
diff -u src/external/mit/xorg/bin/appres/Makefile:1.2 src/external/mit/xorg/bin/appres/Makefile:1.3
--- src/external/mit/xorg/bin/appres/Makefile:1.2	Fri May 31 05:24:49 2013
+++ src/external/mit/xorg/bin/appres/Makefile	Fri May 31 05:41:50 2013
@@ -1,9 +1,11 @@
-#	$NetBSD: Makefile,v 1.2 2013/05/31 05:24:49 mrg Exp $
+#	$NetBSD: Makefile,v 1.3 2013/05/31 05:41:50 mrg Exp $
 
 .include bsd.own.mk
 
 PROG=	appres
 
+CPPFLAGS+=	-I${X11SRCDIR.${PROG}}/../include -DHAVE_CONFIG_H
+
 LDADD+=	-lXt -lSM -lICE -lXext -lX11 -lXdmcp -lXau
 DPADD+=	${LIBXT} ${LIBSM} ${LIBICE} ${LIBXEXT} ${LIBX11} ${LIBXDMCP} ${LIBXAU}
 



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

2013-05-30 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Fri May 31 05:42:14 UTC 2013

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

Log Message:
mkfontdir was renamed to a .in using @bindir, instead of CPP.  deal.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/external/mit/xorg/bin/mkfontdir/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/mkfontdir/Makefile
diff -u src/external/mit/xorg/bin/mkfontdir/Makefile:1.2 src/external/mit/xorg/bin/mkfontdir/Makefile:1.3
--- src/external/mit/xorg/bin/mkfontdir/Makefile:1.2	Fri May 31 05:24:49 2013
+++ src/external/mit/xorg/bin/mkfontdir/Makefile	Fri May 31 05:42:14 2013
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.2 2013/05/31 05:24:49 mrg Exp $
+#	$NetBSD: Makefile,v 1.3 2013/05/31 05:42:14 mrg Exp $
 
 .include bsd.own.mk
 
@@ -7,9 +7,10 @@
 
 MAN=	mkfontdir.1
 
-CPPSCRIPTS=	mkfontdir
-CPPSCRIPTFLAGS=	-DBINDIR=${X11BINDIR}
 SCRIPTS=	mkfontdir
 
+mkfontdir: mkfontdir.in
+	${TOOL_SED} -e s#@bindir@#${X11BINDIR}#  ${.ALLSRC}  ${.TARGET}
+
 .include bsd.x11.mk
 .include bsd.prog.mk



CVS commit: xsrc/external/mit/appres/include

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 05:42:22 UTC 2013

Added Files:
xsrc/external/mit/appres/include: config.h

Log Message:
add a config.h


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 xsrc/external/mit/appres/include/config.h

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

Added files:

Index: xsrc/external/mit/appres/include/config.h
diff -u /dev/null xsrc/external/mit/appres/include/config.h:1.1
--- /dev/null	Fri May 31 05:42:22 2013
+++ xsrc/external/mit/appres/include/config.h	Fri May 31 05:42:22 2013
@@ -0,0 +1,65 @@
+/* config.h.  Generated from config.h.in by configure.  */
+/* config.h.in.  Generated from configure.ac by autoheader.  */
+
+/* Define to 1 if you have the inttypes.h header file. */
+#define HAVE_INTTYPES_H 1
+
+/* Define to 1 if you have the memory.h header file. */
+#define HAVE_MEMORY_H 1
+
+/* Define to 1 if you have the stdint.h header file. */
+#define HAVE_STDINT_H 1
+
+/* Define to 1 if you have the stdlib.h header file. */
+#define HAVE_STDLIB_H 1
+
+/* Define to 1 if you have the strings.h header file. */
+#define HAVE_STRINGS_H 1
+
+/* Define to 1 if you have the string.h header file. */
+#define HAVE_STRING_H 1
+
+/* Define to 1 if you have the sys/stat.h header file. */
+#define HAVE_SYS_STAT_H 1
+
+/* Define to 1 if you have the sys/types.h header file. */
+#define HAVE_SYS_TYPES_H 1
+
+/* Define to 1 if you have the unistd.h header file. */
+#define HAVE_UNISTD_H 1
+
+/* Name of package */
+#define PACKAGE appres
+
+/* Define to the address where bug reports for this package should be sent. */
+#define PACKAGE_BUGREPORT https://bugs.freedesktop.org/enter_bug.cgi?product=xorg;
+
+/* Define to the full name of this package. */
+#define PACKAGE_NAME appres
+
+/* Define to the full name and version of this package. */
+#define PACKAGE_STRING appres 1.0.4
+
+/* Define to the one symbol short name of this package. */
+#define PACKAGE_TARNAME appres
+
+/* Define to the home page for this package. */
+#define PACKAGE_URL 
+
+/* Define to the version of this package. */
+#define PACKAGE_VERSION 1.0.4
+
+/* Major version of this package */
+#define PACKAGE_VERSION_MAJOR 1
+
+/* Minor version of this package */
+#define PACKAGE_VERSION_MINOR 0
+
+/* Patch version of this package */
+#define PACKAGE_VERSION_PATCHLEVEL 4
+
+/* Define to 1 if you have the ANSI C header files. */
+#define STDC_HEADERS 1
+
+/* Version number of package */
+#define VERSION 1.0.4



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Fri May 31 05:43:14 UTC 2013

Modified Files:
xsrc/external/mit/mkfontscale/dist: mkfontscale.c

Log Message:
remove a couple of 'const' that aren't OK for the caller.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.6 -r1.2 xsrc/external/mit/mkfontscale/dist/mkfontscale.c

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/mkfontscale/dist/mkfontscale.c
diff -u xsrc/external/mit/mkfontscale/dist/mkfontscale.c:1.1.1.6 xsrc/external/mit/mkfontscale/dist/mkfontscale.c:1.2
--- xsrc/external/mit/mkfontscale/dist/mkfontscale.c:1.1.1.6	Fri May 31 05:00:39 2013
+++ xsrc/external/mit/mkfontscale/dist/mkfontscale.c	Fri May 31 05:43:13 2013
@@ -60,7 +60,7 @@
 #define QUOTE(x)	#x
 #define STRINGIFY(x)	QUOTE(x)
 
-static const char *encodings_array[] =
+static char *encodings_array[] =
 { ascii-0,
   iso8859-1, iso8859-2, iso8859-3, iso8859-4, iso8859-5,
   iso8859-6, iso8859-6.8, iso8859-6.8x, iso8859-6.16,
@@ -79,7 +79,7 @@ static const char *encodings_array[] =
   gb2312.1980-0, gb18030.2000-0, gb18030.2000-1,
   ksc5601.1987-0, ksc5601.1992-3};
 
-static const char *extra_encodings_array[] =
+static char *extra_encodings_array[] =
 { iso10646-1, adobe-fontspecific, microsoft-symbol };
 
 static ListPtr encodings, extra_encodings;



CVS commit: src/sys/dev

2013-05-30 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Thu May 30 08:28:13 UTC 2013

Modified Files:
src/sys/dev: cgd.c

Log Message:
Avoid dereferencing an uninitialized pointer


To generate a diff of this commit:
cvs rdiff -u -r1.80 -r1.81 src/sys/dev/cgd.c

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



CVS commit: src/sys/arch/sparc64/dev

2013-05-30 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Thu May 30 16:01:25 UTC 2013

Modified Files:
src/sys/arch/sparc64/dev: fdc.c

Log Message:
Make it compile again


To generate a diff of this commit:
cvs rdiff -u -r1.37 -r1.38 src/sys/arch/sparc64/dev/fdc.c

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



CVS commit: src/sys/arch/sparc

2013-05-30 Thread Michael Lorenz
Module Name:src
Committed By:   macallan
Date:   Thu May 30 20:08:47 UTC 2013

Modified Files:
src/sys/arch/sparc: Makefile
Added Files:
src/sys/arch/sparc/dev: Makefile

Log Message:
install sxreg.h to /usr/include/sparc/


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/sys/arch/sparc/Makefile
cvs rdiff -u -r0 -r1.1 src/sys/arch/sparc/dev/Makefile

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



CVS commit: src/sys/arch/sparc/dev

2013-05-30 Thread Michael Lorenz
Module Name:src
Committed By:   macallan
Date:   Thu May 30 20:09:23 UTC 2013

Modified Files:
src/sys/arch/sparc/dev: sxreg.h

Log Message:
add SX_SELECT_S instruction


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/sparc/dev/sxreg.h

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

2013-05-30 Thread Michael Lorenz
Module Name:src
Committed By:   macallan
Date:   Thu May 30 20:10:14 UTC 2013

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

Log Message:
add sxreg.h


To generate a diff of this commit:
cvs rdiff -u -r1.78 -r1.79 src/distrib/sets/lists/comp/md.sparc

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



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Thu May 30 20:18:41 UTC 2013

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

Log Message:
initial import of bigreqsproto-1.1.2

Status:

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

U xsrc/external/mit/bigreqsproto/dist/bigreqsproto.pc.in
U xsrc/external/mit/bigreqsproto/dist/Makefile.in
U xsrc/external/mit/bigreqsproto/dist/README
U xsrc/external/mit/bigreqsproto/dist/INSTALL
U xsrc/external/mit/bigreqsproto/dist/Makefile.am
U xsrc/external/mit/bigreqsproto/dist/bigreqsproto.h
U xsrc/external/mit/bigreqsproto/dist/bigreqstr.h
U xsrc/external/mit/bigreqsproto/dist/config.guess
U xsrc/external/mit/bigreqsproto/dist/config.sub
U xsrc/external/mit/bigreqsproto/dist/ChangeLog
U xsrc/external/mit/bigreqsproto/dist/COPYING
U xsrc/external/mit/bigreqsproto/dist/configure.ac
U xsrc/external/mit/bigreqsproto/dist/configure
N xsrc/external/mit/bigreqsproto/dist/docbook.am
U xsrc/external/mit/bigreqsproto/dist/install-sh
U xsrc/external/mit/bigreqsproto/dist/aclocal.m4
U xsrc/external/mit/bigreqsproto/dist/missing
U xsrc/external/mit/bigreqsproto/dist/specs/bigreq.xml
U xsrc/external/mit/bigreqsproto/dist/specs/Makefile.in
U xsrc/external/mit/bigreqsproto/dist/specs/Makefile.am

No conflicts created by this import



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Thu May 30 20:18:44 UTC 2013

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

Log Message:
initial import of inputproto-2.3

Status:

Vendor Tag: xorg
Release Tags:   inputproto-2-3

U xsrc/external/mit/inputproto/dist/Makefile.in
U xsrc/external/mit/inputproto/dist/COPYING
U xsrc/external/mit/inputproto/dist/XI2proto.h
U xsrc/external/mit/inputproto/dist/missing
U xsrc/external/mit/inputproto/dist/XI2.h
U xsrc/external/mit/inputproto/dist/XI.h
U xsrc/external/mit/inputproto/dist/inputproto.pc.in
U xsrc/external/mit/inputproto/dist/ChangeLog
U xsrc/external/mit/inputproto/dist/README
U xsrc/external/mit/inputproto/dist/install-sh
U xsrc/external/mit/inputproto/dist/XIproto.h
U xsrc/external/mit/inputproto/dist/Makefile.am
U xsrc/external/mit/inputproto/dist/config.sub
U xsrc/external/mit/inputproto/dist/configure
U xsrc/external/mit/inputproto/dist/config.guess
U xsrc/external/mit/inputproto/dist/aclocal.m4
U xsrc/external/mit/inputproto/dist/configure.ac
U xsrc/external/mit/inputproto/dist/INSTALL
N xsrc/external/mit/inputproto/dist/specs/XIproto.txt
N xsrc/external/mit/inputproto/dist/specs/Makefile.in
N xsrc/external/mit/inputproto/dist/specs/Makefile.am
N xsrc/external/mit/inputproto/dist/specs/XI2proto.txt

No conflicts created by this import



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Thu May 30 20:18:43 UTC 2013

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

Log Message:
initial import of glproto-1.4.16

Status:

Vendor Tag: xorg
Release Tags:   glproto-1-4-16

U xsrc/external/mit/glproto/dist/glproto.pc.in
U xsrc/external/mit/glproto/dist/install-sh
U xsrc/external/mit/glproto/dist/configure
U xsrc/external/mit/glproto/dist/INSTALL
U xsrc/external/mit/glproto/dist/glxmd.h
U xsrc/external/mit/glproto/dist/README
U xsrc/external/mit/glproto/dist/glxproto.h
U xsrc/external/mit/glproto/dist/glcore.h
U xsrc/external/mit/glproto/dist/Makefile.in
U xsrc/external/mit/glproto/dist/COPYING
U xsrc/external/mit/glproto/dist/glxint.h
U xsrc/external/mit/glproto/dist/Makefile.am
U xsrc/external/mit/glproto/dist/config.sub
U xsrc/external/mit/glproto/dist/ChangeLog
U xsrc/external/mit/glproto/dist/missing
U xsrc/external/mit/glproto/dist/configure.ac
U xsrc/external/mit/glproto/dist/glxtokens.h
U xsrc/external/mit/glproto/dist/config.guess
U xsrc/external/mit/glproto/dist/aclocal.m4

No conflicts created by this import



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Thu May 30 20:18:46 UTC 2013

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

Log Message:
initial import of kbproto-1.0.6

Status:

Vendor Tag: xorg
Release Tags:   kbproto-1-0-6

U xsrc/external/mit/kbproto/dist/ChangeLog
U xsrc/external/mit/kbproto/dist/README
U xsrc/external/mit/kbproto/dist/configure.ac
U xsrc/external/mit/kbproto/dist/XKBstr.h
U xsrc/external/mit/kbproto/dist/configure
U xsrc/external/mit/kbproto/dist/missing
U xsrc/external/mit/kbproto/dist/config.sub
U xsrc/external/mit/kbproto/dist/COPYING
U xsrc/external/mit/kbproto/dist/XKBgeom.h
U xsrc/external/mit/kbproto/dist/XKB.h
N xsrc/external/mit/kbproto/dist/docbook.am
U xsrc/external/mit/kbproto/dist/XKBproto.h
U xsrc/external/mit/kbproto/dist/kbproto.pc.in
U xsrc/external/mit/kbproto/dist/Makefile.am
U xsrc/external/mit/kbproto/dist/XKBsrv.h
U xsrc/external/mit/kbproto/dist/config.guess
U xsrc/external/mit/kbproto/dist/INSTALL
U xsrc/external/mit/kbproto/dist/install-sh
U xsrc/external/mit/kbproto/dist/aclocal.m4
U xsrc/external/mit/kbproto/dist/Makefile.in
N xsrc/external/mit/kbproto/dist/specs/XKBproto-7.svg
N xsrc/external/mit/kbproto/dist/specs/Makefile.am
N xsrc/external/mit/kbproto/dist/specs/ch14.xml
N xsrc/external/mit/kbproto/dist/specs/XKBproto-2.svg
N xsrc/external/mit/kbproto/dist/specs/acknowledgements.xml
N xsrc/external/mit/kbproto/dist/specs/ch13.xml
N xsrc/external/mit/kbproto/dist/specs/XKBproto-9.svg
N xsrc/external/mit/kbproto/dist/specs/ch02.xml
N xsrc/external/mit/kbproto/dist/specs/ch05.xml
N xsrc/external/mit/kbproto/dist/specs/XKBproto-11.svg
N xsrc/external/mit/kbproto/dist/specs/XKBproto-8.svg
N xsrc/external/mit/kbproto/dist/specs/XKBproto-6.svg
N xsrc/external/mit/kbproto/dist/specs/ch12.xml
N xsrc/external/mit/kbproto/dist/specs/appA.xml
N xsrc/external/mit/kbproto/dist/specs/ch15.xml
N xsrc/external/mit/kbproto/dist/specs/XKBproto-1.svg
N xsrc/external/mit/kbproto/dist/specs/Makefile.in
N xsrc/external/mit/kbproto/dist/specs/XKBproto-10.svg
N xsrc/external/mit/kbproto/dist/specs/ch04.xml
N xsrc/external/mit/kbproto/dist/specs/ch03.xml
N xsrc/external/mit/kbproto/dist/specs/xkbproto.xml
N xsrc/external/mit/kbproto/dist/specs/ch07.xml
N xsrc/external/mit/kbproto/dist/specs/ch09.xml
N xsrc/external/mit/kbproto/dist/specs/ch16.xml
N xsrc/external/mit/kbproto/dist/specs/XKBproto-5.svg
N xsrc/external/mit/kbproto/dist/specs/ch11.xml
N xsrc/external/mit/kbproto/dist/specs/appB.xml
N xsrc/external/mit/kbproto/dist/specs/ch08.xml
N xsrc/external/mit/kbproto/dist/specs/ch06.xml
N xsrc/external/mit/kbproto/dist/specs/ch01.xml
N xsrc/external/mit/kbproto/dist/specs/XKBproto-4.svg
N xsrc/external/mit/kbproto/dist/specs/ch10.xml
N xsrc/external/mit/kbproto/dist/specs/appC.xml
N xsrc/external/mit/kbproto/dist/specs/appD.xml
N xsrc/external/mit/kbproto/dist/specs/XKBproto-3.svg

No conflicts created by this import



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Thu May 30 20:18:47 UTC 2013

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

Log Message:
initial import of randrproto-1.4.0

Status:

Vendor Tag: xorg
Release Tags:   randrproto-1-4-0

U xsrc/external/mit/randrproto/dist/randrproto.pc.in
U xsrc/external/mit/randrproto/dist/install-sh
U xsrc/external/mit/randrproto/dist/configure
U xsrc/external/mit/randrproto/dist/INSTALL
U xsrc/external/mit/randrproto/dist/randr.h
U xsrc/external/mit/randrproto/dist/README
C xsrc/external/mit/randrproto/dist/randrproto.h
U xsrc/external/mit/randrproto/dist/randrproto.txt
U xsrc/external/mit/randrproto/dist/COPYING
U xsrc/external/mit/randrproto/dist/Makefile.in
U xsrc/external/mit/randrproto/dist/Makefile.am
U xsrc/external/mit/randrproto/dist/config.sub
U xsrc/external/mit/randrproto/dist/ChangeLog
U xsrc/external/mit/randrproto/dist/missing
U xsrc/external/mit/randrproto/dist/configure.ac
U xsrc/external/mit/randrproto/dist/config.guess
U xsrc/external/mit/randrproto/dist/aclocal.m4

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

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



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Thu May 30 20:18:48 UTC 2013

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

Log Message:
initial import of recordproto-1.14.2

Status:

Vendor Tag: xorg
Release Tags:   recordproto-1-14-2

U xsrc/external/mit/recordproto/dist/recordproto.h
U xsrc/external/mit/recordproto/dist/Makefile.am
U xsrc/external/mit/recordproto/dist/INSTALL
U xsrc/external/mit/recordproto/dist/config.guess
U xsrc/external/mit/recordproto/dist/config.sub
U xsrc/external/mit/recordproto/dist/COPYING
U xsrc/external/mit/recordproto/dist/recordconst.h
U xsrc/external/mit/recordproto/dist/Makefile.in
N xsrc/external/mit/recordproto/dist/docbook.am
U xsrc/external/mit/recordproto/dist/missing
U xsrc/external/mit/recordproto/dist/configure.ac
U xsrc/external/mit/recordproto/dist/README
U xsrc/external/mit/recordproto/dist/recordstr.h
U xsrc/external/mit/recordproto/dist/configure
U xsrc/external/mit/recordproto/dist/recordproto.pc.in
U xsrc/external/mit/recordproto/dist/ChangeLog
U xsrc/external/mit/recordproto/dist/install-sh
U xsrc/external/mit/recordproto/dist/aclocal.m4
U xsrc/external/mit/recordproto/dist/specs/record.xml
U xsrc/external/mit/recordproto/dist/specs/Makefile.in
U xsrc/external/mit/recordproto/dist/specs/Makefile.am

No conflicts created by this import



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Thu May 30 20:18:51 UTC 2013

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

Log Message:
initial import of xcmiscproto-1.2.2

Status:

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

U xsrc/external/mit/xcmiscproto/dist/xcmiscproto.pc.in
U xsrc/external/mit/xcmiscproto/dist/configure
U xsrc/external/mit/xcmiscproto/dist/xcmiscproto.h
U xsrc/external/mit/xcmiscproto/dist/config.sub
U xsrc/external/mit/xcmiscproto/dist/ChangeLog
U xsrc/external/mit/xcmiscproto/dist/xcmiscstr.h
U xsrc/external/mit/xcmiscproto/dist/INSTALL
U xsrc/external/mit/xcmiscproto/dist/README
U xsrc/external/mit/xcmiscproto/dist/config.guess
U xsrc/external/mit/xcmiscproto/dist/configure.ac
U xsrc/external/mit/xcmiscproto/dist/install-sh
U xsrc/external/mit/xcmiscproto/dist/Makefile.in
U xsrc/external/mit/xcmiscproto/dist/missing
U xsrc/external/mit/xcmiscproto/dist/aclocal.m4
U xsrc/external/mit/xcmiscproto/dist/Makefile.am
U xsrc/external/mit/xcmiscproto/dist/COPYING
N xsrc/external/mit/xcmiscproto/dist/docbook.am
U xsrc/external/mit/xcmiscproto/dist/specs/Makefile.am
U xsrc/external/mit/xcmiscproto/dist/specs/Makefile.in
U xsrc/external/mit/xcmiscproto/dist/specs/xc-misc.xml

No conflicts created by this import



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Thu May 30 20:18:50 UTC 2013

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

Log Message:
initial import of scrnsaverproto-1.2.2

Status:

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

U xsrc/external/mit/scrnsaverproto/dist/aclocal.m4
U xsrc/external/mit/scrnsaverproto/dist/INSTALL
U xsrc/external/mit/scrnsaverproto/dist/install-sh
U xsrc/external/mit/scrnsaverproto/dist/saver.h
U xsrc/external/mit/scrnsaverproto/dist/configure
U xsrc/external/mit/scrnsaverproto/dist/README
N xsrc/external/mit/scrnsaverproto/dist/docbook.am
U xsrc/external/mit/scrnsaverproto/dist/ChangeLog
U xsrc/external/mit/scrnsaverproto/dist/config.guess
U xsrc/external/mit/scrnsaverproto/dist/configure.ac
U xsrc/external/mit/scrnsaverproto/dist/saverproto.h
U xsrc/external/mit/scrnsaverproto/dist/Makefile.in
U xsrc/external/mit/scrnsaverproto/dist/config.sub
U xsrc/external/mit/scrnsaverproto/dist/COPYING
U xsrc/external/mit/scrnsaverproto/dist/Makefile.am
U xsrc/external/mit/scrnsaverproto/dist/missing
U xsrc/external/mit/scrnsaverproto/dist/scrnsaverproto.pc.in
U xsrc/external/mit/scrnsaverproto/dist/specs/Makefile.am
U xsrc/external/mit/scrnsaverproto/dist/specs/saver.xml
U xsrc/external/mit/scrnsaverproto/dist/specs/Makefile.in

No conflicts created by this import



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Thu May 30 20:18:53 UTC 2013

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

Log Message:
initial import of xextproto-7.2.1

Status:

Vendor Tag: xorg
Release Tags:   xextproto-7-2-1

U xsrc/external/mit/xextproto/dist/xextproto.pc.in
U xsrc/external/mit/xextproto/dist/cupproto.h
U xsrc/external/mit/xextproto/dist/xtestconst.h
U xsrc/external/mit/xextproto/dist/xtestproto.h
U xsrc/external/mit/xextproto/dist/geproto.h
U xsrc/external/mit/xextproto/dist/shmstr.h
U xsrc/external/mit/xextproto/dist/syncconst.h
U xsrc/external/mit/xextproto/dist/lbx.h
U xsrc/external/mit/xextproto/dist/secur.h
U xsrc/external/mit/xextproto/dist/Makefile.in
U xsrc/external/mit/xextproto/dist/syncproto.h
U xsrc/external/mit/xextproto/dist/dbe.h
U xsrc/external/mit/xextproto/dist/cup.h
U xsrc/external/mit/xextproto/dist/shm.h
U xsrc/external/mit/xextproto/dist/xtestext1proto.h
U xsrc/external/mit/xextproto/dist/Makefile.am
U xsrc/external/mit/xextproto/dist/lbxproto.h
U xsrc/external/mit/xextproto/dist/EVIproto.h
U xsrc/external/mit/xextproto/dist/ge.h
U xsrc/external/mit/xextproto/dist/config.guess
U xsrc/external/mit/xextproto/dist/securproto.h
U xsrc/external/mit/xextproto/dist/INSTALL
U xsrc/external/mit/xextproto/dist/ag.h
U xsrc/external/mit/xextproto/dist/config.sub
U xsrc/external/mit/xextproto/dist/README
U xsrc/external/mit/xextproto/dist/configure
U xsrc/external/mit/xextproto/dist/shmproto.h
U xsrc/external/mit/xextproto/dist/xtestext1const.h
U xsrc/external/mit/xextproto/dist/configure.ac
U xsrc/external/mit/xextproto/dist/missing
U xsrc/external/mit/xextproto/dist/ChangeLog
U xsrc/external/mit/xextproto/dist/dbeproto.h
N xsrc/external/mit/xextproto/dist/docbook.am
U xsrc/external/mit/xextproto/dist/EVI.h
U xsrc/external/mit/xextproto/dist/dpmsproto.h
U xsrc/external/mit/xextproto/dist/install-sh
U xsrc/external/mit/xextproto/dist/dpmsconst.h
U xsrc/external/mit/xextproto/dist/shapestr.h
U xsrc/external/mit/xextproto/dist/aclocal.m4
U xsrc/external/mit/xextproto/dist/COPYING
U xsrc/external/mit/xextproto/dist/multibufconst.h
U xsrc/external/mit/xextproto/dist/shapeproto.h
U xsrc/external/mit/xextproto/dist/multibufproto.h
U xsrc/external/mit/xextproto/dist/shapeconst.h
U xsrc/external/mit/xextproto/dist/agproto.h
U xsrc/external/mit/xextproto/dist/mitmiscproto.h
U xsrc/external/mit/xextproto/dist/mitmiscconst.h
U xsrc/external/mit/xextproto/dist/syncstr.h
U xsrc/external/mit/xextproto/dist/specs/security.xml
U xsrc/external/mit/xextproto/dist/specs/dbe.xml
U xsrc/external/mit/xextproto/dist/specs/sync.xml
U xsrc/external/mit/xextproto/dist/specs/geproto.xml
U xsrc/external/mit/xextproto/dist/specs/shape.xml
U xsrc/external/mit/xextproto/dist/specs/xtest.xml
U xsrc/external/mit/xextproto/dist/specs/multibuf.xml
U xsrc/external/mit/xextproto/dist/specs/dpms.xml
U xsrc/external/mit/xextproto/dist/specs/Makefile.am
U xsrc/external/mit/xextproto/dist/specs/appgrp.xml
U xsrc/external/mit/xextproto/dist/specs/evi.xml
U xsrc/external/mit/xextproto/dist/specs/shm.xml
U xsrc/external/mit/xextproto/dist/specs/lbx.xml
U xsrc/external/mit/xextproto/dist/specs/tog-cup.xml
U xsrc/external/mit/xextproto/dist/specs/Makefile.in
U xsrc/external/mit/xextproto/dist/specs/appendix.xml

No conflicts created by this import



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Thu May 30 20:18:55 UTC 2013

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

Log Message:
initial import of xproto-7.0.24

Status:

Vendor Tag: xorg
Release Tags:   xproto-7-0-24

U xsrc/external/mit/xproto/dist/Xfuncproto.h.in
U xsrc/external/mit/xproto/dist/Makefile.in
U xsrc/external/mit/xproto/dist/docbook.am
U xsrc/external/mit/xproto/dist/COPYING
U xsrc/external/mit/xproto/dist/AUTHORS
U xsrc/external/mit/xproto/dist/config.guess
U xsrc/external/mit/xproto/dist/X.h
U xsrc/external/mit/xproto/dist/ap_keysym.h
U xsrc/external/mit/xproto/dist/HPkeysym.h
U xsrc/external/mit/xproto/dist/ChangeLog
U xsrc/external/mit/xproto/dist/Makefile.am
U xsrc/external/mit/xproto/dist/Xproto.h
U xsrc/external/mit/xproto/dist/README
U xsrc/external/mit/xproto/dist/Xos.h
U xsrc/external/mit/xproto/dist/configure
U xsrc/external/mit/xproto/dist/missing
U xsrc/external/mit/xproto/dist/install-sh
U xsrc/external/mit/xproto/dist/Xthreads.h
U xsrc/external/mit/xproto/dist/Xw32defs.h
U xsrc/external/mit/xproto/dist/aclocal.m4
U xsrc/external/mit/xproto/dist/Xwindows.h
U xsrc/external/mit/xproto/dist/keysym.h
U xsrc/external/mit/xproto/dist/do-not-use-config.h.in
U xsrc/external/mit/xproto/dist/Xos_r.h
U xsrc/external/mit/xproto/dist/Xpoll.h.in
U xsrc/external/mit/xproto/dist/XF86keysym.h
U xsrc/external/mit/xproto/dist/INSTALL
U xsrc/external/mit/xproto/dist/Xfuncs.h
U xsrc/external/mit/xproto/dist/XWDFile.h
U xsrc/external/mit/xproto/dist/Xatom.h
U xsrc/external/mit/xproto/dist/Xarch.h
U xsrc/external/mit/xproto/dist/Xmd.h
U xsrc/external/mit/xproto/dist/DECkeysym.h
U xsrc/external/mit/xproto/dist/Xosdefs.h
U xsrc/external/mit/xproto/dist/Xprotostr.h
U xsrc/external/mit/xproto/dist/Xalloca.h
U xsrc/external/mit/xproto/dist/config.sub
U xsrc/external/mit/xproto/dist/keysymdef.h
U xsrc/external/mit/xproto/dist/configure.ac
U xsrc/external/mit/xproto/dist/Sunkeysym.h
U xsrc/external/mit/xproto/dist/Xdefs.h
U xsrc/external/mit/xproto/dist/xproto.pc.in
U xsrc/external/mit/xproto/dist/Xwinsock.h
U xsrc/external/mit/xproto/dist/specs/keysyms.xml
U xsrc/external/mit/xproto/dist/specs/encoding.xml
U xsrc/external/mit/xproto/dist/specs/Makefile.in
U xsrc/external/mit/xproto/dist/specs/x11protocol.xml
U xsrc/external/mit/xproto/dist/specs/Makefile.am
U xsrc/external/mit/xproto/dist/specs/sect1-9.xml
U xsrc/external/mit/xproto/dist/specs/glossary.xml
U xsrc/external/mit/xproto/dist/specs/SIAddresses/localuser.txt
U xsrc/external/mit/xproto/dist/specs/SIAddresses/Makefile.am
U xsrc/external/mit/xproto/dist/specs/SIAddresses/Makefile.in
U xsrc/external/mit/xproto/dist/specs/SIAddresses/hostname.txt
U xsrc/external/mit/xproto/dist/specs/SIAddresses/README
U xsrc/external/mit/xproto/dist/specs/SIAddresses/IPv6.txt

No conflicts created by this import



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Thu May 30 20:20:23 UTC 2013

Removed Files:
xsrc/external/mit/inputproto/dist: XI2proto.txt XIproto.txt

Log Message:
merge inputproto 2.3.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.2 -r0 xsrc/external/mit/inputproto/dist/XI2proto.txt
cvs rdiff -u -r1.1.1.3 -r0 xsrc/external/mit/inputproto/dist/XIproto.txt

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



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Thu May 30 20:20:39 UTC 2013

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

Log Message:
merge randrproto 1.4.0


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 xsrc/external/mit/randrproto/dist/randrproto.h

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



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Thu May 30 20:23:54 UTC 2013

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

Log Message:
initial import of libFS-1.0.5

Status:

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

U xsrc/external/mit/libFS/dist/config.guess
U xsrc/external/mit/libFS/dist/INSTALL
U xsrc/external/mit/libFS/dist/README
U xsrc/external/mit/libFS/dist/ltmain.sh
U xsrc/external/mit/libFS/dist/config.sub
U xsrc/external/mit/libFS/dist/config.h.in
U xsrc/external/mit/libFS/dist/Makefile.am
U xsrc/external/mit/libFS/dist/COPYING
U xsrc/external/mit/libFS/dist/libfs.pc.in
U xsrc/external/mit/libFS/dist/ChangeLog
U xsrc/external/mit/libFS/dist/missing
U xsrc/external/mit/libFS/dist/configure.ac
U xsrc/external/mit/libFS/dist/Makefile.in
U xsrc/external/mit/libFS/dist/depcomp
U xsrc/external/mit/libFS/dist/install-sh
U xsrc/external/mit/libFS/dist/configure
U xsrc/external/mit/libFS/dist/aclocal.m4
U xsrc/external/mit/libFS/dist/doc/FSlib.txt
U xsrc/external/mit/libFS/dist/src/fs_transport.c
U xsrc/external/mit/libFS/dist/src/FSSynchro.c
U xsrc/external/mit/libFS/dist/src/FSNextEv.c
U xsrc/external/mit/libFS/dist/src/FSErrHndlr.c
U xsrc/external/mit/libFS/dist/src/Makefile.in
U xsrc/external/mit/libFS/dist/src/FSQuExt.c
U xsrc/external/mit/libFS/dist/src/FSMisc.c
U xsrc/external/mit/libFS/dist/src/FSErrDis.c
U xsrc/external/mit/libFS/dist/src/FSListExt.c
U xsrc/external/mit/libFS/dist/src/FSQXInfo.c
U xsrc/external/mit/libFS/dist/src/Makefile.am
U xsrc/external/mit/libFS/dist/src/FSGetCats.c
U xsrc/external/mit/libFS/dist/src/FSSync.c
U xsrc/external/mit/libFS/dist/src/FSQGlyphs.c
U xsrc/external/mit/libFS/dist/src/FSSetCats.c
U xsrc/external/mit/libFS/dist/src/FSOpenFont.c
U xsrc/external/mit/libFS/dist/src/FSlibint.h
U xsrc/external/mit/libFS/dist/src/FSFontInfo.c
U xsrc/external/mit/libFS/dist/src/FSServName.c
U xsrc/external/mit/libFS/dist/src/FSQXExt.c
U xsrc/external/mit/libFS/dist/src/FSConnServ.c
U xsrc/external/mit/libFS/dist/src/FSFlush.c
U xsrc/external/mit/libFS/dist/src/FSListCats.c
U xsrc/external/mit/libFS/dist/src/FSClServ.c
U xsrc/external/mit/libFS/dist/src/FSlibos.h
C xsrc/external/mit/libFS/dist/src/FSlibInt.c
U xsrc/external/mit/libFS/dist/src/FSFtNames.c
U xsrc/external/mit/libFS/dist/src/FSOpenServ.c
U xsrc/external/mit/libFS/dist/src/FSCloseFt.c
U xsrc/external/mit/libFS/dist/include/X11/fonts/FSlib.h
N xsrc/external/mit/libFS/dist/test/FSGetErrorText.c
N xsrc/external/mit/libFS/dist/test/Makefile.am
N xsrc/external/mit/libFS/dist/test/Makefile.in

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

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



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Thu May 30 20:23:56 UTC 2013

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

Log Message:
initial import of libXcursor-1.1.14

Status:

Vendor Tag: xorg
Release Tags:   libXcursor-1-1-14

U xsrc/external/mit/libXcursor/dist/INSTALL
U xsrc/external/mit/libXcursor/dist/ltmain.sh
U xsrc/external/mit/libXcursor/dist/install-sh
U xsrc/external/mit/libXcursor/dist/README
U xsrc/external/mit/libXcursor/dist/aclocal.m4
U xsrc/external/mit/libXcursor/dist/config.h.in
U xsrc/external/mit/libXcursor/dist/xcursor.pc.in
U xsrc/external/mit/libXcursor/dist/configure.ac
U xsrc/external/mit/libXcursor/dist/config.guess
U xsrc/external/mit/libXcursor/dist/ChangeLog
U xsrc/external/mit/libXcursor/dist/Makefile.in
U xsrc/external/mit/libXcursor/dist/configure
U xsrc/external/mit/libXcursor/dist/missing
U xsrc/external/mit/libXcursor/dist/depcomp
U xsrc/external/mit/libXcursor/dist/config.sub
U xsrc/external/mit/libXcursor/dist/COPYING
U xsrc/external/mit/libXcursor/dist/Makefile.am
U xsrc/external/mit/libXcursor/dist/AUTHORS
U xsrc/external/mit/libXcursor/dist/src/display.c
U xsrc/external/mit/libXcursor/dist/src/Makefile.am
U xsrc/external/mit/libXcursor/dist/src/file.c
U xsrc/external/mit/libXcursor/dist/src/xcursorint.h
U xsrc/external/mit/libXcursor/dist/src/Makefile.in
U xsrc/external/mit/libXcursor/dist/src/cursor.c
U xsrc/external/mit/libXcursor/dist/src/library.c
U xsrc/external/mit/libXcursor/dist/src/xlib.c
U xsrc/external/mit/libXcursor/dist/include/X11/Xcursor/Xcursor.h
N xsrc/external/mit/libXcursor/dist/include/X11/Xcursor/Xcursor.h.in
U xsrc/external/mit/libXcursor/dist/man/XcursorLibraryLoadCursor.man
U xsrc/external/mit/libXcursor/dist/man/XcursorImagesDestroy.man
U xsrc/external/mit/libXcursor/dist/man/Makefile.in
U xsrc/external/mit/libXcursor/dist/man/XcursorFilenameSave.man
U xsrc/external/mit/libXcursor/dist/man/XcursorXcFileSave.man
U xsrc/external/mit/libXcursor/dist/man/XcursorCursorsCreate.man
U xsrc/external/mit/libXcursor/dist/man/XcursorFilenameSaveImages.man
U xsrc/external/mit/libXcursor/dist/man/XcursorShapeLoadImages.man
U xsrc/external/mit/libXcursor/dist/man/XcursorSetTheme.man
U xsrc/external/mit/libXcursor/dist/man/XcursorFilenameLoadAllImages.man
U xsrc/external/mit/libXcursor/dist/man/XcursorSetDefaultSize.man
U xsrc/external/mit/libXcursor/dist/man/XcursorGetTheme.man
U xsrc/external/mit/libXcursor/dist/man/Makefile.am
U xsrc/external/mit/libXcursor/dist/man/XcursorImagesCreate.man
U xsrc/external/mit/libXcursor/dist/man/Xcursor.man
U xsrc/external/mit/libXcursor/dist/man/XcursorShapeLoadCursors.man
U xsrc/external/mit/libXcursor/dist/man/XcursorFilenameLoadImages.man
U xsrc/external/mit/libXcursor/dist/man/XcursorLibraryLoadImages.man
U xsrc/external/mit/libXcursor/dist/man/XcursorImageCreate.man
U xsrc/external/mit/libXcursor/dist/man/XcursorShapeLoadCursor.man
U xsrc/external/mit/libXcursor/dist/man/XcursorLibraryLoadImage.man
U xsrc/external/mit/libXcursor/dist/man/XcursorFilenameLoad.man
U xsrc/external/mit/libXcursor/dist/man/XcursorFilenameLoadImage.man
U xsrc/external/mit/libXcursor/dist/man/XcursorXcFileLoad.man
U xsrc/external/mit/libXcursor/dist/man/XcursorXcFileLoadImages.man
U xsrc/external/mit/libXcursor/dist/man/XcursorXcFileLoadAllImages.man
U xsrc/external/mit/libXcursor/dist/man/XcursorLibraryLoadCursors.man
U xsrc/external/mit/libXcursor/dist/man/XcursorImageDestroy.man
U xsrc/external/mit/libXcursor/dist/man/XcursorCursorsDestroy.man
U xsrc/external/mit/libXcursor/dist/man/XcursorSupportsARGB.man
U xsrc/external/mit/libXcursor/dist/man/XcursorXcFileLoadImage.man
U xsrc/external/mit/libXcursor/dist/man/XcursorFilenameLoadCursor.man
U xsrc/external/mit/libXcursor/dist/man/XcursorShapeLoadImage.man
U xsrc/external/mit/libXcursor/dist/man/XcursorGetDefaultSize.man

No conflicts created by this import



CVS commit: xsrc/external/mit/libFS/dist/src

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Thu May 30 20:24:25 UTC 2013

Modified Files:
xsrc/external/mit/libFS/dist/src: FSlibInt.c

Log Message:
merge libFS 1.0.5


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 xsrc/external/mit/libFS/dist/src/FSlibInt.c

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



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

2013-05-30 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Thu May 30 23:09:16 UTC 2013

Modified Files:
xsrc/external/mit/libX11/dist/man: XCreateGC.man
xsrc/external/mit/libX11/dist/modules/lc/gen: lcGenConv.c
xsrc/external/mit/libX11/dist/src: XlibInt.c
xsrc/external/mit/libX11/dist/src/xcms: cmsTrig.c
Removed Files:
xsrc/external/mit/libX11/dist/nls: compose-chart.pl xmlrules.in
xsrc/external/mit/libX11/dist/nls/ja.S90: Compose.pre XI18N_OBJS
XLC_LOCALE.pre
xsrc/external/mit/libX11/dist/nls/ja.U90: Compose.pre XI18N_OBJS
XLC_LOCALE.pre

Log Message:
merge libX11 1.5.99.902.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 xsrc/external/mit/libX11/dist/man/XCreateGC.man
cvs rdiff -u -r1.4 -r1.5 \
xsrc/external/mit/libX11/dist/modules/lc/gen/lcGenConv.c
cvs rdiff -u -r1.1.1.2 -r0 xsrc/external/mit/libX11/dist/nls/compose-chart.pl
cvs rdiff -u -r1.1.1.1 -r0 xsrc/external/mit/libX11/dist/nls/xmlrules.in
cvs rdiff -u -r1.1.1.1 -r0 \
xsrc/external/mit/libX11/dist/nls/ja.S90/Compose.pre \
xsrc/external/mit/libX11/dist/nls/ja.S90/XI18N_OBJS
cvs rdiff -u -r1.1.1.2 -r0 \
xsrc/external/mit/libX11/dist/nls/ja.S90/XLC_LOCALE.pre
cvs rdiff -u -r1.1.1.1 -r0 \
xsrc/external/mit/libX11/dist/nls/ja.U90/Compose.pre \
xsrc/external/mit/libX11/dist/nls/ja.U90/XI18N_OBJS
cvs rdiff -u -r1.1.1.2 -r0 \
xsrc/external/mit/libX11/dist/nls/ja.U90/XLC_LOCALE.pre
cvs rdiff -u -r1.4 -r1.5 xsrc/external/mit/libX11/dist/src/XlibInt.c
cvs rdiff -u -r1.2 -r1.3 xsrc/external/mit/libX11/dist/src/xcms/cmsTrig.c

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



  1   2   >