commit 13a2d7bc6c8a67b1f58e285f63e0147924fc6fff
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Jul 27 13:15:57 2024 -0700

    xfs 1.2.2
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit d42a23256008b5e1394e0d9936e50dd051d56a94
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Jul 20 15:02:38 2024 -0700

    configure: Use AC_SYS_LARGEFILE to enable large file support
    
    While files opened by xfs should never be more than 2gb in size,
    they may be stored on filesystems with large inodes or dates past 2038.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/app/xfs/-/merge_requests/9>

commit 4a1b2330ff2589c3c56159f3113710950d41b39b
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Apr 28 16:20:09 2024 -0700

    WriteToClient: handle allocation failure
    
    os/io.c: In function ‘write_to_client_internal’:
    os/io.c:562:5: warning: use of possibly-NULL ‘buf’ where non-null expected
     [CWE-690] [-Wanalyzer-possible-null-argument]
      562 |     memmove( (char *) oco->buf + oco->count, buf, count);
          |     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/app/xfs/-/merge_requests/7>

commit 36e461f8b3cfc7133801ec95ca31a363819ed91a
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Apr 28 15:53:41 2024 -0700

    SetFontCatalogue: handle allocation failure
    
    difs/fonts.c: In function ‘SetFontCatalogue’:
    difs/fonts.c:766:14: warning: dereference of possibly-NULL ‘p’ [CWE-690]
     [-Wanalyzer-possible-null-dereference]
      766 |         *p++ = len = end - str;
          |         ~~~~~^~~~~~~~~~~~~~~~~
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/app/xfs/-/merge_requests/7>

commit b4461cb5b2627709ba8a7be3ba7c608bbf482c46
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Apr 28 15:48:33 2024 -0700

    QueryBitmaps: Avoid memory leak in error path
    
    difs/fontinfo.c: In function ‘QueryBitmaps’:
    difs/fontinfo.c:430:8: warning: leak of ‘fixed_range’ [CWE-401] [-Wanalyzer-malloc-leak]
      430 |     if (!c)
          |        ^
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/app/xfs/-/merge_requests/7>

commit 08e3bca7a5c0a4d9fdd288599955706076470de4
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Apr 28 15:46:18 2024 -0700

    QueryExtents: Avoid memory leak in error path
    
    difs/fontinfo.c: In function ‘QueryExtents’:
    difs/fontinfo.c:331:8: warning: leak of ‘fixed_range’ [CWE-401]
     [-Wanalyzer-malloc-leak]
      331 |     if (!c)
          |        ^
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/app/xfs/-/merge_requests/7>

commit b880645f6e517a707e2bcc747c5385a786ff06b0
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Apr 28 15:23:48 2024 -0700

    Add alloc_size & malloc attributes to allocation functions
    
    All functions get alloc_size, but only fresh allocators get the
    malloc attribute - it doesn't support realloc style functions.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/app/xfs/-/merge_requests/7>

commit 73696aa2fdd35f4f7c0f822cb3e75efb4f7fcde5
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Apr 28 15:16:55 2024 -0700

    Mark FatalError as _X_NORETURN
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/app/xfs/-/merge_requests/7>

commit 0847b07e89839b430d7eabee8965a4f0c9680256
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Apr 28 15:16:43 2024 -0700

    print error messages if syslog support is built but disabled
    
    Also ensure we always call va_end() before returning
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/app/xfs/-/merge_requests/7>

commit 776bcc9e459630c60a4a7f3fdf992589518acb5c
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Apr 28 14:31:37 2024 -0700

    Get rid of fsalloc/fsrealloc/fsfree wrapper macros
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/app/xfs/-/merge_requests/7>

commit 20703d1690257deb8c1c6f6dcc779ba615ef488f
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Apr 28 14:23:31 2024 -0700

    Add FSreallocarray for array reallocation with overflow check
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/app/xfs/-/merge_requests/7>

commit 7713e7ca39c37c15e92c77d04586bf4d587899c8
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Apr 28 14:05:08 2024 -0700

    Replace obsolete bzero call with standard memset call
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/app/xfs/-/merge_requests/7>

commit 64e61297c8ddd8761538b1ca5091b6b40ba7f1c4
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Apr 28 14:03:56 2024 -0700

    Replace alloc+bzero pairs with FScalloc calls
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/app/xfs/-/merge_requests/7>

commit 5651efe6f3657fde95a0f8db1d821a3dd38ac117
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Apr 28 13:56:10 2024 -0700

    Make FScalloc take two args like standard calloc
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/app/xfs/-/merge_requests/7>

commit e2ca402b81b4aff3ea14f07f18f730ceb2b17530
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Apr 28 13:52:33 2024 -0700

    Add FSallocarray for array allocation with overflow check
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/app/xfs/-/merge_requests/7>

commit 42e57d4a0bb43afcc9ed0c2f81a4201d9f28b515
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Apr 28 13:00:34 2024 -0700

    Avoid memory leak if -ls specified multiple times on command line
    
    Reported by gcc 13.2 -fanalyze:
    os/utils.c:237:15: warning: leak of ‘OldListen’ [CWE-401]
     [-Wanalyzer-malloc-leak]
      237 |     OldListen = (OldListenRec *) malloc (
          |     ~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
      238 |         OldListenCount * sizeof (OldListenRec));
          |         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/app/xfs/-/merge_requests/7>

commit 8b69f5872ee7cff2b21eee05457ab4cb2ed34a98
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Apr 28 12:48:16 2024 -0700

    Remove no-op OsInitAllocator()
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/app/xfs/-/merge_requests/7>

commit e6ac911fdff233507f1eff950886c5d23a1e8ff5
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Apr 28 12:24:57 2024 -0700

    DetachStdio: check that open & dup2 functions succeed
    
    This was originally an attempt to fix -Wanalyzer-fd-use-without-check
    warnings from gcc 13.2 with -fanalyzer, but it still gives false positives
    reported to gcc in https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113329
    and https://gcc.gnu.org/bugzilla/show_bug.cgi?id=114880 .
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/app/xfs/-/merge_requests/7>

commit 3bbb10cf0fde28647edf996c7b92d89f299fdb76
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Apr 28 11:28:00 2024 -0700

    Remove unused EventSwap functions & dispatch vector
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/app/xfs/-/merge_requests/7>

commit 923b774950e10ba13cf2757393ef20ac794c60fb
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Apr 28 11:16:57 2024 -0700

    Remove unused empty NoopDDA() function
    
    Was previously there just to work around broken linkers
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/app/xfs/-/merge_requests/7>

commit 9a7c831cb1be7c124eff9299d8046a57ac31bf4c
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Apr 28 11:13:28 2024 -0700

    Clear up -Wcast-function-type warnings from NotImplemented()
    
    difs/dispatch.c: In function ‘InitProcVectors’:
    difs/dispatch.c:1078:34: warning: cast between incompatible function types
     from ‘int (*)(void)’ to ‘void (*)(struct _Client *, int,  void *)’
     [-Wcast-function-type]
     1078 |             ReplySwapVector[i] = (ReplySwapFunc)NotImplemented;
          |                                  ^
    difs/dispatch.c:1082:30: warning: cast between incompatible function types
     from ‘int (*)(void)’ to ‘void (*)(fsError *, fsError *)’
     [-Wcast-function-type]
     1082 |         EventSwapVector[i] = (EventSwapFunc)NotImplemented;
          |                              ^
    
    (plus 10 more repeated warnings for difs/tables.c)
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Part-of: <https://gitlab.freedesktop.org/xorg/app/xfs/-/merge_requests/7>

commit c8119b28ca20332d39153cdd1a297d62ed7d12cb
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Feb 17 13:56:16 2024 -0800

    unifdef SUNSSYV
    
    This isn't defined on Solaris, so I don't know what this was for
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit c337a18e92147f6980703ea35937e819261b192d
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Feb 17 13:54:00 2024 -0800

    unifdef QNX4
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit ee86195796a21699f39f3832160df9258486f7cc
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Oct 13 15:48:08 2023 -0700

    gitlab CI: Update to latest CI templates & Debian stable release
    
    Current template fails to rebuild the CI container with the current
    Debian stable release (a new release since the last update)
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit b382e8460c1eae466d5cbda8d177e91730adbf9a
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Feb 25 08:58:49 2023 -0800

    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 6e84cb7dcdccdc8059aca0bfe52837b6624a3a96
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Jul 10 15:24:00 2022 -0700

    xfs 1.2.1
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit ab6e5cc9f27109b72462073f03b4268dddbeac6d
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Apr 16 10:00:16 2022 -0700

    gitlab CI: stop requiring Signed-off-by in commits
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit cdb536d65f1898ecbd2d9ae13058703063e715f9
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Apr 16 09:59:02 2022 -0700

    Use memcpy() instead of memmove() when buffers are known not to overlap
    
    Most of these came from a mass bcopy() -> memmove() substitution
    in 1993 with a commit comment of "ANSIfied for R6".
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 431588f8103a886de68a7ae3fcb8cc36974ed3c5
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Apr 16 09:37:59 2022 -0700

    SetAlternateServers(): avoid memory leak on allocation failure
    
    Reported by Oracle Parfait static analyzer:
    
       Memory leak [memory-leak] (CWE 401):
          Memory leak of pointer alts allocated with FSalloc((16 * num))
            at line 229 of app/xfs/os/osglue.c in function 'SetAlternateServers'.
            malloc called at line 372 of app/xfs/os/utils.c in function 'FSalloc'
            Allocated value returned to caller at line 373
              alts allocated at line 218 of app/xfs/os/osglue.c in function 'SetAlternateServers' with FSalloc((16 * num))
              alts leaks when (*t) == 44 at line 225.
    
       Memory leak [memory-leak] (CWE 401):
          Memory leak of pointer alts allocated with FSalloc((16 * num))
            at line 245 of app/xfs/os/osglue.c in function 'SetAlternateServers'.
            malloc called at line 372 of app/xfs/os/utils.c in function 'FSalloc'
            Allocated value returned to caller at line 373
              alts allocated at line 218 of app/xfs/os/osglue.c in function 'SetAlternateServers' with FSalloc((16 * num))
              alts leaks when (*(list + <pointer arithmetic>)) == 0 at line 224.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 01a36ae3d97e01e5c3ae3cf730fceabb66a9f235
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Jan 9 13:33:58 2022 -0800

    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 fe06632d4126013747e896df4528537fc7136396
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Mon Dec 6 12:32:58 2021 -0800

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

commit 65e5c8764ac0c00f8d3750db5eb4c90dda4c37da
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Mon Dec 6 12:32:55 2021 -0800

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

commit f759842e8f6dc1ab296d75ec9e4fc108b2ee9a43
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Wed Nov 21 17:03:55 2018 -0800

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

commit a0585a3aa4ded660a3415893d052f57b5524b8e9
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Nov 16 22:03:53 2018 -0800

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

commit 490b589ea68479bd389e6fce3ba3c203b228f615
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Nov 10 12:52:42 2018 -0800

    doc/xfs-design.xml: Remove obsolete B16 tags in struct definition
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit c0ff087474db78b91241c31c00a501782a3da31b
Author: Adam Jackson <ajax@redhat.com>
Date:   Tue Nov 28 12:16:13 2017 -0500

    xfs 1.2.0
    
    Signed-off-by: Adam Jackson <ajax@redhat.com>

commit fedc90e8e3f6c36204de5562bfb726270064a4f1
Author: Adam Jackson <ajax@redhat.com>
Date:   Mon Apr 24 17:35:14 2017 -0400

    xfs: port to libXfont2
    
    This appears to work, in the sense that xfsinfo and fslsfonts print the
    same thing before and after.
    
    Signed-off-by: Adam Jackson <ajax@redhat.com>

commit 47eceb44ca00569b76e4304ee3b36c8f87d46a3e
Author: Adam Jackson <ajax@redhat.com>
Date:   Mon Apr 24 15:33:39 2017 -0400

    xtrans: Simplify an error path when started from inetd
    
    The old code is redundant, since our caller looks like:
    
        OldListen = _FontTransGetInetdListenInfo (inetdListener);
        if (OldListen == NULL) {
            FatalError("failed to initialize OldListen to inetd socket: %s\n",
                       strerror(errno));
        }
    
    Signed-off-by: Adam Jackson <ajax@redhat.com>

commit fcdfd5053c21441265645eb381bb9120f972735c
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 22c4117e8c7e08f15e42be3120eff58cb04fdd0d
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 89c3df532ae4bd9d5924a445264a9df3a97f6bf6
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 9e64669db3b19ce11b40e084cf2d366bfd52826f
Author: Thomas Klausner <wiz@NetBSD.org>
Date:   Thu Jul 23 13:55:18 2015 +0200

    Include config.h first, and add comment about Xpoll.h.
    
    (To avoid having this header moved lower.)
    
    Signed-off-by: Thomas Klausner <wiz@NetBSD.org>
    Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>

commit 75be718a55376d39b0e517da33ef7a7557ac8f20
Author: Thomas Klausner <wiz@NetBSD.org>
Date:   Sun Jul 19 09:55:55 2015 +0200

    Ignore .dirstamp files.
    
    Signed-off-by: Thomas Klausner <wiz@NetBSD.org>
    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 1508df2fa02daff7a5cd58ce5d64e42b44ff4065
Author: Matthew Green <mrg@NetBSD.org>
Date:   Sun Jul 19 09:54:59 2015 +0200

    FD_SETSIZE fixes.
    
    Move X11/Xpoll.h include earlier than sys/select.h to avoid missing
    out on setting FD_SETSIZE early enough.
    
    Signed-off-by: Thomas Klausner <wiz@NetBSD.org>
    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 4fdc960c33724f859be74a630e0d668a74f6637d
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Mon Jun 8 23:20:06 2015 -0700

    Fix memory leaks when not using alloca
    
    Reported by Oracle Parfait 1.5.1:
    
    Error: Memory leak (CWE 401)
       Memory leak of pointer client_auth allocated with FSalloc((prefix->num_auths * 24))
            at line 256 of difs/dispatch.c in function 'ProcEstablishConnection'.
              client_auth allocated at line 243 with FSalloc((prefix->num_auths * 24)).
              client_auth leaks when (((Atom)ad) - ((Atom)(prefix + 8))) > ((stuff->length << 2) - 4) at line 252.
            malloc called at line 372 of os/utils.c in function 'FSalloc'
            at line 276 of difs/dispatch.c in function 'ProcEstablishConnection'.
              client_auth allocated at line 243 with FSalloc((prefix->num_auths * 24)).
              client_auth leaks when (i + 1) >= ((fsConnClientPrefix*)client->requestBuffer)[1].num_auths at line 251.
            malloc called at line 372 of os/utils.c in function 'FSalloc'
    
    Error: Memory leak (CWE 401)
       Memory leak of pointer acp allocated with FSalloc((stuff->num_auths * 24))
            at line 604 of difs/dispatch.c in function 'ProcCreateAC'.
              acp allocated at line 590 with FSalloc((stuff->num_auths * 24)).
              acp leaks when ((((Atom)ad) - ((Atom)client->requestBuffer)) + 8) > ((stuff->length << 2) - 4) at line 599.
            malloc called at line 372 of os/utils.c in function 'FSalloc'
            at line 622 of difs/dispatch.c in function 'ProcCreateAC'.
              acp allocated at line 590 with FSalloc((stuff->num_auths * 24)).
              acp leaks when (i + 1) >= ((fsCreateACReq*)client->requestBuffer)->num_auths at line 597.
            malloc called at line 372 of os/utils.c in function 'FSalloc'
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 3d9bc5a3a8dd36188b0c09d536dcc3c0a8339c31
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Aug 23 13:00:24 2014 -0700

    Add const to port variable passed to TRANS(ReopenCOTSServer)
    
    Before this patch, gcc always warns:
    os/xfstrans.c: In function ‘_FontTransGetInetdListenInfo’:
    os/xfstrans.c:38:18: warning: initialization discards ‘const’ qualifier from pointer target type [enabled by default]
         char *port = "0";
                      ^
    
    After this patch, with prior versons of libxtrans, gcc will warn about
    passing a const to TRANS(ReopenCOTSServer) where non-const is expected.
    
    With both this patch & the libxtrans const patches, there are no warnings.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 4bc3e1f01864f09ce87b8eba9b1970ea3715375c
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Thu Aug 21 22:34:59 2014 -0700

    xfs 1.1.4
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 899268224e98d2c660839a08d70166543d8e0a51
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Mon Aug 11 18:40:27 2014 -0700

    Add subdir-objects to automake options
    
    automake 1.14.1 is asking for it:
    
     warning: possible forward-incompatibility.
     At least a source file is in a subdirectory, but the 'subdir-objects'
     automake option hasn't been enabled.  For now, the corresponding output
     object file(s) will be placed in the top-level directory.  However,
     this behaviour will change in future Automake versions: they will
     unconditionally cause object files to be placed in the same subdirectory
     of the corresponding sources.
     You are advised to start using 'subdir-objects' option throughout your
     project, to avoid future incompatibilities.
    
    and repeating for every source file:
    Makefile.am:35: warning: source file 'difs/charinfo.c' is in a subdirectory,
    Makefile.am:35: but option 'subdir-objects' is disabled
    
    This quiets it, and brings us into line with the future state.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit a3498cecb300d20ddaab033a8dbda72df52a8b3b
Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
Date:   Sun Apr 6 14:41:56 2014 -0500

    Fix CFLAGS and LDFLAGS for Cygwin/MinGW
    
    As in xserver, FD_SETSIZE must be overridden due to a too-low default,
    and symbols must be exported for compatibility with the shared libXfont
    stub handling on these platforms.
    
    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 1c8459eafc04997751ae3d200d0ec91e43e19b5b
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat May 31 21:39:32 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 d353fc875c534c1efeaeb5185b3088f52d266882
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat May 31 21:38:41 2014 -0700

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

commit 79db3095004c912850455bddfc91bb0991ff6c75
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri May 23 23:01:51 2014 -0700

    Add -version option to print program version
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit f25c51fba6c7a08748892050c9db78e911e80ede
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri May 23 22:55:53 2014 -0700

    Print which option was in error along with usage message
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 9298ede3e9b9a4707d91a460f2f9e91aef23d6c1
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Thu May 22 23:21:18 2014 -0700

    Delete XpClient stubs
    
    Xprint support stubs were required for libXfont prior to removal
    of Xprint support in libXfont commit e1927f80deabe in 2009, but
    are no longer needed.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 9ca90f04e43545dd0ab4f2f580e1c7a32139936d
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Thu May 22 23:11:48 2014 -0700

    Move EventSwapVector from extenst.h to difs.h
    
    Fits in better with other swap vectors there
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 03bf9d280c88b15161defd305ab06920bacb26a9
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Thu May 22 23:05:42 2014 -0700

    Delete unused extension code
    
    No extensions were defined, but the code was ready for them, just in
    case someone came up with one.  If someone ever does, they can restore
    from git history or an old tarball - until then, less code for us to
    maintain & worry about checking for proper encoding/decoding of protocol.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit ca9663adce2a6e477fd92429e6e64bf8665998ef
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Tue May 20 22:51:15 2014 -0700

    Replace fsalloc(strlen) + strcpy with strdup
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 0c2c5520eef72b851aef245e4d5209087e824385
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Tue May 20 22:39:40 2014 -0700

    Convert remaining sprintf calls to snprintf
    
    Removes a bonus unchecked strcat() call as well.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 51970b9a6f51fdb23ccdd566b48594aeb593eb11
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Tue May 20 22:04:21 2014 -0700

    unifdef -USABER
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit b240bc3633a56db6dbd0b1c8fa465b186814f1b7
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Tue May 20 22:01:29 2014 -0700

    unifdef -UNOTYET
    
    Mostly removes resource class code copied from the X server resource
    handling code and never used.  Also removes reset on last client
    disconnect code (similarly copied from the X server and not used).
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 659e9deafa76bb7feab16afc848392536361c92b
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri May 16 15:33:56 2014 -0700

    Only call SnfSetFormat if libXfont is built with SNF support
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 013df6f7d4ad0f3f2a74993733fc62ab67ffd484
Author: Julien Cristau <jcristau@debian.org>
Date:   Thu May 8 19:28:28 2014 +0200

    Delete unused CopyISOLatin1Lowered function
    
    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 62daf761ea5e7c810d305c84426a8769db785979
Author: Julien Cristau <jcristau@debian.org>
Date:   Thu May 8 19:28:27 2014 +0200

    Use the register_fpe_functions() function from libXfont
    
    Instead of individually registering support for font files and font
    servers, use the libXfont-provided register_fpe_functions() which will
    do the right thing (as of 1.4.2) depending how libXfont was configured.
    
    This should let xfs run against a libXfont configured with --disable-fc.
    
    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit c6bb161dcb391977d353dc1c9d2b7d10179a20d4
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Thu Apr 24 23:29:13 2014 -0700

    Don't abort() just because we found more names than client requested
    
    Too many fonts is no reason to drop everything, dump core, and exit.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 2c7945278c8f5b7c70b0ef12b4024caa43ac152e
Author: Keith Packard <keithp@keithp.com>
Date:   Wed Jan 29 13:14:22 2014 -0800

    Warning fixes.
    
    XFS replicates quite a bit of X server infrastructure so that it can
    share libXfont. Many of those shared functions are declared in shared
    font header files (either fontsproto.h or fontmisc.h). This patch
    removes duplicate definitions from the XFS header files and makes sure
    the shared header files are included in the right places to get the
    functions declared before being defined.
    
    Of course, some of those function types have changed, in particular
    CopyISOLatin1Lowered now takes a const char * source parameter.
    
    This patch also stops re-using the 'port' variable in
    GetInetdListenInfo when fetching the ReopenInfo. That's not strictly
    necessary here, but will be useful when the Reopen API in libxtrans
    changes to take a constant parameter.
    
    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Tested-by: Gaetan Nadon <memsize@videotron.ca>
    Signed-off-by: Keith Packard <keithp@keithp.com>
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit b7cd80d37de51311e4cbf73dc9cdf231c5352bb1
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Jul 6 00:10:50 2013 -0700

    Remove CRAY/WORD64 support
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 37df336745b23a7394a97e93ffe8944376d194db
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Mon Jun 24 22:34:36 2013 -0700

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

commit a52114915c0fadfbbdd81049d5e940720868f44e
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Apr 12 18:45:28 2013 -0700

    xfs 1.1.3
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit b736a278a574a0f5f24c207478974351573427bc
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Jan 19 22:50:11 2013 -0800

    Remove unused server cache functionality
    
    We initialized the cache & reset the cache, but never put anything in it.
    (Unlike the FontPatternCache provided by libXfont.)
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 21e479609b3529ce24e6139d1208dfe4f9040891
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Jan 19 22:30:49 2013 -0800

    Convert Reply initialization to use C99 struct initializers
    
    Much like we did for the X server, lets the compiler handle filling
    in the entire struct, including zeroing out padding bytes.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit e77aa8b02f3f95a312a755bead400e1dd6e7fc45
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Jan 19 22:27:02 2013 -0800

    Delete unused/empty FreeFonts() function
    
    Had no body and no callers
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 43dd1a904a17d6cbcef6d6728b192eae858b642f
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Jan 19 22:22:09 2013 -0800

    Make FontWakeup functions be static to fonts.c
    
    Only called from other functions in fonts.c
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit b6404f5855b7a38ad567c51b916646c3a085b419
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Jan 19 21:52:38 2013 -0800

    Convert UseFPE & FreeFPE into static inline functions
    
    Comment suggests making them a macro, but since they're only used in this
    file, might as well let the compiler choose how best to optimize them.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit d7558028f93ba8d068ca9f0c5638268f2063c944
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Jan 19 21:38:40 2013 -0800

    Delete unused function CopyCharInfo
    
    Can find no record of this being used in current git repo (back to X11R6.6)
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit e46193d3bb4b7bd52f4dfbccaf5efd4525d97103
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Jan 19 19:28:06 2013 -0800

    MakeAtom: get rid of unnecessary casts
    
    strncmp & strncpy expect an unsigned (size_t) argument, so don't take our
    unsigned len and cast it back to a signed int, because that makes clang sad:
    
    difs/atom.c:92:44: warning: implicit conversion changes signedness: 'int' to 'size_t' (aka 'unsigned long') [-Wsign-conversion]
                comp = strncmp(string, (*np)->string, (int) len);
                       ~~~~~~~                        ^~~~~~~~~
    difs/atom.c:118:34: warning: implicit conversion changes signedness: 'int' to 'size_t' (aka 'unsigned long') [-Wsign-conversion]
                strncpy(nd->string, string, (int) len);
                ~~~~~~~                     ^~~~~~~~~
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 5ac8e2b0aabd61639acee43ac0b9794a65f09594
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Jan 4 18:33:54 2013 -0800

    unifdef -U__UNIXOS2__
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit ed5cdb85b307ca1844b337b50fb49108d9d4b6e1
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Jan 4 18:32:06 2013 -0800

    Remove old OS2 linker file, xfs.def
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit d27fea63c95f98b09f8242db71423f959a1665ba
Author: Arvind Umrao <arvind.umrao@oracle.com>
Date:   Thu Aug 23 16:55:18 2012 +0530

    Revert of ac59cccf8bc1ae3d41e0608f131b5eb888f9362b
    
    xfs service will go to maintenance status after running fsinfo.
    NULL is passed to socket layer causing crash.  It was missed that
    it also gets passed to ReopenCOTSServer which attempts to strdup
    the port string without checking if it's null.
    
    Signed-off-by: Arvind Umrao <arvind.umrao@oracle.com>
    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit ef3f230bc13a15c2cca2cb974de12d6d861aebdf
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Mar 2 10:19:15 2012 -0800

    Require libXfont >= 1.4.5 to avoid prototype mismatch errors for MakeAtom
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>

commit 7ec5d8d1a7adfd9b844fa750c319189a426466d5
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Tue Feb 28 22:33:44 2012 -0800

    xfs 1.1.2
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 03b4a543a812b14a565a92ac691cdc0f550e95d1
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Wed Nov 30 18:21:30 2011 -0800

    Call malloc, not xalloc
    
    One call in xfstrans.c used xalloc - everything else already had malloc.
    Fix this so it won't break when Xtrans stops defining xalloc to malloc
    for us.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 1c7f1cdefc1c256cd24d4b793c710c60870ae942
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Nov 11 22:42:51 2011 -0800

    Use config.h for autoconf output now that there's no conflict
    
    Now that os/config.h is gone, no reason to special case and have
    xfs-config.h for the autoconf generated header.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>

commit e2a18c2fc203d094b2e975cf9b316528b9feaaa8
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Nov 11 22:38:08 2011 -0800

    Move os/config.h into os/config.c
    
    The only file that needed the only remaining definition was config.c,
    so there's no point keeping a header file around for a single #define
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>

commit 9de423ba5997e7cdb131f4bbdec2e676fa42c3e0
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Nov 11 22:33:24 2011 -0800

    Fix printf format errors found by gcc now that it can check
    
    Fixes:
    os/config.c: In function ‘config_parse_nameVal’:
    os/config.c:417:5: warning: too few arguments for format
    os/config.c: In function ‘config_parse_int’:
    os/config.c:458:6: warning: too few arguments for format
    
    Requires passing parm arguments around in order to provide parameter
    names with problems in the error messages
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>

commit 22968fe5dd9e83ea39c095fd74bbf518ed1e51f0
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Nov 11 22:27:00 2011 -0800

    Make CONFIG_ERR_* values be strings instead of indexes in ConfigErrors array
    
    Allows gcc to check printf format strings instead of just giving warnings.
    Since these #defines are only used in config.c, define them directly there,
    instead of in the config.h header that no one else includes.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>

commit f8224be41700ccf7d639bd9a10818a45b10bc63a
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Nov 11 20:05:49 2011 -0800

    Constify string argument to MakeAtom
    
    Matches what's already been done in xserver and libXfont
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit ac59cccf8bc1ae3d41e0608f131b5eb888f9362b
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Sep 25 12:12:14 2011 -0700

    Don't pass a static string to TRANS(GetReopenInfo)
    
    It never reads the value passed in, just overwrites the pointer,
[--snip--]
