Edit

IABSD.fr/xenocara/app/xlsclients/ChangeLog

Branch :

  • Show log

    Commit

  • Author : matthieu
    Date : 2023-01-22 11:00:14
    Hash : 2ba75018
    Message : Update xlsclients to version 1.1.5

  • app/xlsclients/ChangeLog
  • commit 1050104d4aef1d09d61e31f313fe484b161fad23
    Author: Alan Coopersmith <alan.coopersmith@oracle.com>
    Date:   Sun Nov 13 09:45:35 2022 -0800
    
        xlsclients 1.1.5
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit 0cf445b33e15df1c194f2a8e2683ba5b1b2e4254
    Author: Alan Coopersmith <alan.coopersmith@oracle.com>
    Date:   Mon Oct 24 18:11:31 2022 -0700
    
        Resolve implicit conversion warnings from clang
        
        xlsclients.c:303:47: warning: implicit conversion changes signedness: 'int' to 'unsigned long' [-Wsign-conversion]
            qt_reply = malloc(sizeof(*qt_reply) * cs->list_length);
                                                ~ ~~~~^~~~~~~~~~~
        xlsclients.c:323:31: warning: implicit conversion changes signedness: 'int' to 'unsigned long' [-Wsign-conversion]
            cs = malloc(sizeof(*cs) + child_count * (sizeof(*cs->prop_cookie) + sizeof(*cs->tree_cookie) + sizeof(*cs->win)));
                                      ^~~~~~~~~~~ ~
        xlsclients.c:515:38: warning: implicit conversion changes signedness: 'unsigned int' to 'int' [-Wsign-conversion]
                    class_len = wm_class->value_len - name_len;
                              ~ ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~
        xlsclients.c:515:40: warning: implicit conversion changes signedness: 'int' to 'unsigned int' [-Wsign-conversion]
                    class_len = wm_class->value_len - name_len;
                                                    ~ ^~~~~~~~
        xlsclients.c:514:56: warning: implicit conversion loses integer precision: 'unsigned long' to 'int' [-Wshorten-64-to-32]
                    name_len = strnlen(res_name, wm_class->value_len) + 1;
                             ~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~
        xlsclients.c:520:15: warning: implicit conversion loses integer precision: 'unsigned long' to 'int' [-Wshorten-64-to-32]
                        class_len = strlen(res_class);
                                  ~ ^~~~~~~~~~~~~~~~~
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit 70b32490063a227e48fe06ec2e0e2c976b6eff12
    Author: Alan Coopersmith <alan.coopersmith@oracle.com>
    Date:   Mon Oct 24 18:02:18 2022 -0700
    
        usage: add cold & noreturn attributes to function
        
        As suggested by clang:
        xlsclients.c:69:1: warning: function 'usage' could be declared with attribute 'noreturn' [-Wmissing-noreturn]
        {
        ^
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit 99c7b421dbd083c3c16158982eabb28758868188
    Author: Alan Coopersmith <alan.coopersmith@oracle.com>
    Date:   Mon Oct 24 17:58:51 2022 -0700
    
        Handle -Wsign-compare warnings
        
        xlsclients.c: In function ‘show_client_properties’:
        xlsclients.c:485:19: warning: comparison of integer expressions of different signedness: ‘int’ and ‘uint32_t’ {aka ‘unsigned int’} [-Wsign-compare]
          485 |     for (i = 0; i < command->value_len && charsleft > 0; ) {
              |                   ^
        xlsclients.c:488:15: warning: comparison of integer expressions of different signedness: ‘int’ and ‘uint32_t’ {aka ‘unsigned int’} [-Wsign-compare]
          488 |         if (i < command->value_len && charsleft > 0) {
              |               ^
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit 977636f190306bddbe3d09123283484ff5bd1b33
    Author: Alan Coopersmith <alan.coopersmith@oracle.com>
    Date:   Mon Oct 24 17:55:37 2022 -0700
    
        Quiet -Wmaybe-uninitialized warnings from gcc
        
        I think these were false positives, as the accesses were all inside
        "if (cs->verbose)" checks, matching the initialization case for them,
        but this makes gcc stop warning.
        
        xlsclients.c:531:13: warning: ‘wm_class’ may be used uninitialized [-Wmaybe-uninitialized]
          531 |             free(wm_class);
              |             ^~~~~~~~~~~~~~
        xlsclients.c:440:31: note: ‘wm_class’ was declared here
          440 |     xcb_get_property_reply_t *wm_class;
              |                               ^~~~~~~~
        xlsclients.c:475:35: warning: ‘icon_name’ may be used uninitialized [-Wmaybe-uninitialized]
          475 |         if (icon_name && icon_name->type)
              |                          ~~~~~~~~~^~~~~~
        xlsclients.c:439:31: note: ‘icon_name’ was declared here
          439 |     xcb_get_property_reply_t *icon_name;
              |                               ^~~~~~~~~
        xlsclients.c:527:13: warning: ‘name’ may be used uninitialized [-Wmaybe-uninitialized]
          527 |             free(name);
              |             ^~~~~~~~~~
        xlsclients.c:438:31: note: ‘name’ was declared here
          438 |     xcb_get_property_reply_t *name;
              |                               ^~~~
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit c8d8a4e66279130605b73b5dcef61c31ae414d57
    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 c9c4b05c3acf831a1ec96bb71dc685bdf643d015
    Author: Alan Coopersmith <alan.coopersmith@oracle.com>
    Date:   Mon Dec 6 15:28:41 2021 -0800
    
        Build xz tarballs instead of bzip2
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit 226f6b378937ad4569b20657bf8f53a72c2b77e0
    Author: Alan Coopersmith <alan.coopersmith@oracle.com>
    Date:   Mon Dec 6 15:28:38 2021 -0800
    
        gitlab CI: add a basic build test
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit 7d58bc3084517a1cc40364feece4b268a8bef3f7
    Author: Alan Coopersmith <alan.coopersmith@oracle.com>
    Date:   Wed Nov 21 17:13:44 2018 -0800
    
        Update configure.ac bug URL for gitlab migration
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit bbf3525171ac7d643aba3202b47ea482a7fe481f
    Author: Alan Coopersmith <alan.coopersmith@oracle.com>
    Date:   Fri Nov 16 22:34:29 2018 -0800
    
        Update README for gitlab migration
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit e2d28acf38c77cdc95dc7cae558188a472ddab47
    Author: Alan Coopersmith <alan.coopersmith@oracle.com>
    Date:   Fri Mar 9 17:54:25 2018 -0800
    
        xlsclients 1.1.4
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit 6d2d5e0e5c74b85543d3aa727693b9589841efaa
    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 a0ee255f3a74fbac4155a8afdd217aae04222d8a
    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 662a47bd8e9dcdcaccf78ba46f5e1f95c6e5d8f7
    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 6f1f7f187326b476f0246fd138dfc2539540cde6
    Author: Alan Coopersmith <alan.coopersmith@oracle.com>
    Date:   Sat May 31 22:54:41 2014 -0700
    
        Print which option was in error along with usage message
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit 9f27a314b6e8527491f43c25ecca8344a476c629
    Author: Alan Coopersmith <alan.coopersmith@oracle.com>
    Date:   Sat May 31 22:46:24 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 bb00c8c00d8076ef5d044544ba3d0ae072e94567
    Author: Alan Coopersmith <alan.coopersmith@oracle.com>
    Date:   Sat May 31 22:46:24 2014 -0700
    
        configure: Drop AM_MAINTAINER_MODE
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit 1bdd68ccb6f107525d27a2963f01f7bc4830e643
    Author: Alan Coopersmith <alan.coopersmith@oracle.com>
    Date:   Sun Sep 8 09:56:46 2013 -0700
    
        xlsclients 1.1.3
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit c5de636fc500d5151ce4a4d0ceb0cbc152d73b49
    Author: Alan Coopersmith <alan.coopersmith@oracle.com>
    Date:   Fri Jul 19 00:48:10 2013 -0700
    
        Fix deconstification warnings from gcc
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit a67a804a43ad75efb3040c9e9e067fc60cde1256
    Author: Alan Coopersmith <alan.coopersmith@oracle.com>
    Date:   Fri Jul 19 00:45:13 2013 -0700
    
        Add -version flag to print version from PACKAGE_STRING
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit 81a64c9112b9d650106a01d8bcd246011d037bc2
    Author: Alan Coopersmith <alan.coopersmith@oracle.com>
    Date:   Tue Jan 22 22:46:42 2013 -0800
    
        Give unique names to the two reply variables in child_info
        
        Clears compiler warnings:
        
        xlsclients.c:253:28: warning: declaration shadows a local variable [-Wshadow]
                xcb_get_property_reply_t *reply;
                                          ^
        xlsclients.c:250:30: note: previous declaration is here
            xcb_query_tree_reply_t **reply;
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit 70c0bd30f0f77e70910d10f91ecca617d6b5acb7
    Author: Gaetan Nadon <memsize@videotron.ca>
    Date:   Sun Jan 22 20:19:45 2012 -0500
    
        configure.ac: regroup statements and comment
        
        Add missing AC_CONFIG_SRCDIR([Makefile.am])
        
        Move AC_USE_SYSTEM_EXTENSIONS higher up in Autoconf init section
        which must come before XORG_DEFAULT_OPTIONS
        
        Move XORG_DEFAULT_OPTIONS to its usual place with X.Org macros
        Note that AC_FUNC_STRNLEN calls AC_REQUIRE(AC_USE_SYSTEM_EXTENSIONS)
        
        Comment the strnlen function replacement.
        http://pubs.opengroup.org/onlinepubs/9699919799/functions/strlen.html
        
        No functional changes. Following the layout in
        http://www.x.org/wiki/NewModuleGuidelines
        
        Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
    
    commit 395f3573fe0124991eb9a2f33473ea2ed2fd422c
    Author: Gaetan Nadon <memsize@videotron.ca>
    Date:   Fri Jan 20 19:57:48 2012 -0500
    
        Revert "make: remove $(LIBOBJS) dead code"
        
        AC_FUNC_STRLEN is one of the functions that call AC_LIBOBJ
        which sets $LIBOBJ.
        
        This reverts commit 789a5b42a716b14429c67161147151dd57dd5480.
    
    commit 789a5b42a716b14429c67161147151dd57dd5480
    Author: Gaetan Nadon <memsize@videotron.ca>
    Date:   Fri Jan 20 15:19:26 2012 -0500
    
        make: remove $(LIBOBJS) dead code
        
        Starting at Autoconf 2.53, the use of LIBOBJS is an error.
        http://www.gnu.org/software/autoconf/manual/autoconf.html#
        AC_005fLIBOBJ-vs-LIBOBJS
        
        There are no system functions to override in this module.
        
        Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
    
    commit 5f064f70b183147578919166bedeca55cdb0af71
    Author: Alan Coopersmith <alan.coopersmith@oracle.com>
    Date:   Mon May 2 21:12:31 2011 -0700
    
        xlsclients 1.1.2
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit 61be3feb4cfc760f63d6b8a4debd3898fdc8fa16
    Author: Arnaud Fontaine <arnau@debian.org>
    Date:   Mon May 2 11:37:34 2011 +0900
    
        Depend on xcb >= 1.6 for XCB_ATOM_*.
        
        Signed-off-by: Arnaud Fontaine <arnau@debian.org>
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit 41689f150904be690f3aa96c283a7ee632d566ce
    Author: Dan Nicholson <dbn.lists@gmail.com>
    Date:   Mon Mar 7 14:21:09 2011 -0800
    
        Drop dependency on xcb-atom/xcb-util
        
        With commit 223851b6, the atom names from xcb/xproto.h are being used
        and xcb-atom is no longer needed.
        
        Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
        Reviewed-by: Jon TURNEY <jon.turney@dronecode.org.uk>
    
    commit 223851b68fedad730747652bc6560e40ca695ea7
    Author: Jon TURNEY <jon.turney@dronecode.org.uk>
    Date:   Mon Mar 7 13:54:53 2011 +0000
    
        Use XCB_ATOM_* atom names rather than deprecated atom names
        
        Those deprecated atom names were removed from xcb/util in commit
        2f0334b3eb49fa3a0d6daf6b9dde10e480a5c59f
        
        Found by tinderbox, see:
        
        http://tinderbox.freedesktop.org/builds/2011-03-06-0008/logs/xlsclients/#build
        http://tinderbox.freedesktop.org/builds/2011-03-07-0001/logs/xlsclients/#build
        
        Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
        Tested-by: Dan Nicholson <dbn.lists@gmail.com>
        Signed-off-by: Peter Harris <pharris@opentext.com>
    
    commit 1439da945a066c5bdf821a4f1af2bc356452e170
    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 2bb00a3e1d7eea20a232f079d41cd45985e0a721
    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 9a2a65ddea132b64d43b8f853ad7d3ca229d34fe
    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 d2dba124d303cf7b031c5f64293ac38b5a8418ab
    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 c1c91e1545ef34d0eeb4fb9b5577174121e28859
    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 29ad1d40dbd77d6efedd5d7db53e35650732dd6e
    Author: Alan Coopersmith <alan.coopersmith@oracle.com>
    Date:   Fri Sep 24 09:43:42 2010 -0700
    
        xlsclients 1.1.1
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit 050eb2ca576e11cf5781af38db1442f2c9dd2f56
    Author: Alan Coopersmith <alan.coopersmith@oracle.com>
    Date:   Fri Sep 24 09:23:51 2010 -0700
    
        config: Remove unnecessary calls from configure.ac
        
        AC_PROG_CC & AC_PROG_INSTALL are provided by XORG_DEFAULT_OPTIONS now
        PKG_CONFIG_MODULES handles AC_SUBST of the CFLAGS & LIBS variables
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit ca8d92fe63776474f3aa166bbedd9220ec560177
    Author: Alan Coopersmith <alan.coopersmith@oracle.com>
    Date:   Fri Sep 24 09:11:05 2010 -0700
    
        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.
        
        Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS
        Enables use of platform appropriate version of sed.
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit ffdf25c57b0e1b040523789b1e21fb24c0ec2e07
    Author: Gaetan Nadon <memsize@videotron.ca>
    Date:   Tue Jul 20 18:45:18 2010 -0400
    
        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 is 2.60 dated June 2006.
        
        ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz
        
        Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
    
    commit a8bd97c46f9671a02ad0d436142c9ff80cd5bc15
    Author: Alan Coopersmith <alan.coopersmith@oracle.com>
    Date:   Wed Jun 23 21:07:39 2010 -0700
    
        strnlen.h should be added to EXTRA_DIST, not overwrite it
        
        Fixes 'make distcheck' failure found by tinderbox:
        make[2]: *** No rule to make target `xlsclients.1', needed by `all-am'.  Stop.
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit f30f41b8dc37e775279835c97f2bea83a513dc10
    Author: Jeremy Huddleston <jeremyhu@apple.com>
    Date:   Fri Jun 4 22:14:23 2010 -0700
    
        Add strnlen.h to EXTRA_DIST
        
        Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
    
    commit cc6dbd2c1e7966b32e333142ab7630ed19700414
    Author: Alan Coopersmith <alan.coopersmith@oracle.com>
    Date:   Thu Jun 3 16:05:20 2010 -0700
    
        xlsclients 1.1.0
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    
    commit 1a4649f30813b02caac49de85e2f8b52b7a967fb
    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 677599f014077c139d42d1c081f24cfcd15882da
    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 d3a3f207f7ee1a4d6ee854d262f9875449bca29f
    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 ca9714918eaa05fb631448519c60457d00bb66ae
    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 8dda84e71446de8726846a2fa5c83b4354e4811b
    Author: Alan Coopersmith <alan.coopersmith@sun.com>
    Date:   Tue Oct 27 12:54:51 2009 -0700
    
        Add Copyright/License notice for xcb & strnlen changes to COPYING
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
    
    commit 9745fd920083438ef2c1566947f179b105bf8deb
    Author: Alan Coopersmith <alan.coopersmith@sun.com>
    Date:   Tue Oct 20 16:20:18 2009 -0700
    
        Fix check for xcb_connect failure
        
        Prevents core dump when display can't be opened
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
    
    commit 222dc9735d6fd2ab1b22003eb00348b98b87afe7
    Author: Gaetan Nadon <memsize@videotron.ca>
    Date:   Wed Oct 21 12:25:58 2009 -0700
    
        xlsclients 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.
    
    commit 7720fa29dfe664c363c27c0038a269bc8aeea74f
    Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
    Date:   Wed Oct 21 00:18:26 2009 -0500
    
        Use inttypes.h for correct printf formats
        
        xcb_atom_t and xcb_window_t are both typedef'd as uint32_t.
        
        Since PRI*32 are a C99 feature that may not be available, fallbacks
        are provided based on the assumption of a 32-bit int.
        
        Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
        Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
        Signed-off-by: Jamey Sharp <jamey@minilop.net>
    
    commit 2793689cc2eda675ec11a3a0cfed5e470fa83ee3
    Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
    Date:   Tue Oct 20 15:40:13 2009 -0700
    
        Add implementation of strnlen for systems without this function
        
        Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
        Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
    
    commit 1839eabbdd697039a264fe7ebb3f4d26f08ddabe
    Author: Peter Harris <pharris@opentext.com>
    Date:   Mon Oct 19 18:21:26 2009 -0700
    
        Rewrite xlsclients to use XCB, avoiding many (many) round trips
        
        This version spends bandwidth to reduce latency; in particular, it
        aggressively calls query_tree before the answer to get_property(WM_STATE) is
        available.
        
        Even on my local box, this version is 4-10 times faster (30ms typical, vs
        200ms typical for Xlib). I get similar results over the local network.
        
        At least one person reports this version takes less than 2 seconds over ssh,
        vs over a minute for the Xlib version (~30x faster).
        
        Reviewed-by: Jamey Sharp <jamey@minilop.net>
    
    commit 47f2d188a231a1c59d5d3030a1a2470c774d1e0d
    Author: Alan Coopersmith <alan.coopersmith@sun.com>
    Date:   Fri Oct 16 18:56:01 2009 -0700
    
        xlsclients 1.0.2
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
    
    commit 376f461667f06939ff442163e15feff96ce716b6
    Author: Alan Coopersmith <alan.coopersmith@sun.com>
    Date:   Fri Oct 16 18:54:25 2009 -0700
    
        Fill in COPYING file with copyright/license notice from code & docs
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
    
    commit 5e7259ed47251b2969a57b078f1e505d960bfd1a
    Author: Alan Coopersmith <alan.coopersmith@sun.com>
    Date:   Mon Oct 12 18:10:46 2009 -0700
    
        Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS
        
        Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
    
    commit 0f1f71e0338bb06ae70297f3215ce8489599c907
    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 bc6a081e2d51bf41c9c4e2f02b82601a7bd4a33e
    Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
    Date:   Thu Jan 22 15:52:43 2009 -0200
    
        Correct make distcheck and sparse warnings.
    
    commit e5161d278fcfbf7ec3c4a73b6580993ad563e7ea
    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 6ca14b864bbbc1b50bdf42806e0f1762a7cf9ca1
    Author: James Cloos <cloos@jhcloos.com>
    Date:   Mon Sep 3 05:51:36 2007 -0400
    
        Add *~ to .gitignore to skip patch/emacs droppings
    
    commit a594d26e113c64ff534692d868a5dcdbd548a48b
    Author: James Cloos <cloos@jhcloos.com>
    Date:   Thu Aug 23 19:24:59 2007 -0400
    
        Rename .cvsignore to .gitignore
    
    commit c7648ac811f6c959e6e74201c37f0774bc1159e0
    Author: Kevin E Martin <kem@kem.org>
    Date:   Wed Dec 21 02:29:52 2005 +0000
    
        Update package version for X11R7 release.
    
    commit 5d13f433f12ec1564c9cf9b3d0493bc8b8163b73
    Author: Adam Jackson <ajax@nwnk.net>
    Date:   Mon Dec 19 16:22:45 2005 +0000
    
        Stub COPYING files
    
    commit 7955793d1713f9917ec2e0ba7a175eead9da5694
    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 de5dc90f5febe52daab9a089fcb226149a7d37a2
    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 f88b24ebe74ddb225f12f10d2c74ef852e30668f
    Author: Kevin E Martin <kem@kem.org>
    Date:   Sat Dec 3 05:49:26 2005 +0000
    
        Update package version number for X11R7 RC3 release.
    
    commit 2b00b194bf146d22f89449dc55cfedfb66633042
    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 f183cb257095d2a8d02cbb99d6fe8121fdac2196
    Author: Eric Anholt <anholt@freebsd.org>
    Date:   Mon Nov 21 10:35:02 2005 +0000
    
        Another pass at .cvsignores for apps.
    
    commit 7b29ef60ab764a0d662f934b6133ecdd15001183
    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 1fbf3bec38cec44ba7a14890925104b0a8e97c8a
    Author: Eric Anholt <anholt@freebsd.org>
    Date:   Sun Nov 20 22:08:53 2005 +0000
    
        Add/improve .cvsignore files for apps.
    
    commit daf42472d8b8dea164258f9a4d3a2d362cc04d87
    Author: Kevin E Martin <kem@kem.org>
    Date:   Wed Oct 19 02:47:55 2005 +0000
    
        Update package version number for RC1 release.
    
    commit 4b6c61e82c0665be51157f7ea611024b2a8c344a
    Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
    Date:   Mon Oct 17 23:56:24 2005 +0000
    
        Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions to
            work better with BSD make
    
    commit 95f73789ffc2f1e1f85624a00215a539f84f309e
    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 231c23c7e1f424dc4075fdecf16d291cf60cd533
    Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
    Date:   Thu Oct 6 03:47:12 2005 +0000
    
        Fix file names of beforelight, x11perfcomp, and xlsclients man pages
    
    commit 33bb15df1f98464203100cc71026bca16d4f1f42
    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 8a7081e92b71fa14864ecd1aa47d433ae25d92b7
    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 9428b06892b05ff2382d1bf2032b062bc10a1013
    Author: Adam Jackson <ajax@nwnk.net>
    Date:   Wed Jul 20 19:32:02 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 bc737d5ade74d17b7b7af4d83b3a03cd570061c3
    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 208df1618f1509e8a3ffc2677a60a3bb0a98d4ca
    Author: Egbert Eich <eich@suse.de>
    Date:   Fri Apr 23 19:54:58 2004 +0000
    
        Merging XORG-CURRENT into trunk
    
    commit 4143e84ebf67868f0123063061250e46d2f54b61
    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 36452911208fb2afee18850aace32043150b518b
    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 c6d0786cde8ad0f09f623bcff358263488f7f696
    Author: Egbert Eich <eich@suse.de>
    Date:   Thu Feb 26 13:36:26 2004 +0000
    
        readding XFree86's cvs IDs
    
    commit eb6565bd3bf035fbbf9ee67a71c10b5a0fdc2f15
    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 863c432062bcfd43a04c19162ce61383b9ea8e3d
    Author: Kaleb Keithley <kaleb@freedesktop.org>
    Date:   Fri Nov 14 16:49:23 2003 +0000
    
        XFree86 4.3.0.1
    
    commit c687123ca586b6f54caec1c8c2c22f21c751c237
    Author: Kaleb Keithley <kaleb@freedesktop.org>
    Date:   Fri Nov 14 15:54:54 2003 +0000
    
        R6.6 is the Xorg base-line