commit 2a694ba264ccdb205909909abfe8b136f9156ebe
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Jan 25 15:18:14 2026 -0800

    libXext 1.3.7
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 61229eec6a94f0221bf0ac674b297c752cf92a10
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>

commit 5ce2a6127889834082147dbcdd47731b7986961b
Author: Foad S. Farimani <f.s.farimani@gmail.com>
Date:   Wed Sep 17 00:30:07 2025 +0200

    Fix HWND pointer casting errors on MinGW-w64
    
    - Use uintptr_t for safe pointer-to-integer conversion of HWND
    - Fix Data32 call to pass address of tmp variable instead of casting integer to pointer
    - Resolves compilation errors with -Werror=int-to-pointer-cast on Windows cross-compilation
    
    Fixes build errors when cross-compiling with MinGW-w64 where HWND is a pointer
    type and direct casting between pointer and long of different sizes fails.
    
    Signed-off-by: Dr. Foad S. Farimani <f.s.farimani@gmail.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/lib/libxext/-/merge_requests/15>

commit a43b0df438b1cfb6516695aac4dad2436c0b4c60
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Jul 13 18:05:04 2025 -0700

    man pages: Improve man page formatting
    
    More closely follow common style as described on
    https://man7.org/linux/man-pages/man7/man-pages.7.html
    and fix warnings raised by `mandoc -T lint` and `groff -rCHECKSTYLE=10`
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/lib/libxext/-/merge_requests/14>

commit 23eeaa46152fb91a0601571f989c0d625bfc9994
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Apr 19 11:07:35 2025 -0700

    Xevi.man: Improve man page formatting
    
    More closely follow common style as described on
    https://man7.org/linux/man-pages/man7/man-pages.7.html
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/lib/libxext/-/merge_requests/13>

commit 176618709afa156df4e121d136110a8f39c6f797
Author: Bjarni Ingi Gislason <bjarniig@simnet.is>
Date:   Sat Apr 12 13:59:11 2025 +0000

    Xevi.3: Some editorial changes for this man page [Debian bug #1050884]
    
    Originally from https://bugs.debian.org/1050884
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/lib/libxext/-/merge_requests/13>

commit 424b67ad03fafdb0d6caf2e9bf5a103e9717e71f
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Mon Feb 19 12:03:52 2024 -0800

    unifdef NULL_NOT_ZERO
    
    I can't find any evidence this was ever defined, should only have
    been needed for odd-ball pre-C89 compilers.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit f6dff7d9285cf5b328d1163e102eeb1234450aa1
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Mon Feb 19 11:56:59 2024 -0800

    unifdef ATTSHAREDLIB
    
    Was only defined for SGI Irix platforms in the imake configs,
    has never been defined since the conversion to autoconf
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 3826a58d190c2d8093d3586cb33867668cbb4553
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Feb 4 13:39:32 2024 -0800

    libXext 1.3.6
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 6cb21433d745abea3a161a6fc8e141f7e08b2c27
Author: Sam James <sam@gentoo.org>
Date:   Tue Nov 7 23:03:27 2023 +0000

    XEVI: fix -Walloc-size
    
    GCC 14 introduces a new -Walloc-size included in -Wextra which gives (when forced
    to be an error):
    ```
    XEVI.c:174:21: error: allocation of insufficient size '1' for type 'ExtendedVisualInfo' with size '48' [-Werror=alloc-size]
      174 |         *evi_return = Xcalloc(sz_info + sz_conflict, 1);
          |                     ^
    ```
    
    The calloc prototype is:
    ```
    void *calloc(size_t nmemb, size_t size);
    ```
    
    (Xcalloc is esenetially the same.)
    
    So, just swap the number of members and size arguments to match the prototype, as
    we're initialising 1 element of size `sz_info + sz_conflict`. GCC then sees we're not
    doing anything wrong.
    
    Signed-off-by: Sam James <sam@gentoo.org>

commit e8db0fc7c047ccdd6c11381681b184bbe9ea8270
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Oct 8 09:57:09 2023 -0700

    _xgeDpyClose: handle NULL return from _xgeFindDisplay
    
    Resolves gcc warning:
    Xge.c: In function ‘_xgeDpyClose’:
    Xge.c:211:13: warning: dereference of NULL ‘info’ [CWE-476]
      [-Wanalyzer-null-dereference]
      211 |     if (info->data != NULL) {
          |         ~~~~^~~~~~
    
    Fixes: 850263a ("Add GenericEvent extension (XGE).")
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 7bed7727a86096a0f83a785a5a9a2ecad50507d9
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Oct 8 09:41:30 2023 -0700

    Check for malloc failure in _xgeGetExtensionVersion
    
    Handles gcc warning:
    Xge.c: In function ‘_xgeGetExtensionVersion’:
    Xge.c:196:25: warning: dereference of possibly-NULL ‘vers’ [CWE-690]
      [-Wanalyzer-possible-null-dereference]
    
    Fixes: 850263a ("Add GenericEvent extension (XGE).")
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit fe0c5f29cdd80d8d2c42f7c21a7077b6d744df9f
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Oct 8 09:35:01 2023 -0700

    _xgeGetExtensionVersion should not free info on failure
    
    Flagged by gcc:
    Xge.c: In function ‘_xgeCheckExtInit’:
    Xge.c:154:20: warning: use after ‘free’ of ‘info’ [CWE-416]
     [-Wanalyzer-use-after-free]
    
    _xgeCheckExtInit passes the info pointer to _xgeGetExtensionVersion
    and continues to use it after the call returns.
    
    Fixes: 850263a ("Add GenericEvent extension (XGE).")
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit de2ebd62c1eb8fe16c11aceac4a6981bda124cf4
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Mar 4 10:44:45 2023 -0800

    configure: Use LT_INIT from libtool 2 instead of deprecated AC_PROG_LIBTOOL
    
    AC_PROG_LIBTOOL was replaced by LT_INIT in libtool 2 in 2008,
    so it's time to rely on it.
    
    Clears autoconf warnings:
    
    configure.ac:19: warning: The macro `AC_PROG_LIBTOOL' is obsolete.
    configure.ac:19: You should run autoupdate.
    m4/libtool.m4:100: AC_PROG_LIBTOOL is expanded from...
    configure.ac:19: the top level
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 50cac0209f96469d3a332a59a9c8d6d658edaf5f
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Thu Feb 16 19:02:48 2023 -0800

    configure: raise minimum autoconf requirement to 2.70
    
    Needed for builds on NetBSD to work correctly, since it depends on
    AC_USE_SYSTEM_EXTENSIONS defining _OPENBSD_SOURCE to expose the
    prototype for reallocarray() in the system headers.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit e8556ab06e03b59e9a512eb02955247efd4c4054
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Nov 20 10:42:59 2022 -0800

    Wrap Xext*CheckExtension() in do { ... } while(0)
    
    Makes macro expansion safer and eliminates -Wextra-semi-stmt warnings
    from clang every time it is called due to semicolon after bracket.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 67e82cc395f44faddd83ec3d0d21624fe91c6fc0
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Oct 28 18:54:39 2022 -0700

    libXext 1.3.5
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 81a3d082b1c73393a59131aa57fe32bb0d76e149
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Mon Oct 17 13:49:46 2022 -0700

    COPYING: Add info for Xge.* and reallocarray.* files
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit b6929c143e8372eb6838a331942d34a8d2b13b7b
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Mon Oct 17 13:46:57 2022 -0700

    Remove "All rights reserved" from Oracle copyright notices.
    
    Oracle no longer includes this term in our copyright & license notices.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit c6eded76e212419518bd955cad58c96b8653840e
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Jul 17 13:00:37 2022 -0700

    configure: Use AC_USE_SYSTEM_EXTENSIONS to set GNU_SOURCE & other defines
    
    Fixes: #4
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 178b95c486a1abcf2395157600dc1a2da7e67441
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Jun 11 10:26:19 2022 -0700

    Convert calls to Xmalloc arrays to use Xmallocarray instead
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit d965a1a8ce9331d2aaf1c697a29455ad55171b36
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Jun 11 10:00:29 2022 -0700

    Import reallocarray() from libX11
    
    Originally from OpenBSD, based on libx11@bcf7b5aa
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit e6ff50b4634f2f2211997444a73d35277a0608d4
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Jun 10 16:21:59 2022 -0700

    Use calloc instead of malloc if we may not initialize all the bytes
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit bba869e4ff5826d48ea409b4a8bf4ff7ad414453
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Jun 10 16:16:22 2022 -0700

    Remove unnecessary (char *) casts from Xfree() arguments
    
    These also haven't been needed since C89
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit ace42fef753c1444cfc208da6bb282abbbc279ab
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Jun 10 15:44:45 2022 -0700

    Remove unnecessary casts of malloc/calloc results
    
    These aren't needed in C89 and later, but can hide missing prototypes
    that generate broken code on platforms where pointers are larger than ints.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit f12be5ac59a48249c77b8e61e78bceb9ad782542
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Jun 10 15:08:37 2022 -0700

    Add extutilP.h header for xgeExtRegister() prototype
    
    Clears gcc warning:
    
    Xge.c:302:11: warning: no previous prototype for ‘xgeExtRegister’
     [-Wmissing-prototypes]
     _X_HIDDEN xgeExtRegister(Display* dpy, int offset, XExtensionHooks* callbacks)
               ^~~~~~~~~~~~~~
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 6844509526a83a20f60a5b62191bfbc1e6f09227
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Jun 10 10:47:19 2022 -0700

    Xge.c, Xge.h: convert from ISO-8859-1 to UTF-8
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 260449831c006b563d2a746452e1d3097565441a
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Jun 10 10:12:19 2022 -0700

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

commit 34e454b17466ad2d79fb51ab040906dfe9ccc3f3
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Jun 10 10:08:26 2022 -0700

    Fix spelling/wording issues
    
    Found by using:
        codespell --builtin clear,rare,usage,informal,code,names
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 5da41666a4a5bef637a9bb0c04357b7ab2de323d
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Jun 10 10:02:33 2022 -0700

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

commit 47904063048fa6ef6e8e16219ddef4d14d5d9a4b
Author: Matthieu Herrb <matthieu@herrb.eu>
Date:   Sun Mar 17 14:29:13 2019 +0100

    add ACLOCAL_AMFLAGS = -I m4 to make aclocal pick ax_gcc_builtin.m4
    
    Signed-off-by: Matthieu Herrb <matthieu@herrb.eu>
    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit ebb167f34a3514783966775fb12573c4ed209625
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Mar 16 10:37:14 2019 -0700

    libXext 1.3.4
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 97a5180793138498c046a7aa2ad061732e182645
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Mar 16 10:36:21 2019 -0700

    Add description of libXext to README.md
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 86b2e70648531f1af11e0541f69468212c3f2190
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Mar 16 10:25:49 2019 -0700

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

commit 7ecd11d573a087e075036e0479c9e3f58ee9fa5d
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Mon Nov 19 21:53:21 2018 -0800

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

commit a07b4bb8290d0c1bba7bcecd5bb6896fbe1b169c
Author: Mihail Konev <k.mvc@ya.ru>
Date:   Thu Jan 26 13:52:49 2017 +1000

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

commit df966fe1336c52d0e3a6800c31a608fdc0229cff
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 cdbb04f29f48c3fd47c3db59e985e009457b62ef
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 490a25e6f8a4d2482af4364c700b68ad11a4d10b
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Thu Feb 25 23:36:50 2016 -0800

    Use __builtin_popcountl if available to replace Ones() in XSecurity.c
    
    If the compiler knows of a better algorithm for counting the number of
    bits set in a word for the target CPU, let it use that, instead of the
    classic algorithm optimized for PDP-6.
    
    Tested for the range of values used in XSecurity.c and verified results
    are the same from both:
    
    for (unsigned long i = 0; i <= XSecurityAllAuthorizationAttributes; i++) {
        printf("ones: %d\tpopcnt: %d\n", Ones(i), __builtin_popcountl(i));
    }
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 54ba591149f3a92c5a4a66e428ae2a33d1027053
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Thu Feb 25 15:34:45 2016 -0800

    Fix typos in man pages
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 82df003f36a405711ac41f2eb4e862f0878659e9
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Thu Feb 25 14:12:14 2016 -0800

    Assert that values buffer has enough room for provided values
    
    Catch if anyone ever defines more types again and forgets to increase
    the size of the value buffer to match.
    
    v2: assert on the full set of possible values, regardless of which the
        current caller passed in this call - more likely to be spotted during
        testing, less likely to not be found until called in production.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 0744837f525d8ba103e807af7c44ad2bf5cbd6ca
Author: Rob Wu <rob@robwu.nl>
Date:   Thu Feb 25 18:05:50 2016 +0100

    XSecurityGenerateAuthorization: Allocate enough space in values buffer
    
    https://bugs.freedesktop.org/show_bug.cgi?id=94292
    
    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Reviewed-by: Seth Arnold <seth.arnold@canonical.com>
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit efdcbb7634501e1117d422636a0a75d7ea84b16b
Author: Peter Hutterer <peter.hutterer@who-t.net>
Date:   Thu Jul 24 01:30:38 2014 +1000

    libXext 1.3.3
    
    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>

commit 11aad96bd689d54156064d2e81213dc827a689d1
Author: Keith Packard <keithp@keithp.com>
Date:   Thu Mar 6 14:56:17 2014 -0800

    Xge: remove warning messages about missing Xge extension event translations
    
    When mixing Xlib and xcb, it's quite possible for some events to be
    received for xcb-only extensions, which will subsequently not be
    translatable by the Xge WireToEvent/EventToWire hooks
    
    Signed-off-by: Keith Packard <keithp@keithp.com>
    Reviewed-by: Eric Anholt <eric@anholt.net>

commit dde40e03c10808b964dc1d6a7eb48156dd5ce4a2
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Mar 8 20:09:46 2014 -0800

    XeviGetVisualInfo: Free & clear *evi_return, not evi_return pointer
    
    evi_return is passed in as a pointer to a location into which
    XeviGetVisualInfo is expected to write a pointer to the memory
    it allocated for the returned structures.  If we're failing and
    bailing out, we need to dispose of the pointer we set, not the
    one passed into us (which the caller may have put on the stack
    or allocated as part of a larger structure).
    
    Flagged by cppcheck 1.64:
    [lib/libXext/src/XEVI.c:182] -> [lib/libXext/src/XEVI.c:186]:
     (warning) Possible null pointer dereference: evi_return - otherwise it
               is redundant to check it against null.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit d5447c0156f556114dbf97d6064c0c7b0fcd5f70
Author: Nathan Kidd <nkidd@opentext.com>
Date:   Fri Jan 17 13:40:07 2014 +1000

    Stricter event error checking
    
    A malicious X server claiming to not support GE but sending a GE would
    SEGV the client  (always a NULL derefrence).  Possible since d1c93500.
    
    (Also guard the EventToWire case so it's harder to shoot yourself in the
    foot.)
    
    Signed-off-by: Nathan Kidd <nkidd@opentext.com>
    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>

commit bb24f2970f2e425f4df90c9b73d078ad15a73fbb
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Thu Nov 7 16:31:16 2013 -0800

    Remove fallback for _XEatDataWords, require libX11 1.6 for it
    
    _XEatDataWords was orignally introduced with the May 2013 security
    patches, and in order to ease the process of delivering those,
    fallback versions of _XEatDataWords were included in the X extension
    library patches so they could be applied to older versions that didn't
    have libX11 1.6 yet.   Now that we're past that hurdle, we can drop
    the fallbacks and just require libX11 1.6 for building new versions
    of the extension libraries.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 7378d4bdbd33ed49ed6cfa5c4f73d7527982aab4
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Mon Jun 24 22:55:18 2013 -0700

    Require ANSI C89 pre-processor, drop pre-C89 token pasting support
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 230a1dc356266afb206c98e47ee72e8fca0948e2
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Jun 22 10:56:53 2013 -0700

    Replace sprintf with snprintf when looking up extension error strings
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit d8366afbb0d2e4fbb1e419b1187f490522270bea
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri May 31 14:34:58 2013 -0700

    libXext 1.3.2
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit dfe6e1f3b8ede3d0bab7a5fa57f73513a09ec649
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Mar 9 14:40:33 2013 -0800

    integer overflow in XSyncListSystemCounters() [CVE-2013-1982 6/6]
    
    If the number of counters or amount of data reported by the server is
    large enough that it overflows when multiplied by the size of the
    appropriate struct, then memory corruption can occur when more bytes
    are read from the X server than the size of the buffers we allocated
    to hold them.
    
    V2: Make sure we don't walk past the end of the reply when converting
    data from wire format to the structures returned to the caller.
    
    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 6ecd96e8be3c33e2ffad6631cea4aa0a030d93c2
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Mar 9 14:40:33 2013 -0800

    integer overflow in XShapeGetRectangles() [CVE-2013-1982 5/6]
    
    If the number of rectangles reported by the server is large enough that
    it overflows when multiplied by the size of the appropriate struct, then
    memory corruption can occur when more bytes are read from the X server
    than the size of the buffer we allocated to hold them.
    
    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 67ecdcf7e29de9fa78b421122620525ed2c7db88
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Mar 9 14:40:33 2013 -0800

    integer overflow in XeviGetVisualInfo() [CVE-2013-1982 4/6]
    
    If the number of visuals or conflicts reported by the server is large
    enough that it overflows when multiplied by the size of the appropriate
    struct, then memory corruption can occur when more bytes are read from
    the X server than the size of the buffer we allocated to hold them.
    
    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 96d1da55a08c4cd52b763cb07bdce5cdcbec4da8
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Mar 9 14:40:33 2013 -0800

    several integer overflows in XdbeGetVisualInfo() [CVE-2013-1982 3/6]
    
    If the number of screens or visuals reported by the server is large enough
    that it overflows when multiplied by the size of the appropriate struct,
    then memory corruption can occur when more bytes are read from the X server
    than the size of the buffer we allocated to hold them.
    
    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 082d70b19848059ba78c9d1c315114fb07e8c0ef
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Mar 9 14:40:33 2013 -0800

    integer overflow in XcupStoreColors() [CVE-2013-1982 2/6]
    
    If the computed number of entries is large enough that it overflows when
    multiplied by the size of a xColorItem struct, or is treated as negative
    when compared to the size of the stack allocated buffer, then memory
    corruption can occur when more bytes are read from the X server than the
    size of the buffer we allocated to hold them.
    
    The requirement to match the number of colors specified by the caller makes
    this much harder to hit than the one in XcupGetReservedColormapEntries()
    
    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit d05f27a6f74cb419ad5a437f2e4690b17e7faee5
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Mar 9 14:40:33 2013 -0800

    integer overflow in XcupGetReservedColormapEntries() [CVE-2013-1982 1/6]
    
    If the computed number of entries is large enough that it overflows when
    multiplied by the size of a xColorItem struct, or is treated as negative
    when compared to the size of the stack allocated buffer, then memory
    corruption can occur when more bytes are read from the X server than the
    size of the buffer we allocated to hold them.
    
    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit ca84a813716f9de691dc3f60390d83af4b5ae534
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Apr 13 09:32:12 2013 -0700

    Use _XEatDataWords to avoid overflow of rep.length bit shifting
    
    rep.length is a CARD32, so rep.length << 2 could overflow in 32-bit builds
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 8eee1236041d46a21faba32e0d27c26985267d89
Author: Colin Walters <walters@verbum.org>
Date:   Wed Jan 4 17:37:06 2012 -0500

    autogen.sh: Implement GNOME Build API
    
    http://people.gnome.org/~walters/docs/build-api.txt
    
    Signed-off-by: Adam Jackson <ajax@redhat.com>

commit dbf4b9ec4a8aa97b0c47d58ee158dd3aa8832af5
Author: Adam Jackson <ajax@redhat.com>
Date:   Tue Jan 15 14:28:48 2013 -0500

    configure: Remove AM_MAINTAINER_MODE
    
    Signed-off-by: Adam Jackson <ajax@redhat.com>

commit 7081afc98643e3ef8a3ed711183c8fc8fef30cfa
Author: Eric S. Raymond <esr@thyrsus.com>
Date:   Thu Aug 23 13:34:16 2012 -0400

    Replace presentationm-level requests with .RS/RE.
    
    This will assist translation to DocBook.
    
    Signed-off-by: Eric S. Raymond <esr@thyrsus.com>

commit d618eac132fc9e13bbfb9e58e3375f015db2a179
Author: Eric S. Raymond <esr@thyrsus.com>
Date:   Thu Aug 23 13:25:27 2012 -0400

    Replace various unsafe presentation-level requests with .RS/.RE and .EX/EE.
    
    These can be translated structurally into DocBook.

commit e78e51359fd22b69e646167bc9d3f9b28a5c755f
Author: Thomas Klausner <wiz@NetBSD.org>
Date:   Wed Jul 18 23:40:18 2012 +0200

    Avoid having macros expand code to be: ((f) ? (f)->m1 : NULL)->m2
    
    From Matthew R. Green <mrg@NetBSD.org>
    
    Signed-off-by: Thomas Klausner <wiz@NetBSD.org>
    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>

commit ed8d50ba3a6f837d213ed7c39c2b63d33fc75a38
Author: Chase Douglas <chase.douglas@canonical.com>
Date:   Fri Apr 20 15:08:08 2012 -0700

    Destroy generic event extension after last display is removed
    
    The extension record is currently leaked and never freed.
    
    Signed-off-by: Chase Douglas <chase.douglas@canonical.com>
    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>

commit c6fc799a81334a223cf0e924cd9e7e94ba147835
Author: Peter Hutterer <peter.hutterer@who-t.net>
Date:   Mon Apr 23 14:59:51 2012 +1000

    sync: fix copy/paste error in comment
    
    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>

commit e9c1e346c90e697d5d8f0e756ef8b6e3ed339e29
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Wed Mar 7 19:54:50 2012 -0800

    libXext 1.3.1
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit c0c2a0c7819c425f3df0992b6873a15c8ec27e01
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Wed Sep 28 16:19:27 2011 -0700

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

commit a8f18777099ca5d61929bc37e4741457b6671e59
Author: Matt Dew <marcoz@osource.org>
Date:   Fri Oct 7 23:25:45 2011 -0600

    more Cleanup of IDs and links in doc

commit 3464d6eebfaaf015ea6b25a9a437192ddb1b02b0
Author: Matt Dew <marcoz@osource.org>
Date:   Tue Sep 20 22:06:05 2011 -0600

    Fix id attributes capitolization
    
    #1 - fix the capitolization of the ID attriutes to match either
         the <title> or <funcdef> string it goes with.
    #2 - fix any <linkend>'s that were affected by #1
    #3 - any <function> in the docs that has an actual funcdef, will
         become an olink.
    
    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 17271b78c5d8d9864eda2476863543ba284bee2d
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Tue Sep 20 19:01:41 2011 -0400

    specs: regroup <author> <editor> <othercredit> under authorgroup
    
    Some elements are not displayed when outside authorgroup
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit a58e7d756111eafd4b75763692808198315f1c75
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Tue Sep 20 10:18:22 2011 -0400

    xtest1: adding legal text related to the X Consortium Copyright
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit 276df4dd2de616617cb439df4367cbaa4f568a0a
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Tue Sep 20 10:07:06 2011 -0400

    dpmslib: minor markup fix in legal text
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit ca39a358c35ea364c10fa7c16b6a584171d27600
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Tue Sep 20 09:57:26 2011 -0400

    synclib: refactor copyright legal text for multiple licensing
    
    One sentence added as per the xorg License doc.
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit 877e74e518ec74a07cb8998a3f517ab043cf76be
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Mon Sep 19 17:26:02 2011 -0400

    specs: add missing legal text information
    
    The reference being the xorg License doc.
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit b46167511d429792086fb8e8cfea6f19b2fc9847
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Sep 16 22:18:56 2011 -0700

    Strip trailing whitespace
    
    Performed with: find * -type f | xargs perl -i -p -e 's{[ \t]+$}{}'
    git diff -w & git diff -b show no diffs from this change
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit ead0cea593266b91f08d33a0c83170ba92d8ac7e
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Fri Sep 16 16:30:09 2011 -0400

    dbelib: refactor docbook copyright markup
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit d01ff169e5a07cb0eda3a8fd1489abb964db7ede
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Thu Sep 15 10:39:25 2011 -0400

    synclib: fix authors and affiliations
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit d7d0ad299214c4cb0b8dac579ffb7a6722de2d7f
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Wed Sep 14 17:40:14 2011 -0400

    dbelib: fix typo in author's name
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit 1a147b7a6d1842d02e40674353716e5c3eb3b432
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Wed Sep 14 17:27:09 2011 -0400

    dpmslib: restore DEC copyright
    
    Somehow during docbook conversion the copyright was changed from DEC
    to X Consortium. There are suprious instances of X Consortium
    in many docs. The dpms protocol doc was intact.
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit a41bfcd7aa93046a5e917ccd4af321d4a6703160
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Wed Sep 14 16:30:26 2011 -0400

    docs: fix author affiliation
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit e493d8f2a6441ea7bd92bb9dc9681d0bd8cfb7dc
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Wed Sep 14 16:06:55 2011 -0400

    docs: remove orphan affiliation
    
    Move releaseinfo elements together
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit 0344dafef098d64a9be7bafc859c8c1f27b75942
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Wed Sep 14 16:03:45 2011 -0400

    docs: fix author affiliation
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit a8248f0dbb84ab2530bd11f2c396b7fcd4b128f4
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Mon Sep 12 16:54:45 2011 -0400

    docs: use the &fullrelvers; entity to set X11 release information
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit 426514bee44ccbb849b959c917a191545e7472fa
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Sun Sep 11 19:49:54 2011 -0400

    docs: remove <productnumber> which is not used by default
    
    This element is not rendered by default on the title. A template
    customization is required to display it.
    X Window System does not have a product number.
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit aec3220c5ca4942fdb2ad40d3b460ddd90603428
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Thu Sep 8 20:00:00 2011 -0400

    docbook.am: embed css styles inside the HTML HEAD element
    
    Rather than referring to the external xorg.css stylesheet, embed the content
    of the file in the html output produced. This is accomplished by using
    version 1.10 of xorg-xhtml.xsl.
    
    This makes the whole html docs tree much more relocatable.
    In addition, it eliminates xorg.css as a runtime file which makes
    xorg-sgml-doctools a build time only package.
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit 23b5f7d36f850cef9a135290bec23099f33245d1
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Wed Sep 7 10:31:04 2011 -0400

    docbook.am: global maintenance update - entities, images and olinking
    
    Adding support in libX11 for html chunking caused a reorg of docbook.am
    as well as the xorg-sgml-doctools masterdb for olinking.
    The parameter img.src.path is added for pdf images.
    A searchpath to the root builddir is added for local entities, if present.
    
    The docbook.am makefile hides all the details and is identical for
    all 22 modules having DocBook documentation. It is included by a thin
    Makefile.am which requires no docbook knowledge.
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit 1b9487304a4757478aa923174272dd4062af9735
Author: Matt Dew <marcoz@osource.org>
Date:   Wed Jul 13 12:32:49 2011 -0600

    Add some links for quick referencing definitions.
    
    Signed-off-by: Matt Dew <marcoz@osource.org>
    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Acked-by: Gaetan Nadon <memsize@videotron.ca>

commit b6fc6e6a0784b747863ee9b586fb09a81340bea4
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Sun Jun 5 16:27:36 2011 -0400

    Install target dbs alongside generated documents
    
    This matches a change in xorg-sgml-docs whereby the masterdb will look for
    the target dbs into the same location as the generated documents.
    
    The target dbs are now installed alongside the generated documents.
    Previously they are installed in $prefix/sgml/X11/dbs alongside masterdb which
    has the potential of installing outside the package prefix and cause
    distcheck to fail when user does not have write permission in this package.
    
    Requires XORG_CHECK_SGML_DOCTOOLS(1.8) which was released 2011-06-11

commit acc529ed1f1cff6c79d3b6f711ff64da97bb864c
Author: Matt Dew <marcoz@osource.org>
Date:   Wed May 25 23:49:37 2011 -0600

    add id attributes to funcsynopsis to allow other docs to olink to them.
    
    Signed-off-by: Matt Dew <marcoz@osource.org>
    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>

commit 8451664d228852f7b57eb11a35be3328b6fff13a
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri May 6 18:45:55 2011 -0700

    Install xml versions of specs even if HAVE_XMLTO is false
    
    Moves HAVE_XMLTO check into docbook.am, more closely matches behaviour
[--snip--]
