Edit

IABSD.fr/xenocara/app/xlsatoms/ChangeLog

Branch :

  • Show log

    Commit

  • Author : matthieu
    Date : 2023-01-22 10:57:29
    Hash : 7d920486
    Message : Update xlsatoms to version 1.1.4

  • app/xlsatoms/ChangeLog
  • commit 28439223c8bafa32dc64504134e0a5fd8d2d16a3
    Author: Alan Coopersmith <alan.coopersmith@oracle.com>
    Date:   Sun Nov 13 09:29:10 2022 -0800
    
        xlsatoms 1.1.4
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit ab1dce3cee49f0c497b158a2a2dd3412d531e154
    Author: Alan Coopersmith <alan.coopersmith@oracle.com>
    Date:   Sat Oct 22 13:09:18 2022 -0700
    
        usage: add cold & noreturn attributes to function
        
        As suggested by clang:
        xlsatoms.c:56:1: warning: function 'usage' could be declared with
         attribute 'noreturn' [-Wmissing-noreturn]
        {
        ^
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit 41975db12f73a6f23d111c3e31b4f3a14ea88b68
    Author: Alan Coopersmith <alan.coopersmith@oracle.com>
    Date:   Sat Oct 22 13:03:14 2022 -0700
    
        Resolve clang -Wshorten-64-to-32 warnings
        
        xlsatoms.c:175:13: warning: implicit conversion loses integer precision:
          'long long' to 'xcb_atom_t' (aka 'unsigned int') [-Wshorten-64-to-32]
            *atom = value;
                  ~ ^~~~~
        
        xlsatoms.c:244:37: warning: implicit conversion loses integer precision:
          'long' to 'xcb_atom_t' (aka 'unsigned int') [-Wshorten-64-to-32]
                cookie[i] = xcb_get_atom_name(c, i + low);
                            ~~~~~~~~~~~~~~~~~    ~~^~~~~
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit 4265e8b5e6d363b5bef1fb217012eb4aee65a0cd
    Author: Alan Coopersmith <alan.coopersmith@oracle.com>
    Date:   Sat Oct 22 12:38:30 2022 -0700
    
        Variable scope reductions as suggested by cppcheck
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit fd33460f430cf043e9610847974b9b3892d57595
    Author: Alan Coopersmith <alan.coopersmith@oracle.com>
    Date:   Thu Jul 28 17:30:21 2022 -0700
    
        gitlab CI: stop requiring Signed-off-by in commits
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit c528ce16f323974bb2ab60543e37f2ca5f76128c
    Author: Alan Coopersmith <alan.coopersmith@oracle.com>
    Date:   Mon Dec 6 15:26:29 2021 -0800
    
        Build xz tarballs instead of bzip2
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit b097e523402f9a7742e609ff57fef6fec58439f9
    Author: Alan Coopersmith <alan.coopersmith@oracle.com>
    Date:   Mon Dec 6 15:26:24 2021 -0800
    
        gitlab CI: add a basic build test
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit 90e2f5a00d304c8b344f42a72b4543f6e4fd4cd6
    Author: Alan Coopersmith <alan.coopersmith@oracle.com>
    Date:   Tue Feb 19 15:27:23 2019 -0800
    
        xlsatoms 1.1.3
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit d7e52dc1d62164ce5a68c276d46c9f7283b5e040
    Author: Alan Coopersmith <alan.coopersmith@oracle.com>
    Date:   Wed Nov 21 17:13:31 2018 -0800
    
        Update configure.ac bug URL for gitlab migration
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit 4f3b875fad61a3f3457f036412cdf5b0a69fe300
    Author: Alan Coopersmith <alan.coopersmith@oracle.com>
    Date:   Fri Nov 16 22:33:37 2018 -0800
    
        Update README for gitlab migration
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit 1ffbd9c5be8fb61bcbe9bb06d349af54bfbb2f3b
    Author: Tobias Stoeckmann <tobias@stoeckmann.org>
    Date:   Wed Jul 4 15:33:18 2018 +0200
    
        Adjust man page to show default format.
        
        The default format is %lu\t%s, not %ld\t%s, i.e. unsigned.
        
        Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit 52a6e57bfd7f273fc754c12a44eb94200f3de0b9
    Author: Tobias Stoeckmann <tobias@stoeckmann.org>
    Date:   Wed Jul 4 15:29:58 2018 +0200
    
        Always use chunks when retrieving atoms.
        
        If a low and high range limit has been specified, all atoms are
        retrieved at once. This is also the reason why malloc() is used:
        All cookies are stored before collecting the data.
        
        By using chunks it is possible to specify a huge range or even
        all possible atoms without running out of memory.
        
        Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit 3e27b6a63f3baf153bba076e12870f2a88691a13
    Author: Tobias Stoeckmann <tobias@stoeckmann.org>
    Date:   Wed Jul 4 15:29:26 2018 +0200
    
        Actually stop after an invalid atom.
        
        The manual page states that if no upper range limit has been specified,
        no higher atoms will be printed. This is not true for
        
        $ xlsatoms -range 0-
        
        This prints the first 100 atoms, even though it already encountered an
        invalid one at 0. The reason is that say_batch works as a batch, i.e.
        retrieves 100 atoms at a time. If one of them is invalid, the rest is
        still printed.
        
        With this adjustment, xlsatoms behaves as stated in manual page.
        
        Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit 22a8eb00662a926cd5df52ba15851a31104ae41e
    Author: Tobias Stoeckmann <tobias@stoeckmann.org>
    Date:   Wed Jul 4 15:28:41 2018 +0200
    
        Support xcb_atom_t in range specification.
        
        The data type xcb_atom_t is an unsigned int (32 bit), but the optional
        range argument is parsed with atoi(), which returns a signed int.
        
        Even though it is possible to reach all values through clever casting,
        it is more readable by properly using correct data types.
        
        This also fixes a segmentation fault on 32 bit systems if a range is
        supplied which overflows size_t:
        
        $ xlsatoms -range 0-1073741824
        Segmentation fault (core dumped)
        
        If an invalid range is supplied, an error message is printed. This is
        new because previously an invalid range was silently accepted.
        
        $ xlsatoms -range 0--1
        $ _
        $ xlsatoms-new -range 0--1
        xlsatoms-new:  invalid range: 0--1
        
        Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit c0812822f34affaae3c3eced8a625535e515a290
    Author: Mihail Konev <k.mvc@ya.ru>
    Date:   Thu Jan 26 14:00:21 2017 +1000
    
        autogen: add default patch prefix
        
        Signed-off-by: Mihail Konev <k.mvc@ya.ru>
    
    commit ba6492896481220c5a6095fbed1952ca2cecbb8e
    Author: Emil Velikov <emil.l.velikov@gmail.com>
    Date:   Mon Mar 9 12:00:52 2015 +0000
    
        autogen.sh: use quoted string variables
        
        Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent
        fall-outs, when they contain space.
        
        Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
        Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
        Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
    
    commit 6d0ab94a3822ee6617102cb8b25a1d9dda298fb8
    Author: Peter Hutterer <peter.hutterer@who-t.net>
    Date:   Tue Jan 24 10:32:07 2017 +1000
    
        autogen.sh: use exec instead of waiting for configure to finish
        
        Syncs the invocation of configure with the one from the server.
        
        Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
        Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
    
    commit 8b773cc5ccc8568f3b089229b5ae85ebaca94836
    Author: Alan Coopersmith <alan.coopersmith@oracle.com>
    Date:   Thu Apr 16 23:49:40 2015 -0700
    
        xlsatoms 1.1.2
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit a58064faa6cc5488e514debd3dfc023741d6a9ea
    Author: Alan Coopersmith <alan.coopersmith@oracle.com>
    Date:   Sat May 31 22:43:41 2014 -0700
    
        Add -version option to print program version
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit d684b13c7b3b8fbdda6d84dae342ad901672eb1c
    Author: Alan Coopersmith <alan.coopersmith@oracle.com>
    Date:   Sat May 31 22:38:12 2014 -0700
    
        Print which option was in error along with usage message
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit 9bb0fa36540533e776c59c0d33ed3f404956f44a
    Author: Alan Coopersmith <alan.coopersmith@oracle.com>
    Date:   Sat May 31 22:27:59 2014 -0700
    
        autogen.sh: Honor NOCONFIGURE=1
        
        See http://people.gnome.org/~walters/docs/build-api.txt
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit 0859ea63708679d9e759f3302ef869bf5b657370
    Author: Alan Coopersmith <alan.coopersmith@oracle.com>
    Date:   Sat May 31 22:27:59 2014 -0700
    
        configure: Drop AM_MAINTAINER_MODE
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit 86dc282447607b0087cfa936f2216fc224d88599
    Author: Alan Coopersmith <alan.coopersmith@oracle.com>
    Date:   Sat May 31 22:27:53 2014 -0700
    
        config: Add missing AC_CONFIG_SRCDIR
        
        Regroup AC statements under the Autoconf initialization section.
        Regroup AM statements under the Automake initialization section.
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit 7a43915d29ba56cd11d92c89720153fba3e92be4
    Author: Alan Coopersmith <alan.coopersmith@oracle.com>
    Date:   Sat Feb 23 11:35:47 2013 -0800
    
        Combine usage message into single string/call
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit d828ec2c209ea031891cbc7ab9c9d2f6832ebc4d
    Author: Alan Coopersmith <alan.coopersmith@oracle.com>
    Date:   Sat Mar 31 16:48:11 2012 -0700
    
        xlsatoms 1.1.1
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit be56f627ae4c1324761332d7afc98cc64cd53d84
    Author: Alan Coopersmith <alan.coopersmith@oracle.com>
    Date:   Fri Nov 11 23:08:39 2011 -0800
    
        Fix gcc -Wwrite-strings warnings
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit 39f6652cf2c0edfe336842718f7c5bc69961463c
    Author: Gaetan Nadon <memsize@videotron.ca>
    Date:   Wed Jan 19 10:06:56 2011 -0500
    
        config: move man pages into their own directory
        
        Use services provided by XORG_MANPAGE_SECTIONS.
        Use standard Makefile for man pages.
        
        Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
    
    commit e9e7baa39cff01acfbf90065df65dd0907f2273f
    Author: Gaetan Nadon <memsize@videotron.ca>
    Date:   Thu Jan 13 17:15:36 2011 -0500
    
        man: replace hard coded man page section with substitution strings
        
        Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
    
    commit 095f461e49e050a34c0c0a0d082a1b99ed2f23ba
    Author: Gaetan Nadon <memsize@videotron.ca>
    Date:   Thu Jan 13 11:15:47 2011 -0500
    
        man: remove trailing spaces and tabs
        
        Using s/[ \t]*$//
        
        Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
    
    commit 6051fa92d1c7da1579662d80aba3493b4cfb2b59
    Author: Gaetan Nadon <memsize@videotron.ca>
    Date:   Wed Jan 12 16:28:02 2011 -0500
    
        config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
        
        This silences an Autoconf warning
    
    commit c1599d956b11a49c8b4d9dda897a7f27be0cbb12
    Author: Gaetan Nadon <memsize@videotron.ca>
    Date:   Wed Jan 12 15:12:08 2011 -0500
    
        config: remove unrequired AC_SUBST([*_LIBS])
        
        This macro is called by PKG_CHECK_MODULES
        
        Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
    
    commit 65a27c5c6814fdfab9e83c210ddccbc93727755f
    Author: Gaetan Nadon <memsize@videotron.ca>
    Date:   Wed Jan 12 13:33:48 2011 -0500
    
        config: remove unrequired AC_SUBST([*_CFLAGS])
        
        This macro is called by PKG_CHECK_MODULES
        
        Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
    
    commit ab83284df85569164d6e79c1572d2a8da5202581
    Author: Gaetan Nadon <memsize@videotron.ca>
    Date:   Wed Jan 12 13:10:21 2011 -0500
    
        config: remove AC_PROG_CC as it overrides AC_PROG_C_C99
        
        XORG_STRICT_OPTION from XORG_DEFAULT_OPTIONS calls
        AC_PROG_C_C99. This sets gcc with -std=gnu99.
        If AC_PROG_CC macro is called afterwards, it resets CC to gcc.
        
        Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
    
    commit 5305f3d3d2eb1a62e9c7f2fa0cc4a4288f55a498
    Author: Gaetan Nadon <memsize@videotron.ca>
    Date:   Wed Jan 12 11:54:40 2011 -0500
    
        config: use AC_PROG_INSTALL now supplied by XORG_DEFAULT_OPTIONS
        
        It depends on util-macros 1.8 or later
        The existing statement can now be removed from the configuration file.
        
        Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
    
    commit 2d0146545e6287f18872b4ed64595b79b05bf19b
    Author: Gaetan Nadon <memsize@videotron.ca>
    Date:   Wed Jan 12 11:23:52 2011 -0500
    
        config: upgrade to util-macros 1.8 for additional man page support
        
        Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS
        The value of MAN_SUBST is the same for all X.Org packages.
        
        Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
    
    commit 679ed6f298e1ffc40811ccb56b4d28e1940fab71
    Author: Gaetan Nadon <memsize@videotron.ca>
    Date:   Wed Jan 12 10:21:24 2011 -0500
    
        config: update AC_PREREQ statement to 2.60
        
        Unrelated to the previous patches, the new value simply reflects
        the reality that the minimum level for autoconf to configure
        all x.org modules in one pass is 2.60 dated June 2006.
        
        A version later than 2.60 can be used, but no new features from such
        a later version can be used in configure.ac.
        
        Although the code in this module can be configured with a version earlier
        than 2.60, most of code is now contained in macros from util-macros
        which use features of version 2.60, at the present or in the future.
        
        ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz
        
        Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
    
    commit 69097d56e4c84a4bc86c6d30eac6f6e60a1c6c63
    Author: Jesse Adkins <jesserayadkins@gmail.com>
    Date:   Tue Sep 28 13:29:50 2010 -0700
    
        Purge cvs tags.
        
        Signed-off-by: Jesse Adkins <jesserayadkins@gmail.com>
    
    commit 79b7392f981798941b9fba368c2bf0aeeb7a9ade
    Author: Alan Coopersmith <alan.coopersmith@oracle.com>
    Date:   Thu Jun 3 16:30:16 2010 -0700
    
        xlsatoms 1.1.0
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit 3e7bbf02cda54f13307acedfa9c795ac73caf177
    Author: Peter Harris <pharris@opentext.com>
    Date:   Thu Nov 12 15:23:11 2009 -0500
    
        Convert xlsatoms to XCB
        
        This dramatically improves latency, at the cost of a small amount of
        bandwidth.
        
        (Theoretically. In practice, it actually saves bandwidth by reducing the
        number of IP headers, Ethernet frames, PPP headers, ATM frames...)
        
        Signed-off-by: Peter Harris <pharris@opentext.com>
        Reviewed-By: Jeremy Huddleston <jeremyhu@apple.com>
    
    commit c8a5d66d5d330ede649a2b3bef85dd45ea0c983f
    Author: Gaetan Nadon <memsize@videotron.ca>
    Date:   Thu Nov 26 09:19:54 2009 -0500
    
        Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
        
        Now that the INSTALL file is generated.
        Allows running make maintainer-clean.
    
    commit 59349aa469bc21173842ea2857f59d3583fb614f
    Author: Gaetan Nadon <memsize@videotron.ca>
    Date:   Wed Oct 28 14:09:08 2009 -0400
    
        INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
        
        Add missing INSTALL file. Use standard GNU file on building tarball
        README may have been updated
        Remove AUTHORS file as it is empty and no content available yet.
        Remove NEWS file as it is empty and no content available yet.
    
    commit 977c06ded7e8cb030cb4f2eb57ad30b0c3ad1b5f
    Author: Gaetan Nadon <memsize@videotron.ca>
    Date:   Mon Oct 26 22:08:39 2009 -0400
    
        Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
        
        ChangeLog filename is known to Automake and requires no further
        coding in the makefile.
    
    commit 03c48c956ca1e86da6f3607b4f988a83950a212e
    Author: Gaetan Nadon <memsize@videotron.ca>
    Date:   Thu Oct 22 12:34:15 2009 -0400
    
        .gitignore: use common defaults with custom section # 24239
        
        Using common defaults will reduce errors and maintenance.
        Only the very small or inexistent custom section need periodic maintenance
        when the structure of the component changes. Do not edit defaults.
    
    commit 1b6da9070e153ae812a925dc38e5a5de6b3a4a4f
    Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
    Date:   Wed Oct 21 12:47:21 2009 -0700
    
        This is not a GNU project, so declare it foreign.
        
        On Wed, 2009-10-21 at 13:36 +1000, Peter Hutterer wrote:
        > On Tue, Oct 20, 2009 at 08:23:55PM -0700, Jeremy Huddleston wrote:
        > > I noticed an INSTALL file in xlsclients and libXvMC today, and it
        > > was quite annoying to work around since 'autoreconf -fvi' replaces
        > > it and git wants to commit it.  Should these files even be in git?
        > > Can I nuke them for the betterment of humanity and since they get
        > > created by autoreconf anyways?
        >
        > See https://bugs.freedesktop.org/show_bug.cgi?id=24206
        
        As an interim measure, replace AM_INIT_AUTOMAKE([dist-bzip2]) with
        AM_INIT_AUTOMAKE([foreign dist-bzip2]). This will prevent the generation
        of the INSTALL file. It is also part of the 24206 solution.
        
        Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
    
    commit f2cc7491570242830ab55c7a736b9f157e3d4e3f
    Author: Alan Coopersmith <alan.coopersmith@sun.com>
    Date:   Mon Oct 12 21:17:15 2009 -0700
    
        xlsatoms 1.0.2
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
    
    commit a7da06480105f97e245f446cd8e2e807ff4720d9
    Author: Alan Coopersmith <alan.coopersmith@sun.com>
    Date:   Mon Oct 12 21:16:29 2009 -0700
    
        Fill in COPYING with copyright/license notices from code
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
    
    commit bf8b5f9137b59314c26802d388ad3ad66be706ae
    Author: Alan Coopersmith <alan.coopersmith@sun.com>
    Date:   Mon Oct 12 21:14:44 2009 -0700
    
        Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
    
    commit b4bf6ca53f42eedf49c9322524b400d48d32577c
    Author: Alan Coopersmith <alan.coopersmith@sun.com>
    Date:   Thu Oct 1 14:54:26 2009 -0700
    
        Add README with pointers to mailing lists, bugzilla, & git
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
    
    commit 9eeccfd4c9019f8c15ddcf4f6204c82335d4cadd
    Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
    Date:   Thu Jan 22 15:47:55 2009 -0200
    
        Correct make distcheck and sparse warnings.
    
    commit e14ae0d017094ce463837c89098e4e07fef5524b
    Author: James Cloos <cloos@jhcloos.com>
    Date:   Thu Dec 6 16:37:23 2007 -0500
    
        Replace static ChangeLog with dist-hook to generate from git log
    
    commit a00d1dcb7aa09eb45334c8e07399c54d4a0d2b01
    Author: James Cloos <cloos@jhcloos.com>
    Date:   Mon Sep 3 05:51:33 2007 -0400
    
        Add *~ to .gitignore to skip patch/emacs droppings
    
    commit ea841266aa043769b31b62c979f868e1ae22891b
    Author: James Cloos <cloos@jhcloos.com>
    Date:   Thu Aug 23 19:24:58 2007 -0400
    
        Rename .cvsignore to .gitignore
    
    commit 416948a936bdc1880aae75661baa06096a4ed600
    Author: Kevin E Martin <kem@kem.org>
    Date:   Wed Dec 21 02:29:51 2005 +0000
    
        Update package version for X11R7 release.
    
    commit 4ddbc9132d96247ad6fb943007787e2eece5f752
    Author: Adam Jackson <ajax@nwnk.net>
    Date:   Mon Dec 19 16:22:45 2005 +0000
    
        Stub COPYING files
    
    commit 117c45ff10002e82a61d1e045a1ebb19474693f4
    Author: Kevin E Martin <kem@kem.org>
    Date:   Thu Dec 15 00:24:08 2005 +0000
    
        Update package version number for final X11R7 release candidate.
    
    commit 98bcfddcf7ca35c291af23798251739a21d833c1
    Author: Kevin E Martin <kem@kem.org>
    Date:   Tue Dec 6 22:48:23 2005 +0000
    
        Change *man_SOURCES ==> *man_PRE to fix autotools warnings.
    
    commit c347e0f1f24f63c82654cf68dc3ec7e020028ee2
    Author: Kevin E Martin <kem@kem.org>
    Date:   Sat Dec 3 05:49:25 2005 +0000
    
        Update package version number for X11R7 RC3 release.
    
    commit c41494f146e98abf24159891cfb4f623abd32aa1
    Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
    Date:   Mon Nov 28 22:01:44 2005 +0000
    
        Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4
            update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir)
    
    commit 5da8a3aae794223262a6baa67be735b15d251823
    Author: Eric Anholt <anholt@freebsd.org>
    Date:   Mon Nov 21 10:35:02 2005 +0000
    
        Another pass at .cvsignores for apps.
    
    commit 513fe86ba2e5b341f06189925788d12db5eb840f
    Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
    Date:   Mon Nov 21 03:14:16 2005 +0000
    
        Change dependency from xmu to xmuu since the full xmu (with all its baggage
            like Xt) is not needed here.
    
    commit 527b931684a88276c199482394e7a0d9efc1ed6c
    Author: Eric Anholt <anholt@freebsd.org>
    Date:   Sun Nov 20 22:08:53 2005 +0000
    
        Add/improve .cvsignore files for apps.
    
    commit de4d6344e8a815d1487a475548253c4209800a50
    Author: Kevin E Martin <kem@kem.org>
    Date:   Wed Oct 19 02:47:55 2005 +0000
    
        Update package version number for RC1 release.
    
    commit ed265d91126ad170310f9c8ec25001a77804128b
    Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
    Date:   Mon Oct 17 23:56:23 2005 +0000
    
        Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions to
            work better with BSD make
    
    commit ec56e606da86b5fba8b5bd8a4ab05ca8bd126da7
    Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
    Date:   Fri Oct 14 00:25:46 2005 +0000
    
        Use sed to fill in variables in man page
    
    commit f486eb03eb2281709466d8dc978b19ebe7ab7815
    Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
    Date:   Mon Aug 1 20:25:30 2005 +0000
    
        Install man pages to section 1 instead of section m (Patch from Donnie
            Berkholz)
    
    commit 94786076dbf8b5fa7ff375c51665de58e3b6ae36
    Author: Kevin E Martin <kem@kem.org>
    Date:   Fri Jul 29 21:22:35 2005 +0000
    
        Various changes preparing packages for RC0:
        - Verify and update package version numbers as needed
        - Implement versioning scheme
        - Change bug address to point to bugzilla bug entry form
        - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to
            reenable it)
        - Fix makedepend to use pkgconfig and pass distcheck
        - Update build script to build macros first
        - Update modular Xorg version
    
    commit 34c4875ac98c9e539aabc5f5317b992d4697289a
    Author: Adam Jackson <ajax@nwnk.net>
    Date:   Wed Jul 20 19:32:01 2005 +0000
    
        Use a unique token for PKG_CHECK_MODULES. Otherwise, if you use a global
            configure cache, you cache it, and the cached value is probably wrong.
    
    commit 0dd5d7bf6f87df04b4d83ba5cc9356c6eed71088
    Author: Søren Sandmann Pedersen  <sandmann@daimi.au.dk>
    Date:   Tue Jul 5 22:51:10 2005 +0000
    
        Add build systems for xlogo, xlsatoms, xlsclients, xmag, xman, xmessage,
            xmh, xmore. lib/Xaw/xaw.m4: Add an AM_CONDITIONAL and a shell variable
            xaw_use_xprint symlink.sh: add some extra files for xgc, xinit,
            xkbcomp, xlogo, xmb, and xmodmap xc/programs/xmore/xmore.c:
            Conditionalize use of xprint
    
    commit 0e0e651357c2fd8787a3b7007120e0776f2063af
    Author: Egbert Eich <eich@suse.de>
    Date:   Fri Apr 23 19:54:58 2004 +0000
    
        Merging XORG-CURRENT into trunk
    
    commit b156707c5bb2a8f3b2082592a077046a75f4df70
    Author: Egbert Eich <eich@suse.de>
    Date:   Sun Mar 14 08:35:37 2004 +0000
    
        Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004
    
    commit d9e726bd64a5262581c5e84435c9eac2792f8242
    Author: Egbert Eich <eich@suse.de>
    Date:   Wed Mar 3 12:13:14 2004 +0000
    
        Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004
    
    commit d4e13464edb1a19de8928c08ceaea989d50867c4
    Author: Egbert Eich <eich@suse.de>
    Date:   Thu Feb 26 13:36:26 2004 +0000
    
        readding XFree86's cvs IDs
    
    commit 30f72fe384a5ed45de0e7ba92ff3630474ed4f64
    Author: Egbert Eich <eich@suse.de>
    Date:   Thu Feb 26 09:24:14 2004 +0000
    
        Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
    
    commit d5631467e162bbf58d62b506ef817b16ba93cd06
    Author: Kaleb Keithley <kaleb@freedesktop.org>
    Date:   Fri Nov 14 16:49:23 2003 +0000
    
        XFree86 4.3.0.1
    
    commit c4577392d4ebbd4a4fdf37720982cb378b5749a0
    Author: Kaleb Keithley <kaleb@freedesktop.org>
    Date:   Fri Nov 14 15:54:54 2003 +0000
    
        R6.6 is the Xorg base-line