ChangeLog revision 5afda2e6
1848b8605Smrgcommit db7cca17ad7807e92a928da9d4c68a00f4836da2
2848b8605SmrgAuthor: Adam Jackson <ajax@redhat.com>
3848b8605SmrgDate:   Wed Oct 9 13:41:29 2019 -0400
4848b8605Smrg
5848b8605Smrg    libX11 1.6.9
6848b8605Smrg    
7848b8605Smrg    Signed-off-by: Adam Jackson <ajax@redhat.com>
8848b8605Smrg
9848b8605Smrgcommit f5ba2c632a4c84279bdd48c687271292f5dc4f87
10848b8605SmrgAuthor: Dmitry Osipenko <digetx@gmail.com>
11848b8605SmrgDate:   Sat May 18 19:10:32 2019 +0300
12
13    Fix lockup in _XReply() caused by recursive synchronization
14    
15    This patch is based on a suggestion made by Uli Schlachter in a comment
16    to the bug report https://gitlab.freedesktop.org/xorg/lib/libx11/issues/93.
17    
18    Explanation of the bug (given by Uli Schlachter as well):
19    
20    An error was received and handled. Since there was an error callback set,
21    Xlib unlocks the display, runs the error callback, and then locks the display
22    again. This goes through _XLockDisplay and then calls _XSeqSyncFunction.
23    On this "lock the thing"-path, Xlib notices that sequence numbers are close to
24    wrap-around and tries to send a GetInputFocus request. However, the earlier
25    calls already registered themselves as "we are handling replies/errors, do
26    not interfere!" and so the code here waits for "that other thread" to be done
27    before it continues. Only that there is no other thread, but it is this thread
28    itself and thus a deadlock follows.
29    
30    The bug is relatively easy to reproduce on any desktop environment by
31    using actively a touchscreen input that supports multitouch, i.e. practically
32    all mobile devices are affected.
33    
34    Fixes: https://gitlab.freedesktop.org/xorg/lib/libx11/issues/93
35    Suggested-by: Uli Schlachter <psychon@znc.in>
36    Tested-by: Dmitry Osipenko <digetx@gmail.com>
37    Reported-by: Dmitry Osipenko <digetx@gmail.com>
38    Signed-off-by: Dmitry Osipenko <digetx@gmail.com>
39
40commit 1f1ca0863fd81fd0538b104eb9d9841ddbc7c905
41Author: Adam Jackson <ajax@redhat.com>
42Date:   Fri Sep 13 16:44:32 2019 -0400
43
44    xkb: Provide <X11/extensions/XKBgeom.h> ourselves
45    
46    This header refers to libX11 types, it doesn't belong in xorgproto and
47    has been moved to legacy in 2019.2. Supply it ourselves.
48
49commit edc7680ed5a03cedb5facf14693823455e12c29c
50Author: Ross Burton <ross.burton@intel.com>
51Date:   Tue Aug 6 14:53:43 2019 +0100
52
53    src/util/Makefile: explicitly reset LINK to not use libtool
54    
55    Simply looking at libtool redefines LINK globally to use libtool, which when
56    you're trying to cross-compile to Windows can cause complications.
57    
58    As in src/util/ we're simply building a small binary for the build host, reset
59    LINK to the automake default so that the traditional compile/link steps occur
60    without libtool.
61    
62    Also remove -all-static from LDFLAGS as that is a libtool-specific argument
63    intended to solve this problem.
64    
65    Closes: #100
66    Signed-off-by: Ross Burton <ross.burton@intel.com>
67
68commit f111bf3ac091a3a6d1f094172621d9d033c3833c
69Author: Thomas E. Dickey <dickey@invisible-island.net>
70Date:   Tue Jul 30 16:53:27 2019 -0400
71
72    improve some formatting
73    
74    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
75
76commit 1d0a6fe9126c7ce61c6648cabf43b2de4d6d3ba9
77Author: Thomas E. Dickey <dickey@invisible-island.net>
78Date:   Tue Jul 30 15:49:09 2019 -0400
79
80    fix a substitution error from recent commit, e.g, "s/^\.EE/XDe/"
81    
82    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
83
84commit 8fe8aafe7e9beffaff0460fe08354dfcde1efe98
85Author: Thomas E. Dickey <dickey@invisible-island.net>
86Date:   Tue Jul 30 05:07:40 2019 -0400
87
88    split lines at sentence endings
89    
90    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
91
92commit 6f2cbcea5d6dcd1df7ef309481cad1663284c061
93Author: Thomas E. Dickey <dickey@invisible-island.net>
94Date:   Tue Jul 30 04:52:25 2019 -0400
95
96    trim trailing whitespace from manpages
97    
98    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
99
100commit 4abf482d8e6b0b1ae84e0f528e71066afd6d18b5
101Author: Thomas E. Dickey <dickey@invisible-island.net>
102Date:   Tue Jul 30 04:36:24 2019 -0400
103
104    another fake-quote fix
105    
106    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
107
108commit c0f0651f2b4dfa9fef86d1374689220125631993
109Author: Thomas E. Dickey <dickey@invisible-island.net>
110Date:   Tue Jul 30 04:34:54 2019 -0400
111
112    the last commit overlooked some fake-quote pairs
113    
114    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
115
116commit ef31143c9decda54b3ab2937d3300fcf5b493fd6
117Author: Walter Harms <wharms@bfs.de>
118Date:   Mon Jul 29 18:50:19 2019 +0200
119
120    fix ``fake quotes'' in text
121    
122    to remove the fake quotes replace them with propper
123    predefined macros \*(lq and \*(rq. this will allow
124    nroff to choose the propper characters when using ps etc.
125    
126    Signed-off-by: Walter Harms <wharms@bfs.de>
127
128commit 705027ea9b17d6552388d2067736ab4b0bf9dfb5
129Author: Walter Harms <wharms@bfs.de>
130Date:   Mon Jul 29 18:27:12 2019 +0200
131
132    get rid of ``fake quotes''
133    
134    these fake quotes are inside a comment and can be replaced with
135    some double quotes
136    
137    Signed-off-by: Walter Harms <wharms@bfs.de>
138
139commit fe46eb287106ad05538e896783a5cf877a4138df
140Author: Walter Harms <wharms@bfs.de>
141Date:   Mon Jul 29 17:57:02 2019 +0200
142
143    remove all private macro defines
144    
145    after converting everything to st. man page macros there is
146    no need to maintain X11 private nroff macros, so remove them.
147    
148    Signed-off-by: Walter Harms <wharms@bfs.de>
149
150commit b7f09ae19c9a098ecd545b4d4c45a6afe39a8764
151Author: Walter Harms <wharms@bfs.de>
152Date:   Mon Jul 29 17:47:35 2019 +0200
153
154    Replace home-grown .Ds .De macro with man page .EX/.EE macro
155    
156    Same pages use the man page .EX/.EE macro. Replace all occurences
157    of .De/.Ds with the std. macros to make the code better to maintain.
158    
159    Signed-off-by: Walter Harms <wharms@bfs.de>
160
161commit 951e772bc8d89bc62c4bbac14adc5d4f5027419f
162Author: Walter Harms <wharms@bfs.de>
163Date:   Wed Jul 3 18:23:51 2019 +0200
164
165    fix TBL format
166    
167    Signed-off-by: Walter Harms <wharms@bfs.de>
168
169commit 4eb167f5aca4cca05a230c728ffdb4fd382a4e1e
170Author: Walter Harms <wharms@bfs.de>
171Date:   Wed Jul 3 18:18:09 2019 +0200
172
173    replace home grown .ZN with std, .B and .BR
174    
175    Replace the home grown macro .ZN with std. macros
176    from man macro paket. So we can get rid of the
177    definition an get a clean header.
178    
179    Signed-off-by: Walter Harms <wharms@bfs.de>
180
181commit 08e6b36292ebf01ba2dcc4a48ec371c6f5d13458
182Author: Walter Harms <wharms@bfs.de>
183Date:   Sat Jun 22 18:33:48 2019 +0200
184
185    remove in-text macros
186    
187    remove in-text macros an fix a few typos on the way.
188    hopefuly that will make maintenance more easy.
189    
190    Signed-off-by: Walter Harms <wharms@bfs.de>
191
192commit cb0e894fe9927b07bd9d97c067fd0d007accb105
193Author: Walter Harms <wharms@bfs.de>
194Date:   Fri Jun 21 18:01:16 2019 +0200
195
196    note that we can handle kbd==NULL
197    
198    Signed-off-by: Walter Harms <wharms@bfs.de>
199
200commit 0327c427d62f671eced067c6d9b69f4e216a8cac
201Author: Adam Jackson <ajax@redhat.com>
202Date:   Mon Jun 17 13:36:08 2019 -0400
203
204    makekeys: Detach ourselves from X headers entirely
205    
206    Subsequent to a121b7b0c210efe10bf93453b29050282324c906 we are no longer
207    building makekeys with enough -I/foo/bar to find the X11 headers, so if
208    they're not in a system include path, things fail. Since this utility is
209    only needed at build time, there's no real reason to demand the X
210    headers be installed for both the build and target machines if cross-
211    compiling, we can just assume a vaguely ANSI environment instead.
212    
213    Tested-by: Niclas Zeising <zeising@daemonic.se>
214    Reviewed-by: Keith Packard <keithp@keithp.com>
215    Reviewed-by: Matt Turner <mattst88@gmail.com>
216
217commit 57f0d421a1320090d3a4948181fe228d86cc8977
218Author: Matt Turner <mattst88@gmail.com>
219Date:   Mon Jun 17 10:45:45 2019 -0400
220
221    libX11 1.6.8
222    
223    Signed-off-by: Matt Turner <mattst88@gmail.com>
224
225commit 5464b302bc0c4a055d3eac06c6ab15e209ff7668
226Author: Matt Turner <mattst88@gmail.com>
227Date:   Sun Jun 9 14:00:15 2019 -0700
228
229    Use AC_SYS_LARGEFILE
230    
231    ... and include config.h in makekeys.c to get the definition of
232    _FILE_OFFSET_BITS. Without it, libX11 can fail to build on a file
233    system with 64-bit inode numbers.
234    
235    Bug: https://bugs.gentoo.org/550502
236    Bug: https://bugs.gentoo.org/616140
237    Signed-off-by: Matt Turner <mattst88@gmail.com>
238
239commit 33b9148a833ab2ea46e44871da3c031bf1b78f77
240Author: Ran Benita <ran234@gmail.com>
241Date:   Thu Feb 13 20:55:08 2014 +0200
242
243    Compose.man: fix escaped hexadecimal char description
244    
245    The man page says:
246        Strings may be direct text encoded in the locale for which the
247        compose file is to be used, or an escaped octal or hexadecimal
248        character code.   Octal codes are specified as "\123" and
249        hexadecimal codes as "\0x123a".
250    
251    But the grammar in the parser and the implementation say:
252        ESCAPED_CHAR  ::= ('\\' | '\"' | OCTAL | HEX )
253        HEX           ::= '\' (x|X) HEX_CHAR [HEX_CHAR]]
254        HEX_CHAR      ::= (0|1|2|3|4|5|6|7|8|9|A|B|C|D|E|F|a|b|c|d|e|f)
255    
256    So "\0x123a" -> "\x3a".
257    
258    Signed-off-by: Ran Benita <ran234@gmail.com>
259    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
260
261commit d9b2cc35edf01e4f751a9ccb5ac185745184cec0
262Author: ojab <ojab@ojab.ru>
263Date:   Mon Apr 24 20:12:17 2017 +0000
264
265    Compose sequences for rouble sign
266    
267    Cyrillic combinations mirror the Qwerty-Jcuken keyboard layout.
268    
269    Signed-off-by: Slava Kardakov <ojab@ojab.ru>
270    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
271
272commit 3f211616f6414bd9958566c0ca137e87a2b6df95
273Author: Pavel Labath <pavelo@centrum.sk>
274Date:   Fri Nov 30 20:45:04 2012 +0100
275
276    Fix a leak in XCreateFontSet
277    
278    a simple snippet like XFreeFontSet(d, XCreateFontSet(d, ...)) will generate lots of memory leaks,
279    as evidenced by the following valgrind output:
280    ==983== HEAP SUMMARY:
281    ==983==     in use at exit: 39,409 bytes in 341 blocks
282    ==983==   total heap usage: 4,795 allocs, 4,454 frees, 489,086 bytes allocated
283    ==983==
284    ==983== 1,688 (136 direct, 1,552 indirect) bytes in 1 blocks are definitely lost in loss record
285    40 of 46
286    ==983==    at 0x4C2B042: realloc (in /usr/lib64/valgrind/vgpreload_memcheck-amd64-linux.so)
287    ==983==    by 0x56D5A93: add_codeset.clone.9 (in /usr/lib64/libX11.so.6.3.0)
288    ==983==    by 0x56D5FE0: load_generic (in /usr/lib64/libX11.so.6.3.0)
289    ==983==    by 0x56D7612: initialize (in /usr/lib64/libX11.so.6.3.0)
290    ==983==    by 0x56D7E75: _XlcCreateLC (in /usr/lib64/libX11.so.6.3.0)
291    ==983==    by 0x56F9A5F: _XlcUtf8Loader (in /usr/lib64/libX11.so.6.3.0)
292    ==983==    by 0x56DF815: _XOpenLC (in /usr/lib64/libX11.so.6.3.0)
293    ==983==    by 0x56B255A: XOpenOM (in /usr/lib64/libX11.so.6.3.0)
294    ==983==    by 0x56A665A: XCreateFontSet (in /usr/lib64/libX11.so.6.3.0)
295    ==983==    by 0x4FCA80: conky::x11_output::create_gc() (x11.cc:746)
296    ==983==    by 0x4FC3B4: conky::x11_output::use_own_window() (x11.cc:602)
297    ==983==    by 0x4FAD42: conky::priv::own_window_setting::set(bool const&, bool) (x11.cc:92)
298    ==983==
299    ==983== LEAK SUMMARY:
300    ==983==    definitely lost: 136 bytes in 1 blocks
301    ==983==    indirectly lost: 1,552 bytes in 34 blocks
302    ==983==      possibly lost: 0 bytes in 0 blocks
303    ==983==    still reachable: 37,721 bytes in 306 blocks
304    ==983==         suppressed: 0 bytes in 0 blocks
305    
306    This patch makes the leak dissappear (Well, at least the "definitely lost part". The "still
307    reachable" thingy remains). After some analysis, I've discovered that the XLCd structure is
308    destroyed improperly. The "constructor" is in lcGeneric.c, but the structure is destroyed using
309    code from lcPublic.c. I've found that changing the destructor call to _XlcDestroyLC executes the
310    correct code path, and I'm pretty sure this is correct (the object was constructed using
311    _XlcCreateLC, it make sense to destroy it using its conterpart).
312    
313    So far I haven't observed any strange behaviour on my system caused by this change (although, I'm
314    not sure, how many programs actually use this function).
315    
316    Signed-off-by: Pavel Labath <pavelo@centrum.sk>
317    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
318
319commit 4645e219133458781e3fb48eaea6a74cccb1b9aa
320Author: Jon Turney <jon.turney@dronecode.org.uk>
321Date:   Tue Apr 30 14:39:06 2019 +0100
322
323    Avoid using libtool wrapper for makekeys
324    
325    For Windows targets, libtool uses a wrapper executable, not a wrapper
326    script (see [1]), which it compiles with the host compiler.  This
327    doesn't work when cross-compiling.
328    
329    Since we don't actually need to link with anything, use the libtool flag
330    -all-static to tell it to stay completely out of this.
331    
332    [1] https://www.gnu.org/software/libtool/manual/html_node/Wrapper-executables.html
333
334commit 6886d9ba06826785a8ccb312c04ea82b91bb6a25
335Author: Jon Turney <jon.turney@dronecode.org.uk>
336Date:   Wed Apr 24 12:50:41 2019 +0100
337
338    Use EXEEXT_FOR_BUILD for makekeys
339    
340    Use EXEXT_FOR_BUILD, to fix cross-compiling where EXEEXT differs from
341    EXEEXT_FOR_BUILD, such as when building for Windows from unix.
342    
343    (Note: As written, this assumes EXEEXT_FOR_BUILD is always empty when
344    cross-compiling.  There could be some elaborate autodetection for
345    EXEXT_FOR_BUILD, but for the moment, if you are cross-compiling from
346    Windows to Unix, you'll need to set EXEEXT_FOR_BUILD explicity...)
347
348commit a121b7b0c210efe10bf93453b29050282324c906
349Author: Jon Turney <jon.turney@dronecode.org.uk>
350Date:   Tue Apr 30 14:30:41 2019 +0100
351
352    Remove makekeys dependency on X headers
353    
354    This is the patch from https://bugs.freedesktop.org/show_bug.cgi?id=6669
355    by Pierre Ossman, reworked for master.
356    
357    Avoid using LIBS (which are for host, but we don't need) and rewrite
358    makekeys slightly to avoid needing to include any X headers, which
359    avoids potentially having -I with host paths in CFLAGS, which can cause
360    standard headers e.g. stdio.h for the host to also be used, which can
361    break things...
362
363commit cbb59d1727cb1bfcff91b54fd55f4139e360b7ab
364Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
365Date:   Fri Jun 7 23:35:33 2019 +0200
366
367    Braille: Fix typing quickly
368    
369    On finishing releasing Braille keys, we should clear the just-commited
370    pattern, to reset the state to initial state, and avoid having to wait for
371    0.3s before typing the next pattern.
372    
373    Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
374    Tested-by: Jean-Philippe Mengual <jpmengual@hypra.fr>
375
376commit 99a2cf1aa0b58391078d5d3edf0a7dab18c7745d
377Author: Tapani Pälli <tapani.palli@intel.com>
378Date:   Mon May 13 08:29:49 2019 +0300
379
380    Protect colormap add/removal with display lock
381    
382    This fixes a bug where concurrent threads call XCreateColormap and
383    XFreeColormap corrupting a linked list where colormap structures
384    are stored.
385    
386    Fixes: https://gitlab.freedesktop.org/xorg/lib/libx11/issues/94
387    
388    v2: handle XCopyColormapAndFree also (Adam Jackson)
389    
390    Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
391
392commit fea80d03c381a4de379863c0d41f6d4c00f15e1e
393Author: Jon Turney <jon.turney@dronecode.org.uk>
394Date:   Wed Mar 13 13:12:20 2019 +0000
395
396    Add autoconf checks for headers we include for FIONREAD
397    
398    Add autoconf checks for the extra headers we include to define FIONREAD.
399    This needs sys/socket.h on Cygwin, and none of the alternatives on
400    Windows.
401
402commit 87c77a1e6d7034536e9d25ce24a667ebf53486a7
403Author: Matthias Dieter Wallnöfer <matthias.wallnoefer@lugbz.org>
404Date:   Mon Mar 11 14:19:52 2019 +0000
405
406    locale.alias.pre - add the de_IT locale
407    
408    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
409
410commit 568f77f414072506bbe48646637c872987c97e63
411Author: Matthias Dieter Wallnöfer <matthias.wallnoefer@lugbz.org>
412Date:   Mon Mar 11 14:17:10 2019 +0000
413
414    locale.dir.pre - add the de_IT locale
415    
416    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
417
418commit 38c0c92feaef7dc4a72920b1dd79872e6578086c
419Author: Matthias Dieter Wallnöfer <matthias.wallnoefer@lugbz.org>
420Date:   Mon Mar 11 14:12:07 2019 +0000
421
422    compose.dir.pre - add de_IT locale
423    
424    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
425
426commit 49f835611ba6ab82e68b7b851507931c142db7a5
427Author: Matthias Dieter Wallnöfer <matthias.wallnoefer@lugbz.org>
428Date:   Tue Jan 29 15:34:34 2019 +0000
429
430    Update locale.alias.pre - introduce the de_LI aliases (equivalent to de_CH)
431    
432    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
433
434commit ed669234d0cd5933618aa5fd2da697b59845b9be
435Author: Matthias Dieter Wallnöfer <matthias.wallnoefer@lugbz.org>
436Date:   Tue Jan 29 15:28:18 2019 +0000
437
438    locale.dir.pre - fix the de_LI latin15 locale
439    
440    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
441
442commit 82b5c1454a49333b4d94984d40db79cff386d37f
443Author: Josh Triplett <josh@joshtriplett.org>
444Date:   Sun Feb 3 08:31:41 2019 +0100
445
446    compose.dir.pre: Give the C.UTF-8 locale a full set of UTF-8 compose sequences
447    
448    Signed-off-by: Josh Triplett <josh@joshtriplett.org>
449
450commit 603c3ab25a692194805fd4b0c62afac8093897fe
451Author: Alan Coopersmith <alan.coopersmith@oracle.com>
452Date:   Sat Mar 9 20:58:07 2019 -0800
453
454    Add missing close paren to XrmGetStringDatabase synopsis in man page
455    
456    Fixes: commit 0642e99ac05afb0c
457    
458    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
459
460commit 6590cc41e3c5c5c836a49a2c82774d7cc9ab3c85
461Author: Alan Coopersmith <alan.coopersmith@oracle.com>
462Date:   Sat Feb 23 11:12:27 2019 -0800
463
464    Include reallocarray.h in tarballs so "make distcheck" passes
465    
466    Fixes: commit bcf7b5aa06c23aee
467    
468    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
469
470commit a4a7df06351ce9565d298a84547ff71f2d220fbf
471Author: Alan Coopersmith <alan.coopersmith@oracle.com>
472Date:   Sat Feb 23 11:04:41 2019 -0800
473
474    XlibInt.c: include headers needed for ioctl(...FIONREAD...) on Solaris
475    
476    Fixes: commit 5538b3e4ae6dee
477    
478    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
479
480commit 38ec04de7e537dde6b7b1eaca46b1a24fcdbc044
481Author: Alan Coopersmith <alan.coopersmith@oracle.com>
482Date:   Sat Feb 23 10:48:26 2019 -0800
483
484    specs/XKB: Fix misprint in documentation of XkbFreeGeomOverlayKeys()
485    
486    Fixes: https://gitlab.freedesktop.org/xorg/lib/libx11/issues/86
487    aka: https://bugs.freedesktop.org/show_bug.cgi?id=23550
488    
489    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
490
491commit 74f2f26811ae82b15dede31504b0eb541f7a3293
492Author: Alan Coopersmith <alan.coopersmith@oracle.com>
493Date:   Sat Feb 23 10:46:05 2019 -0800
494
495    specs/XKB: Fix misprint in documentation of XkbAllocGeomOverlayKeys()
496    
497    Fixes: https://gitlab.freedesktop.org/xorg/lib/libx11/issues/85
498    aka: https://bugs.freedesktop.org/show_bug.cgi?id=23549
499    
500    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
501
502commit 66b039a41690f076e962ac6bd46cca017360a7d1
503Author: Alan Coopersmith <alan.coopersmith@oracle.com>
504Date:   Sat Feb 23 10:44:15 2019 -0800
505
506    specs/XKB: Fix misprint in documentation of XkbAllocGeomOverlayRows()
507    
508    Fixes: https://gitlab.freedesktop.org/xorg/lib/libx11/issues/84
509    aka: https://bugs.freedesktop.org/show_bug.cgi?id=23548
510    
511    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
512
513commit cdea0e840315171f8390adc63a2397ddf111eea4
514Author: Alan Coopersmith <alan.coopersmith@oracle.com>
515Date:   Sat Feb 23 10:38:08 2019 -0800
516
517    specs/XKB: Fix misprint in documentation of XkbGetNamedGeometry()
518    
519    Fixes: https://gitlab.freedesktop.org/xorg/lib/libx11/issues/82
520    aka: https://bugs.freedesktop.org/show_bug.cgi?id=23520
521    
522    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
523
524commit c72d17ada98723cd9e03ddf06680a0e54b2c3089
525Author: Alan Coopersmith <alan.coopersmith@oracle.com>
526Date:   Sat Feb 23 10:30:32 2019 -0800
527
528    XkbAllocGeomOverlayKey man page should be named XkbAllocGeomOverlayKeys
529    
530    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
531
532commit 05002b8aef9544c8545e0823a02cf14f335d2b68
533Author: Alan Coopersmith <alan.coopersmith@oracle.com>
534Date:   Sun Feb 17 15:13:25 2019 -0800
535
536    Fix man page typo: XkbAllBellNotifyMask -> XkbAllBellEventsMask
537    
538    Reported-by: Daniel Hahler <git@thequod.de>
539    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
540
541commit 5538b3e4ae6dee32c47db9dfc85b07bbe7b90f6c
542Author: Adam Jackson <ajax@redhat.com>
543Date:   Fri Mar 24 11:07:36 2017 -0400
544
545    _XDefaultIOError: Do better at detecting explicit shutdown
546    
547    Currently, when the X server crashes or a client is disconnected with
548    XKillClient, you get a somewhat confusing error message from libX11
549    along the lines of:
550    
551    XIO:  fatal IO error 11 (Resource temporarily unavailable) on X server ":0"
552          after 98 requests (40 known processed) with 0 events remaining.
553    
554    What's happening here is the previous recvmsg has thrown EAGAIN, since
555    the socket is non-blocking. In this case, check whether the socket has
556    any more data to read, and if not treat it like EPIPE.
557    
558    Signed-off-by: Adam Jackson <ajax@redhat.com>
559
560commit 6d2cde9633b5ee020cb60caea1cf61e090b86dd2
561Author: Adam Jackson <ajax@redhat.com>
562Date:   Fri Mar 24 11:07:35 2017 -0400
563
564    _XDefaultIOError: Reformat to be less ugly
565    
566    Signed-off-by: Adam Jackson <ajax@redhat.com>
567    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
568
569commit 003e30a66a249f5c70b30d1c187385124cd4cdad
570Author: Alan Coopersmith <alan.coopersmith@oracle.com>
571Date:   Tue Jan 1 14:34:04 2019 -0800
572
573    Avoid use-after-free in _XimProtoSetIMValues()
574    
575    Fixes gitlab issue #49
576    
577    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
578
579commit 30656fd66ad47aeaca0bfc237a818f189554f07e
580Author: Alan Coopersmith <alan.coopersmith@oracle.com>
581Date:   Tue Jan 1 12:21:04 2019 -0800
582
583    Fix implicit conversion warnings in _XlcCreateDefaultCharSet
584    
585    lcCharSet.c:187:50: warning: implicit conversion changes signedness:
586          'int' to 'unsigned long' [-Wsign-conversion]
587        tmp = Xmalloc(name_len + 1 + ct_sequence_len + 1);
588              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~
589    ../../include/X11/Xlibint.h:453:32: note: expanded from macro 'Xmalloc'
590                           ~~~~~~  ^~~~
591    lcCharSet.c:192:31: warning: implicit conversion changes signedness:
592          'int' to 'unsigned long' [-Wsign-conversion]
593        memcpy(tmp, name, name_len+1);
594        ~~~~~~            ~~~~~~~~^~
595    lcCharSet.c:216:45: warning: implicit conversion changes signedness:
596          'int' to 'unsigned long' [-Wsign-conversion]
597        memcpy(tmp, ct_sequence, ct_sequence_len+1);
598        ~~~~~~                   ~~~~~~~~~~~~~~~^~
599    lcCharSet.c:183:16: warning: implicit conversion loses integer precision:
600          'unsigned long' to 'int' [-Wshorten-64-to-32]
601        name_len = strlen(name);
602                 ~ ^~~~~~~~~~~~
603    lcCharSet.c:184:23: warning: implicit conversion loses integer precision:
604          'unsigned long' to 'int' [-Wshorten-64-to-32]
605        ct_sequence_len = strlen(ct_sequence);
606                        ~ ^~~~~~~~~~~~~~~~~~~
607    lcCharSet.c:198:37: warning: implicit conversion loses integer precision:
608         'long' to 'unsigned int' [-Wshorten-64-to-32]
609            unsigned int length = colon - charset->name;
610                         ~~~~~~   ~~~~~~^~~~~~~~~~~~~~~
611    
612    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
613
614commit 2e6300905784fa8adfcea019262ea58b3e1ed4ad
615Author: Alan Coopersmith <alan.coopersmith@oracle.com>
616Date:   Tue Jan 1 11:41:47 2019 -0800
617
618    Remove no-longer-used name variable in _XGetAtomName
619    
620    Fixes gcc warning:
621    GetAtomNm.c: In function ‘_XGetAtomName’:
622    GetAtomNm.c:39:11: warning: unused variable ‘name’ [-Wunused-variable]
623         char *name;
624               ^~~~
625    
626    Introduced by commit 336c1e7a505698a8f3bcb6eb96dbbb8ed21ade96
627    
628    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
629
630commit f077871c2a12cf098b0c50572e112c6dc5e04de0
631Author: Alan Coopersmith <alan.coopersmith@oracle.com>
632Date:   Sat Dec 29 11:39:29 2018 -0800
633
634    Fix out-of-tree builds after commit 8a62e26515e528bb47917ec4a55cc2b492419eeb
635    
636    In-tree builds found reallocarray.h in $(top_builddir)/src but the
637    out-of-tree build didn't find it at all.
638    
639    Reported-by: Emmanuele Bassi <ebassi@gmail.com> from GNOME continuous integration pipeline
640    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
641
642commit ba7f7cc783672784bebc6e69349b55c6c75c1973
643Author: Alan Coopersmith <alan.coopersmith@oracle.com>
644Date:   Sun Sep 27 18:35:27 2015 -0700
645
646    Convert src/xlibi18n to use reallocarray()
647    
648    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
649
650commit 336c1e7a505698a8f3bcb6eb96dbbb8ed21ade96
651Author: Alan Coopersmith <alan.coopersmith@oracle.com>
652Date:   Sat Sep 26 11:12:47 2015 -0700
653
654    Replace Xmalloc+strcpy pairs with strdup calls
655    
656    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
657
658commit 258a8ced681dc1bc50396be7439fce23f9807e2a
659Author: Alan Coopersmith <alan.coopersmith@oracle.com>
660Date:   Sun Jul 19 11:58:50 2015 -0700
661
662    Replace _XkbTypedRealloc & _XkbClearElems with new _XkbResizeArray
663    
664    Makes resizing & clearing more consistent and gets rid of some weird
665    quirks like always subtracting 1 from the size passed to _XkbClearElems
666    so it could always add 1 to the size passed in.
667    
668    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
669
670commit f94273e2f4284040306b888e5ca0381ee00591af
671Author: Alan Coopersmith <alan.coopersmith@oracle.com>
672Date:   Sun Jul 19 09:47:29 2015 -0700
673
674    Add some missing allocation failure checks in src/xcms
675    
676    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
677
678commit 76850471b4a5a6d30f5660234e87ec2772e7b426
679Author: Alan Coopersmith <alan.coopersmith@oracle.com>
680Date:   Sun Jul 19 09:33:21 2015 -0700
681
682    Convert src/xcms to use reallocarray()
683    
684    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
685
686commit 8a62e26515e528bb47917ec4a55cc2b492419eeb
687Author: Alan Coopersmith <alan.coopersmith@oracle.com>
688Date:   Sun Jul 19 09:24:02 2015 -0700
689
690    Convert src/XKB to use reallocarray()
691    
692    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
693
694commit 6d1dc1f6169ebf0ba71785d461bd98129c65c862
695Author: Alan Coopersmith <alan.coopersmith@oracle.com>
696Date:   Thu Jun 4 23:30:43 2015 -0700
697
698    Convert main src directory to use reallocarray()
699
700commit bcf7b5aa06c23aee00af7999b58cb96a8571ac42
701Author: Alan Coopersmith <alan.coopersmith@oracle.com>
702Date:   Thu Jun 4 23:18:23 2015 -0700
703
704    Import reallocarray() from OpenBSD
705    
706    Wrapper for realloc() that checks for overflow when multiplying
707    arguments together, so we don't have to add overflow checks to
708    every single call.  For documentation on usage, see:
709    http://www.openbsd.org/cgi-bin/man.cgi/OpenBSD-current/man3/calloc.3
710    
711    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
712
713commit 9bdfe9c9af11d77d66e5ff651e82b20e695cb460
714Author: Alan Coopersmith <alan.coopersmith@oracle.com>
715Date:   Mon Nov 19 21:26:23 2018 -0800
716
717    Update README for gitlab migration
718    
719    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
720
721commit c8bcc19970a2cc4ad337de1338c63a07325eefcd
722Author: Albert Astals Cid <aacid@kde.org>
723Date:   Fri Nov 9 22:24:52 2018 +0100
724
725    locale.dir: Add ast_ES.UTF-8
726    
727    With this patch xev properly reports
728       XLookupString gives 2 bytes: (c2 b4) "´"
729    for the dead_acute key when using the Asturian locale
730
731commit 117bb310b44ce03802c91a70949eb58dcc702a3c
732Author: Albert Astals Cid <aacid@kde.org>
733Date:   Fri Nov 9 22:18:43 2018 +0100
734
735    compose.dir: Add ast_ES.UTF-8
736    
737    With this patch one can properly type dead keys like á when using the
738    Asturian locale
739
740commit d7e22252d68258a63ca537827c99d0ac0bc4b9d8
741Author: Alan Coopersmith <alan.coopersmith@oracle.com>
742Date:   Sat Nov 10 13:30:47 2018 -0800
743
744    Remove documentation of obsolete B16 & B32 tags in specs/libX11
745    
746    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
747
748commit f3c978476e0be6813268af494efb7ac507451116
749Author: Matt Turner <mattst88@gmail.com>
750Date:   Tue Oct 9 10:26:05 2018 -0400
751
752    libX11 1.6.7
753    
754    Signed-off-by: Matt Turner <mattst88@gmail.com>
755
756commit 823a0f8a820247b6c1e092f679b49cbdc2ea5c95
757Author: Michel Dänzer <michel.daenzer@amd.com>
758Date:   Fri Sep 28 17:24:17 2018 +0200
759
760    poll_for_event: Allow using xcb_poll_for_queued_event
761    
762    It avoids reading from the display connection again in cases where that
763    was already done.
764    
765    Suggested-by: Uli Schlachter <psychon@znc.in>
766    Reviewed-by: Uli Schlachter <psychon@znc.in>
767
768commit 406afe4b0f1b655c0db19bbc9a0c48da9a46acf5
769Author: Michel Dänzer <michel.daenzer@amd.com>
770Date:   Tue Sep 25 17:10:58 2018 +0200
771
772    poll_for_response: Call poll_for_event again if xcb_poll_for_reply fails
773    
774    If xcb_poll_for_reply fails to find a reply, poll_for_response would
775    always return NULL. However, xcb_poll_for_reply may have read events
776    from the display connection while looking for a reply. In that case,
777    returning NULL from poll_for_response is wrong and can result in the
778    client hanging, e.g. because it returns to waiting for the display
779    connection file descriptor becoming readable after XPending incorrectly
780    returned 0 pending events.
781    
782    The solution is to call poll_for_event again after xcb_poll_for_reply
783    returned 0. This will return the first of any events read by
784    xcb_poll_for_reply.
785    
786    Fixes issue #79.
787    
788    Reported-by: Yuxuan Shui <yshuiv7@gmail.com>
789    Bugzilla: https://bugs.freedesktop.org/108008
790    Bugzilla: https://bugs.freedesktop.org/107992
791    Reviewed-by: Adam Jackson <ajax@redhat.com>
792
793commit d0416863d5bf75af54ce81f6c30d4c1476b5e04f
794Author: Bhavi Dhingra <b.dhingra@samsung.com>
795Date:   Mon Sep 28 08:33:40 2015 +0000
796
797    XcmsLookupColor: fully initialize XColor structs passed to _XColor_to_XcmsRGB
798    
799    Fixes https://gitlab.freedesktop.org/xorg/lib/libx11/issues/44
800    aka https://bugs.freedesktop.org/show_bug.cgi?id=92154
801    
802    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
803    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
804
805commit 733f64bfeb311c1d040b2f751bfdef9c9d0f89ef
806Author: Matthieu Herrb <matthieu@herrb.eu>
807Date:   Tue Aug 21 16:54:50 2018 +0200
808
809    libX11 1.6.6
810    
811    Signed-off-by: Matthieu Herrb <matthieu@herrb.eu>
812
813commit 173704243fbcbea0b6de2068b4fb403c7408fb54
814Author: Matthieu Herrb <matthieu@herrb.eu>
815Date:   Tue Aug 21 16:53:40 2018 +0200
816
817    Remove statement with no effect.
818    
819    Signed-off-by: Matthieu Herrb <matthieu@herrb.eu>
820
821commit e83722768fd5c467ef61fa159e8c6278770b45c2
822Author: Tobias Stoeckmann <tobias@stoeckmann.org>
823Date:   Fri Jul 27 16:38:00 2018 +0200
824
825    Fixed crash on invalid reply (CVE-2018-14598).
826    
827    If the server sends a reply in which even the first string would
828    overflow the transmitted bytes, list[0] (or flist[0]) will be set to
829    NULL and a count of 0 is returned.
830    
831    If the resulting list is freed with XFreeExtensionList or
832    XFreeFontPath later on, the first Xfree call:
833    
834        Xfree (list[0]-1)
835     turns into
836        Xfree (NULL-1)
837    
838    which will most likely trigger a segmentation fault.
839    
840    I have modified the code to return NULL if the first string would
841    overflow, thus protecting the freeing functions later on.
842    
843    Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
844
845commit dbf72805fd9d7b1846fe9a11b46f3994bfc27fea
846Author: Tobias Stoeckmann <tobias@stoeckmann.org>
847Date:   Fri Jul 27 16:37:17 2018 +0200
848
849    Fixed out of boundary write (CVE-2018-14600).
850    
851    The length value is interpreted as signed char on many systems
852    (depending on default signedness of char), which can lead to an out of
853    boundary write up to 128 bytes in front of the allocated storage, but
854    limited to NUL byte(s).
855    
856    Casting the length value to unsigned char fixes the problem and allows
857    string values with up to 255 characters.
858    
859    Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
860
861commit b469da1430cdcee06e31c6251b83aede072a1ff0
862Author: Tobias Stoeckmann <tobias@stoeckmann.org>
863Date:   Fri Jul 27 16:36:34 2018 +0200
864
865    Fixed off-by-one writes (CVE-2018-14599).
866    
867    The functions XGetFontPath, XListExtensions, and XListFonts are
868    vulnerable to an off-by-one override on malicious server responses.
869    
870    The server replies consist of chunks consisting of a length byte
871    followed by actual string, which is not NUL-terminated.
872    
873    While parsing the response, the length byte is overridden with '\0',
874    thus the memory area can be used as storage of C strings later on. To
875    be able to NUL-terminate the last string, the buffer is reserved with
876    an additional byte of space.
877    
878    For a boundary check, the variable chend (end of ch) was introduced,
879    pointing at the end of the buffer which ch initially points to.
880    Unfortunately there is a difference in handling "the end of ch".
881    
882    While chend points at the first byte that must not be written to,
883    the for-loop uses chend as the last byte that can be written to.
884    
885    Therefore, an off-by-one can occur.
886    
887    I have refactored the code so chend actually points to the last byte
888    that can be written to without an out of boundary access. As it is not
889    possible to achieve "ch + length < chend" and "ch + length + 1 > chend"
890    with the corrected chend meaning, I removed the inner if-check.
891    
892    Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
893
894commit d81da209fd4d0c2c9ad0596a8078e58864479d0d
895Author: Tobias Stoeckmann <tobias@stoeckmann.org>
896Date:   Tue Jul 3 22:31:37 2018 +0200
897
898    Validation of server response in XListHosts.
899    
900    If a server sends an incorrect length in its response, a client is prone
901    to perform an out of boundary read while processing the data.
902    
903    The length field of xHostEntry is used to specify the amount of bytes
904    used to represent the address. It is 16 bit, which means that it is not
905    possible to perform an arbitrary memory access, but it might be enough
906    to read sensitive information, e.g. malloc-related pointers and offsets.
907    
908    Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
909    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
910
911commit b676e62377483df77bcb6472d26b24f901323fa9
912Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
913Date:   Wed Jun 13 15:46:58 2018 +0200
914
915    XkbOpenDisplay.3: fix typo
916    
917    XkbOpenDisplay returns a pointer to Display, not a Display.
918    
919    Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
920
921commit 9c5845ff0dc080ff10bd68af4fc40fcd805728ca
922Author: Martin Natano <natano@natano.net>
923Date:   Sat Oct 8 19:57:50 2016 +0200
924
925    Don't rebuild ks_tables.h if nothing changed.
926    
927    ks_tables.h is always considered out of date due to the forced rebuild
928    of the makekeys util. This means the file is also rebuilt during 'make
929    install', which is usually performed as root, which can to lead
930    permission problems later on.
931    
932    Signed-off-by: Martin Natano <natano@natano.net>
933    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
934
935commit 796f754cba6d75b676a0fc39b97802198fceda4f
936Author: Alan Coopersmith <alan.coopersmith@oracle.com>
937Date:   Sat May 5 14:43:30 2018 -0700
938
939    Change fall through comment in lcDB.c to match gcc's requirements
940    
941    Needs to match one of the regexps shown under
942    https://gcc.gnu.org/onlinedocs/gcc-7.3.0/gcc/Warning-Options.html#index-Wimplicit-fallthrough
943    
944    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
945
946commit 82ca6308757126fa7ffc6588f1e5d8e3be04251b
947Author: Alan Coopersmith <alan.coopersmith@oracle.com>
948Date:   Sat Mar 24 19:45:14 2018 -0700
949
950    Use size_t for buffer sizes in SetHints.c
951    
952    These variables store values returned from strlen() as a size_t
953    and are passed to Xmalloc, which expects a size_t, so lets stop
954    converting back and forth to int along the way.
955    
956    Reported by: Konstantin SKliarov
957    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
958    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
959
960commit 50a5a98984097d614227d22a49265e12b172cac7
961Author: Bhavi Dhingra <b.dhingra@samsung.com>
962Date:   Tue Jul 5 11:37:50 2016 +0530
963
964    Fix possible memory leak in cmsProp.c:140
965    
966    https://bugs.freedesktop.org/show_bug.cgi?id=96814
967    
968    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
969    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
970
971commit a9dafdd57c71473fa3a2ec4887e973e4e9876d83
972Author: Michal Srb <msrb@suse.com>
973Date:   Thu Mar 15 09:50:58 2018 +0100
974
975    Use flexible array member instead of fake size.
976    
977    The _XimCacheStruct structure is followed in memory by two strings containing
978    fname and encoding. The memory was accessed using the last member of the
979    structure `char fname[1]`. That is a lie, prohibits us from using sizeof and
980    confuses checkers. Lets declare it properly as a flexible array, so compilers
981    don't complain about writing past that array. As bonus we can replace the
982    XOffsetOf with regular sizeof.
983    
984    Fixes GCC8 error:
985      In function 'strcpy',
986          inlined from '_XimWriteCachedDefaultTree' at imLcIm.c:479:5,
987          inlined from '_XimCreateDefaultTree' at imLcIm.c:616:2,
988          inlined from '_XimLocalOpenIM' at imLcIm.c:700:5:
989      /usr/include/bits/string_fortified.h:90:10: error: '__builtin_strcpy'
990      forming offset 2 is out of the bounds [0, 1] [-Werror=array-bounds]
991         return __builtin___strcpy_chk (__dest, __src, __bos (__dest));
992    
993    Caused by this line seemingly writing past the fname[1] array:
994      imLcIm.c:479:  strcpy (m->fname+strlen(name)+1, encoding);
995    
996    Reviewed-by: Keith Packard <keithp@keithp.com>
997    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
998
999commit 34f4464f69a4d6ff0d1042500a62f9a5ed7f3647
1000Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1001Date:   Tue Mar 6 11:42:27 2018 -0800
1002
1003    If XGetImage fails to create image, don't dereference it to bounds check
1004    
1005    Reported by gcc 7.3:
1006    
1007    GetImage.c:110:25: warning: potential null pointer dereference [-Wnull-dereference]
1008      if (planes < 1 || image->height < 1 || image->bytes_per_line < 1 ||
1009                        ~~~~~^~~~~~~~
1010    
1011    Introduced by 8ea762f94f4c942d898fdeb590a1630c83235c17 in Xlib 1.6.4
1012    
1013    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1014    Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
1015
1016commit e835a9dcc3362b5e92893be756dd7ae361e64ced
1017Author: wharms <wharms@bfs.de>
1018Date:   Sun Sep 3 14:17:45 2017 +0200
1019
1020    silence gcc warning assignment discards 'const' qualifier from pointer target type
1021
1022commit 36a1ac0253fea82ff79cc52ba56c5691cfd07a3b
1023Author: wharms <wharms@bfs.de>
1024Date:   Sun Aug 20 21:51:57 2017 +0200
1025
1026    remove empty line
1027
1028commit e02dfe54f32b4165351d2712a9d2e0584906a3ce
1029Author: wharms <wharms@bfs.de>
1030Date:   Sun Aug 20 21:50:33 2017 +0200
1031
1032    add _X_UNUSED to avoid unused variable warnings
1033
1034commit 2911c39cecd63ed3747072a5eeeb9eedffc881e9
1035Author: walter harms <wharms@bfs.de>
1036Date:   Sat Jun 4 17:19:59 2016 +0200
1037
1038    Fixes: warning: variable 'req' set but not,used
1039    
1040    Fixes: warning: variable 'req' set but not used [-Wunused-but-set-variable]
1041           by marking req _X_UNUSED
1042            Solution was discussed on xorg-devel ML
1043           Peter Hutter, Alan Coopersmith
1044            Re: [PATCH libX11 3/5] fix: warning: pointer targets in passing argument 2 of '_XSend' differ in signedness [-Wpointer-sign]
1045    
1046    Signed-off-by: harms wharms@bfs.de
1047
1048commit bf82ec0402479fd8399d69e7d62fc17d7956699a
1049Author: walter harms <wharms@bfs.de>
1050Date:   Sat Jun 4 17:22:07 2016 +0200
1051
1052    mark _XDefaultIOError as no_return
1053    
1054    mark _XDefaultIOError as no_return. No one comes back from exit() ...
1055    
1056    Signed-off-by: harms wharms@bfs.de
1057
1058commit 9abe8380074edea3ac4e72466ec47e921ca05e47
1059Author: walter harms <wharms@bfs.de>
1060Date:   Sat Jun 4 17:21:52 2016 +0200
1061
1062    no need to check XFree arguments
1063    
1064    You can save a bit of code. The is no need to check XFree arguments bring  free_fontdataOM in line with other free function and check for NULL arg
1065    
1066    Signed-off-by: harms wharms@bfs.de
1067
1068commit 433477fcb7e07d0c26a22ba78aae88827ed1f440
1069Author: walter harms <wharms@bfs.de>
1070Date:   Tue Apr 26 16:32:20 2016 +0200
1071
1072    fix memleak in error path
1073    
1074    free all mem on error
1075    Signed-off-by: walter harms <wharms@bfs.de>
1076
1077commit ed9f0d34abc645eee56e21863f23acb4d0bb8e9a
1078Author: walter harms <wharms@bfs.de>
1079Date:   Tue Apr 26 17:58:16 2016 +0200
1080
1081    fix memleak in error path
1082    
1083    V2: remove unneeded NULL (reported by eric.engestrom@imgtec.com)
1084    
1085    fix mem leak in error path
1086    Signed-off-by: walter harms <wharms@bfs.de>
1087
1088commit 7c78fc57693afa94cf26170f0f6276e3b7374ed0
1089Author: walter harms <wharms@bfs.de>
1090Date:   Tue Apr 26 16:34:11 2016 +0200
1091
1092    no need to check args for Xfree()
1093    
1094    simplify code
1095    
1096    Signed-off-by: walter harms <wharms@bfs.de>
1097
1098commit c1c14af441ae73d1a8e67a971fafcf967e45ac48
1099Author: walter harms <wharms@bfs.de>
1100Date:   Tue Apr 26 16:23:46 2016 +0200
1101
1102    remove stray extern
1103    
1104    remove stray extern
1105    
1106    Signed-off-by: walter harms <wharms@bfs.de>
1107
1108commit 714921f041a245dc5f37a689268b584226a2ccb9
1109Author: walter harms <wharms@bfs.de>
1110Date:   Mon Apr 11 18:26:52 2016 +0200
1111
1112    no need to check argument for _XkbFree()
1113    
1114    simplify code by removing unneeded checks
1115    
1116    Signed-off-by: walter harms <wharms@bfs.de>
1117
1118commit d02c2466f65063a03c97dbcee05071c12a3676e6
1119Author: walter harms <wharms@bfs.de>
1120Date:   Mon Apr 11 18:22:38 2016 +0200
1121
1122    fix more shadow warning
1123    
1124    Signed-off-by: walter harms <wharms@bfs.de>
1125
1126commit 0355c3926d5372f9762f235071dbd94a89bbbdad
1127Author: walter harms <wharms@bfs.de>
1128Date:   Thu Mar 31 19:16:33 2016 +0200
1129
1130    fix shadow char_size
1131    
1132    Signed-off-by: walter harms <wharms@bfs.de>
1133
1134commit 916dffadf052135df3398651be873c353da629e1
1135Author: walter harms <wharms@bfs.de>
1136Date:   Thu Mar 31 19:14:32 2016 +0200
1137
1138    remove argument check for free() adjust one inden
1139    
1140    Signed-off-by: walter harms <wharms@bfs.de>
1141
1142commit 6ec901ebca3fea6a762e22090dc35b1b90911133
1143Author: walter harms <wharms@bfs.de>
1144Date:   Thu Mar 31 19:12:17 2016 +0200
1145
1146    _XIOError(dpy); will never return so remore dead
1147    
1148    Signed-off-by: walter harms <wharms@bfs.de>
1149
1150commit 83107a677b2ed458e4d62ea4a601e8181d3683d8
1151Author: walter harms <wharms@bfs.de>
1152Date:   Thu Mar 31 19:10:49 2016 +0200
1153
1154    fix shadow warning
1155    
1156    Signed-off-by: walter harms <wharms@bfs.de>
1157
1158commit 4fe66b1c5112b07bd09e28bbc021911d08a9621f
1159Author: Ryan C. Gordon <icculus@icculus.org>
1160Date:   Wed Aug 2 02:41:03 2017 -0400
1161
1162    Valgrind fix for XStoreColor and XStoreColors.
1163    
1164    If the "pad" field isn't set, Valgrind will report it as uninitialized
1165    memory accesses when the struct is copied into the Display's send buffer.
1166    
1167    In practice, this is (probably) harmless, but Valgrind is correct in
1168    believing it's a bug.
1169    
1170    https://bugs.freedesktop.org/attachment.cgi?id=133189
1171    
1172    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1173    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1174
1175commit 7d2010fec25c2f52b873ad0572479eb43128b038
1176Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1177Date:   Fri Apr 7 00:13:03 2017 -0700
1178
1179    Improve table formatting in XkbChangeControls & XkbKeyNumGroups man pages
1180    
1181    Includes fix for Solaris Bug 24564279: "XkbKeyNumGroups.3x11 man page
1182    contains some malformed text" caused by extra whitespace after .TE macros
1183    
1184    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1185
1186commit b856d5d929047d1ea169814d56e43784ea404c83
1187Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1188Date:   Thu Mar 16 00:05:49 2017 -0700
1189
1190    Clarify state parameter to XkbSetNamedDeviceIndicator
1191    
1192    Checking a Bool to see if it's NULL does not work well in C.
1193    Also reported in https://bugs.freedesktop.org/show_bug.cgi?id=251
1194    
1195    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1196    Reviewed-by: Adam Jackson <ajax@redhat.com>
1197
1198commit c6dadd4cebd994aafb37a58b3adbaa82507c2d18
1199Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1200Date:   Wed Mar 15 23:50:26 2017 -0700
1201
1202    Make Xkb{Get,Set}NamedIndicator spec & manpages match code
1203    
1204    The XKB Library spec and the man pages for XkbGetNamedIndicator &
1205    XkbSetNamedIndicator included a device_spec argument neither function
1206    takes, and do not include the XkbGetNamedDeviceIndicator &
1207    XkbSetNamedDeviceIndicator variants that do take it (along with two
1208    other arguments).
1209    
1210    This updates them to match the interfaces the code has provided for
1211    decades.
1212    
1213    This has been reported multiple times, so this fixes:
1214    https://bugs.freedesktop.org/show_bug.cgi?id=251
1215    https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=729812
1216    Sun Bug 4528016 XkbSetNamedIndicator & XkbGetNamedIndicator man pages are wrong
1217      (filed: alan.coopersmith@sun.com 2001-11-15 - now aka Oracle bug 15087506)
1218    X.Org Group Defect Id #9418
1219    
1220    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1221    Reviewed-by: Adam Jackson <ajax@redhat.com>
1222
1223commit 2d20890e7ffd3ee88a9ceb25cdd2ac1fe7aaceb6
1224Author: Arthur Huillet <ahuillet@nvidia.com>
1225Date:   Wed Feb 1 15:02:41 2017 +0100
1226
1227    _XDefaultError: set XlibDisplayIOError flag before calling exit
1228    
1229    _XReply isn't reentrant, and it can lead to deadlocks when the default error
1230    handler is called: _XDefaultError calls exit(1). It is called indirectly by
1231    _XReply when a X protocol error comes in that isn't filtered/handled by an
1232    extension or the application. This means that if the application (or one of its
1233    loaded shared libraries such as the NVIDIA OpenGL driver) has registered any
1234    _fini destructor, _fini will get called while still on the call stack of
1235    _XReply. If the destructor interacts with the X server and calls _XReply, it
1236    will hit a deadlock, looping on the following in _XReply:
1237    
1238        ConditionWait(dpy, dpy->xcb->reply_notify);
1239    
1240    It is legal for an application to make Xlib calls during _fini, and that is
1241    useful for an OpenGL driver to avoid resource leaks on the X server side, for
1242    example in the dlopen/dlclose case. However, the driver can not readily tell
1243    whether its _fini is being called because Xlib called exit, or for another
1244    reason (dlclose), so it is hard to cleanly work around this issue in the driver.
1245    
1246    This change makes it so _XReply effectively becomes a no-op when called after
1247    _XDefaultError was called, as though an XIOError had happened. The dpy
1248    connection isn't broken at that point, but any call to _XReply is going to hang.
1249    This is a bit of a kludge, because the more correct solution would be to make
1250    _XReply reentrant, maybe by broadcasting the reply_notify condition before
1251    calling the default error handler. However, such a change would carry a grater
1252    risk of introducing regressions in Xlib.
1253    
1254    This change will drop some valid requests on the floor, but this should not
1255    matter, as it will only do so in the case where the application is dying: X will
1256    clean up after it once exit() is done running. There is the case of
1257    XSetCloseDownMode(RETAIN_PERMANENT), but an application using that and wishing
1258    to clean up resources in _fini would currently be hitting a deadlock, which is
1259    hardly a better situation.
1260    
1261    Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
1262    Reviewed-by: Jamey Sharp <jamey@minilop.net>
1263
1264commit 42f4d7af9cf6d1dbfa575552e057328b054a20c9
1265Author: Matt Turner <mattst88@gmail.com>
1266Date:   Sat Feb 25 21:54:22 2017 -0800
1267
1268    libX11 1.6.5
1269    
1270    Signed-off-by: Matt Turner <mattst88@gmail.com>
1271
1272commit a0da5835e8078445947c828fe2d86c1a31439012
1273Author: Adam Jackson <ajax@redhat.com>
1274Date:   Tue Feb 14 15:33:29 2017 -0500
1275
1276    Revert "Compose sequences for rouble sign"
1277    
1278    This reverts commit d9e34061307748cb7318ed6b5f83ee5ee9b81fd0.
1279    
1280    Reported to break 'make check':
1281    
1282    https://lists.freedesktop.org/archives/xorg-devel/2017-February/052720.html
1283
1284commit d9e34061307748cb7318ed6b5f83ee5ee9b81fd0
1285Author: Mihail Konev <k.mvc@ya.ru>
1286Date:   Fri Feb 10 18:48:18 2017 +0500
1287
1288    Compose sequences for rouble sign
1289    
1290    Cyrillic combinations mirror the Qwerty-Jcuken keyboard layout.
1291    Also add Cyrillic sequences for hryvnia sign.
1292    
1293    Submitted-by: Victor V. Kustov <coyote@bks.tv>
1294    Reviewed-by: Victor V. Kustov <coyote@bks.tv>
1295    Signed-off-by: Mihail Konev <k.mvc@ya.ru>
1296
1297commit 23d9623c661694aba8cf1e8f277dffa7a86cf065
1298Author: Petr Písař <petr.pisar@atlas.cz>
1299Date:   Sun Oct 30 12:49:11 2016 +0100
1300
1301    Revert cs_CZ.UTF-8 XLC_LOCALE to en_US.UTF-8
1302    
1303    The cs_CZ.UTF-8/XLC_LOCALE is an empty file leading to unsupported cs_CZ.UTF-8
1304    locale and reporting this error:
1305    
1306    Warning: locale not supported by Xlib, locale set to C
1307    
1308    Therefore this patch reverts to the en_US.UTF-8 definition file that was used
1309    before. This patch also deduplicates the cs_CZ.UTF-8 entry.
1310    
1311    <https://bugs.freedesktop.org/show_bug.cgi?id=98219>
1312    
1313    This reverts commit 33840a5465a2e5fecab520bfbdd2d1bd0a456f51
1314    
1315    Signed-off-by: Julien Cristau <jcristau@debian.org>
1316
1317commit 71b0929ebc1f0f877f63e3f6de260f529daa6c69
1318Author: Mihail Konev <k.mvc@ya.ru>
1319Date:   Thu Jan 26 13:52:49 2017 +1000
1320
1321    autogen: add default patch prefix
1322    
1323    Signed-off-by: Mihail Konev <k.mvc@ya.ru>
1324
1325commit 2979011bc170c55894b9185b26376f8efc6db7d4
1326Author: Emil Velikov <emil.l.velikov@gmail.com>
1327Date:   Mon Mar 9 12:00:52 2015 +0000
1328
1329    autogen.sh: use quoted string variables
1330    
1331    Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent
1332    fall-outs, when they contain space.
1333    
1334    Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
1335    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
1336    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
1337
1338commit 4a0082a1b6affa65d38294f0e13511525cd8ad15
1339Author: Peter Hutterer <peter.hutterer@who-t.net>
1340Date:   Tue Jan 24 10:32:07 2017 +1000
1341
1342    autogen.sh: use exec instead of waiting for configure to finish
1343    
1344    Syncs the invocation of configure with the one from the server.
1345    
1346    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
1347    Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
1348
1349commit c74b070f2712c95f0db7c320a10232b0e5c83049
1350Author: Julien Cristau <jcristau@debian.org>
1351Date:   Sat Jan 7 16:20:31 2017 +0100
1352
1353    Fix wrong Xfree in XListFonts failure path
1354    
1355    'ch' gets moved inside the allocated buffer as we're looping through
1356    fonts, so keep a reference to the start of the buffer so we can pass
1357    that to Xfree in the failure case.
1358    
1359    Fixes: commit 20a3f99eba5001925b8b313da3accb7900eb1927 "Plug a memory leak"
1360    
1361    Signed-off-by: Julien Cristau <jcristau@debian.org>
1362    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1363    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
1364
1365commit 663f47075fe67bab4f99bc5d186c49175d4a4334
1366Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1367Date:   Sun Jan 1 20:57:58 2017 -0800
1368
1369    specs/libX11: Update Portability Considerations for the 21st century
1370    
1371    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1372    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
1373
1374commit 28f4b989b52fcf45c7e75a878d8d9c2583cd6b3c
1375Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1376Date:   Sun Jan 1 20:39:53 2017 -0800
1377
1378    specs/libX11: Fix broken synopsis for Data/Data16/Data32
1379    
1380    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1381
1382commit 382561951e3460b09c21a1a23748cde0315fbb19
1383Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1384Date:   Sun Jan 1 20:31:54 2017 -0800
1385
1386    specs/libX11: Add missing parameter types for XGetWindowProperty()
1387    
1388    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1389
1390commit 2beaecdb66965b861d6b790d151ba947f65f0a22
1391Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1392Date:   Sun Jan 1 20:16:08 2017 -0800
1393
1394    specs/libX11: Make paramdef spacing more consistent
1395    
1396    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1397
1398commit 4c436c6c14cfd4c397b011563bf13c2872861133
1399Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1400Date:   Sun Jan 1 20:02:53 2017 -0800
1401
1402    specs/libX11: Fix paramdef entries listing multiple parameters
1403    
1404    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1405
1406commit 1728b1a8a4718315da8e5c9cbc2c04bb75c74107
1407Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1408Date:   Sun Jan 1 19:38:40 2017 -0800
1409
1410    specs/libX11: More synopsis fixes
1411    
1412    Mostly transforming macro definitions and functions taking void arguments
1413    from undecorated <para> tags to use <funcsynopsis> tags to get decorations.
1414    
1415    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1416
1417commit f0dc83db7e3a3d4a76c0f9d24763b80f01c893a9
1418Author: Lucien Gentis <lucien.gentis@waika9.com>
1419Date:   Wed Jun 1 17:02:47 2016 +0200
1420
1421    Typos in "Xlib - C Language X Interface" document - Chapter 02
1422    
1423    This patch fixes typos and lack of tags in "Xlib - C Language X Interface" document - Chapter 02.
1424    
1425    Signed-off-by: Lucien Gentis <lucien.gentis@waika9.com>
1426    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1427    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1428
1429commit 20a3f99eba5001925b8b313da3accb7900eb1927
1430Author: Emilio Pozuelo Monfort <pochu@debian.org>
1431Date:   Tue Oct 25 21:30:15 2016 +0200
1432
1433    Plug a memory leak
1434    
1435    This was introduced in 8ea762f.
1436    
1437    Reported-by: Julien Cristau <jcristau@debian.org>
1438    Signed-off-by: Emilio Pozuelo Monfort <pochu@debian.org>
1439    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
1440
1441commit 8f349feac24aacc958bd816afcc52380764e3d92
1442Author: Matthieu Herrb <matthieu.herrb@laas.fr>
1443Date:   Tue Oct 4 21:01:39 2016 +0200
1444
1445    libX11 1.6.4
1446    
1447    Signed-off-by: Matthieu Herrb <matthieu.herrb@laas.fr>
1448
1449commit 8ea762f94f4c942d898fdeb590a1630c83235c17
1450Author: Tobias Stoeckmann <tobias@stoeckmann.org>
1451Date:   Sun Sep 25 21:25:25 2016 +0200
1452
1453    Validation of server responses in XGetImage()
1454    
1455    Check if enough bytes were received for specified image type and
1456    geometry. Otherwise GetPixel and other functions could trigger an
1457    out of boundary read later on.
1458    
1459    Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
1460    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
1461
1462commit 8c29f1607a31dac0911e45a0dd3d74173822b3c9
1463Author: Tobias Stoeckmann <tobias@stoeckmann.org>
1464Date:   Sun Sep 25 21:22:57 2016 +0200
1465
1466    The validation of server responses avoids out of boundary accesses.
1467    
1468    v2: FontNames.c  return a NULL list whenever a single
1469    length field from the server is incohent.
1470    
1471    Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
1472    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
1473
1474commit 78851f6a03130e3c720b60c3cbf96f8eb216d741
1475Author: walter harms <wharms@bfs.de>
1476Date:   Mon Aug 15 19:18:14 2016 +0200
1477
1478    XFree will accept NULL as argument
1479    
1480    since Xfree is a define for free():
1481      Xlibint.h:#define Xfree(ptr) free((ptr))
1482    
1483    Xfree will accept NULL and do nothing.
1484    
1485    Signed-off-by: Hans de Goede <hdegoede@redhat.com>
1486
1487commit 83adf3d1e3d0d6602244381334f75c216da4ab6e
1488Author: Matthew D. Fuller <fullermd@over-yonder.net>
1489Date:   Sat Jun 4 11:24:01 2016 -0500
1490
1491    Fixup param specification for XChangeProperty()
1492    
1493    Signed-off-by: Matthew D. Fuller <fullermd@over-yonder.net>
1494    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
1495
1496commit 3129c757f9da8586ab8b8654a56c8f687cc9ef5c
1497Author: Mats Blakstad <mats.gbproject@gmail.com>
1498Date:   Sun Feb 28 13:22:03 2016 -0500
1499
1500     New compose keys for local languages in Togo
1501    
1502    Signed-off-by: James Cloos <cloos@jhcloos.com>
1503
1504commit e1011b9e2f6c82255959cf3cc1d8cda402ded0a9
1505Author: Daniel Albers <daniel@lbe.rs>
1506Date:   Wed Mar 9 14:35:48 2016 +0100
1507
1508    Add Compose sequence for U+1F4A9.
1509    
1510    Signed-off-by: Daniel Albers <daniel@lbe.rs>
1511
1512commit 6d7bb040c928485f2557c2c914b95cffb2354179
1513Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1514Date:   Sat Feb 6 14:18:32 2016 -0800
1515
1516    xcms: use size_t for pointer offsets passed to strncmp
1517    
1518    instead of converting to int and back
1519    
1520    Fixes clang warnings of the form:
1521    HVC.c:190:43: warning: implicit conversion changes signedness: 'int' to
1522          'unsigned long' [-Wsign-conversion]
1523              if (strncmp(spec, _XcmsTekHVC_prefix, n) != 0) {
1524                  ~~~~~~~
1525    
1526    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1527
1528commit a9266804eed38a83897ab5f0f9f8a8ab82a98882
1529Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1530Date:   Sat Feb 6 13:32:44 2016 -0800
1531
1532    xcms: use unsigned indexes when looping through unsigned values
1533    
1534    Clears many gcc warnings of the form:
1535    
1536    uvY.c: In function ‘XcmsCIEuvYToCIEXYZ’:
1537    uvY.c:263:19: warning: comparison between signed and unsigned integer
1538      expressions [-Wsign-compare]
1539         for (i = 0; i < nColors; i++, pColor++) {
1540                       ^
1541    
1542    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1543
1544commit 0ee0d383b4488b7b90d8bd50b75c371e0dc0d397
1545Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1546Date:   Sat Feb 6 13:01:25 2016 -0800
1547
1548    xcms: use size_t for strlen/sizeof values instead of converting to int & back
1549    
1550    Fixes gcc warnings of the form:
1551    
1552    IdOfPr.c: In function ‘XcmsFormatOfPrefix’:
1553    IdOfPr.c:69:32: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
1554         if ((len = strlen(prefix)) >= sizeof(string_buf)) {
1555                                    ^
1556    IdOfPr.c:83:11: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
1557       if (len >= sizeof(string_buf)) Xfree(string_lowered);
1558               ^
1559    IdOfPr.c:97:11: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
1560       if (len >= sizeof(string_buf)) Xfree(string_lowered);
1561               ^
1562    IdOfPr.c:104:13: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
1563         if (len >= sizeof(string_buf)) Xfree(string_lowered);
1564                 ^
1565    
1566    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1567
1568commit 4de6ed3e7b1833c52c9d58ab74d59d57ca2a9f0d
1569Author: Dominik Muth <nxdomainuser-muth@yahoo.com>
1570Date:   Thu Mar 26 07:52:58 2015 +0100
1571
1572    Xlib.h: Fix macros imitating C functions.
1573    
1574    The basic rule "put parantheses around macro parameters" should be
1575    observed where possible. Otherwise code like
1576    
1577        ConnectionNumber(foo = bar);
1578    
1579    fails to compile. (It obviously passes if ConnectionNumber is a C
1580    function.) There are several other macros amended for the same reason.
1581    
1582    This bug appeared while building http://ioccc.org/1993/cmills.c, so
1583    historically it was not present.
1584    
1585    Signed-off-by: Dominik Muth <muth@nxdomain.no-ip.biz>
1586    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1587    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1588
1589commit 3706b0f2b14cc97578a6bee620266edca2722ebf
1590Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1591Date:   Fri Nov 15 18:03:25 2013 -0800
1592
1593    Don't need to link libX11-xcb against libX11
1594    
1595    libX11-xcb only accesses data structures defined in X11 headers,
1596    it doesn't call any functions or reference any global variables
1597    in libX11 itself.  (Seems to have been left from previous XCL
1598    implementation.)
1599    
1600    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1601
1602commit eddf1bbd18872b286a9f939140f0cd9ba4e93804
1603Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1604Date:   Fri Jan 22 11:44:25 2016 -0800
1605
1606    Stop checking for preferred order of local transports
1607    
1608    Removes --with-local-transport-order=... flag to configure.
1609    
1610    Code which used this ordered list was removed in commit 15e5eaf6289
1611    which outsourced X11 connection handling & authentication to libxcb.
1612    
1613    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1614    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
1615
1616commit 1a66c1e964ff8d11382313404f48b5a3d5ed8be8
1617Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1618Date:   Fri Jan 22 09:39:28 2016 -0800
1619
1620    Stop checking XTRANS_SECURE_RPC_FLAGS since we no longer use them
1621    
1622    Removes --enable-secure-rpc & --disable-secure-rpc flags to configure
1623    
1624    Code that used SECURE_RPC definitions was removed in commit 15e5eaf6289
1625    which outsourced X11 connection handling & authentication to libxcb.
1626    
1627    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1628    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
1629
1630commit 7eb724dc24505f1591ef32620fa63f079b540646
1631Author: Olivier Fourdan <ofourdan@redhat.com>
1632Date:   Thu Jan 21 11:54:19 2016 +0100
1633
1634    XKB: fix XkbGetKeyboardByName with Xming server
1635    
1636    XkbGetKeyboardByName relies on flags to read the data from the server.
1637    
1638    If the X server sends us the wrong flags or if a subreply is smaller
1639    than it should be, XkbGetKeyboardByName will not read all the available
1640    data and leave data in the buffer, which will cause the next _XReply()
1641    to fail with:
1642    
1643    [xcb] Extra reply data still left in queue
1644    [xcb] This is most likely caused by a broken X extension library
1645    [xcb] Aborting, sorry about that.
1646    xcb_io.c:576: _XReply: Assertion `!xcb_xlib_extra_reply_data_left' failed.
1647    Aborted
1648    
1649    Check if there is some extra data left at the end of
1650    XkbGetKeyboardByName() and discard that data if any is found.
1651    
1652    Many thanks to Peter Hutterer <peter.hutterer@who-t.net> for finding the
1653    root cause of the issue and Adam Jackson <ajax@redhat.com> for helping
1654    with the analysis!
1655    
1656    Signed-off-by: Olivier Fourdan <ofourdan@redhat.com>
1657    Reviewed-by: Daniel Stone <daniels@collabora.com>
1658    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
1659    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
1660
1661commit 43ba0a68d3d17b496ec1f48d44921122ddd7d7d9
1662Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1663Date:   Sat Dec 19 18:03:41 2015 -0800
1664
1665    lcPubWrap: replace malloc(strlen) + strcpy with strdup
1666    
1667    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1668    Reviewed-by: Adam Jackson <ajax@redhat.com>
1669
1670commit 6fc95cb12b70c5a67cb4fc5e5749f9f1ec741e2a
1671Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1672Date:   Sat Dec 19 10:21:04 2015 -0800
1673
1674    XlcDL.c: reduce code duplication
1675    
1676    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1677    Reviewed-by: Adam Jackson <ajax@redhat.com>
1678
1679commit f7ecc0856be58608881d2086954cb71857ad64e1
1680Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1681Date:   Sat Dec 19 10:19:25 2015 -0800
1682
1683    XlcDL.c: replace strcpy+strcat sequences with snprintf
1684    
1685    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1686    Reviewed-by: Adam Jackson <ajax@redhat.com>
1687
1688commit 522989b34398bd6a6ea144c4af0ba69d6dc4faea
1689Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1690Date:   Sat Dec 19 10:05:42 2015 -0800
1691
1692    XDefaultOMIF: Remove comments referring to ancient Sun bug ids
1693    
1694    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1695    Reviewed-by: Adam Jackson <ajax@redhat.com>
1696
1697commit b738a104ae80e4270dd1d215ad0c6a80016982c2
1698Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1699Date:   Sat Dec 19 10:00:22 2015 -0800
1700
1701    XDefaultOMIF: additional code simplification
1702    
1703    Don't need to test for a case that we already returned for, don't need
1704    to store a count that will only ever be 1 if we didn't return, don't
1705    need to increment pointers to allow storing more than one item when we
1706    can only ever possibly do one.
1707    
1708    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1709    Reviewed-by: Adam Jackson <ajax@redhat.com>
1710
1711commit 31011cf100419269eae7409581c784638be503cf
1712Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1713Date:   Sat Dec 19 09:46:31 2015 -0800
1714
1715    XDefaultOMIF: replace strlen+Xmalloc+strcpy with strdup
1716    
1717    Code seems to have been originally written to handle appending multiple
1718    strings, but only ever operates on a single string.
1719    
1720    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1721    Reviewed-by: Adam Jackson <ajax@redhat.com>
1722
1723commit c27c46d5e22bbf60fb5608eaabe584b7fdeb0b09
1724Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1725Date:   Sat Dec 19 09:20:55 2015 -0800
1726
1727    Use strdup instead of Xmalloc+strcpy in _XDefaultOpenIM
1728    
1729    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1730    Reviewed-by: Adam Jackson <ajax@redhat.com>
1731
1732commit 4359dfabc04af082872d2bc2d5b52e26d6d93290
1733Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1734Date:   Fri Dec 4 22:20:53 2015 -0800
1735
1736    Delete #if 0 hunks of code
1737    
1738    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1739
1740commit a2f9dfac286f37e54eb47d4736cc3f0150224a84
1741Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1742Date:   Thu Dec 3 23:38:07 2015 -0800
1743
1744    Bug 93183: _XDefaultOpenIM memory leaks in out-of-memory error paths
1745    
1746    Rework code to store allocations directly into XIM struct instead of
1747    temporary local variables, so we can use _XCloseIM to unwind instead
1748    of duplicating it, and consistently jump to error handler on failure,
1749    instead of sometimes leaking and sometimes freeing.
1750    
1751    Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=93183
1752    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1753
1754commit 07a97b3944467dce085a1efd24706cc851d2caf2
1755Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1756Date:   Thu Dec 3 23:19:48 2015 -0800
1757
1758    Bug 93184: read_EncodingInfo invalid free
1759    
1760    Free the correct bits of memory if we run out and need to unwind
1761    
1762    Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=93184
1763    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1764
1765commit 11118e9eb3705fcbe42b6a68d4a8aa86ab0211f1
1766Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1767Date:   Sat Nov 28 13:18:11 2015 -0800
1768
1769    Remove unused definition of XCONN_CHECK_FREQ
1770    
1771    The only use of XCONN_CHECK_FREQ was removed in commit 15e5eaf62897b3179
1772    when we dropped the old Xlib connection handling in favor of xcb's.
1773    
1774    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1775    Reviewed-by: Mark Kettenis <kettenis@openbsd.org>
1776
1777commit 5f0da8311a61498edf073cc877f5b467bfd5f863
1778Author: James Cloos <cloos@jhcloos.com>
1779Date:   Thu Dec 3 18:24:44 2015 -0500
1780
1781    Fix another missing update in cf4d5989383a
1782    
1783    Reported in:
1784    
1785       https://bugs.freedesktop.org/show_bug.cgi?id=81875#c7
1786    
1787    Signed-off-by: James Cloos <cloos@jhcloos.com>
1788
1789commit 33840a5465a2e5fecab520bfbdd2d1bd0a456f51
1790Author: James Cloos <cloos@jhcloos.com>
1791Date:   Thu Dec 3 18:15:40 2015 -0500
1792
1793    Fix missing update in cf4d5989383a
1794    
1795    Reported in:
1796    
1797       https://bugs.freedesktop.org/show_bug.cgi?id=81875#c7
1798    
1799    Signed-off-by: James Cloos <cloos@jhcloos.com>
1800
1801commit dbcb847a08c44d99e4e1de2ba777d63238fb0e03
1802Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1803Date:   Sun Sep 27 18:38:32 2015 -0700
1804
1805    Get rid of some extraneous ; at the end of C source lines
1806    
1807    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1808    Reviewed-by: Thomas Klausner <wiz@NetBSD.org>
1809
1810commit 121a1bad334459f66f78bfca6df53dc841cf97f8
1811Author: Gunnar Hjalmarsson <gunnarhj@ubuntu.com>
1812Date:   Wed Sep 23 11:44:55 2015 -0400
1813
1814    Add compose file for pt_PT similar to pt_BR
1815    
1816    This is a forward of the Ubuntu bug https://launchpad.net/bugs/518056
1817    
1818    One of the conclusions from the discussion on that bug report, which
1819    basically is about typing the ccedilla character easily on a non-
1820    Portuguese keyboard, is that X11 should include a compose file for
1821    pt_PT.UTF-8 similar to the file for pt_BR.UTF-8.
1822    
1823    FDO bug: https://bugs.freedesktop.org/show_bug.cgi?id=90300
1824    
1825    Signed-off-by: Gunnar Hjalmarsson <gunnarhj@ubuntu.com>
1826    Signed-off-by: James Cloos <cloos@jhcloos.com>
1827
1828commit 3f41d8a7f82eb5ffbd5c5d36472cf7043186b904
1829Author: Julien Cristau <jcristau@debian.org>
1830Date:   Fri May 1 13:50:15 2015 +0200
1831
1832    Mark _XNextRequest as hidden
1833    
1834    It's only used inside XNextRequest(), so doesn't need to be exported.
1835    
1836    Signed-off-by: Julien Cristau <jcristau@debian.org>
1837    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1838
1839commit a72d2d06c002b644b7040a0a9936c8525e092ba8
1840Author: Christian Linhart <chris@demorecorder.com>
1841Date:   Mon Sep 7 17:17:32 2015 +0200
1842
1843    fix for Xlib 32-bit request number issues
1844    
1845    Make use of the new 64-bit sequence number API in XCB 1.11.1 to avoid
1846    the 32-bit sequence number wrap in libX11.
1847    
1848    Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=71338
1849    Signed-off-by: Christian Linhart <chris@demorecorder.com>
1850    Signed-off-by: Olivier Fourdan <ofourdan@redhat.com>
1851    Reviewed-by: Adam Jackson <ajax@redhat.com>
1852
1853commit 58af066a764305c506efea7065ef7679369a1a98
1854Author: Thomas Klausner <wiz@NetBSD.org>
1855Date:   Sun Jul 19 10:23:21 2015 +0200
1856
1857    Ignore test-driver (used by newer autoconf).
1858    
1859    Signed-off-by: Thomas Klausner <wiz@NetBSD.org>
1860    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1861
1862commit 80b9a346b9ba200fa4652560282e80d249519287
1863Author: Thomas Klausner <wiz@NetBSD.org>
1864Date:   Sun Jul 19 10:22:45 2015 +0200
1865
1866    Do not return() after exit().
1867    
1868    Signed-off-by: Thomas Klausner <wiz@NetBSD.org>
1869    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1870
1871commit c827edcd1c4a7f920aa25208083b5b58d60d2b44
1872Author: Ross Burton <ross.burton@intel.com>
1873Date:   Mon May 18 14:49:01 2015 +0100
1874
1875    Add missing NULL checks to ICWrap
1876    
1877    ICWrap.c dereferences the xim parameter passed in from client code without a
1878    NULL check.  I have seen mplayer trigger this resulting in a segfault.  In this
1879    case mplayer had called XOpenIM and NULL was returned which was later passed
1880    into XCreateIC.
1881    
1882    Patch originally by Drew Moseley <drew_moseley@mentor.com>.
1883    
1884    Signed-off-by: Ross Burton <ross.burton@intel.com>
1885    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1886    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1887
1888commit 26e0d2de294f8adf1ce65f1dbff0b59af41a00b9
1889Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1890Date:   Thu Jun 4 20:51:17 2015 -0700
1891
1892    Replace Xmalloc+memset pairs with Xcalloc calls
1893    
1894    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1895
1896commit f0286b2770ece10aef5e2e8c004260217f12fd25
1897Author: Bhavi Dhingra <b.dhingra@samsung.com>
1898Date:   Thu Jun 4 19:07:12 2015 -0700
1899
1900    omGeneric.c: Correct the parameter usage of sizeof
1901    
1902    Incorrect parameter usage with sizeof. Earlier passed argument FontData
1903    will be 4 bytes always as its a pointer hence the change is needed and
1904    FontDataRec should be used for memset.
1905    
1906    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1907    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1908
1909commit 47da70d75f9e48e800719c0db752f9ccd2d77aea
1910Author: Peter Hutterer <peter.hutterer@who-t.net>
1911Date:   Tue May 19 12:30:22 2015 +1000
1912
1913    Fix three "use of uninitialized variable" coverity warnings
1914    
1915    False positive, if rlen/nbytes are unset we quit early before using it. Still,
1916    initialize it so we don't have to deal with these warnings again.
1917    
1918    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
1919    Reviewed-by: Hans de Goede <hdegoede@redhat.com>
1920    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1921
1922commit 19a30f17f30e9ae9641a7c0634fc52134208b060
1923Author: Peter Hutterer <peter.hutterer@who-t.net>
1924Date:   Mon May 18 07:56:22 2015 +1000
1925
1926    Fix an indentation issue
1927    
1928    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
1929    Reviewed-by: Hans de Goede <hdegoede@redhat.com>
1930    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1931
1932commit 013ccece124b990217ad3bcf2c41688e8fda1df8
1933Author: Peter Hutterer <peter.hutterer@who-t.net>
1934Date:   Mon May 18 07:55:17 2015 +1000
1935
1936    Fix potential memory leak
1937    
1938    If we hit the depth limit, filename leaks. Move the depth check up before we
1939    allocate filename.
1940    Introduced in 226622349a4b1e16064649d4444a34fb4be4f464.
1941    
1942    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
1943    Reviewed-by: Hans de Goede <hdegoede@redhat.com>
1944    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1945
1946commit d3415d1f052530760b4617db45affcb984cfe35c
1947Author: Mike FABIAN <mfabian@redhat.com>
1948Date:   Mon Apr 20 17:59:30 2015 +0200
1949
1950    Fix spelling mistake introduced by 748d47e69f5c12d8557d56a8a8ec166588da7b93
1951    
1952    Sorry, my patch to fix the spelling mistakes in the ks_IN and sd_IN
1953    locales fixed it only partly, I introduced a new spelling mistake
1954    in the sd_IN locales. This patch fixes this.
1955    
1956    Signed-off-by: James Cloos <cloos@jhcloos.com>
1957
1958commit 748d47e69f5c12d8557d56a8a8ec166588da7b93
1959Author: Mike FABIAN <mfabian@redhat.com>
1960Date:   Wed Feb 19 11:46:45 2014 +0100
1961
1962    fix spelling mistakes in ks_IN and sd_IN devanagari locales
1963    
1964    The codeset must be *before* the modifier.
1965    
1966    See also: http://pubs.opengroup.org/onlinepubs/7908799/xbd/envvar.html
1967    
1968    opengroup> The syntax for these environment variables is thus defined as:
1969    opengroup>
1970    opengroup> [language[_territory][.codeset][@modifier]]
1971    
1972    Signed-off-by: James Cloos <cloos@jhcloos.com>
1973
1974commit c64fe5553aa4738f9d1d74a795f5651fbb7b1b09
1975Author: Mike FABIAN <mfabian@redhat.com>
1976Date:   Wed Feb 19 11:50:55 2014 +0100
1977
1978    add be_BY.UTF-8@latin and sr_RS.UTF-8@latin to locale.dir
1979    
1980    See also: https://bugzilla.redhat.com/show_bug.cgi?id=1066910
1981    
1982    If these are not in locale.dir,
1983    
1984        $ LANG=sr_RS.UTF-8@latin xterm
1985    
1986    and
1987    
1988        $ LANG=sr_RS@latin xterm
1989    
1990    give the warning:
1991    
1992        Warning: locale not supported by Xlib, locale set to C
1993    
1994    and some programs (like xmms) fail to find translations for Serbian
1995    in Latin because of this.
1996    
1997    Signed-off-by: James Cloos <cloos@jhcloos.com>
1998
1999commit c85be01b006126c4407eebd1eb6e01a17312b7b4
2000Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2001Date:   Sun Mar 22 16:46:45 2015 -0700
2002
2003    Move Compose \ o / to be with other emoji compose sequences
2004    
2005    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2006
2007commit 5a499ca7b064bf7e6a4fcc169f22862dce0c60c5
2008Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2009Date:   Mon Mar 9 15:28:29 2015 -0700
2010
2011    libX11 1.6.3
2012    
2013    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2014
2015commit c8e19b393defd53f046ddc2da3a16881221b3c34
2016Author: Joonas Javanainen <joonas.javanainen@gmail.com>
2017Date:   Thu Feb 5 17:31:04 2015 +0200
2018
2019    Fix XErrorEvent struct field order in man page
2020    
2021    In the man page the field "resourceid" was in a different place than
2022    in the actual struct layout in Xlib.h
2023    
2024    Signed-off-by: Joonas Javanainen <joonas.javanainen@gmail.com>
2025    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2026
2027commit ddf3b09bb262d01b56fbaade421ac85b0e60a69f
2028Author: Ran Benita <ran234@gmail.com>
2029Date:   Tue Feb 3 13:23:50 2015 -0500
2030
2031    compose: fix the description of modifiers in compose sequences
2032    
2033    The Compose format has a feature which allows specifying certain
2034    modifiers must (or must not) be present with a given keysym in the
2035    sequence.
2036    
2037    The grammar in imLcPrs.c and the Compose man page both do not match what
2038    the code actually does (see the handling of the variables
2039    `modifier_mask` and `modifier` in parseline() in imLcPrs.c, which are
2040    eventually matched as `ev->state & modifier_mask == modifier`).
2041    
2042    Also explicitly list the accepted modifier names, since they are
2043    not standard (e.g. "Ctrl" instead of "Control").
2044    
2045    Signed-off-by: Ran Benita <ran234@gmail.com>
2046    Signed-off-by: James Cloos <cloos@jhcloos.com>
2047
2048commit 129f13f385c50e3d8b53ea7441b17386b0f36aeb
2049Author: Ran Benita <ran234@gmail.com>
2050Date:   Tue Feb 3 13:23:49 2015 -0500
2051
2052    xkb: fix misleading comment about consumed modifiers
2053    
2054    In the spec and the man page the `mods_rtrn` argument is described as
2055    "backfilled with unconsumed modifiers" but actually it is backfilled
2056    with the *consumed* modifiers. This is also mentioned a few lines below
2057    in each case.
2058    
2059    Signed-off-by: Ran Benita <ran234@gmail.com>
2060    Signed-off-by: James Cloos <cloos@jhcloos.com>
2061
2062commit 446f5f7f41317a85a0cd0efa5e6a1b37bc99fba2
2063Author: Ingo Schwarze <schwarze@usta.de>
2064Date:   Tue Dec 9 10:44:13 2014 +0100
2065
2066    Fix pasto in XkbGetKeyBehaviors(3) manual
2067    
2068    Reviewed-by: Thomas Klausner <wiz@NetBSD.org>
2069    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2070
2071commit f3831dde6972e4da9e018c6a5f4013d8756a5e78
2072Author: Benno Schulenberg <bensberg@justemail.net>
2073Date:   Sun Nov 23 21:35:36 2014 +0100
2074
2075    nls: Sorting compose sequences rigorously in mirroring pairs, as is custom.
2076    
2077    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
2078
2079commit a51681b60c84109fe19f5d449e13080522499324
2080Author: Benno Schulenberg <bensberg@justemail.net>
2081Date:   Thu Sep 19 16:42:01 2013 +0200
2082
2083    nls: Remove a duplicate locale name, and sort some others more strictly.
2084    
2085    Also improve the grammar of the initial comment.
2086    
2087    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
2088    Signed-off-by: James Cloos <cloos@jhcloos.com>
2089
2090commit 426b7f850f5376db96a4b12420ee141603fcc3cd
2091Author: Benno Schulenberg <bensberg@justemail.net>
2092Date:   Fri Sep 20 12:37:29 2013 +0200
2093
2094    nls: Add a comment to the block of accented Hebrew letters.
2095    
2096    And align them in a nicer manner.
2097    
2098    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
2099    Signed-off-by: James Cloos <cloos@jhcloos.com>
2100
2101commit 7474c6f1ee78dd097b1d0b4c7e3e4ea41317e335
2102Author: Benno Schulenberg <bensberg@justemail.net>
2103Date:   Fri Sep 20 12:05:09 2013 +0200
2104
2105    nls: Add one lowercase compose variant for ®, to mirror those for ©.
2106    
2107    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
2108    Signed-off-by: James Cloos <cloos@jhcloos.com>
2109
2110commit 18dcd13514fa538afefa78c93523d9dbd4688e74
2111Author: Benno Schulenberg <bensberg@justemail.net>
2112Date:   Sat Sep 7 20:10:43 2013 +0200
2113
2114    nls: Adding the visual composing characters to two comment lines.
2115    
2116    The lines around them also contain the characters in the comments.
2117    
2118    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
2119    Signed-off-by: James Cloos <cloos@jhcloos.com>
2120
2121commit 18d8307575af748913d5da17e3de45da2a22ede4
2122Author: Benno Schulenberg <bensberg@justemail.net>
2123Date:   Sat Sep 7 20:09:32 2013 +0200
2124
2125    nls: Grouping a lone superscript minus together with its mates.
2126    
2127    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
2128    Signed-off-by: James Cloos <cloos@jhcloos.com>
2129
2130commit 33301cc45e6a2b8aa841ed6325547af970f8c4db
2131Author: Benno Schulenberg <bensberg@justemail.net>
2132Date:   Sat Sep 7 19:53:38 2013 +0200
2133
2134    nls: Grouping the compose sequences for Dstroke/dstroke together.
2135    
2136    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
2137    Signed-off-by: James Cloos <cloos@jhcloos.com>
2138
2139commit 78fe1becb6c18fa33c0d5f04005b45d856f8952a
2140Author: Gioele Barabucci <gioele@svario.it>
2141Date:   Sun Sep 21 23:05:55 2014 +0200
2142
2143    Add compose sequence for U+20B9 INDIAN RUPEE SIGN
2144    
2145    The compose sequence for the new Indian Rupee sign is modelled after
2146    the sequence for the Euro sign.
2147    
2148    Signed-off-by: Gioele Barabucci <gioele@svario.it>
2149    Signed-off-by: James Cloos <cloos@jhcloos.com>
2150
2151commit 6101b967b641355dd863fd1ce52c6a7d58bcbe68
2152Author: Gabriel Souza Franco <gabrielfrancosouza@gmail.com>
2153Date:   Thu Jul 31 22:23:28 2014 -0300
2154
2155    Add double-arrow compose sequence
2156    
2157    Signed-off-by: Gabriel Souza Franco <gabrielfrancosouza@gmail.com>
2158    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2159    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2160
2161commit 368a6401c6a3275d3497fec38a3dcbc38cd9df60
2162Author: James Cloos <cloos@jhcloos.com>
2163Date:   Fri Aug 1 18:30:42 2014 -0400
2164
2165    Add cs_CZ.UTF-8 locale to configure.ac
2166    
2167    Commit cf4d5989383a should have included this.
2168    
2169    Reported-by: Colin Harrison <colin.harrison@virgin.net>
2170    Signed-off-by: James Cloos <cloos@jhcloos.com>
2171
2172commit cf4d5989383acc4ed1b7eebadde9f380f2129766
2173Author: James Cloos <cloos@jhcloos.com>
2174Date:   Tue Jul 29 15:02:56 2014 -0400
2175
2176    Add nls for cs_CZ.UTF-8
2177    
2178    Based on the iso8859-2 compose, and a bug report by Vladimír Marek,
2179    override the en_US.UTF-8 use of <dead_caron> <u> to enter »ǔ« instead
2180    to enter »ů«, and likewise for the majuscule, for the Czech locale.
2181    
2182    This evidently is the norm for Czech keyboards.
2183    
2184    Fixes bz#81875.
2185    
2186    The XI18N_OBJS and XLC_LOCALE.pre files are empty, as they are for
2187    several other locales.  That may require an update.
2188    
2189    Reported-by:  Vladimír Marek <vlmarek@volny.cz>
2190    Signed-off-by: James Cloos <cloos@jhcloos.com>
2191
2192commit d9f569572bd14db31921471e7b877523b5cf1e4c
2193Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2194Date:   Sat Jul 26 12:17:47 2014 -0700
2195
2196    Fix source paths for out-of-tree lintlib builds
2197    
2198    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2199
2200commit 0885cad1e4a9ed57266582be320be55259c881bf
2201Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2202Date:   Sun Jul 20 09:21:20 2014 -0700
2203
2204    specs/XKB: Markup fractions as <{super,sub}script> instead of <emphasis>
2205    
2206    Matches the way they were styled in original doc, before conversion
2207    to DocBook.
2208    
2209    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2210
2211commit d0a9e9d56bb003315787201ee525b4d00fd54e06
2212Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2213Date:   Sat Jul 19 23:55:47 2014 -0700
2214
2215    specs/XKB: acknowledge my contributions
2216    
2217    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2218
2219commit 9c0be82017f513e2eb63d59b095f1cf1955f2e2b
2220Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2221Date:   Sat Jul 19 23:53:48 2014 -0700
2222
2223    specs/XKB: Trim leading spaces off text lines
2224    
2225    perl -i -p -e 's{/\*(\S)}{/* \1}g;' *.xml
2226    
2227    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2228
2229commit 75b0b10990f38d966c6fcc821bf15e58c5a90c91
2230Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2231Date:   Sat Jul 19 20:30:55 2014 -0700
2232
2233    specs/XKB: Add olinks to libX11 for "X Library Functions Affected by Xkb"
2234    
2235    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2236
2237commit 5009621799444e9d1d284719f871d00be13e7330
2238Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2239Date:   Sat Jul 19 12:34:28 2014 -0700
2240
2241    specs/XKB: Fix miscelleanous typos & spelling errors
2242    
2243    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2244
2245commit ac219bf1522a592bd3e3283b1a6ea3dfd2c3c48c
2246Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2247Date:   Sat Jul 19 00:46:41 2014 -0700
2248
2249    specs/XKB: add some more indexterms by hand
2250    
2251    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2252
2253commit 5c3aa4c69e65ecf2e56d5e26f3833fb5d31973c2
2254Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2255Date:   Sat Jul 19 00:48:02 2014 -0700
2256
2257    specs/XKB: fixup various formatting issues in <programlisting>s
2258    
2259    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2260
2261commit 70c648ff852fd9bc784967cfc77ea70bd7f14c8d
2262Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2263Date:   Fri Jul 18 23:56:29 2014 -0700
2264
2265    specs/XKB: fixup various formatting issues in <literallayout>s
2266    
2267    Including translating some that are really just lists into
2268    <simplelist> markup.
2269    
2270    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2271
2272commit 94b56774784ac00b9db02403aecea10bb0814c10
2273Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2274Date:   Fri Jul 18 23:18:52 2014 -0700
2275
2276    specs/XKB: add some more links by hand
2277    
2278    random bits where a link looked handy
2279    
2280    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2281
2282commit 7a15a934cdb07ed1b991bd0ef633f32ee00b1833
2283Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2284Date:   Fri Jul 18 23:16:31 2014 -0700
2285
2286    specs/XKB: add links for terms in definition list under figure 1.1
2287    
2288    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2289
2290commit 92b86fc3c50fbb7ab2e36af10a2fb3fe6284f58c
2291Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2292Date:   Fri Jul 18 22:52:16 2014 -0700
2293
2294    specs/XKB: add links to more tables listing section references
2295    
2296    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2297
2298commit 06a4483a05053b4f8d8c0d4cc0513c68ea912676
2299Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2300Date:   Fri Jul 18 22:49:34 2014 -0700
2301
2302    specs/XKB: Table 4.1: remove page numbers & unnecessary para tags
2303    
2304    Page numbers refer to old doc format, didn't translate to new one
2305    
2306    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2307
2308commit 61bd55c6d1ab211b89d604bd05555dc417f6e53d
2309Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2310Date:   Sat Jul 19 11:55:51 2014 -0700
2311
2312    specs/XKB: remove unwanted white space around C -&gt; struct references
2313    
2314    perl -i -0 -p -e 's{\s*-&gt;\s*}{-&gt;}g' *xml
2315    
2316    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2317
2318commit 2be0cc0b2abbcc98cfd150210dea415a04787251
2319Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2320Date:   Fri Jul 18 22:26:20 2014 -0700
2321
2322    specs/XKB: replace -&gt; with &rarr; when used as arrow, not in C structs
2323    
2324    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2325
2326commit bf1f3d6f6f995303624679ae546f507c70967dc0
2327Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2328Date:   Fri Jul 18 22:21:10 2014 -0700
2329
2330    specs/XKB: replace =&gt; with &rArr; for double arrows
2331    
2332    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2333
2334commit c7ee427fc0a72abd4a4f147ab16a5d1128a6a2ba
2335Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2336Date:   Sat Jul 19 11:33:35 2014 -0700
2337
2338    specs/XKB: Markup some ranges with &ndash; instead of -
2339
2340commit ec4075303c6c0d1d64bfe378e585968f9a137da7
2341Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2342Date:   Fri Jul 18 22:10:45 2014 -0700
2343
2344    specs/XKB: Markup some subtractions with &minus; instead of -
2345    
2346    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2347
2348commit 441a267e461132a38abed205245f028686526f1d
2349Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2350Date:   Fri Jul 18 22:04:40 2014 -0700
2351
2352    specs/XKB: make sure all files have DOCTYPEs so standard entities work
2353    
2354    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2355
2356commit 88fd70bee410f290b4f540405fdc7ecd85c26f25
2357Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2358Date:   Fri Jul 18 21:55:41 2014 -0700
2359
2360    specs/XKB: Markup quoted terms as <quote> instead of with ""
2361    
2362    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2363
2364commit 3576587ff10334a8f48c34b4fe5b7e829dec9a1b
2365Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2366Date:   Sat Jul 19 09:01:26 2014 -0700
2367
2368    specs/XKB: fixup newlines between tags and punctuation
2369    
2370    Get rid of unwanted whitespace before punctuation by moving them to the
2371    lines with the tags, instead of before & after.
2372    
2373    perl -i -0 -p -e 's{\>\s*\n([\.,;:])}{>\1\n}g' *xml
2374    
2375    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2376
2377commit 6d5ec492cd28c206423337f926503349702af5a6
2378Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2379Date:   Fri Jul 18 21:29:33 2014 -0700
2380
2381    specs/XKB: fixup newlines between tags and parens
2382    
2383    Get rid of unwanted whitespace inside parens by moving them to the
2384    lines with the tags, instead of before & after.
2385    
2386    perl -i -0 -p \
2387         -e 's{(?<!--) \(\s*\n\<}{\n(<}g;' \
2388         -e 's{\>\s*\n\)([\.,;]?)(?! [^\n]*--)}{>)\1\n}g' *xml
2389    
2390    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2391
2392commit 59d688f4c787250e0b401a92b1db0437d8c60f2d
2393Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2394Date:   Fri Jul 18 21:09:24 2014 -0700
2395
2396    specs/XKB: Markup key terms as <firstterm> instead of <emphasis>
2397    
2398    Also add <indexterm> entries for most of them, to make their definitions
2399    or introductions easy to find from the index.
2400    
2401    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2402
2403commit 861f3087ee0f501362a67501f384c2ca4c7bfe73
2404Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2405Date:   Thu Jul 10 20:00:53 2014 -0700
2406
2407    specs/XKB: Manual fixup of type markup
2408    
2409    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2410
2411commit 6b96259dabe52701fd1bcaa0625b574180c4e769
2412Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2413Date:   Thu Jul 10 15:00:30 2014 -0700
2414
2415    specs/XKB: Manual fixup of parameter markup
2416    
2417    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2418
2419commit 5526dce6812a84102f556fdde8f2b52b21c8bcdc
2420Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2421Date:   Thu Jul 10 13:40:40 2014 -0700
2422
2423    specs/XKB: Manual fixup of struct name/field markup
2424    
2425    Handles typos that caused the scripts to miss matches, misnamed structs, etc.
2426    
2427    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2428
2429commit c36ee1a4db4e7876526190b8ab6b0da5867f76f7
2430Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2431Date:   Wed Jul 9 23:26:37 2014 -0700
2432
2433    specs/XKB: Manual fixup of symbol name markup
2434    
2435    Handles typos that caused the scripts to miss matches, misnamed masks, etc.
2436    
2437    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2438
2439commit eb1453a0c69606b8af96b90ddccf1b93a069fb35
2440Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2441Date:   Wed Jul 9 00:03:23 2014 -0700
2442
2443    specs/XKB: Manual fixup of function name markup
2444    
2445    Handles typos that caused the scripts to miss matches, functions like
2446    malloc & free from other libraries, function name patterns, etc.
2447    
2448    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2449
2450commit 252d99c87b60ac6f3f2b36f292f9b3880daabe26
2451Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2452Date:   Thu Jul 10 19:42:31 2014 -0700
2453
2454    specs/XKB: Markup protocol requests as <systemitem> instead of <emphasis>
2455    
2456    No great fit in DocBook, so follow what we used in Xlib spec.
2457    
2458    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2459
2460commit ed60df10aad15057577d5714c955d22d2a446e51
2461Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2462Date:   Thu Jul 10 15:45:57 2014 -0700
2463
2464    specs/XKB: Markup keyboard keys as <keycap> instead of <emphasis>
2465    
2466    Also uses <guilabel> for LED names/labels, for lack of a better fit
2467    in DocBook.
2468    
2469    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2470
2471commit f57b91ee497414083cc1bf481d28eb9ad9f965fb
2472Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2473Date:   Thu Jul 10 15:41:19 2014 -0700
2474
2475    specs/XKB: Markup characters & strings as <literal> instead of <emphasis>
2476    
2477    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2478
2479commit cfd4279c9b59d7e87c9f7c67692c87973adb7667
2480Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2481Date:   Thu Jul 10 11:08:14 2014 -0700
2482
2483    specs/XKB: Markup structs as <struct{name,field}> instead of <emphasis>
2484    
2485    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2486
2487commit a014bb4cc013b0d1b76524b7868e860c7e7ebc79
2488Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2489Date:   Wed Jul 9 23:30:54 2014 -0700
2490
2491    specs/XKB: Markup symbol names in table entries too
2492    
2493    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2494
2495commit 907f7ad7a7a977bf4f19daa3143d47c4d07ca33d
2496Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2497Date:   Tue Jul 8 23:35:48 2014 -0700
2498
2499    specs/XKB: Markup *Ptr as <type> instead of <emphasis>
2500    
2501    perl -i -p -e 's{<emphasis>(\w*Ptr)</emphasis>}{<type>\1</type>}g' *xml
2502    
2503    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2504
2505commit 9f6c00629fd4b713082cc11f9150f7aafd272c89
2506Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2507Date:   Tue Jul 8 23:34:29 2014 -0700
2508
2509    specs/XKB: Markup *Rec as <structname> instead of <emphasis>
2510    
2511    perl -i -p -e \
2512     's{<emphasis>(\w*Rec)</emphasis>}{<structname>\1</structname>}g' *xml
2513    
2514    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2515
2516commit 83839e37802b8b752c77859a95de60ad757feb79
2517Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2518Date:   Tue Jul 8 23:29:49 2014 -0700
2519
2520    specs/XKB: Markup XKB macros as <symbol> instead of <emphasis>
2521    
2522    Performed via:
2523     perl -n -e 'printf "s{<emphasis>\\s*%s\\s*</emphasis>}{<symbol>%s</symbol>};\n", $1, $1 if m{^#define\s+([^\s\(]*)}' \
2524      /usr/include/X11/extensions/XK*h /usr/include/X11/XKBlib.h \
2525      | sort -u > xkb-defines.pl
2526     perl -i -p -f xkb-defines.pl *.xml
2527    
2528    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2529
2530commit 9e397ed37ce4cc70621de347de3a795df88d4506
2531Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2532Date:   Tue Jul 8 22:53:12 2014 -0700
2533
2534    specs/XKB: Use ° instead of o for degrees.
2535    
2536    Conversion from framemaker turned superscripted "o" into plain "o".
2537    
2538    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2539
2540commit 3b8364c21f5119105a2c14ae8cc75a11494cb7a7
2541Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2542Date:   Tue Jul 8 22:46:03 2014 -0700
2543
2544    specs/XKB: Markup keysyms as <keysym> instead of <emphasis>
2545    
2546    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2547
2548commit 33bef065683c8f910f3722730503c0c0699ee8be
2549Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2550Date:   Tue Jul 8 22:26:56 2014 -0700
2551
2552    specs/XKB: Markup NULL as <symbol> instead of <emphasis>
2553    
2554    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2555
2556commit f10aa1e09468bd28454d85ac8ab55d9dc7178029
2557Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2558Date:   Tue Jul 8 22:22:29 2014 -0700
2559
2560    specs/XKB: Markup function args as <parameter> instead of <emphasis>
2561    
2562    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2563
2564commit 79ba58cceb69521fcb313c69233cf93a9fcb177f
2565Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2566Date:   Mon Jul 7 23:56:13 2014 -0700
2567
2568    specs/XKB: Convert remaining error names to errorname tags
2569    
2570    Most were caught by applying libX11 lists, but BadKeyboard & XKB*_Bad*
2571    are XKB-specific.   (Plus some were badly split across tag boundaries.)
2572    
2573    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2574
2575commit 42b2f5388c399949ece377f9cc9c479c06964972
2576Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2577Date:   Mon Jul 7 23:16:56 2014 -0700
2578
2579    specs/XKB: manually fixup some more emphasis tagging mismatches
2580    
2581    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2582
2583commit 3b2f47d44a55d93c65455ff183f3b47da04b1de1
2584Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2585Date:   Mon Jul 7 23:02:31 2014 -0700
2586
2587    specs/XKB: re-normalize <emphasis> layout in xml files
2588    
2589    Same script as before, just with <!-- xref --> comments out of the way
2590    now.
2591    
2592    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2593
2594commit ce95f152eda509263874c53fb7c6b4a6bdab2c29
2595Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2596Date:   Mon Jul 7 22:59:25 2014 -0700
2597
2598    specs/XKB: Remove remaining xref comments
2599    
2600    All the places marked by these have been turned into the appropriate
2601    link, xref, or olink tags now.
2602    
2603    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2604
2605commit 6590b66e19af8dff68888ac403ac82f5d585b4e2
2606Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2607Date:   Mon Jul 7 22:56:36 2014 -0700
2608
2609    specs/XKB: make olinks to xkbproto for references in section 10.13
2610    
2611    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2612
2613commit fcda446877a62e7443d7bc704ba3610e90d1e755
2614Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2615Date:   Mon Jul 7 22:22:28 2014 -0700
2616
2617    specs/XKB: Add <figure> tags and make Figure references link to them
2618    
2619    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2620
2621commit 087a2338476719e340dc3d5af0df6fdc4a26ce7a
2622Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2623Date:   Mon Jul 7 21:30:01 2014 -0700
2624
2625    specs/XKB: Turn Table references into links
2626    
2627    Adds id attributes to all table tags so we can link to them
2628    
2629    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2630
2631commit 135fa07b74cb50172c6a75768d499cd87ddb336e
2632Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2633Date:   Sun Jul 6 21:29:59 2014 -0700
2634
2635    specs/XKB: Turn section references into xref links
2636    
2637    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2638
2639commit 53e931d79926af8a3996253efd8b5f6c21d9e5d7
2640Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2641Date:   Sun Jul 6 21:17:18 2014 -0700
2642
2643    specs/XKB: Turn Chapter references into xref links
2644    
2645    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2646
2647commit b7f00ce5bcb0c00696bb82503ab548e14f04d17d
2648Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2649Date:   Sun Jul 6 20:40:18 2014 -0700
2650
2651    specs/XKB: Apply <emphasis> to semantic tag transformations from Xlib spec
2652    
2653    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2654
2655commit b00a7ddff2744238fbfe31c2298b02028a45a6ff
2656Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2657Date:   Sun Jul 6 20:34:51 2014 -0700
2658
2659    specs/XKB: Markup function names as <function> instead of <emphasis>
2660    
2661    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2662
2663commit bfbb58b7679221cb5c9212665209ea9099ad079a
2664Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2665Date:   Sun Jul 6 20:25:46 2014 -0700
2666
2667    specs/XKB: normalize <emphasis> layout in xml files
2668    
2669    - Stop placing <emphasis> on empty space, commas, and periods.
2670    - Move periods & commas after closing </emphasis> tag
2671    - move <emphasis> open & close tags to same line, instead of mirroring
2672      nroff layout.
2673    
2674    Simplifies automating further transformations of these tags.
2675    
2676    Performed via:
2677     perl -i -0 -p \
2678        -e 's{<emphasis>(\s*)</emphasis>}{}msg;' \
2679        -e 's{<emphasis>([\s\.,]*)</emphasis>\s*}{\1}msg;' \
2680        -e 's{\n([\.,])\s*}{\1\n}msg;' \
2681        -e 's{([^\.])([\.,])\s*</emphasis>}{\1</emphasis>\2}msg;' \
2682        -e 's{\s*<emphasis>\n\s*}{\n<emphasis>}msg;' *xml
2683    
2684    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2685
2686commit b16ee69a0103109a661a88140a1765dcd7bda634
2687Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2688Date:   Sun Jul 6 15:57:41 2014 -0700
2689
2690    specs/XKB: Convert to funcsynopsis+variablelist instead of informaltable
2691    
2692    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2693
2694commit b41d43d4cf0c0a1a049a171ee8cf6fd8a3ee4335
2695Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2696Date:   Sun Jul 6 19:29:38 2014 -0700
2697
2698    specs/XKB: Add index
2699    
2700    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2701
2702commit 72ae1d793be078db521dda60af578ece71f364de
2703Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2704Date:   Sun Jul 6 13:21:40 2014 -0700
2705
2706    specs/XKB: Fix various markup issues in functiondecl tables
2707    
2708    - Merge some functionargdecl entries incorrectly split across rows
2709    - Add missing parameter name markup to some functionargdecls
2710    - Add missing function prototype markup to a functiondecl
2711    - Remove stray emphasis tags in a functiondecl
2712    
2713    Allows them to correctly convert to funcsynopsis markup in next step.
2714    
2715    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2716
2717commit 9fdb973012de80ac60dbc59c39162f4e839fc5a4
2718Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2719Date:   Sun Jul 6 12:15:23 2014 -0700
2720
2721    specs/XKB: Convert header filenames to filename tags
2722    
2723    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2724
2725commit 5525e8433f93bce464412f27cffa203ea628f368
2726Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2727Date:   Tue Jul 8 00:05:32 2014 -0700
2728
2729    specs/libX11: disengender a user reference
2730    
2731    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2732
2733commit d8679eae9317b389ad4acb0430360ee0663e2af8
2734Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2735Date:   Fri Jul 11 18:41:42 2014 -0700
2736
2737    specs/libX11: Correct value of IconicState to match Xutil.h
2738    
2739    Xutil.h has always had a value of 3 for IconicState, since 2 was
2740    previously used for the long-obsolete ZoomState, so make the spec
2741    match what programs have used for decades.
2742    
2743    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2744    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
2745
2746commit 7ce2b0f12a48fb832f457cbafb0e1144ef557f9a
2747Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2748Date:   Fri Jul 11 10:34:08 2014 -0700
2749
2750    Use C99 named initializers to fill in events passed to XSendEvent
2751    
2752    Forces compiler to zero-fill unset fields in the struct (fixing bug 81236)
2753    and allows optimizer to order field initialization to best fit cache layout
2754    or other considerations.
2755    
2756    Before & after output of gcc -S on AMD64 shows insertion of "rep stosq"
2757    instructions to rapidly zero-fill structs.
2758    
2759    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2760    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
2761
2762commit 169805e1dc8743b37b00e24cf3a5eb8748f733ad
2763Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2764Date:   Sun Jul 6 11:13:49 2014 -0700
2765
2766    Fix validation of ctrls parameter to XkbGetPerClientControls()
2767    
2768    Nothing in the XKB spec states that the memory pointed to by ctrls has to
2769    be initialized to any given value when passed to the function, only that
2770    it is set by the function to the values returned by the X server:
2771    http://www.x.org/releases/X11R7.7/doc/libX11/XKB/xkblib.html#The_Miscellaneous_Per_client_Controls
2772    
2773    The check for the incoming value seems to be copied from
2774    XkbSetPerClientControls without explanation.
2775    
2776    Instead change it to checking if ctrls is non-NULL, since there's no
2777    point asking the X server to return a value the caller won't even see.
2778    
2779    Found while investigating report from cppcheck-1.65:
2780    [src/xkb/XKB.c:699] -> [src/xkb/XKB.c:719]: (warning) Possible null pointer
2781     dereference: ctrls - otherwise it is redundant to check it against null.
2782    
2783    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2784
2785commit 1e362fac92c6688fb42b195ccad16d7a337a34c1
2786Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2787Date:   Sun Jul 6 10:54:57 2014 -0700
2788
2789    Fix map->num_types check in XkbAddKeyType()
2790    
2791    Check is intended to ensure we allocate at least XkbNumRequiredTypes
2792    in map, but was accidentally marked with a ! causing the wrong check.
2793    
2794    Reported-by: Harms <wharms@bfs,de>
2795    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
2796    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2797
2798commit ff9a5c199251a84fa59d14fd48dadb3f8920b54b
2799Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2800Date:   Sun Jul 6 15:08:21 2014 -0700
2801
2802    specs/libX11: Add missing spaces to 'unsignedint' & 'unsignedlong' types
2803    
2804    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2805
2806commit a06ea86773568926c36ae650b188fc818d540db7
2807Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2808Date:   Sun Jul 6 15:04:27 2014 -0700
2809
2810    specs/libX11: Fix height & width in parameter lists to be two separate entries
2811    
2812    "unsigned int width, unsigned int height", not a single parameter "height"
2813    of type "unsignedintwidth,".
2814    
2815    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2816
2817commit e4db5e503682b3304fe82e4b17b419a8e0f0a9f2
2818Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2819Date:   Sun Jul 6 14:38:10 2014 -0700
2820
2821    specs/libX11: Fix x & y in parameter lists to be two separate parameters
2822    
2823    "int x, int y" not a single parameter y of type "intx"
2824    
2825    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2826
2827commit aa8bda0db2c6d82515b90ceb4a7d6403e38895e9
2828Author: walter harms <wharms@bfs.de>
2829Date:   Sat Jun 7 12:03:17 2014 +0200
2830
2831    lcDefConv.c: fix use before check
2832    
2833    * Do not use variables before checked for NULL.
2834    * remove some superfluid spaces (Mark Kettenis)
2835    
2836    Signed-off-by: Harms <wharms@bfs,de>
2837    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2838    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2839
2840commit c0670e5d3ae330e611ecb05303d579a4f8a3d114
2841Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2842Date:   Mon Jun 16 15:16:10 2014 -0700
2843
2844    Start adding Unicode 7.0 support to compose table
2845    
2846    New characters defined in http://www.unicode.org/charts/PDF/U1F300.pdf
2847    
2848    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2849
2850commit a4679baaa18142576d42d423afe816447f08336c
2851Author: walter harms <wharms@bfs.de>
2852Date:   Sat Jun 7 11:54:34 2014 +0200
2853
2854    rm redundant null checks
2855    
2856    remove more redundant NULL checks
2857    note that _XkbFree() is really Xfree()
2858    
2859    Signed-off-by: Harms <wharms@bfs,de>
2860    Reviewed-by: Rémi Cardona <remi@gentoo.org>
2861    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2862
2863commit 602d7f5030fe93b2fe7f29fb7310deb6f50cb6df
2864Author: walter harms <wharms@bfs.de>
2865Date:   Sat Jun 7 15:17:27 2014 +0200
2866
2867    libX11: rm redundante NULL checks
2868    
2869    This patch removes the last remaining  NULL checks for Xfree()
2870    
2871    Signed-off-by: Harms <wharms@bfs,de>
2872    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
2873    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2874
2875commit d81fed46144d089bdfa1d916a28dffc9ebffe1e4
2876Author: walter harms <wharms@bfs.de>
2877Date:   Fri Jun 6 22:53:05 2014 +0200
2878
2879    Remove more redundant null checks before Xfree()
2880    
2881    Signed-off-by: Harms <wharms@bfs,de>
2882    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2883    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2884
2885commit 0b7fd7dbec136bae317bd9a329309eaa089beee3
2886Author: walter harms <wharms@bfs.de>
2887Date:   Thu Jun 5 18:37:40 2014 +0200
2888
2889    Remove redundant null checks before free
2890    
2891    This patch removes some redundant null checks before free.
2892    It should not change the code otherwise. Be aware that this
2893    is only the first series.
2894    
2895    Signed-off-by: Harms <wharms@bfs,de>
2896    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2897    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2898
2899commit 7d452fad5068ba92b964e92bc46708046f4044aa
2900Author: walter harms <wharms@bfs.de>
2901Date:   Wed Jun 4 17:12:31 2014 +0200
2902
2903    libX11/lcUTF8.c fix: dereferenced before check
2904    
2905    * Do not use variables before checked for NULL.
2906    
2907    Signed-off-by: Harms <wharms@bfs,de>
2908    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2909    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2910
2911commit a3808f51517a720e7ff738208af60865779dd6ef
2912Author: walter harms <wharms@bfs.de>
2913Date:   Wed Jun 4 17:10:20 2014 +0200
2914
2915    libX11/XKBNames.c fix: dereferenced before check
2916    
2917    * Do not use variables before checked for NULL.
2918    
2919    Signed-off-by: Harms <wharms@bfs,de>
2920    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2921    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2922
2923commit b3c9f6a17e430aabe16aecbe097f7312a0f6ff78
2924Author: walter harms <wharms@bfs.de>
2925Date:   Wed Jun 4 17:08:12 2014 +0200
2926
2927    libX11/lcGenConv.c fix: dereferenced before check
2928    
2929    * Do not use variables before checked for NULL.
2930    
2931    Signed-off-by: Harms <wharms@bfs,de>
2932    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2933    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2934
2935commit c6bc28d433243c32b3f74955f1478451b4fd27b5
2936Author: Andreas Schwab <schwab@linux-m68k.org>
2937Date:   Sun Jan 19 16:59:13 2014 +0100
2938
2939    Restore lost tabs in sed commands
2940    
2941    Signed-off-by: Andreas Schwab <schwab@linux-m68k.org>
2942    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2943
2944commit e3dc0d17339e61eaf0b51b8907510984e3bf23cb
2945Author: Benno Schulenberg <bensberg@justemail.net>
2946Date:   Thu Sep 19 11:01:11 2013 +0200
2947
2948    nls: Transform Brazilian compose file to an include plus three overrides.
2949    
2950    Signed-off-by: James Cloos <cloos@jhcloos.com>
2951
2952commit 16c87dda4da2271aaecc5d8b6fe6ecd072cc584c
2953Author: Benno Schulenberg <bensberg@justemail.net>
2954Date:   Fri Sep 6 12:10:01 2013 +0200
2955
2956    nls: Adding the missing compose sequences with <comma> for O with ogonek.
2957    
2958    All other vowels with ogoneks can already be composed using <comma>.
2959    
2960    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
2961    Signed-off-by: James Cloos <cloos@jhcloos.com>
2962
2963commit 655b60f48376069750b151c46da836fdd411c83b
2964Author: Benno Schulenberg <bensberg@justemail.net>
2965Date:   Fri Sep 6 12:04:24 2013 +0200
2966
2967    nls: Adding the missing postfix sequences for composing vowels with ogoneks.
2968    
2969    It existed for lowercase i, but not for uppercase I nor the other vowels.
2970    
2971    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
2972    Signed-off-by: James Cloos <cloos@jhcloos.com>
2973
2974commit 7f8f9a36ef901f31279c385caf960a22daeb33fe
2975Author: Owen W. Taylor <otaylor@fishsoup.net>
2976Date:   Fri May 9 18:21:05 2014 -0400
2977
2978    Fix XNextRequest() after direct usage of XCB
2979    
2980    When XCB owns the X socket, dpy->request is not updated, so
2981    NextRequest() and XNextRequest() return the wrong value. There's
2982    nothing we can do to fix NextRequest() while retaining ABI compat,
2983    but change XNextRequest() to grab the socket back from XCB,
2984    updating dpy->request.
2985    
2986    Signed-off-by: Owen W. Taylor <otaylor@fishsoup.net>
2987    Reviewed-by: Uli Schlachter <psychon@znc.in>
2988    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2989
2990commit 0f9e734ea96556fe750a4baf354d42d5a87bcd14
2991Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2992Date:   Sun May 4 11:54:59 2014 -0700
2993
2994    Add missing .TE tags to end tables in Xkb man pages
2995    
2996    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2997
2998commit 280274e5292e013b43e552274111fab434f5ed4e
2999Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3000Date:   Sun May 4 11:23:17 2014 -0700
3001
3002    XCreateGC.man: simplify table to work with Solaris tbl
3003    
3004    Having every table cell be a text diversion (T{...T}) was too much for
3005    Solaris tbl to handle, and thus "man XCreateGC" would print the error
3006    /usr/man/man3x11/XCreateGC.3x11: line 402: Too many text block diversions
3007    tbl quits
3008    and not display the table of mask bits or any text in the man page after
3009    that table.   Since the #define column doesn't need special handling,
3010    making it not use text diversions brings the table under the tbl limit.
3011    
3012    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3013
3014commit 93bb325a54025dd15f4744abce54b358960420f9
3015Author: James Cloos <cloos@jhcloos.com>
3016Date:   Tue May 20 17:30:10 2014 -0400
3017
3018    Revert "nls: Adding compose sequences (with <parenleft> first) that GTK also has."
3019    
3020    Parenleft is already in use for sequences of the form <(> <letter> <)>
3021    to generate circled letters.
3022    
3023    Eg, <Multikey> <parenleft> <a> <parenright> generates ⓐ.
3024    
3025    This reverts commit f020235f4bd91fb6eade82f8c9f7b85a57981768.
3026    
3027    Signed-off-by: James Cloos <cloos@jhcloos.com>
3028
3029commit 060707851be918f2f507a26d17b016f764ddf2b4
3030Author: Benno Schulenberg <bensberg@justemail.net>
3031Date:   Fri Sep 6 11:42:59 2013 +0200
3032
3033    nls: Adding accessible compose sequences for Ș and Ț (with comma below).
3034    
3035    Compose sequences with <dead_belowcomma> exist, but very few keyboard
3036    layouts contain that symbol.  So a more usual character is needed to be
3037    able to easily compose Ș, ș, Ț and ț.  The semicolon is normally only
3038    used for composing letters with ogoneks -- but only vowels take ogoneks,
3039    so the character is free for consonants, and thus <semicolon> is used
3040    here to compose commas below.  It is somewhat fitting, because on most
3041    Romanian keyboards the Ș is placed on that key, and the Ț next to it.
3042    
3043    (Oh -- the more obvious sequences with <comma> were already taken for
3044    composing S and T with cedillas.)
3045    
3046    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
3047    Signed-off-by: James Cloos <cloos@jhcloos.com>
3048
3049commit ca435c2f753aa2961fb35ac448cdb2cc77112755
3050Author: Benno Schulenberg <bensberg@justemail.net>
3051Date:   Tue Sep 3 21:10:33 2013 +0200
3052
3053    nls: Ordering some compose sequences in a more customary way.
3054    
3055    The custom seems to be: pairing the ones that have only the sequence of
3056    two keys reversed, and putting the one with the diacritic first first.
3057    
3058    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
3059    Signed-off-by: James Cloos <cloos@jhcloos.com>
3060
3061commit f020235f4bd91fb6eade82f8c9f7b85a57981768
3062Author: Benno Schulenberg <bensberg@justemail.net>
3063Date:   Tue Sep 3 20:44:42 2013 +0200
3064
3065    nls: Adding compose sequences (with <parenleft> first) that GTK also has.
3066    
3067    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
3068    Signed-off-by: James Cloos <cloos@jhcloos.com>
3069
3070commit bda0b3b5bd19154206dc40166364e73d4b6b1374
3071Author: Benno Schulenberg <bensberg@justemail.net>
3072Date:   Tue Sep 3 11:14:16 2013 +0200
3073
3074    nls: Allowing Romanian Ă and ă to be composed also with lowercase <u>.
3075    
3076    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
3077    Signed-off-by: James Cloos <cloos@jhcloos.com>
3078
3079commit 8be4610939b833587954957f5963eb4191b43d19
3080Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3081Date:   Thu Mar 13 23:22:48 2014 -0700
3082
3083    Fix "follwing" typo in en_US.UTF-8/Compose comment
3084    
3085    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3086
3087commit 6f30e9034f29c3ae6ad7e617b3d5e903aa107b6a
3088Author: Reuben Thomas <rrt@sc3d.org>
3089Date:   Mon Jan 27 14:18:24 2014 +0000
3090
3091    en_US.UTF-8/Compose: Fix apparent copy-paste-o, changing capital to small A.
3092    
3093    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3094
3095commit d6bd988bc00494914b38b95ee5df77ac4f32f19f
3096Author: Peter Hutterer <peter.hutterer@who-t.net>
3097Date:   Mon Mar 3 12:38:48 2014 +1000
3098
3099    man: fix man page for XkbGetMap
3100    
3101    Returned structure must be freed with XkbFreeKeyboard().
3102    
3103    Reported-by: Morten Bøgeskov <mb@dbc.dk>
3104    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
3105
3106commit a6dcf2201a05adbff54122df05a1e6325936abb6
3107Author: Ran Benita <ran234@gmail.com>
3108Date:   Tue Feb 11 13:26:16 2014 +0200
3109
3110    Remove dead USE_OWN_COMPOSE-protected code
3111    
3112    The build doesn't provide any way to define this option. It also refers
3113    to files (imComp.h) and functions (e.g. XimCompInitTables(),
3114    XimCompProcessSym()) which are not found anywhere, and the ordinary
3115    Compose implementation in xim doesn't use any of it.
3116    
3117    Signed-off-by: Ran Benita <ran234@gmail.com>
3118    Reviewed-by: Julien Cristau <jcristau@debian.org>
3119    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3120
3121commit b64bee2ddb7b96f00713a8b8435f11ad9ac1c9e0
3122Author: Ran Benita <ran234@gmail.com>
3123Date:   Sun Feb 16 15:24:58 2014 +0200
3124
3125    nls: always use XCOMM instead of # for comments in Compose.pre files
3126    
3127    Lines starting with # are considered as preprocessor directives in the
3128    .pre files.
3129    
3130    Fixes warnings like:
3131    <stdin>:3:0: error: invalid preprocessing directive #Khmer
3132    
3133    Signed-off-by: Ran Benita <ran234@gmail.com>
3134    Signed-off-by: James Cloos <cloos@jhcloos.com>
3135
3136commit 470e2289a3ebc59c5a35e54e1adeb0f261d5bf88
3137Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3138Date:   Thu Feb 6 13:48:08 2014 -0800
3139
3140    Fix typos in Xrm.c comments
3141    
3142    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3143
3144commit aacf95dacc7c598e7297894580d4d655593813b2
3145Author: Marko Myllynen <myllynen@redhat.com>
3146Date:   Mon Jan 13 16:43:18 2014 +0200
3147
3148    Annotate Finnish Compose map with Unicode code points
3149    
3150    Scripted annotation, no functional changes.
3151    
3152    Signed-off-by: James Cloos <cloos@jhcloos.com>
3153
3154commit 20fdccd81b54678376d49e00edfebbbe94951f07
3155Author: Teemu Likonen <tlikonen@iki.fi>
3156Date:   Fri Jul 20 19:21:04 2012 +0300
3157
3158    Fix "RING ABOVE" key in the Finnish compose file
3159    
3160    The Finnish keyboard standard defines that <dead_abovering> <space> must
3161    insert the character U+02DA RING ABOVE. Currently the Finnish Compose
3162    file inserts U+00B0 DEGREE SIGN even though the line's comment says
3163    "RING ABOVE". This commit changes the character to U+02DA RING ABOVE.
3164    
3165    Signed-off-by: Teemu Likonen <tlikonen@iki.fi>
3166    Signed-off-by: James Cloos <cloos@jhcloos.com>
3167
3168commit 8757e2ac8e04f2932ff437127f3e2ae9ac20c1d7
3169Author: Ran Benita <ran234@gmail.com>
3170Date:   Wed Jan 29 02:11:47 2014 +0200
3171
3172    nls: remove duplicate 'ohorn' and 'uhorn' compose sequences
3173    
3174    Since <Ohorn> == <U01A0> and <ohorn> == <U01A1>, when translated to
3175    keysyms:
3176    
3177     #define XK_Ohorn                      0x10001a0  /* U+01A0 LATIN CAPITAL LETTER O WITH HORN */
3178     #define XK_ohorn                      0x10001a1  /* U+01A1 LATIN SMALL LETTER O WITH HORN */
3179    
3180    (and similarly for uhorn), there is no need to have both names. Remove
3181    the unicode literal ones.
3182    
3183    Signed-off-by: Ran Benita <ran234@gmail.com>
3184    Signed-off-by: James Cloos <cloos@jhcloos.com>
3185
3186commit b98998cb3bea7cb3005f2e9d5bc5332d14b1d5d3
3187Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3188Date:   Sat Jan 18 22:35:18 2014 -0800
3189
3190    Add RANDR 1.4 requests & events to XErrorDB
3191    
3192    Checked against randrproto.txt & randr.h
3193    
3194    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3195
3196commit 321392ded15a7ee9d177d4ebe8846336ba76741c
3197Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3198Date:   Fri Jan 3 20:04:33 2014 -0800
3199
3200    Remove unused ETEST & ESZTEST macros from XlibInt.c
3201    
3202    Left behind when 15e5eaf62897 removed support for building without XCB.
3203    
3204    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3205    Reviewed-by: Jasper St. Pierre <jstpierre@mecheye.net>
3206
3207commit 1ffc0c5503d4f419fdbc765243832a53491bf5bc
3208Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3209Date:   Thu Dec 26 09:26:13 2013 -0800
3210
3211    _XkbReadGeomOverlay: check for NULL first, then use pointer
3212    
3213    Flagged by cppcheck 1.62:
3214    [lib/libX11/src/xkb/XKBGeom.c:479] -> [lib/libX11/src/xkb/XKBGeom.c:480]:
3215     (warning) Possible null pointer dereference: row - otherwise it is
3216     redundant to check it against null.
3217    
3218    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3219
3220commit ddf5f130cc29bb3bf8b9c757dcbac31bc56e9379
3221Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3222Date:   Thu Dec 26 09:22:49 2013 -0800
3223
3224    XkbSelectEventDetails: remove unnecessary assignments
3225    
3226    clear & selectAll are set to 0 already a few lines earlier,
3227    affectWhich is set to XkbMapNotifyMask a few lines later.
3228    None are used between the other assignments and the removed ones.
3229    
3230    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3231
3232commit 3d69b0a83e62f8f6fbdd952fc49cdbdf8825e1e6
3233Author: Jon TURNEY <jon.turney@dronecode.org.uk>
3234Date:   Thu Oct 7 18:46:08 2010 +0100
3235
3236    Don't try so hard to find a matching font with the given encoding
3237    
3238    See http://sourceware.org/bugzilla/show_bug.cgi?id=10948
3239    
3240    Currently, if the locale is UTF-8, no CJK fonts are installed, and someone
3241    does XCreateFontSet() with a font name of "*", we end up asking the server
3242    to list the (non-existent) fonts 11 times for each CJK encoding, which can
3243    take a while.
3244    
3245    A * wildcard can match multiple components in a XLFD name in XListFonts(),
3246    so there's no need to try adding more than one to get a match.
3247    
3248    We do try once with a leading '*-' in case the fontname isn't a full
3249    well-formed XLFD name, maybe even that isn't needed?
3250    
3251    (See also http://invisible-island.net/xterm/xterm.faq.html#slow_menus)
3252    
3253    Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
3254    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3255
3256commit 7e163300735d4bcd3386b86eec112acdad139c59
3257Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3258Date:   Mon Dec 2 21:51:27 2013 -0800
3259
3260    unifdef -UISC
3261    
3262    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3263
3264commit 1e43c262d13cab2b759665f9f13bdedbc7afbfd4
3265Author: Benno Schulenberg <bensberg@justemail.net>
3266Date:   Thu Sep 19 13:20:05 2013 +0200
3267
3268    nls: Fix transposed locale identifier for Khmer.
3269    
3270    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
3271    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3272    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3273
3274commit 0e45f64766c0557c8e99a979c70ca6f55664dae7
3275Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3276Date:   Sat Nov 16 20:21:54 2013 -0800
3277
3278    Drop X_LOCALE fallback for OS'es without setlocale()
3279    
3280    C89 or bust!   This was documented as being needed for "only Lynx,
3281    Linux-libc5, OS/2" and has never been enabled in modular builds,
3282    since none of those platforms have had anyone step up to add support
3283    since the X11R7 conversion to autotools.
3284    
3285    Mostly performed with unifdef -UX_LOCALE, followed by removal of files
3286    left without any purpose, and manual cleanup of remaining references.
3287    
3288    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3289    Reviewed-by: Adam Jackson <ajax@redhat.com>
3290
3291commit 6cb02b166361200da35ba14f52cd9aaa493eb0ea
3292Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3293Date:   Wed Oct 23 10:37:53 2013 -0700
3294
3295    Xcms file parsing should not require the impossible to succeed
3296    
3297    The field2 helper function, to split lines from Xcms.txt files into
3298    two tab delimited fields, contained a check:
3299    
3300        if ((*pBuf != '\n') || (*pBuf != '\0')) {
3301            return(XcmsFailure);
3302    
3303    which would cause it to return failure unless *pBuf had a value that
3304    was simultaneously equal to both \n & \0, and no one wants to live in
3305    a world where that could ever be true.
3306    
3307    This has gone unnoticed since 1991, since this only caused lines
3308    in Xcms.txt that started with whitespace to be rejected, but now
3309    gcc -Wlogicalop has brought it to our attention, and
3310    https://bugs.freedesktop.org/show_bug.cgi?id=70803 was filed.
3311    
3312    Now that we see it, and cannot unsee it, we change it to use the
3313    same logic as the check at other points in this function, to return
3314    failure only if we hit \n or \0 before we find the first non-whitespace
3315    character, so that lines starting with whitespace will have the space
3316    skipped over to get to the color name to be defined.
3317    
3318    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3319    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
3320
3321commit 18a5278b008e9faa59b346fcab18a8d74b875fda
3322Author: Gaetan Nadon <memsize@videotron.ca>
3323Date:   Sat Sep 28 17:33:52 2013 -0400
3324
3325    makekeys: don't need to use target-specific CFLAGS
3326    
3327    It's the only thing built in that directory, so we can use AM_CFLAGS
3328    and AM_CPPFLAGS as usual.
3329    
3330    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3331    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
3332
3333commit 5dcb40f28d59587597d2ff6e6ac64c71cfe6ff7b
3334Author: James Cloos <cloos@jhcloos.com>
3335Date:   Tue Sep 17 12:50:42 2013 -0400
3336
3337    nls/en_US.UTF-8/Compose.pre: Fix typo.
3338    
3339    Fix typo added in 215ce6a67863, s/actute/acute/.
3340    
3341    Fixes bug #69476.  Reported by Jean Krohn.
3342    
3343    Signed-off-by: James Cloos <cloos@jhcloos.com>
3344
3345commit cb107760df33ffc8630677e66e2e50aa37950a5c
3346Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3347Date:   Sun Sep 8 18:37:01 2013 -0700
3348
3349    libX11 1.6.2
3350
3351commit 215ce6a67863de7acfd6dd3562b4fd97ef87b411
3352Author: Benno Schulenberg <bensberg@justemail.net>
3353Date:   Sun Sep 1 12:38:30 2013 +0200
3354
3355    nls: Adding more accessible compose sequences for J́ and j́.
3356    
3357    Few keyboards have an <acute> key, so this adds the much more
3358    accessible and usual compose sequences with <apostrophe>, ánd
3359    the most comfortable ones with <dead_acute>.
3360    
3361    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
3362    Signed-off-by: James Cloos <cloos@jhcloos.com>
3363
3364commit e9b14d10d0258bfcc273ff8bc84cd349dccda62c
3365Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3366Date:   Sat Aug 24 17:27:43 2013 -0700
3367
3368    Bug 68413 - [Bisected]Error in `xterm': realloc(): invalid next size
3369    
3370    Pass *new* size to realloc, not old size.
3371    
3372    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3373
3374commit c2b8e30790c21d6386767265263b3294ce1b1f9a
3375Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3376Date:   Fri Aug 16 21:04:02 2013 -0700
3377
3378    Stop checking for HAVE_DIX_CONFIG_H on the client side
3379    
3380    Leftover from when these XKB files were shared with the server sources
3381    and could be compiled in either the client or server, with the different
3382    autoconf config files in each.
3383    
3384    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3385
3386commit 84276609b2f0aec74fb464c428c7db5714b0fcfc
3387Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3388Date:   Fri Aug 16 18:27:28 2013 -0700
3389
3390    Rearrange some variable declarations & initializations in XKB
3391    
3392    Little things noticed during XKB restyling that seemed to make the
3393    code easier to read.
3394    
3395    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3396
3397commit b90b7e859cf45ec76921fa21bbfc1f3840d6e8d1
3398Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3399Date:   Sun Aug 11 13:29:33 2013 -0700
3400
3401    Reindent XKB code to X.Org standard style
3402    
3403    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3404
3405commit c0a0f78eb49c2e4ad956209de77475c85b9314ea
3406Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3407Date:   Fri Aug 16 18:14:14 2013 -0700
3408
3409    Fix overflow checks in _XkbReadKeySyms when key_sym_map is already created
3410    
3411    We were checking to make sure that the largest keysym value was within
3412    the range of the allocated buffer, but checking against different limits
3413    in the not-yet-allocated vs. the already-allocated branches.
3414    
3415    The check should be the same in both, and reflect the size used for the
3416    allocation, which is based on the maximum key code value, so we move it
3417    to be a common check, before we branch, instead of duplicating in each
3418    branch.
3419    
3420    map->key_sym_map is an array of XkbSymMapRec structs, [0..max_key_code]
3421    map->syms is the array for which num_syms is recorded, hence is not the
3422    right value to check for ensuring our key_sym_map accesses are in range.
3423    
3424    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3425    Reported-by: Barry Kauler <bkauler@gmail.com>
3426    Tested-by: Barry Kauler <bkauler@gmail.com>
3427
3428commit bea6cbd027973142fc64532274e1d16861b47190
3429Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3430Date:   Sun Aug 11 17:02:21 2013 -0700
3431
3432    Remove long unused src/udcInf.c
3433    
3434    I can find no record of what this file was for.  Neither the X11R6.8.2
3435    monolith Imakefile nor any modular release Makefile.am have ever built
3436    it and nothing else references it.
3437    
3438    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3439
3440commit bf3501e0395abe890acfea98fdd9f50a6966f118
3441Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3442Date:   Sun Aug 11 00:07:33 2013 -0700
3443
3444    Remove unnecessary casts of pointers to (char *) in calls to Xfree()
3445    
3446    Left one cast behind that is necessary to change from const char *
3447    to char * in src/xlibi18n/lcCharSet.c.
3448    
3449    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3450
3451commit 6ead9dd92ab90aabd9f0e328d59597e6b5bc09d3
3452Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3453Date:   Sat Aug 10 23:57:55 2013 -0700
3454
3455    Don't cast sizeof() results to unsigned when passing to Xmalloc/Xcalloc
3456    
3457    sizeof() returns size_t, malloc() & calloc() expect sizes in size_t,
3458    don't strip down to unsigned int and re-expand unnecessarily.
3459    
3460    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3461
3462commit 25a7a329def672fc8d26078538173777850c6390
3463Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3464Date:   Sat Aug 10 23:51:08 2013 -0700
3465
3466    Remove even more casts of return values from Xmalloc/Xrealloc
3467    
3468    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3469
3470commit f8fa16092a148b74ca35b4beb182053352606f2f
3471Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3472Date:   Sat Aug 10 23:05:13 2013 -0700
3473
3474    xlibi18n: fix argsize argument to _XlcParsePath
3475    
3476    The array is defined as having NUM_LOCALEDIR entries, so use that
3477    instead of hardcoded 256 value (the other two calls already did this).
3478    
3479    Reported by parfait:
3480       Buffer overflow (CWE 120): In pointer dereference of argv[argc] with index argc
3481          Pointer size is 64 elements (of 8 bytes each), index is 255
3482            at line 82 of src/xlibi18n/lcFile.c in function 'parse_line'.
3483            called at line 178 in function '_XlcParsePath' with argv = argv.
3484            called at line 722 in function '_XlcLocaleLibDirName' with argv = args, argsize = 256.
3485            at line 82 of src/xlibi18n/lcFile.c in function 'parse_line'.
3486            called at line 178 in function '_XlcParsePath' with argv = argv.
3487            called at line 638 in function '_XlcLocaleDirName' with argv = args, argsize = 256.
3488    
3489    [ This bug was found by the Parfait 1.2.0 bug checking tool.
3490      http://labs.oracle.com/pls/apex/f?p=labs:49:::::P49_PROJECT_ID:13 ]
3491    
3492    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3493
3494commit e7d46c6452c0b90fd66ae9f538546b968e0dd608
3495Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3496Date:   Sat Aug 10 22:32:42 2013 -0700
3497
3498    i18n modules: Fix some const cast warnings
3499    
3500    imRm.c: In function '_XimSetICMode':
3501    imRm.c:2419:37: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
3502    imRm.c:2420:30: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
3503    
3504    lcGenConv.c: In function 'byteM_parse_codeset':
3505    lcGenConv.c:345:13: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
3506    
3507    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3508
3509commit cbd86eccf175dc82a5cbcea54c8bd21ce18b70c0
3510Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3511Date:   Sat Aug 10 22:21:54 2013 -0700
3512
3513    xlibi18n: Fix a bunch of const cast warnings
3514    
3515    Add const qualifiers to casts where needed, remove other casts that
3516    are no longer needed.
3517    
3518    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3519
3520commit eb3676113fc2dd0f34d92b89beb81b3f61569aa1
3521Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3522Date:   Sat Aug 10 22:18:00 2013 -0700
3523
3524    Fix const handling in XSetLocaleModifiers
3525    
3526    Instead of reusing the input parameter to store the output, make a
3527    result variable instead, so that there's less const confusion.
3528    
3529    Fixes gcc warnings:
3530    lcWrap.c: In function 'XSetLocaleModifiers':
3531    lcWrap.c:87:18: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
3532    lcWrap.c:91:25: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
3533    lcWrap.c:93:12: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
3534    
3535    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3536
3537commit 8ebbffa98563960910152e4f2e31cb032375d871
3538Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3539Date:   Sat Aug 10 21:46:37 2013 -0700
3540
3541    Constify lc_name argument to _XlcLocaleDirName() & _XlcLocaleLibDirName()
3542    
3543    Makes code considerably less crufty and clears gcc warnings:
3544    XlcDL.c: In function '_XlcDynamicLoad':
3545    XlcDL.c:384:44: warning: cast discards '__attribute__((const))' qualifier
3546     from pointer target type [-Wcast-qual]
3547    XlcDL.c:386:51: warning: cast discards '__attribute__((const))' qualifier
3548     from pointer target type [-Wcast-qual]
3549    
3550    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3551
3552commit 07e4e864107b38c2f393564fdacc90f4e858f23f
3553Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3554Date:   Sat Aug 10 13:37:53 2013 -0700
3555
3556    init_om: remove unneeded extra copy of string to local buffer
3557    
3558    Strings from the supported_charset_list[] were being copied one by
3559    one to a stack buffer, and then strdup called on that buffer.
3560    
3561    Instead, just strdup the original string, without the local copy,
3562    and use a more traditional for loop, so it's easier to figure out
3563    what the code is doing (cleaning up a gcc const-cast warning in
3564    the process).
3565    
3566    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3567    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
3568
3569commit 1cec14dad904ba21a861f4af131be5982ecb83dd
3570Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3571Date:   Sat Aug 10 12:34:53 2013 -0700
3572
3573    Delete unused XKB_INSURE_SIZE macro from XKBlibint.h
3574    
3575    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3576    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
3577
3578commit 5f32182c7c4045540ff3833c48ee24a3a25726e2
3579Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3580Date:   Sat Aug 10 12:19:17 2013 -0700
3581
3582    miRegionOp(): ensure region size is not updated if realloc fails
3583    
3584    This function performs operations on a region, and when finished,
3585    checks to see if it should compact the rectangle list.  If the
3586    number of rectangles for which memory is allocated in the list is
3587    more than twice the number used, it tries to shrink.   realloc()
3588    should not fail in this case, but if it does, might as well keep
3589    the correct value for the number of allocated rectangles, so we
3590    don't try to grow it unnecessarily later if adding to the region.
3591    
3592    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3593
3594commit bd2a0b5a187798bb2e2f05dc5062ca79e37075dd
3595Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3596Date:   Sat Aug 10 12:19:17 2013 -0700
3597
3598    miRegionCopy(): handle realloc failure better
3599    
3600    Zero out the region size when freeing the region so callers don't think
3601    there's anything there.   (Pointer is already set to NULL from the realloc
3602    result itself.)  Return 0 to the callers, and have them cascade that back
3603    to their callers to indicate failure, instead of their usual return value
3604    of 1 on success.
3605    
3606    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3607
3608commit 5dc8b5385d513bbda88697c2372db750d23f46d4
3609Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3610Date:   Sat Aug 10 11:27:22 2013 -0700
3611
3612    Avoid memory leak/corruption if realloc fails in Xregion.h:MEMCHECK macro
3613    
3614    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3615
3616commit 453c4ee436ef32d91501d7736d7a91c1aeafc565
3617Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3618Date:   Sat Aug 10 12:07:51 2013 -0700
3619
3620    Avoid memory leak/corruption if realloc fails in imLcPrs.c:parseline()
3621    
3622    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3623
3624commit b3fea74ec5b7d4f83755a52a8d49c564b71c6d12
3625Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3626Date:   Sat Aug 10 12:30:39 2013 -0700
3627
3628    lcDB.c: ensure buffer size is updated correctly if realloc fails
3629    
3630    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3631
3632commit 43bb822c714a73c3b2d15e621ffb3333cd10da8c
3633Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3634Date:   Sat Aug 10 11:07:47 2013 -0700
3635
3636    Avoid memory leak/corruption if realloc fails in XlcDL.c:resolve_object()
3637    
3638    Previously, if realloc failed to increase the size, we'd still
3639    record that we had allocated the larger size, but the pointer
3640    to it would be NULL, causing future calls to be broken, and the
3641    previous allocation to be lost/leaked.
3642    
3643    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3644    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
3645
3646commit 5d47a39978e92bb34ec928b1b15d71c0c2434870
3647Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3648Date:   Fri Aug 9 23:33:03 2013 -0700
3649
3650    omGeneric.c: convert sprintf calls to snprintf
3651    
3652    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3653    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
3654
3655commit 88a27a2aa9b7d35cb79b16334ea3413e572b724a
3656Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3657Date:   Fri Aug 9 23:30:30 2013 -0700
3658
3659    ximcp/imRm.c: convert sprintf calls to snprintf
3660    
3661    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3662    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
3663
3664commit 4fadae243fb485628c9a137f5da3489ed6214b21
3665Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3666Date:   Fri Aug 9 23:02:12 2013 -0700
3667
3668    xlibi18n: convert sprintf calls to snprintf
3669    
3670    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3671    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
3672
3673commit 36a7edf0e5edfc5ef4ff2c3a8b4fa3dc4796e854
3674Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3675Date:   Fri Aug 9 23:02:12 2013 -0700
3676
3677    lcfile: skip over any null entries in args list
3678    
3679    Previous code seemed to assume that printf("%s", NULL) would result
3680    in a 0-length string, not "(null)" or similar, but since there's no
3681    point looking for files in "(null)/filepath...", instead we just
3682    skip over NULL entries in search paths when generating file names.
3683    
3684    In the *DirName() functions, this effectively just moves the "bail on
3685    NULL in arg[i]" check up from the later code that assigned it to targetdir
3686    and then bailed if that was NULL.
3687    
3688    Not sure how there ever could be a NULL in arg[i], given the current
3689    implementation of XlcParsePath, but it's easy enough to check once and
3690    reject up front instead of on every reference.
3691    
3692    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3693
3694commit ee0824f24392d5ca3d5fd5f5ed8d78c0d892f7c0
3695Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3696Date:   Fri Aug 9 22:00:09 2013 -0700
3697
3698    Fix file leak on malloc error in XlcDL.c:resolve_object()
3699    
3700    File Leak: Leaked File fp
3701       at line 219 of lib/libX11/src/xlibi18n/XlcDL.c in function 'resolve_object'.
3702          fp initialized at line 198 with fopen
3703    
3704    [ This bug was found by the Parfait 1.2.0 bug checking tool.
3705      http://labs.oracle.com/pls/apex/f?p=labs:49:::::P49_PROJECT_ID:13 ]
3706    
3707    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3708    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
3709
3710commit 9b291044a240e5b9b031ed814e0c84e53a1c3084
3711Author: Julien Cristau <jcristau@debian.org>
3712Date:   Sat Jun 15 18:02:21 2013 +0200
3713
3714    Add missing locales to configure.ac
3715    
3716    Commits 40761898692e5063957bfa2518cca3d35b2e354a and
3717    f198c6aa98f88ff285d903175a3c4c0fd33a4575 added two new locales
3718    (sr_CS.UTF-8 and km_KH.UTF-8), but didn't list them in configure.ac,
3719    meaning they're not included in tarballs.
3720    
3721    Signed-off-by: Julien Cristau <jcristau@debian.org>
3722    Reviewed-by: James Cloos <cloos@jhcloos.com>
3723
3724commit 8f58e54a5f46c3cd4897a23b89950f4800ae38d4
3725Author: ISHIKAWA,chiaki <ishikawa@yk.rim.or.jp>
3726Date:   Tue Dec 18 15:28:05 2012 +0000
3727
3728    Fix bogus timestamp generated by XIM
3729    
3730    Fix bogus timestamp generted by XIM due to uninitialized
3731    data field. Also set appropriate serial, too.
3732    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=39367
3733    
3734    Signed-off-by: Chiaki ISHIKAWA <ishikawa@yk.rim.or.jp>
3735    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3736
3737commit e7fd6f0eda57300df4d6b695b7064610ca5dec57
3738Author: Egbert Eich <eich@freedesktop.org>
3739Date:   Thu Jun 16 18:47:49 2011 +0200
3740
3741    XIM: Fix sync problem on focus change.
3742    
3743    XSetICFocus() and XUnsetICFocus() are both asynchronous events.
3744    This is a pretty stupid idea: those functions may undo certain
3745    settings on the client side for which requests from the server
3746    may still be in the queue unprocessed. Thus things may be set
3747    in the wrong order ie instead of set -> unest it will be unset -> set.
3748    Moreover there is no way for either the client or the server to
3749    cause the event queue to be flushed - which is pretty bad as
3750    XIM is bidirectional.
3751    The scenario is as follows:
3752    Two ICs are created:
3753            ic1 = XCreateIC(im,
3754                XNInputStyle, XIMPreeditCallbacks | XIMStatusCallbacks,
3755                XNClientWindow, window,
3756                XNPreeditAttributes, preedit_attr,
3757                XNStatusAttributes, status_attr,
3758                NULL);
3759            ic2 = XCreateIC(im, XNInputStyle,
3760                           XIMPreeditNothing | XIMStatusNothing,
3761                           XNClientWindow, window, NULL);
3762    Then the focus is removed from ic2:
3763            XUnsetICFocus(ic2);
3764    If SCIM is used as the input server it will send a bunch of requests
3765    following an XCreateIC(). One of the requests registers a key release
3766    filter. XUnsetICFocus() unsets both key press and release filters.
3767    Since it is asynchronous, the input server requests to register key
3768    press and release filters may not have been processed, when XUnsetICFocus()
3769    is called. Since there is no explicite way for client programs to enforce
3770    the request queue to be flushed explicitely before an X[Set/Unset]ICFocus()
3771    call it would be safest to make those two calls synchronous in the sense
3772    that they ensure the request queue has been handled before they execute.
3773    The easiest way to do this from Xlib is thru a call to XGetICValues()
3774    which sends a request to the server and subsequently reads the queue
3775    from the server to the client. This will cause all outstanding requests
3776    in the queue to be read and handled.
3777    This is an ugly hack and this could be fixed directly in the client,
3778    however it seems to be easier to fix Xlib than to fix numerous clients.
3779    This problem arose since there is no well documented way how to handle
3780    and synchronize XIM requests and not all input servers send requests
3781    when an IC is created.
3782    This has been discussed extensively in:
3783     https://bugzilla.novell.com/show_bug.cgi?id=221326
3784    
3785    Signed-off-by: Egbert Eich <eich@freedesktop.org>
3786
3787commit 26ec7d3821bc19debc73c8c3e42e6e33ef6f856e
3788Author: Egbert Eich <eich@freedesktop.org>
3789Date:   Thu Jun 16 17:28:39 2011 +0200
3790
3791    XIM: Fix race on focus change: set 'FABRICATED' only when keyev filters in place.
3792    
3793    When synthesized key events are sent on commit XIM sets the 'fabricated'
3794    flag so that the keypress handler knows that these were not real events.
3795    This also happens when committing due to the loss of focus. However in this
3796    case the keypress/release filters which consume and unset this flag are no
3797    longer in the filter chain.
3798    So the flag is erronously set when a real keyboard event is received after
3799    focus has been regained. So the first event is wrongly treated as a
3800    fabricated key in the keypress handler which will at the same time reset
3801    the flag so the second key event is treated correctly.
3802    This fix only sets the flag when at least one of the keyboard filters is in
3803    place.
3804    How to reproduce this bug: run scim, choose a Japanese input method start
3805    two instances of xterm: start typing in one xterm (this should pop up an
3806    IM window). Without comitting (hitting 'enter') move focus to the other
3807    xterm, then move focus back. Start typing again. The first character will
3808    be committed immediately without popping up an input window.
3809    With this fix this behavior is gone.
3810    
3811    See also: https://bugzilla.novell.com/show_bug.cgi?id=239698
3812    
3813    Signed-off-by: Egbert Eich <eich@freedesktop.org>
3814
3815commit 44f84223f5e2dd46883fcbd352af2798bfa9aeb6
3816Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3817Date:   Mon Jul 29 21:29:49 2013 -0700
3818
3819    libX11 1.6.1
3820    
3821    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3822
3823commit d19cfaca15826943d3c637ef7fa5db0a23d5feed
3824Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3825Date:   Sat Jul 27 12:19:00 2013 -0700
3826
3827    Fix undefined XCMSDIR error when building lint library
3828    
3829    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3830
3831commit 3083cd43d7dcd59da587975e7cadda681cd8a103
3832Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3833Date:   Sat Jul 27 00:36:08 2013 -0700
3834
3835    Add ku_TR.UTF-8 (Kurdish language, Turkey region) to compose/locale.dir
3836    
3837    Upstreaming from changes originally integrated into OpenSolaris
3838    under Sun bug id 6882572.
3839    
3840    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3841    Reviewed-by: Thomas Klausner <wiz@NetBSD.org>
3842
3843commit 208e586c808e88a2ee819e4450dc27f557afc2bf
3844Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3845Date:   Sat Jul 27 01:03:18 2013 -0700
3846
3847    omGeneric: remove space between struct name & member name
3848    
3849    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3850
3851commit 7db74514e454d3fc4ff70aa08ddac66bfffda4dd
3852Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3853Date:   Tue Jul 23 22:18:46 2013 -0700
3854
3855    Refactor common code from XAddHost & XRemoveHost into single function
3856    
3857    On the Xlib side, the only real difference is the mode flag we send
3858    to the server with the address, so just make that an argument to the
3859    function with the common code for packing the address into the request.
3860    
3861    (Aside from labels, gcc 4.7.2 generates identical code before & after
3862     this change due to inlining, verified via diff of gcc -S output.)
3863    
3864    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3865
3866commit 3292195a64a9ce4f0d27134cd544651ec647e728
3867Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3868Date:   Tue Jul 23 22:11:34 2013 -0700
3869
3870    XSetModifierMapping: Use Data instead of GetReqExtra
3871    
3872    Handle arbitrary length data in the same fashion as other calls,
3873    avoiding need to ensure it fits all in the request buffer.
3874    
3875    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3876
3877commit feb131b18aee31c2c125dc3275b0260940245882
3878Author: Kees Cook <kees@outflux.net>
3879Date:   Sun Jun 9 11:13:43 2013 -0700
3880
3881    libX11: check "req" when calling GetReqExtra
3882    
3883    This fixes the two callers of GetReqExtra to check that "req" is non-NULL
3884    to avoid crashing now that GetReqExtra does internal bounds-checking on
3885    the resulting buffer sizes.
3886    
3887    Additionally updates comment describing return values to use names
3888    instead of only literal values.
3889    
3890    Signed-off-by: Kees Cook <kees@outflux.net>
3891    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3892    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3893
3894commit 54540d7cba0c2bfe9176221c7bca910058d304df
3895Author: Kees Cook <kees@outflux.net>
3896Date:   Sun Jun 9 11:13:42 2013 -0700
3897
3898    libX11: check size of GetReqExtra after XFlush
3899    
3900    Two users of GetReqExtra pass arbitrarily sized allocations from the
3901    caller (ModMap and Host). Adjust _XGetRequest() (called by the GetReqExtra
3902    macro) to double-check the requested length and invalidate "req" when
3903    this happens. Users of GetReqExtra passing lengths greater than the Xlib
3904    buffer size (normally 16K) must check "req" and fail gracefully instead
3905    of crashing.
3906    
3907    Any callers of GetReqExtra that do not check "req" for NULL
3908    will experience this change, in the pathological case, as a NULL
3909    dereference instead of a buffer overflow. This is an improvement, but
3910    the documentation for GetReqExtra has been updated to reflect the need
3911    to check the value of "req" after the call.
3912    
3913    Bug that manifested the problem:
3914    https://bugs.launchpad.net/ubuntu/+source/x11-xserver-utils/+bug/792628
3915    
3916    Signed-off-by: Kees Cook <kees@outflux.net>
3917    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3918    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3919
3920commit 24d3ee0d08f24e23c91d55702f010f73d7b908e5
3921Author: Thomas Klausner <wiz@NetBSD.org>
3922Date:   Tue Jun 25 22:35:29 2013 +0200
3923
3924    Tighten out-of-range comparisons.
3925    
3926    [For all of these, LONG_MAX was the correct value to prevent overflows
3927     for the recent CVEs.   Lowering to INT_MAX catches buggy replies from
3928     the server that 32-bit clients would reject but 64-bit would accept,
3929     so we catch bugs sooner, and really, no sane & working server should
3930     ever report more than 2gb of extension names, font path entries,
3931     key modifier maps, etc.  -alan- ]
3932    
3933    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3934    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3935
3936commit 6d926088d80a08e13e6d6c4ff207b81ad52e667f
3937Author: Thomas Klausner <wiz@NetBSD.org>
3938Date:   Tue Jun 25 18:34:32 2013 +0200
3939
3940    Fix out-of-range comparison in _XF86BigfontQueryFont
3941    
3942    clang complained (correctly):
3943    warning: comparison of constant 768614336404564650 with expression
3944    of type 'CARD32' (aka 'unsigned int') is always true
3945    [-Wtautological-constant-out-of-range-compare]
3946    
3947    [While LONG_MAX is correct, since it's used in size_t math, the
3948     numbers have to be limited to 32-bit range to be usable by 32-bit
3949     clients, and values beyond that range are far more likely to be
3950     bugs in the data from the server than valid numbers of characters
3951     in a font.   -alan- ]
3952    
3953    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3954    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3955
3956commit 383e2b0d029482a0f4c39fe00e15397538576fc1
3957Author: Thomas Klausner <wiz@NetBSD.org>
3958Date:   Tue Jun 25 18:33:56 2013 +0200
3959
3960    Check for symbol existence with #ifdef, not #if
3961    
3962    Reviewed-by: Jamey Sharp <jamey@minilop.net>
3963    
3964    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3965
3966commit 9955d1c8de994a90fe7f2e3187e7362611d7d265
3967Author: Thomas Klausner <wiz@NetBSD.org>
3968Date:   Tue Jun 25 18:33:07 2013 +0200
3969
3970    Use newer callback-based API for XIM.
3971    
3972    Let libX11 load and make available the newer (X11R6) callback-based
3973    API for XIM (expected by emacs).
3974    
3975    This patch updates the files to match the other nls/ files.
3976    
3977    Patch from Ian D. Leroux <idleroux@fastmail.fm> on pkgsrc-users@NetBSD.org
3978    following a hint by Nhat Minh Lê <nhat.minh.le@gmail.com>.
3979    
3980    Reviewed-by: James Cloos <cloos@jhcloos.com>
3981    
3982    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3983
3984commit a17ceb7100bd36c2db210473ee701deb5d515731
3985Author: Thomas Klausner <wiz@NetBSD.org>
3986Date:   Tue Jun 25 18:31:32 2013 +0200
3987
3988    Stop truncating source to destination length if it is larger.
3989    
3990    It seems useless to do that since the code tests for both source
3991    length and destination to be non-zero. This fixes a cut'n'paste
3992    problem in xterm where the paste length was limited to 1024 (BUFSIZ)
3993    in button.c.
3994    
3995    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3996
3997commit a336db9a0add3ae0783dda6e52459236622a12af
3998Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3999Date:   Mon Jun 24 23:02:05 2013 -0700
4000
4001    Require ANSI C89 pre-processor, drop pre-C89 token pasting support
4002    
4003    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4004
4005commit 9dfb0f3c0a761590bcdc1f3396b1e064da4e18e8
4006Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4007Date:   Fri Jun 7 11:30:11 2013 -0700
4008
4009    troff macro expansion in specs/libX11
4010    
4011    Many of the custom nroff macros (.ds <macro> <contents>) were left
4012    unsubstituted in the nroff->docbook conversion.   This substitution
4013    is now performed, via the following perl script:
4014    
4015    #! /usr/bin/perl -w -i
4016    
4017    use Text::Wrap;
4018    
4019    while ($_ = <>) {
4020        while ($_ =~ m/\((\w+)\b/g) {
4021            my $m = $1;
4022            if (exists $macro{$m}) {
4023                $_ =~ s/\($m/$macro{$m}/;
4024                $_ = wrap('', '', $_);
4025                $_ =~ s/[ \t]+$//;
4026            }
4027        }
4028    
4029        if ($_ =~ /\<!-- .ds (\w+) (.*) -->/) {
4030            my ($m, $s) = ($1, $2);
4031            $macro{$m} = $s;
4032            while ($macro{$m} =~ /\\\s*$/) {
4033                $macro{$m} =~ s/\\\s*$//ms;
4034                $macro{$m} .= <>;
4035                chomp($macro{$m});
4036            }
4037            $macro{$m} =~ s/\\ / /g;
4038        } else {
4039            print $_;
4040        }
4041    }
4042    
4043    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4044
4045commit 20c17bd9ebf767a24643279e45866dddcb57b5ce
4046Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4047Date:   Fri Jun 7 09:27:26 2013 -0700
4048
4049    specs/libX11: correct prototype for XListPixmapFormats/XImageByteOrder
4050    
4051    The XListPixmapFormats arguments was being shown with XImageByteOrder's
4052    name and return types.   Appears to have been a glitch in the nroff ->
4053    docbook conversion.
4054    
4055    Reported-by: ZHANG Zhaolong <zhangzl2013@126.com>
4056    Reviewed-by: Jamey Sharp <jamey@minilop.net>
4057    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4058
4059commit ed3d830243c8a0eefaf24e15b11823272ffe5049
4060Author: Thomas Klausner <wiz@NetBSD.org>
4061Date:   Sun Jun 2 20:49:55 2013 +0200
4062
4063    Deal with the limited range of VAX floating point numbers when compiling for VAX.
4064    
4065    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4066
4067commit 0a48235d63639fb917c44d27c86e928e79fbac66
4068Author: Eric S. Raymond <esr@thyrsus.com>
4069Date:   Thu Jun 6 16:43:56 2013 -0400
4070
4071    Remove call to undefined macro.
4072
4073commit 9e4719b9b719f2f8d255f6778e2e8c1809e32599
4074Author: Eric S. Raymond <esr@thyrsus.com>
4075Date:   Thu Jun 6 16:42:20 2013 -0400
4076
4077    Remove call to undefined macro.
4078
4079commit 8496122eb00ce6cd5d2308ee54f64b68c378e455
4080Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4081Date:   Mon Jun 3 20:06:43 2013 -0700
4082
4083    Update README to reflect where to find the Xlib specs now
4084    
4085    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4086
4087commit 655d631e86c95b14888758b27ed2836ca3e3ce86
4088Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4089Date:   Mon Jun 3 19:21:06 2013 -0700
4090
4091    libX11 1.6.0
4092    
4093    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4094
4095commit 4a89b7ea908554628f374537a79931c8006a2de3
4096Author: Thomas Klausner <wiz@NetBSD.org>
4097Date:   Sun Jun 2 11:49:54 2013 -0700
4098
4099    cmsMath.c: Add missing stdio header for printf(3) in DEBUG build.
4100    
4101    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4102
4103commit 96dcf747f13b26b8e4d17b1bc8605d933c3e1dc6
4104Author: Thomas Klausner <wiz@NetBSD.org>
4105Date:   Sun Jun 2 20:49:48 2013 +0200
4106
4107    XCreateGC man page: Avoid .TS H and .TH macros
4108    
4109    Avoid .TS H and .TH for now as it doesn't alter the output in this case,
4110    and improve the output with mandoc(1).
4111    
4112    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4113
4114commit 95a388158c9d73df7d24016d6a3d61506d7d53a4
4115Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4116Date:   Thu May 23 19:43:35 2013 -0700
4117
4118    libX11 1.5.99.902 (1.6 RC2)
4119    
4120    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4121
4122commit a3bdd2b090915fe0163b062f0e6576fe05dd332e
4123Author: Julien Cristau <jcristau@debian.org>
4124Date:   Thu May 23 20:39:46 2013 +0200
4125
4126    xkb: fix off-by-one in _XkbReadGetNamesReply and _XkbReadVirtualModMap
4127    
4128    The size of the arrays is max_key_code + 1.  This makes these functions
4129    consistent with the other checks added for CVE-2013-1997.
4130    
4131    Also check the XkbGetNames reply when names->keys was just allocated.
4132    
4133    Signed-off-by: Julien Cristau <jcristau@debian.org>
4134    Tested-by: Colin Walters <walters@verbum.org>
4135    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4136
4137commit 7e30056e78e4b7979ff47f102e00327617266019
4138Author: Niveditha Rau <Niveditha.Rau@Oracle.COM>
4139Date:   Fri May 17 15:26:21 2013 -0700
4140
4141    Make sure internal headers include required headers
4142    
4143    Fixes builds with Solaris Studio 12.3 when lint is enabled, since it no
4144    longer ignores *.h files, but complains when they reference undefined
4145    typedefs or macros.
4146    
4147    Signed-off-by: Niveditha Rau <Niveditha.Rau@Oracle.COM>
4148    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4149
4150commit 2820100bf8ba130b94253f415e7fa5ac28bb2037
4151Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4152Date:   Thu May 16 23:05:36 2013 -0700
4153
4154    Free fs->properties in _XF86BigfontQueryFont overflow error path
4155    
4156    Fixes small memory leak introduced in commit 5669a22081
4157    
4158    Reported-by: Julien Cristau <jcristau@debian.org>
4159    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4160
4161commit 3131740513133a9ff7cb12123d29ceb18584fc38
4162Author: Matthieu Herrb <matthieu.herrb@laas.fr>
4163Date:   Wed May 8 19:33:09 2013 +0200
4164
4165    XListFontsWithInfo: Re-decrement flist[0] before calling free() on it.
4166    
4167    Freeing a pointer that wasn't returned by malloc() is undefined
4168    behavior and produces an error with OpenBSD's implementation.
4169    
4170    Signed-off-by: Matthieu Herrb <matthieu.herrb@laas.fr>
4171    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4172    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4173
4174commit 3fe4bea086149f06a142a8f1d575f627ec1e22c7
4175Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4176Date:   Fri Apr 19 14:30:40 2013 -0700
4177
4178    Give GNU & Solaris Studio compilers hints about XEatData branches
4179    
4180    Try to offset the cost of all the recent checks we've added by giving
4181    the compiler a hint that the branches that involve us eating data
4182    are less likely to be used than the ones that process it.
4183    
4184    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4185
4186commit e1b457beb8d4e831ef44279dada6c475cb955738
4187Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4188Date:   Sun Mar 31 12:22:35 2013 -0700
4189
4190    _XkbReadGetMapReply: reject maxKeyCodes smaller than the minKeyCode
4191    
4192    Various other bounds checks in the code assume this is true, so
4193    enforce it when we first get the data from the X server.
4194    
4195    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4196
4197commit 12ad4c6432496897ff000eb7cfecd0fb4b290331
4198Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4199Date:   Sat Mar 16 10:03:13 2013 -0700
4200
4201    Use calloc in XOpenDisplay to initialize structs containing pointers
4202    
4203    Prevents trying to free uninitialized pointers if we have to bail out
4204    partway through setup, such as if we receive a corrupted or incomplete
4205    connection setup block from the server.
4206    
4207    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4208
4209commit d38527e25f8b6e2f1174ecc21260c5c5416f972e
4210Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4211Date:   Thu Mar 7 23:46:05 2013 -0800
4212
4213    Remove more unnecessary casts from Xmalloc/calloc calls
4214    
4215    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4216
4217commit b2c86b582c58f50c7b14da01cf7ebd20ef12a6b2
4218Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4219Date:   Sat Mar 2 16:56:16 2013 -0800
4220
4221    Convert more _XEatData callers to _XEatDataWords
4222    
4223    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4224    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
4225
4226commit 192bbb9e2fc45df4e17b35b6d14ea0eb418dbd39
4227Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4228Date:   Sat Mar 9 11:04:37 2013 -0800
4229
4230    Make XGetWindowProperty() always initialize returned values
4231    
4232    Avoids memory corruption and other errors when callers access them
4233    without checking to see if XGetWindowProperty() returned an error value.
4234    
4235    Callers are still required to check for errors, this just reduces the
4236    damage when they don't.
4237    
4238    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
4239    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4240    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
4241
4242commit db1b1c871da29aa0545182bf888df81627f165a5
4243Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4244Date:   Sat Mar 2 15:08:21 2013 -0800
4245
4246    Avoid overflows in XListExtensions() [CVE-2013-1997 15/15]
4247    
4248    Ensure that when breaking the returned list into individual strings,
4249    we don't walk past the end of allocated memory to write the '\0' bytes
4250    
4251    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4252    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
4253
4254commit 8d5936594993921acdfec778dd8f41b555e2543a
4255Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4256Date:   Sat Mar 2 15:08:21 2013 -0800
4257
4258    Avoid overflows in XGetFontPath() [CVE-2013-1997 14/15]
4259    
4260    Ensure that when breaking the returned list into individual strings,
4261    we don't walk past the end of allocated memory to write the '\0' bytes
4262    
4263    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4264    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
4265
4266commit 0c404db6a92dc2c198328bf586c02d8abbe02013
4267Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4268Date:   Sat Mar 2 15:08:21 2013 -0800
4269
4270    Avoid overflows in XListFonts() [CVE-2013-1997 13/15]
4271    
4272    Ensure that when breaking the returned list into individual strings,
4273    we don't walk past the end of allocated memory to write the '\0' bytes
4274    
4275    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4276    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
4277
4278commit 0b0f5d4358c3de7563d6af03f0d2ce454702a06a
4279Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4280Date:   Sat Mar 2 15:08:21 2013 -0800
4281
4282    integer overflow in XGetModifierMapping() [CVE-2013-1981 13/13]
4283    
4284    Ensure that we don't underallocate when the server claims a very large reply
4285    
4286    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4287    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
4288
4289commit a351b8103b2ba78882e1c309e85893ca3abe2073
4290Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4291Date:   Sat Mar 2 15:08:21 2013 -0800
4292
4293    integer overflow in XGetPointerMapping() & XGetKeyboardMapping() [CVE-2013-1981 12/13]
4294    
4295    Ensure that we don't underallocate when the server claims a very large reply
4296    
4297    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4298    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
4299
4300commit 833f6b70bc789d33607f6dbfee9e0a4178ec4b59
4301Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4302Date:   Sat Mar 2 15:08:21 2013 -0800
4303
4304    integer overflow in XGetImage() [CVE-2013-1981 11/13]
4305    
4306    Ensure that we don't underallocate when the server claims to have sent a
4307    very large reply.
4308    
4309    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4310    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
4311
4312commit 79d8dc08eb98842173ce239b9dd60df0e9e9ae72
4313Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4314Date:   Fri Mar 8 22:25:35 2013 -0800
4315
4316    integer overflow in XGetWindowProperty() [CVE-2013-1981 10/13]
4317    
4318    If the reported number of properties is too large, the calculations
4319    to allocate memory for them may overflow, leaving us returning less
4320    memory to the caller than implied by the value written to *nitems.
4321    
4322    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
4323    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4324    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
4325
4326commit 164bf4dfe839b1cc75cdeee378a243d04a8200e4
4327Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4328Date:   Sat Mar 2 13:18:48 2013 -0800
4329
4330    integer overflows in TransFileName() [CVE-2013-1981 9/13]
4331    
4332    When trying to process file paths the tokens %H, %L, & %S are expanded
4333    to $HOME, the standard compose file path & the xlocaledir path.
4334    If enough of these tokens are repeated and values like $HOME are set to
4335    very large values, the calculation of the total string size required to
4336    hold the expanded path can overflow, resulting in allocating a smaller
4337    string than the amount of data we'll write to it.
4338    
4339    Simply restrict all of these values, and the total path size to PATH_MAX,
4340    because really, that's all you should need for a filename path.
4341    
4342    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
4343    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4344    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
4345
4346commit 460e8a223b87d4fa0ea1e97823e998a770e0f2a2
4347Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4348Date:   Fri Mar 1 18:37:37 2013 -0800
4349
4350    integer truncation in _XimParseStringFile() [CVE-2013-1981 8/13]
4351    
4352    Called from _XimCreateDefaultTree() which uses getenv("XCOMPOSEFILE")
4353    to specify filename.
4354    
4355    If the size of off_t is larger than the size of unsigned long (as in
4356    32-bit builds with large file flags), a file larger than 4 gigs could
4357    have its size truncated, leading to data from that file being written
4358    past the end of the undersized buffer allocated for it.
4359    
4360    While configure.ac does not use AC_SYS_LARGEFILE to set large file mode,
4361    builders may have added the large file compilation flags to CFLAGS on
4362    their own.
4363    
4364    size is left limited to an int, because if your Xim file is
4365    larger than 2gb, you're doing it wrong.
4366    
4367    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
4368    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4369    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
4370
4371commit 226622349a4b1e16064649d4444a34fb4be4f464
4372Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4373Date:   Sat Mar 2 12:39:58 2013 -0800
4374
4375    Unbounded recursion in _XimParseStringFile() when parsing include files [CVE-2013-2004 2/2]
4376    
4377    parseline() can call _XimParseStringFile() which can call parseline()
4378    which can call _XimParseStringFile() which can call parseline() ....
4379    eventually causing recursive stack overflow and crash.
4380    
4381    Limit is set to a include depth of 100 files, which should be enough
4382    for all known use cases, but could be adjusted later if necessary.
4383    
4384    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
4385    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4386    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
4387
4388commit 236b603d235dc264d1c6250dca09c745458a9088
4389Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4390Date:   Sat Mar 2 12:01:39 2013 -0800
4391
4392    Unbounded recursion in GetDatabase() when parsing include files [CVE-2013-2004 1/2]
4393    
4394    GetIncludeFile() can call GetDatabase() which can call GetIncludeFile()
4395    which can call GetDatabase() which can call GetIncludeFile() ....
4396    eventually causing recursive stack overflow and crash.
4397    
4398    Easily reproduced with a resource file that #includes itself.
4399    
4400    Limit is set to a include depth of 100 files, which should be enough
4401    for all known use cases, but could be adjusted later if necessary.
4402    
4403    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
4404    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4405    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
4406
4407commit 076428918e6c35f66b9b55c3fa097ff06496d155
4408Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4409Date:   Fri Mar 1 18:37:37 2013 -0800
4410
4411    integer overflow in ReadInFile() in Xrm.c [CVE-2013-1981 7/13]
4412    
4413    Called from XrmGetFileDatabase() which gets called from InitDefaults()
4414    which gets the filename from getenv ("XENVIRONMENT")
4415    
4416    If file is exactly 0xffffffff bytes long (or longer and truncates to
4417    0xffffffff, on implementations where off_t is larger than an int),
4418    then size may be set to a value which overflows causing less memory
4419    to be allocated than is written to by the following read() call.
4420    
4421    size is left limited to an int, because if your Xresources file is
4422    larger than 2gb, you're very definitely doing it wrong.
4423    
4424    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
4425    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4426    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
4427
4428commit 90fd5abac2faca86f9f100353a3c9c7b89f31484
4429Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4430Date:   Sat Mar 2 11:44:19 2013 -0800
4431
4432    Integer overflows in stringSectionSize() cause buffer overflow in ReadColornameDB() [CVE-2013-1981 6/13]
4433    
4434    LoadColornameDB() calls stringSectionSize() to do a first pass over the
4435    file (which may be provided by the user via XCMSDB environment variable)
4436    to determine how much memory needs to be allocated to read in the file,
4437    then allocates the returned sizes and calls ReadColornameDB() to load the
4438    data from the file into that newly allocated memory.
4439    
4440    If stringSectionSize() overflows the signed ints used to calculate the
4441    file size (say if you have an xcmsdb with ~4 billion lines in or a
4442    combined string length of ~4 gig - which while it may have been
4443    inconceivable when Xlib was written, is quite possible today), then
4444    LoadColornameDB() may allocate a memory buffer much smaller than the
4445    amount of data ReadColornameDB() will write to it.
4446    
4447    The total size is left limited to an int, because if your xcmsdb file
4448    is larger than 2gb, you're doing it wrong.
4449    
4450    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
4451    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4452    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
4453
4454commit b9ba832401734e1cbd30a930c0d11d850293f3f9
4455Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4456Date:   Sat Mar 2 11:25:25 2013 -0800
4457
4458    unvalidated length in _XimXGetReadData() [CVE-2013-1997 12/15]
4459    
4460    Check the provided buffer size against the amount of data we're going to
4461    write into it, not against the reported length from the ClientMessage.
4462    
4463    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
4464    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4465    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
4466
4467commit de2e6c322c4aca22856b380f67f8e488e7510015
4468Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4469Date:   Sat Mar 2 11:11:08 2013 -0800
4470
4471    unvalidated index/length in _XkbReadGetNamesReply() [CVE-2013-1997 11/15]
4472    
4473    If the X server returns key name indexes outside the range of the number
4474    of keys it told us to allocate, out of bounds memory writes could occur.
4475    
4476    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
4477    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4478    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
4479
4480commit 2df882eeb3a70256170127a746a9ba26376599a1
4481Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4482Date:   Sat Mar 2 11:01:04 2013 -0800
4483
4484    unvalidated index in _XkbReadVirtualModMap() [CVE-2013-1997 10/15]
4485    
4486    If the X server returns modifier map indexes outside the range of the number
4487    of keys it told us to allocate, out of bounds memory writes could occur.
4488    
4489    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
4490    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4491    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
4492
4493commit 4d7c422a37eb9617fb22f8e37527c2b34b105665
4494Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4495Date:   Sat Mar 2 11:04:44 2013 -0800
4496
4497    unvalidated index in _XkbReadExplicitComponents() [CVE-2013-1997 9/15]
4498    
4499    If the X server returns key indexes outside the range of the number of
4500    keys it told us to allocate, out of bounds memory writes could occur.
4501    
4502    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
4503    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4504    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
4505
4506commit e56a2ada719c5cfac5ed61a52a80ade86c0f5957
4507Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4508Date:   Sat Mar 2 10:51:51 2013 -0800
4509
4510    unvalidated index in _XkbReadModifierMap() [CVE-2013-1997 8/15]
4511    
4512    If the X server returns modifier map indexes outside the range of the number
4513    of keys it told us to allocate, out of bounds memory writes could occur.
4514    
4515    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
4516    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4517    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
4518
4519commit 06c086e8a1d8374ea9a95ff989f053c96bb1bdca
4520Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4521Date:   Sat Mar 2 10:39:21 2013 -0800
4522
4523    unvalidated index in _XkbReadKeyBehaviors() [CVE-2013-1997 7/15]
4524    
4525    If the X server returns key behavior indexes outside the range of the number
4526    of keys it told us to allocate, out of bounds memory writes could occur.
4527    
4528    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
4529    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4530    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
4531
4532commit 00626c3830b869259098985afa38933d77ccec72
4533Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4534Date:   Sat Mar 2 09:40:22 2013 -0800
4535
4536    unvalidated index in _XkbReadKeyActions() [CVE-2013-1997 6/15]
4537    
4538    If the X server returns key action indexes outside the range of the number
4539    of keys it told us to allocate, out of bounds memory access could occur.
4540    
4541    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
4542    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4543    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
4544
4545commit fd7d4956bc7a1c4b5c38661b12777ebee4d685d9
4546Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4547Date:   Sat Mar 2 09:28:33 2013 -0800
4548
4549    unvalidated index in _XkbReadKeySyms() [CVE-2013-1997 5/15]
4550    
4551    If the X server returns keymap indexes outside the range of the number of
4552    keys it told us to allocate, out of bounds memory access could occur.
4553    
4554    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
4555    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4556    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
4557
4558commit 59ae16a00d18588e98af57d26e442af8ea42b7aa
4559Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4560Date:   Sat Mar 2 09:18:26 2013 -0800
4561
4562    unvalidated indexes in _XkbReadGetGeometryReply() [CVE-2013-1997 4/15]
4563    
4564    If the X server returns color indexes outside the range of the number of
4565    colors it told us to allocate, out of bounds memory access could occur.
4566    
4567    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
4568    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4569    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
4570
4571commit bff938b9fe1629cbacb726509edfa2a3840b7207
4572Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4573Date:   Sat Mar 2 09:12:47 2013 -0800
4574
4575    unvalidated indexes in _XkbReadGeomShapes() [CVE-2013-1997 3/15]
4576    
4577    If the X server returns shape indexes outside the range of the number
4578    of shapes it told us to allocate, out of bounds memory access could occur.
4579    
4580    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
4581    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4582    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
4583
4584commit f293659d5a4024bda386305bb7ebeb4647c40934
4585Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4586Date:   Fri Mar 1 22:49:01 2013 -0800
4587
4588    unvalidated index in _XkbReadGetDeviceInfoReply() [CVE-2013-1997 2/15]
4589    
4590    If the X server returns more buttons than are allocated in the XKB
4591    device info structures, out of bounds writes could occur.
4592    
4593    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
4594    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4595    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
4596
4597commit cddc4e7e3cb4b9b7ad25f8591971a86901c249f2
4598Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4599Date:   Fri Mar 1 19:30:09 2013 -0800
4600
4601    unvalidated lengths in XAllocColorCells() [CVE-2013-1997 1/15]
4602    
4603    If a broken server returned larger than requested values for nPixels or
4604    nMasks, XAllocColorCells would happily overflow the buffers provided by
4605    the caller to write the results into.
4606    
4607    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
4608    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4609    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
4610
4611commit 2cd62b5eb99ffbb2fce99f3c459455e630b35bf7
4612Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4613Date:   Fri Mar 1 22:49:01 2013 -0800
4614
4615    integer overflow in XListHosts() [CVE-2013-1981 5/13]
4616    
4617    If the reported number of host entries is too large, the calculations
4618    to allocate memory for them may overflow, leaving us writing beyond the
4619    bounds of the allocation.
4620    
4621    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
4622    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4623    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
4624
4625commit 1f6a3dbf699b85c0ea715ef21de7e7095a714e12
4626Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4627Date:   Fri Mar 1 22:49:01 2013 -0800
4628
4629    integer overflow in XGetMotionEvents() [CVE-2013-1981 4/13]
4630    
4631    If the reported number of motion events is too large, the calculations
4632    to allocate memory for them may overflow, leaving us writing beyond the
4633    bounds of the allocation.
4634    
4635    v2: Ensure nEvents is set to 0 when returning NULL events pointer
4636    
4637    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
4638    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4639
4640commit 39515b7c3ba8cae9021bf6695e378ae19487082f
4641Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4642Date:   Fri Mar 1 22:49:01 2013 -0800
4643
4644    integer overflow in XListFontsWithInfo() [CVE-2013-1981 3/13]
4645    
4646    If the reported number of remaining fonts is too large, the calculations
4647    to allocate memory for them may overflow, leaving us writing beyond the
4648    bounds of the allocation.
4649    
4650    v2: Fix reply_left calculations, check calculated sizes fit in reply_left
4651    v3: On error cases, also set values to be returned in pointer args to 0/NULL
4652    
4653    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
4654    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4655
4656commit 5669a220816b7d58fcaf0c302ead16fbe5c87817
4657Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4658Date:   Fri Mar 1 21:05:27 2013 -0800
4659
4660    integer overflow in _XF86BigfontQueryFont() [CVE-2013-1981 2/13]
4661    
4662    Similar to _XQueryFont, but with more ways to go wrong and overflow.
4663    Only compiled if libX11 is built with XF86BigFont support.
4664    
4665    v2: Fix reply_left calculations, check calculated sizes fit in reply_left
4666    
4667    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
4668    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4669
4670commit 6df8a63d34b7514077188e2062a13774f920c085
4671Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4672Date:   Fri Mar 1 21:05:27 2013 -0800
4673
4674    integer overflow in _XQueryFont() on 32-bit platforms [CVE-2013-1981 1/13]
4675    
4676    If the CARD32 reply.nCharInfos * sizeof(XCharStruct) overflows an
4677    unsigned long, then too small of a buffer will be allocated for the
4678    data copied in from the reply.
4679    
4680    v2: Fix reply_left calculations, check calculated sizes fit in reply_left
4681    
4682    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
4683    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4684
4685commit 9f5d83706543696fc944c1835a403938c06f2cc5
4686Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4687Date:   Fri Mar 1 20:54:24 2013 -0800
4688
4689    Add _XEatDataWords to discard a given number of 32-bit words of reply data
4690    
4691    Matches the units of the length field in X protocol replies, and provides
4692    a single implementation of overflow checking to avoid having to replicate
4693    those checks in every caller.
4694    
4695    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4696    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
4697
4698commit d7f04c340ade3834e603c23d543132e1ee4e0c63
4699Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4700Date:   Sat Mar 2 13:03:55 2013 -0800
4701
4702    Move repeated #ifdef magic to find PATH_MAX into a common header
4703    
4704    Lets stop duplicating the mess all over
4705    
4706    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4707    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
4708
4709commit f3a553a4e4a55d9d19deda1ea01883e1d5d682b1
4710Author: Pander <pander@users.sourceforge.net>
4711Date:   Tue May 7 18:38:14 2013 -0400
4712
4713    Add compose sequences for J́ and j́.
4714    
4715    The resulting sequences are:
4716    
4717      U+004A LATIN CAPITAL LETTER J  U+0301 COMBINING ACUTE ACCENT
4718      U+006A LATIN SMALL LETTER J    U+0301 COMBINING ACUTE ACCENT
4719    
4720    Used in Dutch, per:
4721    
4722      http://lists.x.org/archives/xorg-devel/2013-February/035514.html
4723      https://nl.wikipedia.org/wiki/Accenttekens_in_de_Nederlandse_spelling
4724    
4725    Signed-off-by: Pander <pander@users.sourceforge.net>
4726    Signed-off-by: James Cloos <cloos@jhcloos.com>
4727
4728commit f49bb2dd6d4ea45c55bd21acc0efe2b764441020
4729Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4730Date:   Sat Mar 16 18:30:56 2013 -0700
4731
4732    Move big request comment in XOpenDisplay to the right place
4733    
4734    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4735
4736commit 3996543c1b2919e97d61a5d70fe1ebd7cd76fc83
4737Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4738Date:   Sat Mar 9 19:16:03 2013 -0800
4739
4740    libX11 1.5.99.901 (1.6 RC1)
4741    
4742    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4743
4744commit f9cd175a471116a616e681fb0ca1a61b3d84a6a0
4745Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4746Date:   Fri Mar 8 22:33:28 2013 -0800
4747
4748    Fix very weird indenting in src/GetFProp.c
4749    
4750    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4751
4752commit e9bd757630368afb374c5d1bcc5d4d85ad3c6c4c
4753Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4754Date:   Fri Mar 8 15:37:33 2013 -0800
4755
4756    XAllocClassHint: Assume calloc sets pointers in allocated memory to NULL
4757    
4758    While the C standard technically allows for the compiler to translate
4759    pointer = 0 or pointer = NULL into something other than filling the
4760    pointer address with 0 bytes, the rest of the Xlib code already assumes
4761    that calloc initializes any pointers in the struct to NULL, and there
4762    are no known systems supported by X.Org where this is not true.
4763    
4764    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4765
4766commit 39547d600a13713e15429f49768e54c3173c828d
4767Author: Karl Tomlinson <xmail@karlt.net>
4768Date:   Mon Feb 18 01:25:34 2013 +0000
4769
4770    MakeBigReq: don't move the last word, already handled by Data32
4771    
4772    MakeBigReq inserts a length field after the first 4 bytes of the request
4773    (after req->length), pushing everything else back by 4 bytes.
4774    
4775    The current memmove moves everything but the first 4 bytes back.
4776    If a request aligns to the end of the buffer pointer when MakeBigReq is
4777    invoked for that request, this runs over the buffer.
4778    Instead, we need to memmove minus the first 4 bytes (which aren't moved),
4779    minus the last 4 bytes (so we still align to the previous tail).
4780    
4781    The 4 bytes that fell out are already handled with Data32, which will
4782    handle the buffermax correctly.
4783    
4784    The case where req->length = 1 was already not functional.
4785    
4786    Reported by Abhishek Arya <inferno@chromium.org>.
4787    
4788    https://bugzilla.mozilla.org/show_bug.cgi?id=803762
4789    
4790    Reviewed-by: Jeff Muizelaar <jmuizelaar@mozilla.com>
4791    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
4792    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4793
4794commit 3cdb6c3a1646f670afa03d424ec12ac418181d1e
4795Author: Quentin Glidic <sardemff7+git@sardemff7.net>
4796Date:   Tue Jan 15 21:07:17 2013 +0000
4797
4798    nls/Makefile.am: Use LOG_COMPILER
4799    
4800    TESTS_ENVIRONMENT is deprecated
4801    
4802    Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>
4803    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4804
4805commit df66d7a98e2bc7f44fb5583b645df87d525f07f1
4806Author: Quentin Glidic <sardemff7+git@sardemff7.net>
4807Date:   Tue Jan 15 21:07:16 2013 +0000
4808
4809    nls/Makefile.am: Remove unneeded $(srcdir)
4810    
4811    Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>
4812    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
4813    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4814
4815commit 3facbe5c0df1b5597571b7b00d5f7bdbc92fb278
4816Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4817Date:   Sat Mar 2 12:01:39 2013 -0800
4818
4819    Add <X11/Xresource.h> hint to all Xrm* man pages
4820    
4821    Help users figure out which header file they need to #include
4822    
4823    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4824
4825commit 466404007f2c8f7166e4faddfea1454c5bfe1e9a
4826Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4827Date:   Fri Mar 8 17:13:09 2013 -0800
4828
4829    _xudc_code_to_glyph: check for NULL pointer *before* writing to it, not after
4830    
4831    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4832
4833commit 47d2eff64d167b3245d346d7f38ca703be645e26
4834Author: Ken Moffat <ken@linuxfromscratch.org>
4835Date:   Thu Mar 7 18:27:54 2013 -0500
4836
4837    dead_double_grave and dead_inverted_breve should only have one underscore.
4838    
4839    Correct instances of dead_double_grave and dead_inverted_breve to
4840    dead_doublegrave and dead_invertedbreve.
4841    
4842    Signed-off-by: Ken Moffat <ken@linuxfromscratch.org>
4843    Signed-off-by: James Cloos <cloos@jhcloos.com>
4844
4845commit c23d61d1b84dca3740bf4786978c7908d0065fb9
4846Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4847Date:   Fri Mar 1 18:10:27 2013 -0800
4848
4849    Assume size_t is always available, since it was defined in C89
4850    
4851    Don't provide a fallback definition #ifdef X_NOT_POSIX anymore.
4852    We already use size_t throughout the rest of Xlib, just had this
4853    one instance left in XKBGAlloc.c of a fallback definition.
4854    
4855    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4856
4857commit 9bcfd84aa1410387bc8cf002a5f90f44705aa0d1
4858Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4859Date:   Fri Mar 1 18:09:07 2013 -0800
4860
4861    unifdef XKB_IN_SERVER
4862    
4863    Leftovers from XKB files that were previously shared between the client
4864    and server code, but aren't any more.
4865    
4866    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4867    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
4868
4869commit 769a0efa2298040fe8316a89fc9e75fb61e288e5
4870Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4871Date:   Thu Feb 28 20:04:25 2013 -0800
4872
4873    unifdef CRAY & _CRAY
4874    
4875    (mostly performed with unifdef, followed by some manual cleanup of
4876     the remaining code)
4877    
4878    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4879    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
4880
4881commit ca106eb03e5f5468df8033300c5caae3d3c6936b
4882Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4883Date:   Thu Feb 28 20:04:25 2013 -0800
4884
4885    unifdef WORD64
4886    
4887    WORD64 seems to have only been defined in <X11/Xmd.h> when building for
4888    CRAY, to handle int being a 64-bit value (ILP64, not LP64) and having
4889    64-bit alignment requirements.
4890    
4891    It hadn't been fully supported even before autotooling, as can be
4892    seen by removed code such as:
4893    
4894     #ifdef WORD64
4895     _XkbWriteCopyData32 Not Implemented Yet for sizeof(int)==8
4896     #endif
4897    
4898    (mostly performed with unifdef, followed by some manual cleanup of
4899     the remaining code)
4900    
4901    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4902    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
4903
4904commit 9399caf2c12cbe1ed56f4f6b368c5811cb5d0458
4905Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4906Date:   Thu Feb 28 20:04:25 2013 -0800
4907
4908    unifdef MUSTCOPY
4909    
4910    MUSTCOPY seems to have only been defined in <X11/Xmd.h> when building for
4911    CRAY, to handle missing some sizes of integer type.
4912    
4913    (mostly performed with unifdef, followed by some manual cleanup of
4914     spacing/indenting in the remaining code)
4915    
4916    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4917    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
4918
4919commit b687440c28c7da6ee0ae44514d20248db5161606
4920Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4921Date:   Sat Feb 16 10:42:23 2013 -0800
4922
4923    Convert more sprintf calls to snprintf
4924    
4925    You could analyze most of these and quickly recognize that there was no
4926    chance of buffer overflow already, but why make everyone spend time doing
4927    that when we can just make it obviously safe?
4928    
4929    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4930
4931commit b092dabbd712d7b656abcf572d253b9b206c0237
4932Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4933Date:   Fri Feb 15 23:43:12 2013 -0800
4934
4935    XKeysymToString: move variable declarations to the scope of their usage
4936    
4937    Makes it easier for readers to understand scope of variable usage, and
4938    clears up gcc warning:
4939    
4940    KeysymStr.c: In function 'XKeysymToString':
4941    KeysymStr.c:128:13: warning: declaration of 'i' shadows a previous local [-Wshadow]
4942    KeysymStr.c:73:18: warning: shadowed declaration is here [-Wshadow]
4943    
4944    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4945
4946commit f0b171c8ea7b055ba520272ea9a2604e18841ac7
4947Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4948Date:   Fri Feb 15 23:34:40 2013 -0800
4949
4950    Preserve constness in casting arguments through the Data*() routines
4951    
4952    Casts were annoying gcc by dropping constness when changing types,
4953    when routines simply either copy data into the request buffer or
4954    send it directly to the X server, and never modify the input.
4955    
4956    Fixes gcc warnings including:
4957    ChProp.c: In function 'XChangeProperty':
4958    ChProp.c:65:6: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
4959    ChProp.c:65:6: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
4960    ChProp.c:74:6: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
4961    ChProp.c:74:6: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
4962    ChProp.c:83:6: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
4963    SetHints.c: In function 'XSetStandardProperties':
4964    SetHints.c:262:20: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
4965    SetPntMap.c: In function 'XSetPointerMapping':
4966    SetPntMap.c:46:5: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
4967    SetPntMap.c:46:5: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
4968    StBytes.c: In function 'XStoreBuffer':
4969    StBytes.c:97:33: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
4970    StName.c: In function 'XStoreName':
4971    StName.c:40:27: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
4972    StName.c: In function 'XSetIconName':
4973    StName.c:51:27: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
4974    
4975    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4976
4977commit 6c558ee357292dd9dfc6d9006f4525f625327c52
4978Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4979Date:   Fri Feb 15 22:58:54 2013 -0800
4980
4981    Fix comment typo & confusing indentation levels in Data() macro definition
4982    
4983    The final } matches the one on the #define line, not one that doesn't
4984    appear after the else statement it was lined up with
4985    
4986    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4987
4988commit afd6593da90e51234d59f8921c411317f91ab48b
4989Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4990Date:   Fri Feb 15 23:25:38 2013 -0800
4991
4992    XStringToKeysym: preserve constness when casting off unsignedness for strcmp
4993    
4994    Fixes gcc warning:
4995    StrKeysym.c:97:17: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
4996    
4997    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4998
4999commit 7e3bf4dd83fec22bd568146de75e6d59eff74e21
5000Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5001Date:   Fri Feb 15 23:14:40 2013 -0800
5002
5003    XRebindKeysym: Drop unnecessary const-removing cast
5004    
5005    C89 defines memcpy as taking a const void *, so casting from
5006    const unsigned char * to char * simply angers gcc for no benefit:
5007    
5008    KeyBind.c:1017:24: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
5009    
5010    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5011
5012commit 54527eab93d46055cf11eb6c18abb353a03ae544
5013Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5014Date:   Fri Feb 15 22:45:19 2013 -0800
5015
5016    cmsColNm.c: maintain constness of arguments to qsort helper function
5017    
5018    Fixes gcc warning:
5019    
5020    cmsColNm.c: In function 'FirstCmp':
5021    cmsColNm.c:257:20: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
5022    cmsColNm.c:257:45: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
5023    
5024    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5025
5026commit deedeada53676ee529d700bf96fde0b29a3a1def
5027Author: Nickolai Zeldovich <nickolai@csail.mit.edu>
5028Date:   Tue Jan 22 10:03:00 2013 -0500
5029
5030    XListFontsWithInfo: avoid accessing realloc'ed memory
5031    
5032    If exactly one of the two reallocs in XListFontsWithInfo() fails, the
5033    subsequent code accesses memory freed by the other realloc.
5034    
5035    Signed-off-by: Nickolai Zeldovich <nickolai@csail.mit.edu>
5036    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5037    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5038
5039commit f57fd760cba92ad846917f21e94e73e9c846185f
5040Author: Colin Walters <walters@verbum.org>
5041Date:   Wed Jan 4 17:37:06 2012 -0500
5042
5043    autogen.sh: Implement GNOME Build API
5044    
5045    http://people.gnome.org/~walters/docs/build-api.txt
5046    
5047    Signed-off-by: Adam Jackson <ajax@redhat.com>
5048
5049commit 51c102d39e855cf1704d9eb3afba76a2e73c6b81
5050Author: Adam Jackson <ajax@redhat.com>
5051Date:   Tue Jan 15 14:28:48 2013 -0500
5052
5053    configure: Remove AM_MAINTAINER_MODE
5054    
5055    Signed-off-by: Adam Jackson <ajax@redhat.com>
5056
5057commit 3cd974b1d4d1fa6389d3695fa9fcc0c22a51d50c
5058Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5059Date:   Wed Dec 26 22:57:39 2012 -0800
5060
5061    Remove unused DECnet ("DNETCONN") code from Xlib
5062    
5063    Has never been converted to build in modular builds, so has been unusable
5064    since X11R7.0 release in 2005.  DNETCONN support was removed from xtrans
5065    back in 2008.
5066    
5067    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5068
5069commit a6e5b36a3e6d4a7a9fb4bad905ed127e67b1957e
5070Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5071Date:   Wed Dec 26 22:56:38 2012 -0800
5072
5073    Remove unused TLI ("STREAMSCONN") code from Xlib
5074    
5075    Has never been converted to build in modular builds, so has been unusable
5076    since X11R7.0 release in 2005.  All known platforms with TLI/XTI support
5077    that X11R7 & later releases run on also have (and mostly prefer) BSD
5078    socket support for their networking API.
5079    
5080    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5081
5082commit 59c9ee8cd58857c5769b643611cbe526005a9e45
5083Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5084Date:   Sun Dec 16 17:44:42 2012 -0800
5085
5086    Tell clang not to report -Wpadded warnings on public headers we can't fix
5087    
5088    Better to silence the compiler warning than break ABI.
5089    
5090    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5091
5092commit 0b148750027fd0557c5ed93afda861ddf4b92e0f
5093Author: Jon TURNEY <jon.turney@dronecode.org.uk>
5094Date:   Mon Nov 12 17:27:52 2012 +0000
5095
5096    Fix config check for loadable modules
5097    
5098    The config check of the results of testing for dlfcn.h or dl.h just tests the
5099    value of the ac_cv_ variables, which will be 'yes' or 'no', rather than checking
5100    it is 'yes', so loadable module support would always be detected.
5101    
5102    This is necessary for successful compilation for the MinGW target without the
5103    optional dlfcn-win32 library.
5104    
5105    v2: Also, fixed typoed name of ac_cv_header_dlfcn_h, so check still works
5106    correctly when dlfcn.h is available
5107    
5108    Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
5109    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
5110
5111commit cd25cab4b5b957641183ce72dd1ae0424aff1663
5112Author: Egbert Eich <eich@freedesktop.org>
5113Date:   Fri May 20 18:27:02 2011 +0200
5114
5115    Install Xcms.txt in $(datadir) rather than $(libdir).
5116    
5117    This file is an architecture independent data and should be where
5118    other databases are.
5119    This is the Xlib provided sample file, applications are free to
5120    use a different one specifying its location in the XCMSDB env
5121    variable.
5122    
5123    Signed-off-by: Egbert Eich <eich@freedesktop.org>
5124    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5125
5126commit 51fef7e273b5c6256e4c9604e3e1afe5dc8f6a1a
5127Author: Egbert Eich <eich@freedesktop.org>
5128Date:   Fri May 20 18:25:24 2011 +0200
5129
5130    Don't hard code path to Xcms.txt file.
5131    
5132    The path to this file is configurable at build time. The source
5133    however contains a hard coded path.
5134    
5135    Signed-off-by: Egbert Eich <eich@freedesktop.org>
5136    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5137
5138commit 9833489e6c3829a1e835bc0a11f028fc180809e4
5139Author: Colin Walters <walters@verbum.org>
5140Date:   Fri Dec 7 08:51:21 2012 -0500
5141
5142    Fix build after dropping locales
5143    
5144    They also needed to be removed from configure.ac
5145    
5146    Signed-off-by: Colin Walters <walters@verbum.org>
5147    Signed-off-by: Julien Cristau <jcristau@debian.org>
5148
5149commit 0a740a574aaf0c0eec78859b773a532cff3b74c3
5150Author: Egbert Eich <eich@freedesktop.org>
5151Date:   Fri May 20 13:04:11 2011 +0200
5152
5153    i18n: Uppercased all occurances if 'iso8859' in the full locale name.
5154    
5155    Making all occurances of iso8859 upper case in the full local name
5156    makes the alias entries more consistent and match the entries on
5157    locale.dir.
5158    
5159    Signed-off-by: Egbert Eich <eich@freedesktop.org>
5160    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5161
5162commit 5e7d589697755a70fb22d85c6a1ae82b39843e53
5163Author: Egbert Eich <eich@freedesktop.org>
5164Date:   Fri May 20 17:55:49 2011 +0200
5165
5166    i18n: Remove ja.S90 and ja.U90 locales.
5167    
5168    Both locales carry a copyright notice and a prorietary statement:
5169    
5170    Copyright 1995 by FUJITSU LIMITED
5171    This is source code modified by FUJITSU LIMITED under the Joint
5172    Development Agreement for the CDEnext PST.
5173    This is unpublished proprietary source code of FUJITSU LIMITED
5174    
5175    Signed-off-by: Egbert Eich <eich@freedesktop.org>
5176    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5177
5178commit 99eae3dcb7bf6764e3b243d2a2934a4d1ecce90e
5179Author: Egbert Eich <eich@freedesktop.org>
5180Date:   Fri May 20 16:46:15 2011 +0200
5181
5182    i18n: Bring locale.dir and compose.dir in sync.
5183    
5184    Some entries for locale/encoding combinations were missing from
5185    either file or just misspelled, some entries were wrong or just
5186    aliases.
5187    
5188    Signed-off-by: Egbert Eich <eich@freedesktop.org>
5189    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5190
5191commit d1e6baa4e290b758e430077cb74e7c03ad850771
5192Author: Egbert Eich <eich@freedesktop.org>
5193Date:   Fri May 20 14:02:39 2011 +0200
5194
5195    i18n: Treat 'a3_AZ' as an alias for 'az_AZ'.
5196    
5197    locale.alias contains a comment:
5198    XCOMM a3 is not an ISO 639 language code, but in Cyrillic, "Z" looks like "3".
5199    Thus lets treat 'a3' as an alias for 'az'.
5200    
5201    Signed-off-by: Egbert Eich <eich@freedesktop.org>
5202    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5203    Reviewed-by: Magnus Kessler <Magnus.Kessler@gmx.net>
5204
5205commit fa2aab0bea18efa26a56977d3166277582ab7b07
5206Author: Egbert Eich <eich@freedesktop.org>
5207Date:   Fri May 20 13:09:38 2011 +0200
5208
5209    i18n: Fixed typos in full locale names.
5210    
5211    Fixing those typos those names actually match entries in
5212    locale.dir.
5213    
5214    Signed-off-by: Egbert Eich <eich@freedesktop.org>
5215    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5216
5217commit b88dd95005dce4c40f9b4d5f938f945e7955fd04
5218Author: Egbert Eich <eich@freedesktop.org>
5219Date:   Sat May 21 07:29:38 2011 +0200
5220
5221    i18n: Remove duplicates and aliases to oneself.
5222    
5223    Aliases to itself don't make much sense.
5224    This changes occurances of:
5225    xy_UV.UTF-8:                    xy_UV.UTF-8
5226    to
5227    xy_UV:                  xy_UV.UTF-8
5228    where applicable.
5229    
5230    Signed-off-by: Egbert Eich <eich@freedesktop.org>
5231    Reviewed-by: James Cloos <cloos@jhcloos.com>
5232
5233commit f198c6aa98f88ff285d903175a3c4c0fd33a4575
5234Author: Jens Herden <jens.herden@email.de>
5235Date:   Fri May 20 17:29:03 2011 +0200
5236
5237    i18n: Add support for Khmer locale and compose table.
5238    
5239    Signed-off-by: Egbert Eich <eich@freedesktop.org>
5240    Reviewed-by: James Cloos <cloos@jhcloos.com>
5241
5242commit 40761898692e5063957bfa2518cca3d35b2e354a
5243Author: Kalman Kemenczy <kkemenczy@novell.com>
5244Date:   Fri May 20 17:03:24 2011 +0200
5245
5246    i18n: Add support for Serbian specific compose table entries.
5247    
5248    Signed-off-by: Egbert Eich <eich@freedesktop.org>
5249    Reviewed-by: James Cloos <cloos@jhcloos.com>
5250
5251commit 7c14aacc9f01d7a975f8d9d033b9b13cbd777a61
5252Author: Egbert Eich <eich@freedesktop.org>
5253Date:   Fri May 20 14:00:35 2011 +0200
5254
5255    i18n: Adding and removing comments.
5256    
5257    Signed-off-by: Egbert Eich <eich@freedesktop.org>
5258    Reviewed-by: James Cloos <cloos@jhcloos.com>
5259
5260commit 7754d68976106183751243c2c35a84134be17b34
5261Author: Egbert Eich <eich@freedesktop.org>
5262Date:   Fri May 20 13:45:31 2011 +0200
5263
5264    i18n: Add missing locales which existed in locale.alias.
5265    
5266    Signed-off-by: Egbert Eich <eich@freedesktop.org>
5267    Reviewed-by: James Cloos <cloos@jhcloos.com>
5268
5269commit 952eccd0d25ba66023acfd31873eee2e71c38c42
5270Author: Egbert Eich <eich@freedesktop.org>
5271Date:   Fri May 20 10:57:57 2011 +0200
5272
5273    i18n: Consolidate compose handling for locales with UTF-8 encoding.
5274    
5275    - add an entry to include the default en_US compose file
5276      for the ja_JP, ko_KR, th_TH, zh_CN, zh_HK and zh_TW locales.
5277    - add missing entries for zh_CN. and zh_HK and am_ET.
5278    - change entries for the UTF-8 encoding for ru_RU, ja_JP,
5279      ko_KR, th_TH and zh_TW to point to their native directory
5280      entries.
5281    
5282    Signed-off-by: Egbert Eich <eich@freedesktop.org>
5283    Reviewed-by: James Cloos <cloos@jhcloos.com>
5284
5285commit d14b6a250f004fa405179db7020f6953001d17b9
5286Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
5287Date:   Mon Oct 22 13:54:11 2012 -0500
5288
5289    XIM: remove Private and Public macros
5290    
5291    Private is a struct member name in mingw-w64 <winioctl.h>, causing this
5292    useless define in a private header to break the build.
5293    
5294    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
5295    Reviewed-by: Jon TURNEY <jon.turney@dronecode.org.uk>
5296
5297commit f2a8def423a46d52e834cf7ea49fa0079427663a
5298Author: Adam Jackson <ajax@redhat.com>
5299Date:   Wed Oct 17 14:40:43 2012 -0400
5300
5301    XErrorDB: Add GLXBadProfileARB
5302    
5303    Signed-off-by: Adam Jackson <ajax@redhat.com>
5304
5305commit d45b3fc19fbe95c41afc4e51d768df6d42332010
5306Author: Ross Burton <ross.burton@intel.com>
5307Date:   Wed Sep 12 14:39:40 2012 +0100
5308
5309    Allow overriding location of keysymdef.h
5310    
5311    Currently keysymdef.h is found by using the includedir of xproto.  This doesn't
5312    work when cross-compiling with a sysroot as that ends up being /usr/include/X11,
5313    not a path into the cross-build environment.
5314    
5315    So, add an option to allow explicitly specifying the location of keysymdef.h,
5316    and verify that the specified or found path exists.
5317    
5318    (original patch by Martin Jansa <martin.jansa@gmail.com>, revised by myself)
5319    
5320    Signed-off-by: Ross Burton <ross.burton@intel.com>
5321    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
5322    Reviewed-by: Daniel Stone <daniel@fooishbar.org>
5323
5324commit 44cdc0dc2c68d67654023ec707b807145d3a38c0
5325Author: Eric S. Raymond <esr@thyrsus.com>
5326Date:   Thu Aug 23 19:15:07 2012 -0400
5327
5328    Renove some unnecessary low-level markup.
5329    
5330    Also, SYNTAX -> SYNOPSIS so function prototypes get parsed by doclifter.
5331    This appears to have been somebody's thinko, it's only in a few of the files.
5332    
5333    Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
5334
5335commit b686600ab5ca93b5750f827786e79c329ab2db4d
5336Author: Eric S. Raymond <esr@thyrsus.com>
5337Date:   Thu Aug 23 10:53:33 2012 -0400
5338
5339    The .NT/.NE macro pair is no longer used.  Remove it.
5340    
5341    Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
5342
5343commit b83f2898528c5dd683acd2a2143879a760a8dad5
5344Author: Eric S. Raymond <esr@thyrsus.com>
5345Date:   Thu Aug 23 10:42:46 2012 -0400
5346
5347    Remove the one and only use of the .NT/.NE pair.
5348    
5349    The problem with these macros is that they rely on being able to
5350    center the note label.  That doesn't play well with modern HTML,
5351    not anyway without coomplications like CSS.  This use was just a cute
5352    trick, not adding enough value to be kept.
5353
5354commit e9509fa6745d25eee01ec6f1c34edf8a806d66b3
5355Author: Eric S. Raymond <esr@thyrsus.com>
5356Date:   Thu Aug 23 10:23:45 2012 -0400
5357
5358    The .C{ and .C} macros are never used.  Remove them.
5359    
5360    Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
5361
5362commit 6b2f7ddeea6c87dbec4ddfc19b1fed33f1bb8575
5363Author: Eric S. Raymond <esr@thyrsus.com>
5364Date:   Thu Aug 23 10:08:08 2012 -0400
5365
5366    The .FN macro, paired with .FD, is also never used. Remove it.
5367    
5368    Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
5369
5370commit cac6572701c976542da562b2b277b07ffb892a6f
5371Author: Eric S. Raymond <esr@thyrsus.com>
5372Date:   Thu Aug 23 10:03:00 2012 -0400
5373
5374    The ".FD" macro is never used.  Remove it.
5375    
5376    It was a temptation to presentation-level klugery and is best gone.
5377    
5378    Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
5379
5380commit 6e27a828f39f7028bc7f4a8736e7262fca250632
5381Author: Eric S. Raymond <esr@thyrsus.com>
5382Date:   Thu Aug 23 09:54:25 2012 -0400
5383
5384    Clean up, my last commit missed four cases.
5385    
5386    Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
5387
5388commit a7fb575957ff4d9dd3671994a005ac3be8bb10fe
5389Author: Eric S. Raymond <esr@thyrsus.com>
5390Date:   Thu Aug 23 08:24:17 2012 -0400
5391
5392    Eliminate all uses of tab stops in the libX11 man pages.
5393    
5394    Two steps: First, expand tabs to 8 spaces in code and structure
5395    listings.  Second, make the .Ds used to wrap code listings switch to
5396    constant-width font (CW) rather than numeric font position 1, which
5397    maps to R on most systems.
5398    
5399    It is possible some archaic systems won't know what CW is, but the
5400    only risk is that code listings won't look quite right on troff
5401    devices; the PostScript and DVI drivers definitely grok it, so those
5402    important cases are OK.
5403    
5404    The purpose of these changes is to get rid of presentation-level
5405    markup so these pages will lift clean to DocBook.
5406    
5407    Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
5408
5409commit 8042f88ace33573f9d0dfaa21ed54ac7cef266d5
5410Author: Will Thompson <will@willthompson.co.uk>
5411Date:   Mon Jul 9 18:00:27 2012 +0100
5412
5413    Add compose sequences for "therefore" and "because".
5414    
5415    These sequences look sensible to me. I added them to the APL-related
5416    section of Mathematical Operators—they're in that section of Unicode
5417    anyway.
5418    
5419    https://bugs.freedesktop.org/show_bug.cgi?id=51922
5420    
5421    Signed-off-by: Will Thompson <will@willthompson.co.uk>
5422    Reviewed-by: Daniel Stone <daniel@fooishbar.org>
5423
5424commit 65358ea5079236b2508f787ac2fb2024a477e36d
5425Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5426Date:   Fri Jun 29 23:08:04 2012 -0700
5427
5428    Convert XCreate{Pix,Bit}map...Data to use C99 designated initializers
5429    
5430    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5431
5432commit 0dc93f7e43deb102b1f8fb7c4c4844cdce7ffd1e
5433Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5434Date:   Fri Jun 29 22:57:13 2012 -0700
5435
5436    XCreate{Pix,Bit}map...Data: Free pixmap in error path if XCreateGC fails
5437    
5438    Fixes leaks in error paths found by Parfait 1.0.0:
5439    
5440    Error: X Resource Leak
5441       Leaked X Resource pix
5442            at line 62 of CrBFData.c in function 'XCreateBitmapFromData'.
5443              pix initialized at line 60 with XCreatePixmap
5444    Error: X Resource Leak
5445       Leaked X Resource pix
5446            at line 70 of CrPFBData.c in function 'XCreatePixmapFromBitmapData'.
5447              pix initialized at line 66 with XCreatePixmap
5448    
5449    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5450    Reviewed-by: Aaron Plattner <aplattner@nvidia.com>
5451
5452commit dce84b8c39ad5a8908c29bb6de25b6c3004c1ab7
5453Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5454Date:   Wed Jun 6 13:31:16 2012 -0700
5455
5456    libX11 spec: Correct prototype for XConvertSelection
5457    
5458    selection & target parameters were accidentally run together
5459    
5460    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5461
5462commit 6c5cb2a90a6479f56855e5167039c37c234cdfe7
5463Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5464Date:   Fri Jun 1 23:37:09 2012 -0700
5465
5466    libX11 1.5.0
5467    
5468    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5469
5470commit 05c587ec3be880721131a17c1dd4366e458fdd8b
5471Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5472Date:   Sat May 26 14:37:28 2012 -0700
5473
5474    libX11 1.4.99.902 (1.5 RC2)
5475    
5476    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5477
5478commit d817834d9772e3500d5102e2eae868b04a33c31f
5479Author: Pander <pander@users.sourceforge.net>
5480Date:   Sat May 5 19:02:10 2012 +0200
5481
5482    Compose: Reassigned squences with minus and a or o
5483    
5484    Reassigned squences with minus and a or o (vice versa and lower and
5485    upper case) to conform existing series and not resulting in tilde.
5486    Also added noe missing underscore sequence.
5487    
5488    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5489
5490commit 6bfd1dca6e7cb2046ee6bf9dbbddc0af5ef7cc00
5491Author: Pander <pander@users.sourceforge.net>
5492Date:   Sat May 5 16:56:05 2012 +0200
5493
5494    Compose: Removed <slash> <U> and vice versa
5495    
5496    Combination with lower case u suffices
5497    
5498    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5499
5500commit 3a8b1637132d1e36eb5e11f52dfb284081772d14
5501Author: Pander <pander@users.sourceforge.net>
5502Date:   Sat May 5 16:44:31 2012 +0200
5503
5504    Compose: Removed <n> <minus> for n with tilde, also vice versa & for upper case
5505    
5506    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5507
5508commit fd514d7a35119dd4413b51c84f2a536f2ca501a6
5509Author: Pander <pander@users.sourceforge.net>
5510Date:   Sat May 5 16:40:20 2012 +0200
5511
5512    Compose: Removed <S> in combination with a numeral for superscript
5513    
5514    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5515
5516commit 1b5cad3ca54410c4edbca79c23c463e9e088bc0d
5517Author: Pander <pander@users.sourceforge.net>
5518Date:   Sat May 5 16:28:01 2012 +0200
5519
5520    Compose: Reassigned <o> <apostrophe> to oacute, also for upper case.
5521    
5522    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5523
5524commit 0bbc0d5e605e2a4a3eb00a229b651d4546e8aef4
5525Author: James Cloos <cloos@jhcloos.com>
5526Date:   Thu May 10 12:27:28 2012 -0400
5527
5528    Remove duplicate compose sequences from commit e51e37c118ae.
5529    
5530    The compose-check script only handles compiled Compose files, not
5531    the Compose.pre files.  One must remember to use:
5532    
5533        ./autogen.sh; make; make check
5534    
5535    when reviewing patches to the Compose.pre files....
5536    
5537    Signed-off-by: James Cloos <cloos@jhcloos.com>
5538
5539commit e51e37c118ae6cb9ced8244ce1c410677e0279ce
5540Author: Geoff Streeter <geoff@dyalog.com>
5541Date:   Thu Mar 22 15:02:00 2012 +0000
5542
5543    Add APL support to compose
5544    
5545    Signed-off-by: Geoff Streeter <geoff@dyalog.com>
5546    Signed-off-by: James Cloos <cloos@jhcloos.com>
5547
5548commit dac90324cee224df977a428afe80d960dceca769
5549Author: Julien Cristau <jcristau@debian.org>
5550Date:   Sat May 5 16:05:07 2012 +0200
5551
5552    configure: make previous change work with older autoconf
5553    
5554    autoconf 2.63 doesn't seem to like the nested AC_CHECK_DECL/FUNC.  So do
5555    the tests separately.
5556    
5557    Reported-by: Dave Airlie
5558    Signed-off-by: Julien Cristau <jcristau@debian.org>
5559
5560commit f5b50af4324186962e258ffe9be78d5ee4681982
5561Author: Julien Cristau <jcristau@debian.org>
5562Date:   Sun Apr 29 16:43:09 2012 +0200
5563
5564    configure: check if issetugid is declared
5565    
5566    GNU/kFreeBSD has issetugid in libc (for legacy apps?), but doesn't
5567    declare it anywhere, causing gcc to error out with
5568    -Werror=implicit-function-declaration.  Use AC_CHECK_DECL in addition to
5569    AC_CHECK_FUNC so we disable this code instead of failing to build it.
5570    
5571    Debian bug#669670 <http://bugs.debian.org/669670>
5572    
5573    Signed-off-by: Julien Cristau <jcristau@debian.org>
5574    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5575    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5576
5577commit 52e1b5cc3b6de76ccf4285b55652474a522ed9a8
5578Author: Peter Hutterer <peter.hutterer@who-t.net>
5579Date:   Mon Apr 30 16:36:47 2012 +1000
5580
5581    Typo fix
5582    
5583    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
5584
5585commit b64969f0e510d5d3300cf968741a3726a6409577
5586Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5587Date:   Tue Apr 17 18:12:02 2012 -0700
5588
5589    Add X11R7 sections to the libX11 & XKBlib credits to cover Docbook conversion
5590    
5591    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5592
5593commit 9ea611696f317ac3b3fb67893f1d6d87d49e3b5e
5594Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5595Date:   Tue Apr 17 18:01:36 2012 -0700
5596
5597    Add olinks from libX11 & localedb specs to ICCCM spec
5598    
5599    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5600
5601commit b3c1b8cdab7d14220426c9b997ac362dc16318fc
5602Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5603Date:   Tue Apr 17 17:49:44 2012 -0700
5604
5605    Add olinks from libX11 spec to ICCCM spec
5606    
5607    Also convert ICCCM title mentions from <emphasis> to <citetitle>
5608    
5609    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5610
5611commit ebebb65e753007ad01966dccc90bd6ca9a826488
5612Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5613Date:   Sat Apr 14 23:40:01 2012 -0700
5614
5615    libX11 AppC: Fix section headers that didn't translate from nroff properly
5616    
5617    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5618    Acked-by: Peter Hutterer <peter.hutterer@who-t.net>
5619
5620commit d5ab4ae0e74ae1fb30fb72add0751effe2759bf2
5621Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5622Date:   Sat Apr 14 23:13:05 2012 -0700
5623
5624    Add olinks from libX11 spec to x11protocol spec
5625    
5626    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5627    Acked-by: Peter Hutterer <peter.hutterer@who-t.net>
5628
5629commit 83878a0e34fffd255597300dd3e6cd43fcd645b0
5630Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5631Date:   Sat Apr 14 22:28:53 2012 -0700
5632
5633    libX11 spec: Remove .br nroff macro left behind in XGetWindowProperty prototype
5634    
5635    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5636
5637commit abc523fce31fcf2687229697a8eb656e343ecb0c
5638Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5639Date:   Thu Mar 15 22:14:45 2012 -0700
5640
5641    libX11 1.4.99.901 (1.5 RC1)
5642    
5643    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5644
5645commit b2cc5905a4a6d519957223e8ba2caef71520040c
5646Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5647Date:   Thu Mar 15 22:03:21 2012 -0700
5648
5649    Remove "register" qualifier that annoys Solaris Studio compiler
5650    
5651    Fixes warning:
5652    "Xrm.c", line 1094: warning: storage class after type is obsolescent
5653    
5654    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5655
5656commit 62d42953893f93a98db0504eaf06d650ceaf5811
5657Author: James Cloos <cloos@jhcloos.com>
5658Date:   Wed Mar 14 17:25:46 2012 -0400
5659
5660    Fix the gtk+ additions
5661    
5662    (Some of) the Dstroke and dstroke entries already were present as U011[01],
5663    even though XK_Dstroke and XK_dstroke are part of the latin2 set in keysymdef.h.
5664    
5665    The addition of <Multi_key> <o> <apostrophe> as a postfix version of
5666    <Multi_key> <apostrophe> <o> blocks the existing entries for ǻ and Ǻ.
5667    That prevents its and <Multi_key> <O> <apostrophe>’s addition.
5668    
5669    Signed-off-by: James Cloos <cloos@jhcloos.com>
5670
5671commit 91bcce48d94792f78333d2aea73961cc2e739d2e
5672Author: Pander <pander@users.sourceforge.net>
5673Date:   Wed Mar 14 12:54:53 2012 -0400
5674
5675    Complete compose key sequences for musical symbols
5676    
5677    Signed-off-by: Pander <pander@users.sourceforge.net>
5678    Signed-off-by: James Cloos <cloos@jhcloos.com>
5679
5680commit cf040016d455bc37f7665d6714337c5eafd8ea94
5681Author: Pander <pander@users.sourceforge.net>
5682Date:   Wed Mar 14 12:46:25 2012 -0400
5683
5684    Add compose sequences from gtk+ to X.Org
5685    
5686    Signed-off-by: Pander <pander@users.sourceforge.net>
5687    Signed-off-by: James Cloos <cloos@jhcloos.com>
5688
5689commit a4c591ced5cac9301b9abfa0e521be2d0b267882
5690Author: Keith Packard <keithp@keithp.com>
5691Date:   Sun Mar 4 02:00:13 2012 -0800
5692
5693    Block for other threads in _XUserLockDisplay
5694    
5695    Wait for all other threads to release the user-level lock when
5696    acquiring it. This ensures that only one thread at a time holds the
5697    user-level lock, necessary as it is a nesting lock and a single
5698    variable is used to determine when the lock is nesting and when it is
5699    contended.
5700    
5701    Signed-off-by: Keith Packard <keithp@keithp.com>
5702    Reviewed-by: Jamey Sharp <jamey@minilop.net>
5703
5704commit ed00b460acb08787b695f27b864e96102dfd4867
5705Author: Jon TURNEY <jon.turney@dronecode.org.uk>
5706Date:   Fri Oct 28 11:09:20 2011 -0500
5707
5708    Don't use caddr_t casts
5709    
5710    (caddr_t) isn't used anywhere else in xcb or libX11.
5711    Cast to (char *) for consistency.
5712    
5713    Removing this cast allows building for MinGW without patching.
5714    
5715    v2: Cast to (char *) rather than just dropping the cast
5716    
5717    Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
5718    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5719
5720commit 20adca02c2a1d0b7c95ecbe387d68f881fd57754
5721Author: Julien Cristau <jcristau@debian.org>
5722Date:   Sun Feb 19 13:27:38 2012 +0100
5723
5724    Revert "xcb: Add TCP fallback"
5725    
5726    This reverts commit f09c5299a381e2729e800a0ac43f1c0e371f65f6.
5727    
5728    The TCP fallback ended up falling back to UNIX socket connection if
5729    $DISPLAY was set to e.g. some.host:0 and the initial attempt failed.
5730    
5731    Debian bug#659558 <http://bugs.debian.org/659558>
5732    
5733    Signed-off-by: Julien Cristau <jcristau@debian.org>
5734    
5735    Conflicts:
5736    
5737            src/OpenDis.c
5738
5739commit f4378193619baa9bb973c1b5b718721bbcbe92c7
5740Author: James Cloos <cloos@jhcloos.com>
5741Date:   Wed Feb 22 14:13:20 2012 -0500
5742
5743    Make the compose sequence for ẞ work.
5744    
5745    There is no XK_Ssharp symbol for U+1E9E LATIN CAPITAL LETTER SHARP S,
5746    so use the U1e9e symbol in the Compose sequence.
5747    
5748    (Compose sequences do not work when the target symbol is unknown.)
5749    
5750    Signed-off-by: James Cloos <cloos@jhcloos.com>
5751
5752commit 2ca641c3a506dcbee97e279b67990d5387389f36
5753Author: Marko Myllynen <myllynen@redhat.com>
5754Date:   Mon Feb 20 17:04:59 2012 +0200
5755
5756    Use ezh/EZH in compose maps
5757    
5758    Related: https://bugs.freedesktop.org/show_bug.cgi?id=19687
5759    
5760    Signed-off-by: Marko Myllynen <myllynen@redhat.com>
5761    Reviewed-by: Matt Dew <marcoz@osource.org>
5762    Signed-off-by: James Cloos <cloos@jhcloos.com>
5763
5764commit 61725822f20f47684a545c1797183ee7075243ac
5765Author: Marko Myllynen <myllynen@redhat.com>
5766Date:   Sun Feb 20 17:09:43 2011 +0200
5767
5768    Provide translation from XK_permille (ad5) to Unicode (U2030)
5769    
5770    https://bugs.freedesktop.org/show_bug.cgi?id=19687
5771    
5772    Signed-off-by: Marko Myllynen <myllynen@redhat.com>
5773    Reviewed-by: Matt Dew <marcoz@osource.org>
5774    Signed-off-by: James Cloos <cloos@jhcloos.com>
5775
5776commit d2cce0abba0fa0143f49026442c8cab5ed721625
5777Author: Jeremy Huddleston <jeremyhu@apple.com>
5778Date:   Sun Feb 12 19:01:43 2012 -0800
5779
5780    nls: Use LC_CTYPE=C for sed magic
5781    
5782    Stricter versions of sed can trip up if the input does not match
5783    LC_CTYPE
5784    
5785    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
5786
5787commit f180e043f55531933bedfa6e0ff36a00a9ec07f3
5788Author: Frédéric Boiteux <fboiteux@calistel.com>
5789Date:   Wed Nov 30 12:47:31 2011 +0000
5790
5791    Compositions with the dead greek symbol
5792    
5793    FreeDesktop Bug 21475 <https://bugs.freedesktop.org/show_bug.cgi?id=21475>
5794    
5795    Signed-off-by: Frédéric Boiteux <fboiteux@calistel.com>
5796    Signed-off-by: James Cloos <cloos@jhcloos.com>
5797
5798commit d58e8f8e27790017fcfdeca0843b7318d541c189
5799Author: Ryan Pavlik <rpavlik@iastate.edu>
5800Date:   Sun Jan 1 21:04:52 2012 +0000
5801
5802    Use pthreads on MinGW also
5803    
5804    Use pthreads (provided by the pthreads-win32 compatability library which implements
5805    them using native Win32 threading) on MinGW
5806    
5807    Reviewed-by: Jon TURNEY <jon.turney@dronecode.org.uk>
5808
5809commit bf15ccb6821664746ec23d769d757edf8059007e
5810Author: Ryan Pavlik <rpavlik@iastate.edu>
5811Date:   Mon Jan 23 14:18:02 2012 +0000
5812
5813    Add XWindows.h include to Xxcbint.h
5814    
5815    This avoids some conflicting type re-definition errors which occur if
5816    we attempt to include Windows headers after Xmd.h
5817    
5818    Reviewed-by: Jon TURNEY <jon.turney@dronecode.org.uk>
5819
5820commit cadcbd376f0a5d17a71a2fe2f8ced5d93232921a
5821Author: Matt Dew <marcoz@osource.org>
5822Date:   Sat Jan 21 17:59:51 2012 -0700
5823
5824    informaltable & table cleanup
5825    
5826    On certain tables, add top and bottom borders to table header
5827    and a bottom border to the table. This matches what those
5828    tables in the old pdfs looked like.
5829    
5830    the <?dbfo keep-together='always'> prevents tables from
5831    splitting across pages. Useful for tiny tables.
5832    
5833    Converting the colwidth to a floating point, IE, 1* -> 1.0*
5834    cleans up these build errors:
5835    WARNING: table-layout="fixed" and column-width unspecified =>
5836    falling back to proportional-column-width(1)
5837    
5838    Signed-off-by: Matt Dew <marcoz@osource.org>
5839
5840commit bb551f654df8f647c867f79252241964521e689e
5841Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5842Date:   Wed Dec 28 21:22:41 2011 -0800
5843
5844    Add more Xkb man pages to the See Also lists for core keyboard functions
5845    
5846    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5847    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
5848
5849commit b7bb23fe7c8b8a17128e5bc98a05f68595190438
5850Author: Gaetan Nadon <nadon@memsize.(none)>
5851Date:   Fri Dec 30 17:08:14 2011 -0500
5852
5853    docbook.am: embed css styles inside the HTML HEAD element
5854    
5855    Rather than referring to the external xorg.css stylesheet, embed the content
5856    of the file in the html output produced. This is accomplished by using
5857    version 1.10 of xorg-xhtml.xsl.
5858    
5859    This makes the whole html docs tree much more relocatable.
5860    In addition, it eliminates xorg.css as a runtime file which makes
5861    xorg-sgml-doctools a build time only package.
5862    
5863    Signed-off-by: Gaetan Nadon <nadon@memsize.(none)>
5864
5865commit 70505468b7c4a7068cc39be42e421dcee34ec595
5866Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5867Date:   Tue Dec 13 19:58:30 2011 -0800
5868
5869    makekeys: move buf declaration from global to main to silence gcc -Wshadow
5870    
5871    The global was only referenced in the main() function, which passes it
5872    as an argument of the same name to the parse_line() function, leading
5873    to gcc -Wshadow warnings:
5874    
5875    makekeys.c: In function ‘parse_line’:
5876    makekeys.c:58:24: warning: declaration of ‘buf’ shadows a global declaration
5877    makekeys.c:54:13: warning: shadowed declaration is here
5878    
5879    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5880
5881commit 87e10a7b9a97c951ab4d477f61177779ac0a6a66
5882Author: Kusanagi Kouichi <slash@ac.auone-net.jp>
5883Date:   Wed Dec 14 02:17:55 2011 -0500
5884
5885    XQueryColors: Split a request into multiple requests if necessary
5886    
5887    https://bugs.freedesktop.org/show_bug.cgi?id=9160
5888    
5889    Signed-off-by: Kusanagi Kouichi <slash@ac.auone-net.jp>
5890    Signed-off-by: James Cloos <cloos@jhcloos.com>
5891
5892commit d3b3570592e9b9e57f270a0bd86762fd205a2833
5893Author: Andreas Wettstein <wettstein509@solnet.ch>
5894Date:   Tue Nov 8 20:18:09 2011 +0000
5895
5896    XIM: Allow modifier releases in compose sequences (#26705)
5897    
5898    Currently, only non-modifier keys (actually, keysyms) can be part of a compose
5899    sequence, and they are matched against the defined compose sequences at the
5900    time the key is pressed.  The patch allows to use modifier keys an well, but
5901    matches them on key release, and only if no other key has been pressed after
5902    the modifier.
5903    
5904    Releasing a non-matched modifier during an ongoing compose sequence only aborts
5905    the sequence if any modifier release would have matched.  In particular, if no
5906    compose sequences with modifiers are specified, the compose mechanism works
5907    exactly as without this patch.
5908    
5909    Even if modifiers are part of a compose sequence, they are not filtered.  This
5910    is because modifiers affect the keyboard state no matter what we do here and,
5911    therefore, filtering them only could confuse clients.
5912    
5913    The purpose is this extension to the compose mechanism is to allow to make
5914    better use of keys in convenient reach for touch typing.
5915    
5916    Signed-off-by: Andreas Wettstein <wettstein509@solnet.ch>
5917    Signed-off-by: James Cloos <cloos@jhcloos.com>
5918
5919commit 56448a626fc90bcf75a1fa2f4c294b0eb1f23bd6
5920Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5921Date:   Tue Nov 29 23:56:57 2011 -0800
5922
5923    Reject negative string counts in copy_string_list
5924    
5925    Silences parfait warning of a potential memory leak:
5926       Memory leak of pointer 'dst' allocated with malloc(length)
5927            at line 160 of FSWrap.c in function 'copy_string_list'.
5928              'dst' allocated at line 145 with malloc(length).
5929              dst leaks when count <= 0 at line 154.
5930    
5931    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5932
5933commit bf2d7c8c6d70539c72560b1921e18df2610acf29
5934Author: Peter Hutterer <peter.hutterer@who-t.net>
5935Date:   Fri Nov 11 14:56:36 2011 +1000
5936
5937    libX11 1.4.99.1
5938    
5939    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
5940
5941commit 24283d40b1e4314c6647dda49d2a159833341a8b
5942Author: Derek Buitenhuis <derek.buitenhuis@gmail.com>
5943Date:   Thu Sep 22 18:44:13 2011 -0400
5944
5945    makekeys: Fix build/target word size mismatch when cross-compiling
5946    
5947    Since makekeys is built using build environment's gcc and
5948    runs natively, we have to make sure that the size of the
5949    Signature type is the same on both the native environment
5950    and the target, otherwise we get mismatches upon running X,
5951    and some LSB test failures (xts5).
5952    
5953    Use an unsigned 32-bit integer on all platforms. Also,
5954    eliminate the redundant multiple typedefs for the
5955    Signature type.
5956    
5957    Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
5958    Reviewed-by: Daniel Stone <daniel@fooishbar.org>
5959
5960commit 1c41f3b9b86b5eeedfa3bff92e519d45aa097587
5961Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5962Date:   Wed Nov 9 21:00:36 2011 -0800
5963
5964    XlcSL.c: convert old-style function definitions to ANSI C89 style
5965    
5966    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5967
5968commit f6dad6aaa384bf836baa28ccb72b476a85c40eff
5969Author: Peter Hutterer <peter.hutterer@who-t.net>
5970Date:   Thu Oct 27 13:53:22 2011 +1000
5971
5972    Use GetReqSized for GetReq and GetReqExtra
5973    
5974    GetEmptyReq and GetResReq cannot do this due to the final typecast -
5975    typically requests that need either of those do not have their own typedef
5976    in the protocol headers.
5977    
5978    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
5979    Reviewed-by: Jamey Sharp <jamey@minilop.net>
5980
5981commit c9c99058b9d98789c0b2d7e78a23443c2b57a047
5982Author: Peter Hutterer <peter.hutterer@who-t.net>
5983Date:   Fri Oct 14 14:51:06 2011 +1000
5984
5985    include: Add GetReqSized() for request buffers of specific size
5986    
5987    Some XI2 requests change in size over different versions and libXi would
5988    need to hack around GetReq and GetReqExtra. Add a new GetReqSized so the
5989    library can explicitly specify the size of the request in 4-byte units.
5990    
5991    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
5992    Reviewed-by: Jamey Sharp <jamey@minilop.net>
5993
5994commit ba8a7a19165e30d14bc165f43f67c19b6a115585
5995Author: Peter Hutterer <peter.hutterer@who-t.net>
5996Date:   Thu Oct 27 13:24:10 2011 +1000
5997
5998    Switch GetEmptyReq and GetResReq to call _XGetRequest
5999    
6000    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
6001    Reviewed-by: Jamey Sharp <jamey@minilop.net>
6002
6003commit 4a060f993bf676cf21ad9784e010f54134da7b40
6004Author: Peter Hutterer <peter.hutterer@who-t.net>
6005Date:   Mon Oct 17 09:45:15 2011 +1000
6006
6007    Add _XGetRequest as substitute for GetReq/GetReqExtra
6008    
6009    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
6010    Reviewed-by: Jamey Sharp <jamey@minilop.net>
6011
6012commit d8956520deb79c1cbb5e974c175bf8493859b22b
6013Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6014Date:   Fri Oct 14 17:53:00 2011 -0700
6015
6016    Fix "nomal" -> "normal" typo in several comments
6017    
6018    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6019
6020commit 002b36e308a26a152504f9b40aa08a0dce9a7991
6021Author: Xue Wei <Wei.Xue@Sun.COM>
6022Date:   Fri Oct 14 17:39:21 2011 -0700
6023
6024    mbtocs should not truncate input
6025    
6026    Fixes pasting more than 1024 bytes into xterm, as described in
6027    https://bugs.freedesktop.org/show_bug.cgi?id=25209
6028    
6029    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6030
6031commit 9b8d8c9e5b27273e8856a3851ba9b68022bed3cd
6032Author: Marko Myllynen <myllynen@redhat.com>
6033Date:   Mon Oct 10 09:41:13 2011 +0300
6034
6035    Add new compose sequences
6036    
6037    This patch adds few new compose sequences to the en_US map, ligatures
6038    common in typesetting and sequences already in use in the fi_FI map.
6039    
6040    https://bugs.freedesktop.org/show_bug.cgi?id=30621
6041    https://bugs.freedesktop.org/show_bug.cgi?id=34523
6042    
6043    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
6044
6045commit 738f7b867341c1da87ee667d48815822715c3e75
6046Author: Choe Hwanjin <choe.hwanjin@gmail.com>
6047Date:   Thu Oct 13 07:58:02 2011 +0900
6048
6049    XIM: Make Xim handle NEED_SYNC_REPLY flag
6050    
6051    NEED_SYNC_REPLY flag should be in Xim not in Xic.
6052    Because the focused Xic can be changed before sending sync reply.
6053    After focused Xic changed, the new Xic doesn't have NEED_SYNC_REPLY
6054    flag enabled, so libX11 doesn't send XIM_SYNC_REPLY packet.
6055    
6056    This patch adds sync reply flag to Xim and removes sync reply
6057    from Xic.
6058    
6059    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=7869
6060    
6061    Signed-off-by: Choe Hwanjin <choe.hwanjin@gmail.com>
6062    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
6063
6064commit 50e15379331c436851abb194251cde96999e67b3
6065Author: Bodo Graumann <mail@bodograumann.de>
6066Date:   Mon Oct 10 16:40:52 2011 +0200
6067
6068    libX11: Fixing modifier key range in Xutil.h (Bug #21910)
6069    
6070    IsModifierKey, defined in include/X11/Xutil.h, is a macro determining,
6071    which keys are regarded as modifiers. The constants ISO_Level5_Shift,
6072    ISO_Level5_Latch and ISO_Level5_Lock where excluded previously, leaving
6073    some Neo2 modifiers functionless in combination with compose.
6074    This patch adjusts the range to include the correct, full range of
6075    modifier constants.
6076    
6077    Neo2 Bug 277 <http://wiki.neo-layout.org/ticket/277>
6078    
6079    X.Org Bug 21910 <http://bugs.freedesktop.org/show_bug.cgi?id=21910>
6080    
6081    Signed-off-by: Bodo Graumann <mail@bodograumann.de>
6082    Reviewed-by: Daniel Stone <daniel@fooishbar.org>
6083
6084commit b5a108624331fabf393223c0891914cc54d4caf4
6085Author: Yann Droneaud <yann@droneaud.fr>
6086Date:   Tue Oct 11 17:27:59 2011 +0200
6087
6088    Return name instead of False in XSetICValues()
6089    
6090    In case of error, XSetICValues() must return the first argument
6091    that failed to be set.
6092    
6093    But in some error paths, it returns False, which is converted to NULL,
6094    so the function returns OK in case of error.
6095    
6096    Signed-off-by: Yann Droneaud <yann@droneaud.fr>
6097    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
6098
6099commit 10992cb8dc5e4d938e7e5a633b68a81b5875f3ba
6100Author: Yann Droneaud <yann@droneaud.fr>
6101Date:   Sun Oct 9 17:56:45 2011 +0200
6102
6103    Return name instead of value in XGetIMValues() and XSetIMValues()
6104    
6105    As stated in man page (XOpenIM) and Xlib documentation (chapter 13.5.3),
6106    XGetIMValues() and XSetImValues() "returns the name of the first argument
6107    that could not be obtained."
6108    
6109    But currently,
6110    
6111      err = XGetIMValues(im, "invalid", &arg, NULL);
6112    
6113    returns &arg instead of "invalid".
6114    
6115    This patch fixes https://bugs.freedesktop.org/show_bug.cgi?id=12897
6116    
6117    Signed-off-by: Yann Droneaud <yann@droneaud.fr>
6118    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
6119
6120commit f2651e03f3295a453a2965c3749bc8b6e66f1c09
6121Author: Jeremy Huddleston <jeremyhu@apple.com>
6122Date:   Mon Oct 10 14:09:17 2011 -0700
6123
6124    Mark XKeycodeToKeysym as _X_DEPRECATED
6125    
6126    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
6127
6128commit 25d7bb9c705623ebbb3afba3b86d0ded5b6bb4fb
6129Author: Jeremy Huddleston <jeremyhu@apple.com>
6130Date:   Sun Oct 9 02:38:28 2011 -0700
6131
6132    Fix nobreakspace for pt_BR.UTF-8
6133    
6134    https://bugs.freedesktop.org/show_bug.cgi?id=31334
6135    
6136    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
6137
6138commit 913603660c17ec59a4d39d3e3b9d60469ee5c060
6139Author: Jeremy Huddleston <jeremyhu@apple.com>
6140Date:   Sun Oct 9 02:26:45 2011 -0700
6141
6142    Fix potential uninitialized variable access in _XimMakeICAttrIDList
6143    
6144    Found by clang static analysis
6145    
6146    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
6147
6148commit 566ceaf5a92c721ac7155528e4d0d2e5cbef023f
6149Author: Jeremy Huddleston <jeremyhu@apple.com>
6150Date:   Sun Oct 9 02:25:50 2011 -0700
6151
6152    Remove self-resolving aliases
6153    
6154    https://bugs.freedesktop.org/show_bug.cgi?id=30112
6155    
6156    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
6157
6158commit 22ba43d198dcca86c88eb15a56fc7d8fc47c422e
6159Author: Matt Dew <marcoz@osource.org>
6160Date:   Fri Oct 7 22:52:30 2011 -0600
6161
6162    Cleanup IDs and links in doc
6163    
6164    1 - fix the capitalization of the ID attributes to match either the
6165         <title> or <funcdef> string it goes with.
6166    2 - fix any <linkend>'s that were affected by 1.
6167    3 - any <function> in the docs that has an actual funcdef,
6168    will become an olink.
6169    
6170    Signed-off-by: Matt Dew <marcoz@osource.org>
6171
6172commit f858f3326adbc0c5711669b92a64a84a9083a055
6173Author: James Cloos <cloos@jhcloos.com>
6174Date:   Tue Oct 4 17:11:11 2011 -0400
6175
6176    [nls] Fix typo/synco.
6177    
6178    The iso8859-1 Compose table includes an optional section which uses
6179    Ctrl<T> as a substitute for <Multi_key>.  In that section the sequence
6180    to generate an @ (at) either was incorrectly copied from the Multi_key
6181    section or was not kept in sync with the Multi_key section.
6182    
6183    Fixing this eliminates the warning from compose-check.pl:
6184    
6185    ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
6186    ┃ Clash with existing sequence in iso8859-1/Compose.pre
6187    ┃  on line 661: Ctrl<T> <A> <A>
6188    ┃    line #661: Ctrl<T> <A> <A>         : "\305"        Aring
6189    ┃    line #480: Ctrl<T> <A> <A>         : "@"   at
6190    ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
6191    
6192    Signed-off-by: James Cloos <cloos@jhcloos.com>
6193
6194commit 7f35f7efc23234b3f8529fee31a802c21846d9ab
6195Author: Jeremy Huddleston <jeremyhu@apple.com>
6196Date:   Mon Sep 26 11:32:56 2011 -0700
6197
6198    Remove conflicting compose sequences for cent and colon
6199    
6200    Regression from 4d78ad4bf6dcabca9bb5f84c770abfbb02d3f7a4
6201    Found by tinderbox
6202    
6203    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
6204
6205commit 4d78ad4bf6dcabca9bb5f84c770abfbb02d3f7a4
6206Author: Jeremy Huddleston <jeremyhu@apple.com>
6207Date:   Sun Sep 25 16:29:17 2011 -0700
6208
6209    Add additional compose sequences for pound sterling, yen, and cent (mixed case)
6210    
6211    https://bugs.freedesktop.org/show_bug.cgi?id=1013
6212    
6213    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
6214    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
6215
6216commit 0ca4153a373e2af7a9eb3cef003393ab332bc79e
6217Author: Jeremy Huddleston <jeremyhu@apple.com>
6218Date:   Sat Sep 24 16:44:04 2011 -0700
6219
6220    Use a configure check for seteuid
6221    
6222    HP-UX doesn't have seteuid
6223    
6224    https://bugs.freedesktop.org/show_bug.cgi?id=1497
6225    
6226    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
6227
6228commit 79594b4d66344f248eb4314ecb78eb81f632c3ab
6229Author: Gaetan Nadon <memsize@videotron.ca>
6230Date:   Tue Sep 20 16:06:10 2011 -0400
6231
6232    localedb specs: use <copyright> for first holder of multi license
6233    
6234    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6235
6236commit 154430268cf004b06920edde2f1812dc16d71fae
6237Author: Gaetan Nadon <memsize@videotron.ca>
6238Date:   Tue Sep 20 16:01:52 2011 -0400
6239
6240    libX11 specs: use <copyright> for first holder of multi license
6241    
6242    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6243
6244commit 66e621f58dee804acb795ff2c79ce6dd38b34a3f
6245Author: Tollef Fog Heen <tfheen@err.no>
6246Date:   Tue Sep 20 13:07:37 2011 -0400
6247
6248    NLS: Add more vulgar fractions
6249    
6250    Add 1/7, 1/9, 1/10 and 0/3 vulgar fractions.
6251    
6252    Signed-off-by: Tollef Fog Heen <tfheen@err.no>
6253    Signed-off-by: James Cloos <cloos@jhcloos.com>
6254
6255commit e37a6da814b5653be46000a9a76902729660a2e6
6256Author: Alexander Polakov <polachok@gmail.com>
6257Date:   Sat Sep 17 20:54:58 2011 +0400
6258
6259    XGrabKey manual page: change XAllowAccess to XAllowEvents in See Also
6260    
6261    There is no XAllowAccess man page to see.
6262    
6263    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6264    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6265
6266commit a23f3323f269b33a43d16dce01395cd28bc41b45
6267Author: Gaetan Nadon <memsize@videotron.ca>
6268Date:   Mon Sep 19 15:27:44 2011 -0400
6269
6270    XKB: provide adequate quotes for the license text
6271    
6272    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6273
6274commit a9c7a5cad91d968f5536ef8fc735036e921832a3
6275Author: Gaetan Nadon <memsize@videotron.ca>
6276Date:   Mon Sep 19 15:18:53 2011 -0400
6277
6278    XIM: refactor the multi licensing legal text
6279    
6280    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6281
6282commit c46f934ed89e7de79746a0387c9f998d91994ea6
6283Author: Gaetan Nadon <memsize@videotron.ca>
6284Date:   Mon Sep 19 10:33:30 2011 -0400
6285
6286    xim trans: restore Fujitsu copyright legal text
6287    
6288    Somehow lost during docbook conversion. text from x.org ftp R7.5.
6289    
6290    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6291
6292commit 3d75f993382bfdc89d31668d7dfc71c91222e0d7
6293Author: Gaetan Nadon <memsize@videotron.ca>
6294Date:   Mon Sep 19 10:11:46 2011 -0400
6295
6296    xtrans: restore X Consortium original legal text
6297    
6298    Asking X Consortium permission to use The Open Group name makes no sense.
6299    Even more so in 1994 before X Window System was passed on to the Open Group.
6300    
6301    Using original text from xorg-docs/general/License
6302    
6303    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6304
6305commit 136a381585a4a9686c11bad1a6130837978e677f
6306Author: Gaetan Nadon <memsize@videotron.ca>
6307Date:   Mon Sep 19 10:03:21 2011 -0400
6308
6309    Framework: restore X Consortium copyright
6310    
6311    Somewhat dammaged during docbook conversion.
6312    Also restore pasrt of the original license text
6313    
6314    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6315
6316commit 33f346878406762704a0c13cdc018111c666f3c1
6317Author: Gaetan Nadon <memsize@videotron.ca>
6318Date:   Mon Sep 19 09:50:00 2011 -0400
6319
6320    localedb: restore X Consortium original legal text
6321    
6322    Asking X Consortium permission to use The Open Group name makes no sense.
6323    Even more so in 1994 before X Window System was passed on to the Open Group.
6324    
6325    Using original text from xorg-docs/general/License
6326    
6327    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6328
6329commit e99c9338e413efca026210b9d830efb5c74d34e5
6330Author: Gaetan Nadon <memsize@videotron.ca>
6331Date:   Mon Sep 19 08:23:18 2011 -0400
6332
6333    specs: support multi licensed copyright notice and license text
6334    
6335    For documentation having multiple licenses, the copyright and legalnotice
6336    elements sequence cannot instantiated multiple times.
6337    The copyright notice and license text are therefore coded inside a
6338    legalnotice element. The role attribute on the paragraph is used to allow
6339    styling of the copyright notice text which should not be italicized.
6340    
6341    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6342
6343commit b9dedc757e667333ce899115d618f25cdaa4dd5e
6344Author: Gaetan Nadon <memsize@videotron.ca>
6345Date:   Mon Sep 19 08:17:50 2011 -0400
6346
6347    localedb: add release info to spec
6348    
6349    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6350
6351commit 4519c89a87ddce01e599542737a27c26030fe4ff
6352Author: Gaetan Nadon <memsize@videotron.ca>
6353Date:   Mon Sep 19 08:05:32 2011 -0400
6354
6355    specs: fix The Open Group license text
6356    
6357    The warranty referred to the X Consortium
6358    
6359    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6360
6361commit 08ac378423e7be72e340197ba5559a1a36f1783c
6362Author: Gaetan Nadon <memsize@videotron.ca>
6363Date:   Mon Sep 19 08:03:39 2011 -0400
6364
6365    specs: The strandard name is still "X Consortium Standard"
6366    
6367    This spec, and fsproto spec, are the only two docs with a different
6368    standard name.
6369    
6370    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6371
6372commit 8dfbeb1b1b1e8aa17f69d0a373155419a5f6a172
6373Author: Gaetan Nadon <memsize@videotron.ca>
6374Date:   Sun Sep 18 13:22:34 2011 -0400
6375
6376    specs: support multi licensed copyright notice and license text
6377    
6378    For documentation having multiple licenses, the copyright and legalnotice
6379    elements sequence cannot instantiated multiple times.
6380    The copyright notice and license text are therefore coded inside a legalnotice
6381    element. The role attribute on the paragraph is used to allow styling of the
6382    copyright notice text which should not be italicized.
6383    
6384    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6385
6386commit 278ca8947c1dabb2b819527dca0fa6190c034f67
6387Author: Gaetan Nadon <memsize@videotron.ca>
6388Date:   Fri Sep 16 11:45:56 2011 -0400
6389
6390    docs: merge copyright holder under the same copyright notice
6391    
6392    As per the docbook markup dtd.
6393    
6394    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6395
6396commit 7ff012bb433109a622ac122ade71669e842ebdcf
6397Author: Gaetan Nadon <memsize@videotron.ca>
6398Date:   Fri Sep 16 10:09:57 2011 -0400
6399
6400    specs: handle multiple sets of copyright notice/license/warranty
6401    
6402    Docbook groups all the <copyright> elements together and all the
6403    <legalnotice> elements together.
6404    
6405    We cannot have a sequence:
6406    <copyright> <legalnotice> <copyright> <legalnotice> [...]
6407    
6408    A workaround, which was done in some documents, is to put the copyright
6409    notice inside the legalnotice in plain text without the <copyright> element.
6410    A formal paragraph title is added here which makes the copyright notice bold,
6411    and makes it much easier to locate.
6412    
6413    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6414    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6415
6416commit 4a550c71b8221c37b1a9378d5a170da9eaa03405
6417Author: Gaetan Nadon <memsize@videotron.ca>
6418Date:   Wed Sep 14 15:55:42 2011 -0400
6419
6420    specs: remove orphan affiliation.
6421    
6422    Authors affiliation are correct.
6423    
6424    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6425
6426commit 0cc02a6df65214560b7575e89cebee741d6d2469
6427Author: Gaetan Nadon <memsize@videotron.ca>
6428Date:   Tue Sep 13 17:39:02 2011 -0400
6429
6430    specs: use appropriate markup for Copyright statements
6431    
6432    Also move <releaseinfo> to match order of appearance
6433    
6434    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6435
6436commit afe13e19ebf0fc4e3460644164433af016f0add7
6437Author: Gaetan Nadon <memsize@videotron.ca>
6438Date:   Mon Sep 12 16:54:45 2011 -0400
6439
6440    docs: use the &fullrelvers; entity to set X11 release information
6441    
6442    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6443
6444commit 22a2153282db13e9d94881022b8c979539841a2c
6445Author: Gaetan Nadon <memsize@videotron.ca>
6446Date:   Sun Sep 11 19:49:53 2011 -0400
6447
6448    docs: remove <productnumber> which is not used by default
6449    
6450    This element is not rendered by default on the title. A template
6451    customization is required to display it.
6452    X Window System does not have a product number.
6453    
6454    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6455
6456commit 719f16570d9fcfd15247813ee51fa51ac8a6ff4c
6457Author: Gaetan Nadon <memsize@videotron.ca>
6458Date:   Sun Sep 11 17:40:21 2011 -0400
6459
6460    docs: use the &fullrelvers; entity to set X11 release information
6461    
6462    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6463
6464commit a6b2992f50b571d612ea9ade631c432c3099bc12
6465Author: Gaetan Nadon <memsize@videotron.ca>
6466Date:   Sun Sep 11 17:38:42 2011 -0400
6467
6468    docs: remove orphan <affiliation>
6469    
6470    Somehow created during the conversion from roff. Unable to locate
6471    the author to which it belongs.
6472    
6473    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6474
6475commit c7420060b6e47b8467ba50c796ec3c1bab090bc7
6476Author: Gaetan Nadon <memsize@videotron.ca>
6477Date:   Sun Sep 11 17:38:05 2011 -0400
6478
6479    docs: remove <productnumber> which is not used by default
6480    
6481    This element is not rendered by default on the title. A template
6482    customization is required to display it.
6483    X Window System does not have a product number.
6484    
6485    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6486
6487commit 7d5b718c1edbc43c54b7001be548e515a49540ea
6488Author: Gaetan Nadon <memsize@videotron.ca>
6489Date:   Fri Sep 9 14:46:39 2011 -0400
6490
6491    docbook.am: embed css styles inside the HTML HEAD element
6492    
6493    Rather than referring to the external xorg.css stylesheet, embed the content
6494    of the file in the html output produced. This is accomplished by using
6495    version 1.10 of xorg-xhtml.xsl.
6496    
6497    This makes the whole html docs tree much more relocatable.
6498    In addition, it eliminates xorg.css as a runtime file which makes
6499    xorg-sgml-doctools a build time only package.
6500    
6501    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6502
6503commit 24632d280491c465dfe208ef788815890892e326
6504Author: Gaetan Nadon <memsize@videotron.ca>
6505Date:   Mon Sep 5 12:53:12 2011 -0400
6506
6507    compose: upgrade makefile to support olinking on chunked html
6508    
6509    The essential differences over the regular docbook.am are:
6510    Adding root.filename parameter for naming of chapters html files.
6511    Using xhtml xmlto format and xorg-chunk.xsl stylesheet
6512    Set olink.base.uri for pdf but not for chunked html
6513    Olink is not applicable to ps and txt formats.
6514    
6515    Html chapters are added to shelf_DATA as they are also installed.
6516    The xml is generated from a perl script and not distributed.
6517    
6518    Requires version 1.10 of xorg-sgml-doctools.
6519    
6520    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6521
6522commit 93ab0a1c9a4f9094cf0c8e1c686130673e681798
6523Author: Gaetan Nadon <memsize@videotron.ca>
6524Date:   Wed Aug 31 19:46:20 2011 -0400
6525
6526    docbook.am: refactor common flags for xmlto and xsltproc
6527    
6528    Maximize reuse and reduce risk of setting the wrong flag
6529    at the wrong place.
6530    
6531    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6532
6533commit 85b725aa9ef76aeb5e94d42e0cd60f896da7ab97
6534Author: Gaetan Nadon <memsize@videotron.ca>
6535Date:   Wed Aug 31 10:46:59 2011 -0400
6536
6537    docbook.am: add search path for local entities
6538    
6539    Currently, only $(XORG_SGML_PATH)/X11 is searched for xml entities.
6540    A module may want to add entities that apply only to itself and
6541    not to all modules, like the xserver does.
6542    
6543    This feature may or may not be used in this module, but all modules
6544    share a copy of docbook.am.
6545    
6546    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6547
6548commit b5ed2d368d47f244d43d2513329fa2758bc4ef54
6549Author: Gaetan Nadon <memsize@videotron.ca>
6550Date:   Thu Aug 25 14:39:20 2011 -0400
6551
6552    docbook.am: explicitly list xmlto flags for each target
6553    
6554    Normal evolution of make targets make it impractical to factor out
6555    common command flags for xmlto.
6556    
6557    The targets now list each command option as its presence or absence
6558    needs to be justified.
6559    
6560    xorg.ss is only needed by xmlto for html.
6561    masterdb is only needed by xmlto.
6562    img.src.path must not be used by html.
6563    xsltproc need to use customization layer xorg-*.xsl.
6564    txt format is not required to search masterdb.
6565    
6566    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6567
6568commit d5b3605f3b0639452e892e9ff3afb18bb7442069
6569Author: Gaetan Nadon <memsize@videotron.ca>
6570Date:   Thu Aug 25 13:12:49 2011 -0400
6571
6572    docbook.am: do not generate docs if docbook customization layer is missing
6573    
6574    The stylesheets used to be only about style, fonts or colors.
6575    Complex features are now used like olink and chunked html which
6576    may cause a build break when stylesheets are missing or lead to hard
6577    to find problem.
6578    
6579    Some modules may be built when stylesheets are present while others
6580    are built without. There is no requirement to build crippled docs.
6581    
6582    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6583
6584commit 7f23c72c94d9d14122426b0d8c66054f1402769a
6585Author: Gaetan Nadon <memsize@videotron.ca>
6586Date:   Fri Aug 5 14:33:32 2011 -0400
6587
6588    libX11 specs: review doclifter generated tables
6589    
6590    Many tables had a questionnable layout and some had information dropped.
6591    Each table was cross-referenced with a pre-docbook version
6592    to ensure semantic integrity.
6593    
6594    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6595
6596commit 1efdbeb8cd08f443188ac783cbab6ba0654a66d6
6597Author: Gaetan Nadon <memsize@videotron.ca>
6598Date:   Wed Jul 20 15:28:47 2011 -0400
6599
6600    credits.xml: remove toc from Acknowledgments
6601    
6602    There should be no toc for a simple preface with only one
6603    Acknowledgments section.
6604    
6605    Use <simplesect> markup rather than sect1.
6606    
6607    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6608
6609commit 77cc17ed0817c1df3ac5feb9dc83a5ba5d021a4b
6610Author: Gaetan Nadon <memsize@videotron.ca>
6611Date:   Thu Aug 4 19:59:37 2011 -0400
6612
6613    libX11 specs: move </para> above <varaiablelist>
6614    
6615    Many, but not all, function synopsis have a paragraph that
6616    nests the variable list. The code was generated by doclifter
6617    and there is no apprent reasons as to why it was done this way.
6618    Found while investigating a spacing issue.
6619    
6620    Before the patch:
6621    <para>Some blurb about the function
6622    <funcsynopsis>
6623    </funcsynopsis>
6624    <variablelist>
6625    </variablelist>
6626    </para>
6627    
6628    After the patch:
6629    <para>Some blurb about the function</para>
6630    <funcsynopsis>
6631    </funcsynopsis>
6632    <variablelist>
6633    </variablelist>
6634    
6635    There are no noticable differences when reading the doc
6636    other than than the removed few pixels of spacing between
6637    the function sysnopsis and the variable list block.
6638    
6639    In some cases, there are no "blurb about the fucntion"
6640    and the empty paragraph is removed.
6641    
6642    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6643
6644commit 18595f0d8f95ff1c12e7b9f73bd4b30dda5c7168
6645Author: Gaetan Nadon <memsize@videotron.ca>
6646Date:   Thu Jul 28 19:46:14 2011 -0400
6647
6648    compose specs: generate chunked html
6649    
6650    For large 600 page documents such as this one, chunked html
6651    provide faster browser load time and better navigation.
6652    
6653    Simply click on the locale of your choice in the toc and
6654    the browser loads just that one file. Being a DocBook,
6655    it benefits from all of the usual features and can be
6656    integrated with the rest of the documentation.
6657    
6658    Acked-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6659    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6660
6661commit 5cc8815b8a117cf0b6af37e7d55c5a420d9fff57
6662Author: Gaetan Nadon <memsize@videotron.ca>
6663Date:   Thu Jun 23 15:16:47 2011 -0400
6664
6665    specs: build compose keys tables in specs/i18n/compose
6666    
6667    Build the tables article together with the rest of the specs.
6668    Make it transparent that the source in generated in nls.
6669    Reuse docbook.am and get all the features such as olink.
6670    
6671    The docbook article file stem and id must be the same. The new name
6672    for the main article is libX11-keys. The new installation location
6673    is $docdir/libX11/i18n/compose.
6674    
6675    The nls dir retains the role of generating the DocBook/XML source
6676    but does not build neither installs output formats or generated source.
6677    
6678    The tables article now has to specify that each included locale
6679    section is a dependency. It did not matter before as they were web links.
6680    
6681    The xorg-sgml-doctools masterdb shall be updated to include this new doc.
6682    Install location moved from doc/libX11/Compose to doc/libX11/i18n/compose.
6683    
6684    Acked-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6685    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6686
6687commit adebbe3856b4aee39c0c7af902c1dea847dd6d7c
6688Author: Gaetan Nadon <memsize@videotron.ca>
6689Date:   Thu Jun 23 14:43:31 2011 -0400
6690
6691    nls: restructure charts as a single article with sections
6692    
6693    Looks more like a real article with a toc rather than individual
6694    web pages. Looks nicer in pdf.
6695    
6696    Each locale is a "section" rather than an "article".
6697    Using XInclude to aggregate xml source files gets you the toc for free.
6698    
6699    The single document is over 600 pages while there were 62 separate
6700    documents previously. FOP version 1.0 is required to handle missing
6701    character like capital sharp s.
6702    
6703    Acked-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6704    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6705
6706commit fc74dc12b1ff3c43e240e1a713316ce1bf525d61
6707Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6708Date:   Thu Jul 28 19:32:40 2011 -0700
6709
6710    libX11 1.4.4
6711    
6712    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6713
6714commit ab1f30231755d99ed123af6873b981834640f01d
6715Author: Matt Dew <marcoz@osource.org>
6716Date:   Wed Jul 13 12:33:40 2011 -0600
6717
6718    Add id attributes to error codes to allow linking from other docs.
6719    
6720    Signed-off-by: Matt Dew <marcoz@osource.org>
6721    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6722    Acked-by: Gaetan Nadon <memsize@videotron.ca>
6723
6724commit 5c831fef402914ccf2ec14005c25be48852f119b
6725Author: David Coppa <dcoppa@gmail.com>
6726Date:   Tue Jul 12 10:05:47 2011 +0200
6727
6728    Fix libpthread linkage on OpenBSD.
6729    
6730    OpenBSD prefers to use the -pthread to fetch pthread libs when needed.
6731    
6732    Signed-off-by: Matthieu Herrb <matthieu.herrb@laas.fr>
6733    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6734
6735commit 445b0b3efc04a74fc77cd3e483b25cfb5da82f12
6736Author: Gaetan Nadon <memsize@videotron.ca>
6737Date:   Wed Jun 22 20:46:26 2011 -0400
6738
6739    config: use XORG_WITH_PERL macro to replace custom program check
6740    
6741    New in version util-macros 1.15, the macro does the usual checking
6742    for program path and provides an interface for makefile variables.
6743    
6744    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6745    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6746
6747commit 47d99a324db9232029a22dd523e3bc3ed0936aca
6748Author: Gaetan Nadon <memsize@videotron.ca>
6749Date:   Wed Jun 22 20:41:18 2011 -0400
6750
6751    config: update XORG_WITH_FOP macro usage
6752    
6753    A new feature to test for a minimum version has been added.
6754    
6755    The parameter position changed. Due to limited usage
6756    and requiring 1.15, it turns out to be backward compatible.
6757    
6758    There is no functional change to how docs are build.
6759    
6760    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6761
6762commit e659683ad51ecc26c989fbdefdfe20f83af2c5a5
6763Author: Gaetan Nadon <memsize@videotron.ca>
6764Date:   Wed Jun 22 11:48:49 2011 -0400
6765
6766    Remove unused xmlrules.in in specs, now in /nls
6767    
6768    The specs dir has been converted to docbook.am
6769    
6770    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6771
6772commit 9992092609bd83a0db778e9a9ac1e879d445e637
6773Author: Gaetan Nadon <memsize@videotron.ca>
6774Date:   Thu Mar 31 10:23:22 2011 -0400
6775
6776    nls: move xmlrules.in from specs to nls
6777    
6778    It is no longer used in the specs dir.
6779    Remove html from CLEANFILES as it breaks. Make do not clean directories
6780    Remove SUFFIXES as pattern rules are used rather than suffix rules.
6781    
6782    Other improvements are possible, the first priority is to move it out
6783    of the specs dir.
6784    
6785    Acked-by: Peter Hutterer <peter.hutterer@who-t.net>
6786    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6787
6788commit b370eeb0191b0e2a8bde2f03a442a8ca62e35d58
6789Author: Gaetan Nadon <memsize@videotron.ca>
6790Date:   Sun Jun 5 16:27:36 2011 -0400
6791
6792    Install target dbs alongside generated documents
6793    
6794    This matches a change in xorg-sgml-docs whereby the masterdb will look for
6795    the target dbs into the same location as the generated documents.
6796    
6797    The target dbs are now installed alongside the generated documents.
6798    Previously they are installed in $prefix/sgml/X11/dbs alongside masterdb which
6799    has the potential of installing outside the package prefix and cause
6800    distcheck to fail when user does not have write permission in this package.
6801    
6802    Requires XORG_CHECK_SGML_DOCTOOLS(1.8) which was released 2011-06-11
6803
6804commit 4e741654b7e0a283779b8b4af5bb32e05b7fc678
6805Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6806Date:   Tue Jun 7 18:41:30 2011 -0700
6807
6808    specs/libX11: Turn appendix references into links
6809    
6810    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6811
6812commit a3d1152bc4b300f59ea2f08925739aab1ebfbc4e
6813Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6814Date:   Tue Jun 7 18:37:41 2011 -0700
6815
6816    specs/libX11: Turn chapter references into links
6817    
6818    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6819
6820commit d0cc949dfe44a41a71f19e4fe6c7547bb3d9bdbe
6821Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6822Date:   Tue Jun 7 00:52:32 2011 -0700
6823
6824    specs/libX11: Turn many "see section ..." into links
6825    
6826    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6827
6828commit 02d4c08dead2f266809b3f93ec72377783423ac7
6829Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6830Date:   Sun Jun 5 22:50:37 2011 -0700
6831
6832    specs/libX11: Convert some header filenames to filename tags
6833    
6834    perl -i -p -e 's{^&lt;(.*\.h)&gt;\ *}{<filename class="headerfile">&lt;\1&gt;</filename>}' *.xml
6835    
6836    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6837
6838commit c51a011329afa6e5b9d2b285349c132683ecf9fb
6839Author: Matt Dew <marcoz@osource.org>
6840Date:   Tue May 31 20:03:23 2011 -0600
6841
6842    Add id attributes to funcsynopsis to allow other docs to olink to them.
6843    
6844    Signed-off-by: Matt Dew <marcoz@osource.org>
6845    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6846    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
6847
6848commit 6841260c8bb15404a0b4805bee3b0bdfec7176b3
6849Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6850Date:   Fri May 27 20:14:36 2011 -0700
6851
6852    Bug 37624 - parameter x is missing from synopsis of XDrawString in libX11.html
6853    
6854    https://bugs.freedesktop.org/show_bug.cgi?id=37624
6855    
6856    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6857
6858commit 205af6a4e557c62a6395feadc1c89f4a9fe1713b
6859Author: Matt Dew <marcoz@osource.org>
6860Date:   Sat May 21 00:23:06 2011 -0600
6861
6862    Add id's to functions, to make clickable links.
6863    
6864    Signed-off-by: Matt Dew <marcoz@osource.org>
6865    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
6866
6867commit 5c06bc594473f6ab234724cd90db32e7b57fe811
6868Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6869Date:   Fri May 20 15:38:08 2011 -0700
6870
6871    libX11 spec: fix monospaced column alignment after deligaturization
6872    
6873    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6874
6875commit ef0019c714c273cb9b4ad3eba52d0b905109826b
6876Author: James Cloos <cloos@jhcloos.com>
6877Date:   Fri May 20 15:51:46 2011 -0400
6878
6879    Expand latin ligatures out to their NFKC equivalents.
6880    
6881    Ligatures should be done by the typesetting system.
6882    Manuscripts should not bother with them.
6883    
6884    Signed-off-by: James Cloos <cloos@jhcloos.com>
6885    Reviewed-by: Keith Packard <keithp@keithp.com>
6886
6887commit 761b8aa0c9b3c58c478ac5ea1b3aaafadcfc1325
6888Author: Daniel Stone <daniel@fooishbar.org>
6889Date:   Thu May 12 16:21:50 2011 +0200
6890
6891    XCB: Add more friendly error messages for common asserts
6892    
6893    This patch adds more friendly error messages for three common classes of
6894    assertion:
6895        - missed sequence numbers due to being griefed by another thread
6896        - unknown requests in queue due to being griefed by another thread
6897        - extensions dequeuing too much or too little reply data
6898    
6899    It adds error messages offering advice (e.g. call XInitThreads() first)
6900    on stderr, but still generates actual assertions.  Hopefully this means
6901    it's a little more Googleable and a little less frightening.
6902    
6903    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
6904    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
6905
6906commit 159bf292477048b9a2f074735afc516f52c93d80
6907Author: Gaetan Nadon <memsize@videotron.ca>
6908Date:   Thu May 19 20:22:11 2011 -0400
6909
6910    Remove misplaced hyphens in libX11 DocBook/XML #37364
6911    
6912    Reported-by: Christopher Yeleighton <giecrilj@stegny.2a.pl>
6913    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
6914    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6915    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6916
6917commit 0ee6d8247d397500ae183ef180b6ff21bceefa1c
6918Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6919Date:   Tue May 17 20:49:59 2011 -0700
6920
6921    Fix man page and comment references to use XFreeModifiermap (lowercase map)
6922    
6923    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6924
6925commit 3275ec4ca8790d571b6a1902367ca5f68a2dc5fd
6926Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6927Date:   Tue May 17 20:30:54 2011 -0700
6928
6929    XKB man pages: Fix coordinantes typo in multiple pages
6930    
6931    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6932
6933commit ca33a80606cd68e4572fa49ed6aaa1d1fc31a47f
6934Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6935Date:   Tue May 17 16:27:32 2011 -0700
6936
6937    DisplayOfCCC.man: Fix typo "ClientWhitePointOfCC" -> "ClientWhitePointOfCCC"
6938    
6939    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6940
6941commit ae39d82b01359b07dd1fe092d867f79ea95a5438
6942Author: Jeremy Huddleston <jeremyhu@apple.com>
6943Date:   Sun May 8 09:08:07 2011 -0700
6944
6945    Silence clang static analysis warnings for SetReqLen
6946    
6947    This provides a simplified version of the SetReqLen macro when using clang for
6948    static analysis.  Prior to this change, we would see many Idempotent operation
6949    warnings inside this macro due to the common case of calling with arg2 and
6950    arg3 being the same variable.  This has no effect on code produced during
6951    compilation, but it silences a number of false positives in static analysis.
6952    
6953    XIPassiveGrab.c:170:5: warning: Assigned value is always the same as the existing value
6954        SetReqLen(req, num_modifiers, num_modifiers);
6955        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
6956    In file included from XIPassiveGrab.c:26:
6957    .../include/X11/Xlibint.h:580:8: note: instantiated from:
6958                n = badlen; \
6959                  ^
6960    
6961    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
6962
6963commit 130af2bc02090ee2526adb2f9803fc07019b8f1f
6964Author: Jeremy Huddleston <jeremyhu@apple.com>
6965Date:   Wed May 4 15:34:31 2011 -0700
6966
6967    XKB: XkbComputeSectionBounds: Check correct bounds in default switch-case
6968    
6969    XKBGeom.c:191:25: warning: Access to field 'x1' results in a dereference of a null pointer (loaded from variable 'rbounds')
6970            _XkbCheckBounds(bounds,rbounds->x1,rbounds->y1);
6971                                   ^~~~~~~
6972    
6973    Found-by: clang static analyzer
6974    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
6975    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
6976
6977commit c987ef04bea345d5810e60cf6c53b747ddbe910e
6978Author: Jeremy Huddleston <jeremyhu@apple.com>
6979Date:   Wed May 4 15:31:17 2011 -0700
6980
6981    Revert "XKB: Avoid a possible NULL dereference"
6982    
6983    Sorry for the noise.  I accidentally pushed and didn't mean to. =(
6984    
6985    This reverts commit 4024091678ea07e0d898b798df9b29f3bf68eb08.
6986
6987commit 46d04bc4e7ff6c86385002c929d8eb0310f737a8
6988Author: Jeremy Huddleston <jeremyhu@apple.com>
6989Date:   Wed May 4 11:35:31 2011 -0700
6990
6991    Dead code removal
6992    
6993    XKBGeom.c:118:27: warning: Assigned value is always the same as the existing value
6994        for (key=row->keys,pos=k=0;k<row->num_keys;k++,key++) {
6995                           ~~~^~~~
6996    XKBGeom.c:115:5: warning: Value stored to 'pos' is never read
6997        pos= 0;
6998        ^    ~
6999    
7000    Found-by: clang static analyzer
7001    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
7002
7003commit 4024091678ea07e0d898b798df9b29f3bf68eb08
7004Author: Jeremy Huddleston <jeremyhu@apple.com>
7005Date:   Wed May 4 11:34:53 2011 -0700
7006
7007    XKB: Avoid a possible NULL dereference
7008    
7009    XKBGeom.c:191:25: warning: Access to field 'x1' results in a dereference of a null pointer (loaded from variable 'rbounds')
7010            _XkbCheckBounds(bounds,rbounds->x1,rbounds->y1);
7011                                   ^~~~~~~
7012    
7013    Found-by: clang static analyzer
7014    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
7015
7016commit 626e5e34be55b7cf734d745bd40a7ee3359029f8
7017Author: Jeremy Huddleston <jeremyhu@apple.com>
7018Date:   Wed May 4 11:21:41 2011 -0700
7019
7020    Annotate _XIOError as _X_NORETURN
7021    
7022    Found-by: clang static analyzer
7023    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
7024
7025commit d3d7896408b435ab42656398839ff4351a37724d
7026Author: Jeremy Huddleston <jeremyhu@apple.com>
7027Date:   Tue May 3 09:32:53 2011 -0700
7028
7029    clang analyzer: Don't warn about Xmalloc(0)
7030    
7031    This will prevent a number of false positives in where clang's
7032    static analysis reports about calls to malloc(0).
7033    
7034    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
7035
7036commit 393921cf2188b2b0713cc157effaf17d0abab783
7037Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7038Date:   Thu Apr 21 16:21:04 2011 -0700
7039
7040    Delete special case code to append "/sparcv9" to i18n module path
7041    
7042    Was triggered by defined(__sparcv9) so only built on Solaris SPARC 64-bit.
7043    Inconsistent with all other platforms, and a bit overcomplicated.
7044    
7045    Should anyone need to continue using that path, simply build with
7046    a #define POSTLOCALELIBDIR "sparcv9" to get the same result.
7047    
7048    Fixes Solaris bug 7038737:
7049     sparcv9 Xlib looking in wrong path for i18n loadable modules
7050    
7051    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7052    Reviewed-by: Daniel Stone <daniel@fooishbar.org>
7053
7054commit b9ff9cfd5c56ae6d52c6503f7019756d9de29557
7055Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7056Date:   Thu Apr 14 13:47:12 2011 -0700
7057
7058    specs/libX11: Fix XOpenDisplay() prototype in chapter 2 [bug 36244]
7059    
7060    Was incorrectly showing AllPlanes() instead when describing XOpenDisplay()
7061    
7062    https://bugs.freedesktop.org/show_bug.cgi?id=36244
7063    
7064    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7065
7066commit b850adbdebcf500c659f85285d4d7374e15857f5
7067Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7068Date:   Tue Apr 12 22:30:45 2011 -0700
7069
7070    Convert malloc(strlen()); strcpy() sets to strdup
7071    
7072    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7073    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
7074
7075commit 09194042d3dc44a463add1f7c122a68ffd5ef0bf
7076Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7077Date:   Tue Apr 12 21:27:45 2011 -0700
7078
7079    Replace Xmalloc+bzero pairs with Xcalloc calls
7080    
7081    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7082    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
7083
7084commit ac1e2bff7121987fd768500a11d428d9fb9447c5
7085Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7086Date:   Fri Mar 25 14:47:35 2011 +0200
7087
7088    om: Fix memory leaks on get_font_name error paths.
7089    
7090    While at it, remove unneeded check for NULL before Xfree.
7091    
7092    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7093    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7094
7095commit 7c362e275c93c92b4e68fe862e73ee36665de703
7096Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7097Date:   Wed Mar 30 15:06:10 2011 +0300
7098
7099    xcms: Fix memory leaks on LINEAR_RGB_InitSCCData error path.
7100    
7101    pScreenData is replaced when building per visual intensity tables. If
7102    malloc failed the old value of pScreenData (stored also in
7103    pScreenDefaultData) was being leaked. Also, property_return wasn't
7104    free'd in that case.
7105    
7106    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7107    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7108
7109commit 5c810e2ac233e00f361549bafb9b59e8a9e05eff
7110Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7111Date:   Wed Mar 30 15:19:28 2011 +0300
7112
7113    xcms: Fix error on LINEAR_RGB_InitSCCData error path.
7114    
7115    Due to what looks like a copy & paste error, pScreenData->pBlueTbl would
7116    be accessed after being free'd.
7117    
7118    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7119    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7120
7121commit d749948f9492fd9b61c74655a08e32c595e0e3a5
7122Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7123Date:   Fri Mar 25 16:06:15 2011 +0200
7124
7125    om: Fix potential memory leak in init_om.
7126    
7127    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7128    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7129
7130commit d0749d6abdf0fd4d8b4e59b02dad8ccda3f10995
7131Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7132Date:   Thu Mar 24 20:40:41 2011 +0200
7133
7134    om: Fix memory leak on read_EncodingInfo error path.
7135    
7136    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7137    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7138
7139commit 4b2e8d00f5b6969c14003ee8eb258b9f0e4dd7c3
7140Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7141Date:   Thu Mar 24 19:55:33 2011 +0200
7142
7143    Fix memory leaks on _XimCbDispatch error path.
7144    
7145    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7146    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7147
7148commit 46e6c78b1a89e4774e0f7e0f4d6d0fd060c3897e
7149Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7150Date:   Thu Mar 24 19:52:05 2011 +0200
7151
7152    Fix memory leak on _XimCommitRecv error path.
7153    
7154    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7155    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7156
7157commit 0ace642a2d47265f01450bfa2b2fd48eb6956a83
7158Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7159Date:   Thu Mar 24 19:48:44 2011 +0200
7160
7161    Fix memory leaks on _XimWriteCachedDefaultTree error paths.
7162    
7163    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7164    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7165
7166commit e29be94edbb58b3b8dab545377a710d1f73b61e0
7167Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7168Date:   Thu Mar 24 19:42:36 2011 +0200
7169
7170    Fix memory leaks on _XimGetAttributeID error paths.
7171    
7172    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7173    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7174
7175commit d144a50512466766f55ce61e3884925334b08f0d
7176Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7177Date:   Thu Mar 24 19:36:56 2011 +0200
7178
7179    Fix memory leaks on _XimProtoCreateIC error paths.
7180    
7181    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7182    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7183
7184commit 6a452f7a98499508f753cb8a7c3f08bcbec736b9
7185Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7186Date:   Thu Mar 24 16:24:29 2011 +0200
7187
7188    Fix leaks in _XimEncodingNegotiation error paths.
7189    
7190    name_ptr and detail_ptr weren't free'd in some cases before returning
7191    False.
7192    
7193    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7194    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7195
7196commit 396e5a452a59c1f121220ba72167b720a863b30f
7197Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7198Date:   Thu Mar 24 14:17:44 2011 +0200
7199
7200    FSWrap: fix potential leak in copy_string_list
7201    
7202    If list_count is 0, dst would be allocated and leaked.
7203    
7204    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7205    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7206
7207commit 1a944260182bb552b954d69f6355c2760d4415df
7208Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7209Date:   Wed Mar 23 14:36:22 2011 +0200
7210
7211    Fix memory leak with broken bitmap files in XReadBitmapFileData
7212    
7213    Bitmap file data is read looping through the lines in the input file. If
7214    there is extra data after the bitmap, these lines will be processed and
7215    if this data represents another bitmap it will replace the one read
7216    before causing the memory allocated for bits to leak.
7217    
7218    This changes the code to stop processing the file once a bitmap was
7219    read.
7220    
7221    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7222    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7223
7224commit c1c91e9a221a0e762d96cc12a3f189d6e59f4865
7225Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7226Date:   Tue Apr 12 20:50:42 2011 -0700
7227
7228    Fix "attrinute" typo in comments in ximcp
7229    
7230    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7231
7232commit 7103b83a88edb9c93acfa68f3b556595b087baff
7233Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7234Date:   Fri Apr 8 21:36:11 2011 -0700
7235
7236    Make doc install subdirectories more like the pre-docbook.am paths
7237    
7238    Haven't restored the "specs" path in the install path, but have restored
7239    libX11 & i18n subdirectories in the path for better logical grouping.
7240    
7241    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7242    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
7243
7244commit 9a1ae7a90f815a737a942e42d5eb1ffff400977b
7245Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7246Date:   Fri Apr 8 13:24:28 2011 -0700
7247
7248    Install xml versions of specs even if HAVE_XMLTO is false
7249    
7250    Moves HAVE_XMLTO check into docbook.am, more closely matches behaviour
7251    from before docbook.am changes (commit e8c76407d2f6e3)
7252    
7253    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7254    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
7255
7256commit a0ad0d5c99023bb9a8ce3944dbc3267f5265721e
7257Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7258Date:   Tue Apr 5 13:29:04 2011 -0700
7259
7260    libX11 1.4.3
7261    
7262    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7263
7264commit e8c76407d2f6e3b11babdb84426e43e780c859c3
7265Author: Gaetan Nadon <memsize@videotron.ca>
7266Date:   Fri Feb 25 09:23:54 2011 -0500
7267
7268    Documentation: add Docbook external references support
7269    
7270    When writing technical documentation, it is often necessary to cross
7271    reference to other information. When that other information is not in the
7272    current document, additional support is needed, namely <olink>.
7273    
7274    A new feature with version 1.7 of xorg-sgml-doctools adds references to
7275    other documents within or outside this package.
7276    
7277    This patch adds technical support for this feature but does not change
7278    the content of the documentation as seen by the end user.
7279    
7280    Each book or article must generate a database containing the href
7281    of sections that can be referred to from another document. This database
7282    is installed in DATAROOTDIR/sgml/X11/dbs. There is a requirement that
7283    the value of DATAROOTDIR for xorg-sgml-doctools and for the package
7284    documentation is the same. This forms a virtual document tree.
7285    
7286    This database is consulted by other documents while they are being generated
7287    in order to fulfill the missing information for linking.
7288    Refer to the xorg-sgml-doctools for further technical information.
7289    
7290    Co-authored-by: Matt Dew <marcoz@osource.org>
7291    
7292    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
7293
7294commit 25eb76b3d2726f2f1de759901971ae53b2539dc4
7295Author: Harshula Jayasuriya <harshula@gmail.com>
7296Date:   Mon Mar 21 14:49:37 2011 +0000
7297
7298    Add #define XK_SINHALA
7299    
7300    Add #define XK_SINHALA so that the Sinhala keysyms can be used by
7301    the lk xkb keymap.
7302    
7303    Signed-off-by: Harshula Jayasuriya <harshula@gmail.com>
7304    Reviewed-by: Daniel Stone <daniel@fooishbar.org>
7305
7306commit db8b20b789112717ac0590b40f0b4dc2171797d0
7307Author: Jeremy Huddleston <jeremyhu@apple.com>
7308Date:   Thu Mar 17 16:15:00 2011 -0700
7309
7310    configure.ac: Bump version to 1.4.2
7311    
7312    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
7313
7314commit 83e1ba59c48c79f8b0a7e7aa0b9c9cfd84fa403d
7315Author: Jamey Sharp <jamey@minilop.net>
7316Date:   Tue Mar 15 16:48:07 2011 -0700
7317
7318    Call _XErrorFunction without holding the Display lock.
7319    
7320    Historically, Xlib dropped the Display lock around the upcall to any
7321    user-supplied _XErrorFunction, but somewhere along the way I quit doing
7322    that if you built with XCB. The reasons are lost somewhere in the
7323    pre-git history of Xlib/XCB, and I can't now see any reason to hold the
7324    lock.
7325    
7326    The documentation for XSetErrorHandler still applies though:
7327    
7328        Because this condition is not assumed to be fatal, it is acceptable
7329        for your error handler to return; the returned value is ignored.
7330        However, the error handler should not call any functions (directly
7331        or indirectly) on the display that will generate protocol requests
7332        or that will look for input events.
7333    
7334    So while you are now once again permitted to re-enter Xlib from the
7335    error handler, you're only allowed to call non-protocol functions.
7336    
7337    Signed-off-by: Jamey Sharp <jamey@minilop.net>
7338
7339commit fd85aca7a616c595fc17b2520f84316a11e8906f
7340Author: Jamey Sharp <jamey@minilop.net>
7341Date:   Mon Mar 14 14:45:35 2011 -0700
7342
7343    Ignore user locks after sleeping in _XReply and _XReadEvents.
7344    
7345    This bug appears as a hang in applications that wait for replies from
7346    multiple threads, where one such thread has taken a user lock using
7347    XLockDisplay.
7348    
7349    Prior to this fix, the code could deadlock in this way: If thread 1 goes
7350    to sleep waiting for a reply, and then thread 2 takes a user lock and
7351    waits for a reply, then thread 2 will wait for thread 1 to process its
7352    reply (because responses must be processed in order), but thread 1 will
7353    wait for thread 2 to drop its user lock.
7354    
7355    Fixed by making thread 1 not wait for thread 2 to drop its user lock.
7356    This makes the semantics of user locks hard to define, but they were
7357    already hard to define. The new behavior appears to be consistent with
7358    the way Xlib worked historically, anyway.
7359    
7360    Fixes: http://lists.freedesktop.org/archives/xcb/2011-March/006802.html
7361    
7362    There was a similar potential for deadlock in _XReadEvents, fixed the
7363    same way, with the same caveats about user-lock semantics.
7364    
7365    Signed-off-by: Jamey Sharp <jamey@minilop.net>
7366
7367commit 690f8bffd48a4e7e74298360ddd0431dc95dcd3f
7368Author: Erkki Seppälä <erkki.seppala@vincit.fi>
7369Date:   Tue Jan 18 15:58:20 2011 +0200
7370
7371    xkb: XkbPropertyPtr determined allocation success from wrong variables
7372    
7373    Cannot reach dead statement "return NULL;"
7374    
7375    Check for the NULLness of prop->name and prop->value instead of
7376    name and value, which was checked earlier anyway. Decided against
7377    using strdup due to curious memory allocation functions and the
7378    rest of the xkb not using it either.
7379    
7380    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
7381    Reviewed-by: Alan Coopersmith <alan.coopersmith at oracle.com>
7382
7383commit 6a4d027284e7bb5dd458157947bbb1ff580ad071
7384Author: Erkki Seppälä <erkki.seppala@vincit.fi>
7385Date:   Mon Jan 10 16:37:22 2011 +0200
7386
7387    keyBind: Use Xcalloc to initialize allocated _XKeytrans
7388    
7389    Using uninitialized value "p->modifiers"
7390    
7391    Small fix by using Xcalloc instead of Xmalloc
7392    
7393    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
7394    Reviewed-by: Alan Coopersmith <alan.coopersmith at oracle.com>
7395
7396commit b993d73bb3214ecc24646f5427c8003b816c6921
7397Author: Erkki Seppälä <erkki.seppala@vincit.fi>
7398Date:   Mon Jan 10 16:22:45 2011 +0200
7399
7400    im/ximcp: release modifiermap before returning
7401    
7402    Variable "map" goes out of scope
7403    
7404    Release modifiermap before returning. Reordered code to call
7405    XGetModifierMapping after the first return from the function.
7406    
7407    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
7408    Reviewed-by: Dirk Wallenstein <halsmit@t-online.de>
7409
7410commit 807a7fc0354f2212dfa5ff1f9e4ede56d8e69ef4
7411Author: Gaetan Nadon <memsize@videotron.ca>
7412Date:   Fri Feb 25 09:23:54 2011 -0500
7413
7414    Docbook: change the book id to match the xml file basename
7415    
7416    This is required for the up-coming external references support.
7417    
7418    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
7419
7420commit 40812b53ff5fe548f6eaf43ba4c8781cb43dab43
7421Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
7422Date:   Mon Feb 21 21:54:17 2011 +0100
7423
7424    Make the Local XIM request key releases for braille
7425    
7426    Braille chords management needs key release events. We need to explicitly
7427    request then, else GTK would not pass them throught XFilterEvent and braille
7428    wouldn't work.
7429    
7430    Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
7431
7432commit c97c42c49cd5095462abecdf908b416fb0b540b6
7433Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
7434Date:   Mon Feb 21 17:27:38 2011 +0100
7435
7436    Match braille patterns with compose tree
7437    
7438    Braille patterns should also be usable in Compose.  This combines the
7439    implementation of braille chords and compose tree: only emit the braille
7440    pattern if it can not be found in the compose tree, if any.
7441    
7442    Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
7443
7444commit 0c6ca565d7c8a47ef3ea823569a9ca5298a5307d
7445Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
7446Date:   Mon Feb 21 15:56:54 2011 +0100
7447
7448    Fix status reporting for braille patterns
7449    
7450    _XimLocalMbLookupString can return a braille keysym even if _Xlcwctomb can't
7451    convert to the current MB charset.
7452    _XimLocalUtf8LookupString needs to set the braille keysym and status too.
7453    
7454    Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
7455
7456commit 993abe751f4141f54d8d28b8b73588a1c9085970
7457Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7458Date:   Fri Feb 11 14:49:17 2011 -0800
7459
7460    Clean up memory when first XCreateRegion succeeds and second fails
7461    
7462    Error: Memory leak (CWE 401)
7463       Memory leak of pointer 's' allocated with XCreateRegion()
7464            at line 387 of /export/alanc/X.Org/sx86-gcc/lib/libX11/src/Region.c in function 'XShrinkRegion'.
7465              's' allocated at line 387 with XCreateRegion().
7466              s leaks when s != 0 at line 387.
7467    Error: Memory leak (CWE 401)
7468       Memory leak of pointer 'tra' allocated with XCreateRegion()
7469            at line 1452 of /export/alanc/X.Org/sx86-gcc/lib/libX11/src/Region.c in function 'XXorRegion'.
7470              'tra' allocated at line 1451 with XCreateRegion().
7471              tra leaks when tra != 0 at line 1451.
7472    
7473    [ This bug was found by the Parfait 0.3.6 bug checking tool.
7474      For more information see http://labs.oracle.com/projects/parfait/ ]
7475    
7476    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7477
7478commit 6ac417cea1136a3617f5e40f4b106aaa3f48d6c2
7479Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7480Date:   Fri Feb 11 14:20:24 2011 -0800
7481
7482    ximcp: Prevent memory leak & double free if multiple %L in string
7483    
7484    In the highly unlikely event that TransFileName was passed a path
7485    containing multiple %L entries, for each entry it would call
7486    _XlcFileName, leaking the previous results, and then for each entry it
7487    would copy from that pointer and free it, resulting in invalid pointers
7488    & possible double frees for each use after the first one freed it.
7489    
7490    Error: Use after free (CWE 416)
7491       Use after free of pointer 'lcCompose'
7492            at line 358 of modules/im/ximcp/imLcPrs.c in function 'TransFileName'.
7493              Previously freed at line 360 with free.
7494    Error: Use after free (CWE 416)
7495       Use after free of pointer 'lcCompose'
7496            at line 359 of modules/im/ximcp/imLcPrs.c in function 'TransFileName'.
7497              Previously freed at line 360 with free.
7498    Error: Double free (CWE 415)
7499       Double free of pointer 'lcCompose'
7500            at line 360 of modules/im/ximcp/imLcPrs.c in function 'TransFileName'.
7501              Previously freed at line 360 with free.
7502    
7503    [ This bug was found by the Parfait 0.3.6 bug checking tool.
7504      For more information see http://labs.oracle.com/projects/parfait/ ]
7505    
7506    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7507
7508commit 502d414118c97d35a44f8e295709682022876331
7509Author: Erkki Seppälä <erkki.seppala@vincit.fi>
7510Date:   Thu Feb 3 17:08:57 2011 +0200
7511
7512    xcms/cmsProp: don't deal with uninitialized values, fail instead
7513    
7514    Properly handle the return value of XGetWindowProperty by considering
7515    if after the loop as well.
7516    
7517    Using freed pointer "prop_ret"
7518    
7519    There were numerous things wrong in how this function interacted with
7520    XGetWindowProperty.
7521    
7522    None of the local variables were initialized and remained that way if
7523    the call to XGetWindowProperty returned 1 (not Succeed). That doesn't
7524    result in after_ret being initialized in which case if it happens to
7525    be 0, the loop was exited. In that case format_ret and nitems_ret were
7526    uninitialized and the function might return with success (but with
7527    uninitialized pointer in prop_ret) or XcmsFailure.
7528    
7529    As the buffer enlarging code was called only when XGetWindowProperty
7530    failed (returned not Success), after_ret would not have been
7531    initialized. It would have been initialized only if the
7532    XGetWindowProperty has returned Success earlier, but in that case the
7533    code fragment would not have been reached.
7534    
7535    This patch alters the function to return XcmsFailure if the call to
7536    XGetWindowProperty fails.
7537    
7538    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7539    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7540    Reviewed-by: Rami Ylimäki <rami.ylimaki@vincit.fi>
7541    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
7542
7543commit c37e278993b9e5b3d7025ef4c434373a011996ec
7544Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7545Date:   Mon Jan 31 14:02:07 2011 +0200
7546
7547    xcms/LRGB: don't double-free property_return
7548    
7549    property_return was free'd before and in the case the conditional is true,
7550    the call to XcmsGetProperty failed which means that property_return wasn't
7551    set so there is no need to free it again.
7552    
7553    Double free of pointer "property_return" in call to "free"
7554    
7555    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7556    Reviewed-by: Erkki Seppälä <erkki.seppala@vincit.fi>
7557    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7558
7559commit 50f4107811249806718a100f9d34f996c58e5e25
7560Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7561Date:   Wed Feb 2 08:58:45 2011 -0800
7562
7563    Xrm.c: ReadInFile: refactor fstat error handling
7564    
7565    We can simplify the fstat failure case now that the GetFileSize macro
7566    has been expanded inline.
7567    
7568    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7569    Reviewed-by: Julien Cristau <jcristau@debian.org>
7570
7571commit 5e9c40fcb5da43c9fdacf12967d090bf202daf2a
7572Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7573Date:   Wed Feb 2 08:56:00 2011 -0800
7574
7575    Expand GetSizeOfFile() macro at the one place it's called
7576    
7577    Removes XrmI.h header that only contained this single macro
7578    
7579    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7580    Reviewed-by: Julien Cristau <jcristau@debian.org>
7581
7582commit 450e17422c0e374d25c643f343ea268cec68da38
7583Author: Erkki Seppälä <erkki.seppala@vincit.fi>
7584Date:   Mon Jan 31 14:01:57 2011 +0200
7585
7586    XlibInt: Use strncpy+zero termination instead of strcpy to enforce buffer size
7587    
7588    Possible overrun of 8192 byte fixed size buffer "buffer" by copying
7589    "ext->name" without length checking
7590    
7591    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7592    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7593    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
7594    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7595
7596commit e2566e43b02d2d7b7c1c3bb7db7c5ae81c1245fa
7597Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7598Date:   Mon Jan 31 14:02:13 2011 +0200
7599
7600    lc/def/lcDefConv: Use Xcalloc to avoid use of uninitialized memory
7601    
7602    Fixed by zero'ing conv on allocation with Xcalloc. Then
7603    close_converter works properly.
7604    
7605    Using uninitialized value "conv->state" in call to function "close_converter"
7606    
7607    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7608    Reviewed-by: Erkki Seppälä <erkki.seppala@vincit.fi>
7609    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7610    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7611
7612commit 03f81ad8fb9783986cf9b17661dd31e95c396681
7613Author: Erkki Seppälä <erkki.seppala@vincit.fi>
7614Date:   Mon Jan 31 14:02:16 2011 +0200
7615
7616    xlibi18n/lcFile: Removed superfluous check for NULL target_dir
7617    
7618    The situation is already handled before this code.
7619    
7620    Cannot reach dead expression "0U" inside statement "if (1U + (target_dir ? strl..."
7621    
7622    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7623    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7624    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
7625    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7626
7627commit 1346b9ea3b3882201ff8c3ee462ff4b0d4edf639
7628Author: Erkki Seppälä <erkki.seppala@vincit.fi>
7629Date:   Mon Jan 31 14:02:15 2011 +0200
7630
7631    ximcp/imLckup: Handle negative return value from _Xlcwctomb
7632    
7633    Fixed by negative value to memcpy by checking for the negative return
7634    value of _Xlcwctomb and returning 0/XLookupNone in that case.
7635    
7636    a negative value was passed to memcpy
7637    
7638    Unfortunately the other return values for *status don't fit into the
7639    error (which appears to indicate some internal error or running out of
7640    memory). The other valid status codes are XBufferOverflow,
7641    XLookupNone, XLookupChars, XLookupKeySym, and XLookupBoth. Each of
7642    these has a specific meaning attached.
7643    
7644    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7645    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
7646    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7647
7648commit 79a5c86e020f08cc108184298a72e2777036de39
7649Author: Erkki Seppälä <erkki.seppala@vincit.fi>
7650Date:   Mon Jan 31 14:02:14 2011 +0200
7651
7652    ximcp/imTrX: Handle failing XGetWindowProperty
7653    
7654    Checked return value of XGetWindowProperty and return false if it fails.
7655    
7656    Return value of "XGetWindowProperty(im->core.display, spec->lib_connect_wid, prop, 0L, (length + bytes_after_ret + 3UL) / 4UL, 1, 0UL, &type_ret, &format_ret, &nitems, &bytes_after_ret, &prop_ret)" is not checked
7657    
7658    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7659    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
7660    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7661
7662commit 2ace8d5c89c8f6d9f42b4068f4b508ca28f0ced1
7663Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7664Date:   Mon Jan 31 14:02:12 2011 +0200
7665
7666    XlibInt: info_list->watch_data was reallocated, but result was discarded
7667    
7668    info_list->watch_data was being reallocated, but the return value of
7669    the reallocation was stored only into a local variable. This might
7670    cause some funky behavior and crashes.
7671    
7672    Variable "wd_array" goes out of scope
7673    Value "wd_array" is overwritten in "wd_array = (XPointer*)realloc((char*)info_list->watch_data, (((dpy->watcher_count + 1) * 4U == 0U) ? 1U : ((dpy->watcher_count + 1) * 4U)))"
7674    
7675    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7676    Reviewed-by: Erkki Seppälä <erkki.seppala@vincit.fi>
7677    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7678    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7679
7680commit 2b16a7e683e355c9746290b2cee2fd0dd2bf342a
7681Author: Erkki Seppälä <erkki.seppala@vincit.fi>
7682Date:   Mon Jan 31 14:02:10 2011 +0200
7683
7684    GetProp: Zero-initialized error so its resourceID field is initialized
7685    
7686    Using uninitialized value "error.resourceID" in call to function "_XError"
7687    
7688    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7689    Reviewed-by: Erkki Seppälä <erkki.seppala@vincit.fi>
7690    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7691    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7692
7693commit 85e9f38e016137f0ff2791eb0d092ab027382d2c
7694Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7695Date:   Tue Feb 1 11:07:25 2011 +0200
7696
7697    xcms/LRGB: Add a label for freeing property_return.
7698    
7699    The rest of the code uses goto's to free memory allocated later
7700    and prevent memory leaks, but there were several paths were
7701    property_return was free'd just before a goto.
7702    
7703    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7704    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7705    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
7706    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7707
7708commit 3161dc57d4e9b70f852f05e5e474455e121b06ab
7709Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7710Date:   Mon Jan 31 14:02:08 2011 +0200
7711
7712    xcms/LRGB: Fix potential resource leak.
7713    
7714    property_return was not free'd if the allocation of pRedTbl failed.
7715    
7716    Reviewed-by: Erkki Seppälä <erkki.seppala@vincit.fi>
7717    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7718    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7719
7720commit be3e6c205d94dedc1cdebf5d17b987f0f828377a
7721Author: Erkki Seppälä <erkki.seppala@vincit.fi>
7722Date:   Mon Jan 31 14:02:06 2011 +0200
7723
7724    Xrm: Handle the extremely unlikely situation of fstat failing
7725    
7726    Tracked variable "size" was passed to a negative sink.
7727    
7728    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7729    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7730    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
7731    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7732
7733commit 3fae16c64d6ef76fd4a25a54c7f7de76596457db
7734Author: Erkki Seppälä <erkki.seppala@vincit.fi>
7735Date:   Mon Jan 31 14:02:05 2011 +0200
7736
7737    Xrm: NEWTABLE had a memory leak after a memory allocation error
7738    
7739    The NEWTABLE macro missed freeing its allocated memory on subsequent
7740    memory allocation errors. Added call to Xfree.
7741    
7742    Variable "table" goes out of scope
7743    
7744    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7745    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7746    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
7747    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7748
7749commit 7110ac653349a23c80c365f11f6270dc27c8975a
7750Author: Erkki Seppälä <erkki.seppala@vincit.fi>
7751Date:   Mon Jan 31 14:02:03 2011 +0200
7752
7753    ImUtil: Handle a memory leak in one early return branch
7754    
7755    Fixed memory leak by adding Xfree for image
7756    
7757    Variable "image" goes out of scope
7758    
7759    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7760    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7761    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
7762    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7763
7764commit d695f5da9f5b778e54b6987d9177048e32818c4d
7765Author: Erkki Seppälä <erkki.seppala@vincit.fi>
7766Date:   Mon Jan 31 14:02:01 2011 +0200
7767
7768    ximcp/imRm: Handle leaking colormap_ret
7769    
7770    Fixed memory leak by adding Xfree for colormap_ret
7771    
7772    Variable "colormap_ret" goes out of scope
7773    
7774    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7775    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7776    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
7777    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7778
7779commit f9eda19d08c1ea0973dfe0bc10a2519d6fd26cc7
7780Author: Erkki Seppälä <erkki.seppala@vincit.fi>
7781Date:   Mon Jan 31 14:01:59 2011 +0200
7782
7783    ximcp/imRmAttr: Handle leaking missing_list
7784    
7785    Fixed memory leak by adding Xfree and initializing missing_list with NULL
7786    
7787    Variable "missing_list" goes out of scope
7788    
7789    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7790    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7791    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
7792    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7793
7794commit 3183269e0979c9dbce9d55d9e03937897dc9fb3b
7795Author: Erkki Seppälä <erkki.seppala@vincit.fi>
7796Date:   Mon Jan 31 14:01:58 2011 +0200
7797
7798    ximcp/imRmAttr: Handle leaking colormap_ret
7799    
7800    XFree colormap_ret and initialize it when appropriate.
7801    
7802    Variable "colormap_ret" goes out of scope
7803    
7804    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7805    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
7806    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7807
7808commit f66a032a937030f2d9baa81744d36dc585bb085c
7809Author: Erkki Seppälä <erkki.seppala@vincit.fi>
7810Date:   Mon Jan 31 14:01:56 2011 +0200
7811
7812    xlibi18n/lcGeneric: Initialize uninitialized local variable
7813    
7814    Using uninitialized value "new"
7815    
7816    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7817    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7818    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
7819    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7820
7821commit d0266e06d38110ec908ca28379014eff743630b7
7822Author: Erkki Seppälä <erkki.seppala@vincit.fi>
7823Date:   Mon Jan 31 14:01:54 2011 +0200
7824
7825    xcmx/cmxColNm: Removed unused assignments to pBuf (in two functions)
7826    
7827    Pointer "pBuf" returned from "fgets(buf, 256, stream)" is never used
7828    
7829    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7830    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7831    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
7832    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7833
7834commit cc686655d7bfdeab8b67e01a24bd452a2e9e3fcf
7835Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7836Date:   Tue Feb 1 12:30:56 2011 +0200
7837
7838    XDefaultOMIF.c: Fix memory leaks in get_font_name
7839    
7840    Instead of copying the value returned by get_prop_name and then releasing it,
7841    directly use the return value of get_prop_name, which allocates memory for the
7842    name.
7843    
7844    If get_prop_name returns NULL, continue on to XFreeFont to release the font
7845    before returning the NULL via the normal function return.
7846    
7847    Reviewed-by: Erkki Seppälä <erkki.seppala@vincit.fi>
7848    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7849
7850commit 95796351435d81eaef8166d49ba3a6e7b633d70a
7851Author: Gaetan Nadon <memsize@videotron.ca>
7852Date:   Mon Jan 31 14:50:19 2011 -0500
7853
7854    config: comment, minor upgrade, quote and layout configure.ac
7855    
7856    Group statements per section as per Autoconf standard layout
7857    Quote statements where appropriate.
7858    Autoconf recommends not using dnl instead of # for comments
7859    
7860    Use AC_CONFIG_FILES to replace the deprecated AC_OUTPUT with parameters.
7861    Remove redundant AC_CANONICAL_HOST included in XORG_DEFAULT_OPTIONS
7862    
7863    This helps automated maintenance and release activities.
7864    Details can be found in http://wiki.x.org/wiki/NewModuleGuidelines
7865    
7866    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
7867
7868commit e994ab227ed28655565c3193e63733630105e7f9
7869Author: Erkki Seppälä <erkki.seppala@vincit.fi>
7870Date:   Tue Jan 18 12:49:48 2011 +0200
7871
7872    Comparing array against NULL is not useful "&xkb->server->vmods != NULL"
7873    
7874    Removed superfluous comparison.
7875    
7876    Reviewed-by: Dirk Wallenstein <halsmit@t-online.de>
7877    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
7878
7879commit 4115f051e62f9b098efce691e070d44f09f30f1c
7880Author: Erkki Seppälä <erkki.seppala@vincit.fi>
7881Date:   Wed Jan 12 15:51:11 2011 +0200
7882
7883    Variable "entry" tracked as NULL was dereferenced.
7884    
7885    Check entry for non-nullness before dereferencing it
7886    
7887    Reviewed-by: Dirk Wallenstein <halsmit@t-online.de>
7888    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7889    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
7890
7891commit 0edb76d1d5fdca5a2543332699be2e72386dab24
7892Author: Erkki Seppälä <erkki.seppala@vincit.fi>
7893Date:   Thu Jan 27 09:54:00 2011 +0200
7894
7895    Dereferencing possibly NULL "str" in call to function "memcpy" (Deref assumed on the basis of 'nonnull' parameter attribute.)
7896    
7897    If _XkbGetReadBufferPtr returns NULL, goto BAILOUT
7898    
7899    Reviewed-by: Dirk Wallenstein <halsmit@t-online.de>
7900    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7901    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
7902
7903commit 59da8a211ef723909d0530c0331d541db8e63378
7904Author: Erkki Seppälä <erkki.seppala@vincit.fi>
7905Date:   Mon Jan 10 16:17:47 2011 +0200
7906
7907    Using freed pointer "e"
7908    
7909    Reordered code to first to do the comparison and then to release data
7910    
7911    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7912    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7913    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
7914
7915commit 0f11c229f7099f7c5aeed4691b358dca151dac7d
7916Author: Matt Dew <marcoz@osource.org>
7917Date:   Thu Jan 27 00:31:23 2011 -0700
7918
7919    Remove <literal> tags from compose-chart.pl so pdf building doesn't die on soft-hyphens.
7920    
7921    Signed-off-by: Matt Dew <marcoz@osource.org>
7922    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7923
7924commit ca00bb202f3afcdbbcb8c4cb50308c5dd03f2322
7925Author: Gaetan Nadon <memsize@videotron.ca>
7926Date:   Fri Jan 28 16:07:07 2011 -0500
7927
7928    config: replace deprecated AC_HELP_STRING with AS_HELP_STRING
7929    
7930    This silences an Automake warning.
7931    
7932    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
7933
7934commit 8dac08c7515cb6f8a8f4d0a721713697eae755d8
7935Author: Gaetan Nadon <memsize@videotron.ca>
7936Date:   Fri Jan 28 14:59:04 2011 -0500
7937
7938    config: remove unrequired AC_HEADER_STDC
7939    
7940    Autoconf says:
7941    "This macro is obsolescent, as current systems have conforming
7942    header files. New programs need not use this macro".
7943
7944commit d4483375e37a72631d5821413cb75a423e990ffe
7945Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7946Date:   Tue Jan 18 19:37:02 2011 -0800
7947
7948    config: Use correct AC_CONFIG_HEADERS macro
7949    
7950    Replaces obsolete AM_CONFIG_HEADER and undocumented AC_CONFIG_HEADER
7951    
7952    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7953    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
7954    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
7955
7956commit c6405fe931f313a0d159bdad00244fc8aae12468
7957Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7958Date:   Sun Jan 16 11:55:23 2011 -0800
7959
7960    config: remove AC_PROG_CC as it overrides AC_PROG_C_C99
7961    
7962    XORG_STRICT_OPTION from XORG_DEFAULT_OPTIONS calls
7963    AC_PROG_C_C99. This sets gcc with -std=gnu99.
7964    If AC_PROG_CC macro is called afterwards, it resets CC to gcc.
7965    
7966    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7967    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
7968
7969commit 17aa1f2305da0952ad594c7329d08aba21f13ac8
7970Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7971Date:   Sun Jan 16 11:40:59 2011 -0800
7972
7973    Update to xf86bigfontproto >= 1.2.0 header name
7974    
7975    Clears compile-time warning of:
7976    "X11/extensions/xf86bigfstr.h", line 1: #warning: "xf86bigfstr.h is obsolete and may be removed in the future."
7977    "X11/extensions/xf86bigfstr.h", line 2: #warning: "include <X11/extensions/xf86bigfproto.h> for the protocol defines."
7978    
7979    Requires xf86bigfontproto >= 1.2.0 if --disable-xf86bigfont is not
7980    passed to configure.
7981    
7982    Also removes unnecessary AC_SUBST of BIGFONT_CFLAGS & BIGFONT_LIBS
7983    that PKG_CHECK_MODULES does automatically
7984    
7985    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7986    Reviewed-by: Julien Cristau <jcristau@debian.org>
7987
7988commit a9228fcc676aacf9a760dd94891c89f9bc82b20d
7989Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7990Date:   Tue Jan 11 17:55:22 2011 -0800
7991
7992    libX11 1.4.1
7993    
7994    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7995
7996commit 92fa96451af37a7a0f2592de07643fdaed7a9efd
7997Author: Pauli Nieminen <ext-pauli.nieminen@nokia.com>
7998Date:   Mon Jan 3 12:25:28 2011 -0500
7999
8000    Initialize event type
8001    
8002    If we receive unsupported event closing connection triggers valgrind
8003    error.
8004    
8005    ==12017== Conditional jump or move depends on uninitialised value(s)
8006    ==12017==    at 0x487D454: _XFreeDisplayStructure (OpenDis.c:607)
8007    ==12017==    by 0x486857B: XCloseDisplay (ClDisplay.c:72)
8008    *snip*
8009    ==12017==  Uninitialised value was created by a heap allocation
8010    ==12017==    at 0x4834C48: malloc (vg_replace_malloc.c:236)
8011    ==12017==    by 0x4894147: _XEnq (XlibInt.c:877)
8012    ==12017==    by 0x4891BF3: handle_response (xcb_io.c:335)
8013    ==12017==    by 0x4892263: _XReply (xcb_io.c:626)
8014    *snip*
8015    
8016    Problem is that XFreeDisplaySturture is checking for qelt->event.type ==
8017    GenericEvent while _XUnknownWireEvent doesn't store the type.
8018    
8019    Reviewed-by: Adam Jackson <ajax@redhat.com>
8020    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
8021    Signed-off-by: Pauli Nieminen <ext-pauli.nieminen@nokia.com>
8022
8023commit fa9747b9d4443eef9b1687b8b1208801f5c585da
8024Author: Fernando Carrijo <fcarrijo.lists@gmail.com>
8025Date:   Tue Dec 28 16:18:57 2010 -0500
8026
8027    specs: convert images from gif to svg format.
8028    
8029    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
8030
8031commit 0012e2a4eaddc0840617b4758931ad976ca2eb7c
8032Author: Philipp Reh <sefi@s-e-f-i.de>
8033Date:   Wed Dec 22 15:14:05 2010 +0000
8034
8035    Events: Store event cookie when dequeuing event
8036    
8037    When we dequeue an event in XCheckTypedEvent or XCheckTypedWindowEvent,
8038    make sure to store the corresponding cookie too.
8039    
8040    Signed-off-by: Philipp Reh <sefi@s-e-f-i.de>
8041    Reviewed-by: Daniel Stone <daniel@fooishbar.org>
8042
8043commit d2714d65e85b44abedf5f82e1a31506dba397ef2
8044Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8045Date:   Tue Dec 21 18:47:16 2010 -0800
8046
8047    Revert "Mark atom names argument to XInternAtoms as const"
8048    
8049    This reverts commit c8701115462b482d99ecff24d9de0f2806084ba5.
8050    
8051    The constification of a pointer to a pointer caused unexpected issues,
8052    and xorg-devel was unable to come up with a clean, safe, reasonable way
8053    to handle them, so we're chalking this up for now as yet another mistake
8054    in the Xlib API definition we'll be living with.
8055    
8056    See https://bugs.freedesktop.org/show_bug.cgi?id=32098 for details.
8057    
8058    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8059
8060commit 6459f9a48a82de3bc0235bd36acab2df11e436d5
8061Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8062Date:   Mon Dec 20 20:54:07 2010 -0800
8063
8064    specs/XKB: make acknowlegement section <preface> instead of <chapter>
8065    
8066    Fixes numbering of actual chapters to match their filenames and to
8067    make the table/figure numbering match the references in the text.
8068    
8069    Reported-by: jelmd on freenode irc
8070    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8071
8072commit 42c653d5413fc5870486a9cf51dd28d1e88f7c69
8073Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8074Date:   Sun Dec 19 23:53:02 2010 -0800
8075
8076    Add XKBlib spec images to dist_spec_DATA for distribution & installation
8077    
8078    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8079    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
8080
8081commit 8f8a3c8c42af82976d261ac2447cfbb0f90fa77d
8082Author: Matt Dew <matt@osource.org>
8083Date:   Tue Nov 30 10:52:07 2010 -0500
8084
8085    specs: convert XKBlib spec from Framemaker to DocBook.xml
8086    
8087    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
8088
8089commit c8701115462b482d99ecff24d9de0f2806084ba5
8090Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8091Date:   Sun Nov 21 20:49:05 2010 -0800
8092
8093    Mark atom names argument to XInternAtoms as const
8094    
8095    Updates code & docs for XInternAtoms.
8096    
8097    The single atom name argument to XInternAtom was already const char *
8098    in the code, but not the docs, so updated it in the docs too.
8099    
8100    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8101    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
8102
8103commit 24db5b5ff0d51b0ed9d9701a792c5f14f23b638d
8104Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8105Date:   Sun Nov 21 14:04:32 2010 -0800
8106
8107    libX11 1.4.0
8108    
8109    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8110
8111commit 18d3c3e9de19e936281b111d5a82acfb3a3f552e
8112Author: Dan Nicholson <dbn.lists@gmail.com>
8113Date:   Sat Nov 6 21:58:10 2010 +0000
8114
8115    config: Check host string when deciding architecture to build for
8116    
8117    When checking for the OS/2 platform, $target_os is used. However, unless
8118    building a cross compiler, the $host* strings contain the platform
8119    details for the build system. See:
8120    
8121    http://www.gnu.org/software/automake/manual/automake.html#Cross_002dCompilation
8122    
8123    $host_os is already being used to determine the transport and threading
8124    options.
8125    
8126    Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
8127    Reviewed-by: Julien Cristau <jcristau@debian.org>
8128    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8129
8130commit affc2488a7f2660a74dc8354fc3e0bff2c4f879c
8131Author: Dan Nicholson <dbn.lists@gmail.com>
8132Date:   Sat Nov 6 21:58:09 2010 +0000
8133
8134    config: Fix architecture check for OS/2 to skip nios2 cpu
8135    
8136    The OS/2 platform requires some utility functions as well as having a
8137    non-32 bit wchar_t. Fix the configure check so that it doesn't also
8138    affect the nios2 cpu, which wouldn't influence these operating system
8139    issues.
8140    
8141    Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
8142    Tested-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
8143    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8144    Reviewed-by: Julien Cristau <jcristau@debian.org>
8145    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8146
8147commit 8cbca8a10761d1ea75a75bafa647632d6c0dac71
8148Author: Gaetan Nadon <memsize@videotron.ca>
8149Date:   Tue Nov 9 13:04:44 2010 -0500
8150
8151    config: HTML file generation: use the installed copy of xorg.css
8152    
8153    Currenlty the xorg.css file is copied in each location
8154    where a DocBook/XML file resides. This produces about
8155    70 copies in the $(docdir) install tree.
8156    
8157    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
8158
8159commit 3e8907305e1818369aef5a5c0da61f09e20de4f8
8160Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8161Date:   Fri Oct 29 22:02:10 2010 -0700
8162
8163    libX11 1.3.99.903 (1.4.0 RC3)
8164    
8165    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8166
8167commit 5d245d8013289b13e0c42100951b26166c7fada4
8168Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8169Date:   Fri Oct 29 22:01:39 2010 -0700
8170
8171    Require xorg-macros 1.11 now that it is released
8172    
8173    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8174
8175commit 1ec89689fc771f116a6165226b9e076f54254a40
8176Author: Dan Nicholson <dbn.lists@gmail.com>
8177Date:   Fri Oct 22 19:09:07 2010 -0700
8178
8179    docs: Disable fop documentation by default
8180    
8181    fop is used to generate the pdf and ps formats of the documentation.
8182    This can significantly slow down the build, especially when creating all
8183    the compose key charts. Since few people probably want the full set of
8184    doc formats, set the default to 'no'.
8185    
8186    The default parameter for XORG_WITH_FOP is only available in recent
8187    macros. Users generating configure from older macros will just get
8188    'auto' as the default.
8189    
8190    Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
8191    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
8192    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8193    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8194
8195commit 03877bda911b72ac60a7144d6eced7d5be4b4d72
8196Author: Jon TURNEY <jon.turney@dronecode.org.uk>
8197Date:   Wed Apr 14 13:38:18 2010 +0100
8198
8199    Add C.UTF-8 and C.ASCII locale aliases
8200    
8201    Add C.UTF-8 locale as an alias for en_US.UTF-8
8202    Add C.ASCII locale as an alias for C
8203    
8204    (C.UTF-8 is the default locale for cygwin.  It also exists in debian,
8205    although I don't think it's intended for use by humans.)
8206    
8207    Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
8208    Acked-by: Julien Cristau <jcristau@debian.org>
8209    Reviewed-by: James Cloos <cloos@jhcloos.com>
8210
8211commit 81d1d9a6bdca779a44f931730b866eea75777c00
8212Author: Dan Nicholson <dbn.lists@gmail.com>
8213Date:   Sat Oct 9 16:00:47 2010 -0700
8214
8215    docs: Remove directory prerequisites from make rules
8216    
8217    Make expects prerequisites to be files with valid timestamps, and
8218    directories are treated as always being out of date. Thus, any targets
8219    depending on directories will always be rebuilt.
8220    
8221    Instead, the doc rules are changed to always create the target's leading
8222    directory. This should prevent the documentation from being rebuilt when
8223    "make install" is run.
8224    
8225    Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
8226    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
8227    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8228
8229commit d0cbf388919364fe6b5b9127f36426eb744090a0
8230Author: Jeremy Huddleston <jeremyhu@apple.com>
8231Date:   Sun Sep 26 21:21:16 2010 -0700
8232
8233    Add an "X11_" string to header guards to avoid possible collision
8234    
8235    This addresses a build failure which can result from <X11/Xlocale.h> and
8236    <xlocale.h> being included in the same code since they both used the same
8237    _XLOCALE_H_ protection.
8238    
8239    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
8240
8241commit b51ac675f44f5ce1a28c5734bf3c26983f8b4192
8242Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8243Date:   Tue Sep 21 19:53:03 2010 -0700
8244
8245    libX11 1.3.99.902 (1.4.0 RC2)
8246    
8247    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8248
8249commit 986bb6d1d54368fe91e3ea24f518d43ce6179782
8250Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8251Date:   Tue Sep 14 00:10:31 2010 -0700
8252
8253    Bug 19379 - Provide docs with overview of all compose key combinations
8254    
8255    Adds compose-chart.pl to generate DocBook/XML documents listing compose
8256    keys, and Makefile rules to generate HTML & PDF output from them if xmlto
8257    is present.
8258    
8259    https://bugs.freedesktop.org/show_bug.cgi?id=19379
8260    
8261    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8262    Reviewed-by: Mikhail Gusarov <dottedmag@dottedmag.net>
8263    Reviewed-by: James Cloos <cloos@jhcloos.com>
8264    Tested-by: Gaetan Nadon <memsize@videotron.ca>
8265
8266commit 3eb064071695ebf0f371163ed818a428dfeba8e6
8267Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8268Date:   Sat Sep 11 00:49:21 2010 -0700
8269
8270    Make locale data build non-recursive / parallelizable
8271    
8272    On a 4 core CPU with gmake -j 16 the nls subdir builds in half the time,
8273    plus this simplifies the next set of changes.
8274    
8275    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8276    Reviewed-by: Mikhail Gusarov <dottedmag@dottedmag.net>
8277    Reviewed-by: James Cloos <cloos@jhcloos.com>
8278    Tested-by: Gaetan Nadon <memsize@videotron.ca>
8279
8280commit a3fc78ac352e5a70a958996ef6aec50f653974d1
8281Author: Gaetan Nadon <memsize@videotron.ca>
8282Date:   Fri Sep 17 17:38:11 2010 -0400
8283
8284    config: remove man page suffix from bottom summary
8285    
8286    The man page suffix is the same for all libraries on a given
8287    platform and is not configurable. It should have been removed
8288    in commit 09edc6de6.
8289    
8290    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
8291
8292commit a52b0068f36c739eb7e426214cd72a8d9bb776ca
8293Author: Gaetan Nadon <memsize@videotron.ca>
8294Date:   Fri Sep 17 17:29:30 2010 -0400
8295
8296    config: remove unhelpful comment in .gitignore
8297    
8298    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
8299
8300commit 10dd881e7818be9074da4ab3a68577adcdaf71d2
8301Author: Adam Jackson <ajax@redhat.com>
8302Date:   Wed Sep 8 10:44:23 2010 -0400
8303
8304    Zero buffer data in BufAlloc()
8305    
8306    Inspired by a pattern in NoMachine's NX.  Consistently zeroed buffers
8307    compress better with ssh and friends.  Note that you'll need to rebuild
8308    all your protocol libraries to take advantage of this.
8309    
8310    Signed-off-by: Adam Jackson <ajax@redhat.com>
8311    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
8312    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8313
8314commit da099f0d2015831ea5f4a5d0740ed962aa4d5d8b
8315Author: James Cloos <cloos@jhcloos.com>
8316Date:   Sun Sep 12 17:00:54 2010 -0400
8317
8318    Revert “Dolt-ify"
8319    
8320    Libtool’s is now sufficiently fast that DOLT is no longer
8321    worth the bother, even on those few systems where is works.
8322    
8323    This reverts commit 3e9afd501e40d76040635bd9a3045bcaf5a03b60
8324    and part of commit d31e644c65c52828ea3e7abd94a8cf9aee12265c.
8325    
8326    It conflicted with commit f6a4fd0c7615684d08e848245849dea4017a5214
8327    which moved dolt from configure.ac to m4/dolt.m4.
8328    
8329    And it addresses: http://bugs.freedesktop.org/show_bug.cgi?id=28188
8330    
8331    Signed-off-by: James Cloos <cloos@jhcloos.com>
8332
8333commit 2661fbe6b809c937a60c2c1ca5ddb8280e399bd8
8334Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8335Date:   Thu Sep 9 19:24:29 2010 -0700
8336
8337    XIM spec title page minor formatting cleanup
8338    
8339    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8340
8341commit f99f1380bbf7bb2a0c491acad4a3d8db44bfd752
8342Author: Jens Petersen <petersen@redhat.com>
8343Date:   Mon Aug 23 18:08:10 2010 -0700
8344
8345    Bug 29773: aliases for nb_NO.utf8 and nn_NO.utf8
8346    
8347    <https://bugs.freedesktop.org/show_bug.cgi?id=29773>
8348    
8349    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8350
8351commit b15b8a558ec64c834cc8f6a52d7f3c4f530c8c4b
8352Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8353Date:   Fri Sep 3 23:11:53 2010 -0700
8354
8355    Sun's copyrights are now owned by Oracle
8356    
8357    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8358
8359commit 7742bf62b1fa652da4270587e280249945367cae
8360Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8361Date:   Fri Sep 3 18:31:44 2010 -0700
8362
8363    libX11 1.3.99.901 (1.4.0 RC1)
8364    
8365    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8366
8367commit 5a02d6d74b5451d48d8f55709dfd4ecd3c068586
8368Author: Jeroen Hoek <mail@jeroenhoek.nl>
8369Date:   Sun Aug 29 09:47:06 2010 -0400
8370
8371    libX11/nls compose tables, add LATIN CAPITAL LETTER SHARP S
8372    
8373    Add LATIN CAPITAL LETTER SHARP S
8374    (See https://bugs.freedesktop.org/show_bug.cgi?id=29448 for rationale)
8375    
8376    Signed-off-by: James Cloos <cloos@jhcloos.com>
8377
8378commit 09edc6de6619a2eabda3b808ebff4165550664f1
8379Author: Gaetan Nadon <memsize@videotron.ca>
8380Date:   Fri Aug 13 14:21:08 2010 -0400
8381
8382    config: remove man-pages configuration option
8383    
8384    This option was added in commit 6e752ea120 with no explanation.
8385    The section number is provoded by XORG_MANPAGE_SECTIONS
8386    There is no case where libX11 should be different than other libs
8387    The option was also used to disable building of the man pages,
8388    which build in 14 secs. No indication this is required.
8389    
8390    If there is a requirement from system builders to disable building
8391    of man pages, it could be done consistently for all modules.
8392    
8393    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
8394
8395commit f92e754297ec5fdb81068b56a4435026666224fa
8396Author: Aaron Plattner <aplattner@nvidia.com>
8397Date:   Sun Aug 15 21:51:38 2010 -0700
8398
8399    XOpenDisplay: save the correct display_name value
8400    
8401    The X Test Suite's XDisplayString test checks the invariant
8402    XDisplayString(XOpenDisplay(str)) == str.  The Xlib XOpenDisplay violates this
8403    invariant by expanding str to the canonical form "host:display.scrn" (unless
8404    HAVE_LAUNCHD is set and it starts with "/tmp/launch").  E.g., this expands ":1"
8405    to ":1.0":
8406    
8407      400|26 1 1 19:26:41|IC Start
8408      200|26 1 19:26:41|TP Start
8409      520|26 1 00032625 1 1|VSW5TESTSUITE PURPOSE 1
8410      520|26 1 00032625 1 2|Assertion XDisplayString-1.(A)
8411      520|26 1 00032625 1 3|A call to XDisplayString returns the string that was used
8412      520|26 1 00032625 1 4|as the argument to the XOpenDisplay call that returned the
8413      520|26 1 00032625 1 5|value used as the display argument.
8414      520|26 1 00032625 1 6|METH: Open a connection using XOpenDisplay.
8415      520|26 1 00032625 1 7|METH: Obtain the display string using XDisplayString.
8416      520|26 1 00032625 1 8|METH: Verify that the value of the string is the parameter used in XOpenDisplay.
8417      520|26 1 00032625 1 9|METH: Close the display using XCloseDisplay.
8418      520|26 1 00032625 1 10|REPORT: XDisplayString() returned ":1.0" instead of ":1".
8419      220|26 1 1 19:26:41|FAIL
8420      410|26 1 1 19:26:41|IC End
8421    
8422    Fix this by deleting all of the code to construct the canonical path and just
8423    stashing a copy of the original display_name in dpy->display_name.
8424    
8425    Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
8426    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
8427
8428commit 1dc401f678469d0235e6d0b28eb4356f03327c9f
8429Author: Gaetan Nadon <memsize@videotron.ca>
8430Date:   Fri Aug 13 13:06:51 2010 -0400
8431
8432    man: xkb: remove unused variable LIB_MAN_DIR_SUFFIX
8433    
8434    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
8435
8436commit cbe9eebd11e5ebab4280d25b57b4cd4001241619
8437Author: Gaetan Nadon <memsize@videotron.ca>
8438Date:   Fri Aug 13 11:42:29 2010 -0400
8439
8440    man: simplify building of shadow man pages
8441    
8442    Store the shadow files in git as any other man page.
8443    Move man pages to man dir and use the common makefile
8444    
8445    Local fix in CVS for bug 5628 is not required
8446    as the problem has been fixed in
8447    util-macros d9062e4077ebfd0985baf8418f3d0f111b9ddbba
8448    
8449    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
8450
8451commit bfd899c9af2318ecbe84cb69007dba4223fdb502
8452Author: Gaetan Nadon <memsize@videotron.ca>
8453Date:   Mon Aug 9 09:39:26 2010 -0400
8454
8455    config: reinstate XORG_PROG_RAWCPP erroneoulsy removed
8456    
8457    in commit 76e07ef6911734eac418e399b114f1b544512736.
8458    
8459    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
8460
8461commit 76e07ef6911734eac418e399b114f1b544512736
8462Author: Gaetan Nadon <memsize@videotron.ca>
8463Date:   Fri Aug 6 14:01:51 2010 -0400
8464
8465     man: using the C preprocessor is not required for man pages.
8466    
8467    There were no special symbols needing cpp.
8468    Everything can be handled by the default MAN_SUBSTS in util-macros.
8469    
8470    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
8471
8472commit 4b8ff7db39f2fe7ef12968d462aaf3f9054b6c18
8473Author: Jamey Sharp <jamey@minilop.net>
8474Date:   Fri Aug 6 15:51:56 2010 -0700
8475
8476    Fix use-after-free in _XReply on X errors.
8477    
8478    _XReply would always call dequeue_pending_request on errors.  When it
8479    got an error for the current request, it would call dequeue, then break
8480    out of the loop; then, if it had an error in the event queue, it would
8481    compare it with the sequence number of the now-freed pending request.
8482    _XReply already stored that sequence number in dpy->last_request_read
8483    before freeing it, so look at that instead.
8484    
8485    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=29412
8486    
8487    Signed-off-by: Jamey Sharp <jamey@minilop.net>
8488    Signed-off-by: Josh Triplett <josh@joshtriplett.org>
8489
8490commit 9fa146b30046396b70d64986e50d6617b3a8ac48
8491Author: Gaetan Nadon <memsize@videotron.ca>
8492Date:   Sat Jul 31 16:15:35 2010 -0400
8493
8494    specs: xsl stylesheet requires abs path to images
8495    
8496    Using abs_builddir requires automake 1.10 or later.
8497    
8498    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
8499
8500commit a8727d4bc39015e303b4128d0ad8aaf6d5fc9f0a
8501Author: Gaetan Nadon <memsize@videotron.ca>
8502Date:   Sun Aug 1 14:13:07 2010 -0400
8503
8504    specs: update .gitignore now that all groff generated files are gone
8505    
8506    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
8507
8508commit f70527f05677aaf6a493ba42d2d95f738aaebafa
8509Author: Adam Jackson <ajax@redhat.com>
8510Date:   Thu Jul 29 11:11:21 2010 -0400
8511
8512    nls: Switch one of the interrobang sequences to gnaborretni
8513    
8514    Since gnaborretni is primarily used in LTR locales, the ? part of the
8515    sequence reflects the position of the bulge in the ?.  When scanning an
8516    inverted interrobang left-to-right, you see the bulge first, so the
8517    compose sequence ?! is used; upright interrobang shows the bulge
8518    last, so it's !?.
8519    
8520    This is a change in behaviour, but I was unable to come up with anything
8521    better.  ??!! or !!?? would match the patterns for ¿ and ¡, but they
8522    would delay evaluation of them; "¿Qué?" wouldn't show the ¿ until you hit
8523    Q.  Likewise ?!?! and !?!? would delay showing the interrobang itself.
8524    ~!? and ~?! were considered but are arguably less intuitive.
8525    
8526    Reviewed-by: James Cloos <cloos@jhcloos.com>
8527    Signed-off-by: Adam Jackson <ajax@redhat.com>
8528
8529commit 511c4f6d29b2da4f71093feabcbb3913cb5d12a7
8530Author: Gaetan Nadon <memsize@videotron.ca>
8531Date:   Wed Jul 28 10:27:39 2010 -0400
8532
8533    specs: move indexterm from glossdef to glossterm
8534    
8535    This move fixes a Java class cast exception in the glossary.
8536    The problem was introduced in commit
8537    26f4f0d50840fe5ba4c46aae0a8e68db0059434b
8538    
8539    It may not happen on all versions of the doc toolchain.
8540    There is no reason why indexterm cannot appear in glossdef,
8541    this is a workaround to an implementation problem found by
8542    trial and error.
8543    
8544    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
8545    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8546    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8547
8548commit 87a108f3aa565aa803dacb3a53b811f45025b609
8549Author: Matt Dew <matt@osource.org>
8550Date:   Sat Jul 24 14:46:57 2010 -0400
8551
8552    specs: replace troff source with docbook-xml source
8553    
8554    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
8555
8556commit 8e603413586ff42b1351688f6f99318cbe243bca
8557Author: Julien Cristau <jcristau@debian.org>
8558Date:   Sat Jul 24 22:13:07 2010 +0200
8559
8560    Compose.man: default user compose file is .XCompose, not .Xcompose
8561    
8562    The path was correct in the DESCRIPTION section, but not in FILES.
8563    
8564    Signed-off-by: Julien Cristau <jcristau@debian.org>
8565
8566commit 554da76ece85d0fc0cada45a86860e69c2107e9a
8567Author: Daniel Stone <daniel@fooishbar.org>
8568Date:   Tue Jul 20 12:34:48 2010 +0100
8569
8570    NLS: Add \o/ Compose sequence
8571    
8572    Unicode is even more pointlessly awesome! Add a binding for Compose-\o/
8573    to U+1F64C PERSON RAISING BOTH HANDS IN CELEBRATION.
8574    
8575    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
8576
8577commit 2e7a18b6a617b9b4bfcea2d36f2bd2d7e0c4a3dd
8578Author: Daniel Stone <daniel@fooishbar.org>
8579Date:   Fri Jul 9 18:13:13 2010 +0100
8580
8581    XStringToKeysym: Cope with 0x1234cafe-style input
8582    
8583    If we get input in the style of 0xdeadbeef, just return that exact
8584    keysym.  Introduces a dependency on strtoul, which I'm told is OK on all
8585    the systems we care about.
8586    
8587    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
8588
8589commit 3df45ed0c29b98ff468a0ff0ba24830bb664fd5a
8590Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8591Date:   Mon Jul 19 17:58:27 2010 -0700
8592
8593    specs/libX11: Fix column count of Gravity Attributes table
8594    
8595    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8596
8597commit 53bcba0d1d2dc3fd5e0de4bae3da30a1aa31a0c4
8598Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8599Date:   Mon Jul 19 14:43:38 2010 -0700
8600
8601    specs/libX11: Convert \- to &minus; and \^ to either &hairsp; or removed
8602    
8603    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8604
8605commit 5a0b45275638281e1bb2ae7d3e16b98e6470dae9
8606Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8607Date:   Mon Jul 19 11:28:50 2010 -0700
8608
8609    specs/libX11: Manual cleanup pass over Ch. 1
8610    
8611    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8612
8613commit 21567992958a6f12b3d0186f2f27a5b2a41b8448
8614Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8615Date:   Mon Jul 19 14:51:10 2010 -0700
8616
8617    specs/libX11: make sure all files have DOCTYPEs so standard entities work
8618    
8619    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8620
8621commit c944a8521f5760b485192658b921145159cdb439
8622Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8623Date:   Sun Jul 18 13:12:20 2010 -0700
8624
8625    specs/libX11: Fix up list of header files in Ch.1 & add index entries
8626    
8627    Combination of manual editing and automatic substitution via:
8628    
8629    perl -i -p -00 -e 's{<varlistentry>(\s+)<term>&lt;X11/([^&]+)&gt;</term>(\s+)<listitem>(\s+)<para>}{<varlistentry id="Standard_Header_Files:$2">$1<term><filename class="headerfile">&lt;X11/$2&gt;</filename></term>$3<listitem>$4<indexterm type="file"><primary><filename class="headerfile">X11/$2</filename></primary></indexterm>$4<indexterm><primary>Files</primary><secondary>&lt;X11/$2&gt;</secondary></indexterm>$4<indexterm><primary>Headers</primary><secondary>&lt;X11/$2&gt;</secondary></indexterm>$4<para>}g' CH01.xml
8630    
8631    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8632
8633commit bb66e8f1ce330043278d3e8cbc7d5d3bc56ee030
8634Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8635Date:   Sun Jul 18 12:47:27 2010 -0700
8636
8637    specs/libX11: Add indexterms for headerfiles that .hN used to provide
8638    
8639    Automatic substitution performed via:
8640    perl -i -p -e 's{^&lt;<filename class="headerfile">([^<]+)</filename>&gt;(.*)$}{<filename class="headerfile">&lt;$1&gt;</filename>$2\n<indexterm type="file"><primary><filename class="headerfile">$1</filename></primary></indexterm>\n<indexterm><primary>Files</primary><secondary><filename class="headerfile">&lt;$1&gt;</filename></secondary></indexterm>\n<indexterm><primary>Headers</primary><secondary><filename class="headerfile">&lt;$1&gt;</filename></secondary></indexterm>}' *.xml
8641    
8642    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8643
8644commit d0b0d215cb85da48b323b1392149ce181e7ef5ec
8645Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8646Date:   Fri Jul 16 21:15:13 2010 -0700
8647
8648    specs/libX11: convert multicolumn lists from tables to <simplelist>
8649    
8650    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8651
8652commit e679f80c6210c0aefe3669f8f536353619097a4b
8653Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8654Date:   Fri Jul 16 20:51:52 2010 -0700
8655
8656    specs/libX11: Tag WM_* as <property>
8657    
8658    Mass substitution done by:
8659     perl -i -p -e 'if ($_ !~ m{^\<}) { $_ =~ s{(WM_\w+)}{<property>$1</property>}g; }' *.xml
8660    
8661    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8662
8663commit c7b7e59b3b22221d0be6286c540001c360308f69
8664Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8665Date:   Fri Jul 16 20:41:33 2010 -0700
8666
8667    specs/libX11: Convert simpler eqn markup to docbook tags
8668    
8669    Mostly "sup" to <superscript>
8670    
8671    There's several more complicated equations that will probably need
8672    MathML or SVG to solve.
8673    
8674    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8675
8676commit 897486c54c6a54771867d667441aaf9a4b9c35ca
8677Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8678Date:   Fri Jul 16 00:50:39 2010 -0700
8679
8680    specs/libX11: App. D: convert literallayouts to synopsis or programlisting
8681    
8682    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8683
8684commit 692906c3b3d8aa8b8927fbc230c3050d633785d2
8685Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8686Date:   Fri Jul 16 00:36:43 2010 -0700
8687
8688    specs/libX11: Fix section headers in Appendix D
8689    
8690    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8691
8692commit bcc41baa02e137884d847aec0f3ff8ca5c85c32f
8693Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8694Date:   Wed Jul 14 07:22:26 2010 -0700
8695
8696    specs/libX11: Explicitly tag document as English
8697    
8698    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8699
8700commit 6783544706ff370e900c137f951e90230586d6dc
8701Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8702Date:   Mon Jul 12 22:03:18 2010 -0700
8703
8704    specs/libX11: Appendix C: convert literallayouts to synopsis or programlisting
8705    
8706    Fixes display of a bunch of function prototypes and sample code
8707    
8708    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8709
8710commit 8834cd9285e6aaf437aee56292c508d99a090fa9
8711Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8712Date:   Mon Jul 12 18:37:16 2010 -0700
8713
8714    xmlrules.in: Add chunked-html rule to manually generate smaller files
8715    
8716    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8717
8718commit 53f78680c34ebc94ce26b5e14c2a0003435cf10d
8719Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8720Date:   Mon Jul 12 18:35:59 2010 -0700
8721
8722    specs/libX11: Convert Appendix A tables to real tables
8723    
8724    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8725
8726commit 705a1257a8a47f4a1f94979aee09a837500ede7d
8727Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8728Date:   Mon Jul 12 18:38:09 2010 -0700
8729
8730    specs/libX11: Fix out-of-place text in Chapter 1
8731    
8732    DTD violation error introduced in 89cc2e02e7c29ef9a02f0cfdf2090a2934f539e4
8733    
8734    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8735
8736commit a151346a2b7810e988f1de4b1e00b37672dc587a
8737Author: Jeremy Huddleston <jeremyhu@apple.com>
8738Date:   Mon Jul 12 16:52:12 2010 -0700
8739
8740    launchd: Explicitly search /sbin
8741    
8742    Previously, launchd wasn't found if /sbin wasn't in the user's PATH.
8743    https://bugs.freedesktop.org/show_bug.cgi?id=29028
8744    
8745    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
8746
8747commit 89cc2e02e7c29ef9a02f0cfdf2090a2934f539e4
8748Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8749Date:   Mon Jul 12 13:38:04 2010 -0700
8750
8751    Replace untranslated .hN macros with <filename> tags to show header names
8752    
8753    Translation performed by:
8754     perl -i -p -e 's{\<\!-- .hN (\S+) (\S+)?\s*-->}
8755                     {&lt;<filename class="headerfile">$1</filename>&gt;$2}' *.xml
8756    
8757    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8758
8759commit 75480440946603b8efdbbf78b88d59c641b6d2c8
8760Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8761Date:   Sat Jul 10 00:06:13 2010 -0700
8762
8763    specs/libX11: Mass substitution of <function> tags with more specific tags
8764    
8765    Matched names from X headers & "nm libX11.so" output to names in spec to
8766    map to more specific tags.   Tags used:
8767    
8768                        <code>   code fragments
8769                    <constant>   enum values
8770                   <errorname>   X protocol errors
8771                    <filename>   filenames
8772                    <function>   functions
8773                    <function>   function-like macros (#define foo(a,b)...)
8774                 <returnvalue>   function return codes
8775                 <structfield>   struct members
8776                  <structname>   struct names (even when typedefed)
8777                      <symbol>   simple value #defines (#define NAME value)
8778                  <systemitem>   X protocol requests
8779    <systemitem class="event">   X protocol events
8780                        <type>   non-struct typedefs
8781                     <varname>   global variables
8782    
8783    (Also fixed a couple typos detected by failures of this matching, such as
8784     XESSetPrintErrorValues -> XESetPrintErrorValues.)
8785    
8786    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8787
8788commit 26f4f0d50840fe5ba4c46aae0a8e68db0059434b
8789Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8790Date:   Fri Jul 9 00:37:23 2010 -0700
8791
8792    specs/libX11: Glossary cross-reference links
8793    
8794    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8795
8796commit 930b52d84031de0e15e0a11cf4ecfd3b2f59e073
8797Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8798Date:   Thu Jul 8 21:19:08 2010 -0700
8799
8800    specs/libX11: Make whitespace around <function> tags more uniform
8801    
8802    Simplifies regular expressions for further mass substitutions.
8803    
8804    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8805
8806commit 730ce6b8aca77b77385aa894d234cbde5fcbce37
8807Author: Gaetan Nadon <memsize@videotron.ca>
8808Date:   Fri Jul 9 20:10:37 2010 -0400
8809
8810    specs: use pattern rules rather than suffix rules
8811    
8812    This allows target to rebuild when included .xml files are changed.
8813    
8814    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
8815
8816commit 5527b4bc8ce7de60123eb28789ddef54aa48a378
8817Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8818Date:   Thu Jul 8 20:56:41 2010 -0700
8819
8820    specs/libX11: Move punctuation outside of the <function> tags
8821    
8822    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8823
8824commit d66d2134dfc38cd866c7c2d9ea45ed4b4dad23f0
8825Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8826Date:   Thu Jul 8 20:42:50 2010 -0700
8827
8828    specs/libX11: Mark a number of <acronym>s
8829    
8830    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8831
8832commit d5bbb12f55ac9f691eab6242cedc53207275131b
8833Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8834Date:   Thu Jul 8 19:31:36 2010 -0700
8835
8836    specs/libX11: Glossary terms should not be marked as functions
8837    
8838    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8839
8840commit 5decf7bc5dae0ae0c45c47eaaa9c4fdf9515ca1c
8841Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8842Date:   Thu Jul 8 19:28:18 2010 -0700
8843
8844    specs/libX11: Clean up author list & acknowledgements a little
8845    
8846    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8847
8848commit 0cd29bdb332c333e5123dce65b25ad1d97fbdae3
8849Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8850Date:   Thu Jul 8 17:30:34 2010 -0700
8851
8852    specs/libX11: Convert troff .IN macros to docbook <indexterm> tags
8853    
8854    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8855
8856commit a67d99ccbe22c8ce5f7a12f13b8991d9e0cf4491
8857Author: Gaetan Nadon <memsize@videotron.ca>
8858Date:   Thu Jul 8 17:29:21 2010 -0400
8859
8860    specs: specdir is required to install xml files
8861    
8862    The source is installed as well as the targets.
8863    This failed when configuring with --without-xmlto
8864    
8865    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
8866
8867commit e14273f44c1501ab51db4adcb83b18a1073787d8
8868Author: Matt Dew <matt@osource.org>
8869Date:   Thu Jul 8 14:42:32 2010 -0400
8870
8871    specs: replace troff source with docbook-xml source
8872    
8873    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
8874
8875commit bea0873caf50e9ed1b89255775d9ab912cbecd45
8876Author: Daniel Stone <daniel@fooishbar.org>
8877Date:   Thu Jul 8 16:49:51 2010 +0100
8878
8879    XStringToKeysym: Check strdup() return value
8880    
8881    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
8882    Reviewed-by: Keith Packard <keithp@keithp.com>
8883
8884commit cffa71b4a5743e2b6675b9a917d15aef4177d513
8885Author: Marko Myllynen <myllynen@redhat.com>
8886Date:   Mon Jun 28 15:08:05 2010 +0300
8887
8888    Fix two typos in SFS 5966 Annex 3
8889    
8890    X.Org bug#28792 <https://bugs.freedesktop.org/show_bug.cgi?id=28792>
8891    
8892    Signed-off-by: Julien Cristau <jcristau@debian.org>
8893
8894commit eb023c0f8919e809b8b609e1467b14d20a290aa7
8895Author: Daniel Stone <daniel@fooishbar.org>
8896Date:   Tue Jun 15 18:49:43 2010 +0100
8897
8898    Delete now-redundant XKeysymDB
8899    
8900    Since XStringToKeysym now supports all the vendor keysyms, just delete
8901    our XKeysymDB, which was incomplete at best, misleading at worst, and
8902    always an annoyance.
8903    
8904    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
8905    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8906
8907commit 00175397480b76d32bf82b0c7c94c91a2a95954e
8908Author: Daniel Stone <daniel@fooishbar.org>
8909Date:   Tue Jun 15 18:48:48 2010 +0100
8910
8911    makekeys: Scan vendor keysyms as well as core
8912    
8913    Since we can't really live without vendor keysyms, scan them all in to
8914    generate ks_tables.h, rather than only doing the core ones, and leaving
8915    the vendor syms to be manually synchronised with XKeysymDB.
8916    
8917    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
8918    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8919
8920commit ebd6ef0a4db0ddef0ae17ad14571518ccdeea5ba
8921Author: Daniel Stone <daniel@fooishbar.org>
8922Date:   Tue Jun 15 18:47:37 2010 +0100
8923
8924    XStringToKeysym: Special case for XF86 keysyms
8925    
8926    Some XFree86 keysyms were in XKeysymDB as XF86_foo, despite really being
8927    XF86foo.  So, if we get to the bottom of XStringToKeysym and haven't
8928    found our XF86_foo, try it again as XF86foo.
8929    
8930    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
8931    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8932
8933commit 8c2ffce9e5c6eef8a04f7e2732db46b3b62e13bb
8934Author: Daniel Stone <daniel@fooishbar.org>
8935Date:   Tue Jun 15 17:20:48 2010 +0100
8936
8937    configure.ac: Change from deprecated AC_DEFINE_DIR to AX_
8938    
8939    AC_DEFINE_DIR is deprecated as it's squatting on the autoconf-builtin
8940    namespace, so start using the more proper AX_DEFINE_DIR instead.
8941    
8942    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
8943    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
8944    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8945
8946commit 6de368c9aa7ccd2fcd62fca5a2b278913db4d03d
8947Author: Fernando Carrijo <fcarrijo@yahoo.com.br>
8948Date:   Thu Jul 1 06:50:47 2010 -0300
8949
8950    Purge macros NEED_EVENTS and NEED_REPLIES
8951    
8952    Signed-off-by: Fernando Carrijo <fcarrijo@yahoo.com.br>
8953    Acked-by: Tiago Vignatti <tiago.vignatti@nokia.com>
8954    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8955
8956commit 0b724231be17f19538ee115a03b82b221b1f83c0
8957Author: Adam Jackson <ajax@redhat.com>
8958Date:   Wed Jun 30 16:30:49 2010 -0400
8959
8960    Use -version-number consistently instead of -version-info
8961    
8962    The latter is libtool braindamage.
8963    
8964    Signed-off-by: Adam Jackson <ajax@redhat.com>
8965
8966commit 241a990afcf9c967c587ad6fd245df21b68b1ad9
8967Author: Juliusz Chroboczek <jch@pps.jussieu.fr>
8968Date:   Tue Jun 29 18:32:42 2010 +0200
8969
8970    Make Compose-comma map to ogonek for I and U in UTF-8 locales.
8971    
8972    With the preceding patch, it makes the UTF-8 compose map consistent with
8973    the ISO 8859-4 and -13 maps.
8974
8975commit af55e582f485a668c2bf43129be972bc65f03c60
8976Author: Juliusz Chroboczek <jch@pps.jussieu.fr>
8977Date:   Tue Jun 29 18:20:18 2010 +0200
8978
8979    Make Compose-comma map to Ogonek for A and E in UTF-8 locales.
8980    
8981    This makes the UTF-8 compose file consistent with the ISO 8859-2 compose file
8982    as far as Polish is concerned.  We only sacrifice one pair of characters,
8983    e-cedilla, which is not used in any language.
8984
8985commit d6ba13009fc9ef876a104b907ffef73c6e405d4b
8986Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8987Date:   Thu Jun 24 13:13:11 2010 -0700
8988
8989    Define FILE_MAN_DIR_SUFFIX so XCompose shadow page has correct path
8990    
8991    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8992
8993commit 978c7238789037de917b9423ea9adfb006da1260
8994Author: Jamey Sharp <jamey@minilop.net>
8995Date:   Sat Jun 19 10:44:55 2010 -0700
8996
8997    poll_for_response: Really handle xcb_poll_for_reply getting a reply.
8998    
8999    Don't lose async replies. That's bad.
9000    
9001    `xlsfonts -l`, which uses XListFontsWithInfo, worked fine, because the
9002    _XReply path worked; that path waited for replies, rather than polling.
9003    
9004    However, XRecordProcessReplies, which does nothing but call XPending,
9005    relied on the event-handling path to process async replies, and that was
9006    busted.
9007    
9008    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=28595
9009    
9010    Signed-off-by: Jamey Sharp <jamey@minilop.net>
9011
9012commit ef67486c5a8aada24fd95b2991a3c4979f53805f
9013Author: Jamey Sharp <jamey@minilop.net>
9014Date:   Mon Jun 21 13:34:15 2010 -0700
9015
9016    Revert "xcb_io.c: poll_for_response doesn't guarantee there's a pending request."
9017    
9018    This reverts commit 4a8b6528ff69f6feb8c0e119939b4ce6c088f29e, because as
9019    a matter of fact, if poll_for_response returns NULL when we know
9020    dpy->xcb->next_event is non-NULL, there *is* guaranteed to be a pending
9021    request.
9022
9023commit 301ec5b41e9d253a446db656e1789ac7345dc433
9024Author: Jamey Sharp <jamey@minilop.net>
9025Date:   Mon Jun 21 13:24:24 2010 -0700
9026
9027    Revert "poll_for_response: Really handle xcb_poll_for_reply getting a reply."
9028    
9029    This reverts commit c115095d7f2bc4f5a4fb26380e3698fefdad7611. We *do*
9030    need to check poll_for_event every time through the loop in
9031    poll_for_response, so the commit did too much.
9032
9033commit 4a8b6528ff69f6feb8c0e119939b4ce6c088f29e
9034Author: Jamey Sharp <jamey@minilop.net>
9035Date:   Mon Jun 21 10:54:02 2010 -0700
9036
9037    xcb_io.c: poll_for_response doesn't guarantee there's a pending request.
9038    
9039    Fixes the second bug reported in:
9040    https://bugs.freedesktop.org/show_bug.cgi?id=28595
9041    
9042    Signed-off-by: Jamey Sharp <jamey@minilop.net>
9043
9044commit c115095d7f2bc4f5a4fb26380e3698fefdad7611
9045Author: Jamey Sharp <jamey@minilop.net>
9046Date:   Sat Jun 19 10:44:55 2010 -0700
9047
9048    poll_for_response: Really handle xcb_poll_for_reply getting a reply.
9049    
9050    Don't lose async replies. That's bad.
9051    
9052    `xlsfonts -l`, which uses XListFontsWithInfo, worked fine, because the
9053    _XReply path worked; that path waited for replies, rather than polling.
9054    
9055    However, XRecordProcessReplies, which does nothing but call XPending,
9056    relied on the event-handling path to process async replies, and that was
9057    busted.
9058    
9059    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=28595
9060    
9061    Signed-off-by: Jamey Sharp <jamey@minilop.net>
9062    Signed-off-by: Josh Triplett <josh@joshtriplett.org>
9063
9064commit a25ae169862ab9b76daf259613b37c6b07bc2ef2
9065Author: Marko Myllynen <myllynen@redhat.com>
9066Date:   Sun Jun 13 19:23:05 2010 +0300
9067
9068    Implement SFS 5966 Annex 4 for Finland
9069    
9070    This patch adds Annex 4 of SFS 5966 for Finland and fixes two typos in
9071    Annex 3 (which were actually copied verbatim from the standard text).
9072    
9073    The implementation of the standard is now complete.
9074    
9075    X.Org bug#28498 <https://bugs.freedesktop.org/show_bug.cgi?id=28498>
9076    
9077    Signed-off-by: Julien Cristau <jcristau@debian.org>
9078
9079commit 47b04195d8a31c8f9e6dd804196162c6cfca3ac6
9080Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9081Date:   Fri Jun 4 13:20:17 2010 -0700
9082
9083    LINEAR_RGB_InitSCCData: When malloc fails, don't try to free unallocated bits
9084    
9085    One of the malloc failure checks had a goto to the wrong spot in the
9086    list of cleanup free() calls to unwind at the end, and was freeing
9087    bits that hadn't been initialized/allocated yet, since they would be
9088    stored in the struct that just failed to be allocated.
9089    
9090    Error: Null pointer dereference (CWE 476)
9091       Read from pointer that could be constant 'NULL'
9092            at line 805 of /export/alanc/X.Org/sx86/lib/libX11/src/xcms/LRGB.c in function 'LINEAR_RGB_InitSCCData'.
9093              Pointer checked against constant 'NULL' at line 754 but does not protect the dereference.
9094    
9095    [ This bug was found by the Parfait bug checking tool.
9096      For more information see http://research.sun.com/projects/parfait ]
9097    
9098    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9099
9100commit aebbf3623888119b43893b253195d93b613a6e1e
9101Author: Josh Triplett <josh@joshtriplett.org>
9102Date:   Sun Jun 6 19:11:55 2010 -0700
9103
9104    Mark the rest of Xprivate.h as _X_HIDDEN.
9105    
9106    None of the functions in Xprivate.h should have any callers outside of
9107    Xlib, by definition.
9108    
9109    Signed-off-by: Josh Triplett <josh@joshtriplett.org>
9110    Suggested-by: Jamey Sharp <jamey@minilop.net>
9111    Reviewed-by: Jamey Sharp <jamey@minilop.net>
9112
9113commit abcd1b67c8135ad652833e5a60d818837c39fce1
9114Author: Julien Cristau <jcristau@debian.org>
9115Date:   Fri Jun 4 13:57:45 2010 +0200
9116
9117    Hide _XSeqSyncFunction
9118    
9119    Commit a6d974dc59f2722b36e2df9d4f07aeee4f83ce43 made _XSeqSyncFunction
9120    non-static, but we don't need to export it.
9121    
9122    Signed-off-by: Julien Cristau <jcristau@debian.org>
9123    Reviewed-by: Adam Jackson <ajax@redhat.com>
9124    Reviewed-by: Jamey Sharp <jamey@minilop.net>
9125
9126commit 15e5eaf62897b3179d1fbe457cb19f886f0449f8
9127Author: Josh Triplett <josh@joshtriplett.org>
9128Date:   Thu Jun 3 09:41:01 2010 -0700
9129
9130    Remove support for building without XCB
9131    
9132    And there was much rejoicing.
9133    
9134    Signed-off-by: Josh Triplett <josh@joshtriplett.org>
9135    Reviewed-by: Jamey Sharp <jamey@minilop.net>
9136    
9137    Consensus on #xorg-devel agrees with removing --without-xcb; in
9138    particular, acks from Adam Jackson, Daniel Stone, Kristian Høgsberg,
9139    Julien Cristau, and Rémi Cardona.
9140
9141commit fb19eb767a32fd4ff74021c51bc6f60eb8bdff74
9142Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9143Date:   Thu Jun 3 15:21:40 2010 -0700
9144
9145    libX11 1.3.4
9146    
9147    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9148
9149commit 8f3db40ca5108a919244f3fff7466d01a14b3ce2
9150Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9151Date:   Thu Jun 3 13:08:17 2010 -0700
9152
9153    Workaround bug in groff flag processing that breaks distcheck
9154    
9155    At least with the groff 1.19.2 package I have installed, groff passes
9156    on the -I flags for the include path to grohtml, which if they come
9157    after the -P-I... flag we pass to grohtml to specify the image file
9158    name pattern cause it to override that flag and put the images in
9159    the wrong place, breaking "make distcheck" - changing the flag order
9160    works around this.
9161    
9162    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9163
9164commit bdb31a1fb707cebccc9efbbf68cb55c10fa4ea3e
9165Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9166Date:   Thu Jun 3 11:25:33 2010 -0700
9167
9168    Fix typo that made configure always report "none" for man page suffix
9169    
9170    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9171
9172commit 6bb7d2d21d6b58019fb37b724b59c9744f30b9ce
9173Author: Paul Bender <pebender@gmail.com>
9174Date:   Thu Jun 3 11:20:26 2010 -0700
9175
9176    Bug 22591 - configure does not obey the --enable-*-transport options
9177    
9178    https://bugs.freedesktop.org/show_bug.cgi?id=22591
9179    
9180    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9181
9182commit d7f35946d673bb00f2768e025b6e1017422b2174
9183Author: Paul Bender <pebender@gmail.com>
9184Date:   Thu Jun 3 11:17:45 2010 -0700
9185
9186    Bug 22590 - libX11 1.2.1 has broken abstract namespace support
9187    
9188    https://bugs.freedesktop.org/show_bug.cgi?id=22590
9189    
9190    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9191
9192commit b2487d07f7b355f230a56e32c763acd08862735c
9193Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9194Date:   Thu Jun 3 11:06:15 2010 -0700
9195
9196    Bug 22584 - libX11 does not cross compile
9197    
9198    Adaptation of patch submitted by Paul Bender in attachment 27301 to
9199    https://bugs.freedesktop.org/show_bug.cgi?id=22584
9200    
9201    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9202    Reviewed-by: Mikhail Gusarov <dottedmag@dottedmag.net>
9203    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
9204
9205commit 4378219ff8c1418418c70086085358b69d574e74
9206Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9207Date:   Tue Jun 1 18:55:48 2010 -0700
9208
9209    Clarify requirements in XRestackWindows man page
9210    
9211    The required common parent window is not specified in the arguments,
9212    just implied as the parent of the first window in the list.
9213    
9214    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9215
9216commit f09c5299a381e2729e800a0ac43f1c0e371f65f6
9217Author: Jeremy Huddleston <jeremyhu@apple.com>
9218Date:   Wed May 12 16:42:18 2010 -0700
9219
9220    xcb: Add TCP fallback
9221    
9222    If we fail to connect to a UNIX socket and the transport isn't specified,
9223    fallback on TCP.  This matches behavior with the xtrans codepath and the
9224    Xlib spec.
9225    
9226    http://lists.x.org/archives/xorg-devel/2010-April/007915.html
9227    
9228    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
9229    Reviewed-by: Jamey Sharp <jamey@minilop.net>
9230
9231commit fd82552d5c0ce1931f29006a0c36f5e03cf8577e
9232Merge: aae2a4a7 933aee1d
9233Author: Jamey Sharp <jamey@minilop.net>
9234Date:   Mon May 10 16:51:24 2010 -0700
9235
9236    Merge branch 'xlib-xcb-thread-fixes'
9237
9238commit aae2a4a7aab26de3fa715d6ecd0a0e0926b37fc9
9239Author: Jeremy Huddleston <jeremyhu@apple.com>
9240Date:   Fri Apr 23 21:50:29 2010 -0700
9241
9242    Don't append the screen number when using a launchd socket
9243    
9244    ssh gets confused by this.  XQuartz is the only DDX using this
9245    functionality, and it doesn't support different screens, so
9246    let's just not include this until most ssh know how to handle
9247    this.
9248    
9249    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
9250
9251commit adcd0ec209abf832a769d52db660fb37eaad6e0c
9252Author: Jeremy Huddleston <jeremyhu@apple.com>
9253Date:   Fri Apr 23 16:33:44 2010 -0700
9254
9255    Remove launchd logic from _XConnectXCB as it's handled in XCB
9256    
9257    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
9258
9259commit d232b259c36fdde1f4179822809fec1480867dc5
9260Author: Jeremy Huddleston <jeremyhu@apple.com>
9261Date:   Tue Feb 2 17:01:28 2010 -0800
9262
9263    Fix various build warnings
9264    
9265    imLcIm.c: In function '_XimCachedFileName':
9266    imLcIm.c:361: warning: format '%03x' expects type 'unsigned int', but argument 8 has type 'long unsigned int'
9267    imLcIm.c:364: warning: format '%03x' expects type 'unsigned int', but argument 8 has type 'long unsigned int'
9268    
9269    imRm.c: In function '_XimDefaultArea':
9270    imRm.c:597: warning: cast from pointer to integer of different size
9271    imRm.c: In function '_XimDefaultColormap':
9272    imRm.c:626: warning: cast from pointer to integer of different size
9273    
9274    lcFile.c:224: warning: no previous prototype for 'xlocaledir'
9275    
9276    lcUTF8.c: In function 'iconv_cstombs':
9277    lcUTF8.c:1841: warning: assignment discards qualifiers from pointer target type
9278    lcUTF8.c:1869: warning: pointer targets in passing argument 1 of 'wctomb' differ in signedness
9279    lcUTF8.c:1873: warning: pointer targets in passing argument 1 of 'wctomb' differ in signedness
9280    lcUTF8.c: In function 'iconv_mbstocs':
9281    lcUTF8.c:1935: warning: pointer targets in passing argument 2 of 'mbtowc' differ in signedness
9282    lcUTF8.c: In function 'iconv_mbtocs':
9283    lcUTF8.c:2031: warning: pointer targets in passing argument 2 of 'mbtowc' differ in signedness
9284    lcUTF8.c: In function 'iconv_mbstostr':
9285    lcUTF8.c:2121: warning: pointer targets in passing argument 2 of 'mbtowc' differ in signedness
9286    lcUTF8.c: In function 'iconv_strtombs':
9287    lcUTF8.c:2180: warning: pointer targets in passing argument 1 of 'wctomb' differ in signedness
9288    lcUTF8.c: In function '_XlcAddGB18030LocaleConverters':
9289    lcUTF8.c:2367: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type
9290    lcUTF8.c:2368: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type
9291    lcUTF8.c:2373: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type
9292    lcUTF8.c:2374: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type
9293    lcUTF8.c:2375: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type
9294    lcUTF8.c:2376: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type
9295    lcUTF8.c:2377: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type
9296    
9297    XlibInt.c: In function '_XGetHostname':
9298    XlibInt.c:3441: warning: implicit declaration of function 'gethostname'
9299    XlibInt.c:3441: warning: nested extern declaration of 'gethostname'
9300    
9301    ConnDis.c: In function '_XDisconnectDisplay':
9302    ConnDis.c:540: warning: old-style function definition
9303    ConnDis.c: In function '_XSendClientPrefix':
9304    ConnDis.c:554: warning: old-style function definition
9305    ConnDis.c: In function 'XSetAuthorization':
9306    ConnDis.c:677: warning: old-style function definition
9307    
9308    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
9309
9310commit 3e11c73187acb2e2be9a812840bbbea947527ccb
9311Author: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
9312Date:   Fri Apr 23 00:01:54 2010 +0200
9313
9314    Allow X11 users to compose anarchism
9315    
9316    I can easily compose the hammer and sickle (the symbol representative
9317    of communism) by pressing the key sequence:
9318    
9319      <Compose> <C> <C> <C> <P> -> ☭
9320    
9321    But i can't easily make the circled A (the symbol representative of
9322    anarchism).
9323    
9324    I'd like to be able to use <Compose> <O> <A> (this is a
9325    currently unused key sequence) to generate the symbol:  Ⓐ
9326    
9327    Debian bug#555938 <http://bugs.debian.org/555938>
9328    
9329    Signed-off-by: Julien Cristau <jcristau@debian.org>
9330
9331commit 933aee1d5c53b0cc7d608011a29188b594c8d70b
9332Author: Jamey Sharp <jamey@minilop.net>
9333Date:   Fri Apr 16 20:18:28 2010 -0700
9334
9335    Fix Xlib/XCB for multi-threaded applications (with caveats).
9336    
9337    Rather than trying to group all response processing in one monolithic
9338    process_responses function, let _XEventsQueued, _XReadEvents, and
9339    _XReply each do their own thing with a minimum of code that can all be
9340    reasoned about independently.
9341    
9342    Tested with `ico -threads 20`, which seems to be able to make many
9343    icosahedrons dance at once quite nicely now.
9344    
9345    Caveats:
9346    
9347    - Anything that was not thread-safe in Xlib before XCB probably still
9348      isn't. XListFontsWithInfo, for instance.
9349    
9350    - If one thread is waiting for events and another thread tries to read a
9351      reply, both will hang until an event arrives. Previously, if this
9352      happened it might work sometimes, but otherwise would trigger either
9353      an assertion failure or a permanent hang.
9354    
9355    - Versions of libxcb up to and including 1.6 have a bug that can cause
9356      xcb_wait_for_event or xcb_wait_for_reply to hang if they run
9357      concurrently with xcb_writev or other writers. So you'll want that fix
9358      as well.
9359    
9360    Signed-off-by: Jamey Sharp <jamey@minilop.net>
9361    Reviewed-by: Josh Triplett <josh@freedesktop.org>
9362
9363commit aab43278ae619eb57d2dd9c7396f460f078588fc
9364Author: Jamey Sharp <jamey@minilop.net>
9365Date:   Fri Apr 16 22:24:16 2010 -0700
9366
9367    Use InternalLockDisplay on code paths called from LockDisplay.
9368    
9369    It's easier to reason about the code when we can't re-enter the
9370    Xlib-private sync-handlers while they're already running.
9371    
9372    Signed-off-by: Jamey Sharp <jamey@minilop.net>
9373    Reviewed-by: Josh Triplett <josh@freedesktop.org>
9374
9375commit 660b7d05f4ca4ab4661c9fe7ce655a4909b4e556
9376Author: Jamey Sharp <jamey@minilop.net>
9377Date:   Fri Apr 16 19:45:11 2010 -0700
9378
9379    Fix _XSend to enqueue the right range of pending requests.
9380    
9381    _XSend was off-by-one on both ends. It should not re-enqueue the last
9382    request that was already flushed, but it should enqueue the last request
9383    currently being flushed.
9384    
9385    Signed-off-by: Jamey Sharp <jamey@minilop.net>
9386    Reviewed-by: Josh Triplett <josh@freedesktop.org>
9387
9388commit f2735889908d6e5a7f8dbee42f00c54a52665191
9389Author: Jamey Sharp <jamey@minilop.net>
9390Date:   Fri Apr 16 19:45:11 2010 -0700
9391
9392    Pending requests are always added in-order.
9393    
9394    Replace insert_pending_request, which did an in-order search of the
9395    queue to find the right insertion point, with a simpler
9396    append_pending_request, and use that in _XSend as well.
9397    
9398    Includes assertions to check that the list of pending requests is in
9399    order by sequence number and does not have duplicates.
9400    
9401    Signed-off-by: Jamey Sharp <jamey@minilop.net>
9402    Reviewed-by: Josh Triplett <josh@freedesktop.org>
9403
9404commit d9cf5885b0f97942fbbd2a7cc50118132ece50f6
9405Author: Markus Duft <markus.duft@salomon.at>
9406Date:   Fri Apr 16 08:39:34 2010 -0700
9407
9408    Bug 26839: Fix build problem on Interix (POSIX layer on Windows)
9409    
9410    https://bugs.freedesktop.org/show_bug.cgi?id=26839
9411    
9412    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9413
9414commit a3f5f1b90936d23e9894e3261b2d77fb7b32a51a
9415Author: Josh Triplett <josh@freedesktop.org>
9416Date:   Thu Apr 15 14:24:21 2010 -0700
9417
9418    Stop returning an int from _XIDHandler and _XSeqSyncFunction
9419    
9420    _XIDHandler and _XSeqSyncFunction originally ran from dpy->synchandler, and
9421    thus had to return an int.  Now, they only run from _XPrivSyncHandler or
9422    LockDisplay, neither of which needs to check their return value since they
9423    always returned 0.  Make them both void.
9424    
9425    Signed-off-by: Josh Triplett <josh@freedesktop.org>
9426    Signed-off-by: Jamey Sharp <jamey@minilop.net>
9427
9428commit a6d974dc59f2722b36e2df9d4f07aeee4f83ce43
9429Author: Jamey Sharp <jamey@minilop.net>
9430Date:   Thu Apr 15 13:05:08 2010 -0700
9431
9432    Move XID and sync handling from SyncHandle to LockDisplay to fix races.
9433    
9434    XID and sync handling happened via _XPrivSyncHandler, assigned to
9435    dpy->synchandler and called from SyncHandle.  _XPrivSyncHandler thus ran
9436    without the Display lock, so manipulating the Display caused races, and
9437    these races led to assertions in multithreaded code (demonstrated via
9438    ico).
9439    
9440    In the XTHREADS case, after you've called XInitThreads, we can hook
9441    LockDisplay and UnlockDisplay.  Use that to run _XIDHandler and
9442    _XSeqSyncHandler from LockDisplay rather than SyncHandle; we then know
9443    that we hold the lock, and thus we can avoid races.  We think it makes
9444    sense to do these both from LockDisplay rather than UnlockDisplay, so
9445    that you know you have valid sync and a valid XID before you start
9446    setting up the request you locked to prepare.
9447    
9448    In the !XTHREADS case, or if you haven't called XInitThreads, you don't
9449    get to use Xlib from multiple threads, so we can use the logic we have
9450    now (with synchandler and savedsynchandler) without any concern about
9451    races.
9452    
9453    This approach gets a bit exciting when the XID and sequence sync
9454    handlers drop and re-acquire the Display lock. Reacquisition will re-run
9455    the handlers, but they return immediately unless they have work to do,
9456    so they can't recurse more than once.  In the worst case, if both of
9457    them have work to do, we can nest the Display lock three deep.  In the
9458    case of the _XIDHandler, we drop the lock to call xcb_generate_id, which
9459    takes the socket back if it needs to request more XIDs, and taking the
9460    socket back will reacquire the lock; we take care to avoid letting
9461    _XIDHandler run again and re-enter XCB from the return_socket callback
9462    (which causes Very Bad Things, and is Not Allowed).
9463    
9464    Tested with ico (with 1 and 20 threads), and with several test programs
9465    for XID and sequence sync.  Tested with and without XInitThreads(), and
9466    with and without XCB.
9467    
9468    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=23192
9469    
9470    Signed-off-by: Jamey Sharp <jamey@minilop.net>
9471    Signed-off-by: Josh Triplett <josh@freedesktop.org>
9472
9473commit b089b53b697c2851db2985d32af3b29f1da5e31e
9474Author: Jamey Sharp <jamey@minilop.net>
9475Date:   Wed Apr 14 12:59:11 2010 -0700
9476
9477    Honest. Extensions get to filter async errors too.
9478    
9479    Under some circumstances, errors are picked up by calling
9480    xcb_poll_for_reply, rather than xcb_poll_for_event, because Xlib issued
9481    the requests with the XCB_REQUEST_CHECKED flag. That happens when either
9482    an async handler is queued at the time the requests are flushed, or when
9483    XSetEventQueueOwner has been used to prevent Xlib from processing XCB's
9484    event queue.
9485    
9486    This bugfix extends 405132dab64bf2375f8e57d02b1b53da2311933a to cover
9487    those cases.
9488    
9489    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=26545
9490    
9491    Signed-off-by: Jamey Sharp <jamey@minilop.net>
9492
9493commit a15c31274650e391bc6de5d0951eb4464c228139
9494Author: Jamey Sharp <jamey@minilop.net>
9495Date:   Wed Apr 14 12:10:34 2010 -0700
9496
9497    _XError already runs async handlers; only call them directly for replies.
9498    
9499    The previous behavior probably would have triggered bug reports someday.
9500    
9501    Signed-off-by: Jamey Sharp <jamey@minilop.net>
9502
9503commit 405132dab64bf2375f8e57d02b1b53da2311933a
9504Author: Jamey Sharp <jamey@minilop.net>
9505Date:   Tue Apr 13 12:12:36 2010 -0700
9506
9507    Extensions get to filter async errors too.
9508    
9509    Apparently I misread XlibInt.c:_XReply and thought that handlers set
9510    with XESetError should be consulted only for the sequence number that
9511    _XReply is currently looking for. In fact, the error handlers are also
9512    consulted when an error arrives for a request that was not expected to
9513    have a reply.
9514    
9515    However, in an odd twist, the error handlers are *not* consulted outside
9516    of _XReply--that is, when looking for events, or waiting to be able to
9517    flush the output queue. So this patch takes some small pains to preserve
9518    that behavior, though it seems likely to have been unintentional.
9519    
9520    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=26545
9521    
9522    Signed-off-by: Jamey Sharp <jamey@minilop.net>
9523
9524commit d3eab4a38f3e53ef21eb3b6fa66ead7afecf6227
9525Author: Jamey Sharp <jamey@minilop.net>
9526Date:   Tue Apr 13 12:49:59 2010 -0700
9527
9528    Prefer the xcb_generic_error_t we already have over casting to xEvent.
9529    
9530    Just a minor cleanup.
9531    
9532    Signed-off-by: Jamey Sharp <jamey@minilop.net>
9533
9534commit 75ea8c37935ccc911557d16a303ba595b8ab106b
9535Author: Jamey Sharp <jamey@minilop.net>
9536Date:   Mon Apr 12 11:30:20 2010 -0700
9537
9538    Run the user's synchandler as well as any internal synchandlers.
9539    
9540    Fixes https://bugs.freedesktop.org/show_bug.cgi?id=27595
9541    
9542    Signed-off-by: Jamey Sharp <jamey@minilop.net>
9543
9544commit c3f3e4a9e531d010312c97e753d6e543e607094d
9545Author: Kusanagi Kouichi <slash@ac.auone-net.jp>
9546Date:   Fri Feb 12 17:16:10 2010 +0900
9547
9548    Fix manual typos.
9549    
9550    Signed-off-by: Kusanagi Kouichi <slash@ac.auone-net.jp>
9551    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9552
9553commit 75c6c5595408caba9ef8233839d77021d02f86f2
9554Author: Dirk Wallenstein <dirkwallenstein@t-online.de>
9555Date:   Fri Feb 5 20:42:46 2010 +0100
9556
9557    man: Correct the XkbAllAccessXEventsMask mask name
9558    
9559    This mask has probably been renamed but not been updated in the manuals.
9560    
9561    Signed-off-by: Dirk Wallenstein <dirkwallenstein@t-online.de>
9562    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9563
9564commit 9262aceaff24c954cab8c252690032bc2ec25e7d
9565Author: Dirk Wallenstein <dirkwallenstein@t-online.de>
9566Date:   Fri Feb 5 20:42:45 2010 +0100
9567
9568    man: Add missing geometry component flag
9569    
9570    Signed-off-by: Dirk Wallenstein <dirkwallenstein@t-online.de>
9571    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9572
9573commit 50cf134465f6fd263f37acecac94518468ef1c6d
9574Author: Dirk Wallenstein <halsmit@t-online.de>
9575Date:   Tue Feb 2 21:24:32 2010 +0100
9576
9577    man: Return value of XkbGetState is Status and not Bool
9578    
9579    Signed-off-by: Dirk Wallenstein <halsmit@t-online.de>
9580    Reviewed-by: Julien Cristau <jcristau@debian.org>
9581    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9582
9583commit 7a93ae2bb5292a97fdd27ed818bc81248b37f641
9584Author: Dirk Wallenstein <halsmit@t-online.de>
9585Date:   Tue Feb 2 21:24:30 2010 +0100
9586
9587    man: Fix return value specification of XkbKeyActionEntry
9588    
9589    The XkbKeyActionEntry macro expands to a pointer.
9590    
9591    Signed-off-by: Dirk Wallenstein <halsmit@t-online.de>
9592    Reviewed-by: Julien Cristau <jcristau@debian.org>
9593    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9594
9595commit e9884d4a05a5661ec343ea8a2aa0562b6419e086
9596Author: Dirk Wallenstein <halsmit@t-online.de>
9597Date:   Tue Feb 2 21:24:29 2010 +0100
9598
9599    man: Redirect users from XKeycodeToKeysym to XkbKeycodeToKeysym #25732
9600    
9601    XKeycodeToKeysym keeps compatibility with pre-XKB and thus only sees 2
9602    groups with 2 levels each. It wraps the index into the next group.
9603    This behavior confuses the unaware user, and therefore this will add a
9604    reference to XkbKeycodeToKeysym in the corresponding man paragraph.
9605    
9606    Another bug had that issue, too. #5349
9607    
9608    Signed-off-by: Dirk Wallenstein <halsmit@t-online.de>
9609    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9610
9611commit 6474cdf97cd648afaeaa872155f3fa21cfb43f80
9612Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9613Date:   Thu Apr 8 19:59:55 2010 -0700
9614
9615    Fix typo in new fi_FI.UTF-8 that was reported by "make check"
9616    
9617    Unrecognized pattern in Compose on line #154:
9618      <dead_diaeresis> <space>                " "¨"
9619    
9620    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9621
9622commit 91bd5e7af2d3a9526aefb73dc10f417896f0e4dd
9623Author: Marko Myllynen <myllynen@redhat.com>
9624Date:   Thu Apr 8 19:52:42 2010 -0700
9625
9626    Bug 27465 - Rewritten fi_FI.UTF-8 Compose file
9627    
9628    I've rewritten the fi_FI.UTF-8 Compose file so that it
9629    
9630    - includes en_US.UTF-8/Compose for base compose definitions (and thus gets any
9631    possible additions to en_US.UTF-8/Compose automatically included)
9632    - overrides any en_US.UTF-8/Compose definitions with fi_FI.UTF-8/Compose
9633    definitions (thus making it safe to include en_US.UTF-8/Compose)
9634    - lists all the definitions specified in the SFS 5966 standard (thus making it
9635    easy to verify that the implementation is valid and complete)
9636    - adds a header about the file itself as required by the standard
9637    
9638    The rewritten version is ~320 lines compared to over 5000 lines of the previous
9639    version.
9640    
9641    https://bugs.freedesktop.org/show_bug.cgi?id=27465
9642
9643commit f6a4fd0c7615684d08e848245849dea4017a5214
9644Author: Gaetan Nadon <memsize@videotron.ca>
9645Date:   Thu Apr 1 21:46:12 2010 -0400
9646
9647    config: update and relocate AC_DEFINE_DIR macro
9648    
9649    Remove deprecated acinclude.m4 macro container file
9650    Use separate macro files as per autoconf recommendation
9651    Use the latest macro from GNU (ax) which replaces
9652    the non-gnu version (ac)
9653    This preserves the Autoconf macro AC namespace.
9654    
9655    Also moved out of acinclude.m4 is the DOLT macro
9656    
9657    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9658
9659commit 61d5231db418cec51bd718633c3bba39b18689d6
9660Author: Gaetan Nadon <memsize@videotron.ca>
9661Date:   Mon Mar 29 14:53:48 2010 -0400
9662
9663    config: remove the pkgconfig pc.in file from EXTRA_DIST
9664    
9665    Automake always includes it in the tarball.
9666    
9667    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9668
9669commit 69fc76a0321c6b25cc4286173c53435c69ab8e0e
9670Author: Fernando Carrijo <fcarrijo@yahoo.com.br>
9671Date:   Wed Mar 17 23:53:16 2010 -0300
9672
9673    No need for req->firstKeyCode to be set twice.
9674    
9675    There is no reason to set req->firstKeyCode twice when a client, wishful
9676    for changing keyboard mappings, calls XChangeKeyboardMapping. This patch
9677    fixes the mistake by making no functional changes to libX11 whatsoever.
9678    
9679    Signed-off-by: Fernando Carrijo <fcarrijo@yahoo.com.br>
9680    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
9681
9682commit b5797597f83ee62228abfb88f026ef92163e07a5
9683Author: Gaetan Nadon <memsize@videotron.ca>
9684Date:   Tue Feb 16 10:37:21 2010 -0500
9685
9686    config: move CWARNFLAGS from configure.ac to Makefile.am
9687    
9688    Compiler warning flags should be explicitly set in the makefile
9689    rather than being merged with other packages compiler flags.
9690    
9691    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
9692    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9693
9694commit 052c4d7995b0e52a038933beb85cd544571c6b7e
9695Author: Gaetan Nadon <memsize@videotron.ca>
9696Date:   Tue Feb 16 14:28:21 2010 -0500
9697
9698    specs: change install cmd due to automake 1.11
9699    
9700    specData_INSTALL is defined in 1.9 and 1.10 but not 1.11
9701    
9702    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9703
9704commit 7277a18cda9f5a6807d11cf4ceb9449b1c302c18
9705Author: Gaetan Nadon <memsize@videotron.ca>
9706Date:   Tue Feb 9 17:27:08 2010 -0500
9707
9708    doc: use $(mkdir_p) rather than $(MKDIR_P) due to automake 1.9.6
9709    
9710    $(MKDIR_P) is not defined in automake 1.9.
9711    
9712    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9713
9714commit e66eda95b520727969d721416d4ea49b54ef2b03
9715Author: Gaetan Nadon <memsize@videotron.ca>
9716Date:   Tue Feb 2 16:29:26 2010 -0500
9717
9718    specs: install html images in $docdir with html files
9719    
9720    The images required by the html files have been omitted.
9721    
9722    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9723
9724commit 137d1ff6be99d040e77c8c4c52029c5bdf1f4808
9725Author: Gaetan Nadon <memsize@videotron.ca>
9726Date:   Sun Jan 31 14:16:20 2010 -0500
9727
9728    doc: use new macros to control doc generation
9729    
9730    Namely XORG_WITH_GROFF for the groff generation tool
9731    XORG_WITH_PS2PDF for the conversion of PS docs to PDF
9732    XORG_ENABLE_SPECS for the generation of specs
9733    
9734    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9735
9736commit 9ca583c5d6fcf9cd8151ee7b019630b141d32fab
9737Author: Gaetan Nadon <memsize@videotron.ca>
9738Date:   Tue Jan 26 19:41:08 2010 -0500
9739
9740    doc: clean-up generated html images
9741    
9742    Generate images in /images as is the convention
9743    Provide a base file name for images rather than process ID
9744    Remove images directory when running make clean
9745    
9746    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9747
9748commit eb289b34bfc9978eef724e0f268975938334c06c
9749Author: Kristian Høgsberg <krh@bitplanet.net>
9750Date:   Thu Jan 21 13:39:17 2010 -0500
9751
9752    XErrorDB: Add new DRI2 request names
9753
9754commit 6babf2123d05adb9349394c49cc2d81d1f66cf9e
9755Author: Julien Cristau <jcristau@debian.org>
9756Date:   Sat Jan 16 22:47:03 2010 +0000
9757
9758    man: Fix typo in Makefile
9759    
9760    Missing line continuation was preventing the XCompose alias from being
9761    generated.
9762    
9763    Signed-off-by: Julien Cristau <jcristau@debian.org>
9764    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
9765
9766commit 68530599e61cf9fef3fcc91650e7cef21837fce7
9767Author: Alan Coopersmith <alan.coopersmith@sun.com>
9768Date:   Sat Jan 16 11:41:32 2010 -0800
9769
9770    libX11 1.3.3
9771    
9772    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
9773
9774commit 1e5af224b9fbdb154620f898558704f2bc4bf4e9
9775Author: Alan Coopersmith <alan.coopersmith@sun.com>
9776Date:   Thu Jan 14 18:33:39 2010 -0800
9777
9778    Update COPYING file with actual licenses from libX11 code & docs
9779    
9780    COPYING was previously a years out-of-date copy of the LICENSES
9781    doc summarizing all licenses for all XFree86 components, many of
9782    which did not apply to libX11.
9783    
9784    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
9785
9786commit ddb1786720d6136b1b28be599c75c10ad1b76a2a
9787Author: Alan Coopersmith <alan.coopersmith@sun.com>
9788Date:   Thu Jan 14 17:38:26 2010 -0800
9789
9790    Purge CVS/RCS id tags
9791    
9792    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
9793
9794commit c1db9ddcfa7091f173478dca45bf720badedfca4
9795Author: Alan Coopersmith <alan.coopersmith@sun.com>
9796Date:   Thu Jan 14 15:39:14 2010 -0800
9797
9798    Update Sun license notices to current X.Org standard form
9799    
9800    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
9801
9802commit 1aaa7c0358c5c035b99625f5715cb722bc2d2a2f
9803Author: Alan Coopersmith <alan.coopersmith@sun.com>
9804Date:   Thu Jan 14 08:28:22 2010 -0800
9805
9806    Add %S substitutions to Compose man page
9807    
9808    Commit 9df349a7894725f9469b106af645f57f7f3f9af3 added support for %S
9809    in Compose file include statements - this documents it in the Compose
9810    file man page.
9811    
9812    Also changes the existing substitution documentation to list format
9813    instead of a paragraph format to allow easier adding of %S.
9814    
9815    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
9816
9817commit 94b45db93058cffa25598fe27dd3e385ace9d305
9818Author: Richard Purdie <rpurdie@linux.intel.com>
9819Date:   Thu Jan 14 08:04:28 2010 -0800
9820
9821    Fix configure.ac PKG_ macro calls
9822    
9823    If the first call to PKG_CHECK_MODULES() may not be called during execution
9824    which is the case here since its inside a case statement, call
9825    PKG_PROG_PKG_CONFIG() to ensure things worked correctly.
9826    
9827    Fixes a configure failure introduced by commit
9828    87529c039050ce3336ff9ce00f1b5a21d15690da when xcb is enabled.
9829    
9830    http://bugs.freedesktop.org/show_bug.cgi?id=26041
9831    
9832    Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
9833    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
9834
9835commit df559d8bc2238a2c369152fcb06e5b5ab132a5dc
9836Author: Alan Coopersmith <alan.coopersmith@sun.com>
9837Date:   Tue Jan 12 09:18:15 2010 -0800
9838
9839    Raise xorg-macros requirement to 1.4
9840    
9841    Needed since the changes in 464390f16d7ed4aa5bf80f89863ba92273075ec2
9842    depend on the INSTALL file delivered in xorg-macros 1.4
9843    
9844    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
9845
9846commit 9df349a7894725f9469b106af645f57f7f3f9af3
9847Author: James Cloos <cloos@jhcloos.com>
9848Date:   Wed Jan 13 11:04:38 2010 -0500
9849
9850    Allow inclusion of system level compose files.
9851    
9852    With the release of XFree86 4.4 an inclusion system of compose files was
9853    added to Xlib to allow inclusion of the default compose file (with %L),
9854    any compose files from user’s home directory (with %H), or a compose
9855    file with a hard coded path¹. However, even today including system level
9856    compose files is not possible in a platform independent manner although
9857    the machinery for including compose files and overriding previously
9858    defined compositions is already in place.
9859    
9860    With the ability to include system level compose files one could greatly
9861    reduce the need for compose file rule duplication and the work needed to
9862    propagate changes in one compose file to others. For example, currently
9863    the Finnish compose file fi_FI.UTF-8 weights over 5000 lines² but it
9864    is almost identical with en_US.UTF-8 except for perhaps half a dozen
9865    compositions.
9866    
9867    This commit allows one to include system level compose files with the
9868    following kind of syntax:
9869    
9870    include "%S/en_US.UTF-8/Compose"
9871    
9872    1] http://www.xfree86.org/4.4.0/RELNOTES5.html#42
9873    2] http://cgit.freedesktop.org/xorg/lib/libX11/tree/nls/fi_FI.UTF-8/Compose.pre
9874    
9875    Signed-off-by: Marko Myllynen <myllynen@redhat.com>
9876    Signed-off-by: James Cloos <cloos@jhcloos.com>
9877
9878commit ccf21a8877f40136e25f2f62d0668b0c76b3cfbd
9879Author: Thien-Thi Nguyen <ttn@gnuvola.org>
9880Date:   Tue Dec 1 10:31:47 2009 +0100
9881
9882    libX11: Fix comment: Invert polarity (direction) of reformat description.
9883    
9884    Signed-off-by: Thien-Thi Nguyen <ttn@gnuvola.org>
9885    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
9886
9887commit 4d4676c0d6324d2ff9d00d15ab485fa5d848a369
9888Author: Osamu Sayama <osamu.sayama@sun.com>
9889Date:   Tue Jan 5 17:26:40 2010 -0800
9890
9891    set_fontset_extents crash after get_rotate_fontname fix in 2bef065b70f7
9892    
9893    - In set_fontset_extents, check font_data is not NULL before running
9894      loop that may increment it to a non-NULL invalid pointer.
9895    - Make sure get_rotate_fontname counts the final field
9896    
9897    Fixes OpenSolaris bug 6913809: X application dumps core in ja_JP.UTF-8 locale
9898    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6913809>
9899    
9900    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
9901    Reviewed-by: Adam Jackson <ajax@redhat.com>
9902
9903commit 87529c039050ce3336ff9ce00f1b5a21d15690da
9904Author: Alan Coopersmith <alan.coopersmith@sun.com>
9905Date:   Tue Jan 5 18:02:37 2010 -0800
9906
9907    Merge X11, XKBPROTO, & XPROTO pkg-config lists
9908    
9909    Since the XPROTO_CFLAGS & XKBPROTO_CFLAGS are just merged into X11_CFLAGS
9910    in configure.ac anyway, might as well combine the lists passed to
9911    PKG_CHECK_MODULES to reduce duplication in the flags.
9912    
9913    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
9914    Reviewed-by: Rémi Cardona <remi@gentoo.org>
9915    Acked-by: Peter Hutterer <peter.hutterer@who-t.net>
9916
9917commit 2dd053667b44c55e2bf601aec7b75fc6fee1cf44
9918Author: Alan Coopersmith <alan.coopersmith@sun.com>
9919Date:   Tue Jan 5 17:56:58 2010 -0800
9920
9921    Add XCompose man page shadow for Compose man page
9922    
9923    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
9924
9925commit 02543bba816e065c02cd36e0c9e21519a9ee9c96
9926Author: Alan Coopersmith <alan.coopersmith@sun.com>
9927Date:   Tue Jan 5 17:47:44 2010 -0800
9928
9929    Add $(AM_V_GEN) to silence lint rules too
9930    
9931    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
9932
9933commit db7c6fdeeaef9475458498e4cf09d6b1329e9aa3
9934Author: Alan Coopersmith <alan.coopersmith@sun.com>
9935Date:   Tue Jan 5 17:42:42 2010 -0800
9936
9937    Remove GCC_WARNINGS now that XORG_CWARNFLAGS sets them for us
9938    
9939    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
9940
9941commit 6b4e526e7ba105622f6b143e8e2639b44cb6cc19
9942Author: Gaetan Nadon <memsize@videotron.ca>
9943Date:   Sun Nov 29 10:44:24 2009 -0500
9944
9945    configure.ac: restore correct order for XORG_DEFAULT_OPTIONS
9946    
9947    It must be following AC_USE_SYSTEM_EXTENSION
9948
9949commit 3dbaa11d1c8705e1b309c6686f354766b651ad20
9950Author: Gaetan Nadon <memsize@videotron.ca>
9951Date:   Sun Nov 29 10:01:44 2009 -0500
9952
9953    Add .gitignore in /specs for generated files
9954    
9955    Being in /specs, it will apply for all 3 subdirs
9956
9957commit f45d39d37aab04742e44cd8c3c993aad7587e40c
9958Author: Gaetan Nadon <memsize@videotron.ca>
9959Date:   Fri Nov 27 20:56:03 2009 -0500
9960
9961    Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
9962    
9963    Now that the INSTALL file is generated.
9964    Allows running make maintainer-clean.
9965
9966commit 464390f16d7ed4aa5bf80f89863ba92273075ec2
9967Author: Gaetan Nadon <memsize@videotron.ca>
9968Date:   Wed Oct 28 14:09:10 2009 -0400
9969
9970    INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
9971    
9972    Add missing INSTALL file. Use standard GNU file on building tarball
9973    README may have been updated
9974    Remove AUTHORS file as it is empty and no content available yet.
9975    Remove NEWS file as it is empty and no content available yet.
9976
9977commit 6360e7f0ce6a75da2bed33ede7fea783a1fb80e1
9978Author: Gaetan Nadon <memsize@videotron.ca>
9979Date:   Tue Oct 27 15:07:25 2009 -0400
9980
9981    Deploy the new XORG_DEFAULT_OPTIONS #24242
9982    
9983    This macro aggregate a number of existing macros that sets commmon
9984    X.Org components configuration options. It shields the configuration file from
9985    future changes.
9986
9987commit d02f943c98fde2f14319bc57fd9ad77eb9a2a572
9988Author: Gaetan Nadon <memsize@videotron.ca>
9989Date:   Mon Oct 26 22:08:42 2009 -0400
9990
9991    Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
9992    
9993    ChangeLog filename is known to Automake and requires no further
9994    coding in the makefile.
9995
9996commit f77c89c751a6a63c8ef11ecdddca2aed11ff6e29
9997Author: Gaetan Nadon <memsize@videotron.ca>
9998Date:   Thu Oct 22 12:34:19 2009 -0400
9999
10000    .gitignore: use common defaults with custom section # 24239
10001    
10002    Using common defaults will reduce errors and maintenance.
10003    Only the very small or inexistent custom section need periodic maintenance
10004    when the structure of the component changes. Do not edit defaults.
10005
10006commit 46c7b0e9d0d85cf5ccc0d40d19821fcc3335503b
10007Author: Alan Coopersmith <alan.coopersmith@sun.com>
10008Date:   Thu Nov 12 23:05:40 2009 -0800
10009
10010    Add compose-check.pl to EXTRA_DIST
10011    
10012    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10013
10014commit 54c64267cc8bc98641cc39a22cb7bd71673e89e0
10015Author: Julien Cristau <jcristau@debian.org>
10016Date:   Thu Oct 29 17:17:24 2009 +0100
10017
10018    man: fix XCopyGC argument order
10019    
10020    Ubuntu bug#408337
10021
10022commit aad10032651cdc2a53b359035954454a28d6db67
10023Author: Alan Coopersmith <alan.coopersmith@sun.com>
10024Date:   Fri Oct 23 13:55:14 2009 -0700
10025
10026    libX11 1.3.2
10027    
10028    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10029
10030commit 6303ada89cb228c0f9656036f798703afb42fc29
10031Author: Peter Hutterer <peter.hutterer@who-t.net>
10032Date:   Wed Oct 21 12:42:07 2009 +1000
10033
10034    Add smiley faces to compose sequences.
10035    
10036    I wonder how we could have lasted that long without them.
10037    
10038    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
10039    Acked-by: Daniel Stone <daniel@fooishbar.org>
10040    Acked-By: James Cloos <cloos@jhcloos.com>
10041
10042commit 0e104ebd8628803c27e36b16922ad1edd891325a
10043Author: Alan Coopersmith <alan.coopersmith@sun.com>
10044Date:   Thu Oct 22 23:12:30 2009 -0700
10045
10046    Add man page for Compose file format
10047    
10048    Based on grammar description in modules/im/ximcp/imLcPrs.c and
10049    note on XFree86 changes formerly found in xorg-docs RELNOTES.sgml
10050    
10051    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10052
10053commit 9c95f2af7c442b3a59b1a30cf804f1ef4e7fc5b5
10054Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
10055Date:   Tue Oct 20 12:46:03 2009 -0700
10056
10057    Add extra configuration and sanity checks for groff and ps2pdf
10058    
10059    1) Add AC_ARG_VAR for GROFF and PS2PDF to inform users of these
10060       environment variables.
10061    2) Check that groff -ms works
10062    
10063    Some distributions ship the ms macros as a separate package which may
10064    not be installed together with groff, so we need to make sure that groff
10065    works and the required macros are actually installed before attempting
10066    to build the specs.
10067    
10068    Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
10069    Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
10070    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
10071
10072commit d3f801fd2f9198eaad6797414dba652f9c006c6d
10073Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
10074Date:   Sun Oct 18 17:34:53 2009 -0500
10075
10076    Fix VPATH build of libX11 specs
10077    
10078    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
10079
10080commit ad15e1a89d30ccc11d80745897b83def1448e8c0
10081Author: Alan Coopersmith <alan.coopersmith@sun.com>
10082Date:   Sat Oct 17 16:14:34 2009 -0700
10083
10084    libX11 1.3.1
10085    
10086    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10087
10088commit 0cbf98c17a7484bb58b2464b98d63bb3b4ea2594
10089Author: Alan Coopersmith <alan.coopersmith@sun.com>
10090Date:   Sat Oct 17 16:28:25 2009 -0700
10091
10092    Fix make distcheck
10093    
10094    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10095
10096commit 082e62ad268ef16a3bebc5a3c9fa008dbdc483ed
10097Author: Alan Coopersmith <alan.coopersmith@sun.com>
10098Date:   Fri Oct 16 19:25:35 2009 -0700
10099
10100    Use $(AM_V_GEN) to silence echo commands for generating shadow man pages
10101    
10102    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10103
10104commit 4e66da0783b2e5e3b288aaecd3c89396ed425c20
10105Author: Alan Coopersmith <alan.coopersmith@sun.com>
10106Date:   Wed Oct 14 16:18:24 2009 -0700
10107
10108    Move libX11 & XIM/locale specs from xorg-docs
10109    
10110    If groff is found, and --disable-specs is not passed to configure,
10111    specs will be converted to text, html and ps (or pdf if ps2pdf is
10112    found) and installed to $(docdir)
10113    
10114    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10115
10116commit 5d3d817a42ddcc8d0c6efd33efd1442fe14f5c6b
10117Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
10118Date:   Tue Oct 13 19:15:51 2009 -0500
10119
10120    Provide _Xsetlocale compat wrappers on Cygwin
10121    
10122    Previous versions of Cygwin did not have proper locale support, so Cygwin/X
10123    defined X_LOCALE, using _Xsetlocale instead.  Cygwin 1.7 has added locale
10124    support, but we can't remove the _Xsetlocale entry point without breaking
10125    ABI.
10126    
10127    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
10128
10129commit 2c8b3a877a713bb66a6316a7051b43c46af6e1a0
10130Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
10131Date:   Tue Oct 13 19:15:49 2009 -0500
10132
10133    dolt: add Cygwin to supported platforms
10134    
10135    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
10136
10137commit a2c8e3e34b15b57ff881a52101fc961a602f35e4
10138Author: Alan Coopersmith <alan.coopersmith@sun.com>
10139Date:   Wed Oct 14 13:23:30 2009 -0700
10140
10141    Recognize XSUNBUFFERSIZE alias for XLIBBUFFERSIZE on Solaris
10142    
10143    Also fix indenting of the XLIBBUFFERSIZE code to match surrounding code
10144    
10145    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10146
10147commit 34ddfca7b7d58240b0fe74bec6b2e0652d15c051
10148Author: Jon TURNEY <jon.turney@dronecode.org.uk>
10149Date:   Tue Feb 10 17:47:25 2009 +0000
10150
10151    Include sys/select.h for select() and struct timeval, if it exists
10152    
10153    This is a cygwin build fix
10154
10155commit 383165916ddac91740d4c780174d4c0d07cdb994
10156Author: Xake <xake@rymdraket.net>
10157Date:   Sun Sep 27 11:16:36 2009 +0200
10158
10159    Use AM_V_GEN instead of customized macros for AM_SILENT_RULES
10160    
10161    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10162
10163commit 854269d55cdda8caf425515bfed2855e211a5ada
10164Author: Julien Cristau <jcristau@debian.org>
10165Date:   Tue Oct 6 16:11:24 2009 +0200
10166
10167    configure: quote argument to m4_pattern_forbid
10168    
10169    Without this, configure spits out
10170    ../configure: line 12364: ac_fn_c_check_member: command not found
10171    ../configure: line 12378: ac_fn_c_check_type: command not found
10172    
10173    Also anchor the pattern to make it stricter.
10174    
10175    Signed-off-by: Julien Cristau <jcristau@debian.org>
10176
10177commit 3bb020587ce74e0737ec7aceb20041f1e77d3b87
10178Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
10179Date:   Thu Oct 1 22:20:38 2009 -0700
10180
10181    Split CFLAGS into CPPFLAGS and CFLAGS
10182    
10183    On some build systems, CPPFLAGS is set to "-I/some/prefix/include".  If older
10184    X11 headers are in /some/prefix/include, they will be preferred over the
10185    shipped headers.  This corrects that problem.
10186
10187commit d54caf1c9c55af8247621b7ba6afb20b23699839
10188Author: Peter Hutterer <peter.hutterer@who-t.net>
10189Date:   Fri Oct 2 10:59:08 2009 +1000
10190
10191    libX11 1.3
10192    
10193    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
10194
10195commit dd201bcf9e7f8863b7ef32273a5ef021678133c1
10196Author: Peter Hutterer <peter.hutterer@who-t.net>
10197Date:   Fri Oct 2 12:10:29 2009 +1000
10198
10199    nls: remove duplicate Compose sequences from pt_BR.UTF-8
10200    
10201    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
10202
10203commit a293ae9e83739067fc92db1a39c262857bc2283e
10204Author: Peter Hutterer <peter.hutterer@who-t.net>
10205Date:   Fri Sep 25 11:19:41 2009 +1000
10206
10207    Add XF86TouchpadToggle to XKeysymDB
10208    
10209    Lenovo laptops provide a key to enable or disable the touchpad and the
10210    trackstick. This key is usually located on Fn + F8.
10211    
10212    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
10213    Acked-by: Adam Jackson <ajax@redhat.com>
10214
10215commit 69839f8903a24eab08f17a781b3797fb64dce9cf
10216Author: Alan Coopersmith <alan.coopersmith@sun.com>
10217Date:   Sun Sep 27 10:34:16 2009 -0700
10218
10219    Bug 24173: libX11 from git fails to build with automake older then 1.11
10220    
10221    AM_CONDITIONAL must come *before* the AC_OUTPUT that creates the
10222    Makefiles, instead of after.
10223    <http://bugs.freedesktop.org/show_bug.cgi?id=24173>
10224    
10225    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10226
10227commit f5effd041f58ef07703cca2b4f396758811e1eec
10228Author: Alan Coopersmith <alan.coopersmith@sun.com>
10229Date:   Wed Apr 15 10:59:23 2009 -0700
10230
10231    Resolve conflicting Compose sequences in iso8859-2, el_GR.UTF-8 & pt_BR.UTF-8
10232    
10233    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10234
10235commit 3843778358d3a0cd6a2d07dba5dd061248053ac9
10236Author: Alan Coopersmith <alan.coopersmith@sun.com>
10237Date:   Wed Apr 15 10:56:09 2009 -0700
10238
10239    Add perl script to check for duplicate or conflicting compose file entries
10240    
10241    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10242
10243commit 19cc5e1fa17a285045662820a8b4de2a0f9a194d
10244Author: Alan Coopersmith <alan.coopersmith@sun.com>
10245Date:   Fri Sep 18 17:10:04 2009 -0700
10246
10247    Use make rules instead of shell for loops to generate shadow man pages
10248    
10249    Allows parallel make and simpler build logs/error reporting
10250    
10251    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10252
10253commit 7dabcac973d0b6692a3cd62bd6d8e0467b24200b
10254Author: Alan Coopersmith <alan.coopersmith@sun.com>
10255Date:   Fri Sep 18 16:58:53 2009 -0700
10256
10257    Add AM_SILENT_RULES support for cpp rules for man & nls files
10258    
10259    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10260
10261commit bfa19cddd8546b4930a773f3bbd81137c362d82b
10262Author: Alan Coopersmith <alan.coopersmith@sun.com>
10263Date:   Fri Sep 18 16:58:16 2009 -0700
10264
10265    Update to using xorg-macros 1.3 & XORG_DEFAULT_OPTIONS
10266    
10267    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10268
10269commit 51396066c8003a96a6399c9a4bed2a81e512b582
10270Author: Mikko Niskanen <mikko.niskanen@iki.fi>
10271Date:   Fri Sep 4 10:11:15 2009 +1000
10272
10273    Fix wrong typedef on HP-UX (#18998)
10274    
10275    shl_dt doesn't exist, the type is shl_t.
10276    
10277    X.Org Bug 18998 <http://bugs.freedesktop.org/show_bug.cgi?id=18998>
10278    
10279    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
10280
10281commit 615220a312b9430a580fe6dcf51703c6ef244f66
10282Author: Paul Bender <pebender@gmail.com>
10283Date:   Fri Sep 4 09:57:10 2009 +1000
10284
10285    Don't require xdmcp in configure.ac (#22583)
10286    
10287    X.Org Bug 22583 <http://bugs.freedesktop.org/show_bug.cgi?id=22583>
10288    
10289    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
10290
10291commit 20f9ecd86ad2a9ac6966f7eee32234cb5ef77c29
10292Author: Peter Hutterer <peter.hutterer@who-t.net>
10293Date:   Thu Sep 3 14:02:44 2009 +1000
10294
10295    man: fix parameters to XkbAllocGeomOverlay{Rows|Keys} (#23499)
10296    
10297    X.Org Bug 23499 <http://bugs.freedesktop.org/show_bug.cgi?id=23499>
10298    
10299    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
10300
10301commit c2814a614dc4d9409bfa0f44c18bfd69ad7f7b85
10302Author: Peter Hutterer <peter.hutterer@who-t.net>
10303Date:   Thu Sep 3 12:05:25 2009 +1000
10304
10305    man: XQueryTree may return BadWindow. (#23416)
10306    
10307    X.Org Bug 23416 <http://bugs.freedesktop.org/show_bug.cgi?id=XXX>
10308    
10309    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
10310
10311commit dbe98d456ccc6eeca9fa3e241a3db0a4d83c5a65
10312Author: Alan Coopersmith <alan.coopersmith@sun.com>
10313Date:   Fri Aug 28 23:07:58 2009 +0800
10314
10315    Fix version tag in .TH line of several XKB man pages
10316    
10317    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10318
10319commit bf24400936c10af6f5aa0c75cfe2207ab9b680b4
10320Author: Alan Coopersmith <alan.coopersmith@sun.com>
10321Date:   Fri Aug 28 23:04:38 2009 +0800
10322
10323    XkbSetDeviceButtonActions.man: remove non-existent actions argument
10324    
10325    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10326
10327commit 53affa9335116f2d367f041e6502a411d4619e47
10328Author: Alan Coopersmith <alan.coopersmith@sun.com>
10329Date:   Fri Aug 28 23:00:17 2009 +0800
10330
10331    XkbQueryExtension.man: Arguments should be pointers
10332    
10333    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10334
10335commit 6233948885acc5873a5abddfff235afec555f3c2
10336Author: Alan Coopersmith <alan.coopersmith@sun.com>
10337Date:   Fri Aug 28 22:53:03 2009 +0800
10338
10339    XkbSAActionSetCtrls.man: Fix typo in formatting macro
10340    
10341    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10342
10343commit 28a9ca57cdec4aa9ca92322f963b01f0c2daf47a
10344Author: Alan Coopersmith <alan.coopersmith@sun.com>
10345Date:   Fri Aug 28 22:49:31 2009 +0800
10346
10347    Convert Xkb API man pages to ANSI prototypes
10348    
10349    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10350
10351commit fa2eecca85baab9616f7143cc1a853a594b4a90c
10352Author: James Cloos <cloos@jhcloos.com>
10353Date:   Mon Aug 24 06:35:17 2009 -0400
10354
10355    Add some (Serbian) Cyrillic NFD sequences.
10356    
10357    A number of characters in use in the various countries which use the
10358    Cyrillic script do not appear as pre-composed characters in The UCS
10359    or Unicode; they are only available as combining-character sequences.
10360    
10361    This commit adds support for using (prefix) dead keys and Multi_key-
10362    initiated sequences to enter a number of these combining-character
10363    sequences.  This ensures that users can enter these scripts even
10364    when using the current Cyrillic keymaps, which lack support for
10365    the combining characters.
10366    
10367    Please see the discussions on the xkb mailing list.
10368    
10369    Signed-off-by: James Cloos <cloos@jhcloos.com>
10370
10371commit d1bdc909f9246119696c8b0d9afb7bd8afb71b60
10372Author: Julien Cristau <jcristau@debian.org>
10373Date:   Wed Aug 5 18:14:23 2009 +0200
10374
10375    man/xkb: delete spurious newline in .TH headers
10376
10377commit ee723b83b24682db833a2f0abd96cd319b8a62af
10378Author: Julien Cristau <jcristau@debian.org>
10379Date:   Wed Aug 5 16:45:19 2009 +0200
10380
10381    man: use __libmansuffix__ instead of 3X11 for references to other pages
10382
10383commit 595e204feb82c798a92eea41fea03be6476ac181
10384Author: Julien Cristau <jcristau@debian.org>
10385Date:   Wed Aug 5 16:43:36 2009 +0200
10386
10387    man/xkb: use __libmansuffix__ instead of hardcoding 3Xkb for manpage sections
10388
10389commit 9da7e230d5320e1556ad2084fcd06ee7994385ea
10390Author: Peter Hutterer <peter.hutterer@who-t.net>
10391Date:   Wed Aug 5 14:15:02 2009 +1000
10392
10393    Bump to 1.2.99.901 (1.3 RC1)
10394    
10395    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
10396
10397commit 8f78c7b4e3570cd46c5a220982963c17fe2157b8
10398Author: Filippo Giunchedi <filippo@debian.org>
10399Date:   Sat Jun 6 16:56:54 2009 +0200
10400
10401    nls: add {left,right}wards arrow to compose table
10402    
10403    Debian bug#532117 <http://bugs.debian.org/532117>
10404    
10405    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
10406
10407commit 7949bfa00390241d994f32463e50d4bd78920568
10408Author: Julien Cristau <jcristau@debian.org>
10409Date:   Fri Jul 31 13:33:52 2009 +0200
10410
10411    Update library version for new symbols
10412    
10413    Commit 554f755e5545f63d3c8f299297927238da155773 added generic event
10414    cookie handling.  Bump libX11 version number accordingly.
10415    
10416    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
10417
10418commit 640fec5f4feacd01a00eea3dcd4edb220907d3dc
10419Author: Julien Cristau <jcristau@debian.org>
10420Date:   Sun Aug 2 17:18:31 2009 +0200
10421
10422    Add _XFUNCPROTOBEGIN/END to Xlib-xcb.h
10423    
10424    X.Org bug#22252 <https://bugs.freedesktop.org/show_bug.cgi?id=22252>
10425    
10426    Reported-by: Riku Salminen <rsalmin2@cc.hut.fi>
10427    Signed-off-by: Julien Cristau <jcristau@debian.org>
10428
10429commit bc06d49e9dac1836d6824769ddb2ac5ba9f14df7
10430Author: Peter Hutterer <peter.hutterer@who-t.net>
10431Date:   Wed Jul 29 08:44:09 2009 +1000
10432
10433    Fix compiler warning 'unused variable qelt'
10434    
10435    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
10436
10437commit 03f4907e14f5755e72309f08742977b871e81e33
10438Author: Peter Hutterer <peter.hutterer@who-t.net>
10439Date:   Wed Jul 29 08:34:57 2009 +1000
10440
10441    Add utlist.h to the Makefile.am
10442    
10443    utlist.h contains the linked list macros, it was added with the recent
10444    addition of event cookies but utlist.h wasn't added to the Makefile.am. As a
10445    result, make dist failed.
10446    
10447    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
10448
10449commit 554f755e5545f63d3c8f299297927238da155773
10450Author: Peter Hutterer <peter.hutterer@who-t.net>
10451Date:   Fri Jun 26 11:27:43 2009 +1000
10452
10453    Add generic event cookie handling to libX11.
10454    
10455    Generic events require more bytes than Xlib provides in the standard XEvent.
10456    Memory allocated by the extension and stored as pointers inside the event is
10457    prone to leak by simple 'while (1) { XNextEvent(...); }' loops.
10458    
10459    This patch adds cookie handling for generic events. Extensions may register
10460    a cookie handler in addition to the normal event vectors. If an extension
10461    has registered a cookie handler, _all_ generic events for this extensions
10462    must be handled through cookies. Otherwise, the default event handler is
10463    used.
10464    
10465    The cookie handler must return an XGenericEventCookie with a pointer to the
10466    data.The rest of the event (type, serialNumber, etc.) are to be filled as
10467    normal. When a client retrieves such a cookie event, the data is stored in
10468    an internal queue (the 'cookiejar'). This data is freed on the next call to
10469    XNextEvent().
10470    
10471    New extension interfaces:
10472        XESetWireToEventCookie(display, extension_number, cookie_handler)
10473    
10474    Where cookie_handler must set cookie->data. The data pointer is of arbitray
10475    size and type but must be a single memory block. This memory block
10476    represents the actual extension's event.
10477    
10478    New client interfaces:
10479        XGetEventData(display, *cookie);
10480        XFreeEventData(display, *cookie);
10481    
10482    If the client needs the actual event data, it must call XGetEventData() with
10483    the cookie. This returns the data pointer (and removes it from the cookie
10484    jar) and the client is then responsible for freeing the event with
10485    XFreeEventData(). It is safe to call either function with a non-cookie
10486    event. Events unclaimed or not handled by the XGetEventData() are cleaned up
10487    automatically.
10488    
10489    Example client code:
10490        XEvent event;
10491        XGenericEventCookie *cookie = &ev;
10492    
10493        XNextEvent(display, &event);
10494        if (XGetEventData(display, cookie)) {
10495            XIEvent *xievent = cookie->data;
10496            ...
10497        } else if (cookie->type == GenericEvent) {
10498            /* handle generic event */
10499        } else {
10500            /* handle extension/core event */
10501        }
10502        XFreeEventData(display, cookie);
10503    
10504    Cookies are not multi-threading safe. Clients that use XGetEventData() must
10505    lock between XNextEvent and XGetEventData to avoid other threads freeing
10506    cookies.
10507    
10508    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
10509
10510commit d7675cb8fa7155e7aff1459636a117a97aa1bf28
10511Author: Peter Hutterer <peter.hutterer@who-t.net>
10512Date:   Mon Jul 6 13:17:35 2009 +1000
10513
10514    Bump to 1.2.99.1
10515    
10516    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
10517
10518commit 75fe48e7a42a685d7098e8d7108b9b956c471563
10519Author: Peter Hutterer <peter.hutterer@who-t.net>
10520Date:   Fri Jul 10 14:07:34 2009 +1000
10521
10522    Bump to 1.2.2
10523    
10524    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
10525
10526commit 5d0fe0e0e92759af5667c5dca2eacb1b6f2d66ea
10527Author: Peter Hutterer <peter.hutterer@who-t.net>
10528Date:   Thu Jul 2 09:10:25 2009 +1000
10529
10530    XMaskEvent/XCheckMaskedEvents must not check for GenericEvents.
10531    
10532    GenericEvent cannot be selected for in the core event masks and they must
10533    thus be treated like extension events.
10534    
10535    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
10536
10537commit c1bf65b89f4e361f6178a73dd5334c8f2bd95732
10538Author: Peter Hutterer <peter.hutterer@who-t.net>
10539Date:   Thu Jul 2 09:06:05 2009 +1000
10540
10541    XWindowEvent/XCheckWindowEvent must not return GenericEvents.
10542    
10543    GenericEvents have no fixed position for the window, so they must be treated
10544    like extension events.
10545    
10546    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
10547
10548commit 38f9054554d63525d2dd51aafb5eb57821158ab9
10549Author: Alan Coopersmith <alan.coopersmith@sun.com>
10550Date:   Mon Jun 15 19:00:43 2009 -0700
10551
10552    Drop ancient USG SysV #ifdefs
10553    
10554    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10555
10556commit 7bfe1323f16a1a69cc474659f7ac0c2570b1cf42
10557Author: Adam Jackson <ajax@redhat.com>
10558Date:   Fri Jun 12 12:44:01 2009 -0400
10559
10560    Remove X_NOT_STDC_ENV usage. (#6527)
10561
10562commit 6dd74d7fb414ca1e99bae5c13e333961f396eb36
10563Author: Julien Cristau <jcristau@debian.org>
10564Date:   Fri May 29 11:18:11 2009 +0200
10565
10566    nls: remove more duplicated aliases
10567    
10568    Signed-off-by: Julien Cristau <jcristau@debian.org>
10569
10570commit e4b0899f516da224010e68bd2d953d5293d94993
10571Author: parag <parag@rawhideTM.pnq.redhat.com>
10572Date:   Thu May 28 11:29:35 2009 +0530
10573
10574    nls: Add pa_PK locale information and make pa_IN as default for pa.
10575    
10576    X.Org bug#21954 <http://bugs.freedesktop.org/show_bug.cgi?id=21954>
10577    
10578    [jcristau: removed the pa_PK.UTF-8 alias to itself]
10579    
10580    Signed-off-by: parag <pnemade@redhat.com>
10581    Signed-off-by: Julien Cristau <jcristau@debian.org>
10582
10583commit f0ea1f6d51145592f8617854f9320ec5dbff3299
10584Author: Julien Cristau <jcristau@debian.org>
10585Date:   Fri May 29 10:58:20 2009 +0200
10586
10587    nls: remove broken sd_IN.UTF-8 alias
10588    
10589    Signed-off-by: Julien Cristau <jcristau@debian.org>
10590
10591commit e29e010dabdb17d6498f2ef1786f69b8830c18ca
10592Author: Julien Cristau <jcristau@debian.org>
10593Date:   Fri May 29 10:57:43 2009 +0200
10594
10595    nls: remove duplicated en_US* aliases
10596    
10597    Signed-off-by: Julien Cristau <jcristau@debian.org>
10598
10599commit a89a300d87852c84389ad97db66dcb8930cb45dd
10600Author: Caolan McNamara <caolanm@redhat.com>
10601Date:   Thu May 21 18:41:05 2009 +0200
10602
10603    man: missing space in XAllocColor man page
10604    
10605    X.Org bug#21854 <http://bugs.freedesktop.org/show_bug.cgi?id=21854>
10606
10607commit c1c001e36504fd304f76f69bf6af3643225c49ea
10608Author: James Cloos <cloos@jhcloos.com>
10609Date:   Wed May 13 13:03:54 2009 -0400
10610
10611    [nls] Replace remaining UCS Combining Characters in Compose sequences.
10612    
10613    The replaces the instances of keysyms which match <U03[0-6][0-9A-Fa-f]>,
10614    where the keysym is used as a dead_key, with an actual dead_key symbol.
10615    
10616    The only remaining instances of UCS combining characters in the
10617    compose sequences are of U0338 COMBINING LONG SOLIDUS OVERLAY
10618    used as a suffix in Multi_key-initiated sequences to create
10619    mathematics characters such as ∉ U+2209 NOT AN ELEMENT OF
10620    from ∈ U+2208 ELEMENT OF.
10621
10622commit e2b0bad3d3b9e9ca781fc264eb7584afbe2a1a4f
10623Author: James Cloos <cloos@jhcloos.com>
10624Date:   Wed May 13 09:58:59 2009 -0400
10625
10626    [nls] Remove extraneous instances of UCS Combining Characters in Compose sequences.
10627    
10628    This removes those instances of keysyms which match <U03[0-6][0-9A-Fa-f]>,
10629    where the matching keysym is used as a dead_key, and for which alternative
10630    compose sequences exist.
10631
10632commit 79f47e6dff2f0a0b673bbfecc47528edca814baa
10633Author: James Cloos <cloos@jhcloos.com>
10634Date:   Fri May 8 20:11:54 2009 -0400
10635
10636    [nls] Remove combining_ keysyms from the Compose files
10637    
10638    Some of the UTF-8 Compose tables included combining_ keysyms in
10639    the compose sequences as though they were dead symbols.  This
10640    is contrary to how combining characters are used in the UCS.
10641    Therefore, those lines have been removed from the Compose tables.
10642    
10643    There were also some combining_ keysyms as targets.  As those
10644    are not included in x11proto’s keysymdef.h, and as those do
10645    exist there as Uxxxx keysyms, they are replaced with the Uxxxx
10646    keysym names.
10647    
10648    This addresses http://bugzilla.freedesktop.org/show_bug.cgi?id=5107
10649    and is based on attachment 25644 by samuel.thibault@ens-lyon.org.
10650    
10651    Signed-off-by: James Cloos <cloos@jhcloos.com>
10652
10653commit 4a08a3dfbda497b2be46e3e5fe6b777815ea27f9
10654Author: parag <pnemade@redhat.com>
10655Date:   Tue May 5 16:50:47 2009 +0530
10656
10657    libX11: Add new Indic language information to nls directory files. #21560
10658    
10659    Signed-off-by: parag <pnemade@redhat.com>
10660
10661commit aaf81096eb44b4c2812108721ba02738391884da
10662Author: Alan Coopersmith <alan.coopersmith@sun.com>
10663Date:   Sat May 2 01:38:14 2009 -0700
10664
10665    Correct return type in XkbGetKeyboard man page
10666    
10667    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10668
10669commit 2bef065b70f70af520b5de8fb23529254d15f003
10670Author: Christoph Pfister <christophpfister@gmail.com>
10671Date:   Mon Apr 27 22:32:57 2009 -0700
10672
10673    X.Org Bug #21117: crash in get_rotate_fontname (omGeneric.c)
10674    
10675    http://bugs.freedesktop.org/show_bug.cgi?id=21117
10676    
10677    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10678
10679commit 5c1cde105db10df24d3c532f032cbc59050c7313
10680Author: Alan Coopersmith <alan.coopersmith@sun.com>
10681Date:   Fri Apr 17 22:14:47 2009 -0700
10682
10683    Use AC_USE_SYSTEM_EXTENSIONS instead of hand-rolled check for _GNU_SOURCE
10684    
10685    Raises minimum autoconf version required to 2.60
10686    
10687    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10688
10689commit 84b7a91ef84f345384e4b0e13907385ca3ca3255
10690Author: Julien Cristau <jcristau@debian.org>
10691Date:   Tue Apr 14 15:59:57 2009 +0100
10692
10693    Fix fi_FI.UTF-8, again
10694    
10695    Commit 97fc6babd4ccaf300e25708868aa2a738893dc30 "NLS: Add UTF-8 compose
10696    file for Finnish" made fi_FI.UTF-8 use a broken empty XLC_LOCALE file.
10697    This reverts it back to using the en_US.UTF-8 one.
10698
10699commit 128daff4422f973ea40dd1e31b2db230e643549e
10700Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
10701Date:   Thu Apr 9 12:01:07 2009 +0700
10702
10703    Thai XIM not retrieve MB surrounding on UTF-8 LC
10704    
10705    On th_TH.UTF-8 locale, Thai XIM rejects all combining characters for GTK+ apps
10706    that use X Input Method.
10707    
10708    This is because GTK+ imxim immodule passes surrounding text in locale encoding,
10709    which is UTF-8 for UTF-8 locales. But current Thai XIM in Xlib assumes the
10710    multi-byte StringConversionText response for the StringConversionCallback to
10711    always be TIS-620, by retrieving a single byte and using it as-is.
10712    
10713    If the Thai XIM tries to convert the multi-byte text based on locale codeset
10714    before using it, it will work again.
10715    
10716    X.Org But 12759 <http://bugs.freedesktop.org/show_bug.cgi?id=12759>
10717    
10718    Signed-off-by: Theppitak Karoonboonyanan <thep@linux.thai.net>
10719    Signed-off-by: Julien Cristau <jcristau@debian.org>
10720
10721commit e09f0d227fbf95b6252759af9d426efd57686f9f
10722Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
10723Date:   Thu Apr 9 11:47:55 2009 +0700
10724
10725    Thai XIM not filters when NumLock or CapsLock is on
10726    
10727    The Thai XIM component in libx11 activated on 'th*' locales normally filters
10728    input sequence according to orthographic rules. However, when NumLock/CapsLock
10729    is on, this stops working. All sequences are passed through.
10730    
10731    This is caused by missing masks in _XimThaiFilter(), which normally screens out
10732    certain special keys from entering orthographic rules. Unfortunately, this
10733    included events with NumLock/CapsLock on. Negating the masks from the check
10734    allows the events to be tested by the rules.
10735    
10736    X.Org Bug 12517 <http://bugs.freedesktop.org/show_bug.cgi?id=12517>
10737    
10738    Signed-off-by: Theppitak Karoonboonyanan <thep@linux.thai.net>
10739    Signed-off-by: Julien Cristau <jcristau@debian.org>
10740
10741commit d108d3c706af3502820b5202564488ea19908b77
10742Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
10743Date:   Thu Apr 9 11:25:25 2009 +0700
10744
10745    CharSet-to-CompoundText Conversion Failed for Thai Locales
10746    
10747    SCIM fails to commit Thai input characters on Thai locales, because it commits
10748    string in compound text form, which was converted via
10749    XwcTextListToTextProperty(). But the XLC_LOCALE for th_TH and th_TH.UTF-8
10750    declares cs1's ct_encoding as TIS620-0:GR, which was commented out in
10751    src/xlibi18n/lcCT.c default_ct_data, in favor of ISO8859-11 ESC sequence.
10752    So, declaring cs1 as ISO8859-11:GR instead makes it work.
10753    
10754    Besides, for th_TH.UTF-8, adding cs2 class with ISO10646-1 encoding also adds
10755    support for UTF-8 input.
10756    
10757    And, along discussion in the bug, a similar problem was found for fontset, too,
10758    by causing delays on X apps startups on systems without tis620-0 fonts. This
10759    is normally the case, as mkfontdir and mkfontscale generate iso8859-11 entries
10760    by default for Thai X fonts. So, Thai fontset charset is also patched.
10761    
10762    X.Org Bug 16475 <http://bugs.freedesktop.org/show_bug.cgi?id=16475>
10763    
10764    Signed-off-by: Theppitak Karoonboonyanan <thep@linux.thai.net>
10765    Signed-off-by: Julien Cristau <jcristau@debian.org>
10766
10767commit fd62d3318c846cd43d66a505946e94704d7d83dc
10768Author: Alan Coopersmith <alan.coopersmith@sun.com>
10769Date:   Wed Apr 8 19:42:25 2009 -0700
10770
10771    Revert "Change masculine to ordmasculine in Compose file comments"
10772    
10773    This reverts commit 892b401d5acc055803a20e349ede0d64490f2230.
10774    
10775    As Julien Cristau correctly points out, I misread the Compose file grammar
10776    in modules/im/ximcp/imLcPrs.c, and those are keysyms, not comments, and
10777    the keysym is named XK_masculine in keysymdef.h.   This change is thus a
10778    bug in the Solaris compose tables to be fixed, not an improvement to bring
10779    upstream.
10780
10781commit eac57c77afdf44f50692225b8b0345a7c927bc84
10782Author: Alan Coopersmith <alan.coopersmith@sun.com>
10783Date:   Tue Apr 7 15:38:45 2009 -0700
10784
10785    Version bump: 1.2.1
10786    
10787    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10788
10789commit bfbec08baec33c5024510b0bcbbee6e4a8473e79
10790Author: Yaakov Selkowitz (Cygwin Ports maintainer) <yselkowitz@users.sourceforge.net>
10791Date:   Tue Apr 7 13:46:57 2009 -0700
10792
10793    Bug 20773: Xcursor dynamic loading on Cygwin
10794    
10795    X.Org Bug #20773 <http://bugs.freedesktop.org/show_bug.cgi?id=20773>
10796    Patch #24096 <http://bugs.freedesktop.org/attachment.cgi?id=24096>
10797    
10798    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10799
10800commit c8c41614911be4fa222fa22478677d263b41c751
10801Author: Alan Coopersmith <alan.coopersmith@sun.com>
10802Date:   Mon Apr 6 16:52:46 2009 -0700
10803
10804    Fix a several sparse warnings: Using plain integer as NULL pointer
10805    
10806    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10807
10808commit b336c3d0cc2aefc8926500cff5f76b5a3e803886
10809Author: Alan Coopersmith <alan.coopersmith@sun.com>
10810Date:   Mon Apr 6 16:32:05 2009 -0700
10811
10812    Further ansify prototypes & reduce #ifdefs in locking.c
10813    
10814    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10815
10816commit 892b401d5acc055803a20e349ede0d64490f2230
10817Author: Alan Coopersmith <alan.coopersmith@sun.com>
10818Date:   Mon Apr 6 10:50:09 2009 -0700
10819
10820    Change masculine to ordmasculine in Compose file comments
10821    
10822    Matches the ordfeminine name used for the matching character,
10823    and the ordmasculine name used in many font descriptions of the glyph.
10824    
10825    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10826
10827commit e3198b55dc16ec57346cc28aa8d34165ce8cde96
10828Author: Julien Cristau <jcristau@debian.org>
10829Date:   Fri Mar 13 13:52:33 2009 +0100
10830
10831    Add a ru_RU.UTF-8 locale
10832    
10833    Based on patch by Eugene Konev <ejka@imfi.kspu.ru> for X.Org 6.9.0.
10834    
10835    Debian bug#330144 <http://bugs.debian.org/330144>
10836    X.Org bug#15887 <http://bugs.freedesktop.org/show_bug.cgi?id=15887>
10837
10838commit d239de9452691d6f875e6e5ace3d499ec3bf14d9
10839Author: Alan Coopersmith <alan.coopersmith@sun.com>
10840Date:   Wed Mar 25 17:59:09 2009 -0700
10841
10842    Delete some unused "#ifdef notdef" static functions
10843    
10844    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10845
10846commit 4281892e31058ef3aecc96a5767824b34d88d415
10847Author: Alan Coopersmith <alan.coopersmith@sun.com>
10848Date:   Wed Mar 25 17:52:48 2009 -0700
10849
10850    Remove _XP_PRINT_SERVER_ #ifdefs from Xrm.c
10851    
10852    This copy of Xrm.c is never compiled into the Xprint server any more, so
10853    this old code-sharing #ifdef from the monolith tree isn't needed.
10854    
10855    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10856
10857commit 27a2e16e8ea11c1604e28645fae4d6ba4371d513
10858Author: Alan Coopersmith <alan.coopersmith@sun.com>
10859Date:   Tue Mar 17 18:38:58 2009 -0700
10860
10861    makekeys: combine malloc(strlen)+strcpy into strdup
10862    
10863    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10864
10865commit 78a894231ae8ec4959007b6d9b8d2a15d6333a1e
10866Author: Alan Coopersmith <alan.coopersmith@sun.com>
10867Date:   Tue Mar 17 15:42:19 2009 -0700
10868
10869    When makekeys fails to find a good hash, print error instead of divide-by-zero
10870    
10871    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10872
10873commit c9f84af591d15fbc3fa890bcd955d94f1ff82a0b
10874Author: Alan Coopersmith <alan.coopersmith@sun.com>
10875Date:   Tue Mar 17 14:59:16 2009 -0700
10876
10877    Remove ifdef checks for macII left over from ancient A/UX 3.0 support
10878    
10879    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10880
10881commit 4b90da0ffb32b791d915ecae11996cc2f2cac9a7
10882Author: Alan Coopersmith <alan.coopersmith@sun.com>
10883Date:   Mon Mar 16 18:37:49 2009 -0700
10884
10885    XErrorDB additions for DRI2 requests
10886    
10887    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10888
10889commit 273f45af1441be9d2135e4cac8c46ceb33470236
10890Author: Alan Coopersmith <alan.coopersmith@sun.com>
10891Date:   Mon Mar 16 18:35:44 2009 -0700
10892
10893    XErrorDB additions for XInput errors and new XInput 1.5 requests
10894    
10895    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10896
10897commit 90ef36f6336068183bf9d13ca972202db35b1202
10898Author: Alan Coopersmith <alan.coopersmith@sun.com>
10899Date:   Mon Mar 16 18:23:05 2009 -0700
10900
10901    XErrorDB additions for RANDR 1.3
10902    
10903    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10904
10905commit 124a4efaccf329f1a44f6b824e70278bdd1cad83
10906Author: Lubos Lunak <l.lunak@suse.cz>
10907Date:   Mon Mar 16 18:03:36 2009 -0700
10908
10909    XErrorDB updates for XTEST, RANDR, DAMAGE extensions
10910    
10911    From http://lists.freedesktop.org/archives/xorg/2008-January/031937.html
10912    
10913    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10914
10915commit 80811846e37b805fddb37c71589fd5f6f6037b3f
10916Author: Lubos Lunak <l.lunak@suse.cz>
10917Date:   Mon Mar 16 17:57:52 2009 -0700
10918
10919    XGetErrorText() fails for extension error codes equal to the error base
10920    
10921    From http://lists.freedesktop.org/archives/xorg/2008-January/031937.html
10922    
10923    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10924
10925commit da95ecbbdcacc483cd0b5fd7db1fb2e2543341bd
10926Author: Milos Komarcevic <miloskomarcevic@netscape.net>
10927Date:   Mon Mar 16 17:43:26 2009 -0700
10928
10929    Bug 11456: Serbian locale updates (sr_RS and sr_ME)
10930    
10931    X.Org Bug #11456 <http://bugs.freedesktop.org/show_bug.cgi?id=11456>
10932    Patch #23937 <http://bugs.freedesktop.org/attachment.cgi?id=23937>
10933    
10934    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10935
10936commit 934a6c0519a9e32505beee55b004f36c2a710217
10937Author: Alan Coopersmith <alan.coopersmith@sun.com>
10938Date:   Mon Mar 16 14:55:22 2009 -0700
10939
10940    Bug 10082: Compose entries for some standard mathematical operators
10941    
10942    X.Org Bug #10082 <http://bugs.freedesktop.org/show_bug.cgi?id=10082>
10943    
10944    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10945
10946commit abf4da1ed0f735ca7ce471dc13a0ec3677391486
10947Author: Alan Coopersmith <alan.coopersmith@sun.com>
10948Date:   Mon Mar 16 14:27:46 2009 -0700
10949
10950    Bug 14651: We need to add new locale specification for Belarusian Latin locale
10951    
10952    X.Org Bug #14651 <http://bugs.freedesktop.org/show_bug.cgi?id=14651>
10953    
10954    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10955
10956commit 837703c8651e1321a50147a8311c56e4758ce08a
10957Author: Caolan McNamara <caolanm@redhat.com>
10958Date:   Mon Mar 16 14:15:50 2009 -0700
10959
10960    Bug 20575: man page for XCreatePixmapFromBitmapData doesn't match signature
10961    
10962    X.Org Bug #20575 <http://bugs.freedesktop.org/show_bug.cgi?id=20575>
10963    Patch #23717 <http://bugs.freedesktop.org/attachment.cgi?id=23717>
10964    
10965    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10966
10967commit 22199018879055d8653e59d8236bef57164fac66
10968Author: Alan Coopersmith <alan.coopersmith@sun.com>
10969Date:   Mon Mar 16 13:28:18 2009 -0700
10970
10971    Correct locale alias for sh_BA.ISO8859-2@bosnia (should be sr, not nr)
10972    
10973    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10974
10975commit 4c63c27eab2b88f5556dbf72c36321f50f6de35e
10976Author: Alan Coopersmith <alan.coopersmith@sun.com>
10977Date:   Thu Mar 12 18:57:20 2009 -0700
10978
10979    Bug 9953: Please provide locale alias hu_HU.utf8
10980    
10981    X.Org Bug #9953 <http://bugs.freedesktop.org/show_bug.cgi?id=9953>
10982    Debian Bug #407573 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=407573>
10983    
10984    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10985
10986commit 501f4e0ada1690783ada05ad412e4b191ad55336
10987Author: Alan Coopersmith <alan.coopersmith@sun.com>
10988Date:   Thu Mar 12 17:38:21 2009 -0700
10989
10990    Bug 6820: Xlib shouldn't handle EAGAIN as a fatal IO error
10991    
10992    X.Org Bug #6820 <http://bugs.freedesktop.org/show_bug.cgi?id=6820>
10993    Patch #17637 <http://bugs.freedesktop.org/attachment.cgi?id=17637>
10994    
10995    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10996
10997commit 7b9c543e7210c7da204871c31a160e79d3a949b6
10998Author: Paul Bender <pebender@gmail.com>
10999Date:   Thu Mar 12 17:11:42 2009 -0700
11000
11001    Bug 15664: xau & xdmcp not needed in x11.pc dependencies when built with xcb
11002    
11003    X.Org bug #15664 <https://bugs.freedesktop.org/show_bug.cgi?id=15664>
11004    Patch #16128 <https://bugs.freedesktop.org/attachment.cgi?id=16128>
11005    
11006    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11007
11008commit fd2cf1ef66c2aff3dc758956c9e9e567b9892c06
11009Author: Xue Wei <Wei.Xue@Sun.COM>
11010Date:   Wed Mar 4 19:32:29 2009 -0800
11011
11012    Add UTF-8 locale entries for es_US, kk_KZ, mt_MT, and sh_BA
11013    
11014    Sun bug 6809309 Add new utf8 locales supported by Xlib
11015    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6809309>
11016    
11017    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11018
11019commit cb70c9bc43267577859a3674ca9de9be396ba69e
11020Author: Alan Coopersmith <alan.coopersmith@sun.com>
11021Date:   Mon Feb 23 19:29:15 2009 -0800
11022
11023    Add --with-locale-lib-dir configure option to set locale lib install dir
11024    
11025    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11026
11027commit ccd3584f0330db8dac90b9313c33ab8b5b2ec6af
11028Author: Alan Coopersmith <alan.coopersmith@sun.com>
11029Date:   Mon Feb 23 18:33:51 2009 -0800
11030
11031    Incorporate more locale names/aliases from Solaris libX11
11032    
11033    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11034
11035commit 83ce4daefdf544f801c7d666c89162690a36ce41
11036Author: Alan Coopersmith <alan.coopersmith@sun.com>
11037Date:   Mon Feb 23 18:32:34 2009 -0800
11038
11039    Incorporate char range comments from Solaris version of ksc5601.h
11040    
11041    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11042
11043commit ee279c84e34f1ebb8a6ff17d54ee146d11e29764
11044Author: Chris Ball <cjb@laptop.org>
11045Date:   Sat Feb 21 14:48:42 2009 -0500
11046
11047    Fix fi_FI locale install directory.
11048    
11049    fi_FI was setting "x11thislocaledir" to en_US, with the result that its
11050    locale data was written in that locale dir.
11051    
11052    Signed-off-by: Chris Ball <cjb@laptop.org>
11053
11054commit da6bbca07c796c69172a649405474f03bee66754
11055Author: Emilio Jesús Gallego Arias <egallego@babel.ls.fi.upm.es>
11056Date:   Sat Feb 21 20:17:23 2009 +0100
11057
11058    xcb_io: Avoid datatype overflow on AMD64 and friends.
11059
11060commit 4ef6491afa69e8441caee7bbebc583e6e796275e
11061Author: Chris Ball <cjb@laptop.org>
11062Date:   Sat Feb 21 12:51:03 2009 -0500
11063
11064    Build fix for fi_FI.
11065    
11066    Commit 642c4e928e770e0.. instructs make to enter nls/fi_FI, but no
11067    Makefile is written there by configure.
11068    
11069    Signed-off-by: Chris Ball <cjb@laptop.org>
11070
11071commit 642c4e928e770e012379539a6ce09e11c02f09a6
11072Author: Julien Cristau <jcristau@debian.org>
11073Date:   Sat Feb 21 03:12:05 2009 +0100
11074
11075    nls: actually use the fi_FI.UTF-8 files
11076    
11077    The subdir wasn't added to nls/Makefile.am
11078
11079commit 9bad8309ef289bb943651abf6967b24fa2252aac
11080Author: Alan Coopersmith <alan.coopersmith@sun.com>
11081Date:   Fri Feb 20 14:45:54 2009 -0800
11082
11083    flags member of Display structure needs to be marked volatile
11084    
11085    Since the Xlib multithreaded code checks the flags variable in _XFlushInt
11086    to see if the other threads are done yet, it has to be marked volatile so
11087    the compiler doesn't optimize out re-loading it on each trip through the
11088    while loop and end up in an impossible-to-exit infinite loop of CPU chewing.
11089    
11090    Part of fix for Sun bug 6409332: infinite loop in XFlushInt() on x86/32-bit
11091    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6409332>
11092    
11093    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11094
11095commit ef5c446395aa30d7b1096a112e241a81c5b358e7
11096Author: Xue Wei <Wei.Xue@Sun.COM>
11097Date:   Fri Feb 20 15:12:35 2009 -0800
11098
11099    Add nn_NO.UTF-8 to compose.dir.pre for Norwegian Nynorsk
11100    
11101    Sun bug 6691236: Swing applications dump core when locale is nn_NO.UTF-8
11102    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6691236>
11103    
11104    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11105
11106commit 3822f2654e9630167f0c6cae317b472c09771672
11107Author: Xue Wei <Wei.Xue@Sun.COM>
11108Date:   Fri Feb 20 15:03:51 2009 -0800
11109
11110    Add locale aliases for no_NO & sh_BA locale variants
11111    
11112    Fixes Sun bug id 6691219: xterm refuses to start in some locales
11113    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6691219>
11114    
11115    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11116
11117commit 63b6b5b5f522c0a606b32163c643edb64ca91d54
11118Author: Xue Wei <Wei.Xue@Sun.COM>
11119Date:   Fri Feb 20 14:23:11 2009 -0800
11120
11121    Add kk_KZ.UTF-8 to locale.dir.pre for Kazakhstan
11122    
11123    Fixes Sun bug id 6737254 ("kk_KZ.UTF-8 locale: In Java applications
11124     changing keyboard layout with gimlet does not work")
11125    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6737254>
11126    
11127    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11128
11129commit d497301707962f3b94542e999a36abffcfbd303d
11130Author: Julien Cristau <jcristau@debian.org>
11131Date:   Tue Feb 17 16:09:41 2009 +0100
11132
11133    Bump to 1.2
11134
11135commit 990e71361d1d7b79bf07b1dc93e4e905d4f1bdaf
11136Author: Julien Cristau <jcristau@debian.org>
11137Date:   Tue Feb 17 15:23:40 2009 +0100
11138
11139    Check Xmalloc return value in _XConnectXCB
11140    
11141    X.Org bug#19137 <http://bugs.freedesktop.org/show_bug.cgi?id=19137>
11142    
11143    Signed-off-by: Julien Cristau <jcristau@debian.org>
11144
11145commit b4b5893f69419ff577bbaa4d18f78e4ffd729a0c
11146Author: James Cloos <cloos@jhcloos.com>
11147Date:   Sat Feb 14 12:35:56 2009 -0500
11148
11149    dolt: allow older versions of bash to compile the library
11150    
11151    Cf xserver commit 7be6520d and bugzilla #19031.
11152
11153commit 20982d6866e24453642b0b592fa0f13a88aa747c
11154Author: Will Thompson <will@willthompson.co.uk>
11155Date:   Thu Feb 5 02:53:06 2009 +1100
11156
11157    NLS: Compose: Non-aliasing CCCP
11158    
11159    Oops, cccp aliased cc for question mark.  Upper-case it to avoid fail.
11160    
11161    Signed-off-by: Will Thompson <will@willthompson.co.uk>
11162    Signed-off-by: Daniel Stone <daniel@fooishbar.org> (sorry)
11163
11164commit f052665394f3f0319e93a98f1d5d4ea287e1dd07
11165Author: Will Thompson <will@willthompson.co.uk>
11166Date:   Wed Feb 4 14:51:11 2009 +0000
11167
11168    Add two essential compose sequences
11169    
11170    Signed-off-by: Will Thompson <will@willthompson.co.uk>
11171    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
11172
11173commit d7bea6fa909bf34c43efe0ca8239ab0f9f3a415f
11174Author: Alan Coopersmith <alan.coopersmith@sun.com>
11175Date:   Mon Feb 2 20:34:31 2009 -0800
11176
11177    Add README with pointers to mailing list, bugzilla & git repos
11178    
11179    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11180
11181commit f682c27e93512773122887d2cbabb1657af45d2e
11182Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
11183Date:   Mon Feb 2 16:36:39 2009 -0200
11184
11185    Check if a function argument is NULL.
11186    
11187      This was an addition to patch (also by me)
11188    https://bugs.freedesktop.org/attachment.cgi?id=14660
11189    that was not added when rediscovering/correcting the problem.
11190
11191commit 427e9d45d424b84efd9fc499aebf8d72392844c5
11192Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
11193Date:   Thu Feb 28 15:58:12 2008 -0300
11194
11195    Allow multiple inclusions of cursorfont.h, cosmetic patch.
11196
11197commit b91524a53e691f6a5d278fd8972b48a14ebeedeb
11198Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
11199Date:   Thu Feb 28 15:54:43 2008 -0300
11200
11201    Don't add prototypes for functions that don't exist.
11202    
11203    Note that a full review was not done, only for functions that receive
11204    char/short arguments, or one of it's parameters is a function pointer
11205    that requires char/short arguments.
11206
11207commit 537eb52fe266ac439c4b383bb04a70017b709911
11208Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
11209Date:   Thu Feb 28 15:50:27 2008 -0300
11210
11211    WORD64 compile fix. This bug catched on a overview of the code.
11212    
11213    The code is wrong since the first git revision, so it seens that it has
11214    not been compiled with WORD64 for quite some time, there is also another
11215    interesting code in xkb/XKBRdBuf.c:
11216      <hash>ifdef WORD64
11217      _XkbWriteCopyData32 Not Implemented Yet for sizeof(int)==8
11218      <hash>endif
11219    and possibly there are other similar problems.
11220
11221commit ffd0300fb74c6183208ae599133f2ded09e08d97
11222Author: Brian Rogers <brian@xyzw.org>
11223Date:   Sat Jan 31 10:37:51 2009 -0800
11224
11225    Initialize event_notify after allocating the memory for it.
11226    
11227    An uninitialized or otherwise invalid condition variable can apparently
11228    cause a hang in pthread_cond_broadcast. Ekiga, openoffice, and xine
11229    at least are freezing as a result of event_notify never being initialized.
11230    
11231    Signed-off-by: Brian Rogers <brian@xyzw.org>
11232    Signed-off-by: Bart Massey <bart@cs.pdx.edu>
11233
11234commit 97fc6babd4ccaf300e25708868aa2a738893dc30
11235Author: James Cloos <cloos@jhcloos.com>
11236Date:   Thu Jan 29 20:10:41 2009 -0500
11237
11238    NLS: Add UTF-8 compose file for Finnish
11239    
11240    From bug report:
11241    
11242      https://bugs.freedesktop.org/show_bug.cgi?id=18747
11243
11244commit 1bd2966ed88f83479a066c6ca7da23a515979550
11245Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
11246Date:   Thu Jan 29 20:25:15 2009 -0200
11247
11248    patches to avoid gcc warnings for libX11 (#4)
11249    
11250    Author is Peter Breitenlohner <peb@mppmu.mpg.de>
11251    Bug #17946, attachment #19443
11252    
11253    This patch avoids the gcc warning
11254            ../../../../libX11-1.1.5/modules/im/ximcp/imDefLkup.c:223: warning: passing arg 1 of `_XimProcSyncReply' from incompatible pointer type
11255    (same as already done at other places)
11256    
11257    BTW: what is the difference between XIM (the type of ic->core.im)
11258    and Xim ?
11259
11260commit f16dd6af3eb17a25b8ee03d6617a7acc6e919fb0
11261Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
11262Date:   Thu Jan 29 20:22:21 2009 -0200
11263
11264    patches to avoid gcc warnings for libX11 (#3)
11265    
11266    Author is Peter Breitenlohner <peb@mppmu.mpg.de>
11267    Bug #17946, attachment #19441
11268    
11269    This patch avoids the two gcc warnings
11270            ../../../../libX11-1.1.5/modules/im/ximcp/imRm.c:413: warning: assignment discards qualifiers from pointer target type
11271            ../../../../libX11-1.1.5/modules/im/ximcp/imRm.c:450: warning: assignment discards qualifiers from pointer target type
11272    
11273    Note, that this as a rather crude fix of the problem (and it is really a
11274    shame to cast name_table to non-const).
11275    
11276    The right solution would be to declare XIMValuesList.supported_values
11277    (in include/X11/Xlib.h) as 'const char **' (or '_Xconst char **').
11278    This will, however, require extensive modifications in various places.
11279
11280commit cce75c5dce73fe1f8626ed9e6798138ada09a860
11281Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
11282Date:   Thu Jan 29 20:20:18 2009 -0200
11283
11284    patches to avoid gcc warnings for libX11 (#2)
11285    
11286    Author is Peter Breitenlohner <peb@mppmu.mpg.de>
11287    Bug #17946, attachment #19440
11288    
11289    Avoid a preprocessor message
11290            <stdin>:194: warning: no newline at end of file
11291    
11292    Two more such warnings (in XkbSAGroup.man and XkbSASetGroup.man)
11293    seem to be caused by a truncated (or otherwise incomplete)
11294    manpage.
11295
11296commit 692baebcc50f1e952800bfe4e2e6bc42f54e62fe
11297Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
11298Date:   Thu Jan 29 20:12:24 2009 -0200
11299
11300    patches to avoid gcc warnings for libX11 (#1)
11301    
11302    Author is Peter Breitenlohner <peb@mppmu.mpg.de>
11303    Bug #17946, attachment #19439
11304    
11305    Define as 1 (one) as done by autoconf and the command line
11306    option, e.g. -DX11_t, not as empty.
11307    
11308    This avoids the gcc (3.4.6) warnings:
11309            ../../libX11-1.1.5/src/x11_trans.c:27:1: warning: "X11_t" redefined
11310            <command line>:7:1: warning: this is the location of the previous definition
11311            ../../libX11-1.1.5/src/x11_trans.c:28:1: warning: "TRANS_CLIENT" redefined
11312            <command line>:8:1: warning: this is the location of the previous definition
11313    
11314    Similarly, follow the autoconf convention to define XTHREADS
11315    and XUSE_MTSAFE_API as one.
11316    
11317    This avoids analogous warnings when compiling libXcomposite,
11318    libXcursor, and libXdamage.
11319    
11320    No reason to AC_SUBST XTHREADS and XUSE_MTSAFE_API (unused).
11321
11322commit a1977883c9f5ef0e515569d6e2ebccb07411f98c
11323Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
11324Date:   Thu Jan 29 15:01:06 2009 -0200
11325
11326    Janitor: Correct some gcc/sparse warnings.
11327    
11328      Most remaining warnings are about XIM/Xim to/from conversion
11329    and discarding const from pointers.
11330
11331commit 8ba0ca32a63c532f128bdca7f1bf982cab8e12be
11332Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
11333Date:   Wed Jan 28 20:31:42 2009 -0200
11334
11335    Janitor: ansification, make distcheck, compiler warnings.
11336    
11337      Only convert to use "ansi prototypes" the functions warned from
11338    compilation with "./autogen.sh --prefix=/usr", on a Linux computer.
11339    
11340      Also, only address "trivial" compiler warning fixes in this commit.
11341    
11342      The new .gitignore is the output of a command like:
11343    % find . -name .gitignore -exec cat {} \; | sort | uniq
11344    and only the toplevel .gitignore file was kept.
11345
11346commit 091c1624fd2f9d933329d6152e4ecd865aa7903a
11347Author: Peter Hutterer <peter.hutterer@who-t.net>
11348Date:   Tue Jan 13 12:05:54 2009 +1000
11349
11350    Fix wrong implies symbol.
11351    
11352    Quote Simos Xenitellis:
11353    > I checked the gtk+ commit logs that go back to 2000, and I see that still it
11354    > was
11355    >
11356    >   { 0x08ce, 0x21d2 }, /*                     implies ⇒ RIGHTWARDS
11357    > DOUBLE ARROW */
11358    >
11359    > In XFree86, it appears there was an error when they converted the
11360    > original table to
11361    > http://cvsweb.xfree86.org/cvsweb/xc/lib/X11/imKStoUCS.c?rev=1.1&content-type=text/vnd.viewcvs-markup
11362    > and the problem still shows up there (November 2000).
11363    
11364    http://lists.freedesktop.org/archives/xorg/2008-October/039743.html
11365    
11366    Reported by Erik Streb del Toro.
11367
11368commit e32521f19e0b07649b7e3a03d56a2bd556b138fb
11369Author: James Cloos <cloos@jhcloos.com>
11370Date:   Sun Dec 7 04:13:34 2008 -0500
11371
11372    [i18n] s/U00DC/Udiaeresis/g
11373    
11374    The xkeyboard-config keyboards generate the symbol Udiaeresis, not
11375    U00DC.  Make sure the relevant Compose sequences expect the symbol
11376    which the keyboards actually send.
11377
11378commit b7502abfe22f8dc009b21cda1172af221d8f9f32
11379Author: James Cloos <cloos@jhcloos.com>
11380Date:   Sun Dec 7 04:09:46 2008 -0500
11381
11382    Revert "For nls/*.pre, allow people to comment lines by starting them with '##'."
11383    
11384    As of commit c9d20e3 the initial double-hashes are replaced with proper C comments.
11385    
11386    This reverts commit a225a0be48770beb689d5ac5da97073634f7deab.
11387
11388commit c9d20e3f697c9cfae5511412023362c1db7449b1
11389Author: James Cloos <cloos@jhcloos.com>
11390Date:   Sun Dec 7 04:08:23 2008 -0500
11391
11392    Use C comments rather than initial doubled hashes to exclude lines from .pre files
11393
11394commit c34ce54d9eac2d8052dc5f205a2ab09866ef5d25
11395Author: vehemens <vehemens@verizon.net>
11396Date:   Sun Dec 7 01:18:26 2008 -0500
11397
11398    [i18n] Distribute new headers which were added for gb18030 support.
11399    
11400    big5hkscs.h and gbk.h, added in 67e34d7a, need to be in SOURCES to
11401    make it into the tar.
11402    
11403    Completes 67e34d7a82ccd31f1208c0c43a6d58c3c05bf51.
11404    
11405    Signed-off-by: James Cloos <cloos@jhcloos.com>
11406
11407commit 418819558d2c60e58b4e3022ce0fadf2143488ac
11408Author: Stefan Dirsch <sndirsch@suse.de>
11409Date:   Sat Nov 22 22:01:07 2008 +0100
11410
11411    Fixed strange font mixups, when fontsets are still used (#2676, Novell #74299).
11412
11413commit 67e34d7a82ccd31f1208c0c43a6d58c3c05bf51a
11414Author: Stefan Dirsch <sndirsch@suse.de>
11415Date:   Sat Nov 22 19:40:54 2008 +0100
11416
11417    Added remaining xlib patch required for gb18030 support (#1573).
11418
11419commit 55782a0a1fe1560f1a9c0ed78bc7f2575c15abcf
11420Author: Stefan Dirsch <sndirsch@suse.de>
11421Date:   Sat Nov 22 17:53:06 2008 +0100
11422
11423    Added remaining hunk of Egbert's patch to prevent XIM deadlocks (#1182).
11424
11425commit c859446c500c883a67f7a86cab1a44844e24dade
11426Author: Ken Thomases <ken@codeweavers.com>
11427Date:   Fri Nov 21 13:58:10 2008 -0500
11428
11429    [i18n] Provide translation from XK_partialderivative (8ef) to Unicode (U2202)
11430    
11431    Signed-off-by: James Cloos <cloos@jhcloos.com>
11432
11433commit 5e68e94d852c730ef9264fc0d8ca61a2ffe98b53
11434Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
11435Date:   Mon Nov 17 20:47:26 2008 -0800
11436
11437    Force local transport when using the launchd socket.
11438    
11439    Fixes a regression due to
11440    bf53987eaf0fbd7f7627783fc39e7ee99e8361ba
11441
11442commit 7aca689ce14d314b5c8c72c8df76f53f76ab467c
11443Author: Peter Hutterer <peter.hutterer@redhat.com>
11444Date:   Fri Nov 14 10:32:50 2008 +1000
11445
11446    Add XF86Suspend, XF86Hibernate to KeysymDB.
11447
11448commit d16b11f25f8265e651def8d80bcd430c0448e664
11449Author: James Cloos <cloos@jhcloos.com>
11450Date:   Tue Nov 11 19:43:39 2008 -0500
11451
11452    [nls] Annotate the Bépo compose sequences
11453    
11454    Add comments with the UCS names.
11455    Add utf-8 strings for each result.
11456    Format for easy reading.
11457
11458commit 730298464240be6f65b32416b3f9b20062c61825
11459Author: James Cloos <cloos@jhcloos.com>
11460Date:   Tue Nov 11 16:41:34 2008 -0500
11461
11462    [nls]  Add some UTF-8 Compose sequences
11463    
11464    As requested for the Bépo keyboard layout (http://clavier-dvorak.org/wiki/).
11465    
11466    Cf. bugs:
11467    
11468      https://bugs.freedesktop.org/show_bug.cgi?id=17821
11469      https://bugs.freedesktop.org/show_bug.cgi?id=17822
11470
11471commit ad6008a0c92733826983eb93f063d3d6276007d8
11472Author: Colin Harrison <colin.harrison@virgin.net>
11473Date:   Thu Nov 6 17:48:21 2008 -0500
11474
11475    Fix copy/paste typo in imLcPrs
11476    
11477    Signed-off-by: James Cloos <cloos@jhcloos.com>
11478
11479commit 0f0168ad18f8a280fc5a689eb02cfaa62d022ea6
11480Author: Adam Jackson <ajax@redhat.com>
11481Date:   Thu Nov 6 14:54:13 2008 -0500
11482
11483    Fix leak in _XimXGetReadData
11484    
11485    Spotted by Denis Dzyubenko
11486
11487commit ae23c25b9349ab1d7ff81f3075c000cf35fc442b
11488Author: Julien Cristau <jcristau@debian.org>
11489Date:   Wed Nov 5 22:09:37 2008 +0100
11490
11491    Bump to 1.1.99.2
11492
11493commit d31e644c65c52828ea3e7abd94a8cf9aee12265c
11494Author: Julien Cristau <jcristau@debian.org>
11495Date:   Wed Nov 5 21:33:13 2008 +0100
11496
11497    Fix distcheck
11498
11499commit e6a7b70cdb2ae8b713012839a0a0bbb93817b8ef
11500Author: Jamey Sharp <jamey@minilop.net>
11501Date:   Wed Oct 29 14:00:33 2008 -0700
11502
11503    Support multiple independent internal sync handlers
11504    
11505    Xlib has several independent tasks that need to be performed with the
11506    display unlocked. It does this by replacing the existing sync handler with
11507    one of a variety of internal sync handlers. However, if multiple internal
11508    sync handlers need to run, then the last one registering wins and
11509    previously registered internal sync handlers are never invoked. This
11510    manifested as a bug with DRI applications on Xlib/XCB as that requires
11511    both an XID handler after every XID allocation, and the periodic sequence
11512    number handler. The XID handler would win, and the sequence number handler
11513    would never be invoked.
11514    
11515    Fix this by unifying the internal sync handler mechanism into a single
11516    function that calls all of the known internal sync handlers. They all need
11517    to deal with being called when not strictly necessary now.
11518    
11519    Signed-off-by: Keith Packard <keithp@keithp.com>
11520    Signed-off-by: Jamey Sharp <jamey@minilop.net>
11521    Signed-off-by: Josh Triplett <josh@freedesktop.org>
11522
11523commit 2dbaaab9c4e3894b33dcae850551dee5473431d5
11524Author: Keith Packard <keithp@keithp.com>
11525Date:   Sat Oct 11 21:44:21 2008 -0700
11526
11527    Ensure that _XReadEvents always leaves an event in the queue on return
11528    
11529    XNextEvent assumes that the event queue will be non-empty on return from
11530    _XReadEvents, but with multiple event readers running, the previous change
11531    could leave the queue empty on return from process_responses. Re-invoke
11532    process_responses until the queue is non-empty.
11533    
11534    Signed-off-by: Keith Packard <keithp@keithp.com>
11535
11536commit bedfe68259037c5564fe52758c92b9c97729640a
11537Author: Keith Packard <keithp@keithp.com>
11538Date:   Sat Oct 11 21:10:23 2008 -0700
11539
11540    Permit only one Xlib thread to block waiting for events
11541    
11542    As Xlib queues events internally, we must prevent multiple Xlib threads from
11543    entering XCB to wait for an event in case the queued event is to be
11544    delivered to the thread which didn't manage to read it. In other words, let
11545    only one Xlib thread into xcb_wait_for_event at a time.
11546    
11547    Jamey Sharp looked over my shoulder while making this fix and, while hating
11548    my whitespace conventions, appears happy enough with the actual code.
11549    
11550    Signed-off-by: Keith Packard <keithp@keithp.com>
11551
11552commit cc19618d2eb3ed92a0b574aee26a7da8b4aed5d2
11553Author: Jamey Sharp <jamey@minilop.net>
11554Date:   Sun Mar 23 16:33:50 2008 -0700
11555
11556    Fix XAllocID race: hold the user display lock until we have a new XID.
11557    
11558    Xlib built --without-xcb is also vulnerable to this race, and a similar
11559    fix might work there too.
11560    
11561    Also, use an XID that's truly invalid while waiting for the next XID to be
11562    requested.
11563
11564commit 54e5c0941b0ded1628d559a9f0a3451ea96c299b
11565Author: Josh Triplett <josh@freedesktop.org>
11566Date:   Sat Mar 15 17:22:23 2008 -0700
11567
11568    Use XCB's new socket handoff mechanism rather than the old XCB Xlib lock.
11569    
11570    Previously, Xlib/XCB used XCB's Xlib lock to prevent XCB from sending
11571    requests between calls to Xlib's LockDisplay and UnlockDisplay macros.
11572    Xlib/XCB then sent all of its requests using XCB's xcb_send_request, and
11573    had to flush its requests when unlocking the display.
11574    
11575    XCB 1.2 adds a new socket handoff mechanism, xcb_take_socket.  Replace
11576    much of the existing Xlib/XCB implementation with the use of
11577    xcb_take_socket to take ownership of the write side of the X connection
11578    socket, and a return_socket callback which writes any outstanding requests
11579    with xcb_writev.  This approach allows Xlib/XCB to use the same buffering
11580    as traditional Xlib did.  In particular, programs which use Xlib/XCB and
11581    never make XCB calls will never need to hand the socket back to XCB, and
11582    vice versa.
11583    
11584    This allows us to discard large quantities of synchronization code from
11585    Xlib/XCB, together with the synchronization bugs present in that code.
11586    Several test cases which previously failed now work perfectly, including
11587    multi-threaded ico.  In addition, the infamous locking correctness
11588    assertions, triggered when double-locking or when unlocking without a
11589    previous lock, no longer exist, because Xlib/XCB no longer has any reason
11590    to care more about application locking than traditional Xlib does.
11591    
11592    Furthermore, the handoff approach provides great improvements to
11593    performance.  Results from x11perf's XNoOp test, which represented the
11594    worst case for the lock-based Xlib/XCB:
11595    
11596    Traditional Xlib:       average 19100000/sec
11597    Lock-based Xlib/XCB:    average  3350000/sec
11598    Handoff-based Xlib/XCB: average 17400000/sec
11599    
11600    Thus, for no-ops, the handoff mechanism provides more than a 4x speedup to
11601    Xlib/XCB, bringing Xlib/XCB within 9% of traditional Xlib no-op
11602    performance.  Of course, real-world workloads do not use no-op, so your
11603    mileage may vary.  In particular, since no-ops represent the worst case,
11604    we expect real workloads to more closely match the performance of
11605    traditional Xlib.
11606    
11607    While removing synchronization code, we changed _XReply to not drop any
11608    locks when calling xcb_wait_for_reply; previously, we had to carefully
11609    avoid a deadlock between the Display lock and the XCB Xlib lock. Holding
11610    the locks reduces implementation complexity and should not impact
11611    applications.
11612    
11613    Commit by Jamey Sharp and Josh Triplett.
11614    XCB's handoff mechanism inspired by Keith Packard.
11615
11616commit 5a19ac473f7a8046b0421fbd5d53da160c22ed75
11617Author: Chris Ball <cjb@laptop.org>
11618Date:   Mon Nov 3 22:57:29 2008 -0500
11619
11620    Remove configure check for xcb-xlib.
11621    
11622    xcb-xlib has been intentionally removed from libxcb; stop checking for
11623    it at configure-time.
11624
11625commit 34b35dda0bb7f3cf0ad9ab95ad7953d35d24f71b
11626Author: Josh Triplett <josh@freedesktop.org>
11627Date:   Wed Oct 29 14:37:44 2008 -0700
11628
11629    .gitignore: Add dolt files
11630
11631commit 1290cccf2d90083eba852f5f413f7e3dff48ccd2
11632Author: Peter Hutterer <peter.hutterer@redhat.com>
11633Date:   Tue Oct 28 11:56:55 2008 +1030
11634
11635    man: fix formatting error in XkbGetIndicatorState man page.
11636
11637commit b1022fa6d7e97640049e93ffa108083fc8d71b05
11638Author: James Cloos <cloos@jhcloos.com>
11639Date:   Sat Oct 25 09:13:08 2008 -0400
11640
11641    Increase size of working arrays in the makekeys utility program.
11642    
11643    Makekeys is used to create an optimal hash of the keysyms defined
11644    in x11proto’s keysymdef.h.
11645    
11646    The recent addition of new keysyms there has triggered a bug in
11647    makekeys where it tries to use a zero on the rhs of the % (mod)
11648    operator (resulting in a divide by zero error) whenever it fails
11649    to find a solution within its constraints.
11650    
11651    Increasing the size of the arrays allows it to find a solution for
11652    the current set of keysyms.
11653    
11654    Makekeys is only run durring the build process, so this has no impact
11655    on users of libX11, only on the amount of VM needed to build it.
11656    
11657    It still needs a more complete fix, but this allows compiles to
11658    progress until that is completed.
11659
11660commit 3e9afd501e40d76040635bd9a3045bcaf5a03b60
11661Author: James Cloos <cloos@jhcloos.com>
11662Date:   Sat Oct 11 01:03:14 2008 -0400
11663
11664    Dolt-ify
11665    
11666    Add dolt to acinclude.m4 and call it it configure.ac to speed compiles.
11667
11668commit 39c0b266cac8cbc15bf501d7869186862f01d823
11669Author: Peter Hutterer <peter.hutterer@redhat.com>
11670Date:   Wed Oct 15 14:30:20 2008 +1030
11671
11672    Add more keysyms for PS3 BD remotes, Ericsson Phones #16519
11673    
11674    X.Org Bug 16519 <https://bugs.freedesktop.org/show_bug.cgi?id=16519>
11675
11676commit d23aad31338e7d869d878d5aa1b6b91d20287005
11677Author: Peter Hutterer <peter.hutterer@redhat.com>
11678Date:   Mon Oct 13 09:41:59 2008 +1030
11679
11680    Add XF86Battery, XF86Bluetooth, XF86WLAN, XF86UWB to keysymdb.
11681
11682commit 214ea6f5fd6aeaa7303ea4a69f9aedabf219ec4c
11683Author: Peter Hutterer <peter.hutterer@who-t.net>
11684Date:   Thu Jul 24 15:44:26 2008 +0930
11685
11686    xkb: fix out-by-1 error in _XkbWriteKeyExplicit.
11687    
11688    Thanks to Michael Meeks, Novell Bug 369263.
11689    https://bugzilla.novell.com/show_bug.cgi?id=369263
11690
11691commit e7ece39afc8e0adc3b6b1e70b337b98376754462
11692Author: Alan Coopersmith <alan.coopersmith@sun.com>
11693Date:   Tue Oct 7 15:41:38 2008 -0700
11694
11695    Sun bug #6739431: double free in _X11TransConnectDisplay()
11696    
11697    Double free() introduced in bf53987eaf0fbd7f7627783fc39e7ee99e8361ba
11698    After copying original_hostname to phostname, set original_hostname
11699    to NULL, so we don't free the same pointer twice when we free both
11700    original_hostname and phostname.
11701    
11702    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6739431>
11703
11704commit 0877bc916afbd1ff8f1833edc930b765ea783576
11705Author: Daniel Stone <daniel@fooishbar.org>
11706Date:   Tue Sep 23 19:02:02 2008 +0300
11707
11708    configure.ac: Fix CC_FOR_BUILD logic error
11709    
11710    Turns out we were accidentally smashing it so that you couldn't set it
11711    externally at all.  Oops.
11712
11713commit 58bf3aa746908f01c37be7045699e43a4e270944
11714Author: John Tapsell <johnflux@gmail.com>
11715Date:   Tue Sep 23 17:30:13 2008 +0300
11716
11717    Build: Use native compiler for makekeys
11718    
11719    makekeys needs to be run during the build process, as opposed to on the
11720    target, so build it with either of gcc or cc to fix cross-compiling.
11721    This can be overridden by setting $CC_FOR_BUILD.
11722
11723commit 340422a5c7a413faef18666cada27cee14615250
11724Author: Adam Jackson <ajax@redhat.com>
11725Date:   Wed Sep 17 12:54:34 2008 -0400
11726
11727    Fix the previous patch for the BadFont case.
11728
11729commit 2335eafe4b53c27f6f9ee1bab3e1f5842f896428
11730Author: Matthias Clasen <mclasen@redhat.com>
11731Date:   Wed Sep 17 10:43:52 2008 -0400
11732
11733    Bug #17616: Fix an XCB leak when the client has a non-fatal error handler.
11734
11735commit db0b85db29699be6bf7e78dede655d59ba926dfc
11736Author: Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
11737Date:   Sun Sep 14 19:15:26 2008 -0400
11738
11739    Fix problem with <dead_acute> <c> in pt_BR.UTF-8
11740    
11741    The <dead_acute> <C> and <dead_acute> <c> lines in the pt_BR UTF-8
11742    Compose file show "Ç" and "ç" (c with cedilla accent) (akin to the
11743    ISO 8859 pt_BR Compose file) as the string but specify the keysym
11744    and comment for Ć and ć (c with acute accent).
11745    
11746    This commit normalizes those two lines to match the specified string.
11747    
11748    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=4671
11749    
11750    Signed-off-by: James Cloos <cloos@jhcloos.com>
11751
11752commit b065c011baa69b69e3ea77c30d5e153c0d103e2d
11753Author: Michael Verret <michael.verret@gmail.com>
11754Date:   Mon Sep 8 16:33:35 2008 -0400
11755
11756    Fix documentation typo
11757    
11758    Signed-off-by: James Cloos <cloos@jhcloos.com>
11759
11760commit 4213ea95185377bdd1b51e82933f331fc0f52e5b
11761Author: James Cloos <cloos@jhcloos.com>
11762Date:   Sat Sep 6 04:19:19 2008 -0400
11763
11764    Remove extraneous <angle brackets> from the Ethiopic Compose file.
11765    
11766    The am_ET.UTF-8 Compose file submitted in:
11767    
11768    https://bugs.freedesktop.org/show_bug.cgi?id=11307
11769    
11770    for the OLCP project used incorrect syntax.  (It has angle brackets around the
11771    Uxxxx symbols on the right hand side rather than only on the left hand side).
11772    
11773    This bug is noted in OLPC’s ticket:
11774    
11775    http://dev.laptop.org/ticket/7474
11776    http://dev.laptop.org/attachment/ticket/7474/olpc_7474_dead_vowels_libX11.patch
11777
11778commit 9df84b513dd2b6e65e6d528cfac6d4cc3ea46918
11779Author: James Cloos <cloos@jhcloos.com>
11780Date:   Mon Sep 1 17:49:33 2008 -0400
11781
11782    Complete the set of vulgar fractions
11783    
11784    Unicode 1.1 added thirds, fifths, sixths and eights;
11785    we might as well catch up.
11786    
11787    (Unicode and ISO 10646 have 1/7 (U2150), 1/9 (U2151), 1/10 (U2152)
11788    and 0/3 (U2189) in their pipelines, but those four can be added
11789    here after they are published.)
11790
11791commit a788792e9de95f8db0639557859722a35087481d
11792Author: James Cloos <cloos@jhcloos.com>
11793Date:   Wed Aug 20 15:28:07 2008 -0400
11794
11795    nls (en_US) Re-remove long compositions that override shorter
11796    
11797    As reported in <https://bugs.freedesktop.org/show_bug.cgi?id=17228>:
11798    
11799      Commit a6f4bbf7
11800        nls (en_US): remove long compositions that override shorter [...]
11801        removed some longer compose sequences because there are shorter
11802        ones which take preference over the longer. For example the
11803        sequences:
11804    
11805          <Multi_key> <apostrophe> <comma> <c>   : U1E09 # ḉ
11806          <Multi_key> <apostrophe> <comma> <C>   : U1E08 # Ḉ
11807    
11808        were removed becase there already was:
11809    
11810          <Multi_key> <apostrophe> <comma>       : U201A # ‚
11811    
11812      Then commit 4ba09125
11813        Work on making the en_US and pt_BR UTF-8 Compose as similar as
11814        possible added exactly the same key sequences again. Obviusly
11815        they won't work.
11816
11817commit 55248e5c84c3fd8c349a3bb4cb15a1ec86989d74
11818Author: James Cloos <cloos@jhcloos.com>
11819Date:   Thu Jul 17 21:01:42 2008 -0400
11820
11821    Add more <Multi_key> <cedilla> Compose tuples
11822    
11823    The last commit missed the el_GR UTF-8 Compose.pre as well as
11824    the various ISO 8859 locales which have compose sequences
11825    generating ‘WITH CEDILLA’ characters.
11826    
11827    (Interestingly, some of the 8859 locales already supported
11828    <Multi_key> <cedilla> for some CEDILLA characters, but not
11829    for Ç or ç.)
11830    
11831    This is further work on bug 10397.
11832
11833commit 4ba091255bb953d53078ba5619d6751052c739f7
11834Author: James Cloos <cloos@jhcloos.com>
11835Date:   Thu Jul 17 17:16:50 2008 -0400
11836
11837    Work on making the en_US and pt_BR UTF-8 Compose as similar as possible.
11838    
11839    The eventual goal here is to have a single primary UTF-8 Compose
11840    file which the locale-specific UTF-8 Compose.pre files can #include.
11841
11842commit 254522d3c24e0590732fc03cdd61ff4564819d94
11843Author: James Cloos <cloos@jhcloos.com>
11844Date:   Thu Jul 17 17:13:36 2008 -0400
11845
11846    Add <Multi_key> <cedilla> Compose tuples
11847    
11848    The en_US and pt_BR UTF-8 Compose tables had support for using <comma>
11849    with <Multi_key> to enter CEDILLA characters.  Bug 10397 requests
11850    support for using <cedilla> instead of <comma> in said sequences.
11851    
11852    This commit makes both styles work.
11853
11854commit 7dc907f6032e1d5cbe4da0e414bdf2c569c04b44
11855Author: James Cloos <cloos@jhcloos.com>
11856Date:   Sat Jun 28 15:25:23 2008 -0400
11857
11858    Fix commit 21e464ec682ab23ba20ddf6bd72c6db214cfbe01
11859    
11860    The new block was added twice to the en_US.UTF-8 Compose.pre;
11861    delete the duplicate.
11862
11863commit 596e081b7457dcd1c4ad555ac140e6999239bc0d
11864Author: Peter Hutterer <peter@cs.unisa.edu.au>
11865Date:   Sat Jun 28 20:14:05 2008 +0930
11866
11867    Fix unbalanced parenthesis in XKBlib.h # 16551
11868    
11869    X.Org Bug 16551 <http://bugs.freedesktop.org/show_bug.cgi?id=16551>
11870
11871commit f6af6dd2f76c12b56ec166bb771457b9f08fe246
11872Author: Adam Jackson <ajax@redhat.com>
11873Date:   Tue Jun 24 13:16:53 2008 -0400
11874
11875    Bug #14898: Don't abuse the sprintf() implementation.
11876    
11877    The thing you're printing into should not itself appear in the list of
11878    things to print from, that's bad juju.  Just use strcat().
11879
11880commit 21e464ec682ab23ba20ddf6bd72c6db214cfbe01
11881Author: Khaled Hosny <khaledhosny@eglug.org>
11882Date:   Thu Jun 19 18:26:11 2008 -0400
11883
11884    NLS: Add Arabic Lam-Alef ligature compose sequences (bug #16426)
11885    
11886    Add some Arabic digraphs to utf-8 locales with a Compose.pre
11887    
11888    Signed-off-by: James Cloos <cloos@jhcloos.com>
11889
11890commit bf53987eaf0fbd7f7627783fc39e7ee99e8361ba
11891Author: Alan Coopersmith <alan.coopersmith@sun.com>
11892Date:   Wed Jun 18 20:00:25 2008 -0700
11893
11894    Rework code to choose local connection types and fallback to others
11895    
11896    Adds --with-local-transport-order configure flag if you don't like the
11897    default ordering (which is platform dependent)
11898    
11899    Includes fixes for these Sun/Solaris bug ids:
11900    6678250 X Commands returning incorrect display value unix:0.0 not <system>:0.0
11901    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6678250>
11902    6716481 libX11 should prefer Unix domain sockets over named pipes on Solaris
11903    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6716481>
11904
11905commit cf49e537014c3cb5aaee07e57400933e0bb72b6b
11906Author: Alan Coopersmith <alan.coopersmith@sun.com>
11907Date:   Tue Jun 17 14:41:17 2008 -0700
11908
11909    Strip whitespace from end of lines in source files
11910
11911commit f76fd81dfbbd5cfae75c87ce0511e88e08529cf3
11912Author: Jeff Smith <whydoubt@yahoo.com>
11913Date:   Sun Jun 15 23:52:20 2008 -0500
11914
11915    Fix memory leak in XOpenDisplay
11916    
11917    Signed-off-by: Peter Hutterer <peter@cs.unisa.edu.au>
11918
11919commit fca0b0ba3f72b7284601d4690bba99fc80a92614
11920Author: Jens Herden <jens@khmeros.info>
11921Date:   Tue Jun 10 20:07:30 2008 +0300
11922
11923    NLS: Add Khmer compose sequences (bug #5706)
11924    
11925    Add some Khmer digraphs to all locales with a Compose.pre.
11926
11927commit e54cffb649b1622c17457e470cfab8cc56d38c97
11928Merge: 19802ccd 721b574d
11929Author: Daniel Stone <daniel@fooishbar.org>
11930Date:   Tue Jun 10 20:04:30 2008 +0300
11931
11932    Merge branch 'master' of ssh://git.freedesktop.org/git/xorg/lib/libX11
11933
11934commit 721b574d36f1884c3f1bf7bd933646e2ed6680b5
11935Author: Peter Hutterer <peter@cs.unisa.edu.au>
11936Date:   Thu May 29 10:57:21 2008 +0930
11937
11938    Bump to 1.1.99.1
11939
11940commit 631d32d13247d1cf52c0833d438c5b38b01b17a4
11941Author: Peter Hutterer <peter@cs.unisa.edu.au>
11942Date:   Wed May 28 17:31:59 2008 +0930
11943
11944    Require xproto 7.0.13 and libxcb 1.1.90 (for GenericEvents)
11945
11946commit e9195db7257e418f83707233baeeb84b225caf4f
11947Merge: c34f76f4 a7f85567
11948Author: Peter Hutterer <peter@cs.unisa.edu.au>
11949Date:   Thu May 22 12:14:28 2008 +0930
11950
11951    Merge branch 'master' into xge
11952
11953commit 19802ccd3909145e3ba2f6c073271cb5f3701685
11954Author: Daniel Stone <daniel@fooishbar.org>
11955Date:   Mon May 19 19:22:31 2008 +0300
11956
11957    gitignore: Update with loads more bits from server
11958
11959commit a7f85567a3e850fba0c44571453d2852ab1a09be
11960Author: Adam Jackson <ajax@redhat.com>
11961Date:   Tue May 13 10:28:39 2008 -0400
11962
11963    Bug #15884: Remove useless sleep()'s from the connection code.
11964    
11965    For network transports, there's enough delay in the network layer
11966    already without adding more.  For local transports, just hurry up
11967    and fail if the server isn't there.
11968
11969commit c34f76f475bc632490122e67b5a82575d69d5569
11970Author: Peter Hutterer <peter@cs.unisa.edu.au>
11971Date:   Mon May 12 21:46:24 2008 +0930
11972
11973    Pull down extra bytes when reading a GenericEvent (non-xcb).
11974    
11975    I refuse to take any responsibily for this code. It works, I guess.
11976    But - all the flushing is done somewhere before that, so we might need to
11977    flush here. Under some circumstances anyway. Don't ask me, I'm an optical
11978    illusion.
11979    
11980    Build with xcb as transport layer highly recommended.
11981
11982commit c9b2ff1e6a607463993afa4a8d085857d97cc2f3
11983Merge: 17d7dcbf 9129057b
11984Author: Peter Hutterer <peter@cs.unisa.edu.au>
11985Date:   Mon May 12 17:58:37 2008 +0930
11986
11987    Merge branch 'master' into xge
11988
11989commit 9129057bdbff0ec9cd8bb780cf7f85f134a291eb
11990Author: Teemu Likonen <tlikonen@iki.fi>
11991Date:   Wed May 7 21:44:22 2008 +0300
11992
11993    Change <dead_belowdot> to <dead_belowring> for U+1E00 and U+U1E01
11994    
11995    Commit 6b6caeea830a977bdb54688cfb648d879821e752 added <dead_belowdot>
11996    <A> and <dead_belowdot> <a> compose sequences for letters U+1E00 and
11997    U+U1E01 (LATIN CAPITAL/SMALL LETTER A WITH RING BELOW). This caused
11998    duplicate compose sequences since these have already been defined. Also,
11999    using <dead_belowring> is more logical since the diacritic is indeed
12000    a "RING BELOW".
12001
12002commit 01a9cb58888d290cc3d319feec4ee4a0297a844c
12003Author: Daniel Stone <daniel@fooishbar.org>
12004Date:   Wed May 7 20:04:44 2008 +0300
12005
12006    NLS: Make UTF-8 the default for Russian
12007    
12008    No-one uses 8859-5 anymore, so make the default for Russian UTF-8; the
12009    only other possible answer would be KOI8-R.
12010    
12011    Signed-off-by: Sergey V. Udaltsov <sergey.udaltsov@gmail.com>
12012
12013commit 407b81bfbbabf6feb565d6da22f9ef9a69016ab8
12014Author: Ross Burton <ross@burtonini.com>
12015Date:   Tue Apr 29 13:38:10 2008 +0300
12016
12017    NLS: Add interrobang to UTF-8 compose tables (bug #15653)
12018    
12019    It is what it says on the box.
12020
12021commit 0b6682303e9c61fefc3818acfda616b1e3691abf
12022Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
12023Date:   Mon Apr 28 11:51:25 2008 +0300
12024
12025    IM: Respect XMODIFIERS for Thai locale (bug #15719)
12026    
12027    When looking at Thai input methods, make sure XMODIFIERS is checked
12028    before jumping straight into built-in Thai processing, so external XIM
12029    servers such as SCIM can be used with Thai.
12030
12031commit c13aded1b2f830ba5004abb0ec5518f9ea16087e
12032Author: Colin Harrison <colin.harrison-at-virgin.net>
12033Date:   Sat Apr 26 18:56:05 2008 +0100
12034
12035    Fix missing error condition
12036
12037commit f5c5ffc175cb383c92ea0fa8c08cfb087c5f3083
12038Author: Colin Harrison <colin.harrison-at-virgin.net>
12039Date:   Mon Apr 21 17:24:33 2008 +0100
12040
12041    Xlib warning fixes
12042
12043commit 6b6caeea830a977bdb54688cfb648d879821e752
12044Author: James Cloos <cloos@jhcloos.com>
12045Date:   Fri Apr 18 02:50:55 2008 -0400
12046
12047    Add some dead_key sequences to en_US.UTF-8 Compose table
12048    
12049    Make use of the new dead key symbols added to x11proto’s
12050    commit 44e24a27bca023cf7b799f191fe6d52e12efbe5f (which
12051    was in responce to bug #15446).
12052
12053commit 8f9b039580deaf658e464b7d6254064fcf183df6
12054Author: Alan Coopersmith <alan.coopersmith@sun.com>
12055Date:   Mon Apr 14 19:09:42 2008 -0700
12056
12057    Update ac_define_dir macro in acinclude.m4 to 2008-04-12 version
12058
12059commit 9f5e96eb91ab55dd441c3e94b75caf48c588778f
12060Author: Alan Coopersmith <alan.coopersmith@sun.com>
12061Date:   Mon Apr 14 18:21:14 2008 -0700
12062
12063    Fix mismatched brace indenting
12064
12065commit a19f9c65ee9e5e5d783feaa84998c36439b0288b
12066Author: Bart Massey <bart@cs.pdx.edu>
12067Date:   Fri Apr 4 18:58:45 2008 -0700
12068
12069    added error check in Xcms color file parser; closes bug #15305
12070
12071commit 12e8d0d01dd72ce98e7683ddb1bde181b7ed246f
12072Author: Christian Weisgerber <naddy@mips.inka.de>
12073Date:   Tue Mar 18 07:30:05 2008 +0100
12074
12075    ConnDis: properly cast 'addr' before accessing it as a byte array.
12076    
12077    If you use XDM-AUTHORIZATION-1 authorization keys for remote X11
12078    clients over IPv6, the clients are liable to segfaults.
12079
12080commit 64325f38bab082a8e0e9ce779a8e582de5c8588e
12081Author: Josh Triplett <josh@freedesktop.org>
12082Date:   Sat Mar 15 12:29:33 2008 -0700
12083
12084    Fix fd.o bug 15023: make Xlib sync correctly given many void requests
12085    
12086    If given many requests without replies, Xlib may not sync until it flushes
12087    the output buffer.  Thus, if Xlib can fit enough requests in the buffer to
12088    pass by the number of requests it would normally sync after (65536 -
12089    BUFSIZE/sizeof(xReq)), it will sync too late.  The test case in bug 15023
12090    demonstrated this by issuing a request with a reply (ListExtensions) at
12091    just the right time to get confused with the GetInputFocus reply issued in
12092    response to the sync 65,536 requests later; the test case used an async
12093    handler to watch the replies, since otherwise it could not issue a request
12094    without waiting for the response.  When the test case failed, Xlib's sync
12095    handler would eat the ListExtensions reply, and the test case's async
12096    handler would see the GetInputFocus reply.
12097    
12098    Fix this by replacing SEQLIMIT with a function sync_hazard() that uses the
12099    buffer size to figure out when the sequence numbers could potentially wrap
12100    before the next flush.
12101    
12102    With this commit, the test case consistently passed, and the async reply
12103    handler always saw the ListExtensions reply.
12104    
12105    Commit by Jamey Sharp and Josh Triplett.
12106
12107commit a5395563bbee15fabe1e8fd7aa86f9f314d8d30e
12108Author: Colin Harrison <colin.harrison@virgin.net>
12109Date:   Sat Mar 15 13:39:13 2008 -0400
12110
12111    Fix typo
12112    
12113    Signed-off-by: James Cloos <cloos@jhcloos.com>
12114
12115commit f07585ca27a8487bc66dfe41486c823f0fdcea7d
12116Author: Daniel Stone <daniel@fooishbar.org>
12117Date:   Sat Mar 15 17:32:57 2008 +0200
12118
12119    configure.ac: Don't search for legacy X11 headers
12120    
12121    This can actually break cross-compiles, so don't do it anymore.
12122
12123commit bf69541238c7df6606340c0f389e5c47149b29c7
12124Author: Matthieu Herrb <matthieu.herrb@laas.fr>
12125Date:   Sun Mar 9 09:08:07 2008 +0100
12126
12127    nuke RCS Ids
12128
12129commit 5e98aed13e529638df744e45893c471d5f2014fb
12130Author: Adam Jackson <ajax@redhat.com>
12131Date:   Thu Mar 6 16:10:33 2008 -0500
12132
12133    libX11 1.1.4
12134
12135commit 8e085971dc661da9f80ff6b67747459c0fb15c08
12136Author: Alan Coopersmith <alan.coopersmith@sun.com>
12137Date:   Thu Feb 28 20:17:41 2008 -0800
12138
12139    Man page typo fixes
12140
12141commit 1a1a42a3ca1dfaf42f1094936b71c140fc030fcb
12142Author: Søren Sandmann Pedersen <sandmann@redhat.com>
12143Date:   Sun Feb 24 20:03:35 2008 -0500
12144
12145    XIM: Fix a hand when switching input context.
12146    
12147    Red Hat bug #201284.
12148
12149commit e02e4ccafcaf3eb8993152dfcbfbee0240ea2db2
12150Author: Adam Jackson <ajax@redhat.com>
12151Date:   Sun Feb 24 20:00:43 2008 -0500
12152
12153    Bug #14029: Don't LockDisplay() recursively.
12154    
12155    See also Red Hat bugzilla #326461.
12156
12157commit e5892467ae3308c8651be76e06db322dcbc08522
12158Author: Alan Coopersmith <alan.coopersmith@sun.com>
12159Date:   Fri Feb 15 17:27:53 2008 -0800
12160
12161    Add support for building lint library with --enable-lint-library
12162
12163commit e3eb83ec6a9bffa63cdffd94f077c12f85ad7240
12164Author: Alan Coopersmith <alan.coopersmith@sun.com>
12165Date:   Mon Feb 11 20:11:43 2008 -0800
12166
12167    Spell out number in XkbGetKeyVirtualModMap man page to avoid cpp errors from #
12168
12169commit d5ceed7a73a6b61758ddb6ff4e194955fbd5c185
12170Author: Alan Coopersmith <alan.coopersmith@sun.com>
12171Date:   Fri Feb 8 16:46:46 2008 -0800
12172
12173    Add WM_LOCALE_NAME to list of properties set in XSetWMProperties comment
12174
12175commit 416a812200f24d19149dcc497e5c51a0608120f6
12176Author: Alan Coopersmith <alan.coopersmith@sun.com>
12177Date:   Fri Feb 8 15:31:31 2008 -0800
12178
12179    XErrorDB updates for Render 0.9 & XFixes 4.0
12180
12181commit 16a76091cd632e5a3708e235ff864b58f3e4613e
12182Author: Kim Woelders <kim@woelders.dk>
12183Date:   Sat Dec 22 21:45:23 2007 +0100
12184
12185    Fix bs_BA entries in locale.dir.pre
12186    
12187    X.Org bug#13786 <http://bugs.freedesktop.org/show_bug.cgi?id=13786>
12188
12189commit 32115c563b87d2f37e3f9de70fbd0f4d9e424aea
12190Merge: 8f0bd3f4 e8d4cefa
12191Author: James Cloos <cloos@jhcloos.com>
12192Date:   Fri Dec 14 22:43:47 2007 -0500
12193
12194    Merge branch 'master' of ssh://git.freedesktop.org/git/xorg/lib/libX11
12195
12196commit 8f0bd3f445cbdcc67650f6e8e3baf2ed89cb3695
12197Author: James Cloos <cloos@jhcloos.com>
12198Date:   Fri Dec 14 22:42:59 2007 -0500
12199
12200    add a comment to en_US.UTF-8/Compose
12201
12202commit 4d6c45e60ed13d3b0fea10413873d6a74f9d6a3b
12203Author: James Cloos <cloos@jhcloos.com>
12204Date:   Fri Dec 14 22:40:13 2007 -0500
12205
12206    Add <dead_stroke> compose sequences
12207    
12208    The added sequences match the existing <Multi_key> <slash> sequences.
12209    
12210    This is related to bug #12765¹.
12211    
12212    1] https://bugs.freedesktop.org/show_bug.cgi?id=12765
12213
12214commit e8d4cefa0837afa149a10e981528b368485a9e38
12215Author: Jeremy Huddleston <jeremy@yuffie.local>
12216Date:   Mon Dec 10 23:00:44 2007 -0800
12217
12218    Added launchd support.
12219
12220commit 17d7dcbfced4a9417b33507bd3fd9b7dd8268242
12221Merge: 5dfefd38 13ac8046
12222Author: Peter Hutterer <peter@cs.unisa.edu.au>
12223Date:   Thu Dec 6 14:08:29 2007 +1030
12224
12225    Merge branch 'master' into xge
12226
12227commit 5dfefd3829d3ba7e41d5db0ad28e9dfee92fadd5
12228Merge: a68a1cd7 eff33ae5
12229Author: Peter Hutterer <peter@cs.unisa.edu.au>
12230Date:   Thu Dec 6 13:57:09 2007 +1030
12231
12232    Merge branch 'master' into xge
12233    
12234    Conflicts:
12235    
12236            src/xcb_io.c
12237
12238commit 13ac80469f6958cabac596834e203bd9cb6d4c94
12239Author: James Cloos <cloos@jhcloos.com>
12240Date:   Wed Dec 5 20:14:03 2007 -0500
12241
12242    Update the currency symbols block of en_US.UTF-8/Compose.pre
12243    Add XCOMM lines a la the existing NEW SHEQEL SIGN entry for
12244    the KIP, TUGRIK, DRACHMA. GERMAN PENNY, PESO, GUARANI,
12245    AUSTRAL, HRYVNIA and CEDI SIGNs.
12246
12247commit b0a8f2ec4ba698841683f8ce389f9d72e6bce53e
12248Author: Anton Zinoviev <anton@lml.bas.bg>
12249Date:   Wed Dec 5 19:56:03 2007 -0500
12250
12251    Additions to the Compose file for UTF-8
12252    From bug #5371¹
12253    
12254    Commit 5cf5bc76642bfece7cb5b76faf414bf445f14489 left out this change
12255    from those in attachment #4122².  The post³ on xorg resulted in only
12256    a positive reply⁴ from Daniel, so this block is now also commited.
12257    
12258    1] https://bugs.freedesktop.org/show_bug.cgi?id=5371
12259    2] https://bugs.freedesktop.org/attachment.cgi?id=4122
12260    3] http://article.gmane.org/gmane.comp.freedesktop.xorg/20628
12261    4] http://article.gmane.org/gmane.comp.freedesktop.xorg/23966
12262    
12263    Signed-off-by: James Cloos <cloos@jhcloos.com>
12264    Acked-by:  Daniel Stone <daniel@fooishbar.org>
12265
12266commit 438d02ebc08ee171cf1d3936f4c81050d428ab92
12267Author: James Cloos <cloos@jhcloos.com>
12268Date:   Tue Dec 4 17:25:39 2007 -0500
12269
12270    Fix the <U\x+> keysyms in the en_US.UTF-8 Compose file
12271    
12272    Based on src/KeysymStr.c and src/StrKeysym.c and comments in
12273    bugs #11930¹ and #5129² it is clear that <U100XXXXX> is invalid;
12274    those should be in the form U plus the hex of the UCS Code Point.
12275    
12276    The 0x01000000 is ORed in by the code.
12277    
12278    This update fixes all of those.
12279    
12280    1] https://bugs.freedesktop.org/show_bug.cgi?id=11930
12281    2] https://bugs.freedesktop.org/show_bug.cgi?id=5129
12282
12283commit 02e04059c89e175f51647e3b031344f743286b34
12284Merge: 1254c57d b57129ef
12285Author: James Cloos <cloos@jhcloos.com>
12286Date:   Tue Dec 4 06:55:04 2007 -0500
12287
12288    Merge branch 'master' of ssh://git.freedesktop.org/git/xorg/lib/libX11
12289
12290commit 1254c57dd3a8d6ea87041b2f63024f99094f290f
12291Author: James Cloos <cloos@jhcloos.com>
12292Date:   Tue Dec 4 06:53:55 2007 -0500
12293
12294    Use the new dead_psili and dead_dasia keysyms added to proto/x11proto 7.0.11
12295    Inspired by bug 11930¹:
12296    
12297    Commit 40ed4eef92e31fcf7ea0a436e1a00cdf49484c1b to x11proto added dead_psili
12298    and dead_dasia keysyms.  Make use of them in the en_US.UTF-8 and el_GR.UTF-8
12299    Compose files.
12300    
12301    This was done with a pair of perl scripts based on the one quoted in the
12302    log for commit c76d30253f1483ac8200ad5c032a818907e65030.
12303    
12304    1] https://bugs.freedesktop.org/show_bug.cgi?id=11930
12305
12306commit b57129ef324c73ee91c2a796b800c4b45f4d4855
12307Author: Jeremy Huddleston <jeremy@yuffie.local>
12308Date:   Mon Dec 3 20:04:19 2007 -0800
12309
12310    Use __APPLE__ instead of __DARWIN__
12311
12312commit b9c032e1d5ed08510863dfb91b8bda588e6c8c9e
12313Author: Jeremy Huddleston <jeremy@yuffie.local>
12314Date:   Wed Nov 28 16:43:49 2007 -0800
12315
12316    Define __DARWIN__ when host_os == darwin* as needed in SetLocale.c
12317
12318commit 4b91ed099554626f1ec17d5bdf7bd77ce1a70037
12319Author: Alan Coopersmith <alan.coopersmith@sun.com>
12320Date:   Wed Nov 21 16:50:04 2007 -0800
12321
12322    X.Org Bug #4312: incorrect comment asterisk in XAnyEvent.3x man page
12323    
12324    X.Org Bugzilla #4312 <http://bugs.freedesktop.org/show_bug.cgi?id=4312>
12325    
12326    Protect /* sequences from cpp pre-processor removal without transforming
12327    to Unicode mathematical asterisk character
12328
12329commit 2af660c2fcd15c86c66459bfc074c190ea1462e6
12330Author: Jamey Sharp <jamey@minilop.net>
12331Date:   Mon Oct 29 10:46:20 2007 -0700
12332
12333    Two threads can request sequence sync and XID fetch simultaneously.
12334    
12335    So don't assert that they can't.
12336    
12337    This makes the Xlib/XCB implementation of _XAllocID more closely
12338    resemble the traditional Xlib version.
12339
12340commit 6e5485e0a5e3ab738becad12193e760c5fee83a4
12341Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
12342Date:   Sun Oct 28 04:44:00 2007 -0800
12343
12344    X.Org Bug #12983: Typos in ./man/XChangeKeyboardControl.man
12345    
12346    <http://bugs.freedesktop.org/show_bug.cgi?id=12983>
12347
12348commit 24527c92fd1f433ea135e85ec876a94a529fe500
12349Author: Yann Droneaud <ydroneaud@mandriva.com>
12350Date:   Wed Oct 24 19:26:07 2007 +0300
12351
12352    XIM: Properly initialise client event
12353    
12354    Make sure all ClientMessage fields are initialised to 0 before we send it.
12355
12356commit e41477f37b0d9b74a056d22dbf0073a94eecb9d6
12357Author: Daniel Stone <daniel@fooishbar.org>
12358Date:   Wed Oct 24 19:22:22 2007 +0300
12359
12360    Colours: Fix --disable-xcms
12361    
12362    Disable large tracts of colour management code when passing
12363    --disable-xcms.
12364
12365commit 11ea09745efa8de7dc82fe30ebd2393f08390957
12366Author: Eric Anholt <eric@anholt.net>
12367Date:   Fri Aug 31 17:30:33 2007 -0700
12368
12369    Bug #2081: Note the range limitation of XSetScreenSaver arguments.
12370
12371commit 31540f1438ec63faf37044f2fd654b335ddf80f0
12372Author: Kristian Høgsberg <krh@redhat.com>
12373Date:   Wed Aug 29 19:50:57 2007 -0400
12374
12375    Add GLX 1.4 requests and errors.
12376
12377commit 7c996f78914c77fe17e9f4feede980d895d9df51
12378Author: Eric Anholt <eric@anholt.net>
12379Date:   Tue Aug 28 15:15:11 2007 -0700
12380
12381    Add XF86 keyboard/monitor brightness keysyms to the keysymbdb.
12382
12383commit fa4effe82759f864a22a2dc6c920fa72ddb175a8
12384Author: Eric S. Raymond <esr@thyrsus.com>
12385Date:   Sun Jan 14 10:48:00 2007 -0800
12386
12387    Bug #9658: Bad markup on XIfEvent.3x
12388    
12389    X.Org Bugzilla #9658 <https://bugs.freedesktop.org/show_bug.cgi?id=9658>
12390
12391commit 74cba78daa738ef4d92096107d95c1a585933666
12392Author: Eric S. Raymond <esr@thyrsus.com>
12393Date:   Sun Jan 14 10:43:00 2007 -0800
12394
12395    Bug #9655: Bad markup in XrmUniqueQuark.3x
12396    
12397    X.Org Bugzilla #9655 <https://bugs.freedesktop.org/show_bug.cgi?id=9655>
12398
12399commit 4341d1a34b2a2e460b58131b6fd81935f3355bbc
12400Author: Eric S. Raymond <esr@thyrsus.com>
12401Date:   Sun Jan 14 10:43:00 2007 -0800
12402
12403    Bug #9654: Bad markup in XrmGetFileDatabase.3x
12404    
12405    X.Org Bugzilla #9654 <https://bugs.freedesktop.org/show_bug.cgi?id=9654>
12406
12407commit 2db713252090cae08f0200fecad4fc25fb64c8b1
12408Author: Eric S. Raymond <esr@thyrsus.com>
12409Date:   Sun Jan 14 10:40:00 2007 -0800
12410
12411    Bug #9653: Bad markup in XQueryColor.3x
12412    
12413    X.Org Bugzilla #9653 <https://bugs.freedesktop.org/show_bug.cgi?id=9653>
12414
12415commit 9d3ceea4b902e0471824c1e07ad64342b9a1114e
12416Author: Eric S. Raymond <esr@thyrsus.com>
12417Date:   Sun Jan 14 10:40:00 2007 -0800
12418
12419    Bug #9652: Bad markup in XDrawArc.3x
12420    
12421    X.Org Bugzilla #9652 <https://bugs.freedesktop.org/show_bug.cgi?id=9652>
12422
12423commit 2e7e0748d353d7f53bbd65ec6bf0df8758528ddc
12424Author: Eric S. Raymond <esr@thyrsus.com>
12425Date:   Sun Jan 14 10:39:00 2007 -0800
12426
12427    Bug #9651: Bad markup in XcmsColor.3x
12428    
12429    X.Org Bugzilla #9651 <https://bugs.freedesktop.org/show_bug.cgi?id=9651>
12430
12431commit c316aaf0aab06951db9dc5c9c1148bfea835d885
12432Author: Eric S. Raymond <esr@thyrsus.com>
12433Date:   Sun Jan 14 10:38:00 2007 -0800
12434
12435    Bug #9650: Bad markup in XLoadFont.3x manual page
12436    
12437    X.Org Bugzilla #9650 <https://bugs.freedesktop.org/show_bug.cgi?id=9650>
12438
12439commit ca5d9a625ea0965853fa9e74a448b8c29c78ec95
12440Author: Eric S. Raymond <esr@thyrsus.com>
12441Date:   Tue Jan 2 10:18:00 2007 -0800
12442
12443    Bug 9523: Markup problems in XQueryExtension.3x
12444    
12445    X.Org Bugzilla #9523 <https://bugs.freedesktop.org/show_bug.cgi?id=9523>
12446
12447commit fe713c616e29ba19c179b43c18eca1035079ce18
12448Author: Ian Romanick <idr@us.ibm.com>
12449Date:   Tue Aug 21 14:56:33 2007 -0700
12450
12451    Make sure nls/am_ET.UTF-8/Makefile is created by configure.
12452
12453commit e3430616f26b68e1439143cbe10732f3fc329d20
12454Author: Eric S. Raymond <esr@thyrsus.com>
12455Date:   Tue Jan 2 08:40:00 2007 -0800
12456
12457    Bug #9516: Markup error in XAllocWMHints.3x
12458    
12459    X.Org Bugzilla #9516 <https://bugs.freedesktop.org/show_bug.cgi?id=9516>
12460
12461commit d8fe979fc929833e8c754aed32641786d5a0622b
12462Merge: 21ca9533 4ec1723f
12463Author: James Cloos <cloos@jhcloos.com>
12464Date:   Mon Aug 20 15:34:50 2007 -0400
12465
12466    Merge branch 'master' of ssh://git.freedesktop.org/git/xorg/lib/libX11
12467
12468commit 21ca953337fb221b85345bf35ce1a98a0dcb2bf2
12469Author: James Cloos <cloos@jhcloos.com>
12470Date:   Mon Aug 20 15:34:03 2007 -0400
12471
12472    Fix typo
12473    The code <U1000000D> was used where <U10000DC> was obviously intended.
12474    
12475    It is possible that <Udiaeresis> should be used instead, if that will
12476    not break anyone’s setup.
12477
12478commit 4ec1723fff729440cd3349c1f95d87d2a6ba89cf
12479Author: James Cloos <cloos@jhcloos.com>
12480Date:   Mon Aug 20 15:25:48 2007 -0400
12481
12482    Add compose file for Ethiopic to match new keyboard in xkeyboard-config
12483    From bug report:
12484    
12485      https://bugs.freedesktop.org/show_bug.cgi?id=11307
12486
12487commit eff33ae525337ce2026be135a26464c7b1237113
12488Author: James Cloos <cloos@jhcloos.com>
12489Date:   Sat Aug 18 17:58:23 2007 -0400
12490
12491    Patch for Catalan locales
12492    From bugzilla bug 10943¹:
12493    
12494      There are several Catalan locale codes which presently can
12495      be used in X11 systems; especially after they were accepted
12496      in belocs-locale-data².
12497    
12498      In the following patches, I³ add ca_AD, ca_FR and ca_IT Catalan
12499      locale codes.  For instance, without this, using ca_AD (actually
12500      a quite used locale⁴) some applications (eg. Emacs or Skype)
12501      cannot display Catalan diacritic marks as you type them.
12502    
12503    1] https://bugs.freedesktop.org/show_bug.cgi?id=10943
12504    2] http://lists.debian.org/debian-devel-changes/2005/07/msg01429.html
12505    3] Toni Hermoso Pulido <toniher@softcatala.org>
12506    4] https://launchpad.net/~ubuntu.cat/+members
12507
12508commit 1f980cb7d022f53d0aee9e793b08203fb888e86e
12509Author: James Cloos <cloos@jhcloos.com>
12510Date:   Sat Aug 18 17:47:04 2007 -0400
12511
12512    Add additional Euro signs to compose
12513    Inspired by bug 7419¹ make all of:
12514    
12515        C=, =C, c=, =c, E=, =E, e=, E=
12516    
12517    after <Multi_key> generate € U+20AC EURO SIGN.
12518    
12519    1] https://bugs.freedesktop.org/show_bug.cgi?id=7419
12520
12521commit 4b0a14521449dfce8b4347bd17243efd1d3eae2d
12522Author: James Cloos <cloos@jhcloos.com>
12523Date:   Sat Aug 18 17:29:08 2007 -0400
12524
12525    Compose fix for Latin-1 (from Debian)
12526    The description from bugzilla bug 7417¹ is:
12527    
12528      We've been shipping this patch for some time in Debian now. The
12529      problem description from the patch header is reproduced below. You
12530      may want to note the licensing issue mentioned below, but we've been
12531      shipping it because the method by which this particular patch was
12532      generated and updated was also given below.
12533    
12534      This patch by Denis Barbier.
12535    
12536      The X11 protocol states that Unicode keysyms are in the range
12537      0x01000100 - 0x0110FFFF.  If the result of composing characters is a
12538      Unicode codepoint, X returns the corresponding Unicode keysym, which
12539      is its Unicode codepoint augmented by 0x01000000.  Latin-1
12540      characters must not appear with their Unicode codepoints in compose
12541      files, otherwise the returned composed character lies in the range
12542      0x01000000 - 0x010000FF which is not valid.
12543    
12544      There are two solutions: either fix composing routines to return
12545      0xZZ instead of 0x010000ZZ (where Z is an hexadecimal digit), or
12546      replace U00ZZ by their corresponding keysyms in compose files.  The
12547      latter is more logical and less error prone, so compose files will
12548      be patched.  Many applications accept these invalid Unicode keysyms,
12549      but few of them don't, most notably xemacs.  Only UTF-8 locales are
12550      affected.
12551    
12552      This has been fixed very recently in XFree86 CVS (but not xorg), but
12553      for licensing reasons, this patch is not grabbed.  Instead automatic
12554      conversion is performed by:
12555    
12556        sed -e '/XK_LATIN1/,/XK_LATIN1/!d' /usr/include/X11/keysymdef.h \
12557        | grep -v deprecated | grep 0x0 \
12558        | sed -e 's/0x0/U0/' -e 's/XK_//' \
12559        | awk '{ printf "s/\\b%s\\b/%s/ig\n", $3, $2; }' > sedfile
12560        for f in nls/*.UTF-8/Compose.pre
12561        do
12562          sed -f sedfile $f > $f.tmp && mv $f.tmp $f
12563        done
12564    
12565    [I edited the quoted script to update it for the current location of
12566    the installed keysymdef.h and the current layout of the libX11
12567    repo. -JimC]
12568    
12569    I applied the script, not the patch attached to the bugreport.
12570    
12571    1] https://bugs.freedesktop.org/show_bug.cgi?id=7417
12572
12573commit 5cf5bc76642bfece7cb5b76faf414bf445f14489
12574Author: James Cloos <cloos@jhcloos.com>
12575Date:   Sat Aug 18 17:13:41 2007 -0400
12576
12577    Add some compose sequences
12578    
12579    Add some compose sequences from the patch in bug 5371 (attachment 4122).
12580    
12581    Cf:
12582    
12583    https://bugs.freedesktop.org/show_bug.cgi?id=5371
12584    https://bugs.freedesktop.org/attachment.cgi?id=4122
12585
12586commit d4002e389dd69780dfc7c2f7bd3cb0c57f05d4f8
12587Author: James Cloos <cloos@jhcloos.com>
12588Date:   Sat Aug 18 13:57:31 2007 -0400
12589
12590    Fix SMP Compose targets
12591    The compose targets from the SMP (plane 1) were incorrect.
12592    
12593    At some point the 0x10000 bit had been lost.
12594
12595commit f1ed3da9a30a1f0264fdc7d1c6466f27fe2a3d7d
12596Author: Jeremy C. Reed <reed@glacier.reedmedia.net>
12597Date:   Thu Aug 16 17:37:22 2007 -0500
12598
12599    Fix a mutex reference-counting bug.
12600    
12601    I was told that some systems have a much more permissive libpthread.
12602    I was asked to commit this. This is from NetBSD's X source.
12603    (I didn't receive any feedback on xorg list for over two weeks
12604    about this.)
12605
12606commit ac00a44b4875de70382da5a40dd87f976e5b9327
12607Author: Tilman Sauerbeck <tilman@code-monkey.de>
12608Date:   Wed Aug 1 20:36:03 2007 +0200
12609
12610    Bumped version to 1.1.3.
12611
12612commit 76fae9cba1e9bdf7f0eb2ff2b90153d622136cf0
12613Author: Joerg Sonnenberger <joerg@netbsd.org>
12614Date:   Fri Jul 27 11:15:47 2007 -0700
12615
12616    Fail properly on errors in recursive make.
12617
12618commit 1a18319b3bde08dd9ef69c7cd735a76000cf3177
12619Author: Brice Goglin <Brice.Goglin@ens-lyon.org>
12620Date:   Thu Jul 26 23:31:15 2007 +0200
12621
12622    Add missing override parameter in XrmCombineDatabase prototype in the manpage
12623    
12624    Reported by Arnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
12625    in http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=393434
12626    and https://bugs.freedesktop.org/show_bug.cgi?id=9948
12627    
12628    Also add the type of the second argument in XrmMergeDatabases.
12629
12630commit 6f0764d4b56f64786b4980839ca262f10a51af6f
12631Author: Brice Goglin <Brice.Goglin@ens-lyon.org>
12632Date:   Thu Jul 26 22:53:52 2007 +0200
12633
12634    Clarify return value of XGetCommand in case of error in the manpage
12635    
12636    Reported by Sean Perry <shalehperry@attbi.com>
12637    in http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=133348
12638    and https://bugs.freedesktop.org/show_bug.cgi?id=9828
12639
12640commit b8bef57342632cc2d25580bb7daa3839bae04d89
12641Author: Alan Coopersmith <alan.coopersmith@sun.com>
12642Date:   Wed Jul 25 17:44:06 2007 -0700
12643
12644    Include comment/copyright/license for AC_DEFINE_DIR in acinclude.m4
12645
12646commit 590cde811a79375231c59ed8583e02b111ed567c
12647Author: Kean Johnston <kean@armory.com>
12648Date:   Thu Jul 19 16:44:20 2007 -0700
12649
12650    Reset hostname when falling back from :0 to hostname/localhost:0 as well
12651
12652commit d334665e619e9db657a2ea2764a8b852401d4a3f
12653Author: Kean Johnston <kean@armory.com>
12654Date:   Tue Jul 17 16:34:30 2007 -0700
12655
12656    LOCALCONN fallback changes DisplayString() output, breaks KDE
12657    
12658    See <http://lists.freedesktop.org/archives/xorg/2007-July/026443.html>
12659
12660commit 8e76bcf3cafda85058ce5f35f1f81929f4772f72
12661Author: Olivier Blin <blino@mandriva.org>
12662Date:   Mon Jun 11 18:32:09 2007 +1000
12663
12664    fix XGetMotionEvents arguments order - Fixes bug 11222
12665
12666commit c2f88cdf5cd9c94b77e5bfdac572b5ac06ab4aa8
12667Author: Jamey Sharp <jamey@minilop.net>
12668Date:   Sun Jun 10 16:19:59 2007 -0700
12669
12670    Fix locking in _XimGetWindowEventmask.
12671    
12672    Now that XFilterEvent drops the Display lock before invoking callback
12673    functions, _XimGetWindowEventmask is called without the lock held. So
12674    when it called _XGetWindowAttributes, a variant of XGetWindowAttributes
12675    that does not lock the Display, Xlib/XCB would assert:
12676    
12677    xcb_xlib.c:50: xcb_xlib_unlock: Assertion `c->xlib.lock' failed.
12678    
12679    Should fix Gentoo #156367, Ubuntu #87947, Debian #427296. And others?
12680
12681commit 65f0ab5d46d80d55fc04d4eb14fa05f130eb8b9c
12682Author: Jamey Sharp <jamey@minilop.net>
12683Date:   Sun Jun 3 21:41:47 2007 -0700
12684
12685    Move security fixes to the top of NEWS, and fix spacing.
12686    
12687    Commit by Josh Triplett and Jamey Sharp.
12688
12689commit a549a258b8fcb1ba9d0c1b01b72967e385f67cab
12690Author: Jamey Sharp <jamey@minilop.net>
12691Date:   Sun Jun 3 21:29:40 2007 -0700
12692
12693    Add NEWS item for bugfix in commit e2c1d788d1fe7bd2d34756493951552441e59b8c.
12694    
12695    Commit by Josh Triplett and Jamey Sharp
12696
12697commit 5123b77a3d32d3ad479462f319762c328278aed9
12698Author: Jamey Sharp <jamey@minilop.net>
12699Date:   Sun Jun 3 21:24:54 2007 -0700
12700
12701    Xlib/XCB: Inline and simplify handle_event, since only process_responses calls it now.
12702    
12703    Commit by Josh Triplett and Jamey Sharp.
12704
12705commit 582ca690ea4f3ffd2b94826c4db97229bd3c7238
12706Author: Jamey Sharp <jamey@minilop.net>
12707Date:   Sun Jun 3 20:59:12 2007 -0700
12708
12709    Xlib/XCB: Fix _XReadEvents to always enqueue a new event, even if an error occurs
12710    
12711    Commit c337f9de7cfd89f983f83956b7457a274dd412f3 broke the invariant that
12712    _XReadEvents always enqueues at least one event even if an error occurred,
12713    because the one call to xcb_wait_for_event would then return an error, not an
12714    event, and nothing else ensured that process_responses would obtain an event.
12715    Fix this by reverting most of c337f9de7cfd89f983f83956b7457a274dd412f3 and
12716    f417570735aac865eb6b576d1ea76b5bfcd8573b and implementing the correct fix.  In
12717    process_responses, wait_for_first_event now serves as a flag, cleared when
12718    actually handling an event.
12719    
12720    Commit by Josh Triplett and Jamey Sharp.
12721
12722commit e2c1d788d1fe7bd2d34756493951552441e59b8c
12723Author: Jamey Sharp <jamey@minilop.net>
12724Date:   Sun Jun 3 17:33:23 2007 -0700
12725
12726    Xlib/XCB: Only remove pending_requests when there are provably no more responses.
12727
12728commit 7a6dbd4b07ca0a49c30ca7a1d2437eafb2e15eab
12729Author: Josh Triplett <josh@freedesktop.org>
12730Date:   Sun Jun 3 15:39:39 2007 -0700
12731
12732    Bump version number to 1.1.2, and add NEWS entry for 1.1.2
12733    
12734    Signed-off-by: Josh Triplett <josh@freedesktop.org>
12735
12736commit 416f38f2e67ee1979b3d2feac6f06b3670238804
12737Author: Josh Triplett <josh@freedesktop.org>
12738Date:   Sun Jun 3 12:13:44 2007 -0700
12739
12740    Revert "Revert "include: don't distribute XlibConf.h""
12741    
12742    This reverts commit 79fa3d8070d95b960ba486f2439225872471dadd.
12743    
12744    Re-revert the XlibConf.h change, which prevented distribution, not
12745    installation.
12746
12747commit 79fa3d8070d95b960ba486f2439225872471dadd
12748Author: Josh Triplett <josh@freedesktop.org>
12749Date:   Sat Jun 2 22:05:16 2007 -0700
12750
12751    Revert "include: don't distribute XlibConf.h"
12752    
12753    This reverts commit c9e28e05ae01ce8a29bea09df759b6271865b44c.
12754    
12755    The installed XlibInt.h includes XlibConf.h , so libX11 should ship
12756    XlibConf.h.  (Commit c9e28e05ae01ce8a29bea09df759b6271865b44c didn't actually
12757    prevent automake from shipping XlibConf.h, because it used
12758    nodist_x11include_HEADERS rather than nodist_HEADERS.)
12759
12760commit f417570735aac865eb6b576d1ea76b5bfcd8573b
12761Author: Jamey Sharp <jamey@minilop.net>
12762Date:   Sat Jun 2 17:59:15 2007 -0700
12763
12764    Xlib/XCB: inline wait_or_poll_for_event, which now had only one caller.
12765    
12766    Commit by Josh Triplett and Jamey Sharp.
12767
12768commit c337f9de7cfd89f983f83956b7457a274dd412f3
12769Author: Jamey Sharp <jamey@minilop.net>
12770Date:   Sat Jun 2 17:46:41 2007 -0700
12771
12772    Xlib/XCB: Ensure _XReadEvents reads at least one new event and blocks for exactly one event.
12773    
12774    Commit by Jamey Sharp and Josh Triplett.
12775
12776commit 7f66c897f04806b75e574b55b48921b48045e3f9
12777Author: Jamey Sharp <jamey@minilop.net>
12778Date:   Sat Jun 2 16:43:39 2007 -0700
12779
12780    Update _XReply's copy of _XCBUnlockDisplay's guts.
12781    
12782    We introduced this bug in 6b81cbbedfb521ce046b77ee3cc54e884a1dc0c5.
12783    
12784    Also add a comment in _XCBUnlockDisplay to discourage this problem from
12785    respawning.
12786    
12787    Commit by Josh Triplett and Jamey Sharp.
12788
12789commit 740ead23512f8d2eaafaa69e514f1ebafad475b9
12790Author: Jamey Sharp <jamey@minilop.net>
12791Date:   Sat Jun 2 16:01:01 2007 -0700
12792
12793    Xlib/XCB: Avoid re-crashing after _XIOError.
12794    
12795    Commit by Josh Triplett and Jamey Sharp.
12796
12797commit 6b81cbbedfb521ce046b77ee3cc54e884a1dc0c5
12798Author: Jamey Sharp <jamey@minilop.net>
12799Date:   Sat Jun 2 12:30:30 2007 -0700
12800
12801    Hold XCB's Xlib lock even when only the user lock (XLockDisplay) is held.
12802    
12803    An Xlib client can query Display state, such as with NextRequest, while
12804    it holds only the Xlib user lock (between XLockDisplay and
12805    XUnlockDisplay), so XCB requests in other threads should be blocked when
12806    the Xlib user lock is held.
12807    
12808    We acquire the lock even when XInitThreads was not called, so that pure
12809    XCB code can use multiple threads even in an otherwise single-threaded
12810    Xlib application.
12811    
12812    Commit by Josh Triplett and Jamey Sharp.
12813
12814commit 95523387d619af5b400748898d722e080b5ce1a6
12815Author: Jamey Sharp <jamey@minilop.net>
12816Date:   Sat Jun 2 11:57:39 2007 -0700
12817
12818    Allow re-entrant Xlib calls from _XIOError.
12819    
12820    Some libraries try to clean up X resources from atexit handlers, _fini,
12821    or C++ destructors. To make these work, the Display lock should be
12822    downgraded to a user lock (as in XLockDisplay) before calling exit(3).
12823    This blocks Xlib calls from threads other than the one calling exit(3)
12824    while still allowing the exit handlers to call Xlib.
12825    
12826    This assumes that the thread calling exit will call any atexit handlers.
12827    If this does not hold, then an alternate solution would involve
12828    registering an atexit handler to take over the lock, which would only
12829    assume that the same thread calls all the atexit handlers.
12830    
12831    Commit by Josh Triplett and Jamey Sharp.
12832
12833commit 91b02b8064f4e0bcc56019f0722914850008a597
12834Author: Tilman Sauerbeck <tilman@code-monkey.de>
12835Date:   Thu May 17 19:07:34 2007 +0200
12836
12837    More constification.
12838
12839commit a4f3841940158351f9424c3f59b305cce877177d
12840Author: Tilman Sauerbeck <tilman@code-monkey.de>
12841Date:   Thu May 17 00:29:43 2007 +0200
12842
12843    Constified composite text charset table.
12844
12845commit 0581c0aa6039e6b2abb9f7b0a4f9904d8e01f00e
12846Author: Tilman Sauerbeck <tilman@code-monkey.de>
12847Date:   Wed May 16 23:19:22 2007 +0200
12848
12849    Have the compiler fill in hexTable so we don't have to do it at runtime.
12850
12851commit 0e8d9ca47dab0d069e305d5784d05f2ade04f0a8
12852Author: Tilman Sauerbeck <tilman@code-monkey.de>
12853Date:   Wed May 16 19:36:23 2007 +0200
12854
12855    More constification.
12856
12857commit 6d2bed8f04942b4de086a519ac693e729c9fdeea
12858Author: Tilman Sauerbeck <tilman@code-monkey.de>
12859Date:   Wed May 16 19:18:20 2007 +0200
12860
12861    Constify and clean up token table.
12862
12863commit 6c508eab5df5d517f7e4cbe6087308cd53a564b2
12864Author: Tilman Sauerbeck <tilman@code-monkey.de>
12865Date:   Wed May 16 18:24:42 2007 +0200
12866
12867    Constified more tables.
12868
12869commit e699c4231c205ef00d687b6412308d031b99806b
12870Author: Tilman Sauerbeck <tilman@code-monkey.de>
12871Date:   Wed May 16 18:01:23 2007 +0200
12872
12873    Constified error list.
12874
12875commit a68a1cd7cb990ba276fbc36a7591044d78b3d3c1
12876Author: Peter Hutterer <peter@cs.unisa.edu.au>
12877Date:   Tue May 15 16:54:01 2007 +0930
12878
12879    Add XGenericEvent definition and handling for long events.
12880
12881commit c76d30253f1483ac8200ad5c032a818907e65030
12882Author: Jan Willem Stumpel <jstumpel@planet.nl>
12883Date:   Fri May 4 12:00:49 2007 -0700
12884
12885    Update el_GR.UTF-8/Compose.pre to match changes in xkeyboard-config cvs
12886    
12887    Cf:
12888    
12889      https://bugs.freedesktop.org/show_bug.cgi?id=10851
12890      https://bugs.freedesktop.org/show_bug.cgi?id=10824
12891      http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=386385
12892    
12893    The greek keyboard definition was changed to replace dead_horn and
12894    dead_ogonek with U0313 COMBINING COMMA ABOVE (aka Psili) and U0314
12895    COMBINING REVERSED COMMA ABOVE (aka Dasia).
12896    
12897    This patch modifies the Greek Compose.pre to match.
12898    
12899    It is generated by the script Jan Willem Stumpel <jstumpel@planet.nl>
12900    posted to 386385@bugs.debian.org:
12901    
12902    #!/usr/bin/perl
12903    while (<>) {
12904      print $_;
12905      if (/dead_horn/) {
12906        s/dead_horn/U0313/;
12907        print $_;
12908      }
12909      elsif (/dead_ogonek/) {
12910        s/dead_ogonek/U0314/;
12911        print $_;
12912      }
12913    }
12914
12915commit a48386ce6b5f8fd2d9dc11a966c9bf5da59f3831
12916Author: Magnus Kessler <Magnus.Kessler@gmx.net>
12917Date:   Tue May 1 15:20:08 2007 +0200
12918
12919    Switched function definitions from K&R to ANSI style.
12920
12921commit 605d357074d556a05a3fba2e85cbea36a3204248
12922Author: Tilman Sauerbeck <tilman@code-monkey.de>
12923Date:   Tue May 1 14:47:03 2007 +0200
12924
12925    Tweaked configure output about the man pages suffix.
12926
12927commit 9824b40d2af4ca2376512c1be7743da0d5065900
12928Author: Alan Coopersmith <alan.coopersmith@sun.com>
12929Date:   Sat Apr 28 00:42:18 2007 -0700
12930
12931    Fix typo in nroff macro in XkbAddGeomOverlayKey.man
12932
12933commit f93849dcc68bd5042ea0884e5190dc7c35b31d68
12934Author: Alan Coopersmith <alan.coopersmith@sun.com>
12935Date:   Sat Apr 28 00:30:55 2007 -0700
12936
12937    Protect C comments and #defines in XKB man pages from being mangled by cpp
12938
12939commit f2f27d4763c7665e422fab10b96b4cf5ad6c0a6f
12940Author: Alan Coopersmith <alan.coopersmith@sun.com>
12941Date:   Sat Apr 28 00:14:50 2007 -0700
12942
12943    Add Makefile to process/install XKB man pages
12944
12945commit d9954c6f6f3a8c406b946acd0d034ff83c656156
12946Author: Dennis Arellano <Dennis.Arellano@Sun.COM>
12947Date:   Thu Aug 19 00:00:00 1999 -0700
12948
12949    Add man pages for XKB API's
12950    
12951    Man pages originally written for X11R6.4 integration to Solaris 7 11/99
12952    Sun bug id 4258344: Add new XKB API manpages for 6.4 upgrade
12953    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=4258344>
12954    
12955    (Volunteer needed to convert prototypes in man pages to ANSI C style...)
12956
12957commit f640a49b5e2ebf29f9d655df544c63bf826f619a
12958Author: Tilman Sauerbeck <tilman@code-monkey.de>
12959Date:   Fri Apr 20 18:39:59 2007 +0200
12960
12961    Markup tweak for XOpenIM.
12962
12963commit e972b0bb255af4f3258217852542faf5afa60b28
12964Author: Julien Cristau <jcristau@debian.org>
12965Date:   Fri Apr 20 18:35:09 2007 +0200
12966
12967    Bug #9695: Fixed a few argument types in the XOpenIM manpage.
12968
12969commit b4e2276f329fa42397cb8609cfcd34ebafd3d96b
12970Author: Julien Cristau <jcristau@debian.org>
12971Date:   Fri Apr 20 18:28:52 2007 +0200
12972
12973    Bug #9697: Fixed documentation of XVisualInfo struct.
12974    
12975    The "depth" member was said to be unsigned int, but it's signed.
12976
12977commit 4068f3dae01c630f825002673b1d3a047ad61863
12978Author: Julien Cristau <jcristau@debian.org>
12979Date:   Fri Apr 20 16:41:21 2007 +0200
12980
12981    Bug #9696: refer to XDefineCursor() instead of XDefineCusor().
12982
12983commit 603c2f88d4e57ce1a3c16e8b6246866e6edd8fa8
12984Author: Tilman Sauerbeck <tilman@code-monkey.de>
12985Date:   Sat Apr 7 14:42:55 2007 +0200
12986
12987    Use unistd.h to get getresuid() and friends.
12988    
12989    This works since we now have _GNU_SOURCE defined.
12990
12991commit 0300f295bbd3a0c7c46baac8e0a27aeaf53c9d9b
12992Author: Tilman Sauerbeck <tilman@code-monkey.de>
12993Date:   Sat Apr 7 14:27:12 2007 +0200
12994
12995    Bug #10562: Define _GNU_SOURCE on glibc systems.
12996
12997commit a225a0be48770beb689d5ac5da97073634f7deab
12998Author: Tilman Sauerbeck <tilman@code-monkey.de>
12999Date:   Fri Apr 6 12:46:25 2007 +0200
13000
13001    For nls/*.pre, allow people to comment lines by starting them with '##'.
13002    
13003    This fixes a bunch of cpp warnings from nls/en_US.UTF-8/Compose.pre.
13004    Fixing that file would have been a larger diff, and using ## may be
13005    nicer to use anyway.
13006
13007commit 1c75a9479011e5f1ad01c950628d0ef5a302d8b6
13008Author: Tilman Sauerbeck <tilman@code-monkey.de>
13009Date:   Fri Apr 6 11:59:31 2007 +0200
13010
13011    Bug #10475: Fixed lots of char*/const char* mixups.
13012    
13013    I didn't fix all of them, as that would require touching
13014    public headers.
13015
13016commit 680dd50193b5b3fcabdd3f1fcbd6a889d5a95c54
13017Author: Matthias Hopf <mhopf@suse.de>
13018Date:   Thu Apr 5 11:53:18 2007 +0200
13019
13020    Fix 64bit issues with reallocation.
13021
13022commit 4d38aeaca42d0bdfe34a833a142ee4d895de03bf
13023Author: Tilman Sauerbeck <tilman@code-monkey.de>
13024Date:   Wed Apr 4 18:41:18 2007 +0200
13025
13026    Fixed a few warnings.
13027
13028commit 7dc7ef398b6ad90ccd1680ed9cd1cfdd47312f5a
13029Author: Matthieu Herrb <matthieu@roadrock.(none)>
13030Date:   Tue Apr 3 15:39:52 2007 +0200
13031
13032    Multiple integer overflows in the XGetPixel() and XInitImage functions
13033    
13034    CVE-2007-1667
13035
13036commit 0284b144340a455a4b5b5011d81ac5a610372291
13037Author: David Baron <dbaron@dbaron.org>
13038Date:   Fri Mar 30 17:07:46 2007 +0200
13039
13040    Bug #7703: Fixed XSetSizeHints() et al wrt use of uninitialized data.
13041    
13042    Now only those fields of the respective hint struct are set that
13043    are actually valid in the input data.
13044    The changed functions are:
13045    XSetSizeHints(), XSetWMHints() and XSetWMSizeHints().
13046
13047commit 0994faa0c76c45b106442db461b8a30a3e1c9395
13048Author: Tilman Sauerbeck <tilman@code-monkey.de>
13049Date:   Thu Mar 29 17:31:25 2007 +0200
13050
13051    Fixed the change from the previous SendEvent commit.
13052    
13053    Testing a different patch than the one you commit is bad, right?
13054
13055commit 398d75528a84f4b8414eb0e363cf53b1b16f6fdf
13056Author: Tilman Sauerbeck <tilman@code-monkey.de>
13057Date:   Wed Mar 28 22:23:44 2007 +0200
13058
13059    Bug #10292: Fixed a memory leak related to XOpenDisplay() in the XCB code.
13060
13061commit ab0bcd07957cecc8e7c0e75d5160a625e91264fe
13062Author: David Baron <dbaron@dbaron.org>
13063Date:   Wed Mar 28 22:21:40 2007 +0200
13064
13065    Bug #7713: Initialize all of the event's fields before sending it.
13066
13067commit bc80f9fe3ccce40ee41246b97470c4f0519756ad
13068Author: Julien Cristau <jcristau@debian.org>
13069Date:   Sun Mar 18 13:14:48 2007 +0100
13070
13071    Bug #9279: Fixed a file descriptor leak.
13072
13073commit c9e28e05ae01ce8a29bea09df759b6271865b44c
13074Author: Daniel Stone <daniel@fooishbar.org>
13075Date:   Sat Dec 16 00:45:19 2006 +0200
13076
13077    include: don't distribute XlibConf.h
13078    
13079    Since XlibConf.h is built by configure, don't distribute it.
13080
13081commit dd1705ced2cac6b4b6b21e79272fcf9bed4bf376
13082Merge: 129bbb9f 769b9854
13083Author: Jeremy C. Reed <reed@glacier.reedmedia.net>
13084Date:   Thu Dec 14 14:23:20 2006 -0600
13085
13086    Merge branch 'master' of git+ssh://git.freedesktop.org/git/xorg/lib/libX11
13087
13088commit 129bbb9f9114a571556fa3a24f15ba58a5cdb2de
13089Author: Jeremy C. Reed <reed@glacier.reedmedia.net>
13090Date:   Thu Dec 14 14:21:19 2006 -0600
13091
13092    For NetBSD, define the XTHREADLIB and XTHREAD_CFLAGS.
13093
13094commit 769b9854f7eb1d6d20dd0b4a1c1215ad8e1b77b6
13095Author: Daniel Stone <daniel@fooishbar.org>
13096Date:   Wed Dec 6 18:53:00 2006 +0200
13097
13098    Makefile.am: make ChangeLog hook safer
13099    
13100    Make ChangeLog hook as safe as possible.
13101    (cherry picked from f5d6a3d24095c7ffed86705995d0874c885e7676 commit)
13102
13103commit 8a8185a649e93b90ffa820387ffdca831227f5a9
13104Author: Josh Triplett <josh@freedesktop.org>
13105Date:   Thu Nov 30 18:33:13 2006 -0800
13106
13107    Add autogen.sh to EXTRA_DIST.
13108
13109commit efe817f95ef8d05e863c83147e903140bc860de4
13110Author: Jamey Sharp <jamey@minilop.net>
13111Date:   Thu Nov 30 17:58:35 2006 -0800
13112
13113    Release libX11 1.1.1.
13114
13115commit f637a5b03164263a3af2e644cf655e52b015f1bb
13116Author: Ross Combs <rocombs@cs.nmsu.edu>
13117Date:   Sat Nov 25 14:45:17 2006 -0800
13118
13119    Debian bug #354315: Clarify return value in XGetWindowAttributes man page
13120    
13121    This man page does not discuss the actual return values of the
13122    function, but says they are of type "Status".  One might assume
13123    that this means you could compare it with the "Success" macro.
13124    One would be wrong.
13125    
13126    The X functions seem to have two three types representing status.
13127    If it is an "int" there are a number of error codes or "Success"
13128    which can be compared against.  If it is a bool, the result can be
13129    compared with "True" or "False".  If the return type is "Status" it
13130    appears that the return type is either 0 or 1.  Unfortunately the
13131    value for Success is zero, so it is important to distinguish
13132    between the first two types of return values and the third;
13133    otherwise the conditional will be inverted.
13134    
13135    XGetWindowAttributes() is one of the functions which returns zero
13136    for failure.  The man page should make this clear.
13137
13138commit c6a0b0f18ed1242eeb908f5cf767ab8381edd456
13139Author: Jamey Sharp <jamey@minilop.net>
13140Date:   Sat Nov 25 14:23:45 2006 -0800
13141
13142    Bug #9154: Always process an event for _XReadEvents, even if an error occurs
13143    
13144    Previously, process_responses (in the wait_for_first_event case called
13145    from _XReadEvents) considered any return from xcb_wait_for_event
13146    sufficient to think it had processed an event. If xcb_wait_for_event
13147    returned an error, and no more events occurred before process_responses
13148    called xcb_poll_for_event, process_responses would try to return with
13149    dpy->head NULL, and would fail an assertion for the _XReadEvents
13150    postcondition. Now, process_responses continues using xcb_wait_for_event
13151    until it gets an event.
13152
13153commit d56e78acce9b2aa1dd1bf172afedaa3bccd5e1c8
13154Author: Tilman Sauerbeck <tilman@code-monkey.de>
13155Date:   Sat Nov 25 05:29:31 2006 -0800
13156
13157    Bug #9153: Fix access to freed memory.
13158    
13159    The fix for bug #8622 introduced a smaller bug where _XReply would
13160    read memory shortly after freeing it. This patch caches the needed
13161    value in a stack-allocated variable before the heap-allocated memory
13162    is freed.
13163
13164commit 934ca763bbc0dd7ae460469bfc000ba101602bcc
13165Author: Josh Triplett <josh@freedesktop.org>
13166Date:   Fri Nov 24 19:57:58 2006 -0800
13167
13168    libx11 doesn't use inputproto in public headers; don't require it in x11.pc
13169    
13170    Based on a Debian patch.
13171
13172commit 4255997ef2d92740d51f6e63e9eabcfa089683f0
13173Author: Josh Triplett <josh@freedesktop.org>
13174Date:   Thu Nov 23 07:19:32 2006 -0800
13175
13176    Release libX11 1.1
13177
13178commit a1168e11ec9377307c51a7271faec3bf88a63a66
13179Author: Jamey Sharp <jamey@minilop.net>
13180Date:   Tue Nov 21 17:52:34 2006 -0800
13181
13182    Add note in man-page that XListFontsWithInfo is not thread-safe.
13183    
13184    _XReply drops the Display lock, so the value of dpy->request may change
13185    before _XReply is called again.
13186    
13187    I discovered this by inspection a year or two ago. I'm pretty confident
13188    in the claim, and nobody has come up with an argument for why it's safe
13189    despite appearances.
13190
13191commit 67abe024268c6b1fdee516e5d3a046ccffd7e80a
13192Author: Jamey Sharp <jamey@minilop.net>
13193Date:   Sat Nov 18 15:39:26 2006 -0800
13194
13195    Bug #8622: Fix response processing order for threaded apps
13196    
13197    Previously, process_responses (the common code for _XReply,
13198    _XReadEvents, and _XEventsQueued) took the current request sequence
13199    number as an argument, and did some highly complicated processing to
13200    attempt to process responses in order across threads.  This didn't
13201    actually work.
13202    
13203    Now, process_responses handles responses in order, by adding condition
13204    variables to the list of outstanding requests in
13205    dpy->xcb->pending_requests, and blocking on them when those requests
13206    should get processed to allow _XReply to process them; if actually
13207    called from _XReply, it returns when _XReply's request should get
13208    processed.  _XReply broadcasts on the condition variable after it has
13209    read its reply and re-acquired the display lock.
13210    
13211    Another great commit brought to you by Jamey Sharp, Josh Triplett, the
13212    Gobby collaborative text editor, conspy, and ridiculous amounts of SSH
13213    forwarding.
13214    
13215    Signed-off-by: Josh Triplett <josh@freedesktop.org>
13216    Signed-off-by: Jamey Sharp <jamey@minilop.net>
13217
13218commit 941f02ede63baa46f93ed8abccebe76fb29c0789
13219Author: Lars Knoll <lars@trolltech.com>
13220Date:   Wed Nov 8 12:17:41 2006 -0800
13221
13222    Don't hold the display lock around callbacks to the application.
13223    
13224    This fixes an XCB locking assertion failure, particularly with emacs.
13225
13226commit e494ecaac1ec8a22bd9a85f800fca74d02e9d358
13227Author: Diego 'Flameeyes' Pettenò <flameeyes@gentoo.org>
13228Date:   Tue Nov 7 09:32:00 2006 -0800
13229
13230    Add xcb-xlib dependency to x11.pc when built against XCB.
13231
13232commit 2302008a3793eb4df8ede777d54fe06505c47eaf
13233Author: Eric Anholt <eric@anholt.net>
13234Date:   Mon Nov 6 17:11:42 2006 -0800
13235
13236    XCB: Allocate the right amount of memory for dpy->lock_fns.
13237    
13238    Fixes a crash I was experiencing on startup of anything using gdk.
13239
13240commit 5f860655be88108b03ccd97470a0814819254bf0
13241Author: Jamey Sharp <jamey@minilop.net>
13242Date:   Thu Nov 2 17:55:31 2006 -0800
13243
13244    Release libX11 1.1 RC2 (1.0.99.2).
13245
13246commit a6f4bbf7b1d725b0f04bd660f57b861a76b19831
13247Author: Benno Schulenberg <bensberg@justemail.net>
13248Date:   Sun Oct 29 03:10:30 2006 +0300
13249
13250    nls (en_US): remove long compositions that override shorter (bug #2286)
13251    Remove long compositions that override (or get overriden by) later shorter
13252    compositions, e.g. a four-key compose sequence that gets overriden by a
13253    later three-key compose sequence.
13254
13255commit 0280bf11ef88673a9b5bba3a91a599260f1f0949
13256Author: Benno Schulenberg <bensberg@justemail.net>
13257Date:   Sun Oct 29 03:08:36 2006 +0300
13258
13259    nls: remove shadowed compose entries (bug #2286)
13260    Remove compose entries shadowed by others later on.
13261
13262commit d118f2b1ef10997194b281524177dea7396da7dd
13263Author: Benno Schulenberg <bensberg@justemail.net>
13264Date:   Sun Oct 29 03:07:15 2006 +0300
13265
13266    nls: remove duplicate compose entries (bug #2286)
13267    Remove a bunch of duplicate entries from various Compose files.
13268
13269commit 5e1cc2fe20e5904ca1e05a4cb7be13d450a593bb
13270Author: Caolan McNamara <caolanm@redhat.com>
13271Date:   Sun Oct 29 02:46:15 2006 +0300
13272
13273    XKB geometry: fix leaks in GetKeyboardByName (bug #8099)
13274    Don't leak the name and value of every property we parse, as well as the
13275    name of every colour.
13276
13277commit 686bb8b35acf6cecae80fe89b2b5853f5816ce19
13278Author: Matthias Hopf <mhopf@suse.de>
13279Date:   Wed Oct 18 14:25:04 2006 +0200
13280
13281    Fix double open of compose file.
13282    
13283    Issue found by Kees Cook <kees@canonical.com>.
13284
13285commit d3e65cb8cddf08913d83c9df2bb9b1517f2ad3a8
13286Author: Jamey Sharp <jamey@minilop.net>
13287Date:   Sat Oct 14 21:25:10 2006 -0700
13288
13289    XCB: check for and handle I/O errors in _XGetXCBBuffer.
13290
13291commit 256eba6b40c5f811a03b04abf5f85f728ee3ab5d
13292Author: Jamey Sharp <jamey@minilop.net>
13293Date:   Wed Oct 11 00:06:50 2006 -0700
13294
13295    XKB bugfix: SyncHandle must be called after UnlockDisplay, not before.
13296
13297commit 1eedf1bd033e496843cfde42ae4ae5a119298605
13298Author: Jamey Sharp <jamey@minilop.net>
13299Date:   Tue Oct 10 23:03:28 2006 -0700
13300
13301    Add correct Display locking to XKB functions.
13302    
13303    Some XKB functions didn't correctly call LockDisplay or UnlockDisplay.
13304    This patch fixes at least some instances of that problem.
13305    
13306    Thanks to Magnus Kessler <Magnus.Kessler@gmx.net> for finding these bugs
13307    and proposing a fix, which this patch is based on.
13308
13309commit e17c2cbe9fbaa1600d4b9463ec800a874b0d87cd
13310Author: David Nusinow <dnusinow@debian.org>
13311Date:   Tue Oct 10 22:11:05 2006 -0400
13312
13313    Dynamically generate internal manpage section using __libmanpagesuffix__ so that it actually matches the section if you don't use 3X11
13314
13315commit e53557da969b706dbc843f6fde3db31ffe382e0f
13316Author: Jamey Sharp <jamey@minilop.net>
13317Date:   Sat Oct 7 21:00:36 2006 -0700
13318
13319    Release libX11 1.1 RC1 (1.0.99.1).
13320
13321commit bf237409c5fce32c557d298f62f44d456c2b5bc8
13322Merge: ba477191 2d426d1f
13323Author: Jamey Sharp <jamey@minilop.net>
13324Date:   Sat Oct 7 21:07:16 2006 -0700
13325
13326    As XCB support is about to be released in libX11, stable is now subsumed by master.
13327
13328commit ba477191c67ce93e61423cc1abe35275704cce50
13329Author: Jamey Sharp <jamey@minilop.net>
13330Date:   Sat Oct 7 03:48:13 2006 -0700
13331
13332    XCB: Don't rely on having the definition of struct xcb_setup_t available.
13333
13334commit 117b55cbd0b0ce51362df88363ed83d44a493ac7
13335Author: Jamey Sharp <jamey@minilop.net>
13336Date:   Fri Oct 6 16:27:31 2006 -0700
13337
13338    xcb_poll_for_event no longer takes an 'int *error' out-parameter.
13339
13340commit caaa8e8a55e837b3585c1dee7bef194fc4c79d16
13341Author: Josh Triplett <josh@freedesktop.org>
13342Date:   Fri Oct 6 16:26:11 2006 -0700
13343
13344    Actually ship Xxcbint.h
13345
13346commit 7b027e53b5e393082f4f515c8ba18077eb97163f
13347Author: Josh Triplett <josh@freedesktop.org>
13348Date:   Fri Oct 6 16:25:50 2006 -0700
13349
13350    Clean ChangeLog only in "make maintainer-clean", not "make clean"
13351    
13352    ChangeLog requires a git repo to generate; make clean and make distclean
13353    shouldn't get rid of it.
13354
13355commit cab22e02e78b3e5b8a73d1cd55cf6686426b47e0
13356Author: Josh Triplett <josh@freedesktop.org>
13357Date:   Fri Oct 6 16:24:58 2006 -0700
13358
13359    Add ChangeLog and "make dist"-generated files to .gitignore
13360
13361commit e4c7cfdee4a40e466c0c6b370cabd432e9e855a0
13362Author: Josh Triplett <josh@freedesktop.org>
13363Date:   Fri Oct 6 15:53:27 2006 -0700
13364
13365    Add manual pages for XGetXCBConnection and XSetEventQueueOwner
13366
13367commit 688224cea95e453f94c5a602dc6fce84bc93dfc0
13368Author: Josh Triplett <josh@freedesktop.org>
13369Date:   Fri Oct 6 13:41:16 2006 -0700
13370
13371    Remove unnecessary prototype for _XFreeDisplayStructure in xcb_disp.c
13372
13373commit ab728ca372288d0db1b486c265e34c1376f29104
13374Author: Josh Triplett <josh@freedesktop.org>
13375Date:   Fri Oct 6 12:36:39 2006 -0700
13376
13377    XCL is dead; long live Xlib/XCB
13378    
13379    Rename all instances of "XCL" to Xlib/XCB-derived names.
13380    
13381    The only user-visible change: rename the include file <X11/xcl.h> to
13382    <X11/Xlib-xcb.h>; programs will need to change their #include lines to match.
13383    
13384    Remove the XCL cast inlines from Xlib-xcb.h.
13385
13386commit 5b73093203039d307eb7ab3845c3ced207e9e26c
13387Author: Josh Triplett <josh@freedesktop.org>
13388Date:   Fri Oct 6 11:33:49 2006 -0700
13389
13390    Add XCB developers to AUTHORS
13391
13392commit 1cb71ff139276a0a58c60ea5f261f64b94706b9b
13393Author: Josh Triplett <josh@freedesktop.org>
13394Date:   Fri Oct 6 11:21:28 2006 -0700
13395
13396    Fix email addresses in README
13397
13398commit 12f038669278019594ca0ed53dadcf4e84092422
13399Author: Jamey Sharp <jamey@minilop.net>
13400Date:   Fri Oct 6 02:13:05 2006 -0700
13401
13402    XCB: Handle all responses in order of monotonically increasing sequence number.
13403
13404commit f392680273278b43079302206897f794e60f3c70
13405Author: Josh Triplett <josh@freedesktop.org>
13406Date:   Fri Oct 6 01:11:08 2006 -0700
13407
13408    Actually install x11-xcb.pc, and ship x11-xcb.pc.in
13409
13410commit f1fcad2e3fd17aaf1294f1d8e9f406fd5b32a863
13411Author: Jamey Sharp <jamey@minilop.net>
13412Date:   Thu Oct 5 18:32:29 2006 -0700
13413
13414    XCB: correctly handle failure to connect to X server.
13415
13416commit e754b3b078d556c7861da56aad47d244e9199e06
13417Author: Josh Triplett <josh@freedesktop.org>
13418Date:   Thu Oct 5 17:44:22 2006 -0700
13419
13420    Split public Xlib/XCB functions into libX11-xcb
13421    
13422    We can never change the libX11 soname, and we don't want to commit to never
13423    changing the public Xlib/XCB functions, so split them into a separate library
13424    libX11-xcb.  This also means that a program linked solely against libX11
13425    should work with either Xlib or Xlib/XCB, which will make life easier for
13426    package maintainers.
13427    
13428    Signed-off-by: Josh Triplett <josh@freedesktop.org>
13429    Acked-by: Jamey Sharp <jamey@minilop.net>
13430
13431commit ffd367f708b295abaedf3a23a1bfd4710d171d6f
13432Author: Jamey Sharp <jamey@minilop.net>
13433Date:   Wed Oct 4 17:16:46 2006 -0700
13434
13435    No longer #include Xmd from xcl.h: we do not need it.
13436
13437commit 3aff149d42ba8ed620091971b3766bdf96c62aaf
13438Author: Jamey Sharp <jamey@minilop.net>
13439Date:   Wed Oct 4 16:58:32 2006 -0700
13440
13441    XCB: Revert locking to simple wrapper around libX11's normal locks.
13442    
13443    No more recursive mutexes, no more banging XCB's I/O lock in-place, and
13444    reduces the differences between the previous stable release and an
13445    XCB-enabled one. Sadly, Xlib's pluggable thread functions work again
13446    too, now. I apologize to the world.
13447
13448commit 8ff122fb529bdb1c2b9a86b12d06b6da1b35d708
13449Author: Jamey Sharp <jamey@minilop.net>
13450Date:   Mon Sep 25 04:54:52 2006 -0700
13451
13452    Link explicitly against XCB's Xlib compatibility functions.
13453
13454commit bde3cd123d65a2f36ee0c417f5f231b7e01d0671
13455Author: Jamey Sharp <jamey@minilop.net>
13456Date:   Mon Sep 25 04:13:20 2006 -0700
13457
13458    libxcb now installs header files in <xcb>, not <X11/XCB>.
13459
13460commit 87d00207f5a1f25a45a153618739cd6481814f89
13461Author: Ian Osgood <iano@quirkster.com>
13462Date:   Sun Sep 24 23:39:01 2006 -0700
13463
13464    Track XCB's "Great Renaming".
13465
13466commit 85a5e98dff9b7752fae157fad9b8c9825cb0efab
13467Author: Jamey Sharp <jamey@minilop.net>
13468Date:   Tue Sep 12 23:02:42 2006 -0700
13469
13470    Quit using XCBGetQueuedRequestRead.
13471
13472commit a61936fc4e9bd93b108764bbacd5b8f786e51915
13473Author: Tollef Fog Heen <tfheen@err.no>
13474Date:   Wed Aug 30 00:05:54 2006 +0300
13475
13476    nls: use _XlcUtf8Loader for en_US (bug #7982)
13477    Use _XlcUtf8Loader instead of _XlcUnicodeLoade,r bringing it into line with
13478    every other locale.
13479
13480commit abcc7e1865cdfbd591f6520cfe4257f0b0b1c03e
13481Author: Alan Coopersmith <alan.coopersmith@sun.com>
13482Date:   Wed Aug 23 18:49:30 2006 -0700
13483
13484    When opening display, if LOCALCONN fails, fall back to UNIXCONN, then TCPCONN
13485    
13486    Port to X11R7 of Sun bug fix 4061225 by Alex Chen for X11R6 - when failing to
13487    connect on a named pipe, try a Unix socket first, to better support people who
13488    replace their X servers with ones that don't support named pipe transport.
13489    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=4061225>
13490
13491commit 1ddc44c1cada7e926bd4787406444ce7c36b61e1
13492Author: Mark Brown <mark.brown@sun.com>
13493Date:   Thu Jul 27 19:17:10 2006 -0700
13494
13495    Sun bug 1149809: Document event delivery when grab is terminated.
13496
13497commit 171107b03ac89d94f9006c7cda242aeefb9ecd16
13498Author: Dennis Arellano <Dennis.Arellano@Sun.COM>
13499Date:   Thu Jul 27 18:47:06 2006 -0700
13500
13501    Sun bug 4091271: XGetWindowProperty is missing a crucial prop_return description
13502    
13503    Document that 32-bit format properties are always returned in arrays of type
13504    long, even on systems where long is 64-bits.
13505    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=4091271>
13506
13507commit 8309efe6550877cd0bf22979904b3f6bd3e6cffa
13508Author: Alan Coopersmith <alan.coopersmith@sun.com>
13509Date:   Mon Jul 24 15:52:00 2006 -0700
13510
13511    Add support for "make lint" to check code with lint/sparse/etc.
13512
13513commit 931e02fbd1acd09aae2b0954c34342c86c72dff6
13514Author: Alan Coopersmith <alan.coopersmith@sun.com>
13515Date:   Mon Jul 24 15:50:52 2006 -0700
13516
13517    ANSIfy some static function definitions
13518
13519commit 20b7abcaac324d90454de63f32f4a2b398e69e63
13520Author: Alan Coopersmith <alan.coopersmith@sun.com>
13521Date:   Mon Jul 24 15:01:40 2006 -0700
13522
13523    Fix sparse warning: Using plain integer as NULL pointer
13524
13525commit d158ab29930513c4097f5b67e7bea08ed2bfd62c
13526Author: Alan Coopersmith <alan.coopersmith@sun.com>
13527Date:   Mon Jul 24 14:00:24 2006 -0700
13528
13529    Remove unused variable
13530
13531commit 30377000375bdb958042dcb1f38503c94ef21eaf
13532Author: Eric Anholt <anholt@FreeBSD.org>
13533Date:   Fri Jul 21 18:55:36 2006 -0400
13534
13535    Bug #7188: Fix the documentation of XUrgencyHint (not UrgencyHint).
13536
13537commit 4eba45879aea4e415ab550ee56b900d060099110
13538Author: Matthieu Herrb <matthieu.herrb@laas.fr>
13539Date:   Sun Jul 16 10:55:39 2006 +0200
13540
13541    set GIT_DIR=${srcdir}/.git for git-log
13542
13543commit 2d426d1f2608fedb77bd7d010dabece76b8d4a60
13544Author: Aaron Plattner <aplattner@nvidia.com>
13545Date:   Tue Jul 11 13:27:49 2006 -0700
13546
13547    Add a .PHONY to ensure the ChangeLog isn't stale.
13548    
13549    Setting the ChangeLog rule as phony forces it to be re-run even when the
13550    ChangeLog file already exists. Research indicates .PHONY is portable to BSD and
13551    Solaris make.
13552    (cherry picked from b8a98809ed81e1226775e6447ef219ffc01334b5 commit)
13553
13554commit b8a98809ed81e1226775e6447ef219ffc01334b5
13555Author: Aaron Plattner <aplattner@nvidia.com>
13556Date:   Tue Jul 11 13:27:49 2006 -0700
13557
13558    Add a .PHONY to ensure the ChangeLog isn't stale.
13559    
13560    Setting the ChangeLog rule as phony forces it to be re-run even when the
13561    ChangeLog file already exists. Research indicates .PHONY is portable to BSD and
13562    Solaris make.
13563
13564commit 8f2be66089b88e4ed6acb0211ea107f4bb910bd3
13565Author: Mayank Jain <majain@redhat.com>
13566Date:   Tue Jul 11 19:42:47 2006 +0100
13567
13568    add Indian language locales
13569    Add as, kn, ml, or, ur, and te locales.
13570
13571commit a92eb6785699bbc9c6c3813f6af3bb9431a3f6b0
13572Author: Matthias Hopf <mhopf@suse.de>
13573Date:   Tue Jul 4 12:16:30 2006 +0200
13574
13575    Fix for autoconf 2.60 issue.
13576    
13577    Updated AC_DEFINE_DIR.
13578    Reverted datarootdir change.
13579
13580commit 644f4828b15bce42b597eb123ba0bbc372c46c03
13581Author: Keith Packard <keithp@neko.keithp.com>
13582Date:   Sat Jul 1 21:31:23 2006 -0700
13583
13584    Work around recent autoconf (2.59?) changes in directory expansion.
13585    
13586    Recent autoconf versions have changed how directory names are managed in the
13587    configure.ac script; automatic 'eval' invocations now occur as a part of the
13588    AC_DEFINE_DIR macro which make it imperative that AC_DEFINE_DIR be executed
13589    before the variables are used in further macro definitions. Also, ${datadir}
13590    is apparantly an old name for ${datarootdir} as ${datadir} doesn't get
13591    expanded correctly by AC_DEFINE_DIR. This looks like an autoconf bug, but it
13592    is easy to work around by just using ${datarootdir} instead of ${datadir}.
13593
13594commit be70a31229aa106aff0a09d78c00812682cd3475
13595Author: Keith Packard <keithp@neko.keithp.com>
13596Date:   Sat Jul 1 01:56:05 2006 -0700
13597
13598    Xlib/XCB: handle 32-bit sequence wrap.
13599    
13600    Replace broken sequence compares with XCB_SEQUENCE_COMPARE (copied from
13601    XCB).
13602    Account for XCB sequence 0 handling.
13603
13604commit 99c711707ad08e1396e123b1c7df687c560a489a
13605Author: Donnie Berkholz <spyderous@gentoo.org>
13606Date:   Thu Jun 29 19:43:20 2006 -0700
13607
13608    Bump version to 1.0.3.
13609
13610commit cde3c0dd72af2b490e80cffca962e3487dd31be4
13611Author: Donnie Berkholz <spyderous@gentoo.org>
13612Date:   Thu Jun 29 19:39:36 2006 -0700
13613
13614    Bug #7349: Missed one of the setuid fixes.
13615    (cherry picked from e9614c963b532f46a7932c2305a4b177a996a222 commit)
13616
13617commit df3fef8983d96c59d481c4cdaf1f271d54a116d2
13618Author: Matthias Hopf <mhopf@suse.de>
13619Date:   Thu Jun 29 18:59:57 2006 +0200
13620
13621    Update to final Compose cache directory location.
13622    (cherry picked from abda4d223e9cce9ac6e7b5d82a5680d9a502e52a commit)
13623
13624commit 912ef198292d3053daa810f842510e5d62ded0f0
13625Author: Matthias Hopf <mhopf@suse.de>
13626Date:   Thu Jun 29 17:41:41 2006 +0200
13627
13628    Fix alignment of trees and wide chars in the cache.
13629    (cherry picked from 40a64c61f8bc33d497e1224e02c41dea2d424d97 commit)
13630
13631commit 2ece832118b3ee5d8ed19f1ee9b1c822b70ec6e9
13632Author: Matthias Hopf <mhopf@suse.de>
13633Date:   Wed Jun 28 19:17:03 2006 +0200
13634
13635    First (dummy) entry of compose caches was not initialized and thus contained varying garbage.
13636    (cherry picked from f442dcaa56f8ecb7443e8e51c88ed97e10dbdba3 commit)
13637
13638commit e9614c963b532f46a7932c2305a4b177a996a222
13639Author: Donnie Berkholz <spyderous@gentoo.org>
13640Date:   Thu Jun 29 19:39:36 2006 -0700
13641
13642    Bug #7349: Missed one of the setuid fixes.
13643
13644commit abda4d223e9cce9ac6e7b5d82a5680d9a502e52a
13645Author: Matthias Hopf <mhopf@suse.de>
13646Date:   Thu Jun 29 18:59:57 2006 +0200
13647
13648    Update to final Compose cache directory location.
13649
13650commit 40a64c61f8bc33d497e1224e02c41dea2d424d97
13651Author: Matthias Hopf <mhopf@suse.de>
13652Date:   Thu Jun 29 17:41:41 2006 +0200
13653
13654    Fix alignment of trees and wide chars in the cache.
13655
13656commit f442dcaa56f8ecb7443e8e51c88ed97e10dbdba3
13657Author: Matthias Hopf <mhopf@suse.de>
13658Date:   Wed Jun 28 19:17:03 2006 +0200
13659
13660    First (dummy) entry of compose caches was not initialized and thus contained varying garbage.
13661
13662commit bdbe464d774e01d317f67c63ebbda2fd0edbbdd1
13663Author: Donnie Berkholz <spyderous@gentoo.org>
13664Date:   Thu Jun 22 23:59:03 2006 -0700
13665
13666    Delete ChangeLog, and add a rule to autogenerate it for distribution. Also
13667    add 'foreign' to AM_INIT_AUTOMAKE to make autotools happy with not having a
13668    ChangeLog.
13669    (cherry picked from b0edfb8df16ab8c9959b83a4c966d55a59c4e295 commit)
13670
13671commit b0edfb8df16ab8c9959b83a4c966d55a59c4e295
13672Author: Donnie Berkholz <donnie@comet.(none)>
13673Date:   Thu Jun 22 23:47:38 2006 -0700
13674
13675    Delete ChangeLog, and add a rule to autogenerate it for distribution. Also
13676    add 'foreign' to AM_INIT_AUTOMAKE to make autotools happy with not having a
13677    ChangeLog.
13678
13679commit dd54981aa76e9dfdc4c3302d6105b4b229447c84
13680Author: Donnie Berkholz <donnie@comet.(none)>
13681Date:   Thu Jun 22 15:47:38 2006 -0700
13682
13683    Bump version to 1.0.2.
13684
13685commit c93539d974a67f596a5eb5b65042d26602546c72
13686Author: Matthieu Herrb <matthieu@deville.herrb.com>
13687Date:   Tue Jun 20 21:04:03 2006 +0200
13688
13689    Check setuid() return value.
13690    (cherry picked from 5169d0e08ff6acb350a6ea768623f5ff0b85b05f commit)
13691
13692commit 605533f814ab7892991578706a6458f61a89ca4d
13693Author: Derek Wang <derek.wang@sun.com>
13694Date:   Mon Jun 19 11:05:37 2006 -0700
13695
13696    Sun bug 6209243: XExtentsOfFontSet causes segfault when font set not loaded
13697    (cherry picked from eff50c94a07194297e705da53d9fbb3a40fb9ad4 commit)
13698
13699commit 5bbd0822c5a926de0ed293437fb9f2b75cf3c4f4
13700Author: Scott Revelt <scott.revelt@sun.com>
13701Date:   Fri Jun 16 19:11:13 2006 -0700
13702
13703    Sun bug 4022903: Xcms routines may fail if sscanf() is looking for separators
13704    based on locale that doesn't match those used in the Xcms.txt
13705    (cherry picked from 94f3213fc4bd6ec49bfb68e8b4a4fddea2bf3baa commit)
13706
13707commit 0b05cd4da6134df527fb010384a9fd569bd5d6a3
13708Author: Alan Coopersmith <alanc@alf.(none)>
13709Date:   Fri Jun 16 18:53:33 2006 -0700
13710
13711    Add *~ to ignore emacs droppings
13712    (cherry picked from c33d7b8282ac196b36229be26442296768c16f3e commit)
13713
13714commit 214658b76b56768f69c3959a11525aae7813f448
13715Author: Matthias Hopf <mhopf@suse.de>
13716Date:   Fri Jun 16 15:36:40 2006 +0200
13717
13718    Bug #3104: Compose table cache for faster X11 application starts.
13719    (cherry picked from 1f4c9893ade08bad30c9bd12a36bee57d30b001e commit)
13720
13721commit 13968a23aaea838ba4b69e42e8900f803499e091
13722Author: Matthias Hopf <mhopf@suse.de>
13723Date:   Tue Jun 13 20:23:46 2006 +0200
13724
13725    Bug #3104: Compose table cache for faster X11 application starts.
13726    (cherry picked from 4fe22647e6010a2886c2f3a7093adeaeb6678faa commit)
13727
13728commit e7f8bca08f5476d0ca262097639ac7d424bb4d10
13729Author: Lubos Lunak <llunak@suse.de>
13730Date:   Mon Jun 12 18:48:08 2006 +0200
13731
13732    Bug #3104: Compose table cache for faster X11 application starts.
13733    (cherry picked from 1d28a655629a11ea7fd1e5df4c7b77dd4b63e3be commit)
13734
13735commit f506aaf8ac9aae1ee8daaef6cde34ee85aecd641
13736Author: Matthias Hopf <mhopf@suse.de>
13737Date:   Fri Jun 9 18:24:02 2006 +0200
13738
13739    Bug #3104: Compose table cache for faster X11 application starts. Part 1: Pointerless compose data structure, using indices instead of pointers, needed for mmap()ing data structure.
13740    (cherry picked from 9354351fcb8baeaab85250d14409cfb4fa50f3e9 commit)
13741
13742commit 0e6d5e979aacb0c295ce79369ecc5f22ffa7922c
13743Author: Jamey Sharp <jamey@minilop.net>
13744Date:   Wed Jun 7 20:29:05 2006 -0700
13745
13746    Fix bug #7035: unnecessary memmove in XOpenDisplay.
13747    Using memmove on the connection setup data causes a problem for XCB, but making
13748    Xlib stop doing that should be harmless for non-XCB as well.
13749    (cherry picked from b18713ec3f36a10b3cdb1e16f9550e1d2e05dff0 commit)
13750
13751commit cd7328c46ae72903ed02832828891b2dab4d5ee0
13752Author: Daniel Stone <daniels@preemptive.fooishbar.org>
13753Date:   Sat Jun 3 13:51:51 2006 +0300
13754
13755    Fix threading support on GNU/kFreeBSD systems.  (Robert Millan)
13756    (cherry picked from e3acee88cfcc4ef0fa8a7db39763a5ebe2e985cb commit)
13757
13758commit c336eb6b80a6f91da1d0b3d28634a2cfde324670
13759Merge: 33556ca8 ad9ebbd2
13760Author: Donnie Berkholz <donnie@comet.(none)>
13761Date:   Thu Jun 22 14:25:35 2006 -0700
13762
13763    Merge branch 'stable' of http://people.freedesktop.org/~jamey/libX11 into stable
13764
13765commit 213dacad21740466e7ab31b01d3fc513fe4b3e74
13766Author: Daniel Stone <daniel@fooishbar.org>
13767Date:   Thu Jun 22 17:20:59 2006 +0300
13768
13769    Bump to 1.0.99.0 to avoid confusion.
13770
13771commit efedfd68e31bcee2d21ac340be8dc9e1825ec890
13772Merge: e3acee88 4b8eb5d4
13773Author: Daniel Stone <daniel@fooishbar.org>
13774Date:   Thu Jun 22 16:53:45 2006 +0300
13775
13776    Merge branch 'master' of git+ssh://git.freedesktop.org/srv/git.freedesktop.org/git/xorg/lib/libX11
13777
13778commit 4b8eb5d4a1da73a94b5a6ab12e34784aae4c79c5
13779Merge: 5169d0e0 eff50c94
13780Author: Matthieu Herrb <matthieu@deville.herrb.com>
13781Date:   Tue Jun 20 21:05:15 2006 +0200
13782
13783    Merge branch 'master' of git+ssh://herrb@git.freedesktop.org/git/xorg/lib/libX11
13784
13785commit 5169d0e08ff6acb350a6ea768623f5ff0b85b05f
13786Author: Matthieu Herrb <matthieu@deville.herrb.com>
13787Date:   Tue Jun 20 21:04:03 2006 +0200
13788
13789    Check setuid() return value.
13790
13791commit eff50c94a07194297e705da53d9fbb3a40fb9ad4
13792Author: Derek Wang <derek.wang@sun.com>
13793Date:   Mon Jun 19 11:05:37 2006 -0700
13794
13795    Sun bug 6209243: XExtentsOfFontSet causes segfault when font set not loaded
13796
13797commit 94f3213fc4bd6ec49bfb68e8b4a4fddea2bf3baa
13798Author: Scott Revelt <scott.revelt@sun.com>
13799Date:   Fri Jun 16 19:11:13 2006 -0700
13800
13801    Sun bug 4022903: Xcms routines may fail if sscanf() is looking for separators
13802    based on locale that doesn't match those used in the Xcms.txt
13803
13804commit c33d7b8282ac196b36229be26442296768c16f3e
13805Author: Alan Coopersmith <alanc@alf.(none)>
13806Date:   Fri Jun 16 18:53:33 2006 -0700
13807
13808    Add *~ to ignore emacs droppings
13809
13810commit 1f4c9893ade08bad30c9bd12a36bee57d30b001e
13811Author: Matthias Hopf <mhopf@suse.de>
13812Date:   Fri Jun 16 15:36:40 2006 +0200
13813
13814    Bug #3104: Compose table cache for faster X11 application starts.
13815
13816commit 4fe22647e6010a2886c2f3a7093adeaeb6678faa
13817Author: Matthias Hopf <mhopf@suse.de>
13818Date:   Tue Jun 13 20:23:46 2006 +0200
13819
13820    Bug #3104: Compose table cache for faster X11 application starts.
13821
13822commit 1d28a655629a11ea7fd1e5df4c7b77dd4b63e3be
13823Author: Lubos Lunak <llunak@suse.de>
13824Date:   Mon Jun 12 18:48:08 2006 +0200
13825
13826    Bug #3104: Compose table cache for faster X11 application starts.
13827
13828commit 9354351fcb8baeaab85250d14409cfb4fa50f3e9
13829Author: Matthias Hopf <mhopf@suse.de>
13830Date:   Fri Jun 9 18:24:02 2006 +0200
13831
13832    Bug #3104: Compose table cache for faster X11 application starts. Part 1: Pointerless compose data structure, using indices instead of pointers, needed for mmap()ing data structure.
13833
13834commit b18713ec3f36a10b3cdb1e16f9550e1d2e05dff0
13835Author: Jamey Sharp <jamey@minilop.net>
13836Date:   Wed Jun 7 20:29:05 2006 -0700
13837
13838    Fix bug #7035: unnecessary memmove in XOpenDisplay.
13839    Using memmove on the connection setup data causes a problem for XCB, but making
13840    Xlib stop doing that should be harmless for non-XCB as well.
13841
13842commit ad9ebbd2424bc2699944ffdf4e19e13f9dd8ab84
13843Author: Daniel Stone <daniels@preemptive.fooishbar.org>
13844Date:   Sat Jun 3 12:57:55 2006 +0300
13845
13846    Bug #2186: Add cs_CZ.iso8859-2 alias.
13847
13848commit 9e7765e0b1cbaae6643072d91066ba1201b36227
13849Author: Daniel Stone <daniel@fooishbar.org>
13850Date:   Fri Jun 2 02:46:29 2006 +0300
13851
13852    nls: Serbian (sr_CS) update (#5575)
13853    
13854    Bug #5575: 'Yugoslavia' has changed to Serbia & Montenegro, along with a
13855    corresponding locale change.  Update compose.dir.pre, locale.alias.pre,
13856    and locale.dir.pre.  (Milos Komarcevic)
13857
13858commit a4ac2242b588da23044a20aa999ae84d4de7b2d8
13859Author: Daniel Stone <daniel@fooishbar.org>
13860Date:   Fri Jun 2 02:24:25 2006 +0300
13861
13862    im: add Braille input method (#6296)
13863    
13864    Bug #6296: Add a Braille input method.  (Samuel Thibault)
13865
13866commit 90de1e2e141ec591048a76cb695579ef809a28d3
13867Author: Daniel Stone <daniel@fooishbar.org>
13868Date:   Fri Jun 2 02:22:17 2006 +0300
13869
13870    xkb support: small typo
13871
13872commit 4c3e34bece7402f08139d34d1ef5834e3cf533c7
13873Author: Daniel Stone <daniel@fooishbar.org>
13874Date:   Fri Jun 2 01:50:24 2006 +0300
13875
13876    en_US.UTF-8 Compose.pre: updates from Simos (#5129)
13877    
13878    Bug #5129: Numerous updates from Simos Xenitellis, fixing Unicode keysyms,
13879    adding Unicode character names, removing duplicate entries, et al.
13880
13881commit 0c6473dd329c7334ae511884bcb6e73e632c784f
13882Author: Daniel Stone <daniel@fooishbar.org>
13883Date:   Fri Jun 2 01:44:53 2006 +0300
13884
13885    nls: fix use of non-keysym dead_space (#5107)
13886    
13887    Bug #5107: Change users of dead_space to space.
13888
13889commit 6f99f6349de5120f1cb7e02fbc97849341bc48e8
13890Author: Daniel Stone <daniel@fooishbar.org>
13891Date:   Fri Jun 2 01:41:18 2006 +0300
13892
13893    optional XKB support fix
13894    
13895    Fix compilation with --disable-xkb.
13896
13897commit 217d43ed44ced901122093af3ef1294e1736bb77
13898Author: Daniel Stone <daniel@fooishbar.org>
13899Date:   Fri Jun 2 01:39:12 2006 +0300
13900
13901    i18n: separate data and lib directories
13902    
13903    Break out locale data into separate data and library directories, under
13904    $(datadir) and $(libdir), respectively, by default.
13905
13906commit 92fa7fcde8df22830fca7c0275ab201033f7909c
13907Author: Adam Jackson <ajax@benzedrine.nwnk.net>
13908Date:   Thu May 11 14:04:48 2006 -0400
13909
13910    libXcursor.so.1, not libXcursor.so
13911
13912commit 135b4df13ed7c35dbae8975f302fc1fb8412d7c0
13913Author: Daniel Stone <daniels@preemptive.fooishbar.org>
13914Date:   Wed May 10 18:06:03 2006 +0300
13915
13916    XKBMisc.c: use Xfree, not xfree
13917    
13918    Use Xfree() instead of xfree() when freeing interps.
13919
13920commit 3518d772b08e3433bc28b4d8d293fa53ca25f0ee
13921Author: Daniel Stone <daniels@preemptive.fooishbar.org>
13922Date:   Wed May 10 14:51:37 2006 +0300
13923
13924    locale.alias.pre: bg_BG typo fix
13925    
13926    Fix typo (be_BG.UTF-8 rather than bg_BG.UTF-8) in locale.alias.pre.
13927
13928commit cc533db60cb64dc163c66451933a9bf77c519062
13929Author: Daniel Stone <daniels@endtroducing.localdomain>
13930Date:   Sun Apr 9 22:22:03 2006 +0300
13931
13932    Coverity #203, #204: Fix potential NULL dereferences.
13933
13934commit b83adf7dfd6157694fe4f232012fef36cd9666da
13935Author: Daniel Stone <daniels@endtroducing.localdomain>
13936Date:   Sun Apr 9 22:20:25 2006 +0300
13937
13938    Coverity #205: Fix potential NULL dereference.
13939
13940commit 2d0cd10ad907864d0136739eaac459779c9a5332
13941Author: Daniel Stone <daniels@endtroducing.localdomain>
13942Date:   Sun Apr 9 22:18:20 2006 +0300
13943
13944    Coverity #209: Fix potential NULL dereference. (Alan Coopersmith)
13945
13946commit dc2f3966068d66a564aa452cab9f0c26657fa1df
13947Author: Daniel Stone <daniels@preemptive.research.nokia.com>
13948Date:   Fri Apr 7 18:11:52 2006 +0300
13949
13950    Coverity #826: Fix potential memory leak.
13951
13952commit 23df609ec451a01c77e8f31ecc85c5af7c62efed
13953Author: Daniel Stone <daniels@preemptive.research.nokia.com>
13954Date:   Fri Apr 7 17:49:41 2006 +0300
13955
13956    Bug #1625: Include keysym.h from Xutil.h.
13957
13958commit 5262a1945c543a3419ed626e1deb09ef5b4584c1
13959Author: Eric Anholt <anholt@leguin.anholt.net>
13960Date:   Wed Apr 5 17:12:15 2006 -0700
13961
13962    Check if visualList == NULL, not nVisualsMatched == 0. NULL happens in more
13963    
13964    cases (allocation failure) than nVisualsMatched == 0.  Noticed from inspection
13965    of Coverity #599, #600.
13966
13967commit 8b42635f577468bb143ca593cdd9fb3450ad712c
13968Author: Eric Anholt <anholt@leguin.anholt.net>
13969Date:   Wed Apr 5 16:42:26 2006 -0700
13970
13971    Coverity #558: Free newly-allocated Database in error path.
13972
13973commit 6d06e41d1f431b3f1a1fcf69161e0af411325e9f
13974Author: Eric Anholt <anholt@leguin.anholt.net>
13975Date:   Wed Apr 5 16:38:52 2006 -0700
13976
13977    Coverity #582: Free newly-allocated region in error path.
13978
13979commit 5fd8f79ad3e38df74d9a6cb573617542c101df1a
13980Author: Daniel Stone <daniels@preemptive.research.nokia.com>
13981Date:   Fri Mar 17 15:58:39 2006 +0200
13982
13983    Properly clip bounds when only one point is defining an outline.
13984
13985commit 1e1572eb7f8394ce152e99d96f711ccf9083baf9
13986Author: Matthieu Herrb <matthieu@bluenote.herrb.com>
13987Date:   Sat Mar 11 15:39:15 2006 +0100
13988
13989    Fix prototype of XConfigureWindow(). Bugzilla #6023.
13990
13991commit 1da8bd904f1fc79d63d368473531b438d08bfe37
13992Author: Jeremy C. Reed <reed@reedmedia.net>
13993Date:   Tue Feb 21 14:10:22 2006 -0800
13994
13995    Set XTHREADLIB correctly for dragonfly platforms.
13996
13997commit c9768133e3f65ac4bb64e3941e2d6ae36897ec9c
13998Author: Jamey Sharp <jamey@minilop.net>
13999Date:   Sun Feb 19 12:29:27 2006 -0800
14000
14001    Update .gitignores for *.o and nls/locale.dir*.
14002
14003commit efcbde6ba0b770bb0d4c7818e307712161011f10
14004Author: Jamey Sharp <jamey@minilop.net>
14005Date:   Sun Feb 19 12:28:41 2006 -0800
14006
14007    Move .cvsignore to .gitignore.
14008
14009commit e3acee88cfcc4ef0fa8a7db39763a5ebe2e985cb
14010Author: Daniel Stone <daniels@preemptive.fooishbar.org>
14011Date:   Sat Jun 3 13:51:51 2006 +0300
14012
14013    Fix threading support on GNU/kFreeBSD systems.  (Robert Millan)
14014
14015commit f1bd3152359ddfadd0d043006036c239f3e2907b
14016Author: Daniel Stone <daniels@preemptive.fooishbar.org>
14017Date:   Sat Jun 3 12:57:55 2006 +0300
14018
14019    Bug #2186: Add cs_CZ.iso8859-2 alias.
14020
14021commit 2b1b79d90db1d7f0472718b8c010c36275994195
14022Author: Daniel Stone <daniel@fooishbar.org>
14023Date:   Fri Jun 2 02:46:29 2006 +0300
14024
14025    nls: Serbian (sr_CS) update (#5575)
14026    Bug #5575: 'Yugoslavia' has changed to Serbia & Montenegro, along with a
14027    corresponding locale change.  Update compose.dir.pre, locale.alias.pre,
14028    and locale.dir.pre.  (Milos Komarcevic)
14029
14030commit d6fba1f44d404362d3be1b421f57d7ccc3c8cdac
14031Author: Daniel Stone <daniel@fooishbar.org>
14032Date:   Fri Jun 2 02:24:25 2006 +0300
14033
14034    im: add Braille input method (#6296)
14035    Bug #6296: Add a Braille input method.  (Samuel Thibault)
14036
14037commit 0fed7d3185addd610e917dcdaa0676f0256c0ec5
14038Author: Daniel Stone <daniel@fooishbar.org>
14039Date:   Fri Jun 2 02:22:17 2006 +0300
14040
14041    xkb support: small typo
14042
14043commit cf7d9f9e46f3ce01ac04a95978918d5c0f3f3cf9
14044Author: Daniel Stone <daniel@fooishbar.org>
14045Date:   Fri Jun 2 01:50:24 2006 +0300
14046
14047    en_US.UTF-8 Compose.pre: updates from Simos (#5129)
14048    Bug #5129: Numerous updates from Simos Xenitellis, fixing Unicode keysyms,
14049    adding Unicode character names, removing duplicate entries, et al.
14050
14051commit 332d45fce9fdbf59168d90a133af1f580a589e54
14052Author: Daniel Stone <daniel@fooishbar.org>
14053Date:   Fri Jun 2 01:44:53 2006 +0300
14054
14055    nls: fix use of non-keysym dead_space (#5107)
14056    Bug #5107: Change users of dead_space to space.
14057
14058commit 34f59ce3d1e2eb2971b732d11871c6fff8a1c75b
14059Author: Daniel Stone <daniel@fooishbar.org>
14060Date:   Fri Jun 2 01:41:18 2006 +0300
14061
14062    optional XKB support fix
14063    Fix compilation with --disable-xkb.
14064
14065commit c5940a0b85edec4003f91a59fc3c44f538accfe1
14066Author: Daniel Stone <daniel@fooishbar.org>
14067Date:   Fri Jun 2 01:39:12 2006 +0300
14068
14069    i18n: separate data and lib directories
14070    Break out locale data into separate data and library directories, under
14071    $(datadir) and $(libdir), respectively, by default.
14072
14073commit 33556ca81db2419b9d2a37664c4cea2069414b37
14074Author: Adam Jackson <ajax@benzedrine.nwnk.net>
14075Date:   Fri May 12 14:49:17 2006 -0400
14076
14077    Bump to 1.0.1
14078
14079commit 80d88557626fae9debc404de33d7fb5d69a6049d
14080Author: Adam Jackson <ajax@benzedrine.nwnk.net>
14081Date:   Thu May 11 14:06:28 2006 -0400
14082
14083    libXcursor.so.1, not libXcursor.so
14084
14085commit 5384f27dfe3c94c462c137ab3540eaa5646ca4c6
14086Author: Adam Jackson <ajax@benzedrine.nwnk.net>
14087Date:   Thu May 11 14:04:48 2006 -0400
14088
14089    libXcursor.so.1, not libXcursor.so
14090
14091commit 01f4d433eed6b70c6e9636157acac022054fdeb6
14092Author: Jamey Sharp <jamey@minilop.net>
14093Date:   Wed May 10 17:02:52 2006 -0700
14094
14095    Count any partial request towards the current Xlib sequence number.
14096
14097commit 770cfbd1fcc80a83a9be0c4f68727b8af2c8f4a4
14098Author: Daniel Stone <daniels@preemptive.fooishbar.org>
14099Date:   Wed May 10 18:06:03 2006 +0300
14100
14101    XKBMisc.c: use Xfree, not xfree
14102    Use Xfree() instead of xfree() when freeing interps.
14103
14104commit 22a5255b80b80772612279bc840a953edd0e3442
14105Author: Daniel Stone <daniels@preemptive.fooishbar.org>
14106Date:   Wed May 10 14:51:37 2006 +0300
14107
14108    locale.alias.pre: bg_BG typo fix
14109    Fix typo (be_BG.UTF-8 rather than bg_BG.UTF-8) in locale.alias.pre.
14110
14111commit 9cac8c9824874ca7d835f001a4efa910b7fdd822
14112Merge: 19b8840a e514bc87
14113Author: Daniel Stone <daniels@preemptive.fooishbar.org>
14114Date:   Wed May 10 14:50:37 2006 +0300
14115
14116    Merge branch 'master' of git+ssh://git.freedesktop.org/srv/git.freedesktop.org/git/xorg/lib/libX11
14117
14118commit e514bc875f27f4bf197b06b8315eeca526195915
14119Author: Jamey Sharp <jamey@minilop.net>
14120Date:   Tue May 9 12:41:59 2006 -0700
14121
14122    Assert that dpy->request does not go backwards. Catches #5839 earlier.
14123
14124commit fc1159137365a599bf611ee001f439416952c4e0
14125Author: Jamey Sharp <jamey@minilop.net>
14126Date:   Sun May 7 17:40:01 2006 -0700
14127
14128    In _XPutXCBBuffer, set aside any trailing partial request until the last byte is available.
14129
14130commit c394480a4247213239822808e3f6e7c6cd6decd9
14131Author: Jamey Sharp <jamey@minilop.net>
14132Date:   Sun May 7 16:58:13 2006 -0700
14133
14134    Update for XCB ConnSetupSuccessRep name change.
14135
14136commit 7672bf93bc1200905461aeb0a2dc2c2696410b93
14137Author: Daniel Stone <daniels@endtroducing.localdomain>
14138Date:   Sun Apr 9 22:22:03 2006 +0300
14139
14140    Coverity #203, #204: Fix potential NULL dereferences.
14141
14142commit cfcafbe48d22d9a0cd50eb9454ce0ff88f0129d3
14143Author: Daniel Stone <daniels@endtroducing.localdomain>
14144Date:   Sun Apr 9 22:20:25 2006 +0300
14145
14146    Coverity #205: Fix potential NULL dereference.
14147
14148commit b6771501feea98d037032f82117b6d4f15779f07
14149Author: Daniel Stone <daniels@endtroducing.localdomain>
14150Date:   Sun Apr 9 22:18:20 2006 +0300
14151
14152    Coverity #209: Fix potential NULL dereference.  (Alan Coopersmith)
14153
14154commit 19b8840af241087bb17b1edabcaa9b28fdd0a1dc
14155Author: Daniel Stone <daniels@preemptive.research.nokia.com>
14156Date:   Fri Apr 7 18:11:52 2006 +0300
14157
14158    Coverity #826: Fix potential memory leak.
14159
14160commit 3a16f262abe48b44ed641525e894bc22e13bf72a
14161Author: Daniel Stone <daniels@preemptive.research.nokia.com>
14162Date:   Fri Apr 7 17:49:41 2006 +0300
14163
14164    Bug #1625: Include keysym.h from Xutil.h.
14165
14166commit 2481b767ae96e2f2503c0390545932c8397b090f
14167Author: Eric Anholt <anholt@leguin.anholt.net>
14168Date:   Wed Apr 5 17:12:15 2006 -0700
14169
14170    Check if visualList == NULL, not nVisualsMatched == 0.  NULL happens in more
14171    cases (allocation failure) than nVisualsMatched == 0.  Noticed from inspection
14172    of Coverity #599, #600.
14173
14174commit 152b17e47d878c2d928eb74581aa69d925a29123
14175Author: Eric Anholt <anholt@leguin.anholt.net>
14176Date:   Wed Apr 5 16:42:26 2006 -0700
14177
14178    Coverity #558: Free newly-allocated Database in error path.
14179
14180commit bc62b99ef36edb34035911c42104be7f6f9d2333
14181Author: Eric Anholt <anholt@leguin.anholt.net>
14182Date:   Wed Apr 5 16:38:52 2006 -0700
14183
14184    Coverity #582: Free newly-allocated region in error path.
14185
14186commit d47f0b3cec1388f7ce60ab2af91df0dea0f221c5
14187Author: Jamey Sharp <jamey@minilop.net>
14188Date:   Fri Mar 31 22:53:07 2006 -0800
14189
14190    Fix buggy interaction with XCB when running out of XIDs.
14191
14192commit e3f452571824d6a875bbf582946de185de9e01e9
14193Author: Jamey Sharp <jamey@minilop.net>
14194Date:   Fri Mar 31 22:52:14 2006 -0800
14195
14196    Add explicit include of Xmd.h to work around bug including both xcb.h and Xmd.h simultaneously.
14197
14198commit 2363b74ca795c1b3a73c9e572532ba5191adec5b
14199Author: Daniel Stone <daniels@preemptive.research.nokia.com>
14200Date:   Fri Mar 17 15:58:39 2006 +0200
14201
14202    Properly clip bounds when only one point is defining an outline.
14203
14204commit e876efb8aa410f2f5c87aaaa7042f847c4ff96f7
14205Merge: be266b20 f71ea0bc
14206Author: Matthieu Herrb <matthieu@bluenote.herrb.com>
14207Date:   Sat Mar 11 15:40:35 2006 +0100
14208
14209    Merge branch 'master' of git+ssh://herrb@git.freedesktop.org/git/xorg/lib/libX11
14210
14211commit be266b201dc13530a302a7572283ccd3f32aad87
14212Author: Matthieu Herrb <matthieu@bluenote.herrb.com>
14213Date:   Sat Mar 11 15:39:15 2006 +0100
14214
14215    Fix prototype of XConfigureWindow(). Bugzilla #6023.
14216
14217commit f71ea0bc737c5a42e9e022b86e7ec3b4f846d31c
14218Author: Jamey Sharp <jamey@minilop.net>
14219Date:   Fri Mar 3 11:08:41 2006 -0800
14220
14221    Update for XCBSendRequest sequence number API changes.
14222
14223commit a11d1b0ae674320cf9897f6a83ec08c65eca8d9b
14224Author: Jamey Sharp <jamey@minilop.net>
14225Date:   Fri Mar 3 01:42:49 2006 -0800
14226
14227    Use the full_sequence from XCBGenericError/Event for setting last_request_read, and quit replacing _XSetLastRequestRead with an XCB-specific version.
14228
14229commit d8ba4ae7045b227f8b675628b9094dded02f1c08
14230Author: Jamey Sharp <jamey@minilop.net>
14231Date:   Thu Mar 2 23:43:26 2006 -0800
14232
14233    Bugfix: Rely on XCBSendRequest to leave iov in a well-defined state, and place the spare iovecs at the beginning of the array.
14234
14235commit f9afb5a54435c30961306080e9358d4240ecb844
14236Author: Jamey Sharp <jamey@minilop.net>
14237Date:   Thu Mar 2 23:34:19 2006 -0800
14238
14239    assert() that we will not infinite loop or read uninitialized memory.
14240
14241commit d3512ef3aae5b036a8ce6579318108f1ec20ee22
14242Author: Jamey Sharp <jamey@minilop.net>
14243Date:   Thu Mar 2 15:58:52 2006 -0800
14244
14245    Quit relying on XCBSendRequest to pad to 4-byte boundaries and do it ourselves.
14246
14247commit fb590c15a740264ee867d15a2547072e43b21eed
14248Author: Jamey Sharp <jamey@minilop.net>
14249Date:   Thu Mar 2 12:06:04 2006 -0800
14250
14251    Handle errors correctly when Xlib owns the event queue and XCB has the checked error feature.
14252
14253commit 8356ba37d307a9eda895a6bf41ef727bbfc9a695
14254Author: Jamey Sharp <jamey@minilop.net>
14255Date:   Mon Feb 27 11:51:47 2006 -0800
14256
14257    Use the new XCBSendRequest flag, XCB_REQUEST_RAW, to hand a bag-o-bytes down uninterpreted.
14258
14259commit 07bdf1fbbf2418f866df1a2140d514dd3f035139
14260Author: Jamey Sharp <jamey@minilop.net>
14261Date:   Sun Feb 26 15:46:01 2006 -0800
14262
14263    Update for new XCBSendRequest API.
14264
14265commit 409a08cff8347d39e0e6c53c9f380d21f221f5ac
14266Author: Jamey Sharp <jamey@minilop.net>
14267Date:   Thu Feb 23 18:12:31 2006 -0800
14268
14269    Performance fix: Replace calls to XCBGetRequestRead with the new XCBGetQueuedRequestRead. Cuts a lot of syscalls.
14270
14271commit ec30a27341b97620b07dd886f98d1d7664a67685
14272Author: Jamey Sharp <jamey@minilop.net>
14273Date:   Thu Feb 23 18:01:46 2006 -0800
14274
14275    Minor performance fix: Access dpy->xcl->connection directly instead of calling XCBConnectionOfDisplay. It happens a lot.
14276
14277commit 53c471c6a835d5cedeca99f2c97058d196a3fd7e
14278Author: Jamey Sharp <jamey@minilop.net>
14279Date:   Thu Feb 23 11:46:09 2006 -0800
14280
14281    XCBFlush used to return non-positive on failure, and this test did not catch 0. Now it returns boolean: 0 or 1. Testing <= 0 covers both cases. I probably want to switch to a boolean test eventually.
14282
14283commit 41c0121a8718b530feaf7fe315b673d9b8defce2
14284Author: Jamey Sharp <jamey@minilop.net>
14285Date:   Tue Feb 21 21:25:41 2006 -0800
14286
14287    Refactor the code that passes requests down to XCB into a separate issue_complete_request function.
14288
14289commit 67d06e0fe468dca22847aa14d3f917128f89f9cf
14290Author: Jamey Sharp <jamey@minilop.net>
14291Date:   Tue Feb 21 15:33:05 2006 -0800
14292
14293    If we have not actually put the buffer back, deferred invariants may not hold. This is OK.
14294
14295commit 434bf80b4053ff1ba82adf65de1f76b4d3731bf1
14296Author: Jeremy C. Reed <reed@reedmedia.net>
14297Date:   Tue Feb 21 14:10:22 2006 -0800
14298
14299    Set XTHREADLIB correctly for dragonfly platforms.
14300
14301commit b24834762e975bd319f9ab5c7cf790b2a02a9474
14302Author: Jamey Sharp <jamey@minilop.net>
14303Date:   Tue Feb 21 14:03:26 2006 -0800
14304
14305    Sometimes functions other than _XUnlockDisplay call _XPutXCBBuffer. Some invariants appropriate for Unlock are not appropriate otherwise: move them to _XUnlockDisplay.
14306
14307commit 99b8defd0d5e6993071e21638128c9de2574b37d
14308Author: Jamey Sharp <jamey@minilop.net>
14309Date:   Tue Feb 21 13:04:21 2006 -0800
14310
14311    Execute BeforeFlush hooks on complete buffers, not request-at-a-time.
14312    Traditional Xlib worked this way; I dunno why I changed it.
14313
14314commit 9b01e7849775749182052fe324df9d8e6ceeee99
14315Author: Jamey Sharp <jamey@minilop.net>
14316Date:   Tue Feb 21 12:51:44 2006 -0800
14317
14318    Factor the XCBSendRequest call out of the conditional in _XPutXCBBuffer.
14319
14320commit 7ce7ac882de128955751a5307889db9d712d8a72
14321Author: Jamey Sharp <jamey@minilop.net>
14322Date:   Tue Feb 21 12:44:30 2006 -0800
14323
14324    Quit using a triple-pointer. Almost as if I were a sensible person.
14325
14326commit 35a858be218cdbfa4593d44a67663d5c25297016
14327Author: Jamey Sharp <jamey@minilop.net>
14328Date:   Tue Feb 21 12:21:01 2006 -0800
14329
14330    Remove the XCL_PAD macro.
14331
14332commit e741b70ed2542c5463c57dac44bc37328616733b
14333Author: Jamey Sharp <jamey@minilop.net>
14334Date:   Sun Feb 19 12:29:27 2006 -0800
14335
14336    Update .gitignores for *.o and nls/locale.dir*.
14337
14338commit f25b4b00e1683b0d97dba46dac46d65a9c2270a6
14339Author: Jamey Sharp <jamey@minilop.net>
14340Date:   Sun Feb 19 12:28:41 2006 -0800
14341
14342    Move .cvsignore to .gitignore.
14343
14344commit c7cda56eebaf6ab11403363be14d4948d7d8be38
14345Author: Jamey Sharp <jamey@minilop.net>
14346Date:   Sun Feb 19 11:49:15 2006 -0800
14347
14348    Land XCB support on X.org HEAD.
14349
14350commit 881467b3032261791ef5ec61b3879bb68d0a3d8c
14351Author: Jamey Sharp <jamey@minilop.net>
14352Date:   Sun Feb 19 02:14:11 2006 +0000
14353
14354    Merge the X11 and BIGREQS package sets: they were used in exactly the same places.
14355
14356commit 6b0158dfad714db5b89c04dbea3aedeafa0fb146
14357Author: Jamey Sharp <jamey@minilop.net>
14358Date:   Tue Feb 14 19:37:36 2006 +0000
14359
14360    Refactor _XFlush and _XSend code that sets dpy->synchandler to _XSeqSyncFunction into a new function, _XSetSeqSyncFunction. It makes the patch for XCB cleaner, but is arguably a good idea anyway.
14361
14362commit 010c3acbb3a6993d39274f42d88c00849acb0fb0
14363Author: Alan Coopersmith <alan.coopersmith@sun.com>
14364Date:   Sun Feb 12 18:19:17 2006 +0000
14365
14366    Bug #5628 <https://bugs.freedesktop.org/show_bug.cgi?id=5628> Shadow pages not created correctly when MANDIR & MANSUFFIX don't match.
14367
14368commit fe8c01c80263457f01b70dc1511b2bd9466b7c96
14369Author: Alan Coopersmith <alan.coopersmith@sun.com>
14370Date:   Fri Feb 3 23:34:43 2006 +0000
14371
14372    Fix typo in .TH line
14373
14374commit b091c217f3c3f60dde78b09a95c150df6c83d7ba
14375Author: Kevin E Martin <kem@kem.org>
14376Date:   Thu Dec 15 00:24:28 2005 +0000
14377
14378    Update package version number for final X11R7 release candidate.
14379
14380commit e7c04e0e65a2a0c70c6ad29ec2d6f4350fd81c2a
14381Author: Kevin E Martin <kem@kem.org>
14382Date:   Tue Dec 6 22:48:41 2005 +0000
14383
14384    Change *man_SOURCES ==> *man_PRE to fix autotools warnings.
14385
14386commit b5c495854d5270e64e6d588388ffa906bfcaac22
14387Author: Kevin E Martin <kem@kem.org>
14388Date:   Sat Dec 3 05:49:42 2005 +0000
14389
14390    Update package version number for X11R7 RC3 release.
14391
14392commit 9e96dbc343c7f27ff47607acd75378ab23903e2a
14393Author: Kevin E Martin <kem@kem.org>
14394Date:   Sat Dec 3 04:41:47 2005 +0000
14395
14396    Add check and cflags for malloc(0) returning NULL.
14397
14398commit 649c37b47909620ccafde3e983de8321cddd74ce
14399Author: Alan Coopersmith <alan.coopersmith@sun.com>
14400Date:   Mon Nov 28 22:03:04 2005 +0000
14401
14402    Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4 update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir)
14403
14404commit 8d1500df66d796ebff2b0d8c02205e5fa6796d4a
14405Author: Alan Coopersmith <alan.coopersmith@sun.com>
14406Date:   Wed Nov 23 22:33:06 2005 +0000
14407
14408    Bug #5003 <https://bugs.freedesktop.org/show_bug.cgi?id=5003> Patch #3763 <https://bugs.freedesktop.org/attachment.cgi?id=3763> Xorg code misuses S_IF* macros
14409
14410commit 93cf3747f9ae8d30bd485b41c5ff10397f68f078
14411Author: Eric Anholt <anholt@freebsd.org>
14412Date:   Sun Nov 20 23:17:39 2005 +0000
14413
14414    Add/improve libs .cvsignores.
14415
14416commit fa1f4a08112bfa14d3758f4702733dd3892966c3
14417Author: Kevin E Martin <kem@kem.org>
14418Date:   Sat Nov 19 07:15:39 2005 +0000
14419
14420    Update pkgconfig files to separate library build-time dependencies from application build-time dependencies, and update package deps to work with separate build roots.
14421
14422commit 7012f9b56c594cf40855ba0dbf93af1263417a8c
14423Author: Kevin E Martin <kem@kem.org>
14424Date:   Mon Nov 14 21:51:07 2005 +0000
14425
14426    Fix xf86bigfont pkgconfig dep typo.
14427
14428commit 60a72f47951f46b4e0505d9903a94af3b6bed8ca
14429Author: Kevin E Martin <kem@kem.org>
14430Date:   Wed Nov 9 21:19:12 2005 +0000
14431
14432    Update package version number for X11R7 RC2 release.
14433
14434commit 6bb0c3796b6e1beddc376a896e865704886e1462
14435Author: Kean Johnson <kean@armory.com>
14436Date:   Tue Nov 8 06:33:25 2005 +0000
14437
14438    See ChangeLog entry 2005-11-07 for details.
14439
14440commit 14be0098ad90c3e68bd2d21b00ffabb76f1fd780
14441Author: Kevin E Martin <kem@kem.org>
14442Date:   Tue Nov 1 15:11:50 2005 +0000
14443
14444    Update pkgcheck dependencies to work with separate build roots.
14445
14446commit 1bf71462a972e0fc56de63f5c7fd613b37fc70f1
14447Author: Donnie Berkholz <spyderous@gentoo.org>
14448Date:   Fri Oct 28 10:44:03 2005 +0000
14449
14450    Revert that, it's redundant. But it is worth noting that --disable-xkb is broken, if anyone cares.
14451
14452commit be627a39fe373e2e81fdc263780e70a271d9e0c5
14453Author: Donnie Berkholz <spyderous@gentoo.org>
14454Date:   Fri Oct 28 08:28:08 2005 +0000
14455
14456    Add dependency on inputproto for XI.h.
14457
14458commit 5fae4cb456cb03fb70cd065dbc2ca94c8ed99082
14459Author: Adam Jackson <ajax@nwnk.net>
14460Date:   Fri Oct 21 18:44:24 2005 +0000
14461
14462    Bug #4736: Error decoding for Damage extension. (Jonathan Lennox)
14463
14464commit 1171fa9dc77413f0e90933a565ec07068052afb4
14465Author: Kevin E Martin <kem@kem.org>
14466Date:   Wed Oct 19 02:48:08 2005 +0000
14467
14468    Update package version number for RC1 release.
14469
14470commit 2a2d905706308b9d5a1c16af1067fb390f43850c
14471Author: Alan Coopersmith <alan.coopersmith@sun.com>
14472Date:   Tue Oct 18 00:00:08 2005 +0000
14473
14474    Use @LIB_MAN_SUFFIX@ instead of $(LIB_MAN_SUFFIX) in macro substitutions to work better with BSD make
14475
14476commit 66d35b6971fb26762392a2a8e2c47db46c11116a
14477Author: Alan Coopersmith <alan.coopersmith@sun.com>
14478Date:   Mon Oct 17 21:13:15 2005 +0000
14479
14480    Rename .shadows.DONE to shadows.DONE to avoid some make's thinking it's a suffix rule (reported by Matthieu Herrb)
14481
14482commit a316995a17c084e98ef1b7f25d287c2c08b6d749
14483Author: Donnie Berkholz <spyderous@gentoo.org>
14484Date:   Sun Oct 16 03:03:35 2005 +0000
14485
14486    Change '==' to portable '='.
14487
14488commit b76a072530e884bcbea6ed8fed5aef39361dcfc0
14489Author: Alan Coopersmith <alan.coopersmith@sun.com>
14490Date:   Wed Oct 12 00:04:50 2005 +0000
14491
14492    configure.ac Use XORG_MAN_SECTIONS instead of custom man section configuration. Add shadow man pages for man pages that document multiple functions.
14493
14494commit 8ee5c1429af98206e05a0536f87c0f21a529cdf0
14495Author: Eric Anholt <anholt@freebsd.org>
14496Date:   Tue Oct 11 02:18:36 2005 +0000
14497
14498    Add appropriate pthread libs/flags for FreeBSD, fixing the build of ico and probably others.
14499
14500commit 41ff3b9d1f194a7b56437b650d5f589225c078c6
14501Author: Alan Coopersmith <alan.coopersmith@sun.com>
14502Date:   Sun Oct 9 22:28:39 2005 +0000
14503
14504    Bug #3021 <https://bugs.freedesktop.org/show_bug.cgi?id=3021> Requests and Errors for XFixes are not in XErrorDB (Jonathan Lennox)
14505
14506commit 91ed79852e790049ab54e68f288afb3c953194c9
14507Author: Kevin E Martin <kem@kem.org>
14508Date:   Fri Oct 7 15:00:00 2005 +0000
14509
14510    Clean up generated files
14511    Add missing dist tarball files
14512
14513commit 440399b470c97b159a530602fff11c315aca8d97
14514Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
14515Date:   Wed Oct 5 18:27:10 2005 +0000
14516
14517    Add el_GR.UTF-8 compose file
14518
14519commit 010f0647e25ac617d0f92c8d2b8dda684da545db
14520Author: Daniel Stone <daniel@fooishbar.org>
14521Date:   Fri Sep 30 07:52:46 2005 +0000
14522
14523    Bug #2609: Add Kyrgyz locale (Ilyas Bakirov).
14524
14525commit 3ef2fb67bd8905b208ad7eb790c3843e14cea7ed
14526Author: Daniel Stone <daniel@fooishbar.org>
14527Date:   Fri Sep 30 07:47:55 2005 +0000
14528
14529    Bug #1640: Kinyarwanda locale support. (Steve Murphy)
14530
14531commit 4ae0decabe0960870df0ec165f495166c10a053c
14532Author: Daniel Stone <daniel@fooishbar.org>
14533Date:   Fri Sep 30 07:40:03 2005 +0000
14534
14535    Bug #2268: Add South African locales (Dwayne Bailey). Some whitespace cleanups, as the parser is a little touchy.
14536
14537commit 3f79eb4c99844f618f1889741d1631c2ffe5385f
14538Author: Daniel Stone <daniel@fooishbar.org>
14539Date:   Fri Sep 30 07:11:19 2005 +0000
14540
14541    Generate locale.alias and compose.dir exactly like we do in the monolith, which fixes non-UTF-8 locales in particular (so we get foo: bar, as well as foo bar). Switch to generating locale.dir the same way.
14542
14543commit d1237d1483ff972c76a0ac344ec97d5280db0007
14544Author: Alan Coopersmith <alan.coopersmith@sun.com>
14545Date:   Thu Sep 29 21:27:12 2005 +0000
14546
14547    Add Xcms.txt to lib/X11
14548
14549commit 4a86f299693f7376cbe98175f0b0c44d691802b3
14550Author: Alan Coopersmith <alan.coopersmith@sun.com>
14551Date:   Sat Sep 24 20:11:06 2005 +0000
14552
14553    Add XQueryExtension.man
14554
14555commit a057a66e2041d45198a13a4ece7c07068f76f21b
14556Author: Alan Coopersmith <alan.coopersmith@sun.com>
14557Date:   Sat Sep 24 00:16:32 2005 +0000
14558
14559    Add XTHREAD_CFLAGS for platforms that need special defines like
14560    -D_REENTRANT or -D_POSIX_whatever to get re-entrant function definitions. Set XDMCP_LIBS correctly for later libXdmcp tests.
14561
14562commit 3e920a65a7c376ad63eae2240fd06904d25d18bf
14563Author: Alan Coopersmith <alan.coopersmith@sun.com>
14564Date:   Fri Sep 2 23:00:30 2005 +0000
14565
14566    Issue an error if XTRANS macros were not found when generating configure from configure.ac to flag errors early, instead of when people wonder why libX11 can't talk to an Xserver because it has no transports defined
14567
14568commit 3eb9f2d693af89d04e2fd92492c8205dce332c9c
14569Author: Kristian Høgsberg <krh@redhat.com>
14570Date:   Thu Sep 1 19:24:13 2005 +0000
14571
14572    Use $(X11_LOCALEDATADIR) instead of @X11_LOCALEDATADIR@ so this install destination can be overridden at make install time.
14573
14574commit 7afa64325183b78d2d6a4862821f8b3e9866105c
14575Author: Matthieu Herrb <matthieu.herrb@laas.fr>
14576Date:   Sun Aug 28 19:45:48 2005 +0000
14577
14578    OpenBSD needs -lpthread for threaded applications too.
14579
14580commit 2b2f3d3877cb7927f196d01a5df6a27bf8d0518a
14581Author: Daniel Stone <daniel@fooishbar.org>
14582Date:   Fri Aug 26 05:16:46 2005 +0000
14583
14584    Define ERRORDB/KEYSYMDB to XERRORDB/XKEYSYMDB if the former is undefined but the latter is. (Gerte Hoogewerf)
14585
14586commit 07066da0902df91c71f2adb81d1a17ec29165553
14587Author: Matthieu Herrb <matthieu.herrb@laas.fr>
14588Date:   Sun Aug 21 15:45:04 2005 +0000
14589
14590    update
14591
14592commit de44d8b111f57bd2f015e085fd8298c5f2a15ef3
14593Author: Matthieu Herrb <matthieu.herrb@laas.fr>
14594Date:   Sun Aug 21 15:38:39 2005 +0000
14595
14596    Threads support for BSD systems:
14597    - need to check for gewtpwuid_r to define mtsafeapi
14598    - build UIThrstubs if needed.
14599
14600commit 60217fdb918bafb2082519efe5cba3b13ad3082a
14601Author: Adam Jackson <ajax@nwnk.net>
14602Date:   Wed Aug 17 19:46:08 2005 +0000
14603
14604    Add xthreadlib variable to x11.pc. Bump to 0.99.1.
14605
14606commit e1f4c6f5e36c1511f66fa1fac76520fd97eecbad
14607Author: Alan Coopersmith <alan.coopersmith@sun.com>
14608Date:   Wed Aug 17 01:27:08 2005 +0000
14609
14610    Fix more broken multi-line .ds macros. Remove extraneous ;'s .
14611
14612commit 1909786f4a7d686369edcfc05a938df115fab37c
14613Author: Alan Coopersmith <alan.coopersmith@sun.com>
14614Date:   Tue Aug 16 19:23:15 2005 +0000
14615
14616    Bugzilla #4112 <https://bugs.freedesktop.org/show_bug.cgi?id=4112> Patch #2687 <https://bugs.freedesktop.org/attachment.cgi?id=2897> Fix multi-line macros in XPutImage man page. (Debian bug #323210, fix by David Mart?nez Moreno)
14617
14618commit 83406d69c62070d2eeef23eb47f1ca887f711ee5
14619Author: Alan Coopersmith <alan.coopersmith@sun.com>
14620Date:   Mon Aug 15 19:53:37 2005 +0000
14621
14622    Move RAWCPP macro to xorg-macros.m4 so other modules can use it Add check for whether or not RAWCPP needs -traditional instead of hardcoding it, so non-gcc cpp's can be used
14623
14624commit 5bb43de17de8e71d967488a713bf2b3448533444
14625Author: Alan Coopersmith <alan.coopersmith@sun.com>
14626Date:   Sat Aug 6 18:59:49 2005 +0000
14627
14628    Typo fix in output message
14629
14630commit afe34b95862bb3c06cdbe724cb5ec3001a4a5215
14631Author: Alan Coopersmith <alan.coopersmith@sun.com>
14632Date:   Thu Aug 4 02:55:49 2005 +0000
14633
14634    //bugs.freedesktop.org/show_bug.cgi?id=1887> Patch #3005 <https://bugs.freedesktop.org/attachment.cgi?id=3005> libX11 locale defs severely adrift from glibc: adding new aliases (From Debian via Nathanael Nerode)
14635
14636commit 3979a0b88edf6475ce5cfaa386e18ef980bda13c
14637Author: Alan Coopersmith <alan.coopersmith@sun.com>
14638Date:   Thu Aug 4 02:51:30 2005 +0000
14639
14640    //bugs.freedesktop.org/show_bug.cgi?id=1887> Patch #3002 <https://bugs.freedesktop.org/attachment.cgi?id=3002> libX11 locale defs severely adrift from glibc: locales bugfix for bs_BA (From Debian via Nathanael Nerode)
14641
14642commit 34b454df192f4563499c453ccdb8c079f4a20cbe
14643Author: Alan Coopersmith <alan.coopersmith@sun.com>
14644Date:   Sat Jul 30 20:30:46 2005 +0000
14645
14646    Include config.h so Xtrans knows which transport types to build code for
14647
14648commit cd9c9936b49c125eda779b99887d7e6ae4cf56cd
14649Author: Alan Coopersmith <alan.coopersmith@sun.com>
14650Date:   Sat Jul 30 19:15:16 2005 +0000
14651
14652    Add -D flags to clear various warnings (Stefan Dirsch)
14653
14654commit e7fef67b4531faddd805d8f2157903006d3117ed
14655Author: Kevin E Martin <kem@kem.org>
14656Date:   Fri Jul 29 21:22:50 2005 +0000
14657
14658    Various changes preparing packages for RC0:
14659    - Verify and update package version numbers as needed
14660    - Implement versioning scheme
14661    - Change bug address to point to bugzilla bug entry form
14662    - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to reenable it)
14663    - Fix makedepend to use pkgconfig and pass distcheck
14664    - Update build script to build macros first
14665    - Update modular Xorg version
14666
14667commit 2ebb00244928237088e68325b1032b3550455ce9
14668Author: Matthieu Herrb <matthieu.herrb@laas.fr>
14669Date:   Sat Jul 23 20:19:31 2005 +0000
14670
14671    remove orphan TAB at begin of line
14672
14673commit dd7a9cdecda73e024ca84c5b9a22b18688038d94
14674Author: Kevin E Martin <kem@kem.org>
14675Date:   Sat Jul 23 18:09:39 2005 +0000
14676
14677    Modify modular libs to use Xregion.h instead of region.h
14678
14679commit 6d635a88d91647b1b63611c3591f74916f88cd1c
14680Author: Kevin E Martin <kem@kem.org>
14681Date:   Sat Jul 23 18:06:16 2005 +0000
14682
14683    lib/Xrender/Picture.c Change region.h to Xregion.h and modify internal references to include <X11/Xregion.h>.
14684
14685commit 36283f50fd9748733ae84cb7fb52ca8d9e661c15
14686Author: Daniel Stone <daniel@fooishbar.org>
14687Date:   Sat Jul 16 06:25:35 2005 +0000
14688
14689    Set soversion to 6.2.0.
14690
14691commit 75fd5ae6e4683b9b9dcc13bc2f0faf223610a74f
14692Author: Keith Packard <keithp@keithp.com>
14693Date:   Fri Jul 15 04:27:32 2005 +0000
14694
14695    Add missing Makefile.am to lib/X11/modules
14696
14697commit 6d84a8b1329af1fcfe86b198f1a6e7dd6ff616c3
14698Author: Keith Packard <keithp@keithp.com>
14699Date:   Fri Jul 15 04:08:51 2005 +0000
14700
14701    Move i18n modules to top-level so they can be built in the right order (before xlib for non-loadable, after xlib for loadable).
14702    Link i18n modules against xlib to resolve Xlib symbols used by them.
14703
14704commit 45f40126a73295345bb5eb187b1167874842ab6e
14705Author: Alexander Gottwald <ago@freedesktop.org>
14706Date:   Thu Jul 14 19:50:00 2005 +0000
14707
14708    Add $(top_srcdir)/src to include list
14709
14710commit 0aed7d91f5928d09d541617aad03709b5090658d
14711Author: Matthieu Herrb <matthieu.herrb@laas.fr>
14712Date:   Thu Jul 14 17:04:49 2005 +0000
14713
14714    Build fix for non-GNU make.
14715
14716commit b79422ccb02ab44548d1038956ab0cd4e2638645
14717Author: Adam Jackson <ajax@nwnk.net>
14718Date:   Thu Jul 14 15:12:44 2005 +0000
14719
14720    typo fixes (Matthieu Herrb)
14721
14722commit 419304cde2fda19457c667870edefc0b227651b3
14723Author: Alan Coopersmith <alan.coopersmith@sun.com>
14724Date:   Wed Jul 13 02:41:36 2005 +0000
14725
14726    Add missing backslashes to xlocale_la_SOURCES
14727
14728commit d14cc5c8964c4539b57c6cb51ef653292e410b79
14729Author: Keith Packard <keithp@keithp.com>
14730Date:   Mon Jul 11 20:32:55 2005 +0000
14731
14732    Ammend AM_CFLAGS with all needed includes; cannot figure out an easy way to automate this.
14733
14734commit 424c2d8905eb2ad0a2df15b1da2f96140bfbcffb
14735Author: Lars Knoll <lars@trolltech.com>
14736Date:   Mon Jul 11 15:24:32 2005 +0000
14737
14738    compile
14739
14740commit de9784eb1bde46efc316da279e3da27c6cc288a7
14741Author: Keith Packard <keithp@keithp.com>
14742Date:   Mon Jul 11 09:26:40 2005 +0000
14743
14744    Ignore built man page files
14745
14746commit 0c258c36d1523113790c599b16d2947d7aa6469a
14747Author: Keith Packard <keithp@keithp.com>
14748Date:   Mon Jul 11 09:18:31 2005 +0000
14749
14750    Minor changes to help modular Xlib build i18n modules
14751
14752commit 6e752ea1203b786423e40f43340bce15ca3de0f0
14753Author: Keith Packard <keithp@keithp.com>
14754Date:   Mon Jul 11 08:29:18 2005 +0000
14755
14756    Enable loadable i18n modules, making them configurable on the configure command line.
14757    Clean up conditionals for XKB, XCMS, XLOCALEDIR
14758    Create new lib directory for locale modules in ${X11_LIBDIR}/locale/lib. Add this to the default XLOCALEDIR search path.
14759    Create separate X11_LOCALEDATADIR variable pointing at ${datadir}/X11/locale for installing locale data.
14760    Split out xcms, xkb, xlibi18n sources from main xlib bits so they can be conditionally included more easily. Lots of source files have been moved with this step; the result seems like it might be easier to maintain.
14761    Display message at end of configure script with selected options.
14762    Fix manual building with cpp to add -traditional in cpprules.in. This isn't conditionalized at all, so it will break on systems not using GNU cpp.
14763
14764commit b46cf0d879f1dbf92dcf5a0305d18986c766ed84
14765Author: Daniel Stone <daniel@fooishbar.org>
14766Date:   Sun Jul 10 22:37:33 2005 +0000
14767
14768    Fix segfault when _XimProtoCreateIC() fails to create a context; Debian #239991. (Chung-chieh Shan)
14769
14770commit 6f2132b18e61ca9755e4b45550f3f5097dd1fbb7
14771Author: Alan Coopersmith <alan.coopersmith@sun.com>
14772Date:   Sat Jul 9 20:06:04 2005 +0000
14773
14774    Set __libmansuffix__ & __xorgversion__ correctly when cpp processing man pages
14775
14776commit 3939ac4410446b46071c9d714f4270c12bf904fe
14777Author: Alan Coopersmith <alan.coopersmith@sun.com>
14778Date:   Sat Jul 9 18:44:14 2005 +0000
14779
14780    - Since all but one line of all the nls/*/Makefile.am files are identical, move common bits to nls/localerules.in for easier updating and use automake includes to include in all the nls/*/Makefile.am files
14781    - Don't assume $(CPP) can take gcc-only -traditional flag
14782    - CPP process man pages as is done in the monolithic tree
14783
14784commit 19ba9d0df86c688319377467254b9ea9c4b0eccc
14785Author: Keith Packard <keithp@keithp.com>
14786Date:   Sat Jul 9 06:01:49 2005 +0000
14787
14788    Clean up .cvsignore files
14789
14790commit f4bba6fa9b9ce637be7662754750054567e9250a
14791Author: Adam Jackson <ajax@nwnk.net>
14792Date:   Sat Jul 9 02:53:29 2005 +0000
14793
14794    typo fix. i suck.
14795
14796commit 3305da61a61695e24c1ea11d3f59dddb52873d47
14797Author: Adam Jackson <ajax@nwnk.net>
14798Date:   Sat Jul 9 02:41:18 2005 +0000
14799
14800    Check for bigfont proto headers via pkgconfig (Arwed von Merkatz)
14801
14802commit afdae2e8ccb93de2987b5a5e850695af15ece7e0
14803Author: Keith Packard <keithp@keithp.com>
14804Date:   Fri Jul 8 07:11:56 2005 +0000
14805
14806    Create and use XlibConf.h to match modular build which needs XTHREADS defined when building extensions
14807
14808commit 86fa88dc594ca2093030acf5c84973ee2b33eb4c
14809Author: Keith Packard <keithp@keithp.com>
14810Date:   Fri Jul 8 06:57:06 2005 +0000
14811
14812    Create and install XlibConf.h to provide external users of Xlibint.h the defines necessary to correctly use the library. Xlibint.h should #include this new file.
14813    Add a bunch of .cvsignore files
14814
14815commit 30f6ffedeaf899e699f0c6b14c9471ce9bcc430c
14816Author: Chris Less <clee@c133.org>
14817Date:   Mon Jul 4 23:01:48 2005 +0000
14818
14819    Fixing bug #380 - add a man page for XQueryExtension, XListExtensions, and XFreeExtensionList.
14820
14821commit 55328bb6caabd37885cd19d7a5821ed425daf321
14822Author: Eric Anholt <anholt@freebsd.org>
14823Date:   Sun Jul 3 10:17:38 2005 +0000
14824
14825    Avoid a gmake-specific construct, and instead just write the name of the current directory into each Makefile.am.
14826
14827commit 726538ba21b631bfb0b8094a5546acdaf57379ff
14828Author: Daniel Stone <daniel@fooishbar.org>
14829Date:   Sun Jul 3 07:37:33 2005 +0000
14830
14831    Fix more include paths; add dix-config.h to XKB code.
14832
14833commit 8c7677138e70e14eca0255f2168583f0ecc21994
14834Author: Daniel Stone <daniel@fooishbar.org>
14835Date:   Sun Jul 3 07:00:55 2005 +0000
14836
14837    Add Xtrans definitions (FONT_t, TRANS_CLIENT) to clean up warnings.
14838    Add XSERV_t, TRANS_SERVER, TRANS_REOPEN to quash warnings.
14839    Add #include <dix-config.h> or <xorg-config.h>, as appropriate, to all source files in the xserver/xorg tree, predicated on defines of HAVE_{DIX,XORG}_CONFIG_H. Change all Xfont includes to <X11/fonts/foo.h>.
14840
14841commit 197697c92a63091a4cc3cc04dcb7fa29d2655758
14842Author: Daniel Stone <daniel@fooishbar.org>
14843Date:   Fri Jul 1 22:13:35 2005 +0000
14844
14845    Fix objdir != srcdir, as well as make distcheck.
14846    Don't attempt to create Compose.pre files; formatting fixes.
14847    Added if not already present.
14848
14849commit c162d60ad8f124563f94a2a266de59373936266c
14850Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
14851Date:   Wed Jun 22 22:46:31 2005 +0000
14852
14853    Apply these patches from Theo van Klaveren:
14854    lib-dmx.patch lib-FS.patch lib-X11.patch lib-XRes.patch lib-XScrnSaver.patch lib-xtrans.patch
14855    to make the libraries distcheck.
14856
14857commit 9ee8abdab03ea605a6327118ab7dacab6adf8876
14858Author: Alan Coopersmith <alan.coopersmith@sun.com>
14859Date:   Sat Jun 18 07:48:43 2005 +0000
14860
14861    Move Secure RPC flags from X11/configure.ac to xtrans/xtrans.m4 since multiple modules will need them
14862
14863commit 12afc57b7d455781eee305e9ed6a899ceec8729e
14864Author: Daniel Stone <daniel@fooishbar.org>
14865Date:   Wed Jun 15 16:50:47 2005 +0000
14866
14867    Typo fix to locale/error/keysym location declarations.
14868
14869commit 9a895777e30762f61b98d25be3b5d8b1169baa17
14870Author: Daniel Stone <daniel@fooishbar.org>
14871Date:   Wed Jun 15 13:37:43 2005 +0000
14872
14873    Typo in ImUtil.h commit -- I AM CAPTAIN SKILL.
14874
14875commit add49285663684875ab7a5c58ec7a2cf8b775f67
14876Author: Daniel Stone <daniel@fooishbar.org>
14877Date:   Wed Jun 15 13:32:35 2005 +0000
14878
14879    Define locations for XErrorDB, XKeysymDB, and locale data in configure.ac. Add AC_DEFINE_DIR macro from autoconf-archive.cryp.to towards this end.
14880    Move ImUtil.h from src/ to include/X11/.
14881
14882commit 845dfc6b42b950890866ee4df27761e086f50dca
14883Author: Daniel Stone <daniel@fooishbar.org>
14884Date:   Wed Jun 15 13:27:48 2005 +0000
14885
14886    Move ImUtil.h from src/ to include/X11/. Additionally, copy Cmap.h as a distribution file.
14887
14888commit bba117f0d98f62cfb060d0fab97b407a3a0bfda9
14889Author: Daniel Stone <daniel@fooishbar.org>
14890Date:   Fri Jun 10 14:11:36 2005 +0000
14891
14892    Remove pointless include of Xlib.h.
14893    Fix #include path to bigreqstr.h.
14894
14895commit 1a0de49da1274882bab05b0f7240936b37955e5c
14896Author: Alexander Gottwald <ago@freedesktop.org>
14897Date:   Thu Jun 9 21:30:15 2005 +0000
14898
14899    Use $(srcdir) for Compose.pre and XLC_LOCALE.pre
14900
14901commit af4f0f302644ebfbb0ca9f4016a4aee85c973d37
14902Author: Alexander Gottwald <ago@freedesktop.org>
14903Date:   Thu Jun 9 15:55:33 2005 +0000
14904
14905    Replace <X11/transport.c> with <X11/Xtrans/transport.c>
14906
14907commit fd5f58e0baf692e34b9b622286f18762cc2500d3
14908Author: Alexander Gottwald <ago@freedesktop.org>
14909Date:   Thu Jun 9 15:52:02 2005 +0000
14910
14911    Replace <X11/Xtrans.h> with <X11/Xtrans/Xtrans.h>
14912    Copy Xtrans.h to exports/include/X11/Xtrans only
14913
14914commit 44538f9940f969d46c0e5e4b201c684cde2ba611
14915Author: Alan Coopersmith <alan.coopersmith@sun.com>
14916Date:   Sun Jun 5 03:29:33 2005 +0000
14917
14918    Port Imake flags to autoconf tests & --enable-* flags: HASSETUGID, HASGETRESUID, NO_XLOCALEDIR, HAS_SHM and XF86BIGFONT
14919
14920commit 588e30e9ec65fa6205a34be650b79d5e2243edec
14921Author: Alan Coopersmith <alan.coopersmith@sun.com>
14922Date:   Sat Jun 4 22:53:21 2005 +0000
14923
14924    Add --enable-secure-rpc flag and checks for needed functions for Secure RPC ("SUN-DES-1") authentication method
14925
14926commit a547afee2ef49cc41bbb67f9cff5a52a283c0854
14927Author: Alan Coopersmith <alan.coopersmith@sun.com>
14928Date:   Sat Jun 4 21:20:20 2005 +0000
14929
14930    Bug #3436 <https://bugs.freedesktop.org/show_bug.cgi?id=3436> Conndis.c uses incorrect type for args to XdmcpWrap() (Mike Harris - mharris@www.linux.org.uk)
14931
14932commit ca93c761559ae464189c7ea7cf11c6a6679f2431
14933Author: Matthieu Herrb <matthieu.herrb@laas.fr>
14934Date:   Sat May 28 01:02:32 2005 +0000
14935
14936    Don't use $< in explicit rules. This only works with GNU make. <https://bugs.freedesktop.org/show_bug.cgi?id=3383>
14937
14938commit 09ebb349359e3dd9131fa2fa8b07559faa173654
14939Author: Alan Coopersmith <alan.coopersmith@sun.com>
14940Date:   Sun May 22 19:05:11 2005 +0000
14941
14942    Convert man pages to long file names in lib/X11, lib/Xt, & lib/Xext
14943
14944commit 761219b1ef9befc350c8a35b6f96d047e5f008cc
14945Author: Alan Coopersmith <alan.coopersmith@sun.com>
14946Date:   Sat May 21 23:07:48 2005 +0000
14947
14948    xtrans:
14949    Create autoconf macro XTRANS_CONNECTION_FLAGS to provide standard set of --enable flags for which transports to support and common place to update for required libraries for platforms that need certain libs for certain transports
14950    ICE:
14951    Add ICE_t #define required by Xtrans headers. Replace static defines of LOCALCONN & UNIXCONN with new XTRANS_CONNECTION_FLAGS macro.
14952    X11:
14953    Moved transport type checks to new macro XTRANS_CONNECTION_FLAGS in xtrans.m4 in xtrans module so they can be shared by all modules using xtrans.
14954
14955commit 4b1ba6eb975b547b808f4d5c8825a3261de5e02a
14956Author: Alan Coopersmith <alan.coopersmith@sun.com>
14957Date:   Sat May 21 04:26:12 2005 +0000
14958
14959    Quote $ac_cv_search_* variables to prevent errors from test when they are set to "none required" (as happens on Solaris since dlopen is in libc)
14960    Comment out "override CC = gcc" line as it breaks builds with non-GNU makes, and its incorrect to force a specific compiler. Change LINK line from gcc to $(CC).
14961
14962commit 1d425d5e2092dd18a7dd599b37ed9af61cf59819
14963Author: Adam Jackson <ajax@nwnk.net>
14964Date:   Thu May 19 00:22:32 2005 +0000
14965
14966    revert last change, didn't do right thing at all, sorry for the noise
14967
14968commit 1b0c46c1ae61d751dd3ca96de8e2c3fe21c5f4f2
14969Author: Adam Jackson <ajax@nwnk.net>
14970Date:   Thu May 19 00:10:07 2005 +0000
14971
14972    Require automake 1.7 in AM_INIT_AUTOMAKE
14973
14974commit cd4657c175dbab6aaca36f18a0ca92c95b5567dd
14975Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
14976Date:   Tue May 17 22:32:09 2005 +0000
14977
14978    - Check for xproto as its CFLAGS are needed in the .pc file
14979
14980commit 46e8d8a65430dd87c10b066b5cff99a689c22241
14981Author: Egbert Eich <eich-at-freedesktop-dot-org>
14982Date:   Tue May 17 08:10:10 2005 +0000
14983
14984    gcc4 allows to check if sentinels are correct (a sentinel is the terminating element in a varargs list). A sentinel needs to be NULL, not 0 - which doesn't make a difference on 32bit but matters on 64bit. Furthermore it can be told that functions have a printf-like format string and argument list so that they can verify that both match. To use these features certain attributes need to be set - which are compiler specific. To do this we define macros which are expanded depending on the compiler version. For now we put those in include/Xfuncproto.h (the XFree86 DDX layer contains a file compiler.h which however is not visible outside the DDX) (Bugzilla #3268).
14985
14986commit 23198d2bfbf0049b2630235cd4d4a4ffba7ec6c1
14987Author:  <ssp@aware-of-vacuity.boston.redhat.com>
14988Date:   Mon May 16 22:35:27 2005 +0000
14989
14990    Make Xdmcp unconditionally required, require various protocol modules.
14991    Mon May 16 17:48:03 2005 Søren Sandmann <sandmann@redhat.com>
14992    Check for kbproto if using XKB.
14993    Require xextproto rather than xextensions
14994    Remove the entries from the xlibs tree, as they are not relevant here.
14995
14996commit 8bd3aea84ce54b8b76a898f3ae00e2b499c14a5e
14997Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
14998Date:   Mon May 16 21:48:36 2005 +0000
14999
15000    Mon May 16 17:48:03 2005 Søren Sandmann <sandmann@redhat.com>
15001    Check for kbproto if using XKB.
15002
15003commit 9b1fa9ca3ed852ed40860f137511683f4bdae6fa
15004Author:  <ssp@aware-of-vacuity.boston.redhat.com>
15005Date:   Mon May 16 21:27:35 2005 +0000
15006
15007    Require xextproto rather than xextensions
15008    Remove the entries from the xlibs tree, as they are not relevant here.
15009
15010commit 7eee605e3aeed549d1053325a03027c5e8cbf71b
15011Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
15012Date:   Fri May 13 22:53:36 2005 +0000
15013
15014    - For now put xtrans in X11/Xtrans/X11, since libX11 is looking for it in <X11/...>
15015    - For Xcomposite and Xdamage, don't link the build system out of the xc tree
15016    - Link the public X11 headers into their own directory
15017    - Add links to XKeysymDB and XErrorDB
15018    - Add links to all the Xlib man pages
15019    - Add links to the lcUniConv subdirectory
15020    - Conditionally include config.h in Xlib source
15021
15022commit 6769ccda88caf27d1441d335ef2b318a047a612b
15023Author: Alan Coopersmith <alan.coopersmith@sun.com>
15024Date:   Mon Mar 21 04:58:21 2005 +0000
15025
15026    xc/lib/X11/ErrDes.c
15027    //bugs.freedesktop.org/show_bug.cgi?id=132) Patch #2168 (https://bugs.freedesktop.org/attachment.cgi?id=2168) Replace a couple of BUFSIZE uses with better values to check against. Fixes by Stuart Anderson <anderson@netsweng.com>
15028
15029commit 3b9e8ece93b916c55a82df53e85f097418edf471
15030Author: Roland Mainz <roland.mainz@nrubsig.org>
15031Date:   Sat Mar 19 22:04:55 2005 +0000
15032
15033    xc/nls/Compose/iso8859-2
15034    xc/nls/Compose/iso8859-3
15035    xc/nls/Compose/iso8859-9
15036    //bugs.freedesktop.org/show_bug.cgi?id=2592) attachment #2156 (https://bugs.freedesktop.org/attachment.cgi?id=2156) Fix a couple of typos in ISO8859-* Compose files ("asciicircum" instead "of asciicirum"). Patch by Matthias Hopf <mhopf@suse.de>.
15037
15038commit 0ce5950a08b9ab23ca8a32effdd40c421e92df84
15039Author: Alan Coopersmith <alan.coopersmith@sun.com>
15040Date:   Tue Mar 8 02:53:36 2005 +0000
15041
15042    Bugzilla Bug 2006 (https://bugs.freedesktop.org/show_bug.cgi?id=2006) Patch #2031 (https://bugs.freedesktop.org/attachment.cgi?id=2031) XEmbed client doesn't receive key events from XIM: Use | to set a bit, not &. Patch by Hidetoshi Tajima <hidetoshi.tajima@sun.com>.
15043
15044commit df341cd2f2f263f13323e8c0936ea8aa0d7fbba1
15045Author: Roland Mainz <roland.mainz@nrubsig.org>
15046Date:   Tue Feb 1 03:12:28 2005 +0000
15047
15048    xc/nls/Compose/pt_BR.UTF-8
15049    //bugs.freedesktop.org/show_bug.cgi?id=2400) attachment #1762 (https://bugs.freedesktop.org/attachment.cgi?id=1762): Fix build bustage caused by broken patch for brazillian locale support (see Bugzilla #1896). Patch by Kevin E. Martin <kem@freedesktop.org>.
15050
15051commit 483d3973f56dda51f9251d3ea808aaf7f3b48c10
15052Author: Markus Kuhn <Markus.Kuhn@cl.cam.ac.uk>
15053Date:   Fri Jan 28 18:31:31 2005 +0000
15054
15055    cleaned up boundary-case handling for Uxxxx Unicode keysym notation
15056
15057commit f234188a4c1e6b655aef0e3957ccad20d4c5847f
15058Author: Roland Mainz <roland.mainz@nrubsig.org>
15059Date:   Wed Jan 19 01:53:55 2005 +0000
15060
15061    xc/nls/compose.dir
15062    xc/nls/locale.dir
15063    xc/nls/Compose/Imakefile
15064    xc/nls/Compose/pt_BR.UTF-8
15065    xc/nls/XI18N_OBJS/Imakefile
15066    xc/nls/XI18N_OBJS/pt_BR.UTF-8
15067    xc/nls/XLC_LOCALE/Imakefile
15068    xc/nls/XLC_LOCALE/pt_BR.UTF-8
15069    //bugs.freedesktop.org/show_bug.cgi?id=1896) attachment #1675 (https://bugs.freedesktop.org/attachment.cgi?id=1675): Add support for pt_BR.UTF-8 locale. Patch by Gustavo Noronha Silva, Branden Robinson, Julien Lafon.
15070
15071commit 7448ea7ef425d35cfc31eb41d46f4d879774f376
15072Author: Egbert Eich <eich-at-freedesktop-dot-org>
15073Date:   Fri Jan 14 18:03:09 2005 +0000
15074
15075    Made some security enhancements:
15076    - no writing past end of buffer caused by bogus locale.
15077    - explicitely add a \0 character at end of string. (Bugzilla #2262)
15078
15079commit 5557d47fcf22a6f3adf327691158f2270e3d5094
15080Author: Roland Mainz <roland.mainz@nrubsig.org>
15081Date:   Fri Jan 14 04:59:05 2005 +0000
15082
15083    xc/nls/compose.dir
15084    xc/nls/locale.alias
15085    xc/nls/locale.dir
15086    //bugs.freedesktop.org/show_bug.cgi?id=1830) attachment #1674 (https://bugs.freedesktop.org/attachment.cgi?id=1674): Adding support for the bs_BA (bs, bs_BA, bs_BA.iso88592, bs_BA.ISO-8859-2, bs_BA.ISO_8859-2, bs_BA.UTF-8) locale. Patch by Vedran Ljubovic <vljubovic@smartnet.ba>.
15087
15088commit 1fa3737f042f798fa11a9ff5b03f3b3ba3529824
15089Author: Egbert Eich <eich-at-freedesktop-dot-org>
15090Date:   Tue Jan 11 17:37:57 2005 +0000
15091
15092    'Normalize' locale names (ie. remove any '-' and '_' and convert to lower case after the <language>_<territory> part) before matching against locale.alias (Bugzilla #2262). This needs adequate testing that we don't accidentally introduce undesirable side effects.
15093
15094commit 642cd269f94a234aa470a1d43385bd42625d89a1
15095Author: Egbert Eich <eich-at-freedesktop-dot-org>
15096Date:   Tue Dec 14 08:59:20 2004 +0000
15097
15098    Removed #ifdef'ed out code together with the comment explaining why it was #ifdef'ed out.
15099    Fixed typo.
15100    Added comment to a changed that's been committed with one of the previous commits.
15101
15102commit a07ccae36e629741d2e48de7730114d30a975a41
15103Author: Matthieu Herrb <matthieu.herrb@laas.fr>
15104Date:   Sun Dec 12 08:42:50 2004 +0000
15105
15106    Fix missing XChangeProperty() prototype missing in synopsis section.
15107
15108commit c73adb1c8ad806c2f9f0ba32f4b449e7a871501c
15109Author: Alexander Gottwald <ago at freedesktop dot org>
15110Date:   Wed Dec 8 13:42:01 2004 +0000
15111
15112    Bugzilla #1980 (https://bugs.freedesktop.org/show_bug.cgi?id=1980) Handle XERRORDB only on WIN32 platform
15113
15114commit d5e7ab194103e22fd6c5094aaa107d90210bb600
15115Author: Jim Gettys <jg@freedesktop.org>
15116Date:   Thu Dec 2 16:18:16 2004 +0000
15117
15118    fix comment to indicate additional possible mode. i bug 1756 reported by Owen Taylor.
15119
15120commit 03940d7330cb1bbf93d49c650aefb19de457da7c
15121Author: Alexander Gottwald <ago at freedesktop dot org>
15122Date:   Wed Dec 1 13:06:55 2004 +0000
15123
15124    Bugzilla #1980, https://bugs.freedesktop.org/show_bug.cgi?id=1980 Make location of XErrorDB configurable
15125
15126commit 11a03ab908bfcfab8a3492684e8e9320e492d552
15127Author: Alexander Gottwald <ago at freedesktop dot org>
15128Date:   Wed Dec 1 12:42:17 2004 +0000
15129
15130    Bugzilla #1864, http://freedesktop.org/bugzilla/show_bug.cgi?id=1864 Initialize pointer to NULL to avoid freeing random memory
15131
15132commit f3d83ee153f42e8899b844377e6b842d93411e62
15133Author: Alexander Gottwald <ago@freedesktop.org>
15134Date:   Mon Nov 15 15:06:54 2004 +0000
15135
15136    Bufzilla #1802, http://freedesktop.org/bugzilla/show_bug.cgi?id=1802 Added mingw (Win32) port
15137
15138commit b798ea11911ac58a8e6e7d15a2a643b023859749
15139Author: Alexander Gottwald <ago at freedesktop dot org>
15140Date:   Mon Nov 15 13:29:56 2004 +0000
15141
15142    Bugzilla #1864, http://freedesktop.org/bugzilla/show_bug.cgi?id=1864 Initialize pointer to NULL to avoid freeing random memory
15143
15144commit 436108cd6c84053698e5ca629096f59b34f50c2a
15145Author: Kristian Høgsberg <krh@redhat.com>
15146Date:   Thu Nov 11 15:37:01 2004 +0000
15147
15148    Fix #1818
15149
15150commit bf2e6ef66ba55f90efa4a4ba8c8b6d3ec0d1531c
15151Author: Roland Mainz <roland.mainz@nrubsig.org>
15152Date:   Tue Nov 9 00:56:56 2004 +0000
15153
15154    xc/nls/compose.dir
15155    xc/nls/locale.alias
15156    xc/nls/locale.dir
15157    //freedesktop.org/bugzilla/show_bug.cgi?id=1544): Adding support for the si_LK (si, sinhala, si_LK, si_LK.UTF-8) locale. Patch by Anuradha Ratnaweera <gnu.slash.linux@gmail.com>.
15158
15159commit 443890ceefbd6dafe68e30d103ec4f9d316ed655
15160Author: Roland Mainz <roland.mainz@nrubsig.org>
15161Date:   Fri Nov 5 00:58:49 2004 +0000
15162
15163    xc/nls/compose.dir
15164    xc/nls/locale.alias
15165    xc/nls/locale.dir
15166    Adding some of the major indic locales (bn_IN.UTF-8, bn_IN.utf8, gu_IN.UTF-8, gu_IN.utf8, pa_IN.UTF-8, pa_IN.utf8) to X. Patch by Leon Ho <llch@redhat.com>.
15167
15168commit af7467ec734321f127b957921cce7792902b6794
15169Author: Egbert Eich <eich-at-freedesktop-dot-org>
15170Date:   Mon Oct 18 17:29:03 2004 +0000
15171
15172    Correcting font encodings for GB18030, GBK and BIG5-HKSCS. Adding nls support for those encodings (Bugzilla 1573, James Su).
15173
15174commit 1b900b59cb24fe8be3db0d434b04d462c0eeb206
15175Author: Egbert Eich <eich-at-freedesktop-dot-xorg>
15176Date:   Mon Oct 18 14:21:45 2004 +0000
15177
15178    Made handling of DevelDrivers for x86-64 more conformant to other platforms.
15179    Compress all font encodings (Stefan Dirsch).
15180    Fixed warnings.
15181    Turn on forwarding XNSpotLocation event to XIM server in OffTheSpot and Root mode (bugzilla #1580, James Su).
15182    Added another compose key combination for the Euro symbol (Stefan Dirsch).
15183    Added support for UTF-8 in ja_JP, ko_KR and zh_TW locales (Mike Fabian).
15184    Changed default encoding for ru from KOI8-R to ISO8859-5 (Mike Fabian). This is the encoding that is also used by glibc. We may break other libcs - lets see who complains.
15185    Added explanation for DESTDIR to install to a different directory than /.
15186    Added some early bailouts to atiprobe if PCI structure pointer is NULL to prevent sig11.
15187    XV support doesn't depend on 2D acceleration any more. This patch removes this limitation from the NSC driver. This is a patch that I have committed to XFree86 a while ago but never ported over to X.Org. Matthieu Herrb contributed some build fixes.
15188    Fixing SetDPMSTimers() so that DPMS*Time == 0 disables the appropriate timer. This takes advantage of the fact that TimerSet() with a timeout argument 0 behaves like TimerCanel().
15189    Use /dev/xconsole (named pipe) or devpts for system logger (Werner Fink).
15190    Create missing links for backward compatibility to XFree86 (Stefan Dirsch).
15191    Changed comment to mention xorg.
15192    Changed cursor for the 'kill' action from XC_draped_box to XC_Pirate. If you don't like it we can change it back (original author unkown).
15193    Added 'pic' to the man page rendering command pipeline (Werner Fink).
15194    Added missing return value (Stefan Dirsch, Roland Mainz)
15195
15196commit 1ba103c3cad2329db3a31f88d7798b913affc570
15197Author: Eric Anholt <anholt@freebsd.org>
15198Date:   Wed Oct 13 07:38:00 2004 +0000
15199
15200    Use attributes instead of pragmas for weak symbols on gcc 2.95 as well. Using pragmas may result in the symbols being undefined with big -O. (FreeBSD ports/69708, Masakazu HIGAKI <higamasa@dream.com>)
15201
15202commit d80237db627bf71ad5615ff4ba05e6ab436aa740
15203Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
15204Date:   Fri Oct 8 22:57:56 2004 +0000
15205
15206    Fri Oct 8 18:53:11 2004 Soeren Sandmann <sandmann@redhat.com>
15207    Move iso10646 last so the "fallback" fonts will actually be used if they are better matches.
15208
15209commit d1f76d17ecf418396627b1a58319f2b9b255548a
15210Author: Markus Kuhn <Markus.Kuhn@cl.cam.ac.uk>
15211Date:   Sun Sep 26 22:54:57 2004 +0000
15212
15213    bug fix for previous patch
15214
15215commit 48932d9b71d10e15812f47d5b842ab6aa8dac625
15216Author: Markus Kuhn <Markus.Kuhn@cl.cam.ac.uk>
15217Date:   Sun Sep 26 20:46:17 2004 +0000
15218
15219    The big keysym cleanup, to bring implementation in line with the recent revision of Appendix A of the protocol spec. (Markus Kuhn)
15220
15221commit 2e02a95dcc43dd3ec7bbaf4675ffb94f5074f543
15222Author: Egbert Eich <eich@freedesktop.org>
15223Date:   Wed Sep 15 09:05:22 2004 +0000
15224
15225    Unregistering events in XSelectInput() when unregistering IM filter callbacks may be a bad idea as others may be interested in this event. Removed the call to XSelectInput() altogether as we are in root window anyway (Lubos Lunak).
15226    Fix size of a variable that gets assigned the value of SmartScheduleTime (long) to long. This should help to prevent smart scheduler lockup on 64 bit systems due to overruns (Andreas Schwab).
15227
15228commit 2d3afb68a104a80a21ee622b9abb9c95e83505d3
15229Author: Egbert Eich <eich@freedesktop.org>
15230Date:   Tue Aug 31 11:37:03 2004 +0000
15231
15232    Fixed some lockups in XIM code when the application is running with multi thread support. These lockups occur deep down in XFilterEvents() which itself locks when another Xlib function gets called that also locks. This fixes two instances by separating those Xlib functions into an internal (non-locking) call and a locking wrapper that is used as an external function. There may be several other such instances therefore another more general patch is eventually required (Bugzilla #1182).
15233
15234commit e689746c8d0e21e9011e8b91a3071d235d3a2a74
15235Author: Kevin E Martin <kem@kem.org>
15236Date:   Thu Aug 19 06:48:06 2004 +0000
15237
15238    Fix header file to #ifdef the XKB keysyms when they are used. This fixes the X test suite build failure.
15239
15240commit d558a53a6f57eecfcaadce5141fe3a08860defcb
15241Author: Keith Packard <keithp@keithp.com>
15242Date:   Sat Aug 14 07:12:36 2004 +0000
15243
15244    Use XLIB_SKIP_ARGB_VISUALS environment variable to disable all depth 32 visuals. Necessary to keep Flash from crashing.
15245    Must call ValidateGC/ValidatePicture on "real" GC/Picture to ensure pCompositeClip is set correctly.
15246    Need to take the composite clip from the "real" GC/Picture and turn it into the clientClip for the backing version.
15247    Adjust pixmap screen origin to account for drawable->x/y Change debugging output a bit (disabled by default)
15248
15249commit 85c2d81f299ed3444658011b7d6fb0a7ab8a6f55
15250Author: Alexander Gottwald <ago@freedesktop.org>
15251Date:   Fri Aug 13 16:28:19 2004 +0000
15252
15253    Set most significant bit to be a one. (Bug #1024, Kensuke Matsuzaki)
15254    Fix conversion from sjis and euc. (Bug #1024, Toshio Takabe)
15255
15256commit c4d56e4e288d4e48b84b021a61638f46e9a45e27
15257Author: Adam Jackson <ajax@nwnk.net>
15258Date:   Wed Aug 11 05:25:13 2004 +0000
15259
15260    Bug #372: Prevent a crash in XPolygonRegion when called with a bogus point count. Reported by Andreas Luik.
15261
15262commit 92487437173f600f208d825f65756d3ad14a4f7e
15263Author: Kevin E Martin <kem@kem.org>
15264Date:   Mon Aug 9 22:37:22 2004 +0000
15265
15266    Fix install problem on platforms not using xorg.cf/xfree86.cf (Bug #339, Harold L. Hunt II, Alexander Gottwald).
15267    Fix crash when using X core font in zh_CN.UTF-8 locale (Bug #368, Yu Shao, David Dawes).
15268    Fix glXMakeCurrent(Dpy, None, NULL) crash (Bug #719, Adam Jackson).
15269    HP-PA build fix (Bug #828, Guy Martin, Paul Anderson).
15270    Fix SDK build for GATOS and Wacom driver (Bug #829, Bryan Stine).
15271    Fix attempt to read video ROM before enabling it (Bug #843, Ivan Kokshaysky, Mike A. Harris).
15272    Fix detection of primary adapter (Bug #843, Ivan Kokshaysky, Mike A. Harris).
15273    Clarify xset man page description of how to use the keyboard repeat rate settings (Bug #846, Mike A. Harris).
15274    Fix problem where print-screen key would get remapped to sys-req in certain keymaps, which broke GNOME printscreen functionality (Bug #847, Owen Taylor).
15275    Fix several render problems:
15276    - MMIO mode support
15277    - Hang on IGP chips
15278    - VT switching hang
15279    - 3D render corruption (Bug #922, Hui Yu).
15280
15281commit 55c2ee568e7d3903258286a13bdf96ce5348ffda
15282Author: Matthieu Herrb <matthieu.herrb@laas.fr>
15283Date:   Tue Jul 27 06:06:05 2004 +0000
15284
15285    - remove remaining AMOEBA references.
15286    - remove unused file.
15287
15288commit 6e884b12911eedfb003e90a3829ce66f7fc9cf2d
15289Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
15290Date:   Tue Jul 20 17:48:09 2004 +0000
15291
15292    Tue Jul 20 19:38:06 2004 Soeren Sandmann <sandmann@daimi.au.dk>
15293    Set font_data->xlfd_data to NULL after XFree(). (#837, patch from Bastien Nocera).
15294    Tue Jul 20 18:23:32 2004 Soeren Sandmann <sandmann@daimi.au.dk>
15295    Use /dev/urandom on Linux.(#761).
15296
15297commit 6f0bc97aa4e6de5a4b001f40ac10795cfdf09fc1
15298Author: Eric Anholt <anholt@freebsd.org>
15299Date:   Fri May 28 23:26:44 2004 +0000
15300
15301    Forced commit to note repocopy from xc/lib/XThrStub, will be connected to the build after this.
15302
15303commit aa7010c43ae9f39fb84b5ff155f76117c9e527a0
15304Author: Egbert Eich <eich@pdx.freedesktop.org>
15305Date:   Mon May 24 19:02:11 2004 +0000
15306
15307    Improve 'uniqueness' of authorization cookie sent by client for XDM-AUTHORIZATION-1. Old 'uniquness' consisted of the PID of the client, a time stamp (in seconds) and a number obtained by starting to count down from 0xffff. When a client did an XOpenDisplay() then execv'ed a child and did XOpenDisplay() again within the same second, the cookie was identical to the previous one (as the PID did not change but the static 'count down' variable was reinitialized) and thus refused by the server.
15308
15309commit 720702da29769d80ad1254d92edbad5b30f8a8da
15310Author: Alan Coopersmith <alan.coopersmith@sun.com>
15311Date:   Sat May 22 03:47:42 2004 +0000
15312
15313    Bugzilla #658: XStringToKeysym fails for Greek_IOTAdiaeresis (Fixes VSW5 testcase XStringToKeysym-7 failure)
15314
15315commit 3aed873292424b497d9a7dcee2975b95bf5ac966
15316Author: Alan Coopersmith <alan.coopersmith@sun.com>
15317Date:   Sat Apr 24 23:39:25 2004 +0000
15318
15319    XOpenDisplay should try tcp connection if local connections fail (aka Sun bug id #4624183).
15320    Also includes fix from NetBSD Problem Report #25098 (Michael van Elst) (Xlib segfaults with IPv6 if compiled with HASXDMAUTH).
15321    xc/config/cf/sunLib.tmpl
15322    xc/lib/FS/Imakefile Add missing shared library dependencies for Solaris
15323
15324commit c6349f43193b74a3c09945f3093a871b0157ba47
15325Author: Egbert Eich <eich@freedesktop.org>
15326Date:   Fri Apr 23 18:42:09 2004 +0000
15327
15328    Merging XORG-CURRENT into trunk
15329
15330commit c3c4ddc682950a01b80825021f3e2503ab01ea7f
15331Author: Kaleb Keithley <kaleb@freedesktop.org>
15332Date:   Tue Nov 25 19:28:07 2003 +0000
15333
15334    Initial revision
15335
15336commit dc4268a7dadc8da0d561757a68461246728613d3
15337Author: Kaleb Keithley <kaleb@freedesktop.org>
15338Date:   Fri Nov 14 16:48:47 2003 +0000
15339
15340    Initial revision
15341
15342commit deae12c6b683898f5213992d561a59d4ea889cca
15343Author: Kaleb Keithley <kaleb@freedesktop.org>
15344Date:   Fri Nov 14 15:54:30 2003 +0000
15345
15346    R6.6 is the Xorg base-line
15347