CVS commit: xsrc/external/mit/xfs

2018-03-11 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Mar 11 10:08:03 UTC 2018

Modified Files:
xsrc/external/mit/xfs/dist/os: connection.c io.c xfstrans.c
xsrc/external/mit/xfs/include: config.h

Log Message:
merge xfs 1.2.0.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 xsrc/external/mit/xfs/dist/os/connection.c \
xsrc/external/mit/xfs/dist/os/io.c \
xsrc/external/mit/xfs/dist/os/xfstrans.c
cvs rdiff -u -r1.3 -r1.4 xsrc/external/mit/xfs/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/xfs/dist/os/connection.c
diff -u xsrc/external/mit/xfs/dist/os/connection.c:1.2 xsrc/external/mit/xfs/dist/os/connection.c:1.3
--- xsrc/external/mit/xfs/dist/os/connection.c:1.2	Fri Jul 17 17:38:55 2015
+++ xsrc/external/mit/xfs/dist/os/connection.c	Sun Mar 11 10:08:03 2018
@@ -69,6 +69,7 @@ in this Software without prior written a
 
 #include	"config.h"
 
+/* include Xpoll.h early for possible FD_SETSIZE re-definition */
 #include	"X11/Xpoll.h"
 #include	
 #include	
Index: xsrc/external/mit/xfs/dist/os/io.c
diff -u xsrc/external/mit/xfs/dist/os/io.c:1.2 xsrc/external/mit/xfs/dist/os/io.c:1.3
--- xsrc/external/mit/xfs/dist/os/io.c:1.2	Sat Jul 18 06:03:20 2015
+++ xsrc/external/mit/xfs/dist/os/io.c	Sun Mar 11 10:08:03 2018
@@ -50,6 +50,9 @@ in this Software without prior written a
 
 #include	"config.h"
 
+/* include Xpoll.h early for possible FD_SETSIZE re-definition */
+#include	"X11/Xpoll.h"
+
 #include	
 #include	
 #include	
Index: xsrc/external/mit/xfs/dist/os/xfstrans.c
diff -u xsrc/external/mit/xfs/dist/os/xfstrans.c:1.2 xsrc/external/mit/xfs/dist/os/xfstrans.c:1.3
--- xsrc/external/mit/xfs/dist/os/xfstrans.c:1.2	Wed Sep 21 22:11:16 2016
+++ xsrc/external/mit/xfs/dist/os/xfstrans.c	Sun Mar 11 10:08:03 2018
@@ -30,12 +30,18 @@
 
 #ifdef XFS_INETD
 /* xfs special handling for listen socket passed from inetd */
-#include "misc.h"
+
+/* XXX duplicated from misc.h */
+typedef struct {		/* when cloning, need old transport info */
+int trans_id;
+int fd;
+int portnum;
+} OldListenRec;
 
 OldListenRec *
 TRANS(GetInetdListenInfo) (int fd)
 {
-char *port = "0";
+const char *port = "0";
 XtransConnInfo inetdCI;
 OldListenRec *old_listen;
 int portnum;
@@ -79,10 +85,7 @@ TRANS(GetInetdListenInfo) (int fd)
 #endif
 
 if (listen (fd, BACKLOG) < 0)
-{
-	FatalError("listen() failed on inetd socket: %s\n",
-		   strerror(errno));
-}
+return NULL;
 
 /* Pass the inetd socket back through the connection setup code
  * the same way as a cloned listening port

Index: xsrc/external/mit/xfs/include/config.h
diff -u xsrc/external/mit/xfs/include/config.h:1.3 xsrc/external/mit/xfs/include/config.h:1.4
--- xsrc/external/mit/xfs/include/config.h:1.3	Thu Sep 22 15:50:17 2016
+++ xsrc/external/mit/xfs/include/config.h	Sun Mar 11 10:08:03 2018
@@ -61,7 +61,7 @@
 #define PACKAGE_NAME "xfs"
 
 /* Define to the full name and version of this package. */
-#define PACKAGE_STRING "xfs 1.1.4"
+#define PACKAGE_STRING "xfs 1.2.0"
 
 /* Define to the one symbol short name of this package. */
 #define PACKAGE_TARNAME "xfs"
@@ -70,16 +70,16 @@
 #define PACKAGE_URL ""
 
 /* Define to the version of this package. */
-#define PACKAGE_VERSION "1.1.4"
+#define PACKAGE_VERSION "1.2.0"
 
 /* Major version of this package */
 #define PACKAGE_VERSION_MAJOR 1
 
 /* Minor version of this package */
-#define PACKAGE_VERSION_MINOR 1
+#define PACKAGE_VERSION_MINOR 2
 
 /* Patch version of this package */
-#define PACKAGE_VERSION_PATCHLEVEL 4
+#define PACKAGE_VERSION_PATCHLEVEL 0
 
 /* Define to 1 if you have the ANSI C header files. */
 #define STDC_HEADERS 1
@@ -116,7 +116,7 @@
 
 
 /* Version number of package */
-#define VERSION "1.1.4"
+#define VERSION "1.2.0"
 
 /* Build support for starting from inetd */
 #define XFS_INETD 1



CVS commit: xsrc/external/mit/xfs

2018-03-11 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Mar 11 10:08:03 UTC 2018

Modified Files:
xsrc/external/mit/xfs/dist/os: connection.c io.c xfstrans.c
xsrc/external/mit/xfs/include: config.h

Log Message:
merge xfs 1.2.0.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 xsrc/external/mit/xfs/dist/os/connection.c \
xsrc/external/mit/xfs/dist/os/io.c \
xsrc/external/mit/xfs/dist/os/xfstrans.c
cvs rdiff -u -r1.3 -r1.4 xsrc/external/mit/xfs/include/config.h

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



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

2016-09-22 Thread Christos Zoulas
Module Name:xsrc
Committed By:   christos
Date:   Thu Sep 22 15:50:17 UTC 2016

Modified Files:
xsrc/external/mit/xfs/include: config.h

Log Message:
Missed one, thanks Rin.


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

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



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

2016-09-22 Thread Christos Zoulas
Module Name:xsrc
Committed By:   christos
Date:   Thu Sep 22 15:50:17 UTC 2016

Modified Files:
xsrc/external/mit/xfs/include: config.h

Log Message:
Missed one, thanks Rin.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 xsrc/external/mit/xfs/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/xfs/include/config.h
diff -u xsrc/external/mit/xfs/include/config.h:1.2 xsrc/external/mit/xfs/include/config.h:1.3
--- xsrc/external/mit/xfs/include/config.h:1.2	Wed Feb 25 15:04:02 2015
+++ xsrc/external/mit/xfs/include/config.h	Thu Sep 22 11:50:17 2016
@@ -44,7 +44,9 @@
 #define HAVE_UNISTD_H 1
 
 /* Support IPv6 for TCP connections */
-#define IPv6 1
+#ifndef __NetBSD__	/* Defined by the build */
+# define IPv6 1
+#endif
 
 /* Support os-specific local connections */
 /* #undef LOCALCONN */



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

2015-07-18 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sat Jul 18 06:03:20 UTC 2015

Modified Files:
xsrc/external/mit/xfs/dist/os: io.c

Log Message:
move Xpoll.h to ensure its FD_SETSIZE definition is used.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.5 -r1.2 xsrc/external/mit/xfs/dist/os/io.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/xfs/dist/os/io.c
diff -u xsrc/external/mit/xfs/dist/os/io.c:1.1.1.5 xsrc/external/mit/xfs/dist/os/io.c:1.2
--- xsrc/external/mit/xfs/dist/os/io.c:1.1.1.5	Wed Feb 25 20:02:39 2015
+++ xsrc/external/mit/xfs/dist/os/io.c	Sat Jul 18 06:03:20 2015
@@ -46,6 +46,8 @@ in this Software without prior written a
  * THIS SOFTWARE.
  */
 
+#include	X11/Xpoll.h
+
 #include	config.h
 
 #include	X11/Xtrans/Xtrans.h
@@ -57,7 +59,6 @@ in this Software without prior written a
 
 #include	X11/fonts/FSproto.h
 #include	clientstr.h
-#include	X11/Xpoll.h
 #include	osdep.h
 #include	globals.h
 #include	dispatch.h



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

2015-07-18 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sat Jul 18 06:03:20 UTC 2015

Modified Files:
xsrc/external/mit/xfs/dist/os: io.c

Log Message:
move Xpoll.h to ensure its FD_SETSIZE definition is used.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.5 -r1.2 xsrc/external/mit/xfs/dist/os/io.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/xfs/include

2015-02-25 Thread Soren Jacobsen
Module Name:xsrc
Committed By:   snj
Date:   Wed Feb 25 20:04:02 UTC 2015

Modified Files:
xsrc/external/mit/xfs/include: config.h

Log Message:
update for 1.1.4


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

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



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

2015-02-25 Thread Soren Jacobsen
Module Name:xsrc
Committed By:   snj
Date:   Wed Feb 25 20:04:02 UTC 2015

Modified Files:
xsrc/external/mit/xfs/include: config.h

Log Message:
update for 1.1.4


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 xsrc/external/mit/xfs/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/xfs/include/config.h
diff -u xsrc/external/mit/xfs/include/config.h:1.1 xsrc/external/mit/xfs/include/config.h:1.2
--- xsrc/external/mit/xfs/include/config.h:1.1	Fri May 31 01:49:13 2013
+++ xsrc/external/mit/xfs/include/config.h	Wed Feb 25 20:04:02 2015
@@ -1,13 +1,11 @@
-/* xfs-config.h.  Generated from xfs-config.h.in by configure.  */
-/* xfs-config.h.in.  Generated from configure.ac by autoheader.  */
+/* config.h.  Generated from config.h.in by configure.  */
+/* 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
@@ -61,13 +59,16 @@
 #define PACKAGE_NAME xfs
 
 /* Define to the full name and version of this package. */
-#define PACKAGE_STRING xfs 1.1.3
+#define PACKAGE_STRING xfs 1.1.4
 
 /* Define to the one symbol short name of this package. */
 #define PACKAGE_TARNAME xfs
 
+/* Define to the home page for this package. */
+#define PACKAGE_URL 
+
 /* Define to the version of this package. */
-#define PACKAGE_VERSION 1.1.3
+#define PACKAGE_VERSION 1.1.4
 
 /* Major version of this package */
 #define PACKAGE_VERSION_MAJOR 1
@@ -76,10 +77,7 @@
 #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 PACKAGE_VERSION_PATCHLEVEL 4
 
 /* Define to 1 if you have the ANSI C header files. */
 #define STDC_HEADERS 1
@@ -93,23 +91,33 @@
 /* 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.  */
+/* Enable extensions on AIX 3, Interix.  */
 #ifndef _ALL_SOURCE
-/* # undef _ALL_SOURCE */
+# define _ALL_SOURCE 1
 #endif
-
 /* Enable GNU extensions on systems that have them.  */
 #ifndef _GNU_SOURCE
 # define _GNU_SOURCE 1
 #endif
+/* Enable threading extensions on Solaris.  */
+#ifndef _POSIX_PTHREAD_SEMANTICS
+# define _POSIX_PTHREAD_SEMANTICS 1
+#endif
+/* Enable extensions on HP NonStop.  */
+#ifndef _TANDEM_SOURCE
+# define _TANDEM_SOURCE 1
+#endif
+/* Enable general extensions on Solaris.  */
+#ifndef __EXTENSIONS__
+# define __EXTENSIONS__ 1
+#endif
+
+
+/* Version number of package */
+#define VERSION 1.1.4
+
+/* Build support for starting from inetd */
+#define XFS_INETD 1
 
 /* Define to 1 if on MINIX. */
 /* #undef _MINIX */
@@ -121,13 +129,5 @@
 /* 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
+/* Defined if needed to expose struct msghdr.msg_control */
+/* #undef _XOPEN_SOURCE */



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: 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.



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: xsrc/external/mit/xfs/dist

2010-11-20 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Nov 21 01:15:50 UTC 2010

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

Log Message:
initial import of xfs-1.1.1

Status:

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

U xsrc/external/mit/xfs/dist/Makefile.am
U xsrc/external/mit/xfs/dist/COPYING
U xsrc/external/mit/xfs/dist/configure.ac
U xsrc/external/mit/xfs/dist/config.sub
U xsrc/external/mit/xfs/dist/xfs.def
U xsrc/external/mit/xfs/dist/xfs-config.h.in
U xsrc/external/mit/xfs/dist/Makefile.in
U xsrc/external/mit/xfs/dist/missing
U xsrc/external/mit/xfs/dist/depcomp
U xsrc/external/mit/xfs/dist/README
U xsrc/external/mit/xfs/dist/INSTALL
U xsrc/external/mit/xfs/dist/config.guess
U xsrc/external/mit/xfs/dist/configure
U xsrc/external/mit/xfs/dist/ChangeLog
U xsrc/external/mit/xfs/dist/install-sh
U xsrc/external/mit/xfs/dist/aclocal.m4
U xsrc/external/mit/xfs/dist/include/dispatch.h
U xsrc/external/mit/xfs/dist/include/globals.h
U xsrc/external/mit/xfs/dist/include/servermd.h
U xsrc/external/mit/xfs/dist/include/difs.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/authstr.h
U xsrc/external/mit/xfs/dist/include/os.h
U xsrc/external/mit/xfs/dist/include/cachestr.h
U xsrc/external/mit/xfs/dist/include/fsresource.h
U xsrc/external/mit/xfs/dist/include/difsfn.h
U xsrc/external/mit/xfs/dist/include/osstruct.h
U xsrc/external/mit/xfs/dist/include/assert.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/difsutils.h
U xsrc/external/mit/xfs/dist/include/difsfnst.h
U xsrc/external/mit/xfs/dist/include/auth.h
U xsrc/external/mit/xfs/dist/include/swapreq.h
U xsrc/external/mit/xfs/dist/include/fsevents.h
U xsrc/external/mit/xfs/dist/include/closure.h
U xsrc/external/mit/xfs/dist/include/clientstr.h
U xsrc/external/mit/xfs/dist/include/site.h
U xsrc/external/mit/xfs/dist/include/cache.h
U xsrc/external/mit/xfs/dist/include/swaprep.h
U xsrc/external/mit/xfs/dist/include/access.h
N xsrc/external/mit/xfs/dist/config/Makefile.in
N xsrc/external/mit/xfs/dist/config/config.cpp
N xsrc/external/mit/xfs/dist/config/Makefile.am
U xsrc/external/mit/xfs/dist/os/waitfor.c
U xsrc/external/mit/xfs/dist/os/connection.c
U xsrc/external/mit/xfs/dist/os/osglue.c
U xsrc/external/mit/xfs/dist/os/xfstrans.c
U xsrc/external/mit/xfs/dist/os/io.c
U xsrc/external/mit/xfs/dist/os/access.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/error.c
U xsrc/external/mit/xfs/dist/os/configstr.h
U xsrc/external/mit/xfs/dist/os/daemon.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/config.h
N 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/tables.c
U xsrc/external/mit/xfs/dist/difs/difsutils.c
U xsrc/external/mit/xfs/dist/difs/events.c
U xsrc/external/mit/xfs/dist/difs/charinfo.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/cache.c
U xsrc/external/mit/xfs/dist/difs/dispatch.c
U xsrc/external/mit/xfs/dist/difs/swapreq.c
U xsrc/external/mit/xfs/dist/difs/fontinfo.c
U xsrc/external/mit/xfs/dist/difs/extensions.c
U xsrc/external/mit/xfs/dist/difs/swaprep.c
U xsrc/external/mit/xfs/dist/difs/main.c
U xsrc/external/mit/xfs/dist/difs/initfonts.c
U xsrc/external/mit/xfs/dist/difs/atom.c
U xsrc/external/mit/xfs/dist/doc/xfs-design.xml
N xsrc/external/mit/xfs/dist/doc/Makefile.in
N xsrc/external/mit/xfs/dist/doc/Makefile.am
N xsrc/external/mit/xfs/dist/man/Makefile.am
N xsrc/external/mit/xfs/dist/man/xfs.man
N xsrc/external/mit/xfs/dist/man/Makefile.in

No conflicts created by this import



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

2010-11-20 Thread matthew green
Module Name:xsrc
Committed By:   mrg
Date:   Sun Nov 21 01:15:50 UTC 2010

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

Log Message:
initial import of xfs-1.1.1

Status:

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

U xsrc/external/mit/xfs/dist/Makefile.am
U xsrc/external/mit/xfs/dist/COPYING
U xsrc/external/mit/xfs/dist/configure.ac
U xsrc/external/mit/xfs/dist/config.sub
U xsrc/external/mit/xfs/dist/xfs.def
U xsrc/external/mit/xfs/dist/xfs-config.h.in
U xsrc/external/mit/xfs/dist/Makefile.in
U xsrc/external/mit/xfs/dist/missing
U xsrc/external/mit/xfs/dist/depcomp
U xsrc/external/mit/xfs/dist/README
U xsrc/external/mit/xfs/dist/INSTALL
U xsrc/external/mit/xfs/dist/config.guess
U xsrc/external/mit/xfs/dist/configure
U xsrc/external/mit/xfs/dist/ChangeLog
U xsrc/external/mit/xfs/dist/install-sh
U xsrc/external/mit/xfs/dist/aclocal.m4
U xsrc/external/mit/xfs/dist/include/dispatch.h
U xsrc/external/mit/xfs/dist/include/globals.h
U xsrc/external/mit/xfs/dist/include/servermd.h
U xsrc/external/mit/xfs/dist/include/difs.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/authstr.h
U xsrc/external/mit/xfs/dist/include/os.h
U xsrc/external/mit/xfs/dist/include/cachestr.h
U xsrc/external/mit/xfs/dist/include/fsresource.h
U xsrc/external/mit/xfs/dist/include/difsfn.h
U xsrc/external/mit/xfs/dist/include/osstruct.h
U xsrc/external/mit/xfs/dist/include/assert.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/difsutils.h
U xsrc/external/mit/xfs/dist/include/difsfnst.h
U xsrc/external/mit/xfs/dist/include/auth.h
U xsrc/external/mit/xfs/dist/include/swapreq.h
U xsrc/external/mit/xfs/dist/include/fsevents.h
U xsrc/external/mit/xfs/dist/include/closure.h
U xsrc/external/mit/xfs/dist/include/clientstr.h
U xsrc/external/mit/xfs/dist/include/site.h
U xsrc/external/mit/xfs/dist/include/cache.h
U xsrc/external/mit/xfs/dist/include/swaprep.h
U xsrc/external/mit/xfs/dist/include/access.h
N xsrc/external/mit/xfs/dist/config/Makefile.in
N xsrc/external/mit/xfs/dist/config/config.cpp
N xsrc/external/mit/xfs/dist/config/Makefile.am
U xsrc/external/mit/xfs/dist/os/waitfor.c
U xsrc/external/mit/xfs/dist/os/connection.c
U xsrc/external/mit/xfs/dist/os/osglue.c
U xsrc/external/mit/xfs/dist/os/xfstrans.c
U xsrc/external/mit/xfs/dist/os/io.c
U xsrc/external/mit/xfs/dist/os/access.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/error.c
U xsrc/external/mit/xfs/dist/os/configstr.h
U xsrc/external/mit/xfs/dist/os/daemon.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/config.h
N 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/tables.c
U xsrc/external/mit/xfs/dist/difs/difsutils.c
U xsrc/external/mit/xfs/dist/difs/events.c
U xsrc/external/mit/xfs/dist/difs/charinfo.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/cache.c
U xsrc/external/mit/xfs/dist/difs/dispatch.c
U xsrc/external/mit/xfs/dist/difs/swapreq.c
U xsrc/external/mit/xfs/dist/difs/fontinfo.c
U xsrc/external/mit/xfs/dist/difs/extensions.c
U xsrc/external/mit/xfs/dist/difs/swaprep.c
U xsrc/external/mit/xfs/dist/difs/main.c
U xsrc/external/mit/xfs/dist/difs/initfonts.c
U xsrc/external/mit/xfs/dist/difs/atom.c
U xsrc/external/mit/xfs/dist/doc/xfs-design.xml
N xsrc/external/mit/xfs/dist/doc/Makefile.in
N xsrc/external/mit/xfs/dist/doc/Makefile.am
N xsrc/external/mit/xfs/dist/man/Makefile.am
N xsrc/external/mit/xfs/dist/man/xfs.man
N xsrc/external/mit/xfs/dist/man/Makefile.in

No conflicts created by this import