Home | History | Annotate | Line # | Download | only in dist
      1 commit c1cab28e27dd1c5a81394965248b57e490ccf2ca
      2 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
      3 Date:   Sun Apr 9 13:27:07 2023 -0700
      4 
      5     libXfixes 6.0.1
      6     
      7     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
      8 
      9 commit 1f908b1f27723a9a8f532ab4cc58429c2f174224
     10 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
     11 Date:   Sat Feb 25 09:24:30 2023 -0800
     12 
     13     Remove "All rights reserved" from Oracle copyright notices
     14     
     15     Oracle no longer includes this term in our copyright & license notices.
     16     
     17     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
     18 
     19 commit ad22c5ade8789cdb606b244336106a713473318c
     20 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
     21 Date:   Mon Feb 13 15:12:32 2023 -0800
     22 
     23     Require LT_INIT from libtool 2 instead of deprecated AC_PROG_LIBTOOL
     24     
     25     AC_PROG_LIBTOOL was replaced by LT_INIT in libtool 2 in 2008,
     26     so it's time to rely on it.
     27     
     28     Clears autoconf warnings:
     29     
     30     configure.ac:44: warning: The macro `AC_PROG_LIBTOOL' is obsolete.
     31     configure.ac:44: You should run autoupdate.
     32     aclocal.m4:3465: AC_PROG_LIBTOOL is expanded from...
     33     configure.ac:44: the top level
     34     
     35     libtoolize: Consider adding 'AC_CONFIG_MACRO_DIRS([m4])' to configure.ac,
     36     libtoolize: and rerunning libtoolize and aclocal.
     37     libtoolize: Consider adding '-I m4' to ACLOCAL_AMFLAGS in Makefile.am.
     38     
     39     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
     40 
     41 commit 332394278b7110a774b5277bb3cfc58c42cd888c
     42 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
     43 Date:   Sat Nov 19 12:09:43 2022 -0800
     44 
     45     XFixesCloseDisplay: Mark codes as unused
     46     
     47     Quiets clang warning:
     48     Xfixes.c:206:46: warning: unused parameter 'codes' [-Wunused-parameter]
     49     XFixesCloseDisplay (Display *dpy, XExtCodes *codes)
     50                                                  ^
     51     
     52     Raises minimum required version of xproto to 7.0.22 (released June 2011)
     53     for the definition of _X_UNUSED
     54     
     55     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
     56 
     57 commit 64fc7592fd27bbee300085773247dd1737a5af1b
     58 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
     59 Date:   Sat Nov 19 12:05:59 2022 -0800
     60 
     61     Handle 6 of 9 -Wsign-conversion warnings from clang
     62     
     63     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
     64 
     65 commit 80ea445ff6865f9a04c4522c6d8b6cf940b10397
     66 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
     67 Date:   Sat Nov 19 11:28:19 2022 -0800
     68 
     69     Handle 60 of 60 -Wimplicit-int-conversion warnings from clang
     70     
     71     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
     72 
     73 commit 26cd44cc3d2b5db5caa42d9203a866f12c039980
     74 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
     75 Date:   Sat Nov 19 11:18:11 2022 -0800
     76 
     77     Handle 63 of 63 -Wshorten-64-to-32 warnings from clang
     78     
     79     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
     80 
     81 commit 2047abb224051d578a6a320b776a7e8a969a980c
     82 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
     83 Date:   Sat Nov 19 10:52:50 2022 -0800
     84 
     85     Resolve 36 of 40 -Wextra-semi-stmt warnings from clang
     86     
     87     Wrap XFixesCheckExtension() & XFixesSimpleCheckExtension() macro
     88     bodies in do { ... } while(0) so that they use the semicolon
     89     provided by callers instead of letting it dangle as another statement.
     90     
     91     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
     92 
     93 commit 5129fc91b8483ec3a11e18280eac00857311edfa
     94 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
     95 Date:   Sat Nov 19 10:47:24 2022 -0800
     96 
     97     Quiet -Wconditional-uninitialized warnings from clang
     98     
     99     I believe these were false positives, as the variables were initialized
    100     unless the image = NULL -> if (!image) return NULL code path was followed,
    101     but this makes clang stop warning.
    102     
    103     Cursor.c:144:8: warning: variable 'nbytes' may be uninitialized when used here
    104     [-Wconditional-uninitialized]
    105         if(nbytes > nread)
    106            ^~~~~~
    107     Cursor.c:80:21: note: initialize the variable 'nbytes' to silence this warning
    108         size_t                              nbytes , nread ;
    109                                                   ^
    110                                                    = 0
    111     Cursor.c:144:17: warning: variable 'nread' may be uninitialized when used here
    112     [-Wconditional-uninitialized]
    113         if(nbytes > nread)
    114                     ^~~~~
    115     Cursor.c:80:29: note: initialize the variable 'nread' to silence this warning
    116         size_t                              nbytes , nread ;
    117                                                           ^
    118                                                            = 0
    119     
    120     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    121 
    122 commit aba73d85ce4a2fc1a5fb0ec27b15415eed21ebae
    123 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    124 Date:   Sat Nov 19 10:40:43 2022 -0800
    125 
    126     Mark two dpy parameters const as suggested by cppcheck
    127     
    128     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    129 
    130 commit 82662a3129c59d5950b52ff4daf2e47c7a87327b
    131 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    132 Date:   Sat Nov 19 10:36:54 2022 -0800
    133 
    134     Variable scope reduction as recommended by cppcheck
    135     
    136     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    137 
    138 commit e56e1003ab225d383cda67eb61737bc14e92332c
    139 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    140 Date:   Sat Nov 19 10:29:07 2022 -0800
    141 
    142     Remove unnecessary casts from malloc & free calls
    143     
    144     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    145 
    146 commit d10ec36c81a6b488d1f700a28c5bff4714287b78
    147 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    148 Date:   Sun Jul 17 13:11:17 2022 -0700
    149 
    150     gitlab CI: add a basic build test
    151     
    152     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    153 
    154 commit a38941111da1fe9661fc3b9b505e0ba326d82d72
    155 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    156 Date:   Sun Jul 17 13:10:06 2022 -0700
    157 
    158     Fix spelling/wording issues
    159     
    160     Found by using:
    161         codespell --builtin clear,rare,usage,informal,code,names
    162     
    163     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    164 
    165 commit c454dac2c64dbf87551e957f4b0558b116621889
    166 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    167 Date:   Sun Jul 17 13:09:32 2022 -0700
    168 
    169     Build xz tarballs instead of bzip2
    170     
    171     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    172 
    173 commit 6fe3bd64dd82f704ed91478acb4c99ab5c00be16
    174 Author: Peter Hutterer <peter.hutterer (a] who-t.net>
    175 Date:   Wed May 12 09:34:39 2021 +1000
    176 
    177     libXfixes 6.0.0
    178     
    179     Signed-off-by: Peter Hutterer <peter.hutterer (a] who-t.net>
    180 
    181 commit 883f89dd39dcdae9a38e46f74a43b316180c8a19
    182 Author: Olivier Fourdan <ofourdan (a] redhat.com>
    183 Date:   Thu Mar 11 09:27:06 2021 +0100
    184 
    185     xfixes: Add ClientDisconnectMode
    186     
    187     The Xserver itself is capable of terminating itself once all X11 clients
    188     are gone, yet in a typical full session, there are a number of X11
    189     clients running continuously (e.g. the Xsettings daemon, IBus, etc.).
    190     
    191     Those always-running clients will prevent the Xserver from terminating,
    192     because the actual number of X11 clients will never drop to 0.
    193     
    194     To solve this issue directly at the Xserver level, this add new entries
    195     to the XFixes extension to let the X11 clients themselves specify the
    196     disconnect mode they expect.
    197     
    198     Typically, those X11 daemon clients would specify the disconnect mode
    199     XFixesClientDisconnectFlagTerminate to let the Xserver know that they
    200     should not be accounted for when checking the remaining clients prior
    201     to terminate.
    202     
    203     Signed-off-by: Olivier Fourdan <ofourdan (a] redhat.com>
    204 
    205 commit 174a94975af710247719310cfc53bd13e1f3b44d
    206 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    207 Date:   Sat Mar 16 12:39:31 2019 -0700
    208 
    209     Update configure.ac bug URL for gitlab migration
    210     
    211     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    212 
    213 commit 1e238b40bbef0664d281432c19634df39a19b1ee
    214 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    215 Date:   Mon Nov 19 21:58:32 2018 -0800
    216 
    217     Update README for gitlab migration
    218     
    219     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    220 
    221 commit b9b75d74c3e78c5df70c512786d1ee6db45975aa
    222 Author: Mihail Konev <k.mvc (a] ya.ru>
    223 Date:   Thu Jan 26 13:52:49 2017 +1000
    224 
    225     autogen: add default patch prefix
    226     
    227     Signed-off-by: Mihail Konev <k.mvc (a] ya.ru>
    228 
    229 commit 6f950642597f2f1f509c339861d9f40baf28c39b
    230 Author: Emil Velikov <emil.l.velikov (a] gmail.com>
    231 Date:   Mon Mar 9 12:00:52 2015 +0000
    232 
    233     autogen.sh: use quoted string variables
    234     
    235     Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent
    236     fall-outs, when they contain space.
    237     
    238     Signed-off-by: Emil Velikov <emil.l.velikov (a] gmail.com>
    239     Reviewed-by: Peter Hutterer <peter.hutterer (a] who-t.net>
    240     Signed-off-by: Peter Hutterer <peter.hutterer (a] who-t.net>
    241 
    242 commit 65845c5fc7098f9232cd356248aebc7db9a38095
    243 Author: Peter Hutterer <peter.hutterer (a] who-t.net>
    244 Date:   Tue Jan 24 10:32:07 2017 +1000
    245 
    246     autogen.sh: use exec instead of waiting for configure to finish
    247     
    248     Syncs the invocation of configure with the one from the server.
    249     
    250     Signed-off-by: Peter Hutterer <peter.hutterer (a] who-t.net>
    251     Reviewed-by: Emil Velikov <emil.velikov (a] collabora.com>
    252 
    253 commit 84df9cb81cc31bbed27ba241a23ae04f61da57db
    254 Author: Matthieu Herrb <matthieu.herrb (a] laas.fr>
    255 Date:   Tue Oct 4 21:11:55 2016 +0200
    256 
    257     libXfixes 5.0.3
    258     
    259     Signed-off-by: Matthieu Herrb <matthieu.herrb (a] laas.fr>
    260 
    261 commit 61c1039ee23a2d1de712843bed3480654d7ef42e
    262 Author: Tobias Stoeckmann <tobias (a] stoeckmann.org>
    263 Date:   Sun Sep 25 22:38:44 2016 +0200
    264 
    265     Integer overflow on illegal server response
    266     
    267     The 32 bit field "rep.length" is not checked for validity, which allows
    268     an integer overflow on 32 bit systems.
    269     
    270     A malicious server could send INT_MAX as length, which gets multiplied
    271     by the size of XRectangle. In that case the client won't read the whole
    272     data from server, getting out of sync.
    273     
    274     Signed-off-by: Tobias Stoeckmann <tobias (a] stoeckmann.org>
    275     Reviewed-by: Matthieu Herrb <matthieu (a] herrb.eu>
    276 
    277 commit b2406ed9031991b7ddc5b76b308623afc8a590c5
    278 Author: Matt Turner <mattst88 (a] gmail.com>
    279 Date:   Wed May 25 18:53:28 2016 -0700
    280 
    281     libXfixes 5.0.2
    282     
    283     Signed-off-by: Matt Turner <mattst88 (a] gmail.com>
    284 
    285 commit 1702cdfe45c9bdd7dacfc8f27a49f89fcd1d02c3
    286 Author: Michael Joost <mehl (a] michael-joost.de>
    287 Date:   Mon Nov 18 16:11:26 2013 +0100
    288 
    289     Remove fallback for _XEatDataWords, require libX11 1.6 for it
    290     
    291     _XEatDataWords was orignally introduced with the May 2013 security
    292     patches, and in order to ease the process of delivering those,
    293     fallback versions of _XEatDataWords were included in the X extension
    294     library patches so they could be applied to older versions that didn't
    295     have libX11 1.6 yet.   Now that we're past that hurdle, we can drop
    296     the fallbacks and just require libX11 1.6 for building new versions
    297     of the extension libraries.
    298     
    299     Reviewed-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    300     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    301 
    302 commit 0cb446962381f750e05d97bfb974ca1e32481d5d
    303 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    304 Date:   Tue May 28 21:11:10 2013 -0700
    305 
    306     libXfixes 5.0.1
    307     
    308     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    309 
    310 commit c480fe3271873ec7471b0cbd680f4dac18ca8904
    311 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    312 Date:   Sat Apr 13 10:24:08 2013 -0700
    313 
    314     integer overflow in XFixesGetCursorImage() [CVE-2013-1983]
    315     
    316     If the reported cursor dimensions or name length are too large, the
    317     calculations to allocate memory for them may overflow, leaving us
    318     writing beyond the bounds of the allocation.
    319     
    320     Reported-by: Ilja Van Sprundel <ivansprundel (a] ioactive.com>
    321     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    322 
    323 commit b031e3b60fa1af9e49449f23d4a84395868be3ab
    324 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    325 Date:   Sat Apr 13 10:20:59 2013 -0700
    326 
    327     Use _XEatDataWords to avoid overflow of _XEatData calculations
    328     
    329     rep.length is a CARD32, so rep.length << 2 could overflow in 32-bit builds
    330     
    331     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    332 
    333 commit f870dfb47da9d43d1750ea5e5fc9288c4158f7ad
    334 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    335 Date:   Sat Mar 9 09:26:05 2013 -0800
    336 
    337     XFixesFetchRegionAndBounds: use nread in call to XReadPad
    338     
    339     We already went through the trouble of calculating a variable with the
    340     amount to read, might as well use it instead of recalculating it.
    341     
    342     Also move initialization of the variable to the point it's needed/used
    343     
    344     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    345     Reviewed-by: Peter Hutterer <peter.hutterer (a] who-t.net>
    346 
    347 commit ad2a06d4d3c60198bc40116623153f71a208a240
    348 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    349 Date:   Sat Mar 9 09:18:14 2013 -0800
    350 
    351     Remove duplicate declaration of XFixesExtensionName in Xfixesint.h
    352     
    353     Silences gcc warnings:
    354     In file included from Region.c:26:0:
    355     Xfixesint.h:52:13: warning: redundant redeclaration of 'XFixesExtensionName' [-Wredundant-decls]
    356     Xfixesint.h:34:13: note: previous declaration of 'XFixesExtensionName' was here
    357     
    358     In file included from Cursor.c:49:0:
    359     Xfixesint.h:52:13: warning: redundant redeclaration of 'XFixesExtensionName' [-Wredundant-decls]
    360     Xfixesint.h:34:13: note: previous declaration of 'XFixesExtensionName' was here
    361     
    362     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    363     Reviewed-by: Peter Hutterer <peter.hutterer (a] who-t.net>
    364 
    365 commit 73a0fbb479f5b7806a3dd0741be55c9abda76220
    366 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    367 Date:   Fri Jan 18 23:10:01 2013 -0800
    368 
    369     Replace deprecated Automake INCLUDES variable with AM_CPPFLAGS
    370     
    371     Excerpt https://lists.gnu.org/archive/html/automake/2012-12/msg00038.html
    372     
    373       - Support for the long-deprecated INCLUDES variable will be removed
    374         altogether in Automake 1.14.  The AM_CPPFLAGS variable should be
    375         used instead.
    376     
    377     This variable was deprecated in Automake releases prior to 1.10, which is
    378     the current minimum level required to build X.
    379     
    380     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    381 
    382 commit d6931eda2fe86566823437507b5d818458cfd002
    383 Author: Colin Walters <walters (a] verbum.org>
    384 Date:   Wed Jan 4 17:37:06 2012 -0500
    385 
    386     autogen.sh: Implement GNOME Build API
    387     
    388     http://people.gnome.org/~walters/docs/build-api.txt
    389     
    390     Signed-off-by: Adam Jackson <ajax (a] redhat.com>
    391 
    392 commit 945803cdf3442f60ea25763a84b940e11653a205
    393 Author: Adam Jackson <ajax (a] redhat.com>
    394 Date:   Tue Jan 15 14:28:48 2013 -0500
    395 
    396     configure: Remove AM_MAINTAINER_MODE
    397     
    398     Signed-off-by: Adam Jackson <ajax (a] redhat.com>
    399 
    400 commit 991eb6dad335f4915de8bb2d36d82f0346ae88fb
    401 Author: Peter Hutterer <peter.hutterer (a] who-t.net>
    402 Date:   Fri Feb 11 15:36:33 2011 +1000
    403 
    404     man: remove "current", we're way past 1.0.
    405     
    406     Claiming "the current 1.0 release" when the library is already past version
    407     4 is a tad confusing.
    408     
    409     Signed-off-by: Peter Hutterer <peter.hutterer (a] who-t.net>
    410 
    411 commit ca7b0066fe6f315d2499338cd133e5b1e9d11236
    412 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    413 Date:   Fri Sep 16 22:19:59 2011 -0700
    414 
    415     Strip trailing whitespace
    416     
    417     Performed with: find * -type f | xargs perl -i -p -e 's{[ \t]+$}{}'
    418     git diff -w & git diff -b show no diffs from this change
    419     
    420     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    421 
    422 commit 54926675a9bbb732d3317316db4958e22922ea3f
    423 Author: Adam Jackson <ajax (a] redhat.com>
    424 Date:   Mon Nov 22 14:50:13 2010 -0500
    425 
    426     libXfixes v5: Pointer barriers
    427     
    428     v2: Use int * for device list, consistent with libXi.
    429     v3: Update copyright year.
    430     
    431     Reviewed-by: Julien Cristau <jcristau (a] debian.org>
    432     Reviewed-by: Peter Hutterer <peter.hutterer (a] who-t.net>
    433     Signed-off-by: Adam Jackson <ajax (a] redhat.com>
    434 
    435 commit c301e75b0316c00599caa88d95f384d63eb8bec0
    436 Author: Gaetan Nadon <memsize (a] videotron.ca>
    437 Date:   Wed Feb 2 11:43:42 2011 -0500
    438 
    439     config: comment, minor upgrade, quote and layout configure.ac
    440     
    441     Group statements per section as per Autoconf standard layout
    442     Quote statements where appropriate.
    443     Autoconf recommends not using dnl instead of # for comments
    444     
    445     Use AC_CONFIG_FILES to replace the deprecated AC_OUTPUT with parameters.
    446     Add AC_CONFIG_SRCDIR([Makefile.am])
    447     Remove redundant AC_SUBST(*_CFLAGS) and/or *_LIBS
    448     No functional configuration changes
    449     
    450     This helps automated maintenance and release activities.
    451     Details can be found in http://wiki.x.org/wiki/NewModuleGuidelines
    452 
    453 commit 8196b55a4d84f40f0a0b29b4167992b45df50d70
    454 Author: Gaetan Nadon <memsize (a] videotron.ca>
    455 Date:   Fri Jan 28 19:41:37 2011 -0500
    456 
    457     config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
    458     
    459     Signed-off-by: Gaetan Nadon <memsize (a] videotron.ca>
    460 
    461 commit e067891e233e3725e1fa1da72d91c5346f039d00
    462 Author: Gaetan Nadon <memsize (a] videotron.ca>
    463 Date:   Thu Jan 27 18:50:14 2011 -0500
    464 
    465     config: remove AC_PROG_CC as it overrides AC_PROG_C_C99
    466     
    467     XORG_STRICT_OPTION from XORG_DEFAULT_OPTIONS calls
    468     AC_PROG_C_C99. This sets gcc with -std=gnu99.
    469     If AC_PROG_CC macro is called afterwards, it resets CC to gcc.
    470     
    471     Signed-off-by: Gaetan Nadon <memsize (a] videotron.ca>
    472 
    473 commit 1b64f2594c871d1497a032285476222b29cd4537
    474 Author: Fernando Carrijo <fcarrijo (a] yahoo.com.br>
    475 Date:   Thu Jul 1 06:56:35 2010 -0300
    476 
    477     Purge macros NEED_EVENTS and NEED_REPLIES
    478     
    479     Signed-off-by: Fernando Carrijo <fcarrijo (a] yahoo.com.br>
    480     Acked-by: Tiago Vignatti <tiago.vignatti (a] nokia.com>
    481     Reviewed-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    482 
    483 commit 01e803aebdfddfce6374b03e5f31723698aa0c00
    484 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    485 Date:   Wed Jun 9 20:18:25 2010 -0700
    486 
    487     libXfixes 4.0.5
    488     
    489     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    490 
    491 commit 7d08b9841ce01628881969b9cdd08d732c87aad7
    492 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    493 Date:   Tue Jun 8 19:14:44 2010 -0700
    494 
    495     Fix .TH values in Xfixes.man
    496     
    497     Requires xorg-macros 1.8 in order to get the updated XORG_MANPAGE_SECTIONS
    498     that sets $(SED) & $(MAN_SUBSTS) from configure for us.
    499     
    500     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    501     Reviewed-by: Dan Nicholson <dbn.lists (a] gmail.com>
    502 
    503 commit e81d298c3dd043ee2234156f81d75cac394ad896
    504 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    505 Date:   Tue Jun 8 19:04:01 2010 -0700
    506 
    507     Sun's copyrights now belong to Oracle
    508     
    509     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    510 
    511 commit bdebfcf8096b7403c5e59501d73e5b73d2e65f15
    512 Author: Jamey Sharp <jamey (a] minilop.net>
    513 Date:   Fri Apr 9 17:26:31 2010 -0700
    514 
    515     Always call SyncHandle after issuing an X request.
    516 
    517 commit e09464e0ec1f6994272f3ef324b7fa77329948d4
    518 Author: Gaetan Nadon <memsize (a] videotron.ca>
    519 Date:   Mon Mar 29 16:50:34 2010 -0400
    520 
    521     config: update AC_PREREQ statement to 2.60
    522     
    523     Unrelated to the previous patches, the new value simply reflects
    524     the reality that the minimum level for autoconf to configure
    525     all x.org modules is 2.60 dated June 2006.
    526     
    527     ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz
    528     
    529     Signed-off-by: Gaetan Nadon <memsize (a] videotron.ca>
    530 
    531 commit 946578b59ced5d828b0ad62fe96fc6d9bb31008a
    532 Author: Gaetan Nadon <memsize (a] videotron.ca>
    533 Date:   Mon Mar 29 14:53:48 2010 -0400
    534 
    535     config: remove the pkgconfig pc.in file from EXTRA_DIST
    536     
    537     Automake always includes it in the tarball.
    538     
    539     Signed-off-by: Gaetan Nadon <memsize (a] videotron.ca>
    540 
    541 commit e3acd4a80b246166bb971095ff598944fb59281b
    542 Author: Alan Coopersmith <alan.coopersmith (a] sun.com>
    543 Date:   Thu Jan 14 19:09:28 2010 -0800
    544 
    545     Update Sun license notices to current X.Org standard form
    546     
    547     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] sun.com>
    548 
    549 commit 43397a8cb586caefc60787c98792ae2aae43fddf
    550 Author: Alan Coopersmith <alan.coopersmith (a] sun.com>
    551 Date:   Thu Jan 14 19:07:17 2010 -0800
    552 
    553     Purge CVS/RCS id tags
    554     
    555     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] sun.com>
    556 
    557 commit e27e229cf7f1809b1997dcafc147e512b0fb014d
    558 Author: Gaetan Nadon <memsize (a] videotron.ca>
    559 Date:   Thu Jan 14 15:54:31 2010 -0500
    560 
    561     COPYING: add missing copyright notice.
    562     
    563     Refer to: Cursor.c
    564     Copyright  2006 Sun Microsystems
    565     
    566     Signed-off-by: Gaetan Nadon <memsize (a] videotron.ca>
    567     Reviewed-by: Peter Hutterer <peter.hutterer (a] who-t.net>
    568     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] sun.com>
    569 
    570 commit 9e1da45e4cc425f1aa8bc7021645372cad93f029
    571 Author: Gaetan Nadon <memsize (a] videotron.ca>
    572 Date:   Fri Nov 27 20:56:04 2009 -0500
    573 
    574     Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
    575     
    576     Now that the INSTALL file is generated.
    577     Allows running make maintainer-clean.
    578 
    579 commit b228e13d654f07297cc40cabe81fdb50469c1e83
    580 Author: Gaetan Nadon <memsize (a] videotron.ca>
    581 Date:   Wed Oct 28 14:09:10 2009 -0400
    582 
    583     INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
    584     
    585     Add missing INSTALL file. Use standard GNU file on building tarball
    586     README may have been updated
    587     Remove AUTHORS file as it is empty and no content available yet.
    588     Remove NEWS file as it is empty and no content available yet.
    589 
    590 commit 12e260765e880ffe2e078e6eb399bd137116d2cc
    591 Author: Gaetan Nadon <memsize (a] videotron.ca>
    592 Date:   Mon Oct 26 22:08:43 2009 -0400
    593 
    594     Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
    595     
    596     ChangeLog filename is known to Automake and requires no further
    597     coding in the makefile.
    598 
    599 commit 82d17ac11ced59195eb160464b011546ca72a5c7
    600 Author: Gaetan Nadon <memsize (a] videotron.ca>
    601 Date:   Thu Oct 22 12:34:19 2009 -0400
    602 
    603     .gitignore: use common defaults with custom section # 24239
    604     
    605     Using common defaults will reduce errors and maintenance.
    606     Only the very small or inexistent custom section need periodic maintenance
    607     when the structure of the component changes. Do not edit defaults.
    608 
    609 commit 55d7359a38e2e461a1320872bf955a298f06abd2
    610 Author: Jeremy Huddleston <jeremyhu (a] freedesktop.org>
    611 Date:   Wed Oct 21 12:47:25 2009 -0700
    612 
    613     This is not a GNU project, so declare it foreign.
    614     
    615     On Wed, 2009-10-21 at 13:36 +1000, Peter Hutterer wrote:
    616     > On Tue, Oct 20, 2009 at 08:23:55PM -0700, Jeremy Huddleston wrote:
    617     > > I noticed an INSTALL file in xlsclients and libXvMC today, and it
    618     > > was quite annoying to work around since 'autoreconf -fvi' replaces
    619     > > it and git wants to commit it.  Should these files even be in git?
    620     > > Can I nuke them for the betterment of humanity and since they get
    621     > > created by autoreconf anyways?
    622     >
    623     > See https://bugs.freedesktop.org/show_bug.cgi?id=24206
    624     
    625     As an interim measure, replace AM_INIT_AUTOMAKE([dist-bzip2]) with
    626     AM_INIT_AUTOMAKE([foreign dist-bzip2]). This will prevent the generation
    627     of the INSTALL file. It is also part of the 24206 solution.
    628     
    629     Signed-off-by: Jeremy Huddleston <jeremyhu (a] freedesktop.org>
    630 
    631 commit ed2f91926bcef1610abe3c9cef61b1bb1c918ec8
    632 Author: Alan Coopersmith <alan.coopersmith (a] sun.com>
    633 Date:   Thu Oct 8 08:45:02 2009 -0700
    634 
    635     libXfixes 4.0.4
    636     
    637     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] sun.com>
    638 
    639 commit dc9e2c696121f677065919bc5b011eb650791831
    640 Author: Alan Coopersmith <alan.coopersmith (a] sun.com>
    641 Date:   Thu Oct 8 08:44:24 2009 -0700
    642 
    643     Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS
    644     
    645     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] sun.com>
    646 
    647 commit c83a721ba0b142177b3f01dd0c0a5e47e06a991a
    648 Author: Alan Coopersmith <alan.coopersmith (a] sun.com>
    649 Date:   Mon Feb 2 20:34:33 2009 -0800
    650 
    651     Add README with pointers to mailing list, bugzilla & git repos
    652     
    653     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] sun.com>
    654 
    655 commit 9784df5ba9f04163da7486c005eaf2383c37b127
    656 Author: Paulo Cesar Pereira de Andrade <pcpa (a] mandriva.com.br>
    657 Date:   Thu Jan 29 17:40:24 2009 -0200
    658 
    659     Janitor: Correct make distcheck and gcc/sparse warnings.
    660 
    661 commit 839ef4a38dceec053c3fb33878e59eb26bd8d580
    662 Author: Peter Hutterer <peter (a] cs.unisa.edu.au>
    663 Date:   Mon May 19 17:31:04 2008 +0930
    664 
    665     Rename parameters to clarify QueryVersion/QueryExtension.
    666     
    667     These parameters are not treated as input. Rename them to make the inner
    668     workings slightly more obvious.
    669     
    670     X.Org Bug 14511 <http://bugs.freedesktop.org/show_bug.cgi?id=14511>
    671 
    672 commit d7778d80356f9a7f0bc4ffd0f0cf0bfa86928249
    673 Author: Matthieu Herrb <matthieu.herrb (a] laas.fr>
    674 Date:   Sun Mar 9 08:19:27 2008 +0100
    675 
    676     nuke RCS Ids
    677 
    678 commit e211f3647823d89dd25a1cff8981c3154a6c429d
    679 Author: James Cloos <cloos (a] jhcloos.com>
    680 Date:   Thu Dec 6 16:38:28 2007 -0500
    681 
    682     Replace static ChangeLog with dist-hook to generate from git log
    683 
    684 commit cad41f810023db454f33feea4f89d4d053737732
    685 Author: Daniel Stone <daniel (a] fooishbar.org>
    686 Date:   Wed Nov 8 16:14:41 2006 +0200
    687 
    688     bump to 4.0.3
    689 
    690 commit 9dc7945eaa9216bf7b0056e815fba5bf8b5ded07
    691 Author: Lars Knoll <lars (a] trolltech.com>
    692 Date:   Sun Oct 15 14:13:14 2006 -0700
    693 
    694     Don't unlock the Display when you have not locked it.
    695     
    696     Acked-by: Jamey Sharp <jamey (a] minilop.net>
    697 
    698 commit fcd9a56f0614521127d82954c4a4d77c92e62e53
    699 Author: Adam Jackson <ajax (a] benzedrine.nwnk.net>
    700 Date:   Fri Oct 13 16:12:54 2006 -0400
    701 
    702     Bump to 4.0.2
    703 
    704 commit 8b43f6b0b5d77ab33efc50e4b1f588e51d029eb8
    705 Author: Alan Coopersmith <alan.coopersmith (a] sun.com>
    706 Date:   Wed Sep 27 19:03:11 2006 -0700
    707 
    708     Add *~ to .gitignore to skip over emacs droppings
    709 
    710 commit 6c4d82990973b02a756ab3ba83ea345fed4bf87e
    711 Author: Stuart Kreitman <stuart.kreitman (a] sun.com>
    712 Date:   Wed Sep 27 19:02:02 2006 -0700
    713 
    714     Sun bug #5099413/Xorg bugzilla #1554: Gnopernicus full-screen mag not working
    715     
    716     Sun bug #5099413: Gnopernicus full-screen magnification not working
    717     <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=5099413>
    718     
    719     includes fix for Xorg bug #1554: rect defined in XFixesInvertRegion is not used
    720     <https://bugs.freedesktop.org/show_bug.cgi?id=1554>
    721 
    722 commit cd58068a11dbec3a17099fb699885e5e20e6ae36
    723 Author: David Nusinow <dnusinow (a] debian.org>
    724 Date:   Mon Sep 18 18:24:29 2006 -0400
    725 
    726     Add 01_include_xlib.h.diff. Xfixes.h relies on the "Bool" define from
    727     X11/Xlib.h but did not include that header (directly or indirectly)
    728     See debian bug #372756
    729 
    730 commit 78e08086c13b2053f7cf1f74a8ec49b7e970a420
    731 Author: Tilman Sauerbeck <tilman (a] code-monkey.de>
    732 Date:   Fri Sep 1 17:12:39 2006 +0200
    733 
    734     Bug #4902: _XRead32() expects a signed long pointer on 64 bit systems.
    735 
    736 commit 4ac8fb34617e392a5af35bf34d86df61903ec482
    737 Author: Alan Coopersmith <alan.coopersmith (a] sun.com>
    738 Date:   Thu Jul 13 14:58:54 2006 -0700
    739 
    740     renamed: .cvsignore -> .gitignore
    741 
    742 commit f506712c5117d48cee6b36bc8b9ef1760b0506d6
    743 Author: Adam Jackson <ajax (a] nwnk.net>
    744 Date:   Fri May 12 15:18:54 2006 +0000
    745 
    746     Fix the soversion to 3.1.0.
    747 
    748 commit 2284047bd919826e2ef1a8898eabfc3c8ec5d1a8
    749 Author: Adam Jackson <ajax (a] nwnk.net>
    750 Date:   Fri Apr 28 20:53:15 2006 +0000
    751 
    752     Bump to 4.0
    753 
    754 commit 0ce5551f030c27705b3828b41647824577e30f74
    755 Author: Adam Jackson <ajax (a] nwnk.net>
    756 Date:   Mon Apr 3 00:58:13 2006 +0000
    757 
    758     Coverity #576: Plug a leak on the error path.
    759 
    760 commit e9e432a987682ee16ed0dbc1e9b520fa5720150c
    761 Author: Deron Johnson <deron.johnson (a] sun.com>
    762 Date:   Mon Mar 13 21:59:05 2006 +0000
    763 
    764     Part 2 of 3 (Other parts are in proto and xserver) Composite Version 0.3:
    765         CompositeGetOverlayWindow, CompositeReleaseOverlayWindow Xfixes Version
    766         4.0: XFixesHideCursor, XFixesShowCursor
    767 
    768 commit 96275f0b9f97be0fd9e002fd14bce4f4a015278a
    769 Author: Kevin E Martin <kem (a] kem.org>
    770 Date:   Thu Dec 15 00:24:29 2005 +0000
    771 
    772     Update package version number for final X11R7 release candidate.
    773 
    774 commit c775b60f1aec6730be283cba3e9ba4b2348fb6ba
    775 Author: Kevin E Martin <kem (a] kem.org>
    776 Date:   Tue Dec 6 22:48:43 2005 +0000
    777 
    778     Change *man_SOURCES ==> *man_PRE to fix autotools warnings.
    779 
    780 commit eb7159b541fe31d0d84313b49503bedd44a95bec
    781 Author: Kevin E Martin <kem (a] kem.org>
    782 Date:   Sat Dec 3 05:49:43 2005 +0000
    783 
    784     Update package version number for X11R7 RC3 release.
    785 
    786 commit be6cbf68064b4d45f77cbb0a1d4670e9789d2343
    787 Author: Alan Coopersmith <Alan.Coopersmith (a] sun.com>
    788 Date:   Mon Nov 28 22:03:05 2005 +0000
    789 
    790     Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4
    791         update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir)
    792 
    793 commit 4b9884c72b23b276eeb2b2e6b3c749fbb54fdc36
    794 Author: Kevin E Martin <kem (a] kem.org>
    795 Date:   Sat Nov 19 07:15:41 2005 +0000
    796 
    797     Update pkgconfig files to separate library build-time dependencies from
    798         application build-time dependencies, and update package deps to work
    799         with separate build roots.
    800 
    801 commit 593a37675b72053c36924785a2fea51a06ad1c37
    802 Author: Alan Coopersmith <Alan.Coopersmith (a] sun.com>
    803 Date:   Sun Nov 13 01:48:25 2005 +0000
    804 
    805     Use sed to substitute variables in man pages.
    806 
    807 commit b21e46646371edbf7155eae621fefc0b572b006e
    808 Author: Kevin E Martin <kem (a] kem.org>
    809 Date:   Wed Nov 9 21:31:20 2005 +0000
    810 
    811     Bump version numbers for X11R6.9/X11R7 RC2.
    812 
    813 commit 097f483e522f721eae4816e659237da94a4796d3
    814 Author: Kevin E Martin <kem (a] kem.org>
    815 Date:   Wed Nov 9 21:19:13 2005 +0000
    816 
    817     Update package version number for X11R7 RC2 release.
    818 
    819 commit 750cac0b61ecde7489ea98e69f60417d169329c7
    820 Author: Kevin E Martin <kem (a] kem.org>
    821 Date:   Tue Nov 1 15:11:51 2005 +0000
    822 
    823     Update pkgcheck dependencies to work with separate build roots.
    824 
    825 commit 92f0e71679f00f6ce18f445f505962bd1c6c8141
    826 Author: Adam Jackson <ajax (a] nwnk.net>
    827 Date:   Wed Oct 26 22:27:27 2005 +0000
    828 
    829     Bug #4868: Add check for xproto.
    830 
    831 commit 15fba21d80922c8f93f5406b0616022b92eaa5c1
    832 Author: Kevin E Martin <kem (a] kem.org>
    833 Date:   Fri Jul 29 21:22:51 2005 +0000
    834 
    835     Various changes preparing packages for RC0:
    836     - Verify and update package version numbers as needed
    837     - Implement versioning scheme
    838     - Change bug address to point to bugzilla bug entry form
    839     - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to
    840         reenable it)
    841     - Fix makedepend to use pkgconfig and pass distcheck
    842     - Update build script to build macros first
    843     - Update modular Xorg version
    844 
    845 commit c6bd02dc03af0e475d2396d5c399201969348151
    846 Author: Kevin E Martin <kem (a] kem.org>
    847 Date:   Sat Jul 23 05:27:00 2005 +0000
    848 
    849     Fix distchecks
    850 
    851 commit abdd66912a8c9087ae171b62c9910af8bb00e437
    852 Author: Daniel Stone <daniel (a] fooishbar.org>
    853 Date:   Sat Jul 16 07:06:31 2005 +0000
    854 
    855     Set soversion to 3.0.0 using -version-number.
    856 
    857 commit 366322d9d9354ed80fde808322207ee57599f7cb
    858 Author: Keith Packard <keithp (a] keithp.com>
    859 Date:   Sat Jul 9 06:18:56 2005 +0000
    860 
    861     Add .cvsignore files Switch _la_CFLAGS for AM_CFLAGS to clean up directory
    862 
    863 commit c3c7a139e8a4c01aa55a19ecc9a1acf7dad5bbe7
    864 Author: Daniel Stone <daniel (a] fooishbar.org>
    865 Date:   Sun Jul 3 07:00:56 2005 +0000
    866 
    867     Add Xtrans definitions (FONT_t, TRANS_CLIENT) to clean up warnings.
    868     Add XSERV_t, TRANS_SERVER, TRANS_REOPEN to quash warnings.
    869     Add #include <dix-config.h> or <xorg-config.h>, as appropriate, to all
    870         source files in the xserver/xorg tree, predicated on defines of
    871         HAVE_{DIX,XORG}_CONFIG_H. Change all Xfont includes to
    872         <X11/fonts/foo.h>.
    873 
    874 commit 3afe915a1bc5243229d8c31dc6e3023b92821911
    875 Author: Kevin E Martin <kem (a] kem.org>
    876 Date:   Sat Jul 2 06:35:03 2005 +0000
    877 
    878     Add appropriate lib*_CFLAGS to Makefile.am's -- fixes build problems
    879 
    880 commit e1825a381734f2bb98430329179b047ec8ca5cb5
    881 Author: Adam Jackson <ajax (a] nwnk.net>
    882 Date:   Thu May 19 00:22:32 2005 +0000
    883 
    884     revert last change, didn't do right thing at all, sorry for the noise
    885 
    886 commit 4b09a3bfa3b3fa43230cb8ebc5d84257b31473bc
    887 Author: Adam Jackson <ajax (a] nwnk.net>
    888 Date:   Thu May 19 00:10:08 2005 +0000
    889 
    890     Require automake 1.7 in AM_INIT_AUTOMAKE
    891 
    892 commit 1406e1cbe2cf76e6e056377af831f9fdf710e487
    893 Author: Sren Sandmann Pedersen  <sandmann (a] daimi.au.dk>
    894 Date:   Tue May 17 17:02:24 2005 +0000
    895 
    896     Conditionally include config.h in xc/lib/Xdamage and xc/lib/Xfixes
    897 
    898 commit 03d31637787906378bc2809758b6dbfe79ea55ad
    899 Author: Sren Sandmann Pedersen  <sandmann (a] daimi.au.dk>
    900 Date:   Tue May 17 16:11:26 2005 +0000
    901 
    902     Remove rest of half-removed if statement
    903     remove irrelevant entries
    904 
    905 commit 7d85687a6d8319ac1a48e0294228632ffbefdc8a
    906 Author: Sren Sandmann Pedersen  <sandmann (a] daimi.au.dk>
    907 Date:   Tue May 17 15:22:23 2005 +0000
    908 
    909     And here
    910 
    911 commit 8424a78dff9a51f7f6ccbfe111a78242867ccdf4
    912 Author: Sren Sandmann Pedersen  <sandmann (a] daimi.au.dk>
    913 Date:   Tue May 17 15:21:58 2005 +0000
    914 
    915     Check in Makefile.am here
    916 
    917 commit 23a209b91fd011539c6d9a9447860dac4e12eae9
    918 Author: Sren Sandmann Pedersen  <sandmann (a] daimi.au.dk>
    919 Date:   Tue May 17 15:21:14 2005 +0000
    920 
    921     Really check in the build system for Xfixes
    922 
    923 commit 58394a76ec740d0242097975e25ce6a6f148cb9d
    924 Author: Markus Kuhn <Markus.Kuhn (a] cl.cam.ac.uk>
    925 Date:   Sat Dec 4 00:42:47 2004 +0000
    926 
    927     Encoding of numerous files changed to UTF-8
    928 
    929 commit b083c691fe7707146f728e563247a18aa601c19b
    930 Author: Eric Anholt <anholt (a] freebsd.org>
    931 Date:   Sat Jul 31 05:50:39 2004 +0000
    932 
    933     Bring in Xfixes, Xdamage, and Xcomposite userland from xserver CVS:
    934     - Update Xfixes headers to protocol major version 3.
    935     - Add composite headers.
    936     - Add libXfixes, libXdamage, and libXcomposite.
    937     - Add imake glue for new libraries, but leave Composite off by default
    938         until issues are resolved.
    939