commit a3dbc26fd37456d95be8ade4e50fad1aa8ba7867
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Aug 16 16:47:15 2026 -0700

    lndir 1.0.6
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 16a8b6fc322cec32b7adb55619b0bc49c85716c6
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Mon Jul 6 16:30:52 2026 -0700

    meson: include headers when checking for functions
    
    Trying to workaround https://github.com/mesonbuild/meson/issues/3740
    which causes meson to fail to detect missing functions in some cases.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/util/lndir/-/merge_requests/11>

commit ea30f606864ad578d4a5b5134db26d6953a07522
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Apr 25 15:30:50 2026 -0700

    meson: Add option to build with meson
    
    Also updates the gitlab CI config to test both build types
    and compare the generated output/installed files.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/util/lndir/-/merge_requests/10>

commit c62564620570c5a432b03e7957b4b0988f739884
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Jan 11 11:20:41 2026 -0800

    gitlab CI: drop the ci-fairy check-mr job
    
    The only thing this checked was the checkbox for allowing maintainers to
    edit the MR. Changed permissions checks now fail this job but luckily
    the setting it checked has been the default for years anyway so we can
    drop it.
    
    https://gitlab.freedesktop.org/freedesktop/ci-templates/-/issues/81
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/util/lndir/-/merge_requests/10>

commit 66736fa3ffff50a46982c4ffd56ee7ab8a09704a
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Tue Apr 15 17:29:06 2025 -0700

    Add -help and -version options
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/util/lndir/-/merge_requests/9>

commit d7f9a5ceefa1a60ab3abfa575e0db97e5420a00b
Author: Bjarni Ingi Gislason <bjarniig@simnet.is>
Date:   Tue Mar 18 02:34:45 2025 +0000

    lndir.1: editorial changes for this man page
    
    Originally from https://bugs.debian.org/1100739
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/util/lndir/-/merge_requests/9>

commit 3588595dc47736773a2d577db615e51a2dc7b48a
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Mar 24 15:47:53 2024 -0700

    lndir 1.0.5
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit ab11cfec562772e540468fc861d8acb1a38b5fad
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat May 20 13:04:08 2023 -0700

    Fix #1: Segmentation fault on trailing slashes
    
    dodir may pass a NULL pointer for the **p argument so we verify the
    pointer is not NULL before dereferencing it.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 5b0c98895caa066a760384cf1967ceb966151f04
Author: Naïm Favier <n@monade.li>
Date:   Wed Mar 29 12:39:59 2023 +0000

    Make existing link warning more explicit

commit ca7786249d4f0cb1b0ef2c3694dfb89d6c9962a9
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Dec 4 16:01:42 2022 -0800

    lndir 1.0.4
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit c7f46ebed5d731361ce96ce0745a7b59a53f32ff
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Wed Oct 19 16:53:57 2022 -0700

    Use strlcat and strlcpy if available
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit f8c6c99000e4677ac2d0aab79b8e0ed561f170bc
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Wed Oct 19 12:28:41 2022 -0700

    Use memmove instead of strcpy for overlapping strings
    
    strcpy is not guaranteed to work with overlapping arguments.
    Fortunately this code is only called on paths with multiple
    consecutive '/' characters.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 719f5b869d21794aeaab6101ed62242626e95f52
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Wed Oct 19 11:32:41 2022 -0700

    Reduce number of strcmp calls to check directory names for revision control
    
    Group directory names to match depending on whether they start
    with a "." or not, when not using -withrevinfo.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit d95bc26cd3686d345136b34462cc77b591b459ba
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Wed Oct 19 11:13:56 2022 -0700

    Fix -Wsign-conversion warning from clang
    
    lndir.c:174:18: warning: implicit conversion changes signedness: 'nlink_t' (aka 'unsigned int') to 'int' [-Wsign-conversion]
        n_dirs = fs->st_nlink;
               ~ ~~~~^~~~~~~~
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit e0ca083dada62cff23b58e9c55b48c854a436ff8
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Wed Oct 19 11:10:52 2022 -0700

    Fix -Wshorten-64-to-32 warnings from clang
    
    lndir.c:252:11: warning: implicit conversion loses integer precision: 'ssize_t' (aka 'long') to 'int' [-Wshorten-64-to-32]
            symlen = readlink (dp->d_name, symbuf, sizeof(symbuf) - 1);
                   ~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    lndir.c:261:19: warning: implicit conversion loses integer precision: 'ssize_t' (aka 'long') to 'int' [-Wshorten-64-to-32]
                basesymlen = readlink(buf, basesym, sizeof(basesym) - 1);
                           ~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit bc75934a8912b237a7f4658d7cf28ddd9a766d41
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Wed Oct 19 11:07:29 2022 -0700

    Mark global variables as static
    
    Clears -Wmissing-variable-declarations warnings from clang
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 2cddd8041cf5b6369d2216d0ffbdfa2821869215
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Wed Oct 19 11:01:50 2022 -0700

    constify a couple more function arguments
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 6f4cd1fc5bbfc64f3998d245b163d8300fae746b
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 d57c95444ef1fee86003e942bdd4b0d9a0e6849c
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>
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 46864fc31ec956c43a1f867e598aba971ed035c4
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>
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit a8a14a9dae71ba66148cc405fab3c1439a5dbc1a
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Jun 18 09:44:26 2022 -0700

    Use AC_CONFIG_FILES to replace the deprecated AC_OUTPUT with parameters
    
    configure.ac:47: warning: AC_OUTPUT should be used without arguments.
    configure.ac:47: You should run autoupdate.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 223844cf48ed5d889ba224a94503a7e412cdfbb4
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Jan 15 15:30:03 2022 -0800

    gitlab CI: add a basic build test
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 531d393f8a541565dcdf06269f139a5a1d705861
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Jan 15 15:26:00 2022 -0800

    Build xz tarballs instead of bzip2
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 3fa00f11025e84365ac7f02ebd632a83911a4de2
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Dec 7 20:29:29 2018 -0800

    Update configure.ac bug URL for gitlab migration
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 9030aab24e50943703bf6162b9a00151ca9598fa
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Mon Nov 19 23:36:31 2018 -0800

    Update README for gitlab migration
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 8b1b35bffe2cc6f6f2e2a8255fc8b0a977054516
Author: Mihail Konev <k.mvc@ya.ru>
Date:   Thu Jan 26 14:00:22 2017 +1000

    autogen: add default patch prefix
    
    Signed-off-by: Mihail Konev <k.mvc@ya.ru>

commit a3665433034b12c18b8040ffb0fe422139caeb89
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Wed Jun 4 18:15:27 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 01e615030ce4e6c9a8eb3316bb072eb1f7d18a10
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Wed Jun 4 18:15:27 2014 -0700

    configure: Drop AM_MAINTAINER_MODE
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 70ac3aeac918c916fffb6b2ee09514f50beb0ce9
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Wed Mar 7 21:50:44 2012 -0800

    lndir 1.0.3
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit cc807bb858287537da97be0051318f15bf712a76
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Wed Sep 28 14:46:18 2011 -0700

    Add printf & noreturn attributes for static analysis
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 966e58a5522c56ad5144ad5fe51273f24e9e729e
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Wed Sep 28 14:43:27 2011 -0700

    Add const attributes to fix gcc -Wwrite-strings warnings
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 2eb55c2ed3a0e01466cb64d2e74905461eac3c66
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat May 7 23:39:56 2011 -0700

    config: Remove unnecessary AC_SUBST from configure.ac
    
    PKG_CONFIG_MODULES handles AC_SUBST of the CFLAGS & LIBS variables
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 847f506047b3e7b9390f50d3b12f041cdfd1b2a3
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat May 7 23:37:46 2011 -0700

    config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
    
    Regroup AC statements under the Autoconf initialization section.
    Regroup AM statements under the Automake initialization section.
    Add missing AC_CONFIG_SRCDIR
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit e20d41e86c18cac3dfc61bd1d61a52694a40b7de
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat May 7 23:30:24 2011 -0700

    Convert main() to use traditional argc & argv names instead of ac & av
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit da14ef5b73bd8bfd57af9ee7541ec2ae96d3d03b
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat May 7 23:28:27 2011 -0700

    Add missing -withrevinfo flag to usage output
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 9da4c0b964f96ef8bd37cf5e3f74a86b93e890f7
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Aug 13 21:11:32 2010 -0700

    lndir 1.0.2
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit be233b8d31026dc7554ff0c8628df3c5ba4f1b90
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Aug 13 21:09:26 2010 -0700

    Let XORG_DEFAULT_OPTIONS handle AC_PROG_CC & AC_PROG_INSTALL
    
    Don't need to duplicate calls to them (potentially overriding
    the c99 settings from the xorg-macros calls)
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 57791c8b2192afdf1e4ef335509baec654bffcf0
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Aug 13 21:04:52 2010 -0700

    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
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 5a5e5a83b335f4203c927b539d4c8b6ee53719c3
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Apr 16 01:25:03 2010 -0700

    Man page: note that *~ is always skipped, update second list of scm subdirs
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit a0ddf1288b3fc6cf628f1ee69b585615387b5b1a
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Apr 16 01:15:45 2010 -0700

    Enable AC_SYS_LARGEFILE & AC_USE_SYSTEM_EXTENSIONS
    
    Avoids stat() failures on 32-bit platforms if a file has a size
    that doesn't fit in 32-bits
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit ae6ada745e48a6366cb91a5ce6692e22ad8077ae
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Apr 16 01:04:22 2010 -0700

    Assume POSIX, lose support for old Minix & LynxOS
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 17f97355310d75b05bb3f7a1007ca752fe100029
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Apr 16 00:57:24 2010 -0700

    Move to xorg-macros 1.4 & use INSTALL_CMD to generate INSTALL file
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>

commit fb043c2097e12b0d0c6056727fd0274229601cc2
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Apr 16 01:01:22 2010 -0700

    Fill in COPYING & README files
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit ba8299f042870d60da4582fa4e532e594583be96
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Apr 16 00:59:21 2010 -0700

    Add standard .gitignore
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit cef8c50586903e7ac543d1a8e3f84d4a78f731a4
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date:   Thu Oct 15 16:53:48 2009 -0700

    Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>

commit 33a3c2fc886bc9ce5a0692c6c0c78903aa122ee1
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date:   Thu Oct 15 16:50:26 2009 -0700

    Add .hg & .git to the list of known revision control subdirectories
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>

commit 853241018d75a6b40f67db61f9ea21f1c5e90641
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date:   Thu Oct 15 16:48:13 2009 -0700

    include <limits.h> to ensure INT_MAX is defined after 23bacbd6c
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>

commit 23bacbd6c71ec815f394f0a7bbc9e684b3e05438
Author: Eric Blake <ebby9@byu.net>
Date:   Thu Oct 15 15:52:36 2009 -0500

    Fix broken assumption where stat.st_nlink == 1
    
    Normally, any directory has a st_nlink of at least 2 (. and ..).
    On some systems, a directory's st_nlink is set to 1 where it is too
    expensive to compute the correct value (e.g. remote filesystems).
    Instead of treating this as a legitimate value (i.e. that the directory
    contains nothing to link from), special case this and force a complete
    scan of the directory's contents.
    
    Further explanation:
    http://cygwin.com/ml/cygwin/2008-06/msg00056.html
    http://cygwin.com/ml/cygwin-apps/2008-08/msg00264.html
    
    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>

commit 17eba8aca2edfadf0ec5291bcd937644e45561de
Author: James Cloos <cloos@jhcloos.com>
Date:   Thu Dec 6 16:39:17 2007 -0500

    Replace static ChangeLog with dist-hook to generate from git log

commit 05d8a7b32077410143398bcf979424a68e12cd5d
Author: Jeremy Huddleston <jeremy@yuffie.local>
Date:   Mon Dec 3 20:06:10 2007 -0800

    Use __APPLE__ instead of __DARWIN__

commit 6f5087c5d544c918d72321227f3028773c54266b
Author: Kevin E Martin <kem@kem.org>
Date:   Wed Dec 21 02:30:08 2005 +0000

    Update package version for X11R7 release.

commit fc895a080f7c35403e240f973c47e6aa000c6778
Author: Adam Jackson <ajax@nwnk.net>
Date:   Mon Dec 19 16:36:01 2005 +0000

    Stub COPYING files

commit a150dc34ab6edd48b35201e785991622617eb87d
Author: Kevin E Martin <kem@kem.org>
Date:   Thu Dec 15 00:24:40 2005 +0000

    Update package version number for final X11R7 release candidate.

commit ddc9aab6ae857dfe8382a0be461bb9bb1e5b3c1f
Author: Kevin E Martin <kem@kem.org>
Date:   Sat Dec 10 01:53:10 2005 +0000

    Initial revision.

commit 5169ab683432f97215f4895a94af4b9a372a6f01
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
Date:   Wed Nov 23 22:33:07 2005 +0000

    Bug #5003 <https://bugs.freedesktop.org/show_bug.cgi?id=5003> Patch #3763
        <https://bugs.freedesktop.org/attachment.cgi?id=3763> Xorg code misuses
        S_IF* macros

commit dedfbb8bf81f67a75e31a77b7525c372d64939c7
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
Date:   Thu Jul 14 16:30:53 2005 +0000

    Bug 3774 <https://bugs.freedesktop.org/show_bug.cgi?id=3774> Patch 3081
        <https://bugs.freedesktop.org/attachment.cgi?id=3081> lndir.man fails
        to mention .svn (Bernhard Reiter)

commit f147e94b91751af67000a29ba59d7cd94f163df6
Author: Kevin E Martin <kem@kem.org>
Date:   Thu Aug 26 05:10:56 2004 +0000

    Fix lndir to handle symlinks to directories correctly (Bug #1083, H.J. Lu).
    Fix i810 compilation without Xinerama (Bug #1180, Simon Schubert).

commit b97ef364d7a38510efaa1fdd6f4b5aff4728173a
Author: Egbert Eich <eich@suse.de>
Date:   Fri Apr 23 18:42:00 2004 +0000

    Merging XORG-CURRENT into trunk

commit 48a0231fd32530bfa0266b885c644f8539bb0800
Author: Egbert Eich <eich@suse.de>
Date:   Sun Mar 14 08:27:28 2004 +0000

    Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004

commit a93134e0964b393d1d042e0cd37fec98d8a3e7a1
Author: Egbert Eich <eich@suse.de>
Date:   Wed Mar 3 12:09:38 2004 +0000

    Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004

commit fdf9172cf361fdd78313285c2b7f476b06e31551
Author: Egbert Eich <eich@suse.de>
Date:   Thu Feb 26 13:34:16 2004 +0000

    readding XFree86's cvs IDs

commit 765c1140d14b60e070c8cc6101b7582530261606
Author: Egbert Eich <eich@suse.de>
Date:   Thu Feb 26 09:21:15 2004 +0000

    Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004

commit 1ab5861be6198294ba8115bb8a371cd85c4f92e7
Author: Egbert Eich <eich@suse.de>
Date:   Thu Jan 29 08:06:33 2004 +0000

    Importing vendor version xf86-012804-2330 on Thu Jan 29 00:06:33 PST 2004

commit b96620a470833dc5873d42c4f0d83d17d3f0b0c4
Author: Kaleb Keithley <kaleb@freedesktop.org>
Date:   Tue Nov 25 19:26:55 2003 +0000

    XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks

commit ba4718fc199b7132d4adba7255b34ba3ce3f3c3b
Author: Kaleb Keithley <kaleb@freedesktop.org>
Date:   Fri Nov 14 16:48:20 2003 +0000

    XFree86 4.3.0.1

commit cf6be6ad1e554e9855fdd3d1c7e523316e120b3b
Author: Kaleb Keithley <kaleb@freedesktop.org>
Date:   Fri Nov 14 15:54:29 2003 +0000

    R6.6 is the Xorg base-line
