.gitignore | 73 INSTALL | 229 -- Makefile.am | 16 README | 6 configure.ac | 29 doc/.gitignore | 6 doc/Makefile.am | 62 doc/Xmu.xml | 4727 +++++++++++++++++++++++++++++++++++++++++++ doc/xlogo.svg | 45 include/Makefile.am | 3 include/X11/Xmu/Atoms.h | 3 include/X11/Xmu/CharSet.h | 4 include/X11/Xmu/CloseHook.h | 3 include/X11/Xmu/Converters.h | 4 include/X11/Xmu/CurUtil.h | 3 include/X11/Xmu/CvtCache.h | 3 include/X11/Xmu/DisplayQue.h | 3 include/X11/Xmu/Drawing.h | 3 include/X11/Xmu/Editres.h | 3 include/X11/Xmu/EditresP.h | 3 include/X11/Xmu/Error.h | 3 include/X11/Xmu/ExtAgent.h | 3 include/X11/Xmu/Initer.h | 3 include/X11/Xmu/Lookup.h | 4 include/X11/Xmu/Misc.h | 2 include/X11/Xmu/StdCmap.h | 3 include/X11/Xmu/StdSel.h | 3 include/X11/Xmu/SysUtil.h | 9 include/X11/Xmu/WhitePoint.h | 2 include/X11/Xmu/WidgetNode.h | 3 include/X11/Xmu/WinUtil.h | 3 include/X11/Xmu/Xct.h | 3 include/X11/Xmu/Xmu.h | 10 src/AllCmap.c | 3 src/Atoms.c | 3 src/ClientWin.c | 3 src/Clip.c | 1 src/CloseHook.c | 3 src/CmapAlloc.c | 3 src/CrCmap.c | 3 src/CrPixFBit.c | 3 src/CursorName.c | 3 src/CvtCache.c | 3 src/CvtStdSel.c | 4 src/DefErrMsg.c | 4 src/DelCmap.c | 3 src/DisplayQue.c | 3 src/Distinct.c | 3 src/DrRndRect.c | 3 src/DrawLogo.c | 3 src/EditresCom.c | 3 src/ExtAgent.c | 3 src/FToCback.c | 3 src/GetHost.c | 3 src/GrayPixmap.c | 3 src/Initer.c | 3 src/LocBitmap.c | 3 src/Lookup.c | 3 src/LookupCmap.c | 3 src/Lower.c | 4 src/RdBitF.c | 3 src/ScrOfWin.c | 3 src/ShapeWidg.c | 3 src/StdCmap.c | 3 src/StrToBS.c | 4 src/StrToBmap.c | 3 src/StrToCurs.c | 4 src/StrToGrav.c | 3 src/StrToJust.c | 4 src/StrToLong.c | 3 src/StrToOrnt.c | 4 src/StrToShap.c | 3 src/StrToWidg.c | 3 src/UpdMapHint.c | 3 src/VisCmap.c | 3 src/WidgetNode.c | 4 src/Xct.c | 3 src/sharedlib.c | 3 78 files changed, 4932 insertions(+), 488 deletions(-)
New commits: commit 5d9b0896bfdfe60656a2d806a06e17c7adf335b5 Author: Alan Coopersmith <alan.coopersm...@oracle.com> Date: Fri Oct 29 16:52:54 2010 -0700 libXmu 1.1.0 Signed-off-by: Alan Coopersmith <alan.coopersm...@oracle.com> diff --git a/configure.ac b/configure.ac index c75a452..69ea570 100644 --- a/configure.ac +++ b/configure.ac @@ -5,7 +5,7 @@ AC_PREREQ([2.60]) AC_INIT([libXmu], - [1.0.5], + [1.1.0], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [libXmu]) commit 28f4666ad88ab736f52c1cb16674226f14bc2a15 Author: Alan Coopersmith <alan.coopersm...@oracle.com> Date: Thu Oct 28 12:24:30 2010 -0700 Remove unnecessary calls from configure.ac AC_PROG_CC is handled by XORG_DEFAULT_OPTIONS AC_SUBST of *_LIBS & *_CFLAGS are handled by PKG_CHECK_MODULES Signed-off-by: Alan Coopersmith <alan.coopersm...@oracle.com> diff --git a/configure.ac b/configure.ac index 5ed4864..c75a452 100644 --- a/configure.ac +++ b/configure.ac @@ -30,16 +30,10 @@ AM_CONFIG_HEADER([config.h]) # Checks for programs. AC_PROG_LIBTOOL -AC_PROG_CC # Checks for pkg-config packages PKG_CHECK_MODULES(XMU, xt xext x11 xextproto) -AC_SUBST(XMU_CFLAGS) -AC_SUBST(XMU_LIBS) - PKG_CHECK_MODULES(XMUU, x11) -AC_SUBST(XMUU_CFLAGS) -AC_SUBST(XMUU_LIBS) # CvtStdSel.c needs to know which network transports to build hostname # conversion routines for commit 1ab19053c75b44be9c49700b1190dd5d8da152ce Author: Jesse Adkins <jesserayadk...@gmail.com> Date: Tue Sep 28 13:30:03 2010 -0700 Purge cvs tags. Signed-off-by: Jesse Adkins <jesserayadk...@gmail.com> Signed-off-by: Alan Coopersmith <alan.coopersm...@oracle.com> diff --git a/include/X11/Xmu/Atoms.h b/include/X11/Xmu/Atoms.h index f7b4c8f..3d86910 100644 --- a/include/X11/Xmu/Atoms.h +++ b/include/X11/Xmu/Atoms.h @@ -1,5 +1,3 @@ -/* $Xorg: Atoms.h,v 1.4 2001/02/09 02:03:51 xorgcvs Exp $ */ - /* Copyright 1988, 1998 The Open Group @@ -25,7 +23,6 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/Atoms.h,v 1.6 2001/01/17 19:42:53 dawes Exp $ */ /* * The interfaces described by this header file are for miscellaneous utilities diff --git a/include/X11/Xmu/CharSet.h b/include/X11/Xmu/CharSet.h index 32cebfe..1ce9166 100644 --- a/include/X11/Xmu/CharSet.h +++ b/include/X11/Xmu/CharSet.h @@ -1,5 +1,3 @@ -/* $Xorg: CharSet.h,v 1.4 2001/02/09 02:03:51 xorgcvs Exp $ */ - /* Copyright 1988, 1998 The Open Group @@ -26,8 +24,6 @@ in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/CharSet.h,v 1.7 2001/01/17 19:42:53 dawes Exp $ */ - /* * The interfaces described by this header file are for miscellaneous utilities * and are not part of the Xlib standard. diff --git a/include/X11/Xmu/CloseHook.h b/include/X11/Xmu/CloseHook.h index 1940a79..2481ebf 100644 --- a/include/X11/Xmu/CloseHook.h +++ b/include/X11/Xmu/CloseHook.h @@ -1,5 +1,3 @@ -/* $Xorg: CloseHook.h,v 1.5 2001/02/09 02:03:51 xorgcvs Exp $ */ - /* Copyright 1988, 1998 The Open Group @@ -25,7 +23,6 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/CloseHook.h,v 1.6 2001/01/17 19:42:53 dawes Exp $ */ /* * The interfaces described by this header file are for miscellaneous utilities diff --git a/include/X11/Xmu/Converters.h b/include/X11/Xmu/Converters.h index 11055d9..3779750 100644 --- a/include/X11/Xmu/Converters.h +++ b/include/X11/Xmu/Converters.h @@ -1,5 +1,3 @@ -/* $Xorg: Converters.h,v 1.5 2001/02/09 02:03:51 xorgcvs Exp $ */ - /* Copyright 1988, 1998 The Open Group @@ -26,8 +24,6 @@ in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/Converters.h,v 1.5 2001/01/17 19:42:53 dawes Exp $ */ - /* * The interfaces described by this header file are for miscellaneous utilities * and are not part of the Xlib standard. diff --git a/include/X11/Xmu/CurUtil.h b/include/X11/Xmu/CurUtil.h index 27ab188..3524d77 100644 --- a/include/X11/Xmu/CurUtil.h +++ b/include/X11/Xmu/CurUtil.h @@ -1,5 +1,3 @@ -/* $Xorg: CurUtil.h,v 1.4 2001/02/09 02:03:51 xorgcvs Exp $ */ - /* Copyright 1988, 1998 The Open Group @@ -25,7 +23,6 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/CurUtil.h,v 1.5 2001/01/17 19:42:54 dawes Exp $ */ /* * The interfaces described by this header file are for miscellaneous utilities diff --git a/include/X11/Xmu/CvtCache.h b/include/X11/Xmu/CvtCache.h index d9b967a..7441e2f 100644 --- a/include/X11/Xmu/CvtCache.h +++ b/include/X11/Xmu/CvtCache.h @@ -1,5 +1,3 @@ -/* $Xorg: CvtCache.h,v 1.4 2001/02/09 02:03:52 xorgcvs Exp $ */ - /* Copyright 1989, 1998 The Open Group @@ -25,7 +23,6 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/CvtCache.h,v 1.6 2001/01/17 19:42:54 dawes Exp $ */ /* * Public Interfaces diff --git a/include/X11/Xmu/DisplayQue.h b/include/X11/Xmu/DisplayQue.h index 9f9013c..b37a581 100644 --- a/include/X11/Xmu/DisplayQue.h +++ b/include/X11/Xmu/DisplayQue.h @@ -1,5 +1,3 @@ -/* $Xorg: DisplayQue.h,v 1.4 2001/02/09 02:03:52 xorgcvs Exp $ */ - /* Copyright 1994, 1998 The Open Group @@ -25,7 +23,6 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/DisplayQue.h,v 1.5 2001/01/17 19:42:54 dawes Exp $ */ #ifndef _XMU_DISPLAYQUE_H_ #define _XMU_DISPLAYQUE_H_ diff --git a/include/X11/Xmu/Drawing.h b/include/X11/Xmu/Drawing.h index 9ffed3b..91d764b 100644 --- a/include/X11/Xmu/Drawing.h +++ b/include/X11/Xmu/Drawing.h @@ -1,5 +1,3 @@ -/* $Xorg: Drawing.h,v 1.5 2001/02/09 02:03:52 xorgcvs Exp $ */ - /* Copyright 1988, 1998 The Open Group @@ -25,7 +23,6 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/Drawing.h,v 1.6 2001/12/14 19:55:42 dawes Exp $ */ /* * The interfaces described by this header file are for miscellaneous utilities diff --git a/include/X11/Xmu/Editres.h b/include/X11/Xmu/Editres.h index 2a3f3e2..0c1ffe0 100644 --- a/include/X11/Xmu/Editres.h +++ b/include/X11/Xmu/Editres.h @@ -1,5 +1,3 @@ -/* $Xorg: Editres.h,v 1.4 2001/02/09 02:03:52 xorgcvs Exp $ */ - /* Copyright 1991, 1994, 1998 The Open Group @@ -25,7 +23,6 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/Editres.h,v 1.5 2001/01/17 19:42:55 dawes Exp $ */ #include <X11/Xfuncproto.h> diff --git a/include/X11/Xmu/EditresP.h b/include/X11/Xmu/EditresP.h index 886205b..6f7c739 100644 --- a/include/X11/Xmu/EditresP.h +++ b/include/X11/Xmu/EditresP.h @@ -1,5 +1,3 @@ -/* $Xorg: EditresP.h,v 1.4 2001/02/09 02:03:52 xorgcvs Exp $ */ - /* Copyright 1989, 1998 The Open Group @@ -25,7 +23,6 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/EditresP.h,v 1.5 2001/01/17 19:42:55 dawes Exp $ */ /* * Author: Chris D. Peterson, MIT X Consortium diff --git a/include/X11/Xmu/Error.h b/include/X11/Xmu/Error.h index f992930..c69bf14 100644 --- a/include/X11/Xmu/Error.h +++ b/include/X11/Xmu/Error.h @@ -1,5 +1,3 @@ -/* $Xorg: Error.h,v 1.5 2001/02/09 02:03:52 xorgcvs Exp $ */ - /* Copyright 1988, 1998 The Open Group @@ -25,7 +23,6 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/Error.h,v 1.5 2001/01/17 19:42:55 dawes Exp $ */ /* * The interfaces described by this header file are for miscellaneous utilities diff --git a/include/X11/Xmu/ExtAgent.h b/include/X11/Xmu/ExtAgent.h index b0caf36..b300140 100644 --- a/include/X11/Xmu/ExtAgent.h +++ b/include/X11/Xmu/ExtAgent.h @@ -1,5 +1,3 @@ -/* $Xorg: ExtAgent.h,v 1.5 2001/02/09 02:03:52 xorgcvs Exp $ */ - /* Copyright 1994,1998 The Open Group @@ -25,7 +23,6 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/ExtAgent.h,v 1.5 2001/01/17 19:42:55 dawes Exp $ */ #include <X11/Intrinsic.h> #include <X11/Xfuncproto.h> diff --git a/include/X11/Xmu/Initer.h b/include/X11/Xmu/Initer.h index 5e870af..2ba86e8 100644 --- a/include/X11/Xmu/Initer.h +++ b/include/X11/Xmu/Initer.h @@ -1,5 +1,3 @@ -/* $Xorg: Initer.h,v 1.5 2001/02/09 02:03:52 xorgcvs Exp $ */ - /* Copyright 1988, 1998 The Open Group @@ -25,7 +23,6 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/Initer.h,v 1.5 2001/01/17 19:42:56 dawes Exp $ */ /* * The interfaces described by this header file are for miscellaneous utilities diff --git a/include/X11/Xmu/Lookup.h b/include/X11/Xmu/Lookup.h index 3699a27..e99b8b1 100644 --- a/include/X11/Xmu/Lookup.h +++ b/include/X11/Xmu/Lookup.h @@ -1,7 +1,3 @@ -/* - * $XFree86$ - */ - /************************************************************ Copyright 1999 by Thomas E. Dickey <dic...@clark.net> diff --git a/include/X11/Xmu/Misc.h b/include/X11/Xmu/Misc.h index b47fbba..650771b 100644 --- a/include/X11/Xmu/Misc.h +++ b/include/X11/Xmu/Misc.h @@ -1,5 +1,3 @@ -/* $Xorg: Misc.h,v 1.4 2001/02/09 02:03:53 xorgcvs Exp $ */ - /* Copyright 1987, 1988, 1998 The Open Group diff --git a/include/X11/Xmu/StdCmap.h b/include/X11/Xmu/StdCmap.h index b268d07..afad78f 100644 --- a/include/X11/Xmu/StdCmap.h +++ b/include/X11/Xmu/StdCmap.h @@ -1,5 +1,3 @@ -/* $Xorg: StdCmap.h,v 1.5 2001/02/09 02:03:53 xorgcvs Exp $ */ - /* Copyright 1988, 1998 The Open Group @@ -25,7 +23,6 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/StdCmap.h,v 1.8 2001/01/23 17:38:14 keithp Exp $ */ /* * The interfaces described by this header file are for miscellaneous utilities diff --git a/include/X11/Xmu/StdSel.h b/include/X11/Xmu/StdSel.h index f7c9452..c61214d 100644 --- a/include/X11/Xmu/StdSel.h +++ b/include/X11/Xmu/StdSel.h @@ -1,5 +1,3 @@ -/* $Xorg: StdSel.h,v 1.5 2001/02/09 02:03:53 xorgcvs Exp $ */ - /* Copyright 1988, 1998 The Open Group @@ -25,7 +23,6 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/StdSel.h,v 1.7 2001/01/17 19:42:56 dawes Exp $ */ /* * The interfaces described by this header file are for miscellaneous utilities diff --git a/include/X11/Xmu/SysUtil.h b/include/X11/Xmu/SysUtil.h index 5adf404..da5b189 100644 --- a/include/X11/Xmu/SysUtil.h +++ b/include/X11/Xmu/SysUtil.h @@ -1,5 +1,3 @@ -/* $Xorg: SysUtil.h,v 1.4 2001/02/09 02:03:53 xorgcvs Exp $ */ - /* Copyright 1989, 1998 The Open Group @@ -25,7 +23,6 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/SysUtil.h,v 1.9 2001/12/14 19:55:55 dawes Exp $ */ #ifndef _SYSUTIL_H_ #define _SYSUTIL_H_ diff --git a/include/X11/Xmu/WhitePoint.h b/include/X11/Xmu/WhitePoint.h index a05bddd..9f41c42 100644 --- a/include/X11/Xmu/WhitePoint.h +++ b/include/X11/Xmu/WhitePoint.h @@ -1,5 +1,3 @@ -/* $Xorg: WhitePoint.h,v 1.4 2001/02/09 02:03:53 xorgcvs Exp $ */ - /* Copyright 1991, 1994, 1998 The Open Group diff --git a/include/X11/Xmu/WidgetNode.h b/include/X11/Xmu/WidgetNode.h index 75050d2..f9d2cb5 100644 --- a/include/X11/Xmu/WidgetNode.h +++ b/include/X11/Xmu/WidgetNode.h @@ -1,5 +1,3 @@ -/* $Xorg: WidgetNode.h,v 1.5 2001/02/09 02:03:53 xorgcvs Exp $ */ - /* Copyright 1990, 1998 The Open Group @@ -25,7 +23,6 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/WidgetNode.h,v 1.5 2001/01/17 19:42:57 dawes Exp $ */ /* * Author: Jim Fulton, MIT X Consortium diff --git a/include/X11/Xmu/WinUtil.h b/include/X11/Xmu/WinUtil.h index 0445bcf..c3d11a8 100644 --- a/include/X11/Xmu/WinUtil.h +++ b/include/X11/Xmu/WinUtil.h @@ -1,5 +1,3 @@ -/* $Xorg: WinUtil.h,v 1.4 2001/02/09 02:03:53 xorgcvs Exp $ */ - /* Copyright 1988, 1998 The Open Group @@ -25,7 +23,6 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/WinUtil.h,v 1.6 2001/01/17 19:42:57 dawes Exp $ */ /* * The interfaces described by this header file are for miscellaneous utilities diff --git a/include/X11/Xmu/Xct.h b/include/X11/Xmu/Xct.h index b06644a..514ad7f 100644 --- a/include/X11/Xmu/Xct.h +++ b/include/X11/Xmu/Xct.h @@ -1,5 +1,3 @@ -/* $Xorg: Xct.h,v 1.4 2001/02/09 02:03:53 xorgcvs Exp $ */ - /* Copyright 1989, 1998 The Open Group @@ -25,7 +23,6 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/Xct.h,v 1.6 2001/01/17 19:42:58 dawes Exp $ */ #ifndef _Xct_h #define _Xct_h diff --git a/include/X11/Xmu/Xmu.h b/include/X11/Xmu/Xmu.h index 27b7fb2..ad79488 100644 --- a/include/X11/Xmu/Xmu.h +++ b/include/X11/Xmu/Xmu.h @@ -1,5 +1,3 @@ -/* $Xorg: Xmu.h,v 1.4 2001/02/09 02:03:53 xorgcvs Exp $ */ - /* Copyright 1988, 1998 The Open Group @@ -25,7 +23,6 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/Xmu.h,v 1.9 2001/12/14 19:55:59 dawes Exp $ */ /* * The interfaces described by this header file are for miscellaneous utilities diff --git a/src/AllCmap.c b/src/AllCmap.c index 09ae52a..1daa8de 100644 --- a/src/AllCmap.c +++ b/src/AllCmap.c @@ -1,5 +1,3 @@ -/* $Xorg: AllCmap.c,v 1.4 2001/02/09 02:03:51 xorgcvs Exp $ */ - /* Copyright 1989, 1998 The Open Group @@ -25,7 +23,6 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/AllCmap.c,v 1.7 2001/01/17 19:42:53 dawes Exp $ */ #ifdef HAVE_CONFIG_H #include <config.h> diff --git a/src/Atoms.c b/src/Atoms.c index dcdf497..48e2431 100644 --- a/src/Atoms.c +++ b/src/Atoms.c @@ -1,5 +1,3 @@ -/* $Xorg: Atoms.c,v 1.4 2001/02/09 02:03:51 xorgcvs Exp $ */ - /* Copyright 1988, 1998 The Open Group @@ -25,7 +23,6 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/Atoms.c,v 3.7 2001/07/25 15:04:50 dawes Exp $ */ /* * This file contains routines to cache atoms, avoiding multiple diff --git a/src/ClientWin.c b/src/ClientWin.c index 7fc273f..3af323e 100644 --- a/src/ClientWin.c +++ b/src/ClientWin.c @@ -1,5 +1,3 @@ -/* $Xorg: ClientWin.c,v 1.4 2001/02/09 02:03:51 xorgcvs Exp $ */ - /* Copyright 1989, 1998 The Open Group @@ -25,7 +23,6 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/ClientWin.c,v 1.7 2001/12/14 19:55:34 dawes Exp $ */ #ifdef HAVE_CONFIG_H #include <config.h> diff --git a/src/Clip.c b/src/Clip.c index 121a69f..ff87a80 100644 --- a/src/Clip.c +++ b/src/Clip.c @@ -24,7 +24,6 @@ * dealings in this Software without prior written authorization from the * XFree86 Project. */ -/* $XFree86: xc/lib/Xmu/Clip.c,v 1.1 1998/08/16 10:25:03 dawes Exp $ */ #ifdef HAVE_CONFIG_H #include <config.h> diff --git a/src/CloseHook.c b/src/CloseHook.c index 5e66d0c..ca9d9de 100644 --- a/src/CloseHook.c +++ b/src/CloseHook.c @@ -1,5 +1,3 @@ -/* $Xorg: CloseHook.c,v 1.4 2001/02/09 02:03:51 xorgcvs Exp $ */ - /* Copyright 1989, 1998 The Open Group @@ -24,7 +22,6 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/CloseHook.c,v 3.5 2001/07/25 15:04:50 dawes Exp $ */ /* * CloseDisplayHook package - provide callback on XCloseDisplay diff --git a/src/CmapAlloc.c b/src/CmapAlloc.c index 1f27f1e..0bccb82 100644 --- a/src/CmapAlloc.c +++ b/src/CmapAlloc.c @@ -1,5 +1,3 @@ -/* $Xorg: CmapAlloc.c,v 1.4 2001/02/09 02:03:51 xorgcvs Exp $ */ - /* Copyright 1989, 1994, 1998 The Open Group @@ -25,7 +23,6 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/CmapAlloc.c,v 1.6 2001/01/17 19:42:53 dawes Exp $ */ /* * Author: Donna Converse, MIT X Consortium diff --git a/src/CrCmap.c b/src/CrCmap.c index 011c714..4343f5f 100644 --- a/src/CrCmap.c +++ b/src/CrCmap.c @@ -1,5 +1,3 @@ -/* $Xorg: CrCmap.c,v 1.4 2001/02/09 02:03:51 xorgcvs Exp $ */ - /* Copyright 1989, 1998 The Open Group @@ -25,7 +23,6 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/CrCmap.c,v 3.6 2001/01/17 19:42:53 dawes Exp $ */ /* * Author: Donna Converse, MIT X Consortium diff --git a/src/CrPixFBit.c b/src/CrPixFBit.c index c7ff6ca..9489a19 100644 --- a/src/CrPixFBit.c +++ b/src/CrPixFBit.c @@ -1,5 +1,3 @@ -/* $Xorg: CrPixFBit.c,v 1.4 2001/02/09 02:03:51 xorgcvs Exp $ */ - /* Copyright 1988, 1998 The Open Group @@ -25,7 +23,6 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/CrPixFBit.c,v 1.6 2001/01/17 19:42:53 dawes Exp $ */ /* * This file contains miscellaneous utility routines and is not part of the diff --git a/src/CursorName.c b/src/CursorName.c index 17f3902..8867e8f 100644 --- a/src/CursorName.c +++ b/src/CursorName.c @@ -1,5 +1,3 @@ -/* $Xorg: CursorName.c,v 1.4 2001/02/09 02:03:51 xorgcvs Exp $ */ - /* Copyright 1989, 1998 The Open Group @@ -25,7 +23,6 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/CursorName.c,v 3.7tsi Exp $ */ #ifdef HAVE_CONFIG_H #include <config.h> diff --git a/src/CvtCache.c b/src/CvtCache.c index 8dd4602..39a5d0c 100644 --- a/src/CvtCache.c +++ b/src/CvtCache.c @@ -1,5 +1,3 @@ -/* $Xorg: CvtCache.c,v 1.5 2001/02/09 02:03:52 xorgcvs Exp $ */ - /* Copyright 1989, 1998 The Open Group @@ -25,7 +23,6 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/CvtCache.c,v 3.6 2001/08/23 00:03:21 dawes Exp $ */ /* * Author: Jim Fulton, MIT X Consortium diff --git a/src/CvtStdSel.c b/src/CvtStdSel.c index a6f206a..81d1a84 100644 --- a/src/CvtStdSel.c +++ b/src/CvtStdSel.c @@ -1,6 +1,3 @@ -/* $Xorg: CvtStdSel.c,v 1.4 2001/02/09 02:03:52 xorgcvs Exp $ */ -/* $XdotOrg: xc/lib/Xmu/CvtStdSel.c,v 1.5 2005/05/22 04:36:38 alanc Exp $ */ - /* Copyright 1988, 1998 The Open Group @@ -26,7 +23,6 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/CvtStdSel.c,v 3.19 2001/11/21 16:22:59 tsi Exp $ */ /* * This file contains routines to handle common selection targets. diff --git a/src/DefErrMsg.c b/src/DefErrMsg.c index b6a6f64..37fe0aa 100644 --- a/src/DefErrMsg.c +++ b/src/DefErrMsg.c @@ -1,5 +1,3 @@ -/* $Xorg: DefErrMsg.c,v 1.4 2001/02/09 02:03:52 xorgcvs Exp $ */ - /* Copyright 1988, 1998 The Open Group @@ -25,7 +23,6 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/DefErrMsg.c,v 1.7 2001/01/17 19:42:54 dawes Exp $ */ #ifdef HAVE_CONFIG_H #include <config.h> diff --git a/src/DelCmap.c b/src/DelCmap.c index 1f2c6ab..f29ae00 100644 --- a/src/DelCmap.c +++ b/src/DelCmap.c @@ -1,5 +1,3 @@ -/* $Xorg: DelCmap.c,v 1.4 2001/02/09 02:03:52 xorgcvs Exp $ */ - /* Copyright 1989, 1998 The Open Group @@ -25,7 +23,6 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/DelCmap.c,v 1.6 2001/01/17 19:42:54 dawes Exp $ */ /* * Author: Donna Converse, MIT X Consortium diff --git a/src/DisplayQue.c b/src/DisplayQue.c index ae9f92e..de76a69 100644 --- a/src/DisplayQue.c +++ b/src/DisplayQue.c @@ -1,5 +1,3 @@ -/* $Xorg: DisplayQue.c,v 1.4 2001/02/09 02:03:52 xorgcvs Exp $ */ - /* Copyright 1989, 1998 The Open Group @@ -25,7 +23,6 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/DisplayQue.c,v 3.4 2001/07/25 15:04:50 dawes Exp $ */ /* * Author: Jim Fulton, MIT X Consortium diff --git a/src/Distinct.c b/src/Distinct.c index f00b00b..9d31494 100644 --- a/src/Distinct.c +++ b/src/Distinct.c @@ -1,5 +1,3 @@ -/* $Xorg: Distinct.c,v 1.4 2001/02/09 02:03:52 xorgcvs Exp $ */ - /* Copyright 1990, 1998 The Open Group @@ -25,7 +23,6 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/Distinct.c,v 3.5 2001/07/25 15:04:50 dawes Exp $ */ /* * Author: Keith Packard, MIT X Consortium diff --git a/src/DrRndRect.c b/src/DrRndRect.c index 7fe5489..1373de0 100644 --- a/src/DrRndRect.c +++ b/src/DrRndRect.c @@ -1,5 +1,3 @@ -/* $Xorg: DrRndRect.c,v 1.4 2001/02/09 02:03:52 xorgcvs Exp $ */ - /* Copyright 1988, 1998 The Open Group @@ -25,7 +23,6 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/DrRndRect.c,v 1.6 2001/01/17 19:42:54 dawes Exp $ */ /* * XmuDrawRoundedRectangle, XmuFillRoundedRectangle diff --git a/src/DrawLogo.c b/src/DrawLogo.c index 74e64d8..4af89b5 100644 --- a/src/DrawLogo.c +++ b/src/DrawLogo.c @@ -1,5 +1,3 @@ -/* $Xorg: DrawLogo.c,v 1.4 2001/02/09 02:03:52 xorgcvs Exp $ */ - /* Copyright 1988, 1998 The Open Group @@ -25,7 +23,6 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/DrawLogo.c,v 1.7 2001/01/17 19:42:54 dawes Exp $ */ #ifdef HAVE_CONFIG_H #include <config.h> diff --git a/src/EditresCom.c b/src/EditresCom.c index 51ac248..0208cdf 100644 --- a/src/EditresCom.c +++ b/src/EditresCom.c @@ -1,5 +1,3 @@ -/* $Xorg: EditresCom.c,v 1.4 2001/02/09 02:03:52 xorgcvs Exp $ */ - /* Copyright 1989, 1998 The Open Group @@ -25,7 +23,6 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/EditresCom.c,v 1.21 2003/10/24 15:44:05 tsi Exp $ */ /* * Author: Chris D. Peterson, Dave Sternlicht, MIT X Consortium diff --git a/src/ExtAgent.c b/src/ExtAgent.c index 2795567..6b0dfdb 100644 --- a/src/ExtAgent.c +++ b/src/ExtAgent.c @@ -1,5 +1,3 @@ -/* $Xorg: ExtAgent.c,v 1.4 2001/02/09 02:03:52 xorgcvs Exp $ */ - /* Copyright 1994, 1998 The Open Group @@ -25,7 +23,6 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/ExtAgent.c,v 1.6 2001/01/17 19:42:55 dawes Exp $ */ #ifdef HAVE_CONFIG_H #include <config.h> diff --git a/src/FToCback.c b/src/FToCback.c index 6da4826..4ca8d45 100644 --- a/src/FToCback.c +++ b/src/FToCback.c @@ -1,5 +1,3 @@ -/* $Xorg: FToCback.c,v 1.4 2001/02/09 02:03:52 xorgcvs Exp $ */ - /* Copyright 1988,1998 The Open Group @@ -25,7 +23,6 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/FToCback.c,v 1.6 2001/01/17 19:42:55 dawes Exp $ */ #ifdef HAVE_CONFIG_H #include <config.h> diff --git a/src/GetHost.c b/src/GetHost.c index 19793fd..2f0bccd 100644 --- a/src/GetHost.c +++ b/src/GetHost.c @@ -1,5 +1,3 @@ -/* $Xorg: GetHost.c,v 1.4 2001/02/09 02:03:52 xorgcvs Exp $ */ - /* Copyright 1989, 1998 The Open Group @@ -25,7 +23,6 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/GetHost.c,v 3.7 2001/07/25 15:04:50 dawes Exp $ */ /* * Author: Jim Fulton, MIT X Consortium diff --git a/src/GrayPixmap.c b/src/GrayPixmap.c index 478269f..ccea461 100644 --- a/src/GrayPixmap.c +++ b/src/GrayPixmap.c @@ -1,5 +1,3 @@ -/* $Xorg: GrayPixmap.c,v 1.4 2001/02/09 02:03:52 xorgcvs Exp $ */ - /* Copyright 1987, 1988, 1998 The Open Group @@ -49,7 +47,6 @@ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ -/* $XFree86: xc/lib/Xmu/GrayPixmap.c,v 1.5 2001/01/17 19:42:55 dawes Exp $ */ #ifdef HAVE_CONFIG_H #include <config.h> diff --git a/src/Initer.c b/src/Initer.c index f18492f..bd76784 100644 --- a/src/Initer.c +++ b/src/Initer.c @@ -1,5 +1,3 @@ -/* $Xorg: Initer.c,v 1.4 2001/02/09 02:03:52 xorgcvs Exp $ */ - /* Copyright 1988, 1989, 1998 The Open Group @@ -25,7 +23,6 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/Initer.c,v 1.6 2001/01/17 19:42:56 dawes Exp $ */ /* Created By: Chris D. Peterson * MIT X Consortium diff --git a/src/LocBitmap.c b/src/LocBitmap.c index 112f3cf..0cfbdaa 100644 --- a/src/LocBitmap.c +++ b/src/LocBitmap.c @@ -1,5 +1,3 @@ -/* $Xorg: LocBitmap.c,v 1.7 2001/02/09 02:03:52 xorgcvs Exp $ */ - /* Copyright 1989, 1998 The Open Group @@ -25,7 +23,6 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/LocBitmap.c,v 3.9 2001/12/14 19:55:47 dawes Exp $ */ /* * Author: Jim Fulton, MIT X Consortium diff --git a/src/Lookup.c b/src/Lookup.c index 27676c1..75b546d 100644 --- a/src/Lookup.c +++ b/src/Lookup.c @@ -1,5 +1,3 @@ -/* $Xorg: Lookup.c,v 1.4 2001/02/09 02:03:53 xorgcvs Exp $ */ - /* Copyright 1988, 1989, 1998 The Open Group @@ -25,7 +23,6 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/Lookup.c,v 3.7 2001/01/17 19:42:56 dawes Exp $ */ #ifdef HAVE_CONFIG_H #include <config.h> diff --git a/src/LookupCmap.c b/src/LookupCmap.c index e7d7008..5756b83 100644 --- a/src/LookupCmap.c +++ b/src/LookupCmap.c @@ -1,5 +1,3 @@ -/* $Xorg: LookupCmap.c,v 1.4 2001/02/09 02:03:53 xorgcvs Exp $ */ - /* Copyright 1989, 1998 The Open Group @@ -25,7 +23,6 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/Xmu/LookupCmap.c,v 1.7 2001/07/25 15:04:50 dawes Exp $ */ -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1pjlhy-0006qt...@alioth.debian.org