ChangeLog revision 0efe039a
1commit 48487c4b9028e9eec5371742f51e1d64c2e17296
2Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3Date:   Thu Dec 15 14:52:20 2022 -0800
4
5    libX11 1.8.3
6    
7    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8
9commit d6d6cba90215d323567fef13d6565756c9956f60
10Author: Keith Packard <keithp@keithp.com>
11Date:   Sun Dec 11 10:32:26 2022 -0800
12
13    Update XPutBackEvent() to support clients that put back unpadded events
14    
15    It seems to be common practice of some X11 clients to pass specific event
16    types into APIs that take XEvent*.  For example, freeglut does:
17    
18       XConfigureEvent fakeEvent = {0};
19       ...
20       XPutBackEvent(fgDisplay.Display, (XEvent*)&fakeEvent);
21    
22    This can result in reads overflowing the input event when libX11 does:
23    
24       XEvent store = *event;
25    
26    =================================================================
27    ==75304==ERROR: AddressSanitizer: stack-buffer-overflow on address 0x00016ee4a8e8 at pc 0x000101c54d14 bp 0x00016ee4a0d0 sp 0x00016ee49888
28    READ of size 192 at 0x00016ee4a8e8 thread T0
29        #0 0x101c54d10 in __asan_memcpy+0x1a4 (libclang_rt.asan_osx_dynamic.dylib:arm64e+0x3cd10)
30        #1 0x102848a18 in _XPutBackEvent PutBEvent.c:41
31        #2 0x1028490a4 in XPutBackEvent PutBEvent.c:84
32        #3 0x1013295c8 in fgOpenWindow freeglut_window.c:1178
33        #4 0x101321984 in fgCreateWindow freeglut_structure.c:108
34        #5 0x10132b138 in glutCreateWindow freeglut_window.c:1551
35        #6 0x100fb7d94 in main+0x78 (checkeredTriangles:arm64+0x100003d94)
36        #7 0x197de3e4c  (<unknown module>)
37    
38    Address 0x00016ee4a8e8 is located in stack of thread T0 at offset 840 in frame
39        #0 0x1013282f8 in fgOpenWindow freeglut_window.c:1063
40    
41      This frame has 8 object(s):
42        [32, 40) 'title.addr'
43        [64, 176) 'winAttr' (line 1066)
44        [208, 240) 'textProperty' (line 1067)
45        [272, 352) 'sizeHints' (line 1068)
46        [384, 440) 'wmHints' (line 1069)
47        [480, 672) 'eventReturnBuffer' (line 1070)
48        [736, 740) 'num_FBConfigs' (line 1072)
49        [752, 840) 'fakeEvent' (line 1074) <== Memory access at offset 840 overflows this variable
50    
51    This change allows XPutBackEvent() to support such clients without
52    risk of memory read overflow.
53    
54    Reviewed-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
55    Tested-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
56
57commit 496d9bfeedda89a2211ec665f9214c2693c022f4
58Author: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
59Date:   Sat Dec 3 16:26:47 2022 -0800
60
61    ximcp: Address warning found by UBSan when growing an empty tree
62    
63    imLcPrs.c:681:52: runtime error: applying zero offset to null pointer
64    
65    Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
66
67commit 7f7bcd7b6f569e9f70e3ddd134924f178e2596b1
68Author: Takao Fujiwara <tfujiwar@redhat.com>
69Date:   Tue Dec 6 16:59:56 2022 +0000
70
71    nls: consecutive cs number in en_US.UTF-8/XLC_LOCALE
72
73commit ba095967349dff583bd0989d0ba78aa334e9bedf
74Author: Ulrich Sibiller <uli42@gmx.de>
75Date:   Wed Nov 30 23:47:29 2022 +0100
76
77    ChkIfEv.c: fix wrong handling of dpy->in_ifevent
78    
79    Is no longer a bool but a counter.
80    
81    Signed-off-by: Ulrich Sibiller <uli42@gmx.de>
82
83commit 70eaf1174e2809d1a6c43868d53f8cd844ef636a
84Author: Ulrich Sibiller <uli42@gmx.de>
85Date:   Wed Nov 30 23:42:02 2022 +0100
86
87    Indentation fixes around recent dpy->in_ifevent changes
88    
89    Use the same indentation as the surrounding code.
90    
91    Signed-off-by: Ulrich Sibiller <uli42@gmx.de>
92    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
93
94commit a9e845809bcaae22496bc8aa3ca252b410d5f39b
95Author: Matthieu Herrb <matthieu@herrb.eu>
96Date:   Fri Nov 11 18:55:23 2022 +0100
97
98    Fix 797755 Allow X*IfEvent() to reenter libX11
99    
100    - the activation logic is reversed
101    - there is also _XInternalLockDisplay() that needs protection
102    - I've found cases (in fvwm2) where the callback calls XCheckIfEvent()
103      recursively. So the flag needs to be a counter.
104    
105    Reviewed-by: Adam Jackson <ajax@redhat.com>
106
107commit bccd787a565d3a88673bfc06574c1939f98d8d72
108Author: Nia Alarie <nia@NetBSD.org>
109Date:   Thu Nov 10 22:31:47 2022 +0100
110
111    Don't use pragma inside a function, it breaks compiling with older GCCs.
112    
113    XKBBind.c:230: error: #pragma GCC diagnostic not allowed inside functions
114    
115    Signed-off-by: Thomas Klausner <wiz@gatalith.at>
116
117commit 696d19d5db7bcb1c1f582c2b1846520e7e0870cb
118Author: Oliver <halting@riseup.net>
119Date:   Fri Nov 11 17:04:00 2022 +0000
120
121    Add XFreeThreads function.
122
123commit b4f24b272c6ef888b6fcfcf80670c196b2e8f755
124Author: Alan Coopersmith <alan.coopersmith@oracle.com>
125Date:   Thu Nov 10 12:18:17 2022 -0800
126
127    libX11 1.8.2
128    
129    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
130
131commit 77629ea5e79fa9b1596438bc36cfc7e0c631af43
132Author: Alan Coopersmith <alan.coopersmith@oracle.com>
133Date:   Thu Nov 3 13:00:50 2022 -0700
134
135    README.md: Add 1.8.2 changes
136    
137    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
138
139commit d1baf2ec4869dea3732d6fe13ba4935cb6caad01
140Author: Alan Coopersmith <alan.coopersmith@oracle.com>
141Date:   Thu Nov 3 11:22:37 2022 -0700
142
143    Remove NEWS file which only covered 2006 & 2007 releases
144    
145    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
146
147commit 1294bfa487bdecfd32621822922fec03203ee188
148Author: Po Lu <luangruo@yahoo.com>
149Date:   Mon Oct 3 08:44:59 2022 +0800
150
151    specs: document change in XIMPreeditCallbacks
152    
153    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
154
155commit 1a7e54609ce4dc0f2d3b933502437a413cf3dea8
156Author: Alan Coopersmith <alan.coopersmith@oracle.com>
157Date:   Thu Nov 3 14:44:22 2022 -0700
158
159    man pages: document XCloseIM frees its argument
160    
161    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
162
163commit a04b84f0f7bb3a78088756759f4b9b8bb363251e
164Author: Alan Coopersmith <alan.coopersmith@oracle.com>
165Date:   Thu Nov 3 20:31:31 2022 +0000
166
167    Copyright & license cleanup
168
169commit 5e41119d9611504ff7e61c6aa4da1df708096801
170Author: Benno Schulenberg <bensberg@telfort.nl>
171Date:   Mon Oct 31 12:42:51 2022 +0100
172
173    nls: reshuffle a few compose sequences, to have similar ones together
174    
175    It makes more sense to have similar sequences grouped together
176    than to rigidly follow the order of ascending Unicode codes.
177
178commit 65d89342f59cfc2eac9bf8010076b937f22554e8
179Author: Benno Schulenberg <bensberg@telfort.nl>
180Date:   Mon Oct 31 12:50:11 2022 +0100
181
182    nls: remove two compose sequences that use deprecated symbols
183    
184    The last few occurrences of `leftcaret` and `rightcaret` were replaced
185    with `less` and `greater` in xkeyboard-config half a year ago.
186
187commit 6baccbae5324e7342cb5176cae82f463a6b34eae
188Author: Benno Schulenberg <bensberg@telfort.nl>
189Date:   Mon Oct 31 12:40:12 2022 +0100
190
191    nls: let `<Multi_key> <minus> <underscore>` compose U+2212 (MINUS SIGN)
192    
193    There was not yet any way to compose the Unicode minus sign, U+2212.
194
195commit 79775575418fd6f8ee1c5e5bbe403df4606fb5b6
196Author: Adam Jackson <ajax@redhat.com>
197Date:   Fri Aug 5 15:19:08 2022 -0400
198
199    Allow X*IfEvent() to reenter libX11
200    
201    The documentation for this family of functions very clearly says not to
202    call into xlib in your predicate function, but historically single
203    threaded apps could get away with it just fine, and now that we've
204    forced thread-safety on the world such apps will now deadlock instead.
205    That's not an acceptable regression even if the app is technically
206    broken. This has been reported with XFCE and FVWM, and Motif's
207    cut-and-paste code has the same bug by inspection, so this does need to
208    be addressed.
209    
210    This change nerfs LockDisplay/UnlockDisplay while inside the critical
211    bit of an IfEvent function. This is still safe in the sense that the
212    display remains locked and no other thread should be able to change it
213    from under us, but the loop that scans the event queue might not be
214    robust against it being modified as a side effect of protocol emitted by
215    the predicate callback. But that's not new, non-XInitThreads'd xlib
216    would have the same caveat.
217    
218    Closes: xorg/lib/libx11#157
219
220commit 0d1d65bdd98966f52bcac4077f94827b20b229dd
221Author: Benno Schulenberg <bensberg@telfort.nl>
222Date:   Fri Oct 21 12:18:25 2022 +0200
223
224    nls: change <Compose> <^> <-> to mean superscript minus instead of macron
225    
226    Several other `<Multi_key> <asciicircum> <symbol>` sequences
227    produce the superscript equivalent of the given symbol.  So,
228    let `<Multi_key> <asciicircum> <minus>` do the same.
229    
230    Also, add two other sequences for producing a plain macron,
231    to compensate a bit the loss of the above sequence.
232    
233    Additionally, make `<Multi_key> <underscore> <minus>` produce
234    a subscript minus, for consistency.
235    
236    This fixes issue #165.
237    
238    Requested-by: J. McWilliams
239    
240    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
241
242commit 310898270787c1a3a6ab50221324f8654dddce8e
243Author: Jan Tojnar <jtojnar@gmail.com>
244Date:   Thu Oct 20 07:10:58 2022 +0000
245
246    nls: Map sr locales to sr_RS compose files
247    
248    Serbian used sr_YU (Yugoslavia) code in the past.
249    Then it was succeeded by sr_CS (Serbia and Montenegro).
250    Finally, it was split into sr_RS (Serbia) and sr_ME (Montenegro).
251    
252    https://gitlab.freedesktop.org/xorg/lib/libx11/-/commit/da95ecbbdcacc483cd0b5fd7db1fb2e2543341bd
253    introduced the modern sr_RS and sr_ME codes.
254    
255    Next, https://gitlab.freedesktop.org/xorg/lib/libx11/-/commit/40761898692e5063957bfa2518cca3d35b2e354a
256    added the Serbian compose table but only for the legacy sr_CS entry.
257    
258    https://gitlab.freedesktop.org/xorg/lib/libx11/-/commit/5cd60398b7787297008b13a848ed3cfbd7ef178d
259    removed the legacy sr_CS entry, the only one pointing to the correct compose file.
260    It also renamed the file to sr_RS, but did not update the compose mapping.
261    
262    Let’s point all Serbian locales to the Compose file again.
263
264commit a35d706cd8dc7b498bca2a3fc4a3732047439ed7
265Author: Alan Coopersmith <alan.coopersmith@oracle.com>
266Date:   Fri Oct 14 13:40:37 2022 -0700
267
268    COPYING: remove notice for the removed UIThrStubs.c
269    
270    Fixes: 701e9e9a ("Use same pthread-stubs as libxcb")
271    
272    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
273
274commit 3b1750e982fedce0d61bface68aadcd5b1ea1fae
275Author: Benno Schulenberg <bensberg@telfort.nl>
276Date:   Fri Oct 14 09:28:42 2022 +0200
277
278    nls: delete two compose sequences with an anomalous post-fixed breve
279    
280    Two years ago, commit b126bfd7fe allowed using also a lowercase `u`
281    wherever an uppercase `U` was used to represent a breve.  But the
282    commit should have limited itself to only the prefixed uses of `U`,
283    as that is how most letters with a breve are composed.
284    
285    Also, group the two compose sequences with an uppercase post-fixed `U`
286    together with the corresponding other post-fixed sequences.
287    
288    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
289
290commit 701e9e9afb88bdc68c84a4611adc533400a3df36
291Author: Alan Coopersmith <alan.coopersmith@oracle.com>
292Date:   Tue Oct 4 11:24:57 2022 -0700
293
294    Use same pthread-stubs as libxcb
295    
296    Avoid conflicts when libX11 calls libxcb and gets its pthread functions
297    overriding our ancient stubs.
298    
299    v2: Keep linking with real threads libraries when thread safety
300        constructor is enabled.
301    
302    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
303
304commit 1d11822601fd24a396b354fa616b04ed3df8b4ef
305Author: Thomas E. Dickey <dickey@invisible-island.net>
306Date:   Tue Oct 4 18:26:17 2022 -0400
307
308    fix a memory leak in XRegisterIMInstantiateCallback
309    
310    Analysis:
311    
312        _XimRegisterIMInstantiateCallback() opens an XIM and closes it using
313        the internal function pointers, but the internal close function does
314        not free the pointer to the XIM (this would be done in XCloseIM()).
315    
316    Report/patch:
317    
318        Date: Mon, 03 Oct 2022 18:47:32 +0800
319        From: Po Lu <luangruo@yahoo.com>
320        To: xorg-devel@lists.x.org
321        Subject: Re: Yet another leak in Xlib
322    
323        For reference, here's how I'm calling XRegisterIMInstantiateCallback:
324    
325        XSetLocaleModifiers ("");
326        XRegisterIMInstantiateCallback (compositor.display,
327                                        XrmGetDatabase (compositor.display),
328                                        (char *) compositor.resource_name,
329                                        (char *) compositor.app_name,
330                                        IMInstantiateCallback, NULL);
331    
332        and XMODIFIERS is:
333    
334            @im=ibus
335    
336    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
337
338commit 1f8fd7ff1cf688ec1d3b34397c6d58110bb0cae5
339Author: Alan Coopersmith <alan.coopersmith@oracle.com>
340Date:   Mon Sep 26 16:01:40 2022 -0700
341
342    If thread-safety-constructor is enabled, link against pthreads not stubs
343    
344    Only really makes a difference if pthreads is not in libc.
345    
346    Fixes: #162
347    
348    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
349    Reviewed-by: Adam Jackson <ajax@redhat.com>
350
351commit bfe5d2dd98f705438b0cdddbbf9c12882da89bae
352Author: Thomas E. Dickey <dickey@invisible-island.net>
353Date:   Sun Sep 11 11:44:41 2022 -0400
354
355    reduce compiler warnings with casts (no object change)
356    
357    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
358
359commit 926f2454bca9a7a7d1f4cf0648b0c193f5cef644
360Author: Thomas E. Dickey <dickey@invisible-island.net>
361Date:   Sun Sep 11 10:35:31 2022 -0400
362
363    use casts to reduce compiler warnings (no object change)
364    
365    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
366
367commit dc553ff908f10832c71dc2b5ba5af7e68589218e
368Author: Mike FABIAN <mfabian@redhat.com>
369Date:   Fri Jul 22 11:39:01 2022 +0200
370
371    Remove KOI8-R character set from en_US.UTF-8/XLC_LOCALE
372    
373    https://gitlab.freedesktop.org/xorg/lib/libx11/-/blob/master/src/xlibi18n/lcCT.c#L58
374    has no escape sequence for KOI8-R.
375    That makes Xutf8TextListToTextProperty() sometimes fail when trying to
376    convert to COMPOUND_TEXT and when the KOI8-R charset is tried.
377    
378    This is the cause for this bug:
379    
380    https://github.com/ibus/ibus/issues/2422
381    
382    Removing the KOI8-R charset entry fixes the problem.
383    
384    This commit also fixes a few wrong texts in comments.
385    
386    Signed-off-by: Mike FABIAN <mfabian@redhat.com>
387
388commit 1c04ac514196db5e2255d99635fb6e3c36be330d
389Author: Adam Sampson <ats@offog.org>
390Date:   Sun Jul 4 23:02:04 2021 +0100
391
392    xkb: Fix off-by-one error in XKeycodeToKeysym
393    
394    The code here that made indexes greater than 3 refer to XKB symbol
395    groups had an off-by-one error, so it would always leave out the symbol
396    that should have been at index 4. Rewrite the code to fix this and
397    simplify the logic a bit.
398    
399    Signed-off-by: Adam Sampson <ats@offog.org>
400
401commit ddaacd219609104f138006db6a8f708226db3874
402Author: Thomas E. Dickey <dickey@invisible-island.net>
403Date:   Fri Sep 9 20:17:35 2022 -0400
404
405    reduce compiler warnings for macros BufAlloc, Data and Data32 using casts
406    
407    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
408
409commit 62c3337d89d31e0d3ed807004e73ad711fad3342
410Author: Kirill Chibisov <contact@kchibisov.com>
411Date:   Thu Sep 8 22:50:30 2022 +0000
412
413    ximcp/imRm.c: allow XNSpotLocation with OnTheSpot
414
415commit 1272879074ad9612314858a75cf844783c1963b2
416Author: Alan Coopersmith <alan.coopersmith@oracle.com>
417Date:   Thu Jul 28 17:30:21 2022 -0700
418
419    gitlab CI: stop requiring Signed-off-by in commits
420    
421    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
422
423commit 38033b073f393564acf6a04501927002b2b4aa86
424Author: David H. Gutteridge <david@gutteridge.ca>
425Date:   Mon Jul 25 19:30:19 2022 -0400
426
427    configure.ac: report thread safety constructor build status
428    
429    Signed-off-by: David H. Gutteridge <david@gutteridge.ca>
430
431commit 9a90b3a63d02da92dc8692ed3f6269d3e0c7c8cc
432Author: Alan Coopersmith <alan.coopersmith@oracle.com>
433Date:   Sun Jul 10 11:55:11 2022 -0700
434
435    doc: Document possible return values for XkbGetKeyboard()
436    
437    Fixes: #160
438    
439    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
440
441commit 0beb0cf46ae48b0d4322ff8a0221f47bdb7d2296
442Author: Alan Coopersmith <alan.coopersmith@oracle.com>
443Date:   Sun Jul 10 11:42:19 2022 -0700
444
445    xkb: set num_keys when filling in keys in _XkbReadGetNamesReply()
446    
447    Fixes: #160
448    
449    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
450
451commit 487e9489d1e086cc62c53045206ab6d6d9d02031
452Author: Jon Turney <jon.turney@dronecode.org.uk>
453Date:   Wed Jun 22 16:15:37 2022 +0100
454
455    Fix Win32 build with -fno-common
456    
457    /work/xorg/lib/libX11/src/XlibInt.c:1968: multiple definition of `_Xdebug_p'; .libs/globals.o:globals.c:(.bss+0xc): first defined here
458    
459    Avoid redundant definition of _Xdebug_p in globals.c (which is under the
460    influence of _Xdebug being #defined to _Xdebug_p.
461    
462    This appears to be an ancient hack to work around data exports resolving
463    to the address of the import stub, not the import. (See [1]).
464    
465    (This is probably no longer needed or can be done in a better way, as
466    per the discussion under --enable-auto-import in the ld manpage.)
467    
468    [1] https://cygwin.com/pipermail/cygwin-xfree/2001-May/004606.html
469    
470    Signed-off-by: Jon Turney <jon.turney@dronecode.org.uk>
471
472commit 35ad99fad2f65ec2c69bd84bdeb8138329092b57
473Author: Benno Schulenberg <bensberg@telfort.nl>
474Date:   Fri Jul 15 11:29:46 2022 +0200
475
476    nls: add four sequences for the Samogitian E with dot above and macron
477    
478    These sequences each produce two code points: the E-with-dot-above and
479    a combining macron.  The XIM input method is required for this to work.
480    
481    (Also add a missing comment for a Unicode block.)
482    
483    This fixes issue #54.
484    
485    Requested-by: Arns Udovīčė
486    
487    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
488
489commit 2732dd20cc2694dd5c32fef292e1f48626011032
490Author: Benno Schulenberg <bensberg@telfort.nl>
491Date:   Wed Jul 6 16:44:50 2022 +0200
492
493    nls: delete eight sequences that pointlessly mix upper and lower case
494    
495    Typing a compose sequence requires some care -- surely the user is able
496    to either keep holding the Shift key or not touch it at all while typing
497    the sequence.  Also, compose sequences are not an infinite resource AND
498    take up space and time -- defining redundant ones is a waste.
499    
500    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
501
502commit ea3cc474e1acfed47b9fb856ea151008fa6cfd30
503Author: Benno Schulenberg <bensberg@telfort.nl>
504Date:   Wed Jul 6 16:36:48 2022 +0200
505
506    nls: add compose sequences for the double-struck capitals ℕ ℤ ℚ ℝ ℂ
507    
508    This allows the user to type the symbols for the five number systems.
509    
510    This fixes the reasonable part of issue #159.
511    
512    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
513
514commit 95a03cde434c447fdb41d8cccbbdd41f20750f32
515Author: Benno Schulenberg <bensberg@telfort.nl>
516Date:   Thu Jul 14 12:00:45 2022 +0200
517
518    nls: delete some pointless and wrong compose sequences meant for Bépo
519    
520    Fourteen years ago, commit 7302984642 added some four hundred compose
521    sequences for the benefit of the French Bépo layout.  But among these
522    four hundred there are several that use symbols that are not available
523    in the Bépo layout and are thus impossible to type.  Some of the used
524    symbols, like Ahook, Ehook and Ohook, are not even present in *any*
525    layout, making these sequences a dead weight in the Compose file.
526    
527    The Amacron and Omacron are available only in the Latvian, Hawaiian,
528    and Maori layouts, and the Omacron also in the Silesian layout.  But
529    the Latvian layouts and the Hawaiian do not contain any dead keys.
530    Only in the Maori and Silesian layouts these sequences with Amacron
531    and Omacron could be typed, but that was not why they were added.
532    
533    More importantly, as James Cloos noted in issue #54, sequences like
534    `<dead_abovedot> <amacron>` for generating `ǡ` (that is: the macron
535    above the dot) are questionable, as in compose sequences generally
536    the first accent typed is the uppermost in the composed character.
537    
538    Reference:
539      https://gitlab.freedesktop.org/xorg/lib/libx11/-/issues/54#note_17321
540    
541    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
542
543commit 9702b836862da6838d725f555e7a1d83faf51740
544Author: Matthieu Herrb <matthieu@herrb.eu>
545Date:   Fri Jul 1 11:13:13 2022 +0200
546
547    Mention that the predicate function is called with the display lock
548    
549    Signed-off-by: Matthieu Herrb <matthieu@herrb.eu>
550
551commit a5d00f889fadad3f5b11e53fd5c04cf5343fa8a2
552Author: Benno Schulenberg <bensberg@telfort.nl>
553Date:   Fri Jun 24 16:20:52 2022 +0200
554
555    docs: replace three placeholders with something that makes sense
556    
557    Also, uncapitalize two arguments, to match the style of all others.
558    
559    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
560
561commit 9ff8502040e94cb172426d59df722cefa752a401
562Author: Benno Schulenberg <bensberg@telfort.nl>
563Date:   Fri Jun 24 16:07:22 2022 +0200
564
565    docs: remove the unsightly dashes from the overviews of arguments
566    
567    Seventeen months ago, commits 78027fdb7a and 4f15cfc645 removed
568    these dashes from two of the man pages.  Now, remove them all.
569    They are unhelpful and just make one wonder why they are there
570    (probably to function as improvised bullet points).
571    
572    Also remove four leading spaces and a trailing comma.
573    
574    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
575
576commit a7968c47e35703446d67d070234fd9adf07f34b0
577Author: Benno Schulenberg <bensberg@telfort.nl>
578Date:   Thu Jun 23 15:48:05 2022 +0200
579
580    docs: hard-wrap some items so that Table 2 fits within 80 characters
581    
582    (Table 1 hard-wraps the first-column items in the same way.)
583    
584    Also, correct the formatting of the subsequent paragraph.
585    
586    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
587
588commit c601c779ca8f46dc4335180ec2829851fb8bbc13
589Author: Benno Schulenberg <bensberg@telfort.nl>
590Date:   Wed Jun 15 10:55:38 2022 +0200
591
592    nls: delete compose sequences that mix top-row digits with numpad digits
593    
594    Compose sequences for circled numbers, like ⑫  or ㉑, are nice to have,
595    but allowing them to be composed by typing one digit on the top row and
596    the other on the numerical keypad (or the other way around) is over the
597    top.  Remove these absurd sequences.  Keep only the sequences where both
598    digits are either on the top row or on the numerical keypad.
599    
600    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
601
602commit 3a30ada60c5217ada37b143b541c8e6f6284c7fa
603Author: Alan Coopersmith <alan.coopersmith@oracle.com>
604Date:   Wed Jun 8 17:30:14 2022 -0700
605
606    libX11 1.8.1
607    
608    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
609
610commit 70f7403fd3bf362fc50b8de4a2e26300f757c68e
611Author: Alan Coopersmith <alan.coopersmith@oracle.com>
612Date:   Tue May 3 14:45:05 2022 -0700
613
614    configure.ac: Fix --enable-thread-safety-constructor
615    
616    Prior to this, --enable-thread-safety-constructor would disable it,
617    while --disable worked as expected, and no option left it enabled as
618    expected by default.  This also fixes the --help text to be displayed.
619    
620    Fixes: afcdb6fb0045c6186aa83d9298f327a7ec1b2cb9
621    Reported-by: @igor.v.kovalenko
622    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
623    Reviewed-by: Adam Jackson <ajax@redhat.com>
624
625commit d0da5a1e0fb214ff911ecff86d35f6673ff70023
626Author: Adam Jackson <ajax@redhat.com>
627Date:   Fri Apr 29 11:27:44 2022 -0400
628
629    libX11 1.8
630    
631    Minor number bump to reflect the thread safety default change.
632    
633    Signed-off-by: Adam Jackson <ajax@redhat.com>
634
635commit afcdb6fb0045c6186aa83d9298f327a7ec1b2cb9
636Author: Adam Jackson <ajax@redhat.com>
637Date:   Tue Mar 22 18:24:29 2022 -0400
638
639    global: call XInitThreads() from the library's constructor
640    
641    There is really no point in not being thread safe, I measured, all you
642    can see happen is noop performance gets like twice as slow and you have
643    thread safety bugs. And we're using xcb as the transport which means we
644    should expect threads in our clients anyway. Just do it.
645    
646    This assumes your compiler understands __attribute__((constructor)). If
647    this is not your compiler, you can disable this with the appropriate
648    configure flag, but be aware you're asking for bugs.
649    
650    Signed-off-by: Adam Jackson <ajax@redhat.com>
651
652commit 1ab48f3cc966751d86e434808180beb2dc76c4fa
653Author: Benno Schulenberg <bensberg@telfort.nl>
654Date:   Sun Apr 24 15:06:45 2022 +0200
655
656    docs: add release notes for versions 1.7.3, 1.7.4, and 1.7.5
657    
658    They were forgotten when those releases were made.
659    
660    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
661
662commit 35d1513bc7fdd3ac6f5807feb601efc34ac19163
663Author: Alan Coopersmith <alan.coopersmith@oracle.com>
664Date:   Sat Apr 16 13:04:23 2022 -0700
665
666    XkbOpenDisplay: Add _Xconst qualifier to display name argument
667    
668    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
669
670commit c88ceaad4aaa0439e5cba13c1f5737ad54566e0b
671Author: Alan Coopersmith <alan.coopersmith@oracle.com>
672Date:   Sat Apr 16 12:59:39 2022 -0700
673
674    XKBgeom.h: Add _Xconst qualifier to char * arguments in functions
675    
676    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
677
678commit 0ce4425826074b12a58ced432f9d6fb346474737
679Author: Alan Coopersmith <alan.coopersmith@oracle.com>
680Date:   Sat Apr 16 12:20:51 2022 -0700
681
682    XKBgeom.h: Remove XKB_IN_SERVER section
683    
684    The Xserver made its own copy of this file in 2008, and the API's are
685    no longer the same between the server and client forks.
686    
687    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
688
689commit be8c01946ab1a1d4b79fdc5358541d630f14dc0a
690Author: Benno Schulenberg <bensberg@telfort.nl>
691Date:   Wed Apr 20 09:29:09 2022 +0200
692
693    lcCT: use the correct index for checking the second byte
694    
695    (Not that it will make any difference, as the checking of these
696    high bits looks like an excess of precaution.)
697    
698    This fixes issue #134.
699    
700    Reported-by: Rafał Mikrut
701    
702    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
703
704commit 488b156fe2cc8aca6946a49236ec7b7698fceda4
705Author: Benno Schulenberg <bensberg@telfort.nl>
706Date:   Fri Feb 25 16:35:46 2022 +0100
707
708    nls: make the Ethiopian compose sequences actually work
709    
710    In the Ethiopian keyboard layout, the dead vowel keys do not produce <e>
711    and <u> and so on, but instead produce <U+FE69> and <U+FE75> and so on,
712    so the compose sequences should use those latter code points.
713    
714    Also, include the basic compose sequences from en_US.UTF-8/Compose,
715    so that, when switching to a different layout in the Ethiopian locale,
716    all the usual compose sequences work too.
717    
718    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
719
720commit e6f98a3dbd82928e10adaf9d034dc574af1de6e5
721Author: Benno Schulenberg <bensberg@telfort.nl>
722Date:   Mon Apr 18 17:24:55 2022 +0200
723
724    nls: add Multi-key sequences for abovedot, diaeresis, and ogonek
725    
726    These accents by themselves could only be produced when one had a
727    dead key for them, not with the help of the Multi key.
728    
729    [Note that the sequences <dead_acute> <space> for apostrophe (')
730    and <dead_diaeresis> <space> for double quote (") are anomalies,
731    as normally <dead_accent> <space> produces the accent itself.]
732    
733    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
734
735commit d323704e7c57f9ac7fdfea3dc9fa73bf943e72d3
736Author: Benno Schulenberg <bensberg@telfort.nl>
737Date:   Mon Apr 18 16:57:35 2022 +0200
738
739    nls: remove eight pointless self-producing compose sequences
740    
741    Compose sequences are meant to produce certain symbols by combining
742    certain different symbols, not to produce a symbol with the help of
743    the symbol itself.
744    
745    This fixes issue #59.
746    
747    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
748
749commit 3b62c0322c112c03597d850197dbce22d1830bb7
750Author: Benno Schulenberg <bensberg@telfort.nl>
751Date:   Fri Feb 25 14:12:02 2022 +0100
752
753    nls: remove misplaced sequences from Ethiopian and Greek compose files
754    
755    The Khmer digraphs and Arabic ligatures have nothing to do with
756    Amharic or Greek.
757    
758    (Also rewrap a comment and correct two others.)
759    
760    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
761
762commit 479af78f2e5caaf9b98a35ae5ff4ccdd2f040289
763Author: Benno Schulenberg <bensberg@telfort.nl>
764Date:   Fri Feb 25 14:05:35 2022 +0100
765
766    nls: remove redundant Khmer digraphs, already defined in included file
767    
768    This fixes issue #160.
769    
770    Reported-by: Mike Fabian
771    
772    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
773
774commit 6d7d08726f4b0c517041842b27cd7e66e8f371eb
775Author: Alan Coopersmith <alan.coopersmith@oracle.com>
776Date:   Sun Apr 10 14:51:55 2022 -0700
777
778    XkbUpdateKeyTypeVirtualMods: always initialize mask
779    
780    XkbVirtualModsToReal should only fail to set mask if the server does
781    not support XKB, but it still made Oracle Parfait complain:
782    
783    Error: Uninitialised memory
784       Uninitialised memory variable [uninitialised-mem-var] (CWE 457):
785          Possible access to uninitialised memory referenced by variable 'mask'
786            at line 863 of lib/libX11/src/xkb/XKBMisc.c in function 'XkbUpdateKeyTypeVirtualMods'.
787            Path in callee avoiding write at line 862
788              mask allocated at line 860
789    
790    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
791
792commit 9ac6859c20be2fc5e70c2908de60c6e466ec04e1
793Author: Matt Turner <mattst88@gmail.com>
794Date:   Sun Apr 3 10:15:30 2022 -0700
795
796    libX11 1.7.5
797    
798    Signed-off-by: Matt Turner <mattst88@gmail.com>
799
800commit 76d1cc3c1ce943c6ff81dc8c62a1d1b30fabf02e
801Author: Simon McVittie <smcv@debian.org>
802Date:   Sun Apr 3 14:23:36 2022 +0100
803
804    Don't try to destroy NULL condition variables
805    
806    This avoids a segfault during error-unwinding if an invalid display name
807    is passed to XOpenDisplay().
808    
809    Fixes: 8a368d80 "Fix two memory leaks in _XFreeX11XCBStructure()"
810    Resolves: #155
811    Signed-off-by: Simon McVittie <smcv@debian.org>
812
813commit 80b30d12519ac54fc5b2b05500521d9c8269be9c
814Author: Matt Turner <mattst88@gmail.com>
815Date:   Wed Mar 30 13:54:13 2022 -0700
816
817    libX11 1.7.4
818    
819    Signed-off-by: Matt Turner <mattst88@gmail.com>
820
821commit 8a368d808fec166b5fb3dfe6312aab22c7ee20af
822Author: Hodong <hodong@yozmos.com>
823Date:   Thu Jan 20 00:57:41 2022 +0900
824
825    Fix two memory leaks in _XFreeX11XCBStructure()
826    
827    Even when XCloseDisplay() was called, some memory was leaked.
828    
829    XCloseDisplay() calls _XFreeDisplayStructure(), which calls
830    _XFreeX11XCBStructure().
831    
832    However, _XFreeX11XCBStructure() did not destroy the condition variables,
833    resulting in the leaking of some 40 bytes.
834    
835    Signed-off-by: Hodong <hodong@yozmos.com>
836
837commit da97120f2322882a17f14e5d7da00c1e772679e8
838Author: Adam Jackson <ajax@redhat.com>
839Date:   Tue Mar 22 14:32:49 2022 -0400
840
841    xcb: Clarify the XInitThreads error message
842    
843    XInitThreads has been called if _Xglobal_lock != NULL, we may as well
844    check that before printing a misleading error message.
845    
846    Signed-off-by: Adam Jackson <ajax@redhat.com>
847
848commit 257927c51b08242aa5bf239346717fc817b2b286
849Author: Giovanni Mascellani <gmascellani@codeweavers.com>
850Date:   Fri Feb 4 10:49:25 2022 +0100
851
852    xcb_io: Allow jumps backwards when widening the request number.
853    
854    Request numbers are not always seen in the numeric order by widen(),
855    for example due to Mesa directly calling _XError(). When this happens,
856    widen() adds 2^32 to the reported widened number, triggering failed
857    assertions and bad behavior.
858    
859    With this commit, wrapping of the lower dword is detected in a more
860    robust way, by requiring that a skip of at least 2^31 is seen.
861    
862    This fixes issue #152.
863    
864    Signed-off-by: Giovanni Mascellani <gmascellani@codeweavers.com>
865
866commit 918063298cb893bee98040c9dca45ccdb2864773
867Author: Benno Schulenberg <bensberg@telfort.nl>
868Date:   Thu Mar 3 12:00:45 2022 +0100
869
870    nls: add a compose sequence for the peace symbol
871    
872    As the thing in the circle looks a bit like an upside-down Y,
873    use <O> <Y> as the sequence, similar to <O> <A> for anarchism.
874    
875    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
876
877commit 4f9eb32709dca705f02ca771bbd47d6c08aba5e0
878Author: Benno Schulenberg <bensberg@telfort.nl>
879Date:   Fri Feb 25 12:45:06 2022 +0100
880
881    nls: remove obsolete locale aliases with uppercase in the language code
882    
883    (These aliases may have been useful on some systems twenty years ago,
884    but nowadays all should have settled on lowercase language code plus
885    uppercase country code.)
886    
887    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
888
889commit ba0d3b437deb2212bc7fc7c6f1c603fa6ced443c
890Author: Benno Schulenberg <bensberg@telfort.nl>
891Date:   Fri Feb 25 12:35:28 2022 +0100
892
893    nls: map eo.UTF-8 directly to en_US.UTF-8 instead of using a relay alias
894    
895    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
896
897commit cfddb79981f23650feb0f9a0f4442c9cad584b33
898Author: Benno Schulenberg <bensberg@telfort.nl>
899Date:   Fri Feb 25 12:12:05 2022 +0100
900
901    nls: remove the mistaken eo_EO names -- EO is not a valid country code
902    
903    (Debian has had several of these lines commented out for years.)
904    
905    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
906
907commit eb5885245a1ba6955d058a03e31894c23b9f5490
908Author: iyzana <iyzana@protonmail.com>
909Date:   Mon Feb 21 13:20:23 2022 +0100
910
911    nls: add locale alias from eo.UTF-8 to eo_XX.UTF-8
912    
913    There is no matching locale in the locale.dir and compose.dir files for
914    the locale eo.UTF-8. Setting it as the locale resulted in compose files
915    not being loaded.
916    
917    Signed-off-by: iyzana <iyzana@protonmail.com>
918
919commit 24df23dff9d8c1cf5e918a5f040b852bdf2cfb84
920Author: Benno Schulenberg <bensberg@telfort.nl>
921Date:   Thu Feb 3 17:19:05 2022 +0100
922
923    nls: group the compose sequences for tilde, degree, and cedilla together
924    
925    Also, correct the comment for the double quote character ("), and move
926    the soft hyphen and the interrobangs to a special punctuation group.
927    
928    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
929
930commit c0191f020f94907770937bc8ae67ea8acd7d63be
931Author: Benno Schulenberg <bensberg@telfort.nl>
932Date:   Thu Feb 3 16:33:05 2022 +0100
933
934    nls: use shape-based compose sequences for hammer-and-sickle instead
935    
936    Using a misspelled abbreviation (CCCP) of an obsolete country's name
937    to compose a fairly general communist symbol does not seem right.
938    
939        https://en.wikipedia.org/wiki/Hammer_and_sickle
940    
941    Many compose sequences instead combine characters that together look
942    similar to the target character.  Do the same here: question mark (?)
943    plus backslash (\) look a bit like ☭ .
944    
945    In the bargain, this fixes issue #63.
946    
947    Reported-by: Marc Mezzarobba
948    
949    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
950
951commit 582dc6f89e1f9288710a55cb2b8fbf2af99d7616
952Author: Alan Coopersmith <alan.coopersmith@oracle.com>
953Date:   Sun Feb 20 11:49:42 2022 -0800
954
955    gitlab CI: enable Static Application Security Testing (SAST)
956    
957    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
958
959commit 336e8f72559b489396c5cd503c4586ef800c2a8f
960Author: Benno Schulenberg <bensberg@telfort.nl>
961Date:   Sun Feb 20 15:06:02 2022 +0100
962
963    nls: add compose sequences for leftward, upward and downward double arrow
964    
965    These sequences follow the logic of: the arrow shaft (=) first, the
966    arrow head (< or > or ^ or v) second.  This is so because the sequence
967    <= is already taken for ≤, and there is no obvious ASCII character for
968    a double vertical line, so we have to make do with a horizontal one.
969    
970    Since commit 6101b967b6 from eight years ago, there is a compose sequence
971    for the rightward double arrow, but not for the other three directions.
972    
973    This fixes issue #138.
974    
975    Requested-by: Mélanie Chauvel
976    
977    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
978
979commit 623b77d4f30b47258a40f89262e5aa5d25e95fa7
980Author: Benno Schulenberg <bensberg@telfort.nl>
981Date:   Mon Feb 14 11:33:25 2022 +0100
982
983    imDefLkup: verify that a pointer isn't NULL before using it
984    
985    It is possible for _XimICOfXICID() to return NULL, so it is necessary
986    to check this isn't actually the case before dereferencing the pointer.
987    All other callers of _XimICOfXICID() do this check too.
988    
989    (The check itself is ugly, but it follows the style of the code in the
990    rest of the module.)
991    
992    Fixes issue #45.
993    
994    Reported-by: Bhavi Dhingra
995    
996    Original-patch-by: Bhavi Dhingra
997    
998    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
999
1000commit b83938f7f97aa6210b00835002e6e7d614b2374a
1001Author: Christopher Chavez <chrischavez@gmx.us>
1002Date:   Mon Feb 14 01:00:45 2022 +0000
1003
1004    Xlib.h: fix spelling in comment
1005    
1006    Signed-off-by: Christopher Chavez <chrischavez@gmx.us>
1007
1008commit 4791055682552b4cc8e775479700fb06980d0b59
1009Author: Christopher Chavez <chrischavez@gmx.us>
1010Date:   Sun Feb 13 05:26:14 2022 +0000
1011
1012    Xlib.h: spelling fix in comment
1013
1014commit 9304e645bdcdd3a71ff449a1157c4815e6304d7a
1015Author: Denis Drakhnia <numas13@gmail.com>
1016Date:   Wed Feb 2 11:54:43 2022 +0200
1017
1018    nls: Add ru_UA.utf8 locale alias.
1019    
1020    Signed-off-by: Denis Drakhnia <numas13@gmail.com>
1021
1022commit 9ef2551f0c201f9163b66d17189a98076b5be07a
1023Author: Benno Schulenberg <bensberg@telfort.nl>
1024Date:   Wed Feb 2 16:50:35 2022 +0100
1025
1026    nls: do some manual adjustment of whitespace in the compose sequences
1027    
1028    This achieves a more consistent vertical alignment (per group) of the
1029    target character and the trailing comments.
1030    
1031    (Most blocks were aligned in some fashion, except the "Greek Extended"
1032    block, which has lines of greatly varying lengths.)
1033    
1034    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
1035
1036commit 0dad289ead6eb3412027c9365192441cc539d747
1037Author: Benno Schulenberg <bensberg@telfort.nl>
1038Date:   Wed Feb 2 14:08:22 2022 +0100
1039
1040    nls: among the compose sequences, replace all runs of spaces with tabs
1041    
1042    It was done with this script:
1043    
1044        cat nls/en_US.UTF-8/Compose.pre |
1045        sed 's!\(^<.\{6,13\}>\)\s*:!\1\t\t\t\t:!' |
1046        sed 's!\(^<.\{14,21\}>\)\s*:!\1\t\t\t:!' |
1047        sed 's!\(^<.\{22,29\}>\)\s*:!\1\t\t:!' |
1048        sed 's!\(^<.\{30,37\}>\)\s*:!\1\t:!' |
1049        sed 's!\(: ".*"\)\s*!\1\t!' |
1050        sed 's!\(\s*# \)! # !' > trimmed &&
1051        mv  trimmed  nls/en_US.UTF-8/Compose.pre
1052    
1053    This saves 37 kilobytes of whitespace.
1054    
1055    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
1056
1057commit fc79e39c236501357e1fdbe8964882864eeef5d3
1058Author: Benno Schulenberg <bensberg@telfort.nl>
1059Date:   Wed Feb 2 14:06:29 2022 +0100
1060
1061    docs: add missing word, wrap line, fix typo, and trim an excess space
1062    
1063    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
1064
1065commit 93446455c46dfc019984ab822ffa662cf6e2949c
1066Author: Benno Schulenberg <bensberg@telfort.nl>
1067Date:   Thu Jan 27 15:01:18 2022 +0100
1068
1069    KeyBind: reshuffle two ifs into the general order of ascending codes
1070    
1071    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
1072
1073commit 93f15f5f29378ec4cc1dd011b155104e9a52b058
1074Author: Benno Schulenberg <bensberg@telfort.nl>
1075Date:   Thu Jan 27 14:27:41 2022 +0100
1076
1077    KeyBind: slightly speed up some case conversions by adding missing returns
1078    
1079    This avoids pointlessly tumbling through several more ifs when the
1080    conversion has aleady been done.
1081    
1082    Also remove two redundant conditions (as lower codes have already
1083    been handled) and fold two other conditions together.
1084    
1085    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
1086
1087commit 317c7abbcc848011393d1336b9d020af8cabb000
1088Author: Benno Schulenberg <bensberg@telfort.nl>
1089Date:   Thu Jan 27 13:54:29 2022 +0100
1090
1091    KeyBind: update the Greek case-conversion tables to Unicode Data 14.0
1092    
1093    A few symbols, like Heta and Sampi and dotted lunate Sigma, have been
1094    assigned code points since Unicode Data 4.0, and need their entries.
1095    
1096    This fixes issue #132.
1097    
1098    Reported-by: Ray Vine
1099    
1100    Original-patch-by: Ray Vine
1101    
1102    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
1103
1104commit 402b843fa72166d9ceefd887f5cea4728cbc6995
1105Author: Benno Schulenberg <bensberg@telfort.nl>
1106Date:   Wed Jan 26 17:20:28 2022 +0100
1107
1108    remove a commented-out code fragment, and remove a stray blank line
1109    
1110    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
1111
1112commit fbbc3cf8b8b03f74f778772d4703fc4fec242282
1113Author: Benno Schulenberg <bensberg@telfort.nl>
1114Date:   Wed Jan 26 16:55:50 2022 +0100
1115
1116    XKBCvt: remove an if that never gets triggered
1117    
1118    The 'if' at the beginning of _XkbHandleSpecialSym() allows only symbols
1119    from the numeric keypad and some control symbols to pass -- XK_hyphen
1120    is not among them, so the check for XK_hyphen in the later 'if' will
1121    always be false.
1122    
1123    (The corresponding conversion in _XTranslateKeySym() in KeyBind.c was
1124    removed in March 1994.)
1125    
1126    (Also, several keyboard layouts nowadays contain the 'hyphen' symbol,
1127    allowing the user to enter soft hyphens into a document.  So we really
1128    don't want to remap this symbol.)
1129    
1130    Fixes issue #48.
1131    
1132    Reported-by: Bhavi Dhingra
1133    
1134    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
1135
1136commit 6786744f636b3fc545157a13cb2f6169b5be9fa5
1137Author: Benno Schulenberg <bensberg@telfort.nl>
1138Date:   Sun Jan 23 17:12:03 2022 +0100
1139
1140    nls: add the es_CU locale name, for Cuba
1141    
1142    It was added to glibc ten years ago.
1143    
1144    This fixes issue #57.
1145    
1146    Reported-by: Dominique Michel
1147    
1148    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
1149
1150commit d241d8af7f24e95949c2cf7ce791e35df7665e98
1151Author: Benno Schulenberg <bensberg@telfort.nl>
1152Date:   Sun Jan 23 16:44:03 2022 +0100
1153
1154    nls: remove some obsolete Norwegian and Yugoslavian locale names
1155    
1156    They have not existed in glibc for more than fifteen years.
1157    
1158    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
1159
1160commit 32dd7c03e92e01015744867b9b3148c250cc159a
1161Author: Benno Schulenberg <bensberg@telfort.nl>
1162Date:   Sat Jan 22 17:56:32 2022 +0100
1163
1164    nls: put some entries in their alphabetical order, and adjust alignment
1165    
1166    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
1167
1168commit 46a066f25103bb909259baea25de8dd5c4a2b338
1169Author: Benno Schulenberg <bensberg@telfort.nl>
1170Date:   Sat Jan 22 18:00:20 2022 +0100
1171
1172    nls: fix a typo (be_BG => bg_BG) and drop an obsolete comment
1173    
1174    The typo was only partially fixed in commit 22a5255b80 sixteen years ago,
1175    and the internet shows that there was at least one user frustrated that
1176    bg_BG.utf8 didn't work but bg_BG.UTF-8 did.
1177    
1178    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
1179
1180commit 84efc0aa598c8f7d6dd9a49e7450e85c8bc4773b
1181Author: Benno Schulenberg <bensberg@telfort.nl>
1182Date:   Wed Jan 19 15:32:15 2022 +0100
1183
1184    nls: remove the compose sequences with the deviant KP_Space symbol
1185    
1186    Using this KP_Space symbol as a stand-in for the symbol 2 doesn't make
1187    sense.  It looks like a mistake, or as if someone had a broken keyboard
1188    and used KP_Space as a substitute for 2.
1189    
1190    Also, no keyboard layout in the last fifteen years has contained the
1191    KP_Space symbol, so I don't see how anyone could type it.
1192    
1193    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
1194
1195commit b76e661ca223489da9027b0ab1ca1586efd0a280
1196Author: Benno Schulenberg <bensberg@telfort.nl>
1197Date:   Wed Jan 19 13:49:56 2022 +0100
1198
1199    nls: move the block of Jamo to its logical place (ascending Unicodes)
1200    
1201    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
1202
1203commit 21f82fb9c69f8fdbf0bdc1aac6f8c11c2c6d55d1
1204Author: Benno Schulenberg <bensberg@telfort.nl>
1205Date:   Wed Jan 19 13:40:56 2022 +0100
1206
1207    nls: delete some ineffective compose sequences (that were commented out)
1208    
1209    They have never worked; there is no point in keeping them in the file.
1210    
1211    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
1212
1213commit 6cc31eafa8095d2117ff1906d7c14c1c01173248
1214Author: Benno Schulenberg <bensberg@telfort.nl>
1215Date:   Wed Jan 19 12:18:21 2022 +0100
1216
1217    nls: group some compose sequences better, and add some comments
1218    
1219    Also, align a few trailing comments more consistently, and change
1220    some comments so they will be excluded from the installed file --
1221    there is no need for those comments there.
1222    
1223    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
1224
1225commit d60ede7843612f3c2967f83d629bf8272ba09ff1
1226Author: ArenaL5 <arenal5@protonmail.com>
1227Date:   Thu Jan 13 01:13:56 2022 +0100
1228
1229    nls: add a compose sequence for the copyleft symbol
1230    
1231    Probably not used anywhere yet, let alone seriously, as stated in
1232    https://en.wikipedia.org/wiki/Copyleft#Symbol
1233    
1234    Signed-off-by: ArenaL5 <arenal5@protonmail.com>
1235
1236commit df4dcdf9125c595f6df3a302356647cb8df38553
1237Author: Benno Schulenberg <bensberg@telfort.nl>
1238Date:   Mon Jan 17 17:31:08 2022 +0100
1239
1240    nls: remove redundant compose sequences with deprecated Hebrew symbols
1241    
1242    The compose sequences with the valid Hebrew key symbols are right there.
1243    
1244    Also, no keyboard layout in the past seventeen years has contained these
1245    deprecated symbols on any key.
1246    
1247    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
1248
1249commit 4268472bd11a07a799716fb5833ea46cad3dd479
1250Author: Benno Schulenberg <bensberg@telfort.nl>
1251Date:   Sun Jan 16 17:51:29 2022 +0100
1252
1253    nls: remove redundant compose sequences with the deprecated 'underbar'
1254    
1255    The key symbol 'underbar' is equivalent to 'underscore' -- the mirror
1256    compose sequences with the latter symbol continue to exist.
1257    
1258    Also, no keyboard layout in the past fifteen years has contained the
1259    symbol 'underbar' on any key -- except a Telugu layout since a few
1260    years, but that will be corrected soon.
1261    
1262    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
1263
1264commit 86e9749ef37189486c205ee7f77e43fed655ac70
1265Author: ArenaL5 <arenal5@protonmail.com>
1266Date:   Sat Jan 15 16:20:56 2022 +0100
1267
1268    nls: add a compose sequence for the middle dot (·) using dead_circumflex
1269    
1270    This makes the middle dot compose sequences consistent with others that
1271    begin with <dead_circumflex> and <Multi_key> <asciicircum>, e.g.
1272    superscripted 3 (³)
1273    
1274    Signed-off-by: ArenaL5 <arenal5@protonmail.com>
1275
1276commit 1adb531cd5be2b6489c2a8106e850e7418fae056
1277Author: Benno Schulenberg <bensberg@telfort.nl>
1278Date:   Fri Jan 14 13:06:10 2022 +0100
1279
1280    docs: unwrap the comments of structure elements in the man pages
1281    
1282    It doesn't matter that these lines get wider than 80 columns, as it's
1283    easy enough to make the pager scroll a bit to the right, or to have a
1284    terminal that is a 100 or more columns wide.  It looks better to not
1285    hard-wrap these comments.
1286    
1287    Also, fix the layout of two table elements.
1288    
1289    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
1290
1291commit da330a1644f10f9669c8dd9ee06489c40f9f0bd1
1292Author: Benno Schulenberg <bensberg@telfort.nl>
1293Date:   Fri Jan 14 12:33:23 2022 +0100
1294
1295    docs: unwrap some mistakenly wrapped lines, and correct a comment
1296    
1297    The wrapped lines messed up the table.  Also, add some blank lines
1298    to make the table more readable.
1299    
1300    Elsewhere, add spaces around an operator (for consistency),
1301    and correct a copy-paste error.
1302    
1303    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
1304
1305commit b9e0346abebb0c9e5c80c780bba4372419e63bde
1306Author: Benno Schulenberg <bensberg@telfort.nl>
1307Date:   Fri Jan 14 15:57:56 2022 +0100
1308
1309    XKBMAlloc: use the correct first-key variable when extending a key range
1310    
1311    When extending the range of changed virtual-modifier keys, one should
1312    pass the two variables relevant to that range.
1313    
1314    These two mistakes were found by grepping for 'modmap_key' and then
1315    looking for asymmetries between the handling of the plain modmap thing
1316    and the virtual modmap thing.  Inspired by issue #76.
1317    
1318    (I suspect these mistakes were at the base of some intractable bugs
1319    reported against xkeyboard-config where virtual modifiers refused
1320    to work and had to be worked around by making other changes too.)
1321    
1322    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
1323
1324commit f15d2a01f75304bc2d9dac109d9a5a47d1ce28e0
1325Author: Benno Schulenberg <bensberg@telfort.nl>
1326Date:   Wed Jan 12 11:34:23 2022 +0100
1327
1328    lcUTF8: remove two unneeded ifs and two elses that are never reached
1329    
1330    When there is a break at the end of the while loop, it means that the
1331    loop will finish the first time that _XlcGetCharSetWithSide() returns
1332    a non-NULL result, which means that the first '(last_charset == NULL)'
1333    will always be true and the else part is redundant.
1334    
1335    Fixes issue #46.
1336    
1337    Reported-by: Bhavi Dhingra
1338    
1339    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
1340
1341commit 033f37d507801645a8251fd33c25ebd145d22cce
1342Author: Antti Savolainen <antti.savo@gmail.com>
1343Date:   Wed Jan 12 16:10:21 2022 +0000
1344
1345    nls: add two compose sequences for an upwards arrow using dead_circumflex
1346    
1347    Signed-off-by: Antti Savolainen <antti.savo@gmail.com>
1348
1349commit b7d724df615311c35418afc733e1fcc68c740aba
1350Author: Hodong <hodong@nimfsoft.com>
1351Date:   Fri Jan 7 10:41:15 2022 +0000
1352
1353    specs/XIM: fix a missing "EXT" in the documentation
1354    
1355    There was an "EXT" in the original text, but it seems to be missing.
1356    
1357    See: https://gitlab.freedesktop.org/xorg/lib/libx11/-/blob/4e66da0783b2e5e3b288aaecd3c89396ed425c20/specs/XIM/xim.ms#L693
1358    
1359    Signed-off-by: Hodong Kim <hodong@nimfsoft.com>
1360
1361commit 4c96f3567a8d045ee57b886fddc9618b71282530
1362Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1363Date:   Thu Dec 9 19:51:52 2021 -0800
1364
1365    libX11 1.7.3.1
1366    
1367    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1368
1369commit c1710589bb00d6f442a383fc41f0d6496b436c88
1370Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1371Date:   Tue Dec 7 08:29:43 2021 -0800
1372
1373    specs/XIM: Fix "encording" typos
1374    
1375    Fixes: #145
1376    
1377    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1378
1379commit e30771b4bbdd84fc7ff64a1cda483a46edb5707b
1380Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1381Date:   Mon Dec 6 17:04:14 2021 -0800
1382
1383    libX11 1.7.3
1384    
1385    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1386
1387commit 934417b1e89fe715b9cf6c0d62a3867fa1f5bccb
1388Author: Liang Chang <l-chang@users.sourceforge.net>
1389Date:   Tue Sep 7 18:54:10 2021 +0800
1390
1391    Make Xutf8DrawString works correctly with ISO10646 fonts.
1392    
1393    Signed-off-by: Liang Chang <l-chang@users.sourceforge.net>
1394
1395commit 3ad36c5d3ddca3e4c97faaf87b72a53954d1f473
1396Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1397Date:   Thu Dec 2 17:48:55 2021 -0800
1398
1399    Build xz tarballs instead of bzip2
1400    
1401    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1402
1403commit 93a050c3ad2d2264d3880db3791387b1a9bf2e9e
1404Author: Tatu Frisk <tatu.frisk@ge.com>
1405Date:   Tue Mar 14 14:41:27 2017 +0200
1406
1407    Fix hanging issue in _XReply
1408    
1409    Assume event queue is empty if another thread is blocking waiting for event.
1410    
1411    If one thread was blocking waiting for an event and another thread sent a
1412    reply to the X server, both threads got blocked until an event was
1413    received.
1414    
1415    Signed-off-by: Tatu Frisk <tatu.frisk@ge.com>
1416    Signed-off-by: Jose Alarcon <jose.alarcon@ge.com>
1417
1418commit 8382253010267b93c9aeffc769e3f5e43d698094
1419Author: Matthieu Herrb <matthieu@herrb.eu>
1420Date:   Mon Aug 30 21:47:09 2021 +0200
1421
1422    Avoid NULL pointer deref. Fixes issue #47.
1423    
1424    Signed-off-by: Matthieu Herrb <matthieu@herrb.eu>
1425
1426commit 58d7b540c453601faf942c6f19f8277a5c5f78cc
1427Author: Peter Hutterer <peter.hutterer@who-t.net>
1428Date:   Wed Dec 1 14:31:16 2021 +1000
1429
1430    gitlab CI: update to use the ci-fairy image
1431    
1432    Let's use the pre-prepared image instead of building our own.
1433    
1434    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
1435
1436commit 150154c994829f9f3734a560f99f70b21d86b49c
1437Author: Hodong <hodong@nimfsoft.com>
1438Date:   Sun Nov 14 06:36:42 2021 +0000
1439
1440    Fix a typo
1441
1442commit 2356e59ff24f8d1b25cdc4dffc5171c65dc2b86e
1443Author: Igor V. Kovalenko <igor.v.kovalenko@gmail.com>
1444Date:   Sun Sep 5 10:25:38 2021 +0300
1445
1446    libX11: do not crash in GetResReq() macro
1447    
1448    When _XGetRequest() detects that requested length exceeds remaining display
1449    output buffer capacity it would return NULL. GetResReq() macro obtains "req"
1450    pointer from a call to _XGetRequest() and then proceeds to assign request id
1451    through "req" pointer which leads to NULL pointer dereference in this case.
1452    
1453    Fix this by checking if "req" is valid before assigning request id.
1454    
1455    Signed-off-by: Igor V. Kovalenko <igor.v.kovalenko@gmail.com>
1456
1457commit e92efc63acd7b377faa9e534f4bf52aaa86be2a9
1458Author: Peter Hutterer <peter.hutterer@who-t.net>
1459Date:   Tue Jul 27 11:46:19 2021 +1000
1460
1461    makekeys: handle the new _EVDEVK xorgproto symbols
1462    
1463    These keys are all defined through a macro in the form:
1464       #define XF86XK_BrightnessAuto                _EVDEVK(0x0F4)
1465    
1466    The _EVDEVK macro is simply an offset of 0x10081000.
1467    Let's parse these lines correctly so those keysyms end up in our
1468    hashtables.
1469    
1470    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
1471
1472commit d01d23374107f6fc55511f02559cf75be7bdf448
1473Author: Alex Richardson <Alexander.Richardson@cl.cam.ac.uk>
1474Date:   Wed Jun 16 12:17:04 2021 +0100
1475
1476    Avoid undefined behaviour after realloc()
1477    
1478    Adding the offset between the realloc result and the old allocation to
1479    update pointers into the new allocation is undefined behaviour: the
1480    old pointers are no longer valid after realloc() according to the C
1481    standard. While this works on almost all architectures and compilers,
1482    it causes  problems on architectures that track pointer bounds (e.g.
1483    CHERI or Arm's Morello): the value_list pointers will still have the
1484    bounds of the previous allocation and therefore any dereference will
1485    result in a run-time trap.
1486    
1487    I found this due to a crash (dereferencing an invalid capability) while
1488    trying to run `xev` over SSH on a CHERI-RISC-V system. With these two
1489    realloc changes, and https://gitlab.freedesktop.org/xorg/proto/xorgproto/-/merge_requests/41
1490    I am able to succesfully run `xev` compiled for CHERI-RISC-V.
1491    
1492    Signed-off-by: Alex Richardson <Alexander.Richardson@cl.cam.ac.uk>
1493
1494commit 1c845834a32421abb59408aee259ac0bef054d30
1495Author: Alex Richardson <Alexander.Richardson@cl.cam.ac.uk>
1496Date:   Tue Jun 15 08:46:53 2021 +0100
1497
1498    Fix cross-compilation from macOS
1499    
1500    We can't use `LC_CTYPE=C sed` there since /usr/bin/sed is not compatible
1501    with the expressions in nls/ (`sed: RE error: illegal byte sequence`).
1502    To fix this use $(SED) instead which autotools will set to a GNU
1503    version of sed (usually /usr/local/bin/gsed) on macOS.
1504    
1505    Signed-off-by: Alex Richardson <Alexander.Richardson@cl.cam.ac.uk>
1506
1507commit 401f58f8ba258d4e7ce56a8f756595b72e544c15
1508Author: Lev Korol <epicatsupercell@gmail.com>
1509Date:   Sun Apr 11 21:57:45 2021 +0300
1510
1511    nls: Add en_IL locale
1512    
1513    Signed-off-by: Lev Korol <epicatsupercell@gmail.com>
1514
1515commit f906fe8e9769e4313294b68e61c402610ade69da
1516Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1517Date:   Sat Jun 5 09:12:13 2021 -0700
1518
1519    libX11 1.7.2
1520    
1521    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1522
1523commit 51b73ac0acda65005c8a9f17ca4ea7281b00ca84
1524Author: Tobias Stoeckmann <tobias@stoeckmann.org>
1525Date:   Sun May 23 15:05:17 2021 +0200
1526
1527    Protect against overly long strings
1528    
1529    Checking against upper limit of USHRT_MAX must happen before truncating
1530    size_t to int. On 64 bit systems with strings larger than 2 GB this
1531    could otherwise lead to negative ints or ints smaller than USHRT_MAX.
1532    
1533    In XParseColor this could lead to out of boundary access with strings
1534    starting with a # (color sequence). A modulo 12 operation is performed
1535    to validate the string length, but with an overflown length, the for
1536    loop would eventually read behind terminating '\0' character.
1537    
1538    Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
1539
1540commit ab2f59530b16bdfbf023b8e025c7c8aba3b6fd0c
1541Author: Matthieu Herrb <matthieu@herrb.eu>
1542Date:   Sun May 30 16:33:48 2021 +0200
1543
1544    Check for NULL strings before getting their lengths
1545    
1546    Problem reported by Karsten Trulsen
1547    
1548    Signed-off-by: Matthieu Herrb <matthieu@herrb.eu>
1549
1550commit a8216e8653a246db664e1443ecf707b27de65067
1551Author: Matthieu Herrb <matthieu@herrb.eu>
1552Date:   Sat May 22 17:35:47 2021 +0200
1553
1554    include <limits.h> always, not if HAVE_CONFIG_H is set.
1555    
1556    via Matthew Green from the NetBSD project
1557    
1558    Signed-off-by: Matthieu Herrb <matthieu@herrb.eu>
1559
1560commit 6953a586df4819143c4d55e011b3a5e5377981b8
1561Author: Matthieu Herrb <matthieu.herrb@laas.fr>
1562Date:   Tue May 18 15:27:58 2021 +0200
1563
1564    Version 1.7.1
1565    
1566    Release notes in README.md, version bump in configure.ac
1567
1568commit 8d2e02ae650f00c4a53deb625211a0527126c605
1569Author: Matthieu Herrb <matthieu@herrb.eu>
1570Date:   Fri Feb 19 15:30:39 2021 +0100
1571
1572    Reject string longer than USHRT_MAX before sending them on the wire
1573    
1574    The X protocol uses CARD16 values to represent the length so
1575    this would overflow.
1576    
1577    CVE-2021-31535
1578    
1579    Signed-off-by: Matthieu Herrb <matthieu@herrb.eu>
1580
1581commit 838ea5a5a0267c25b20c095c9a70684edeeefba4
1582Author: Gaurav Ujjwal <gujjwal00@gmail.com>
1583Date:   Sun May 9 05:04:36 2021 +0000
1584
1585    Fix out-of-bound access in KeySymToUcs4()
1586    
1587    Array `keysym_to_unicode_590_5fe` is only valid for range  [0x590, 0x5fe] but current lower-bound is checked against 0x589.
1588    
1589    So invalid values from 0x58a to 0x58f are being allowed by current check.
1590    
1591    If any of these invalid value is passed as `keysym`,    `keysym - 0x590` would underflow.
1592    
1593    Signed-off-by: Gaurav Ujjwal <gujjwal00@gmail.com>
1594
1595commit 32491b02c76ac22f99dc433a32466e22bdc181a7
1596Author: Christopher Chavez <chrischavez@gmx.us>
1597Date:   Mon May 3 15:46:44 2021 +0000
1598
1599    Xlib.h: spelling fix in comment
1600
1601commit 5faa8dc0b364f55f19034c370436074646d9ad54
1602Author: Benno Schulenberg <bensberg@telfort.nl>
1603Date:   Tue Nov 24 18:54:24 2020 +0100
1604
1605    nls: adjust three comments about the APL compose sequences
1606    
1607    Commit 0bbc0d5e605e (from eight years ago) removed the lines that two
1608    of these comments referred to.  Without those lines, the comments don't
1609    make sense any more.  Reword and shorten them.
1610    
1611    Also reword a comment about two sequences that don't work.
1612    
1613    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
1614
1615commit b126bfd7fe990b8c1df088f55c31d9b3fd440cde
1616Author: Benno Schulenberg <bensberg@telfort.nl>
1617Date:   Tue Nov 24 12:23:32 2020 +0100
1618
1619    nls: allow composing all breved letters also with a lowercase "u"
1620    
1621    The letters ă and ŭ can already be composed with "u a" and "u u", but
1622    ĕ, ğ, ĭ, and ŏ can be composed only with an uppercase U.  Emancipate
1623    the latter four and understand also a lowercase "u" to mean 'breve'.
1624    
1625    (Yesterday I needed ğ and was annoyed that "u g" did not work.)
1626    
1627    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
1628
1629commit 78027fdb7aa07621a3b7cdf37050bae39012f2fb
1630Author: Walter Harms <wharms@bfs.de>
1631Date:   Sat Nov 28 21:05:33 2020 +0100
1632
1633    fix same roff code
1634    
1635    Signed-off-by: Walter Harms <wharms@bfs.de>
1636
1637commit 4f15cfc64548098fef3ddd24f7359b76cf1bbda7
1638Author: Walter Harms <wharms@bfs.de>
1639Date:   Sat Nov 28 20:56:35 2020 +0100
1640
1641    Fix some roff code add see also
1642    
1643    Signed-off-by: Walter Harms <wharms@bfs.de>
1644
1645commit daa106927f78e6c5c9c36558a4b951d7cb58a8d1
1646Author: Walter Harms <wharms@bfs.de>
1647Date:   Sat Nov 28 17:49:25 2020 +0100
1648
1649    fix broken nroff coding for code comments
1650    
1651    the comments /* */ are code as /\(**  */ that does not work.
1652    the coding in other X11 man pages is /\&* */ so we do the same here.
1653
1654commit 7bdeae239b17db002964ac73d06f43f216d1cf86
1655Author: Walter Harms <wharms@bfs.de>
1656Date:   Fri Nov 27 22:43:21 2020 +0100
1657
1658    FIX: warning: macro `hN' not defined
1659    
1660    Signed-off-by: Walter Harms <wharms@bfs.de>
1661
1662commit b7ec67d3ea78ab68857328d8f72d923324e68cc2
1663Author: Walter Harms <wharms@bfs.de>
1664Date:   Fri Nov 27 22:26:15 2020 +0100
1665
1666    FIX: warning: macro `IN' not defined
1667    
1668    just remove an other dead macro use.
1669
1670commit 7ca3ceb9175a829a40c347cb3b2e98341ec5a2df
1671Author: Walter Harms <wharms@bfs.de>
1672Date:   Fri Nov 27 21:58:04 2020 +0100
1673
1674    fix warning: macro `s' not defined
1675    
1676    this is caused by bad nroff coding, fix some more issues on the fly
1677
1678commit 14fb4e535626ba934cad5bc4308f511524cd1103
1679Author: Walter Harms <wharms@bfs.de>
1680Date:   Fri Nov 27 20:04:22 2020 +0100
1681
1682    FIX: warning: macro `hN' not defined
1683    
1684    this was found by checking man pages with
1685     groff -t -mandoc -Z  -wmac -Tutf8 $FILE >/dev/null
1686    
1687    In most cases .hN could be replaced with .BR
1688    
1689    Signed-off-by: Walter Harms <wharms@bfs.de>
1690
1691commit cb03da4447aa53e8e5382f124917d89b50148036
1692Author: Walter Harms <wharms@bfs.de>
1693Date:   Fri Nov 27 19:00:00 2020 +0100
1694
1695    FIX: warning: macro `Pn' not defined
1696    
1697    The missing macro is found via:
1698    roff -t -mandoc -Z  -wmac -Tutf8 XAnyEvent.man >/dev/null
1699    
1700    To fix the problem the macro is replaced with .RB.
1701    
1702    Signed-off-by: Walter Harms <wharms@bfs.de>
1703
1704commit cc9f8878f2cbe17c7b4035b4ff4352b52ece38e0
1705Author: Benno Schulenberg <bensberg@telfort.nl>
1706Date:   Wed Nov 25 16:58:27 2020 +0100
1707
1708    nls: add 'C.utf8' as an alias for 'en_US.UTF-8'
1709    
1710    The normal form is 'C.UTF-8', but 'C.utf8' has been seen in the wild.
1711    
1712    Fixes #102.
1713    
1714    Reported-by: Tomas Korbar
1715    
1716    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
1717
1718commit ca8115186f810eccb7d86b0979980eff3ba95f0b
1719Author: Keith Packard <keithp@keithp.com>
1720Date:   Thu Nov 19 11:30:41 2020 -0800
1721
1722    Version 1.7.0
1723    
1724    Release notes in README.md, version bump in configure.ac
1725    
1726    Signed-off-by: Keith Packard <keithp@keithp.com>
1727
1728commit 325ac177fb6d38f4c7689d9ce059792eaef388ef
1729Author: Keith Packard <keithp@keithp.com>
1730Date:   Mon Nov 16 15:48:40 2020 -0800
1731
1732    Update libX11 .so version to 6.4.0
1733    
1734    There have been API additions since the previous release, so the
1735    .so version needs to change.
1736    
1737    Signed-off-by: Keith Packard <keithp@keithp.com>
1738
1739commit 103e2e11519984aa5746c06e7d90d1f5bc8174a3
1740Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1741Date:   Sat Oct 31 09:24:01 2020 -0700
1742
1743    Don't leave dangling pointers in Free functions
1744    
1745    While these are mostly called during teardown of larger structures
1746    that are about to themselves be freed, there's no guarantee that
1747    will always be the case, so try to be safer here.
1748    
1749    [ This bug was found by the Parfait 4.0 bug checking tool.
1750      http://labs.oracle.com/pls/apex/f?p=labs:49:::::P49_PROJECT_ID:13 ]
1751    
1752    v2: Deduplicate & simplify pointer clearing in _XFreeEventCookies
1753        as suggested by @keithp
1754    
1755    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1756
1757commit 7d70e302218e2ec8518548ddcdc02d828e7889af
1758Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1759Date:   Sat Oct 31 08:56:34 2020 -0700
1760
1761    XimProto.h: wrap XIM_HEADER_SIZE definition in parens
1762    
1763    Resolves parfait warning of potential macro misinterpretation if
1764    expanded in the midst of other arithmetic operations with higher
1765    precedence.
1766    
1767    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1768
1769commit a3c0b5dbd6b12ae64bc78b11795647a7f6df0c7a
1770Author: Keith Packard <keithp@keithp.com>
1771Date:   Tue Nov 17 13:15:18 2020 -0800
1772
1773    Copy locale modifiers when creating XimInstCallback [v2]
1774    
1775    Locale modifiers may be freed whenever XSetLocaleModifiers gets
1776    called, even if the locale hasn't changed. This means that we cannot
1777    save a pointer to those modifiers in the XimInstCallback record and
1778    must, instead, make a copy of them instead.
1779    
1780    This fixes a problem uncovered when running wish under libasan as
1781    follows (on current Debian unstable):
1782    
1783            $ LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libasan.so.6 wish
1784    
1785    Reported-by: Vittorio Zecca <zeccav@gmail.com>
1786    Signed-off-by: Keith Packard <keithp@keithp.com>
1787    
1788    v2:
1789            Remove incorrect 'else' token found by @alanc
1790
1791commit 960e2e0cfac12c3477c672d0d40818a0dc74aca5
1792Author: Peter Hutterer <peter.hutterer@who-t.net>
1793Date:   Mon Nov 16 09:34:57 2020 +1000
1794
1795    gitlab CI: add a basic build test
1796    
1797    Using Arch as base distribution here because we can expect our dependencies to
1798    be up-to-date. We rely on the Arch for our dependencies rather than building
1799    those from git (notably: xorg-macros, xtrans and libxcb).
1800    
1801    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
1802
1803commit dbb55e1a5e82870466b095097d9e46046680ec25
1804Author: Frediano Ziglio <fziglio@redhat.com>
1805Date:   Wed Jan 29 09:06:54 2020 +0000
1806
1807    Fix poll_for_response race condition
1808    
1809    In poll_for_response is it possible that event replies are skipped
1810    and a more up to date message reply is returned.
1811    This will cause next poll_for_event call to fail aborting the program.
1812    
1813    This was proved using some slow ssh tunnel or using some program
1814    to slow down server replies (I used a combination of xtrace and strace).
1815    
1816    How the race happens:
1817    - program enters into poll_for_response;
1818    - poll_for_event is called but the server didn't still send the reply;
1819    - pending_requests is not NULL because we send a request (see call
1820      to  append_pending_request in _XSend);
1821    - xcb_poll_for_reply64 is called from poll_for_response;
1822    - xcb_poll_for_reply64 will read from server, at this point
1823      server reply with an event (say sequence N) and the reply to our
1824      last request (say sequence N+1);
1825    - xcb_poll_for_reply64 returns the reply for the request we asked;
1826    - last_request_read is set to N+1 sequence in poll_for_response;
1827    - poll_for_response returns the response to the request;
1828    - poll_for_event is called (for instance from another poll_for_response);
1829    - event with sequence N is retrieved;
1830    - the N sequence is widen, however, as the "new" number computed from
1831      last_request_read is less than N the number is widened to N + 2^32
1832      (assuming last_request_read is still contained in 32 bit);
1833    - poll_for_event enters the nested if statement as req is NULL;
1834    - we compare the widen N (which now does not fit into 32 bit) with
1835      request (which fits into 32 bit) hitting the throw_thread_fail_assert.
1836    
1837    To avoid the race condition and to avoid the sequence to go back
1838    I check again for new events after getting the response and
1839    return this last event if present saving the reply to return it
1840    later.
1841    
1842    To test the race and the fix it's helpful to add a delay (I used a
1843    "usleep(5000)") before calling xcb_poll_for_reply64.
1844    
1845    Original patch written by Frediano Ziglio, see
1846    https://gitlab.freedesktop.org/xorg/lib/libx11/-/merge_requests/34
1847    
1848    Reworked primarily for readability by Peter Hutterer, see
1849    https://gitlab.freedesktop.org/xorg/lib/libx11/-/merge_requests/53
1850    
1851    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
1852
1853commit 30ccef3a48029bf4fc31d4abda2d2778d0ad6277
1854Author: Keith Packard <keithp@keithp.com>
1855Date:   Sat Nov 7 22:22:47 2020 -0800
1856
1857    Avoid recursing through _XError due to sequence adjustment
1858    
1859    This patch is based on research done by Dmitry Osipenko to uncover the
1860    cause of a large class of Xlib lockups.
1861    
1862    _XError must unlock and re-lock the display around the call to the
1863    user error handler function. When re-locking the display, two
1864    functions are called to ensure that the display is ready to generate a request:
1865    
1866        _XIDHandler(dpy);
1867        _XSeqSyncFunction(dpy);
1868    
1869    The first ensures that there is at least one XID available to use
1870    (possibly calling _xcb_generate_id to do so). The second makes sure a
1871    reply is received at least every 65535 requests to keep sequence
1872    numbers in sync (possibly generating a GetInputFocus request and
1873    synchronously awaiting the reply).
1874    
1875    If the second of these does generate a GetInputFocus request and wait
1876    for the reply, then a pending error will cause recursion into _XError,
1877    which deadlocks the display.
1878    
1879    One seemingly easy fix is to have _XError avoid those calls by
1880    invoking InternalLockDisplay instead of LockDisplay. That function
1881    does everything that LockDisplay does *except* call those final two
1882    functions which may end up receiving an error.
1883    
1884    However, that doesn't protect the system from applications which call
1885    some legal Xlib function from within their error handler. Any Xlib
1886    function which cannot generate protocol or wait for events is valid,
1887    including many which invoke LockDisplay.
1888    
1889    What we need to do is make LockDisplay skip these two function calls
1890    precisely when it is called from within the _XError context for the
1891    same display.
1892    
1893    This patch accomplishes this by creating a list of threads in the
1894    display which are in _XError, and then having LockDisplay check the
1895    current thread against those list elements.
1896    
1897    Inspired-by: Dmitry Osipenko <digetx@gmail.com>
1898    Signed-off-by: Keith Packard <keithp@keithp.com>
1899    Tested-by: Dmitry Osipenko <digetx@gmail.com>
1900    Reviewed-by: Dmitry Osipenko <digetx@gmail.com>
1901
1902commit c9c4d6efbf92ab51695e2e740319503221d68eed
1903Author: Benno Schulenberg <bensberg@telfort.nl>
1904Date:   Fri Nov 13 11:34:04 2020 +0100
1905
1906    nls: improve the comments for the Serbian compose sequences
1907    
1908    Also put an extra space before the lone combining characters
1909    so they have some room to breathe.
1910    
1911    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
1912
1913commit 3497dae3d9c52a252110b2a0983b82000be0fe8e
1914Author: Benno Schulenberg <bensberg@telfort.nl>
1915Date:   Fri Nov 13 11:23:09 2020 +0100
1916
1917    nls: remove mistaken Serbian compose sequences with combining diacritics
1918    
1919    Combining characters are not dead keys -- they have an immediate effect
1920    and combine with the preceding character.  So they cannot be used in
1921    compose sequences.
1922    
1923    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
1924
1925commit 5cd60398b7787297008b13a848ed3cfbd7ef178d
1926Author: Benno Schulenberg <bensberg@telfort.nl>
1927Date:   Mon Nov 2 16:34:39 2020 +0100
1928
1929    nls: rename the obsolete sr_CS locale to sr_RS
1930    
1931    Fixes #107, for the most part.
1932    
1933    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
1934
1935commit 7cf1729590534e257b851899cf03421b65c538e3
1936Author: Keith Packard <keithp@keithp.com>
1937Date:   Sat Nov 7 17:02:56 2020 -0800
1938
1939    Don't attempt to unload locale context data
1940    
1941    Most locale context users call _XlcCurrentLC, which returns a pointer
1942    which never needs to be passed to _XCloseLC, meaning it has unbounded
1943    lifetime, so that locale data can never be freed.
1944    
1945    Remove all reference counting and just leave all locales that were
1946    ever used in memory.
1947    
1948    Signed-off-by: Keith Packard <keithp@keithp.com>
1949    Acked-by: Martin Peres <martin.peres@mupuf.org>
1950
1951commit 87a8fd8051b823636c3c4f3c37c4cfd11fdb880d
1952Author: Jacek Caban <jacek@codeweavers.com>
1953Date:   Mon Aug 14 19:20:19 2017 +0200
1954
1955    Don't cache last lcd in _XlcCurrentLC.
1956    
1957    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=55678
1958    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=68538
1959    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=69088
1960    
1961    The way it's currently cached is not thread safe. As long as locale doesn't change, the same object is reused anyway.
1962    
1963    Signed-off-by: Jacek Caban <jacek@codeweavers.com>
1964    Signed-off-by: Keith Packard <keithp@keithp.com>
1965    Acked-by: Martin Peres <martin.peres@mupuf.org>
1966
1967commit 7a38c09b82ee2522d987c3da4af8af186e562c61
1968Author: Keith Packard <keithp@keithp.com>
1969Date:   Sat Nov 7 16:59:37 2020 -0800
1970
1971    Don't cache converters in _Xlcmbtowc and Xlcwctomb
1972    
1973    These functions were caching encoding conversion functions in static
1974    variables which is not thread safe. Let the conversion loader do its
1975    job and cache locale to converters there. It's less efficient, but
1976    it's also (now) thread safe.
1977    
1978    Signed-off-by: Keith Packard <keithp@keithp.com>
1979    Acked-by: Martin Peres <martin.peres@mupuf.org>
1980
1981commit b52ba5c209165fc2c533b77b86147b31763299f3
1982Author: Jacek Caban <jacek@codeweavers.com>
1983Date:   Mon Aug 14 19:20:20 2017 +0200
1984
1985    Make conv_list thread safe.
1986    
1987    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=55678
1988    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=68538
1989    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=69088
1990    Signed-off-by: Jacek Caban <jacek@codeweavers.com>
1991    Signed-off-by: Keith Packard <keithp@keithp.com>
1992    Acked-by: Martin Peres <martin.peres@mupuf.org>
1993
1994commit 8b5ce3a9b1219c81711944880e5a1e1cfad3d956
1995Author: Antti Savolainen <antti.savo@gmail.com>
1996Date:   Wed Sep 16 07:47:26 2020 +0000
1997
1998    Added DOWNWARD ARROW support
1999
2000commit 7138826dccba9d538dfb142ce9af1a40d64ea849
2001Author: Antti Savolainen <antti.savo@gmail.com>
2002Date:   Tue Sep 8 00:54:23 2020 +0300
2003
2004    Added support for UPWARDS ARROW and ALMOST EQUAL TO
2005    
2006    Signed-off-by: Antti Savolainen <antti.savo@gmail.com>
2007
2008commit 56d59299f7433cdeb88bac970b06eb7df44df5bb
2009Author: Jonathan Belsewir <jonbel@jonasund.de>
2010Date:   Thu Nov 5 22:57:50 2020 +0000
2011
2012    Add less and greater to characters that are difficult to access on some keyboards
2013
2014commit 5caf45f8d3bebad5b72ac88545adc156ccfd754d
2015Author: Benno Schulenberg <bensberg@telfort.nl>
2016Date:   Fri Oct 23 17:12:22 2020 +0200
2017
2018    nls: Allow all letters with a caron to be composed also with v.
2019    
2020    It was strange that the accented letters Ž and ž can be composed with
2021    sequences that start with "v" ("v Z" and "v z"), but not Č and č and
2022    Š and š (and other letters with a caron).  For these letters, compose
2023    sequences that start with a "c" had to be used, which was frustrating
2024    because it is hard to remember that "c" stands for "caron", AND the
2025    graphically more obvious "v" is right next to it.
2026    
2027    (Unfortunately, the sequence "v l" is already taken for vertical line.
2028    Maybe the compose sequences for vertical line could be reduced to just
2029    "V L" and "L V"?)
2030    
2031    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
2032
2033commit 62de4ac9025e2cb3f62a890241c06ebc75acce62
2034Author: Benno Schulenberg <bensberg@telfort.nl>
2035Date:   Sun Nov 1 20:23:55 2020 +0100
2036
2037    nls: vertically align the target column of aliases
2038    
2039    Also improve the grammar of the initial comment.
2040    
2041    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
2042
2043commit f5b26a16ef959fc6860e9cf58b97a042600900b4
2044Author: Benno Schulenberg <bensberg@telfort.nl>
2045Date:   Sun Nov 1 20:17:05 2020 +0100
2046
2047    nls: remove some twenty aliases that have been obsolete for fifteen years
2048    
2049    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
2050
2051commit 3e61f3b49660e081108f06bc514366f1784cb2e0
2052Author: Benno Schulenberg <bensberg@telfort.nl>
2053Date:   Sun Nov 1 19:50:56 2020 +0100
2054
2055    nls: remove country-specific aliases for two constructed languages
2056    
2057    These artificial languages are meant to be international and are
2058    thus not specific to any country.  If one would want to support
2059    aliases like ia_FR or ia_CH, then one would also have to support
2060    ia_AU, ia_DE, ia_ES, et cetera, et cetera.  That would be silly.
2061    
2062    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
2063
2064commit 3f9c43adde22bb2ab4bef5837bc8401af9bb537c
2065Author: Benno Schulenberg <bensberg@telfort.nl>
2066Date:   Sun Nov 1 17:28:24 2020 +0100
2067
2068    nls: remove four aliases where the name is identical to the definition
2069    
2070    They were found with:
2071    
2072        while read one two; do
2073            if [[ $one == $two: ]]; then echo $two; fi;
2074        done  <nls/locale.alias.pre
2075    
2076    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
2077
2078commit 9f9c5365816bdd036fd80d54b22e86764ea4b7a7
2079Author: Carlos Garnacho <carlosg@gnome.org>
2080Date:   Fri Jun 14 17:55:14 2019 +0200
2081
2082    Add XSetIOErrorExitHandler() function
2083    
2084    This function complements XSetIOErrorHandler(), allowing to override
2085    the default behavior that trusts on I/O errors never coming back
2086    (i.e. exit()ing the process).
2087    
2088    This is meant as a mechanism for Wayland compositors (that are too
2089    a X11 client + compositing manager) to unfasten seatbelts and jump
2090    through the car window. It might get lucky and land on a stack of
2091    pillows.
2092    
2093    In consequence, some functions labeled as _X_NORETURN can as a
2094    matter of fact return. So those hints were removed.
2095    
2096    Signed-off-by: Carlos Garnacho <carlosg@gnome.org>
2097    Reviewed-by: Michel Dänzer <mdaenzer@redhat.com>
2098
2099commit 4cb758019e374fa7c022fe79d28444e13441717b
2100Author: Carlos Garnacho <carlosg@gnome.org>
2101Date:   Fri Jun 14 17:54:47 2019 +0200
2102
2103    Prepare for _XIOError() possibly returning
2104    
2105    Ensure current state is cut short on _XIOError(), possible reentrancy
2106    should be skipped through the XlibDisplayIOError flag checks.
2107    
2108    Signed-off-by: Carlos Garnacho <carlosg@gnome.org>
2109    Reviewed-by: Michel Dänzer <mdaenzer@redhat.com>
2110
2111commit a37986f7a7d4ae9b8292b132dbb0da2885ea919c
2112Author: Ross Burton <ross.burton@intel.com>
2113Date:   Wed Jan 22 17:11:23 2020 +0000
2114
2115    cpprules.in: squash whitespace in generated files
2116    
2117    CPP is used to generate files, but as cpp reads files from the build host the
2118    output has a number of blank lines at the beginning which varies depending on
2119    what GCC and friends is used.
2120    
2121    Pathalogical example:
2122    
2123     $ cpp -undef -traditional /dev/null
2124     # 1 "/dev/null"
2125     # 1 "<built-in>"
2126     # 1 "<command-line>"
2127     # 31 "<command-line>"
2128     # 1 "/usr/include/stdc-predef.h" 1 3 4
2129    
2130     # 17 "/usr/include/stdc-predef.h" 3 4
2131    
2132     [ 40 blank line ]
2133    
2134     # 32 "<command-line>" 2
2135     # 1 "/dev/null"
2136    
2137    So depending on the content of stdc-predef.h and what other headers CPP will
2138    load, the amount of whitespace in the generates files varies. This can result in
2139    differences in reproducible environments, and file conflicts in multilib
2140    environments.
2141    
2142    As whitespace is irrelevant to these machine-readable files, extend the sed to
2143    just delete blank lines.
2144
2145commit 16192ce2a7e462e09f95aa45ce9eaa180e483c43
2146Author: Carmina16 <mistresssilvara@hotmail.com>
2147Date:   Sun Jun 16 02:54:25 2019 +0000
2148
2149    Adding ia and ie locales
2150
2151commit caa71668af7fd3ebdd56353c8f0ab90824773969
2152Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2153Date:   Mon Sep 28 16:16:07 2020 -0700
2154
2155    Use __builtin_popcountl if available to replace Ones() in GetImage.c
2156    
2157    If the compiler knows of a better algorithm for counting the number of
2158    bits set in a word for the target CPU, let it use that, instead of the
2159    classic algorithm optimized for PDP-6.
2160    
2161    Based on libXext commit 490a25e6f8a4d2482af4364c700b68ad11a4d10b
2162    
2163    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2164
2165commit 1a9269a95c353e3de9f4d33bab9f1363d84e79db
2166Author: Krzesimir Nowak <qdlacz@gmail.com>
2167Date:   Mon Jun 1 12:58:30 2020 +0000
2168
2169    Fix leaking modifiers string.
2170    
2171    Reported by valgrind:
2172    
2173    ```
2174    ==118175== 17 bytes in 1 blocks are definitely lost in loss record 13 of 1,675
2175    ==118175==    at 0x483A809: malloc (vg_replace_malloc.c:307)
2176    ==118175==    by 0x5CD1B46: _XlcDefaultMapModifiers (in /usr/lib64/libX11.so.6.3.0)
2177    ==118175==    by 0x5CD1F1A: XSetLocaleModifiers (in /usr/lib64/libX11.so.6.3.0)
2178    ==118175==    by 0x496841C: X11_InitKeyboard (SDL_x11keyboard.c:324)
2179    ==118175==    by 0x496F0CA: X11_VideoInit (SDL_x11video.c:455)
2180    ==118175==    by 0x494747B: SDL_VideoInit_REAL (SDL_video.c:532)
2181    ==118175==    by 0x489E886: SDL_InitSubSystem_REAL (SDL.c:206)
2182    ==118175==    by 0x402634: main (fade.cc:35)
2183    ```
2184
2185commit d127217f26df1bf7566c1f372d8b5329a06754ea
2186Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2187Date:   Sun Aug 16 17:03:24 2020 -0700
2188
2189    Exempt XLookupKeysym from XKeycodeToKeysym deprecation warnings
2190    
2191    Gets rid of:
2192    src/xkb/XKBBind.c: In function ‘XLookupKeysym’:
2193    src/xkb/XKBBind.c:234:5: warning: ‘XKeycodeToKeysym’ is deprecated
2194    [https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wdeprecated-declarations-Wdeprecated-declarations]
2195      234 |     return XKeycodeToKeysym(dpy, event->keycode, col);
2196          |     ^~~~~~
2197    src/xkb/XKBBind.c:96:1: note: declared here
2198       96 | XKeycodeToKeysym(Display *dpy,
2199          | ^~~~~~~~~~~~~~~~
2200    
2201    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2202
2203commit a64eb5f478c6ca84ef3457a01f9a7c3db8ecf1e5
2204Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2205Date:   Sun Aug 16 16:50:43 2020 -0700
2206
2207    lcUTF8: Increase string buffer size from 20 to 32 bytes
2208    
2209    While we don't expect large enough ints to need it, we don't
2210    enforce a maximum size, so gcc assumes the worst and warns:
2211    
2212    ../../../src/xlibi18n/lcUTF8.c: In function ‘create_tofontcs_conv’:
2213    ../../../src/xlibi18n/lcUTF8.c:1736:34: warning: ‘.charset.name’ directive output may be truncated writing 13 bytes into a region of size between 8 and 17 [-Wformat-truncation=]
2214     1736 |  snprintf(buf, sizeof(buf), "fs%d.charset.name", i);
2215          |                                  ^~~~~~~~~~~~~
2216    ../../../src/xlibi18n/lcUTF8.c:1736:2: note: ‘snprintf’ output between 17 and 26 bytes into a destination of size 20
2217     1736 |  snprintf(buf, sizeof(buf), "fs%d.charset.name", i);
2218          |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2219    ../../../src/xlibi18n/lcUTF8.c:1739:46: warning: ‘snprintf’ output may be truncated before the last format character [-Wformat-truncation=]
2220     1739 |      snprintf(buf, sizeof(buf), "fs%d.charset", i);
2221          |                                              ^
2222    ../../../src/xlibi18n/lcUTF8.c:1739:6: note: ‘snprintf’ output between 12 and 21 bytes into a destination of size 20
2223     1739 |      snprintf(buf, sizeof(buf), "fs%d.charset", i);
2224          |      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2225    ../../../src/xlibi18n/lcUTF8.c:1754:41: warning: ‘.charset.name’ directive output may be truncated writing 13 bytes into a region of size between 8 and 17 [-Wformat-truncation=]
2226     1754 |         snprintf(buf, sizeof(buf), "fs%d.charset.name", i);
2227          |                                         ^~~~~~~~~~~~~
2228    ../../../src/xlibi18n/lcUTF8.c:1754:9: note: ‘snprintf’ output between 17 and 26 bytes into a destination of size 20
2229     1754 |         snprintf(buf, sizeof(buf), "fs%d.charset.name", i);
2230          |         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2231    ../../../src/xlibi18n/lcUTF8.c:1757:53: warning: ‘snprintf’ output may be truncated before the last format character [-Wformat-truncation=]
2232     1757 |             snprintf(buf, sizeof(buf), "fs%d.charset", i);
2233          |                                                     ^
2234    ../../../src/xlibi18n/lcUTF8.c:1757:13: note: ‘snprintf’ output between 12 and 21 bytes into a destination of size 20
2235     1757 |             snprintf(buf, sizeof(buf), "fs%d.charset", i);
2236          |             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2237    
2238    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2239
2240commit 54925250ad9c825bea671dcade5c913bad88abee
2241Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2242Date:   Sun Aug 16 16:33:59 2020 -0700
2243
2244    i18n: use memcpy instead of strncpy on unterminated char arrays
2245    
2246    Avoids gcc warnings that we're using strncpy wrong to copy a known-length
2247    set of characters without a terminating '\0' to a buffer whose length we
2248    are checking separately.  (Should also be imperceptibly faster since we
2249    no longer check if each byte is '\0' when we already know it won't be.)
2250    
2251    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2252
2253commit 8754868dbbbc5fa096282df0504aa7880488eeb9
2254Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2255Date:   Sun Aug 16 16:02:01 2020 -0700
2256
2257    Mark FreeBlueTblElements label unused in LRGB.c
2258    
2259    Quiets gcc 10.2 warning of:
2260    src/xcms/LRGB.c: In function ‘LINEAR_RGB_InitSCCData’:
2261    src/xcms/LRGB.c:798:1: warning: label ‘FreeBlueTblElements’ defined
2262     but not used
2263    [https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-label-Wunused-label]
2264      798 | FreeBlueTblElements:
2265          | ^~~~~~~~~~~~~~~~~~~
2266    
2267    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2268
2269commit 52b0cd67073f2f4665884b5a7decfedeb3b7ca1e
2270Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2271Date:   Sun Aug 16 14:54:47 2020 -0700
2272
2273    Raise minimum required xproto version to 7.0.25 (released 2013-11-23)
2274    
2275    Allows us to depend on _X_COLD directly instead of having to check for it.
2276    
2277    (Since we also use _X_UNUSED, 7.0.22 or later was implicitly required
2278     already but not checked for.)
2279    
2280    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2281
2282commit deafb99fd8faf8b044eaee13d072440ce4db76af
2283Author: Maya Rashish <maya@NetBSD.org>
2284Date:   Sun Aug 23 21:19:33 2020 +0300
2285
2286    Avoid the use of "register" keyword in public headers.
2287    
2288    This causes issues when compiling code for C++17.
2289
2290commit 505420662577749e36640db48f6b6b9ae0236e09
2291Author: Matthieu Herrb <matthieu@herrb.eu>
2292Date:   Mon Aug 24 15:42:25 2020 +0200
2293
2294    libX11 1.6.12
2295    
2296    Signed-off-by: Matthieu Herrb <matthieu@herrb.eu>
2297
2298commit acdaaadcb3d85c61fd43669fc5dddf0f8c3f911d
2299Author: Matthieu Herrb <matthieu@herrb.eu>
2300Date:   Thu Aug 13 18:02:58 2020 +0200
2301
2302    Fix an integer overflow in init_om()
2303    
2304    CVE-2020-14363
2305    
2306    This can lead to a double free later, as reported by Jayden Rivers.
2307    
2308    Signed-off-by: Matthieu Herrb <matthieu@herrb.eu>
2309
2310commit d15c24c8b44be5e4054c8ecd0ff9dcf2c8e18e5b
2311Author: Niclas Zeising <zeising@daemonic.se>
2312Date:   Tue Aug 11 13:44:38 2020 +0200
2313
2314    Fix input clients connecting to server
2315    
2316    Fix a bug where some input clients can't connect to the input server.
2317    This fixes #117.
2318    
2319    FreeBSD bugzilla reference:
2320    https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=248549
2321    
2322    Signed-off-by: Niclas Zeising <zeising@daemonic.se>
2323
2324commit 6dd618e5ea8e7558dd8e99a2777ab7b69211789c
2325Author: Maya Rashish <maya@NetBSD.org>
2326Date:   Sat Aug 15 00:48:56 2020 +0300
2327
2328    Avoid the use of "register" keyword in XkbTranslateKeySym.
2329    
2330    This causes issues when compiling code for C++17.
2331    While here, make function prototype match the header with regards
2332    to removal of another register keyword.
2333
2334commit 780d222343098b4bfe3ec529b4a0dc2aadea19bf
2335Author: Christopher Chavez <chrischavez@gmx.us>
2336Date:   Mon Aug 10 17:08:39 2020 +0000
2337
2338    Fix typo GCCLipYOrigin -> GCClipYOrigin in XCreateGC() manpage
2339
2340commit 29a8251a456bb7dc10146b4713f499a624d6dacd
2341Author: Felix Yan <felixonmars@archlinux.org>
2342Date:   Thu Aug 6 16:03:38 2020 +0000
2343
2344    Correct a typo in GetStCmap.c
2345
2346commit 0d8f038db83f68724a84ef9d4ccd0d5e33ec6a70
2347Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2348Date:   Thu Aug 6 08:07:57 2020 -0700
2349
2350    libX11 1.6.11
2351    
2352    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2353
2354commit 93fce3f4e79cbc737d6468a4f68ba3de1b83953b
2355Author: Yichao Yu <yyc1992@gmail.com>
2356Date:   Sun Aug 2 13:43:58 2020 -0400
2357
2358    Fix size calculation in `_XimAttributeToValue`.
2359    
2360    The check here guards the read below.
2361    For `XimType_XIMStyles`, these are `num` of `CARD32` and for `XimType_XIMHotKeyTriggers`
2362    these are `num` of `XIMTRIGGERKEY` ref[1] which is defined as 3 x `CARD32`.
2363    (There are data after the `XIMTRIGGERKEY` according to the spec but they are not read by this
2364    function and doesn't need to be checked.)
2365    
2366    The old code here used the native datatype size instead of the wire protocol size causing
2367    the check to always fail.
2368    
2369    Also fix the size calculation for the header (size). It is 2 x CARD16 for both types
2370    despite the unused `CARD16` for `XimType_XIMStyles`.
2371    
2372    [1] https://www.x.org/releases/X11R7.6/doc/libX11/specs/XIM/xim.html#Input_Method_Styles
2373    
2374    This fixes a regression caused by 388b303c62aa35a245f1704211a023440ad2c488 in 1.6.10.
2375    
2376    Fix #116
2377
2378commit 9949364ea761ab7efa2a9930ec7718f966a740c0
2379Author: Matthieu Herrb <matthieu@herrb.eu>
2380Date:   Thu Jul 30 21:36:22 2020 +0200
2381
2382    libX11 1.6.10
2383    
2384    Signed-off-by: Matthieu Herrb <matthieu@herrb.eu>
2385
2386commit 1703b9f3435079d3c6021e1ee2ec34fd4978103d
2387Author: Matthieu Herrb <matthieu@herrb.eu>
2388Date:   Fri Jul 24 21:09:10 2020 +0200
2389
2390    Change the data_len parameter of _XimAttributeToValue() to CARD16
2391    
2392    It's coming from a length in the protocol (unsigned) and passed
2393    to functions that expect unsigned int parameters (_XCopyToArg()
2394    and memcpy()).
2395    
2396    Signed-off-by: Matthieu Herrb <matthieu@herrb.eu>
2397    Reviewed-by: Todd Carson <toc@daybefore.net>
2398
2399commit 1a566c9e00e5f35c1f9e7f3d741a02e5170852b2
2400Author: Todd Carson <tc@daybefore.net>
2401Date:   Fri Jul 24 20:59:32 2020 +0200
2402
2403    Zero out buffers in functions
2404    
2405    It looks like uninitialized stack or heap memory can leak
2406    out via padding bytes.
2407    
2408    Signed-off-by: Matthieu Herrb <matthieu@herrb.eu>
2409    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
2410
2411commit 2fcfcc49f3b1be854bb9085993a01d17c62acf60
2412Author: Todd Carson <tc@daybefore.net>
2413Date:   Fri Jul 24 20:22:44 2020 +0200
2414
2415    Fix more unchecked lengths
2416    
2417    Signed-off-by: Matthieu Herrb <matthieu@herrb.eu>
2418    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
2419
2420commit 388b303c62aa35a245f1704211a023440ad2c488
2421Author: Todd Carson <tc@daybefore.net>
2422Date:   Fri Jul 24 19:36:51 2020 +0200
2423
2424    fix integer overflows in _XimAttributeToValue()
2425    
2426    Signed-off-by: Matthieu Herrb <matthieu@herrb.eu>
2427    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
2428
2429commit 0e6561efcfaa0ae7b5c74eac7e064b76d687544e
2430Author: Todd Carson <tc@daybefore.net>
2431Date:   Fri Jul 24 19:33:30 2020 +0200
2432
2433    Fix signed length values in _XimGetAttributeID()
2434    
2435    The lengths are unsigned according to the specification. Passing
2436    negative values can lead to data corruption.
2437    
2438    Signed-off-by: Matthieu Herrb <matthieu@herrb.eu>
2439    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
2440
2441commit 2b7598221d87049d03e9a95fcb541c37c8728184
2442Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2443Date:   Wed Jul 22 15:19:58 2020 -0700
2444
2445    Fix spelling/wording issues
2446    
2447    Found by using:
2448        codespell --builtin clear,rare,usage,informal,code,names
2449    
2450    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2451
2452commit f9e3378ebcfc79ff00591b8617a68e97580a741e
2453Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
2454Date:   Sun Jul 19 22:19:24 2020 +0200
2455
2456    xlibi18n: Fix converting horizline keysyms to UCS
2457    
2458    U+23BA - U+23BD are meant to represent the scan lines, and U+2500 is
2459    unified with scan line 5.
2460    
2461    Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
2462
2463commit 4385a84c4a79c1b60bf12839899a1544198de975
2464Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
2465Date:   Thu Jun 4 02:19:13 2020 +0200
2466
2467    Braille: Fix default lookup
2468    
2469    cbb59d172 ('Braille: Fix typing quickly') broke the default lookup that
2470    translates Braille keysym patterns to Braille Unicode patterns since it
2471    rightfully clears brl_committing, but then we do not have it any more to
2472    fill brl_committed.
2473    
2474    This change saves the committed pattern so we can return it in the
2475    default lookup.
2476    
2477    Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
2478
2479commit fb65b67169105c82c243f265e0f993cf72efdacd
2480Author: Marko Myllynen <myllynen@redhat.com>
2481Date:   Fri Feb 28 13:59:36 2020 +0200
2482
2483    Update Finnish compose sequences for SFS 5966:2019 standard
2484    
2485    U0219, U0218, U021B, U021A are now part of the standard.
2486    
2487    Fixes #70 which was printed incorrectly in the earlier standard version.
2488
2489commit 07724ce046348a21cc82a874853b14b9a285df75
2490Author: Tristan Miller <psychonaut@nothingisreal.com>
2491Date:   Wed Sep 25 13:34:01 2019 +0200
2492
2493    Add acute accent compose sequences for Russian vowels.
2494    
2495    Fixes: https://gitlab.freedesktop.org/xorg/lib/libx11/issues/104
2496    
2497    Signed-off-by: Tristan Miller <psychonaut@nothingisreal.com>
2498
2499commit 3ec9264d01a3a66c0fa0145a7c1db06a64be1507
2500Author: Thomas E. Dickey <dickey@invisible-island.net>
2501Date:   Sat Apr 25 14:40:54 2020 -0400
2502
2503    document an ancient performance problem (see Debian #954845).
2504    
2505    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
2506
2507commit 791c93816ce0520d54925b0b3ccbc29823370041
2508Author: Thomas E. Dickey <dickey@invisible-island.net>
2509Date:   Sat Apr 25 14:22:11 2020 -0400
2510
2511    update/correct function prototypes in manpages to match headers
2512    
2513    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
2514
2515commit 844271305a28e87031562dfeb43defbea02960a2
2516Author: Thomas E. Dickey <dickey@invisible-island.net>
2517Date:   Tue Apr 21 20:53:35 2020 -0400
2518
2519    reduce gcc-normal warnings using casts (no object change)
2520    
2521    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
2522
2523commit 53b59ddfc114a55d26e9717a1b4822f1b18c40ca
2524Author: Thomas E. Dickey <dickey@invisible-island.net>
2525Date:   Tue Apr 21 18:13:22 2020 -0400
2526
2527    reduce gcc-normal warnings using casts (no object change)
2528    
2529    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
2530
2531commit 68c72a7341b114277ab232f2499ee3bd035af8a0
2532Author: Adam Jackson <ajax@redhat.com>
2533Date:   Wed Dec 11 11:53:11 2019 -0500
2534
2535    Fix XTS regression in XCopyColormapAndFree
2536    
2537    XCopyColormapAndFree/5 threw an assertion:
2538    
2539        520|4 5 00014017 1 2|Assertion XCopyColormapAndFree-5.(A)
2540        520|4 5 00014017 1 3|When a colourmap argument does not name a valid colourmap,
2541        520|4 5 00014017 1 4|then a BadColor error occurs.
2542        520|4 5 00014017 1 5|METH: Create a bad colourmap by creating and freeing a colourmap.
2543        520|4 5 00014017 1 6|METH: Call test function using bad colourmap as the colourmap argument.
2544        520|4 5 00014017 1 7|METH: Verify that a BadColor error occurs.
2545        520|4 5 00014017 1 8|unexpected signal 6 (SIGABRT) received
2546        220|4 5 2 15:05:53|UNRESOLVED
2547        410|4 5 1 15:05:53|IC End
2548        510|4|system 0: Abandoning testset: caught unexpected signal 11 (SIGSEGV)
2549    
2550    More specifically:
2551    
2552        lt-XCopyColormapAndFree: xcb_io.c:533: _XAllocID: Assertion `ret != inval_id' failed.
2553    
2554    This bug was introduced (by following my advice, d'oh) in:
2555    
2556        commit 99a2cf1aa0b58391078d5d3edf0a7dab18c7745d
2557        Author: Tapani Pälli <tapani.palli@intel.com>
2558        Date:   Mon May 13 08:29:49 2019 +0300
2559    
2560            Protect colormap add/removal with display lock
2561    
2562    In that patch we moved the call to _XcmsCopyCmapRecAndFree inside the
2563    display lock. The problem is said routine has side effects, including
2564    trying to implicitly create a colormap in some cases. Since we don't run
2565    the XID handler until SyncHandle() we would see inconsistent internal
2566    xlib state, triggering the above assert.
2567    
2568    Fix this by dropping and re-taking the display lock before calling into
2569    XCMS.
2570    
2571    Reviewed-by: Tapani Pälli <tapani.palli@intel.com>
2572
2573commit 7f46a38139f66fda734f3a6c445b84ea89c8f310
2574Author: Alex Henrie <alexhenrie24@gmail.com>
2575Date:   Wed Jan 1 14:54:06 2020 -0700
2576
2577    Handle small final sigma in XConvertCase
2578    
2579    lowercase: GREEK SMALL LETTER FINAL SIGMA (U+03C2)
2580    uppercase: GREEK CAPITAL LETTER SIGMA (U+03A3)
2581    
2582    This mapping was correct in UCSConvertCase, but the "legacy" mapping
2583    must also be correct for Caps Lock to work with the final sigma key.
2584    
2585    https://gitlab.freedesktop.org/xorg/lib/libx11/issues/5
2586    
2587    Signed-off-by: Alex Henrie <alexhenrie24@gmail.com>
2588
2589commit a48787d3d155c8a09cead345f5055da30c1db537
2590Author: Peter Hutterer <peter.hutterer@who-t.net>
2591Date:   Wed Dec 11 14:12:27 2019 +1000
2592
2593    Handle ssharp in XConvertCase()
2594    
2595    lowercase: LATIN SMALL LETTER SHARP S (U+00DF)
2596    uppercase: LATIN CAPITAL LETTER SHARP S (U+1E9E)
2597    
2598    The uppercase sharp s (XK_ssharp) is a relatively recent addition to unicode
2599    but was added to the relevant keyboard layouts in xkeyboard-config-2.25
2600    (d1411e5e95c)
2601    https://gitlab.freedesktop.org/xkeyboard-config/xkeyboard-config/issues/144
2602    
2603    Alas, the CapsLock behavior was broken on the finnish layout (maybe others).
2604    This was due to xkbcomp using XConvertCase() to determine whether a key
2605    requires the type FOUR_LEVEL_ALPHABETIC or FOUR_LEVEL_SEMIALPHABETIC.
2606    
2607    Let's make this function return the right lower/upper symbols for the sharp s
2608    and hope that the world won't get any worse because of it.
2609    
2610    https://gitlab.freedesktop.org/xorg/lib/libx11/issues/110
2611    
2612    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2613
2614commit b8766a438461e20b5c6f7a6111b703d4cb71501f
2615Author: Raul Fernandes <rgfernandes@gmail.com>
2616Date:   Wed Oct 9 18:39:26 2019 +0000
2617
2618    Use memcmp and memcpy
2619
2620commit db7cca17ad7807e92a928da9d4c68a00f4836da2
2621Author: Adam Jackson <ajax@redhat.com>
2622Date:   Wed Oct 9 13:41:29 2019 -0400
2623
2624    libX11 1.6.9
2625    
2626    Signed-off-by: Adam Jackson <ajax@redhat.com>
2627
2628commit f5ba2c632a4c84279bdd48c687271292f5dc4f87
2629Author: Dmitry Osipenko <digetx@gmail.com>
2630Date:   Sat May 18 19:10:32 2019 +0300
2631
2632    Fix lockup in _XReply() caused by recursive synchronization
2633    
2634    This patch is based on a suggestion made by Uli Schlachter in a comment
2635    to the bug report https://gitlab.freedesktop.org/xorg/lib/libx11/issues/93.
2636    
2637    Explanation of the bug (given by Uli Schlachter as well):
2638    
2639    An error was received and handled. Since there was an error callback set,
2640    Xlib unlocks the display, runs the error callback, and then locks the display
2641    again. This goes through _XLockDisplay and then calls _XSeqSyncFunction.
2642    On this "lock the thing"-path, Xlib notices that sequence numbers are close to
2643    wrap-around and tries to send a GetInputFocus request. However, the earlier
2644    calls already registered themselves as "we are handling replies/errors, do
2645    not interfere!" and so the code here waits for "that other thread" to be done
2646    before it continues. Only that there is no other thread, but it is this thread
2647    itself and thus a deadlock follows.
2648    
2649    The bug is relatively easy to reproduce on any desktop environment by
2650    using actively a touchscreen input that supports multitouch, i.e. practically
2651    all mobile devices are affected.
2652    
2653    Fixes: https://gitlab.freedesktop.org/xorg/lib/libx11/issues/93
2654    Suggested-by: Uli Schlachter <psychon@znc.in>
2655    Tested-by: Dmitry Osipenko <digetx@gmail.com>
2656    Reported-by: Dmitry Osipenko <digetx@gmail.com>
2657    Signed-off-by: Dmitry Osipenko <digetx@gmail.com>
2658
2659commit 1f1ca0863fd81fd0538b104eb9d9841ddbc7c905
2660Author: Adam Jackson <ajax@redhat.com>
2661Date:   Fri Sep 13 16:44:32 2019 -0400
2662
2663    xkb: Provide <X11/extensions/XKBgeom.h> ourselves
2664    
2665    This header refers to libX11 types, it doesn't belong in xorgproto and
2666    has been moved to legacy in 2019.2. Supply it ourselves.
2667
2668commit edc7680ed5a03cedb5facf14693823455e12c29c
2669Author: Ross Burton <ross.burton@intel.com>
2670Date:   Tue Aug 6 14:53:43 2019 +0100
2671
2672    src/util/Makefile: explicitly reset LINK to not use libtool
2673    
2674    Simply looking at libtool redefines LINK globally to use libtool, which when
2675    you're trying to cross-compile to Windows can cause complications.
2676    
2677    As in src/util/ we're simply building a small binary for the build host, reset
2678    LINK to the automake default so that the traditional compile/link steps occur
2679    without libtool.
2680    
2681    Also remove -all-static from LDFLAGS as that is a libtool-specific argument
2682    intended to solve this problem.
2683    
2684    Closes: #100
2685    Signed-off-by: Ross Burton <ross.burton@intel.com>
2686
2687commit f111bf3ac091a3a6d1f094172621d9d033c3833c
2688Author: Thomas E. Dickey <dickey@invisible-island.net>
2689Date:   Tue Jul 30 16:53:27 2019 -0400
2690
2691    improve some formatting
2692    
2693    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
2694
2695commit 1d0a6fe9126c7ce61c6648cabf43b2de4d6d3ba9
2696Author: Thomas E. Dickey <dickey@invisible-island.net>
2697Date:   Tue Jul 30 15:49:09 2019 -0400
2698
2699    fix a substitution error from recent commit, e.g, "s/^\.EE/XDe/"
2700    
2701    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
2702
2703commit 8fe8aafe7e9beffaff0460fe08354dfcde1efe98
2704Author: Thomas E. Dickey <dickey@invisible-island.net>
2705Date:   Tue Jul 30 05:07:40 2019 -0400
2706
2707    split lines at sentence endings
2708    
2709    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
2710
2711commit 6f2cbcea5d6dcd1df7ef309481cad1663284c061
2712Author: Thomas E. Dickey <dickey@invisible-island.net>
2713Date:   Tue Jul 30 04:52:25 2019 -0400
2714
2715    trim trailing whitespace from manpages
2716    
2717    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
2718
2719commit 4abf482d8e6b0b1ae84e0f528e71066afd6d18b5
2720Author: Thomas E. Dickey <dickey@invisible-island.net>
2721Date:   Tue Jul 30 04:36:24 2019 -0400
2722
2723    another fake-quote fix
2724    
2725    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
2726
2727commit c0f0651f2b4dfa9fef86d1374689220125631993
2728Author: Thomas E. Dickey <dickey@invisible-island.net>
2729Date:   Tue Jul 30 04:34:54 2019 -0400
2730
2731    the last commit overlooked some fake-quote pairs
2732    
2733    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
2734
2735commit ef31143c9decda54b3ab2937d3300fcf5b493fd6
2736Author: Walter Harms <wharms@bfs.de>
2737Date:   Mon Jul 29 18:50:19 2019 +0200
2738
2739    fix ``fake quotes'' in text
2740    
2741    to remove the fake quotes replace them with propper
2742    predefined macros \*(lq and \*(rq. this will allow
2743    nroff to choose the propper characters when using ps etc.
2744    
2745    Signed-off-by: Walter Harms <wharms@bfs.de>
2746
2747commit 705027ea9b17d6552388d2067736ab4b0bf9dfb5
2748Author: Walter Harms <wharms@bfs.de>
2749Date:   Mon Jul 29 18:27:12 2019 +0200
2750
2751    get rid of ``fake quotes''
2752    
2753    these fake quotes are inside a comment and can be replaced with
2754    some double quotes
2755    
2756    Signed-off-by: Walter Harms <wharms@bfs.de>
2757
2758commit fe46eb287106ad05538e896783a5cf877a4138df
2759Author: Walter Harms <wharms@bfs.de>
2760Date:   Mon Jul 29 17:57:02 2019 +0200
2761
2762    remove all private macro defines
2763    
2764    after converting everything to st. man page macros there is
2765    no need to maintain X11 private nroff macros, so remove them.
2766    
2767    Signed-off-by: Walter Harms <wharms@bfs.de>
2768
2769commit b7f09ae19c9a098ecd545b4d4c45a6afe39a8764
2770Author: Walter Harms <wharms@bfs.de>
2771Date:   Mon Jul 29 17:47:35 2019 +0200
2772
2773    Replace home-grown .Ds .De macro with man page .EX/.EE macro
2774    
2775    Same pages use the man page .EX/.EE macro. Replace all occurences
2776    of .De/.Ds with the std. macros to make the code better to maintain.
2777    
2778    Signed-off-by: Walter Harms <wharms@bfs.de>
2779
2780commit 951e772bc8d89bc62c4bbac14adc5d4f5027419f
2781Author: Walter Harms <wharms@bfs.de>
2782Date:   Wed Jul 3 18:23:51 2019 +0200
2783
2784    fix TBL format
2785    
2786    Signed-off-by: Walter Harms <wharms@bfs.de>
2787
2788commit 4eb167f5aca4cca05a230c728ffdb4fd382a4e1e
2789Author: Walter Harms <wharms@bfs.de>
2790Date:   Wed Jul 3 18:18:09 2019 +0200
2791
2792    replace home grown .ZN with std, .B and .BR
2793    
2794    Replace the home grown macro .ZN with std. macros
2795    from man macro paket. So we can get rid of the
2796    definition an get a clean header.
2797    
2798    Signed-off-by: Walter Harms <wharms@bfs.de>
2799
2800commit 08e6b36292ebf01ba2dcc4a48ec371c6f5d13458
2801Author: Walter Harms <wharms@bfs.de>
2802Date:   Sat Jun 22 18:33:48 2019 +0200
2803
2804    remove in-text macros
2805    
2806    remove in-text macros an fix a few typos on the way.
2807    hopefuly that will make maintenance more easy.
2808    
2809    Signed-off-by: Walter Harms <wharms@bfs.de>
2810
2811commit cb0e894fe9927b07bd9d97c067fd0d007accb105
2812Author: Walter Harms <wharms@bfs.de>
2813Date:   Fri Jun 21 18:01:16 2019 +0200
2814
2815    note that we can handle kbd==NULL
2816    
2817    Signed-off-by: Walter Harms <wharms@bfs.de>
2818
2819commit 0327c427d62f671eced067c6d9b69f4e216a8cac
2820Author: Adam Jackson <ajax@redhat.com>
2821Date:   Mon Jun 17 13:36:08 2019 -0400
2822
2823    makekeys: Detach ourselves from X headers entirely
2824    
2825    Subsequent to a121b7b0c210efe10bf93453b29050282324c906 we are no longer
2826    building makekeys with enough -I/foo/bar to find the X11 headers, so if
2827    they're not in a system include path, things fail. Since this utility is
2828    only needed at build time, there's no real reason to demand the X
2829    headers be installed for both the build and target machines if cross-
2830    compiling, we can just assume a vaguely ANSI environment instead.
2831    
2832    Tested-by: Niclas Zeising <zeising@daemonic.se>
2833    Reviewed-by: Keith Packard <keithp@keithp.com>
2834    Reviewed-by: Matt Turner <mattst88@gmail.com>
2835
2836commit 57f0d421a1320090d3a4948181fe228d86cc8977
2837Author: Matt Turner <mattst88@gmail.com>
2838Date:   Mon Jun 17 10:45:45 2019 -0400
2839
2840    libX11 1.6.8
2841    
2842    Signed-off-by: Matt Turner <mattst88@gmail.com>
2843
2844commit 5464b302bc0c4a055d3eac06c6ab15e209ff7668
2845Author: Matt Turner <mattst88@gmail.com>
2846Date:   Sun Jun 9 14:00:15 2019 -0700
2847
2848    Use AC_SYS_LARGEFILE
2849    
2850    ... and include config.h in makekeys.c to get the definition of
2851    _FILE_OFFSET_BITS. Without it, libX11 can fail to build on a file
2852    system with 64-bit inode numbers.
2853    
2854    Bug: https://bugs.gentoo.org/550502
2855    Bug: https://bugs.gentoo.org/616140
2856    Signed-off-by: Matt Turner <mattst88@gmail.com>
2857
2858commit 33b9148a833ab2ea46e44871da3c031bf1b78f77
2859Author: Ran Benita <ran234@gmail.com>
2860Date:   Thu Feb 13 20:55:08 2014 +0200
2861
2862    Compose.man: fix escaped hexadecimal char description
2863    
2864    The man page says:
2865        Strings may be direct text encoded in the locale for which the
2866        compose file is to be used, or an escaped octal or hexadecimal
2867        character code.   Octal codes are specified as "\123" and
2868        hexadecimal codes as "\0x123a".
2869    
2870    But the grammar in the parser and the implementation say:
2871        ESCAPED_CHAR  ::= ('\\' | '\"' | OCTAL | HEX )
2872        HEX           ::= '\' (x|X) HEX_CHAR [HEX_CHAR]]
2873        HEX_CHAR      ::= (0|1|2|3|4|5|6|7|8|9|A|B|C|D|E|F|a|b|c|d|e|f)
2874    
2875    So "\0x123a" -> "\x3a".
2876    
2877    Signed-off-by: Ran Benita <ran234@gmail.com>
2878    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2879
2880commit d9b2cc35edf01e4f751a9ccb5ac185745184cec0
2881Author: ojab <ojab@ojab.ru>
2882Date:   Mon Apr 24 20:12:17 2017 +0000
2883
2884    Compose sequences for rouble sign
2885    
2886    Cyrillic combinations mirror the Qwerty-Jcuken keyboard layout.
2887    
2888    Signed-off-by: Slava Kardakov <ojab@ojab.ru>
2889    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2890
2891commit 3f211616f6414bd9958566c0ca137e87a2b6df95
2892Author: Pavel Labath <pavelo@centrum.sk>
2893Date:   Fri Nov 30 20:45:04 2012 +0100
2894
2895    Fix a leak in XCreateFontSet
2896    
2897    a simple snippet like XFreeFontSet(d, XCreateFontSet(d, ...)) will generate lots of memory leaks,
2898    as evidenced by the following valgrind output:
2899    ==983== HEAP SUMMARY:
2900    ==983==     in use at exit: 39,409 bytes in 341 blocks
2901    ==983==   total heap usage: 4,795 allocs, 4,454 frees, 489,086 bytes allocated
2902    ==983==
2903    ==983== 1,688 (136 direct, 1,552 indirect) bytes in 1 blocks are definitely lost in loss record
2904    40 of 46
2905    ==983==    at 0x4C2B042: realloc (in /usr/lib64/valgrind/vgpreload_memcheck-amd64-linux.so)
2906    ==983==    by 0x56D5A93: add_codeset.clone.9 (in /usr/lib64/libX11.so.6.3.0)
2907    ==983==    by 0x56D5FE0: load_generic (in /usr/lib64/libX11.so.6.3.0)
2908    ==983==    by 0x56D7612: initialize (in /usr/lib64/libX11.so.6.3.0)
2909    ==983==    by 0x56D7E75: _XlcCreateLC (in /usr/lib64/libX11.so.6.3.0)
2910    ==983==    by 0x56F9A5F: _XlcUtf8Loader (in /usr/lib64/libX11.so.6.3.0)
2911    ==983==    by 0x56DF815: _XOpenLC (in /usr/lib64/libX11.so.6.3.0)
2912    ==983==    by 0x56B255A: XOpenOM (in /usr/lib64/libX11.so.6.3.0)
2913    ==983==    by 0x56A665A: XCreateFontSet (in /usr/lib64/libX11.so.6.3.0)
2914    ==983==    by 0x4FCA80: conky::x11_output::create_gc() (x11.cc:746)
2915    ==983==    by 0x4FC3B4: conky::x11_output::use_own_window() (x11.cc:602)
2916    ==983==    by 0x4FAD42: conky::priv::own_window_setting::set(bool const&, bool) (x11.cc:92)
2917    ==983==
2918    ==983== LEAK SUMMARY:
2919    ==983==    definitely lost: 136 bytes in 1 blocks
2920    ==983==    indirectly lost: 1,552 bytes in 34 blocks
2921    ==983==      possibly lost: 0 bytes in 0 blocks
2922    ==983==    still reachable: 37,721 bytes in 306 blocks
2923    ==983==         suppressed: 0 bytes in 0 blocks
2924    
2925    This patch makes the leak dissappear (Well, at least the "definitely lost part". The "still
2926    reachable" thingy remains). After some analysis, I've discovered that the XLCd structure is
2927    destroyed improperly. The "constructor" is in lcGeneric.c, but the structure is destroyed using
2928    code from lcPublic.c. I've found that changing the destructor call to _XlcDestroyLC executes the
2929    correct code path, and I'm pretty sure this is correct (the object was constructed using
2930    _XlcCreateLC, it make sense to destroy it using its conterpart).
2931    
2932    So far I haven't observed any strange behaviour on my system caused by this change (although, I'm
2933    not sure, how many programs actually use this function).
2934    
2935    Signed-off-by: Pavel Labath <pavelo@centrum.sk>
2936    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2937
2938commit 4645e219133458781e3fb48eaea6a74cccb1b9aa
2939Author: Jon Turney <jon.turney@dronecode.org.uk>
2940Date:   Tue Apr 30 14:39:06 2019 +0100
2941
2942    Avoid using libtool wrapper for makekeys
2943    
2944    For Windows targets, libtool uses a wrapper executable, not a wrapper
2945    script (see [1]), which it compiles with the host compiler.  This
2946    doesn't work when cross-compiling.
2947    
2948    Since we don't actually need to link with anything, use the libtool flag
2949    -all-static to tell it to stay completely out of this.
2950    
2951    [1] https://www.gnu.org/software/libtool/manual/html_node/Wrapper-executables.html
2952
2953commit 6886d9ba06826785a8ccb312c04ea82b91bb6a25
2954Author: Jon Turney <jon.turney@dronecode.org.uk>
2955Date:   Wed Apr 24 12:50:41 2019 +0100
2956
2957    Use EXEEXT_FOR_BUILD for makekeys
2958    
2959    Use EXEXT_FOR_BUILD, to fix cross-compiling where EXEEXT differs from
2960    EXEEXT_FOR_BUILD, such as when building for Windows from unix.
2961    
2962    (Note: As written, this assumes EXEEXT_FOR_BUILD is always empty when
2963    cross-compiling.  There could be some elaborate autodetection for
2964    EXEXT_FOR_BUILD, but for the moment, if you are cross-compiling from
2965    Windows to Unix, you'll need to set EXEEXT_FOR_BUILD explicity...)
2966
2967commit a121b7b0c210efe10bf93453b29050282324c906
2968Author: Jon Turney <jon.turney@dronecode.org.uk>
2969Date:   Tue Apr 30 14:30:41 2019 +0100
2970
2971    Remove makekeys dependency on X headers
2972    
2973    This is the patch from https://bugs.freedesktop.org/show_bug.cgi?id=6669
2974    by Pierre Ossman, reworked for master.
2975    
2976    Avoid using LIBS (which are for host, but we don't need) and rewrite
2977    makekeys slightly to avoid needing to include any X headers, which
2978    avoids potentially having -I with host paths in CFLAGS, which can cause
2979    standard headers e.g. stdio.h for the host to also be used, which can
2980    break things...
2981
2982commit cbb59d1727cb1bfcff91b54fd55f4139e360b7ab
2983Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
2984Date:   Fri Jun 7 23:35:33 2019 +0200
2985
2986    Braille: Fix typing quickly
2987    
2988    On finishing releasing Braille keys, we should clear the just-commited
2989    pattern, to reset the state to initial state, and avoid having to wait for
2990    0.3s before typing the next pattern.
2991    
2992    Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
2993    Tested-by: Jean-Philippe Mengual <jpmengual@hypra.fr>
2994
2995commit 99a2cf1aa0b58391078d5d3edf0a7dab18c7745d
2996Author: Tapani Pälli  <tapani.palli@intel.com>
2997Date:   Mon May 13 08:29:49 2019 +0300
2998
2999    Protect colormap add/removal with display lock
3000    
3001    This fixes a bug where concurrent threads call XCreateColormap and
3002    XFreeColormap corrupting a linked list where colormap structures
3003    are stored.
3004    
3005    Fixes: https://gitlab.freedesktop.org/xorg/lib/libx11/issues/94
3006    
3007    v2: handle XCopyColormapAndFree also (Adam Jackson)
3008    
3009    Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
3010
3011commit fea80d03c381a4de379863c0d41f6d4c00f15e1e
3012Author: Jon Turney <jon.turney@dronecode.org.uk>
3013Date:   Wed Mar 13 13:12:20 2019 +0000
3014
3015    Add autoconf checks for headers we include for FIONREAD
3016    
3017    Add autoconf checks for the extra headers we include to define FIONREAD.
3018    This needs sys/socket.h on Cygwin, and none of the alternatives on
3019    Windows.
3020
3021commit 87c77a1e6d7034536e9d25ce24a667ebf53486a7
3022Author: Matthias Dieter Wallnöfer  <matthias.wallnoefer@lugbz.org>
3023Date:   Mon Mar 11 14:19:52 2019 +0000
3024
3025    locale.alias.pre - add the de_IT locale
3026    
3027    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3028
3029commit 568f77f414072506bbe48646637c872987c97e63
3030Author: Matthias Dieter Wallnöfer  <matthias.wallnoefer@lugbz.org>
3031Date:   Mon Mar 11 14:17:10 2019 +0000
3032
3033    locale.dir.pre - add the de_IT locale
3034    
3035    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3036
3037commit 38c0c92feaef7dc4a72920b1dd79872e6578086c
3038Author: Matthias Dieter Wallnöfer  <matthias.wallnoefer@lugbz.org>
3039Date:   Mon Mar 11 14:12:07 2019 +0000
3040
3041    compose.dir.pre - add de_IT locale
3042    
3043    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3044
3045commit 49f835611ba6ab82e68b7b851507931c142db7a5
3046Author: Matthias Dieter Wallnöfer  <matthias.wallnoefer@lugbz.org>
3047Date:   Tue Jan 29 15:34:34 2019 +0000
3048
3049    Update locale.alias.pre - introduce the de_LI aliases (equivalent to de_CH)
3050    
3051    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3052
3053commit ed669234d0cd5933618aa5fd2da697b59845b9be
3054Author: Matthias Dieter Wallnöfer  <matthias.wallnoefer@lugbz.org>
3055Date:   Tue Jan 29 15:28:18 2019 +0000
3056
3057    locale.dir.pre - fix the de_LI latin15 locale
3058    
3059    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3060
3061commit 82b5c1454a49333b4d94984d40db79cff386d37f
3062Author: Josh Triplett <josh@joshtriplett.org>
3063Date:   Sun Feb 3 08:31:41 2019 +0100
3064
3065    compose.dir.pre: Give the C.UTF-8 locale a full set of UTF-8 compose sequences
3066    
3067    Signed-off-by: Josh Triplett <josh@joshtriplett.org>
3068
3069commit 603c3ab25a692194805fd4b0c62afac8093897fe
3070Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3071Date:   Sat Mar 9 20:58:07 2019 -0800
3072
3073    Add missing close paren to XrmGetStringDatabase synopsis in man page
3074    
3075    Fixes: commit 0642e99ac05afb0c
3076    
3077    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3078
3079commit 6590cc41e3c5c5c836a49a2c82774d7cc9ab3c85
3080Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3081Date:   Sat Feb 23 11:12:27 2019 -0800
3082
3083    Include reallocarray.h in tarballs so "make distcheck" passes
3084    
3085    Fixes: commit bcf7b5aa06c23aee
3086    
3087    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3088
3089commit a4a7df06351ce9565d298a84547ff71f2d220fbf
3090Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3091Date:   Sat Feb 23 11:04:41 2019 -0800
3092
3093    XlibInt.c: include headers needed for ioctl(...FIONREAD...) on Solaris
3094    
3095    Fixes: commit 5538b3e4ae6dee
3096    
3097    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3098
3099commit 38ec04de7e537dde6b7b1eaca46b1a24fcdbc044
3100Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3101Date:   Sat Feb 23 10:48:26 2019 -0800
3102
3103    specs/XKB: Fix misprint in documentation of XkbFreeGeomOverlayKeys()
3104    
3105    Fixes: https://gitlab.freedesktop.org/xorg/lib/libx11/issues/86
3106    aka: https://bugs.freedesktop.org/show_bug.cgi?id=23550
3107    
3108    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3109
3110commit 74f2f26811ae82b15dede31504b0eb541f7a3293
3111Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3112Date:   Sat Feb 23 10:46:05 2019 -0800
3113
3114    specs/XKB: Fix misprint in documentation of XkbAllocGeomOverlayKeys()
3115    
3116    Fixes: https://gitlab.freedesktop.org/xorg/lib/libx11/issues/85
3117    aka: https://bugs.freedesktop.org/show_bug.cgi?id=23549
3118    
3119    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3120
3121commit 66b039a41690f076e962ac6bd46cca017360a7d1
3122Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3123Date:   Sat Feb 23 10:44:15 2019 -0800
3124
3125    specs/XKB: Fix misprint in documentation of XkbAllocGeomOverlayRows()
3126    
3127    Fixes: https://gitlab.freedesktop.org/xorg/lib/libx11/issues/84
3128    aka: https://bugs.freedesktop.org/show_bug.cgi?id=23548
3129    
3130    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3131
3132commit cdea0e840315171f8390adc63a2397ddf111eea4
3133Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3134Date:   Sat Feb 23 10:38:08 2019 -0800
3135
3136    specs/XKB: Fix misprint in documentation of XkbGetNamedGeometry()
3137    
3138    Fixes: https://gitlab.freedesktop.org/xorg/lib/libx11/issues/82
3139    aka: https://bugs.freedesktop.org/show_bug.cgi?id=23520
3140    
3141    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3142
3143commit c72d17ada98723cd9e03ddf06680a0e54b2c3089
3144Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3145Date:   Sat Feb 23 10:30:32 2019 -0800
3146
3147    XkbAllocGeomOverlayKey man page should be named XkbAllocGeomOverlayKeys
3148    
3149    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3150
3151commit 05002b8aef9544c8545e0823a02cf14f335d2b68
3152Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3153Date:   Sun Feb 17 15:13:25 2019 -0800
3154
3155    Fix man page typo: XkbAllBellNotifyMask -> XkbAllBellEventsMask
3156    
3157    Reported-by: Daniel Hahler <git@thequod.de>
3158    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3159
3160commit 5538b3e4ae6dee32c47db9dfc85b07bbe7b90f6c
3161Author: Adam Jackson <ajax@redhat.com>
3162Date:   Fri Mar 24 11:07:36 2017 -0400
3163
3164    _XDefaultIOError: Do better at detecting explicit shutdown
3165    
3166    Currently, when the X server crashes or a client is disconnected with
3167    XKillClient, you get a somewhat confusing error message from libX11
3168    along the lines of:
3169    
3170    XIO:  fatal IO error 11 (Resource temporarily unavailable) on X server ":0"
3171          after 98 requests (40 known processed) with 0 events remaining.
3172    
3173    What's happening here is the previous recvmsg has thrown EAGAIN, since
3174    the socket is non-blocking. In this case, check whether the socket has
3175    any more data to read, and if not treat it like EPIPE.
3176    
3177    Signed-off-by: Adam Jackson <ajax@redhat.com>
3178
3179commit 6d2cde9633b5ee020cb60caea1cf61e090b86dd2
3180Author: Adam Jackson <ajax@redhat.com>
3181Date:   Fri Mar 24 11:07:35 2017 -0400
3182
3183    _XDefaultIOError: Reformat to be less ugly
3184    
3185    Signed-off-by: Adam Jackson <ajax@redhat.com>
3186    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3187
3188commit 003e30a66a249f5c70b30d1c187385124cd4cdad
3189Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3190Date:   Tue Jan 1 14:34:04 2019 -0800
3191
3192    Avoid use-after-free in _XimProtoSetIMValues()
3193    
3194    Fixes gitlab issue #49
3195    
3196    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3197
3198commit 30656fd66ad47aeaca0bfc237a818f189554f07e
3199Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3200Date:   Tue Jan 1 12:21:04 2019 -0800
3201
3202    Fix implicit conversion warnings in _XlcCreateDefaultCharSet
3203    
3204    lcCharSet.c:187:50: warning: implicit conversion changes signedness:
3205          'int' to 'unsigned long' [-Wsign-conversion]
3206        tmp = Xmalloc(name_len + 1 + ct_sequence_len + 1);
3207              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~
3208    ../../include/X11/Xlibint.h:453:32: note: expanded from macro 'Xmalloc'
3209                           ~~~~~~  ^~~~
3210    lcCharSet.c:192:31: warning: implicit conversion changes signedness:
3211          'int' to 'unsigned long' [-Wsign-conversion]
3212        memcpy(tmp, name, name_len+1);
3213        ~~~~~~            ~~~~~~~~^~
3214    lcCharSet.c:216:45: warning: implicit conversion changes signedness:
3215          'int' to 'unsigned long' [-Wsign-conversion]
3216        memcpy(tmp, ct_sequence, ct_sequence_len+1);
3217        ~~~~~~                   ~~~~~~~~~~~~~~~^~
3218    lcCharSet.c:183:16: warning: implicit conversion loses integer precision:
3219          'unsigned long' to 'int' [-Wshorten-64-to-32]
3220        name_len = strlen(name);
3221                 ~ ^~~~~~~~~~~~
3222    lcCharSet.c:184:23: warning: implicit conversion loses integer precision:
3223          'unsigned long' to 'int' [-Wshorten-64-to-32]
3224        ct_sequence_len = strlen(ct_sequence);
3225                        ~ ^~~~~~~~~~~~~~~~~~~
3226    lcCharSet.c:198:37: warning: implicit conversion loses integer precision:
3227         'long' to 'unsigned int' [-Wshorten-64-to-32]
3228            unsigned int length = colon - charset->name;
3229                         ~~~~~~   ~~~~~~^~~~~~~~~~~~~~~
3230    
3231    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3232
3233commit 2e6300905784fa8adfcea019262ea58b3e1ed4ad
3234Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3235Date:   Tue Jan 1 11:41:47 2019 -0800
3236
3237    Remove no-longer-used name variable in _XGetAtomName
3238    
3239    Fixes gcc warning:
3240    GetAtomNm.c: In function ‘_XGetAtomName’:
3241    GetAtomNm.c:39:11: warning: unused variable ‘name’ [-Wunused-variable]
3242         char *name;
3243               ^~~~
3244    
3245    Introduced by commit 336c1e7a505698a8f3bcb6eb96dbbb8ed21ade96
3246    
3247    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3248
3249commit f077871c2a12cf098b0c50572e112c6dc5e04de0
3250Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3251Date:   Sat Dec 29 11:39:29 2018 -0800
3252
3253    Fix out-of-tree builds after commit 8a62e26515e528bb47917ec4a55cc2b492419eeb
3254    
3255    In-tree builds found reallocarray.h in $(top_builddir)/src but the
3256    out-of-tree build didn't find it at all.
3257    
3258    Reported-by: Emmanuele Bassi <ebassi@gmail.com> from GNOME continuous integration pipeline
3259    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3260
3261commit ba7f7cc783672784bebc6e69349b55c6c75c1973
3262Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3263Date:   Sun Sep 27 18:35:27 2015 -0700
3264
3265    Convert src/xlibi18n to use reallocarray()
3266    
3267    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3268
3269commit 336c1e7a505698a8f3bcb6eb96dbbb8ed21ade96
3270Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3271Date:   Sat Sep 26 11:12:47 2015 -0700
3272
3273    Replace Xmalloc+strcpy pairs with strdup calls
3274    
3275    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3276
3277commit 258a8ced681dc1bc50396be7439fce23f9807e2a
3278Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3279Date:   Sun Jul 19 11:58:50 2015 -0700
3280
3281    Replace _XkbTypedRealloc & _XkbClearElems with new _XkbResizeArray
3282    
3283    Makes resizing & clearing more consistent and gets rid of some weird
3284    quirks like always subtracting 1 from the size passed to _XkbClearElems
3285    so it could always add 1 to the size passed in.
3286    
3287    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3288
3289commit f94273e2f4284040306b888e5ca0381ee00591af
3290Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3291Date:   Sun Jul 19 09:47:29 2015 -0700
3292
3293    Add some missing allocation failure checks in src/xcms
3294    
3295    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3296
3297commit 76850471b4a5a6d30f5660234e87ec2772e7b426
3298Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3299Date:   Sun Jul 19 09:33:21 2015 -0700
3300
3301    Convert src/xcms to use reallocarray()
3302    
3303    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3304
3305commit 8a62e26515e528bb47917ec4a55cc2b492419eeb
3306Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3307Date:   Sun Jul 19 09:24:02 2015 -0700
3308
3309    Convert src/XKB to use reallocarray()
3310    
3311    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3312
3313commit 6d1dc1f6169ebf0ba71785d461bd98129c65c862
3314Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3315Date:   Thu Jun 4 23:30:43 2015 -0700
3316
3317    Convert main src directory to use reallocarray()
3318
3319commit bcf7b5aa06c23aee00af7999b58cb96a8571ac42
3320Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3321Date:   Thu Jun 4 23:18:23 2015 -0700
3322
3323    Import reallocarray() from OpenBSD
3324    
3325    Wrapper for realloc() that checks for overflow when multiplying
3326    arguments together, so we don't have to add overflow checks to
3327    every single call.  For documentation on usage, see:
3328    http://www.openbsd.org/cgi-bin/man.cgi/OpenBSD-current/man3/calloc.3
3329    
3330    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3331
3332commit 9bdfe9c9af11d77d66e5ff651e82b20e695cb460
3333Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3334Date:   Mon Nov 19 21:26:23 2018 -0800
3335
3336    Update README for gitlab migration
3337    
3338    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3339
3340commit c8bcc19970a2cc4ad337de1338c63a07325eefcd
3341Author: Albert Astals Cid <aacid@kde.org>
3342Date:   Fri Nov 9 22:24:52 2018 +0100
3343
3344    locale.dir: Add ast_ES.UTF-8
3345    
3346    With this patch xev properly reports
3347       XLookupString gives 2 bytes: (c2 b4) "´"
3348    for the dead_acute key when using the Asturian locale
3349
3350commit 117bb310b44ce03802c91a70949eb58dcc702a3c
3351Author: Albert Astals Cid <aacid@kde.org>
3352Date:   Fri Nov 9 22:18:43 2018 +0100
3353
3354    compose.dir: Add ast_ES.UTF-8
3355    
3356    With this patch one can properly type dead keys like á when using the
3357    Asturian locale
3358
3359commit d7e22252d68258a63ca537827c99d0ac0bc4b9d8
3360Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3361Date:   Sat Nov 10 13:30:47 2018 -0800
3362
3363    Remove documentation of obsolete B16 & B32 tags in specs/libX11
3364    
3365    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3366
3367commit f3c978476e0be6813268af494efb7ac507451116
3368Author: Matt Turner <mattst88@gmail.com>
3369Date:   Tue Oct 9 10:26:05 2018 -0400
3370
3371    libX11 1.6.7
3372    
3373    Signed-off-by: Matt Turner <mattst88@gmail.com>
3374
3375commit 823a0f8a820247b6c1e092f679b49cbdc2ea5c95
3376Author: Michel Dänzer  <michel.daenzer@amd.com>
3377Date:   Fri Sep 28 17:24:17 2018 +0200
3378
3379    poll_for_event: Allow using xcb_poll_for_queued_event
3380    
3381    It avoids reading from the display connection again in cases where that
3382    was already done.
3383    
3384    Suggested-by: Uli Schlachter <psychon@znc.in>
3385    Reviewed-by: Uli Schlachter <psychon@znc.in>
3386
3387commit 406afe4b0f1b655c0db19bbc9a0c48da9a46acf5
3388Author: Michel Dänzer  <michel.daenzer@amd.com>
3389Date:   Tue Sep 25 17:10:58 2018 +0200
3390
3391    poll_for_response: Call poll_for_event again if xcb_poll_for_reply fails
3392    
3393    If xcb_poll_for_reply fails to find a reply, poll_for_response would
3394    always return NULL. However, xcb_poll_for_reply may have read events
3395    from the display connection while looking for a reply. In that case,
3396    returning NULL from poll_for_response is wrong and can result in the
3397    client hanging, e.g. because it returns to waiting for the display
3398    connection file descriptor becoming readable after XPending incorrectly
3399    returned 0 pending events.
3400    
3401    The solution is to call poll_for_event again after xcb_poll_for_reply
3402    returned 0. This will return the first of any events read by
3403    xcb_poll_for_reply.
3404    
3405    Fixes issue #79.
3406    
3407    Reported-by: Yuxuan Shui <yshuiv7@gmail.com>
3408    Bugzilla: https://bugs.freedesktop.org/108008
3409    Bugzilla: https://bugs.freedesktop.org/107992
3410    Reviewed-by: Adam Jackson <ajax@redhat.com>
3411
3412commit d0416863d5bf75af54ce81f6c30d4c1476b5e04f
3413Author: Bhavi Dhingra <b.dhingra@samsung.com>
3414Date:   Mon Sep 28 08:33:40 2015 +0000
3415
3416    XcmsLookupColor: fully initialize XColor structs passed to _XColor_to_XcmsRGB
3417    
3418    Fixes https://gitlab.freedesktop.org/xorg/lib/libx11/issues/44
3419    aka https://bugs.freedesktop.org/show_bug.cgi?id=92154
3420    
3421    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3422    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3423
3424commit 733f64bfeb311c1d040b2f751bfdef9c9d0f89ef
3425Author: Matthieu Herrb <matthieu@herrb.eu>
3426Date:   Tue Aug 21 16:54:50 2018 +0200
3427
3428    libX11 1.6.6
3429    
3430    Signed-off-by: Matthieu Herrb <matthieu@herrb.eu>
3431
3432commit 173704243fbcbea0b6de2068b4fb403c7408fb54
3433Author: Matthieu Herrb <matthieu@herrb.eu>
3434Date:   Tue Aug 21 16:53:40 2018 +0200
3435
3436    Remove statement with no effect.
3437    
3438    Signed-off-by: Matthieu Herrb <matthieu@herrb.eu>
3439
3440commit e83722768fd5c467ef61fa159e8c6278770b45c2
3441Author: Tobias Stoeckmann <tobias@stoeckmann.org>
3442Date:   Fri Jul 27 16:38:00 2018 +0200
3443
3444    Fixed crash on invalid reply (CVE-2018-14598).
3445    
3446    If the server sends a reply in which even the first string would
3447    overflow the transmitted bytes, list[0] (or flist[0]) will be set to
3448    NULL and a count of 0 is returned.
3449    
3450    If the resulting list is freed with XFreeExtensionList or
3451    XFreeFontPath later on, the first Xfree call:
3452    
3453        Xfree (list[0]-1)
3454     turns into
3455        Xfree (NULL-1)
3456    
3457    which will most likely trigger a segmentation fault.
3458    
3459    I have modified the code to return NULL if the first string would
3460    overflow, thus protecting the freeing functions later on.
3461    
3462    Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
3463
3464commit dbf72805fd9d7b1846fe9a11b46f3994bfc27fea
3465Author: Tobias Stoeckmann <tobias@stoeckmann.org>
3466Date:   Fri Jul 27 16:37:17 2018 +0200
3467
3468    Fixed out of boundary write (CVE-2018-14600).
3469    
3470    The length value is interpreted as signed char on many systems
3471    (depending on default signedness of char), which can lead to an out of
3472    boundary write up to 128 bytes in front of the allocated storage, but
3473    limited to NUL byte(s).
3474    
3475    Casting the length value to unsigned char fixes the problem and allows
3476    string values with up to 255 characters.
3477    
3478    Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
3479
3480commit b469da1430cdcee06e31c6251b83aede072a1ff0
3481Author: Tobias Stoeckmann <tobias@stoeckmann.org>
3482Date:   Fri Jul 27 16:36:34 2018 +0200
3483
3484    Fixed off-by-one writes (CVE-2018-14599).
3485    
3486    The functions XGetFontPath, XListExtensions, and XListFonts are
3487    vulnerable to an off-by-one override on malicious server responses.
3488    
3489    The server replies consist of chunks consisting of a length byte
3490    followed by actual string, which is not NUL-terminated.
3491    
3492    While parsing the response, the length byte is overridden with '\0',
3493    thus the memory area can be used as storage of C strings later on. To
3494    be able to NUL-terminate the last string, the buffer is reserved with
3495    an additional byte of space.
3496    
3497    For a boundary check, the variable chend (end of ch) was introduced,
3498    pointing at the end of the buffer which ch initially points to.
3499    Unfortunately there is a difference in handling "the end of ch".
3500    
3501    While chend points at the first byte that must not be written to,
3502    the for-loop uses chend as the last byte that can be written to.
3503    
3504    Therefore, an off-by-one can occur.
3505    
3506    I have refactored the code so chend actually points to the last byte
3507    that can be written to without an out of boundary access. As it is not
3508    possible to achieve "ch + length < chend" and "ch + length + 1 > chend"
3509    with the corrected chend meaning, I removed the inner if-check.
3510    
3511    Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
3512
3513commit d81da209fd4d0c2c9ad0596a8078e58864479d0d
3514Author: Tobias Stoeckmann <tobias@stoeckmann.org>
3515Date:   Tue Jul 3 22:31:37 2018 +0200
3516
3517    Validation of server response in XListHosts.
3518    
3519    If a server sends an incorrect length in its response, a client is prone
3520    to perform an out of boundary read while processing the data.
3521    
3522    The length field of xHostEntry is used to specify the amount of bytes
3523    used to represent the address. It is 16 bit, which means that it is not
3524    possible to perform an arbitrary memory access, but it might be enough
3525    to read sensitive information, e.g. malloc-related pointers and offsets.
3526    
3527    Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
3528    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
3529
3530commit b676e62377483df77bcb6472d26b24f901323fa9
3531Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
3532Date:   Wed Jun 13 15:46:58 2018 +0200
3533
3534    XkbOpenDisplay.3: fix typo
3535    
3536    XkbOpenDisplay returns a pointer to Display, not a Display.
3537    
3538    Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
3539
3540commit 9c5845ff0dc080ff10bd68af4fc40fcd805728ca
3541Author: Martin Natano <natano@natano.net>
3542Date:   Sat Oct 8 19:57:50 2016 +0200
3543
3544    Don't rebuild ks_tables.h if nothing changed.
3545    
3546    ks_tables.h is always considered out of date due to the forced rebuild
3547    of the makekeys util. This means the file is also rebuilt during 'make
3548    install', which is usually performed as root, which can to lead
3549    permission problems later on.
3550    
3551    Signed-off-by: Martin Natano <natano@natano.net>
3552    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3553
3554commit 796f754cba6d75b676a0fc39b97802198fceda4f
3555Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3556Date:   Sat May 5 14:43:30 2018 -0700
3557
3558    Change fall through comment in lcDB.c to match gcc's requirements
3559    
3560    Needs to match one of the regexps shown under
3561    https://gcc.gnu.org/onlinedocs/gcc-7.3.0/gcc/Warning-Options.html#index-Wimplicit-fallthrough
3562    
3563    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3564
3565commit 82ca6308757126fa7ffc6588f1e5d8e3be04251b
3566Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3567Date:   Sat Mar 24 19:45:14 2018 -0700
3568
3569    Use size_t for buffer sizes in SetHints.c
3570    
3571    These variables store values returned from strlen() as a size_t
3572    and are passed to Xmalloc, which expects a size_t, so lets stop
3573    converting back and forth to int along the way.
3574    
3575    Reported by: Konstantin SKliarov
3576    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3577    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
3578
3579commit 50a5a98984097d614227d22a49265e12b172cac7
3580Author: Bhavi Dhingra <b.dhingra@samsung.com>
3581Date:   Tue Jul 5 11:37:50 2016 +0530
3582
3583    Fix possible memory leak in cmsProp.c:140
3584    
3585    https://bugs.freedesktop.org/show_bug.cgi?id=96814
3586    
3587    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3588    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3589
3590commit a9dafdd57c71473fa3a2ec4887e973e4e9876d83
3591Author: Michal Srb <msrb@suse.com>
3592Date:   Thu Mar 15 09:50:58 2018 +0100
3593
3594    Use flexible array member instead of fake size.
3595    
3596    The _XimCacheStruct structure is followed in memory by two strings containing
3597    fname and encoding. The memory was accessed using the last member of the
3598    structure `char fname[1]`. That is a lie, prohibits us from using sizeof and
3599    confuses checkers. Lets declare it properly as a flexible array, so compilers
3600    don't complain about writing past that array. As bonus we can replace the
3601    XOffsetOf with regular sizeof.
3602    
3603    Fixes GCC8 error:
3604      In function 'strcpy',
3605          inlined from '_XimWriteCachedDefaultTree' at imLcIm.c:479:5,
3606          inlined from '_XimCreateDefaultTree' at imLcIm.c:616:2,
3607          inlined from '_XimLocalOpenIM' at imLcIm.c:700:5:
3608      /usr/include/bits/string_fortified.h:90:10: error: '__builtin_strcpy'
3609      forming offset 2 is out of the bounds [0, 1] [-Werror=array-bounds]
3610         return __builtin___strcpy_chk (__dest, __src, __bos (__dest));
3611    
3612    Caused by this line seemingly writing past the fname[1] array:
3613      imLcIm.c:479:  strcpy (m->fname+strlen(name)+1, encoding);
3614    
3615    Reviewed-by: Keith Packard <keithp@keithp.com>
3616    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
3617
3618commit 34f4464f69a4d6ff0d1042500a62f9a5ed7f3647
3619Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3620Date:   Tue Mar 6 11:42:27 2018 -0800
3621
3622    If XGetImage fails to create image, don't dereference it to bounds check
3623    
3624    Reported by gcc 7.3:
3625    
3626    GetImage.c:110:25: warning: potential null pointer dereference [-Wnull-dereference]
3627      if (planes < 1 || image->height < 1 || image->bytes_per_line < 1 ||
3628                        ~~~~~^~~~~~~~
3629    
3630    Introduced by 8ea762f94f4c942d898fdeb590a1630c83235c17 in Xlib 1.6.4
3631    
3632    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3633    Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
3634
3635commit e835a9dcc3362b5e92893be756dd7ae361e64ced
3636Author: wharms <wharms@bfs.de>
3637Date:   Sun Sep 3 14:17:45 2017 +0200
3638
3639    silence gcc warning assignment discards 'const' qualifier from pointer target type
3640
3641commit 36a1ac0253fea82ff79cc52ba56c5691cfd07a3b
3642Author: wharms <wharms@bfs.de>
3643Date:   Sun Aug 20 21:51:57 2017 +0200
3644
3645    remove empty line
3646
3647commit e02dfe54f32b4165351d2712a9d2e0584906a3ce
3648Author: wharms <wharms@bfs.de>
3649Date:   Sun Aug 20 21:50:33 2017 +0200
3650
3651    add _X_UNUSED to avoid unused variable warnings
3652
3653commit 2911c39cecd63ed3747072a5eeeb9eedffc881e9
3654Author: walter harms <wharms@bfs.de>
3655Date:   Sat Jun 4 17:19:59 2016 +0200
3656
3657    Fixes: warning: variable 'req' set but not,used
3658    
3659    Fixes: warning: variable 'req' set but not used [-Wunused-but-set-variable]
3660           by marking req _X_UNUSED
3661            Solution was discussed on xorg-devel ML
3662           Peter Hutter, Alan Coopersmith
3663            Re: [PATCH libX11 3/5] fix: warning: pointer targets in passing argument 2 of '_XSend' differ in signedness [-Wpointer-sign]
3664    
3665    Signed-off-by: harms wharms@bfs.de
3666
3667commit bf82ec0402479fd8399d69e7d62fc17d7956699a
3668Author: walter harms <wharms@bfs.de>
3669Date:   Sat Jun 4 17:22:07 2016 +0200
3670
3671    mark _XDefaultIOError as no_return
3672    
3673    mark _XDefaultIOError as no_return. No one comes back from exit() ...
3674    
3675    Signed-off-by: harms wharms@bfs.de
3676
3677commit 9abe8380074edea3ac4e72466ec47e921ca05e47
3678Author: walter harms <wharms@bfs.de>
3679Date:   Sat Jun 4 17:21:52 2016 +0200
3680
3681    no need to check XFree arguments
3682    
3683    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
3684    
3685    Signed-off-by: harms wharms@bfs.de
3686
3687commit 433477fcb7e07d0c26a22ba78aae88827ed1f440
3688Author: walter harms <wharms@bfs.de>
3689Date:   Tue Apr 26 16:32:20 2016 +0200
3690
3691    fix memleak in error path
3692    
3693    free all mem on error
3694    Signed-off-by: walter harms <wharms@bfs.de>
3695
3696commit ed9f0d34abc645eee56e21863f23acb4d0bb8e9a
3697Author: walter harms <wharms@bfs.de>
3698Date:   Tue Apr 26 17:58:16 2016 +0200
3699
3700    fix memleak in error path
3701    
3702    V2: remove unneeded NULL (reported by eric.engestrom@imgtec.com)
3703    
3704    fix mem leak in error path
3705    Signed-off-by: walter harms <wharms@bfs.de>
3706
3707commit 7c78fc57693afa94cf26170f0f6276e3b7374ed0
3708Author: walter harms <wharms@bfs.de>
3709Date:   Tue Apr 26 16:34:11 2016 +0200
3710
3711    no need to check args for Xfree()
3712    
3713    simplify code
3714    
3715    Signed-off-by: walter harms <wharms@bfs.de>
3716
3717commit c1c14af441ae73d1a8e67a971fafcf967e45ac48
3718Author: walter harms <wharms@bfs.de>
3719Date:   Tue Apr 26 16:23:46 2016 +0200
3720
3721    remove stray extern
3722    
3723    remove stray extern
3724    
3725    Signed-off-by: walter harms <wharms@bfs.de>
3726
3727commit 714921f041a245dc5f37a689268b584226a2ccb9
3728Author: walter harms <wharms@bfs.de>
3729Date:   Mon Apr 11 18:26:52 2016 +0200
3730
3731    no need to check argument for _XkbFree()
3732    
3733    simplify code by removing unneeded checks
3734    
3735    Signed-off-by: walter harms <wharms@bfs.de>
3736
3737commit d02c2466f65063a03c97dbcee05071c12a3676e6
3738Author: walter harms <wharms@bfs.de>
3739Date:   Mon Apr 11 18:22:38 2016 +0200
3740
3741    fix more shadow warning
3742    
3743    Signed-off-by: walter harms <wharms@bfs.de>
3744
3745commit 0355c3926d5372f9762f235071dbd94a89bbbdad
3746Author: walter harms <wharms@bfs.de>
3747Date:   Thu Mar 31 19:16:33 2016 +0200
3748
3749    fix shadow char_size
3750    
3751    Signed-off-by: walter harms <wharms@bfs.de>
3752
3753commit 916dffadf052135df3398651be873c353da629e1
3754Author: walter harms <wharms@bfs.de>
3755Date:   Thu Mar 31 19:14:32 2016 +0200
3756
3757    remove argument check for free() adjust one inden
3758    
3759    Signed-off-by: walter harms <wharms@bfs.de>
3760
3761commit 6ec901ebca3fea6a762e22090dc35b1b90911133
3762Author: walter harms <wharms@bfs.de>
3763Date:   Thu Mar 31 19:12:17 2016 +0200
3764
3765    _XIOError(dpy); will never return so remore dead
3766    
3767    Signed-off-by: walter harms <wharms@bfs.de>
3768
3769commit 83107a677b2ed458e4d62ea4a601e8181d3683d8
3770Author: walter harms <wharms@bfs.de>
3771Date:   Thu Mar 31 19:10:49 2016 +0200
3772
3773    fix shadow warning
3774    
3775    Signed-off-by: walter harms <wharms@bfs.de>
3776
3777commit 4fe66b1c5112b07bd09e28bbc021911d08a9621f
3778Author: Ryan C. Gordon <icculus@icculus.org>
3779Date:   Wed Aug 2 02:41:03 2017 -0400
3780
3781    Valgrind fix for XStoreColor and XStoreColors.
3782    
3783    If the "pad" field isn't set, Valgrind will report it as uninitialized
3784    memory accesses when the struct is copied into the Display's send buffer.
3785    
3786    In practice, this is (probably) harmless, but Valgrind is correct in
3787    believing it's a bug.
3788    
3789    https://bugs.freedesktop.org/attachment.cgi?id=133189
3790    
3791    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3792    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3793
3794commit 7d2010fec25c2f52b873ad0572479eb43128b038
3795Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3796Date:   Fri Apr 7 00:13:03 2017 -0700
3797
3798    Improve table formatting in XkbChangeControls & XkbKeyNumGroups man pages
3799    
3800    Includes fix for Solaris Bug 24564279: "XkbKeyNumGroups.3x11 man page
3801    contains some malformed text" caused by extra whitespace after .TE macros
3802    
3803    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3804
3805commit b856d5d929047d1ea169814d56e43784ea404c83
3806Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3807Date:   Thu Mar 16 00:05:49 2017 -0700
3808
3809    Clarify state parameter to XkbSetNamedDeviceIndicator
3810    
3811    Checking a Bool to see if it's NULL does not work well in C.
3812    Also reported in https://bugs.freedesktop.org/show_bug.cgi?id=251
3813    
3814    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3815    Reviewed-by: Adam Jackson <ajax@redhat.com>
3816
3817commit c6dadd4cebd994aafb37a58b3adbaa82507c2d18
3818Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3819Date:   Wed Mar 15 23:50:26 2017 -0700
3820
3821    Make Xkb{Get,Set}NamedIndicator spec & manpages match code
3822    
3823    The XKB Library spec and the man pages for XkbGetNamedIndicator &
3824    XkbSetNamedIndicator included a device_spec argument neither function
3825    takes, and do not include the XkbGetNamedDeviceIndicator &
3826    XkbSetNamedDeviceIndicator variants that do take it (along with two
3827    other arguments).
3828    
3829    This updates them to match the interfaces the code has provided for
3830    decades.
3831    
3832    This has been reported multiple times, so this fixes:
3833    https://bugs.freedesktop.org/show_bug.cgi?id=251
3834    https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=729812
3835    Sun Bug 4528016 XkbSetNamedIndicator & XkbGetNamedIndicator man pages are wrong
3836      (filed: alan.coopersmith@sun.com 2001-11-15 - now aka Oracle bug 15087506)
3837    X.Org Group Defect Id #9418
3838    
3839    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3840    Reviewed-by: Adam Jackson <ajax@redhat.com>
3841
3842commit 2d20890e7ffd3ee88a9ceb25cdd2ac1fe7aaceb6
3843Author: Arthur Huillet <ahuillet@nvidia.com>
3844Date:   Wed Feb 1 15:02:41 2017 +0100
3845
3846    _XDefaultError: set XlibDisplayIOError flag before calling exit
3847    
3848    _XReply isn't reentrant, and it can lead to deadlocks when the default error
3849    handler is called: _XDefaultError calls exit(1). It is called indirectly by
3850    _XReply when a X protocol error comes in that isn't filtered/handled by an
3851    extension or the application. This means that if the application (or one of its
3852    loaded shared libraries such as the NVIDIA OpenGL driver) has registered any
3853    _fini destructor, _fini will get called while still on the call stack of
3854    _XReply. If the destructor interacts with the X server and calls _XReply, it
3855    will hit a deadlock, looping on the following in _XReply:
3856    
3857        ConditionWait(dpy, dpy->xcb->reply_notify);
3858    
3859    It is legal for an application to make Xlib calls during _fini, and that is
3860    useful for an OpenGL driver to avoid resource leaks on the X server side, for
3861    example in the dlopen/dlclose case. However, the driver can not readily tell
3862    whether its _fini is being called because Xlib called exit, or for another
3863    reason (dlclose), so it is hard to cleanly work around this issue in the driver.
3864    
3865    This change makes it so _XReply effectively becomes a no-op when called after
3866    _XDefaultError was called, as though an XIOError had happened. The dpy
3867    connection isn't broken at that point, but any call to _XReply is going to hang.
3868    This is a bit of a kludge, because the more correct solution would be to make
3869    _XReply reentrant, maybe by broadcasting the reply_notify condition before
3870    calling the default error handler. However, such a change would carry a grater
3871    risk of introducing regressions in Xlib.
3872    
3873    This change will drop some valid requests on the floor, but this should not
3874    matter, as it will only do so in the case where the application is dying: X will
3875    clean up after it once exit() is done running. There is the case of
3876    XSetCloseDownMode(RETAIN_PERMANENT), but an application using that and wishing
3877    to clean up resources in _fini would currently be hitting a deadlock, which is
3878    hardly a better situation.
3879    
3880    Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
3881    Reviewed-by: Jamey Sharp <jamey@minilop.net>
3882
3883commit 42f4d7af9cf6d1dbfa575552e057328b054a20c9
3884Author: Matt Turner <mattst88@gmail.com>
3885Date:   Sat Feb 25 21:54:22 2017 -0800
3886
3887    libX11 1.6.5
3888    
3889    Signed-off-by: Matt Turner <mattst88@gmail.com>
3890
3891commit a0da5835e8078445947c828fe2d86c1a31439012
3892Author: Adam Jackson <ajax@redhat.com>
3893Date:   Tue Feb 14 15:33:29 2017 -0500
3894
3895    Revert "Compose sequences for rouble sign"
3896    
3897    This reverts commit d9e34061307748cb7318ed6b5f83ee5ee9b81fd0.
3898    
3899    Reported to break 'make check':
3900    
3901    https://lists.freedesktop.org/archives/xorg-devel/2017-February/052720.html
3902
3903commit d9e34061307748cb7318ed6b5f83ee5ee9b81fd0
3904Author: Mihail Konev <k.mvc@ya.ru>
3905Date:   Fri Feb 10 18:48:18 2017 +0500
3906
3907    Compose sequences for rouble sign
3908    
3909    Cyrillic combinations mirror the Qwerty-Jcuken keyboard layout.
3910    Also add Cyrillic sequences for hryvnia sign.
3911    
3912    Submitted-by: Victor V. Kustov <coyote@bks.tv>
3913    Reviewed-by: Victor V. Kustov <coyote@bks.tv>
3914    Signed-off-by: Mihail Konev <k.mvc@ya.ru>
3915
3916commit 23d9623c661694aba8cf1e8f277dffa7a86cf065
3917Author: Petr Písař < <petr.pisar@atlas.cz>
3918Date:   Sun Oct 30 12:49:11 2016 +0100
3919
3920    Revert cs_CZ.UTF-8 XLC_LOCALE to en_US.UTF-8
3921    
3922    The cs_CZ.UTF-8/XLC_LOCALE is an empty file leading to unsupported cs_CZ.UTF-8
3923    locale and reporting this error:
3924    
3925    Warning: locale not supported by Xlib, locale set to C
3926    
3927    Therefore this patch reverts to the en_US.UTF-8 definition file that was used
3928    before. This patch also deduplicates the cs_CZ.UTF-8 entry.
3929    
3930    <https://bugs.freedesktop.org/show_bug.cgi?id=98219>
3931    
3932    This reverts commit 33840a5465a2e5fecab520bfbdd2d1bd0a456f51
3933    
3934    Signed-off-by: Julien Cristau <jcristau@debian.org>
3935
3936commit 71b0929ebc1f0f877f63e3f6de260f529daa6c69
3937Author: Mihail Konev <k.mvc@ya.ru>
3938Date:   Thu Jan 26 13:52:49 2017 +1000
3939
3940    autogen: add default patch prefix
3941    
3942    Signed-off-by: Mihail Konev <k.mvc@ya.ru>
3943
3944commit 2979011bc170c55894b9185b26376f8efc6db7d4
3945Author: Emil Velikov <emil.l.velikov@gmail.com>
3946Date:   Mon Mar 9 12:00:52 2015 +0000
3947
3948    autogen.sh: use quoted string variables
3949    
3950    Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent
3951    fall-outs, when they contain space.
3952    
3953    Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
3954    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
3955    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
3956
3957commit 4a0082a1b6affa65d38294f0e13511525cd8ad15
3958Author: Peter Hutterer <peter.hutterer@who-t.net>
3959Date:   Tue Jan 24 10:32:07 2017 +1000
3960
3961    autogen.sh: use exec instead of waiting for configure to finish
3962    
3963    Syncs the invocation of configure with the one from the server.
3964    
3965    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
3966    Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
3967
3968commit c74b070f2712c95f0db7c320a10232b0e5c83049
3969Author: Julien Cristau <jcristau@debian.org>
3970Date:   Sat Jan 7 16:20:31 2017 +0100
3971
3972    Fix wrong Xfree in XListFonts failure path
3973    
3974    'ch' gets moved inside the allocated buffer as we're looping through
3975    fonts, so keep a reference to the start of the buffer so we can pass
3976    that to Xfree in the failure case.
3977    
3978    Fixes: commit 20a3f99eba5001925b8b313da3accb7900eb1927 "Plug a memory leak"
3979    
3980    Signed-off-by: Julien Cristau <jcristau@debian.org>
3981    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3982    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
3983
3984commit 663f47075fe67bab4f99bc5d186c49175d4a4334
3985Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3986Date:   Sun Jan 1 20:57:58 2017 -0800
3987
3988    specs/libX11: Update Portability Considerations for the 21st century
3989    
3990    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3991    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
3992
3993commit 28f4b989b52fcf45c7e75a878d8d9c2583cd6b3c
3994Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3995Date:   Sun Jan 1 20:39:53 2017 -0800
3996
3997    specs/libX11: Fix broken synopsis for Data/Data16/Data32
3998    
3999    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4000
4001commit 382561951e3460b09c21a1a23748cde0315fbb19
4002Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4003Date:   Sun Jan 1 20:31:54 2017 -0800
4004
4005    specs/libX11: Add missing parameter types for XGetWindowProperty()
4006    
4007    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4008
4009commit 2beaecdb66965b861d6b790d151ba947f65f0a22
4010Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4011Date:   Sun Jan 1 20:16:08 2017 -0800
4012
4013    specs/libX11: Make paramdef spacing more consistent
4014    
4015    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4016
4017commit 4c436c6c14cfd4c397b011563bf13c2872861133
4018Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4019Date:   Sun Jan 1 20:02:53 2017 -0800
4020
4021    specs/libX11: Fix paramdef entries listing multiple parameters
4022    
4023    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4024
4025commit 1728b1a8a4718315da8e5c9cbc2c04bb75c74107
4026Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4027Date:   Sun Jan 1 19:38:40 2017 -0800
4028
4029    specs/libX11: More synopsis fixes
4030    
4031    Mostly transforming macro definitions and functions taking void arguments
4032    from undecorated <para> tags to use <funcsynopsis> tags to get decorations.
4033    
4034    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4035
4036commit f0dc83db7e3a3d4a76c0f9d24763b80f01c893a9
4037Author: Lucien Gentis <lucien.gentis@waika9.com>
4038Date:   Wed Jun 1 17:02:47 2016 +0200
4039
4040    Typos in "Xlib - C Language X Interface" document - Chapter 02
4041    
4042    This patch fixes typos and lack of tags in "Xlib - C Language X Interface" document - Chapter 02.
4043    
4044    Signed-off-by: Lucien Gentis <lucien.gentis@waika9.com>
4045    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4046    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4047
4048commit 20a3f99eba5001925b8b313da3accb7900eb1927
4049Author: Emilio Pozuelo Monfort <pochu@debian.org>
4050Date:   Tue Oct 25 21:30:15 2016 +0200
4051
4052    Plug a memory leak
4053    
4054    This was introduced in 8ea762f.
4055    
4056    Reported-by: Julien Cristau <jcristau@debian.org>
4057    Signed-off-by: Emilio Pozuelo Monfort <pochu@debian.org>
4058    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
4059
4060commit 8f349feac24aacc958bd816afcc52380764e3d92
4061Author: Matthieu Herrb <matthieu.herrb@laas.fr>
4062Date:   Tue Oct 4 21:01:39 2016 +0200
4063
4064    libX11 1.6.4
4065    
4066    Signed-off-by: Matthieu Herrb <matthieu.herrb@laas.fr>
4067
4068commit 8ea762f94f4c942d898fdeb590a1630c83235c17
4069Author: Tobias Stoeckmann <tobias@stoeckmann.org>
4070Date:   Sun Sep 25 21:25:25 2016 +0200
4071
4072    Validation of server responses in XGetImage()
4073    
4074    Check if enough bytes were received for specified image type and
4075    geometry. Otherwise GetPixel and other functions could trigger an
4076    out of boundary read later on.
4077    
4078    Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
4079    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
4080
4081commit 8c29f1607a31dac0911e45a0dd3d74173822b3c9
4082Author: Tobias Stoeckmann <tobias@stoeckmann.org>
4083Date:   Sun Sep 25 21:22:57 2016 +0200
4084
4085    The validation of server responses avoids out of boundary accesses.
4086    
4087    v2: FontNames.c  return a NULL list whenever a single
4088    length field from the server is incohent.
4089    
4090    Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
4091    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
4092
4093commit 78851f6a03130e3c720b60c3cbf96f8eb216d741
4094Author: walter harms <wharms@bfs.de>
4095Date:   Mon Aug 15 19:18:14 2016 +0200
4096
4097    XFree will accept NULL as argument
4098    
4099    since Xfree is a define for free():
4100      Xlibint.h:#define Xfree(ptr) free((ptr))
4101    
4102    Xfree will accept NULL and do nothing.
4103    
4104    Signed-off-by: Hans de Goede <hdegoede@redhat.com>
4105
4106commit 83adf3d1e3d0d6602244381334f75c216da4ab6e
4107Author: Matthew D. Fuller <fullermd@over-yonder.net>
4108Date:   Sat Jun 4 11:24:01 2016 -0500
4109
4110    Fixup param specification for XChangeProperty()
4111    
4112    Signed-off-by: Matthew D. Fuller <fullermd@over-yonder.net>
4113    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
4114
4115commit 3129c757f9da8586ab8b8654a56c8f687cc9ef5c
4116Author: Mats Blakstad <mats.gbproject@gmail.com>
4117Date:   Sun Feb 28 13:22:03 2016 -0500
4118
4119     New compose keys for local languages in Togo
4120    
4121    Signed-off-by: James Cloos <cloos@jhcloos.com>
4122
4123commit e1011b9e2f6c82255959cf3cc1d8cda402ded0a9
4124Author: Daniel Albers <daniel@lbe.rs>
4125Date:   Wed Mar 9 14:35:48 2016 +0100
4126
4127    Add Compose sequence for U+1F4A9.
4128    
4129    Signed-off-by: Daniel Albers <daniel@lbe.rs>
4130
4131commit 6d7bb040c928485f2557c2c914b95cffb2354179
4132Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4133Date:   Sat Feb 6 14:18:32 2016 -0800
4134
4135    xcms: use size_t for pointer offsets passed to strncmp
4136    
4137    instead of converting to int and back
4138    
4139    Fixes clang warnings of the form:
4140    HVC.c:190:43: warning: implicit conversion changes signedness: 'int' to
4141          'unsigned long' [-Wsign-conversion]
4142              if (strncmp(spec, _XcmsTekHVC_prefix, n) != 0) {
4143                  ~~~~~~~
4144    
4145    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4146
4147commit a9266804eed38a83897ab5f0f9f8a8ab82a98882
4148Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4149Date:   Sat Feb 6 13:32:44 2016 -0800
4150
4151    xcms: use unsigned indexes when looping through unsigned values
4152    
4153    Clears many gcc warnings of the form:
4154    
4155    uvY.c: In function ‘XcmsCIEuvYToCIEXYZ’:
4156    uvY.c:263:19: warning: comparison between signed and unsigned integer
4157      expressions [-Wsign-compare]
4158         for (i = 0; i < nColors; i++, pColor++) {
4159                       ^
4160    
4161    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4162
4163commit 0ee0d383b4488b7b90d8bd50b75c371e0dc0d397
4164Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4165Date:   Sat Feb 6 13:01:25 2016 -0800
4166
4167    xcms: use size_t for strlen/sizeof values instead of converting to int & back
4168    
4169    Fixes gcc warnings of the form:
4170    
4171    IdOfPr.c: In function ‘XcmsFormatOfPrefix’:
4172    IdOfPr.c:69:32: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
4173         if ((len = strlen(prefix)) >= sizeof(string_buf)) {
4174                                    ^
4175    IdOfPr.c:83:11: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
4176       if (len >= sizeof(string_buf)) Xfree(string_lowered);
4177               ^
4178    IdOfPr.c:97:11: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
4179       if (len >= sizeof(string_buf)) Xfree(string_lowered);
4180               ^
4181    IdOfPr.c:104:13: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
4182         if (len >= sizeof(string_buf)) Xfree(string_lowered);
4183                 ^
4184    
4185    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4186
4187commit 4de6ed3e7b1833c52c9d58ab74d59d57ca2a9f0d
4188Author: Dominik Muth <nxdomainuser-muth@yahoo.com>
4189Date:   Thu Mar 26 07:52:58 2015 +0100
4190
4191    Xlib.h: Fix macros imitating C functions.
4192    
4193    The basic rule "put parantheses around macro parameters" should be
4194    observed where possible. Otherwise code like
4195    
4196        ConnectionNumber(foo = bar);
4197    
4198    fails to compile. (It obviously passes if ConnectionNumber is a C
4199    function.) There are several other macros amended for the same reason.
4200    
4201    This bug appeared while building http://ioccc.org/1993/cmills.c, so
4202    historically it was not present.
4203    
4204    Signed-off-by: Dominik Muth <muth@nxdomain.no-ip.biz>
4205    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4206    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4207
4208commit 3706b0f2b14cc97578a6bee620266edca2722ebf
4209Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4210Date:   Fri Nov 15 18:03:25 2013 -0800
4211
4212    Don't need to link libX11-xcb against libX11
4213    
4214    libX11-xcb only accesses data structures defined in X11 headers,
4215    it doesn't call any functions or reference any global variables
4216    in libX11 itself.  (Seems to have been left from previous XCL
4217    implementation.)
4218    
4219    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4220
4221commit eddf1bbd18872b286a9f939140f0cd9ba4e93804
4222Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4223Date:   Fri Jan 22 11:44:25 2016 -0800
4224
4225    Stop checking for preferred order of local transports
4226    
4227    Removes --with-local-transport-order=... flag to configure.
4228    
4229    Code which used this ordered list was removed in commit 15e5eaf6289
4230    which outsourced X11 connection handling & authentication to libxcb.
4231    
4232    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4233    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
4234
4235commit 1a66c1e964ff8d11382313404f48b5a3d5ed8be8
4236Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4237Date:   Fri Jan 22 09:39:28 2016 -0800
4238
4239    Stop checking XTRANS_SECURE_RPC_FLAGS since we no longer use them
4240    
4241    Removes --enable-secure-rpc & --disable-secure-rpc flags to configure
4242    
4243    Code that used SECURE_RPC definitions was removed in commit 15e5eaf6289
4244    which outsourced X11 connection handling & authentication to libxcb.
4245    
4246    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4247    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
4248
4249commit 7eb724dc24505f1591ef32620fa63f079b540646
4250Author: Olivier Fourdan <ofourdan@redhat.com>
4251Date:   Thu Jan 21 11:54:19 2016 +0100
4252
4253    XKB: fix XkbGetKeyboardByName with Xming server
4254    
4255    XkbGetKeyboardByName relies on flags to read the data from the server.
4256    
4257    If the X server sends us the wrong flags or if a subreply is smaller
4258    than it should be, XkbGetKeyboardByName will not read all the available
4259    data and leave data in the buffer, which will cause the next _XReply()
4260    to fail with:
4261    
4262    [xcb] Extra reply data still left in queue
4263    [xcb] This is most likely caused by a broken X extension library
4264    [xcb] Aborting, sorry about that.
4265    xcb_io.c:576: _XReply: Assertion `!xcb_xlib_extra_reply_data_left' failed.
4266    Aborted
4267    
4268    Check if there is some extra data left at the end of
4269    XkbGetKeyboardByName() and discard that data if any is found.
4270    
4271    Many thanks to Peter Hutterer <peter.hutterer@who-t.net> for finding the
4272    root cause of the issue and Adam Jackson <ajax@redhat.com> for helping
4273    with the analysis!
4274    
4275    Signed-off-by: Olivier Fourdan <ofourdan@redhat.com>
4276    Reviewed-by: Daniel Stone <daniels@collabora.com>
4277    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
4278    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
4279
4280commit 43ba0a68d3d17b496ec1f48d44921122ddd7d7d9
4281Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4282Date:   Sat Dec 19 18:03:41 2015 -0800
4283
4284    lcPubWrap: replace malloc(strlen) + strcpy with strdup
4285    
4286    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4287    Reviewed-by: Adam Jackson <ajax@redhat.com>
4288
4289commit 6fc95cb12b70c5a67cb4fc5e5749f9f1ec741e2a
4290Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4291Date:   Sat Dec 19 10:21:04 2015 -0800
4292
4293    XlcDL.c: reduce code duplication
4294    
4295    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4296    Reviewed-by: Adam Jackson <ajax@redhat.com>
4297
4298commit f7ecc0856be58608881d2086954cb71857ad64e1
4299Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4300Date:   Sat Dec 19 10:19:25 2015 -0800
4301
4302    XlcDL.c: replace strcpy+strcat sequences with snprintf
4303    
4304    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4305    Reviewed-by: Adam Jackson <ajax@redhat.com>
4306
4307commit 522989b34398bd6a6ea144c4af0ba69d6dc4faea
4308Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4309Date:   Sat Dec 19 10:05:42 2015 -0800
4310
4311    XDefaultOMIF: Remove comments referring to ancient Sun bug ids
4312    
4313    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4314    Reviewed-by: Adam Jackson <ajax@redhat.com>
4315
4316commit b738a104ae80e4270dd1d215ad0c6a80016982c2
4317Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4318Date:   Sat Dec 19 10:00:22 2015 -0800
4319
4320    XDefaultOMIF: additional code simplification
4321    
4322    Don't need to test for a case that we already returned for, don't need
4323    to store a count that will only ever be 1 if we didn't return, don't
4324    need to increment pointers to allow storing more than one item when we
4325    can only ever possibly do one.
4326    
4327    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4328    Reviewed-by: Adam Jackson <ajax@redhat.com>
4329
4330commit 31011cf100419269eae7409581c784638be503cf
4331Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4332Date:   Sat Dec 19 09:46:31 2015 -0800
4333
4334    XDefaultOMIF: replace strlen+Xmalloc+strcpy with strdup
4335    
4336    Code seems to have been originally written to handle appending multiple
4337    strings, but only ever operates on a single string.
4338    
4339    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4340    Reviewed-by: Adam Jackson <ajax@redhat.com>
4341
4342commit c27c46d5e22bbf60fb5608eaabe584b7fdeb0b09
4343Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4344Date:   Sat Dec 19 09:20:55 2015 -0800
4345
4346    Use strdup instead of Xmalloc+strcpy in _XDefaultOpenIM
4347    
4348    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4349    Reviewed-by: Adam Jackson <ajax@redhat.com>
4350
4351commit 4359dfabc04af082872d2bc2d5b52e26d6d93290
4352Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4353Date:   Fri Dec 4 22:20:53 2015 -0800
4354
4355    Delete #if 0 hunks of code
4356    
4357    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4358
4359commit a2f9dfac286f37e54eb47d4736cc3f0150224a84
4360Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4361Date:   Thu Dec 3 23:38:07 2015 -0800
4362
4363    Bug 93183: _XDefaultOpenIM memory leaks in out-of-memory error paths
4364    
4365    Rework code to store allocations directly into XIM struct instead of
4366    temporary local variables, so we can use _XCloseIM to unwind instead
4367    of duplicating it, and consistently jump to error handler on failure,
4368    instead of sometimes leaking and sometimes freeing.
4369    
4370    Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=93183
4371    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4372
4373commit 07a97b3944467dce085a1efd24706cc851d2caf2
4374Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4375Date:   Thu Dec 3 23:19:48 2015 -0800
4376
4377    Bug 93184: read_EncodingInfo invalid free
4378    
4379    Free the correct bits of memory if we run out and need to unwind
4380    
4381    Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=93184
4382    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4383
4384commit 11118e9eb3705fcbe42b6a68d4a8aa86ab0211f1
4385Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4386Date:   Sat Nov 28 13:18:11 2015 -0800
4387
4388    Remove unused definition of XCONN_CHECK_FREQ
4389    
4390    The only use of XCONN_CHECK_FREQ was removed in commit 15e5eaf62897b3179
4391    when we dropped the old Xlib connection handling in favor of xcb's.
4392    
4393    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4394    Reviewed-by: Mark Kettenis <kettenis@openbsd.org>
4395
4396commit 5f0da8311a61498edf073cc877f5b467bfd5f863
4397Author: James Cloos <cloos@jhcloos.com>
4398Date:   Thu Dec 3 18:24:44 2015 -0500
4399
4400    Fix another missing update in cf4d5989383a
4401    
4402    Reported in:
4403    
4404       https://bugs.freedesktop.org/show_bug.cgi?id=81875#c7
4405    
4406    Signed-off-by: James Cloos <cloos@jhcloos.com>
4407
4408commit 33840a5465a2e5fecab520bfbdd2d1bd0a456f51
4409Author: James Cloos <cloos@jhcloos.com>
4410Date:   Thu Dec 3 18:15:40 2015 -0500
4411
4412    Fix missing update in cf4d5989383a
4413    
4414    Reported in:
4415    
4416       https://bugs.freedesktop.org/show_bug.cgi?id=81875#c7
4417    
4418    Signed-off-by: James Cloos <cloos@jhcloos.com>
4419
4420commit dbcb847a08c44d99e4e1de2ba777d63238fb0e03
4421Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4422Date:   Sun Sep 27 18:38:32 2015 -0700
4423
4424    Get rid of some extraneous ; at the end of C source lines
4425    
4426    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4427    Reviewed-by: Thomas Klausner <wiz@NetBSD.org>
4428
4429commit 121a1bad334459f66f78bfca6df53dc841cf97f8
4430Author: Gunnar Hjalmarsson <gunnarhj@ubuntu.com>
4431Date:   Wed Sep 23 11:44:55 2015 -0400
4432
4433    Add compose file for pt_PT similar to pt_BR
4434    
4435    This is a forward of the Ubuntu bug https://launchpad.net/bugs/518056
4436    
4437    One of the conclusions from the discussion on that bug report, which
4438    basically is about typing the ccedilla character easily on a non-
4439    Portuguese keyboard, is that X11 should include a compose file for
4440    pt_PT.UTF-8 similar to the file for pt_BR.UTF-8.
4441    
4442    FDO bug: https://bugs.freedesktop.org/show_bug.cgi?id=90300
4443    
4444    Signed-off-by: Gunnar Hjalmarsson <gunnarhj@ubuntu.com>
4445    Signed-off-by: James Cloos <cloos@jhcloos.com>
4446
4447commit 3f41d8a7f82eb5ffbd5c5d36472cf7043186b904
4448Author: Julien Cristau <jcristau@debian.org>
4449Date:   Fri May 1 13:50:15 2015 +0200
4450
4451    Mark _XNextRequest as hidden
4452    
4453    It's only used inside XNextRequest(), so doesn't need to be exported.
4454    
4455    Signed-off-by: Julien Cristau <jcristau@debian.org>
4456    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4457
4458commit a72d2d06c002b644b7040a0a9936c8525e092ba8
4459Author: Christian Linhart <chris@demorecorder.com>
4460Date:   Mon Sep 7 17:17:32 2015 +0200
4461
4462    fix for Xlib 32-bit request number issues
4463    
4464    Make use of the new 64-bit sequence number API in XCB 1.11.1 to avoid
4465    the 32-bit sequence number wrap in libX11.
4466    
4467    Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=71338
4468    Signed-off-by: Christian Linhart <chris@demorecorder.com>
4469    Signed-off-by: Olivier Fourdan <ofourdan@redhat.com>
4470    Reviewed-by: Adam Jackson <ajax@redhat.com>
4471
4472commit 58af066a764305c506efea7065ef7679369a1a98
4473Author: Thomas Klausner <wiz@NetBSD.org>
4474Date:   Sun Jul 19 10:23:21 2015 +0200
4475
4476    Ignore test-driver (used by newer autoconf).
4477    
4478    Signed-off-by: Thomas Klausner <wiz@NetBSD.org>
4479    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4480
4481commit 80b9a346b9ba200fa4652560282e80d249519287
4482Author: Thomas Klausner <wiz@NetBSD.org>
4483Date:   Sun Jul 19 10:22:45 2015 +0200
4484
4485    Do not return() after exit().
4486    
4487    Signed-off-by: Thomas Klausner <wiz@NetBSD.org>
4488    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4489
4490commit c827edcd1c4a7f920aa25208083b5b58d60d2b44
4491Author: Ross Burton <ross.burton@intel.com>
4492Date:   Mon May 18 14:49:01 2015 +0100
4493
4494    Add missing NULL checks to ICWrap
4495    
4496    ICWrap.c dereferences the xim parameter passed in from client code without a
4497    NULL check.  I have seen mplayer trigger this resulting in a segfault.  In this
4498    case mplayer had called XOpenIM and NULL was returned which was later passed
4499    into XCreateIC.
4500    
4501    Patch originally by Drew Moseley <drew_moseley@mentor.com>.
4502    
4503    Signed-off-by: Ross Burton <ross.burton@intel.com>
4504    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4505    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4506
4507commit 26e0d2de294f8adf1ce65f1dbff0b59af41a00b9
4508Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4509Date:   Thu Jun 4 20:51:17 2015 -0700
4510
4511    Replace Xmalloc+memset pairs with Xcalloc calls
4512    
4513    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4514
4515commit f0286b2770ece10aef5e2e8c004260217f12fd25
4516Author: Bhavi Dhingra <b.dhingra@samsung.com>
4517Date:   Thu Jun 4 19:07:12 2015 -0700
4518
4519    omGeneric.c: Correct the parameter usage of sizeof
4520    
4521    Incorrect parameter usage with sizeof. Earlier passed argument FontData
4522    will be 4 bytes always as its a pointer hence the change is needed and
4523    FontDataRec should be used for memset.
4524    
4525    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4526    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4527
4528commit 47da70d75f9e48e800719c0db752f9ccd2d77aea
4529Author: Peter Hutterer <peter.hutterer@who-t.net>
4530Date:   Tue May 19 12:30:22 2015 +1000
4531
4532    Fix three "use of uninitialized variable" coverity warnings
4533    
4534    False positive, if rlen/nbytes are unset we quit early before using it. Still,
4535    initialize it so we don't have to deal with these warnings again.
4536    
4537    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
4538    Reviewed-by: Hans de Goede <hdegoede@redhat.com>
4539    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4540
4541commit 19a30f17f30e9ae9641a7c0634fc52134208b060
4542Author: Peter Hutterer <peter.hutterer@who-t.net>
4543Date:   Mon May 18 07:56:22 2015 +1000
4544
4545    Fix an indentation issue
4546    
4547    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
4548    Reviewed-by: Hans de Goede <hdegoede@redhat.com>
4549    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4550
4551commit 013ccece124b990217ad3bcf2c41688e8fda1df8
4552Author: Peter Hutterer <peter.hutterer@who-t.net>
4553Date:   Mon May 18 07:55:17 2015 +1000
4554
4555    Fix potential memory leak
4556    
4557    If we hit the depth limit, filename leaks. Move the depth check up before we
4558    allocate filename.
4559    Introduced in 226622349a4b1e16064649d4444a34fb4be4f464.
4560    
4561    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
4562    Reviewed-by: Hans de Goede <hdegoede@redhat.com>
4563    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4564
4565commit d3415d1f052530760b4617db45affcb984cfe35c
4566Author: Mike FABIAN <mfabian@redhat.com>
4567Date:   Mon Apr 20 17:59:30 2015 +0200
4568
4569    Fix spelling mistake introduced by 748d47e69f5c12d8557d56a8a8ec166588da7b93
4570    
4571    Sorry, my patch to fix the spelling mistakes in the ks_IN and sd_IN
4572    locales fixed it only partly, I introduced a new spelling mistake
4573    in the sd_IN locales. This patch fixes this.
4574    
4575    Signed-off-by: James Cloos <cloos@jhcloos.com>
4576
4577commit 748d47e69f5c12d8557d56a8a8ec166588da7b93
4578Author: Mike FABIAN <mfabian@redhat.com>
4579Date:   Wed Feb 19 11:46:45 2014 +0100
4580
4581    fix spelling mistakes in ks_IN and sd_IN devanagari locales
4582    
4583    The codeset must be *before* the modifier.
4584    
4585    See also: http://pubs.opengroup.org/onlinepubs/7908799/xbd/envvar.html
4586    
4587    opengroup> The syntax for these environment variables is thus defined as:
4588    opengroup>
4589    opengroup> [language[_territory][.codeset][@modifier]]
4590    
4591    Signed-off-by: James Cloos <cloos@jhcloos.com>
4592
4593commit c64fe5553aa4738f9d1d74a795f5651fbb7b1b09
4594Author: Mike FABIAN <mfabian@redhat.com>
4595Date:   Wed Feb 19 11:50:55 2014 +0100
4596
4597    add be_BY.UTF-8@latin and sr_RS.UTF-8@latin to locale.dir
4598    
4599    See also: https://bugzilla.redhat.com/show_bug.cgi?id=1066910
4600    
4601    If these are not in locale.dir,
4602    
4603        $ LANG=sr_RS.UTF-8@latin xterm
4604    
4605    and
4606    
4607        $ LANG=sr_RS@latin xterm
4608    
4609    give the warning:
4610    
4611        Warning: locale not supported by Xlib, locale set to C
4612    
4613    and some programs (like xmms) fail to find translations for Serbian
4614    in Latin because of this.
4615    
4616    Signed-off-by: James Cloos <cloos@jhcloos.com>
4617
4618commit c85be01b006126c4407eebd1eb6e01a17312b7b4
4619Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4620Date:   Sun Mar 22 16:46:45 2015 -0700
4621
4622    Move Compose \ o / to be with other emoji compose sequences
4623    
4624    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4625
4626commit 5a499ca7b064bf7e6a4fcc169f22862dce0c60c5
4627Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4628Date:   Mon Mar 9 15:28:29 2015 -0700
4629
4630    libX11 1.6.3
4631    
4632    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4633
4634commit c8e19b393defd53f046ddc2da3a16881221b3c34
4635Author: Joonas Javanainen <joonas.javanainen@gmail.com>
4636Date:   Thu Feb 5 17:31:04 2015 +0200
4637
4638    Fix XErrorEvent struct field order in man page
4639    
4640    In the man page the field "resourceid" was in a different place than
4641    in the actual struct layout in Xlib.h
4642    
4643    Signed-off-by: Joonas Javanainen <joonas.javanainen@gmail.com>
4644    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
4645
4646commit ddf3b09bb262d01b56fbaade421ac85b0e60a69f
4647Author: Ran Benita <ran234@gmail.com>
4648Date:   Tue Feb 3 13:23:50 2015 -0500
4649
4650    compose: fix the description of modifiers in compose sequences
4651    
4652    The Compose format has a feature which allows specifying certain
4653    modifiers must (or must not) be present with a given keysym in the
4654    sequence.
4655    
4656    The grammar in imLcPrs.c and the Compose man page both do not match what
4657    the code actually does (see the handling of the variables
4658    `modifier_mask` and `modifier` in parseline() in imLcPrs.c, which are
4659    eventually matched as `ev->state & modifier_mask == modifier`).
4660    
4661    Also explicitly list the accepted modifier names, since they are
4662    not standard (e.g. "Ctrl" instead of "Control").
4663    
4664    Signed-off-by: Ran Benita <ran234@gmail.com>
4665    Signed-off-by: James Cloos <cloos@jhcloos.com>
4666
4667commit 129f13f385c50e3d8b53ea7441b17386b0f36aeb
4668Author: Ran Benita <ran234@gmail.com>
4669Date:   Tue Feb 3 13:23:49 2015 -0500
4670
4671    xkb: fix misleading comment about consumed modifiers
4672    
4673    In the spec and the man page the `mods_rtrn` argument is described as
4674    "backfilled with unconsumed modifiers" but actually it is backfilled
4675    with the *consumed* modifiers. This is also mentioned a few lines below
4676    in each case.
4677    
4678    Signed-off-by: Ran Benita <ran234@gmail.com>
4679    Signed-off-by: James Cloos <cloos@jhcloos.com>
4680
4681commit 446f5f7f41317a85a0cd0efa5e6a1b37bc99fba2
4682Author: Ingo Schwarze <schwarze@usta.de>
4683Date:   Tue Dec 9 10:44:13 2014 +0100
4684
4685    Fix pasto in XkbGetKeyBehaviors(3) manual
4686    
4687    Reviewed-by: Thomas Klausner <wiz@NetBSD.org>
4688    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
4689
4690commit f3831dde6972e4da9e018c6a5f4013d8756a5e78
4691Author: Benno Schulenberg <bensberg@justemail.net>
4692Date:   Sun Nov 23 21:35:36 2014 +0100
4693
4694    nls: Sorting compose sequences rigorously in mirroring pairs, as is custom.
4695    
4696    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
4697
4698commit a51681b60c84109fe19f5d449e13080522499324
4699Author: Benno Schulenberg <bensberg@justemail.net>
4700Date:   Thu Sep 19 16:42:01 2013 +0200
4701
4702    nls: Remove a duplicate locale name, and sort some others more strictly.
4703    
4704    Also improve the grammar of the initial comment.
4705    
4706    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
4707    Signed-off-by: James Cloos <cloos@jhcloos.com>
4708
4709commit 426b7f850f5376db96a4b12420ee141603fcc3cd
4710Author: Benno Schulenberg <bensberg@justemail.net>
4711Date:   Fri Sep 20 12:37:29 2013 +0200
4712
4713    nls: Add a comment to the block of accented Hebrew letters.
4714    
4715    And align them in a nicer manner.
4716    
4717    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
4718    Signed-off-by: James Cloos <cloos@jhcloos.com>
4719
4720commit 7474c6f1ee78dd097b1d0b4c7e3e4ea41317e335
4721Author: Benno Schulenberg <bensberg@justemail.net>
4722Date:   Fri Sep 20 12:05:09 2013 +0200
4723
4724    nls: Add one lowercase compose variant for ®, to mirror those for ©.
4725    
4726    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
4727    Signed-off-by: James Cloos <cloos@jhcloos.com>
4728
4729commit 18dcd13514fa538afefa78c93523d9dbd4688e74
4730Author: Benno Schulenberg <bensberg@justemail.net>
4731Date:   Sat Sep 7 20:10:43 2013 +0200
4732
4733    nls: Adding the visual composing characters to two comment lines.
4734    
4735    The lines around them also contain the characters in the comments.
4736    
4737    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
4738    Signed-off-by: James Cloos <cloos@jhcloos.com>
4739
4740commit 18d8307575af748913d5da17e3de45da2a22ede4
4741Author: Benno Schulenberg <bensberg@justemail.net>
4742Date:   Sat Sep 7 20:09:32 2013 +0200
4743
4744    nls: Grouping a lone superscript minus together with its mates.
4745    
4746    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
4747    Signed-off-by: James Cloos <cloos@jhcloos.com>
4748
4749commit 33301cc45e6a2b8aa841ed6325547af970f8c4db
4750Author: Benno Schulenberg <bensberg@justemail.net>
4751Date:   Sat Sep 7 19:53:38 2013 +0200
4752
4753    nls: Grouping the compose sequences for Dstroke/dstroke together.
4754    
4755    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
4756    Signed-off-by: James Cloos <cloos@jhcloos.com>
4757
4758commit 78fe1becb6c18fa33c0d5f04005b45d856f8952a
4759Author: Gioele Barabucci <gioele@svario.it>
4760Date:   Sun Sep 21 23:05:55 2014 +0200
4761
4762    Add compose sequence for U+20B9 INDIAN RUPEE SIGN
4763    
4764    The compose sequence for the new Indian Rupee sign is modelled after
4765    the sequence for the Euro sign.
4766    
4767    Signed-off-by: Gioele Barabucci <gioele@svario.it>
4768    Signed-off-by: James Cloos <cloos@jhcloos.com>
4769
4770commit 6101b967b641355dd863fd1ce52c6a7d58bcbe68
4771Author: Gabriel Souza Franco <gabrielfrancosouza@gmail.com>
4772Date:   Thu Jul 31 22:23:28 2014 -0300
4773
4774    Add double-arrow compose sequence
4775    
4776    Signed-off-by: Gabriel Souza Franco <gabrielfrancosouza@gmail.com>
4777    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4778    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4779
4780commit 368a6401c6a3275d3497fec38a3dcbc38cd9df60
4781Author: James Cloos <cloos@jhcloos.com>
4782Date:   Fri Aug 1 18:30:42 2014 -0400
4783
4784    Add cs_CZ.UTF-8 locale to configure.ac
4785    
4786    Commit cf4d5989383a should have included this.
4787    
4788    Reported-by: Colin Harrison <colin.harrison@virgin.net>
4789    Signed-off-by: James Cloos <cloos@jhcloos.com>
4790
4791commit cf4d5989383acc4ed1b7eebadde9f380f2129766
4792Author: James Cloos <cloos@jhcloos.com>
4793Date:   Tue Jul 29 15:02:56 2014 -0400
4794
4795    Add nls for cs_CZ.UTF-8
4796    
4797    Based on the iso8859-2 compose, and a bug report by Vladimír Marek,
4798    override the en_US.UTF-8 use of <dead_caron> <u> to enter »ǔ« instead
4799    to enter »ů«, and likewise for the majuscule, for the Czech locale.
4800    
4801    This evidently is the norm for Czech keyboards.
4802    
4803    Fixes bz#81875.
4804    
4805    The XI18N_OBJS and XLC_LOCALE.pre files are empty, as they are for
4806    several other locales.  That may require an update.
4807    
4808    Reported-by:  Vladimír Marek <vlmarek@volny.cz>
4809    Signed-off-by: James Cloos <cloos@jhcloos.com>
4810
4811commit d9f569572bd14db31921471e7b877523b5cf1e4c
4812Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4813Date:   Sat Jul 26 12:17:47 2014 -0700
4814
4815    Fix source paths for out-of-tree lintlib builds
4816    
4817    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4818
4819commit 0885cad1e4a9ed57266582be320be55259c881bf
4820Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4821Date:   Sun Jul 20 09:21:20 2014 -0700
4822
4823    specs/XKB: Markup fractions as <{super,sub}script> instead of <emphasis>
4824    
4825    Matches the way they were styled in original doc, before conversion
4826    to DocBook.
4827    
4828    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4829
4830commit d0a9e9d56bb003315787201ee525b4d00fd54e06
4831Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4832Date:   Sat Jul 19 23:55:47 2014 -0700
4833
4834    specs/XKB: acknowledge my contributions
4835    
4836    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4837
4838commit 9c0be82017f513e2eb63d59b095f1cf1955f2e2b
4839Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4840Date:   Sat Jul 19 23:53:48 2014 -0700
4841
4842    specs/XKB: Trim leading spaces off text lines
4843    
4844    perl -i -p -e 's{/\*(\S)}{/* \1}g;' *.xml
4845    
4846    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4847
4848commit 75b0b10990f38d966c6fcc821bf15e58c5a90c91
4849Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4850Date:   Sat Jul 19 20:30:55 2014 -0700
4851
4852    specs/XKB: Add olinks to libX11 for "X Library Functions Affected by Xkb"
4853    
4854    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4855
4856commit 5009621799444e9d1d284719f871d00be13e7330
4857Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4858Date:   Sat Jul 19 12:34:28 2014 -0700
4859
4860    specs/XKB: Fix miscelleanous typos & spelling errors
4861    
4862    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4863
4864commit ac219bf1522a592bd3e3283b1a6ea3dfd2c3c48c
4865Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4866Date:   Sat Jul 19 00:46:41 2014 -0700
4867
4868    specs/XKB: add some more indexterms by hand
4869    
4870    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4871
4872commit 5c3aa4c69e65ecf2e56d5e26f3833fb5d31973c2
4873Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4874Date:   Sat Jul 19 00:48:02 2014 -0700
4875
4876    specs/XKB: fixup various formatting issues in <programlisting>s
4877    
4878    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4879
4880commit 70c648ff852fd9bc784967cfc77ea70bd7f14c8d
4881Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4882Date:   Fri Jul 18 23:56:29 2014 -0700
4883
4884    specs/XKB: fixup various formatting issues in <literallayout>s
4885    
4886    Including translating some that are really just lists into
4887    <simplelist> markup.
4888    
4889    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4890
4891commit 94b56774784ac00b9db02403aecea10bb0814c10
4892Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4893Date:   Fri Jul 18 23:18:52 2014 -0700
4894
4895    specs/XKB: add some more links by hand
4896    
4897    random bits where a link looked handy
4898    
4899    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4900
4901commit 7a15a934cdb07ed1b991bd0ef633f32ee00b1833
4902Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4903Date:   Fri Jul 18 23:16:31 2014 -0700
4904
4905    specs/XKB: add links for terms in definition list under figure 1.1
4906    
4907    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4908
4909commit 92b86fc3c50fbb7ab2e36af10a2fb3fe6284f58c
4910Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4911Date:   Fri Jul 18 22:52:16 2014 -0700
4912
4913    specs/XKB: add links to more tables listing section references
4914    
4915    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4916
4917commit 06a4483a05053b4f8d8c0d4cc0513c68ea912676
4918Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4919Date:   Fri Jul 18 22:49:34 2014 -0700
4920
4921    specs/XKB: Table 4.1: remove page numbers & unnecessary para tags
4922    
4923    Page numbers refer to old doc format, didn't translate to new one
4924    
4925    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4926
4927commit 61bd55c6d1ab211b89d604bd05555dc417f6e53d
4928Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4929Date:   Sat Jul 19 11:55:51 2014 -0700
4930
4931    specs/XKB: remove unwanted white space around C -&gt; struct references
4932    
4933    perl -i -0 -p -e 's{\s*-&gt;\s*}{-&gt;}g' *xml
4934    
4935    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4936
4937commit 2be0cc0b2abbcc98cfd150210dea415a04787251
4938Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4939Date:   Fri Jul 18 22:26:20 2014 -0700
4940
4941    specs/XKB: replace -&gt; with &rarr; when used as arrow, not in C structs
4942    
4943    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4944
4945commit bf1f3d6f6f995303624679ae546f507c70967dc0
4946Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4947Date:   Fri Jul 18 22:21:10 2014 -0700
4948
4949    specs/XKB: replace =&gt; with &rArr; for double arrows
4950    
4951    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4952
4953commit c7ee427fc0a72abd4a4f147ab16a5d1128a6a2ba
4954Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4955Date:   Sat Jul 19 11:33:35 2014 -0700
4956
4957    specs/XKB: Markup some ranges with &ndash; instead of -
4958
4959commit ec4075303c6c0d1d64bfe378e585968f9a137da7
4960Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4961Date:   Fri Jul 18 22:10:45 2014 -0700
4962
4963    specs/XKB: Markup some subtractions with &minus; instead of -
4964    
4965    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4966
4967commit 441a267e461132a38abed205245f028686526f1d
4968Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4969Date:   Fri Jul 18 22:04:40 2014 -0700
4970
4971    specs/XKB: make sure all files have DOCTYPEs so standard entities work
4972    
4973    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4974
4975commit 88fd70bee410f290b4f540405fdc7ecd85c26f25
4976Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4977Date:   Fri Jul 18 21:55:41 2014 -0700
4978
4979    specs/XKB: Markup quoted terms as <quote> instead of with ""
4980    
4981    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4982
4983commit 3576587ff10334a8f48c34b4fe5b7e829dec9a1b
4984Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4985Date:   Sat Jul 19 09:01:26 2014 -0700
4986
4987    specs/XKB: fixup newlines between tags and punctuation
4988    
4989    Get rid of unwanted whitespace before punctuation by moving them to the
4990    lines with the tags, instead of before & after.
4991    
4992    perl -i -0 -p -e 's{\>\s*\n([\.,;:])}{>\1\n}g' *xml
4993    
4994    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4995
4996commit 6d5ec492cd28c206423337f926503349702af5a6
4997Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4998Date:   Fri Jul 18 21:29:33 2014 -0700
4999
5000    specs/XKB: fixup newlines between tags and parens
5001    
5002    Get rid of unwanted whitespace inside parens by moving them to the
5003    lines with the tags, instead of before & after.
5004    
5005    perl -i -0 -p \
5006         -e 's{(?<!--) \(\s*\n\<}{\n(<}g;' \
5007         -e 's{\>\s*\n\)([\.,;]?)(?! [^\n]*--)}{>)\1\n}g' *xml
5008    
5009    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5010
5011commit 59d688f4c787250e0b401a92b1db0437d8c60f2d
5012Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5013Date:   Fri Jul 18 21:09:24 2014 -0700
5014
5015    specs/XKB: Markup key terms as <firstterm> instead of <emphasis>
5016    
5017    Also add <indexterm> entries for most of them, to make their definitions
5018    or introductions easy to find from the index.
5019    
5020    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5021
5022commit 861f3087ee0f501362a67501f384c2ca4c7bfe73
5023Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5024Date:   Thu Jul 10 20:00:53 2014 -0700
5025
5026    specs/XKB: Manual fixup of type markup
5027    
5028    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5029
5030commit 6b96259dabe52701fd1bcaa0625b574180c4e769
5031Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5032Date:   Thu Jul 10 15:00:30 2014 -0700
5033
5034    specs/XKB: Manual fixup of parameter markup
5035    
5036    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5037
5038commit 5526dce6812a84102f556fdde8f2b52b21c8bcdc
5039Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5040Date:   Thu Jul 10 13:40:40 2014 -0700
5041
5042    specs/XKB: Manual fixup of struct name/field markup
5043    
5044    Handles typos that caused the scripts to miss matches, misnamed structs, etc.
5045    
5046    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5047
5048commit c36ee1a4db4e7876526190b8ab6b0da5867f76f7
5049Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5050Date:   Wed Jul 9 23:26:37 2014 -0700
5051
5052    specs/XKB: Manual fixup of symbol name markup
5053    
5054    Handles typos that caused the scripts to miss matches, misnamed masks, etc.
5055    
5056    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5057
5058commit eb1453a0c69606b8af96b90ddccf1b93a069fb35
5059Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5060Date:   Wed Jul 9 00:03:23 2014 -0700
5061
5062    specs/XKB: Manual fixup of function name markup
5063    
5064    Handles typos that caused the scripts to miss matches, functions like
5065    malloc & free from other libraries, function name patterns, etc.
5066    
5067    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5068
5069commit 252d99c87b60ac6f3f2b36f292f9b3880daabe26
5070Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5071Date:   Thu Jul 10 19:42:31 2014 -0700
5072
5073    specs/XKB: Markup protocol requests as <systemitem> instead of <emphasis>
5074    
5075    No great fit in DocBook, so follow what we used in Xlib spec.
5076    
5077    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5078
5079commit ed60df10aad15057577d5714c955d22d2a446e51
5080Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5081Date:   Thu Jul 10 15:45:57 2014 -0700
5082
5083    specs/XKB: Markup keyboard keys as <keycap> instead of <emphasis>
5084    
5085    Also uses <guilabel> for LED names/labels, for lack of a better fit
5086    in DocBook.
5087    
5088    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5089
5090commit f57b91ee497414083cc1bf481d28eb9ad9f965fb
5091Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5092Date:   Thu Jul 10 15:41:19 2014 -0700
5093
5094    specs/XKB: Markup characters & strings as <literal> instead of <emphasis>
5095    
5096    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5097
5098commit cfd4279c9b59d7e87c9f7c67692c87973adb7667
5099Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5100Date:   Thu Jul 10 11:08:14 2014 -0700
5101
5102    specs/XKB: Markup structs as <struct{name,field}> instead of <emphasis>
5103    
5104    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5105
5106commit a014bb4cc013b0d1b76524b7868e860c7e7ebc79
5107Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5108Date:   Wed Jul 9 23:30:54 2014 -0700
5109
5110    specs/XKB: Markup symbol names in table entries too
5111    
5112    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5113
5114commit 907f7ad7a7a977bf4f19daa3143d47c4d07ca33d
5115Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5116Date:   Tue Jul 8 23:35:48 2014 -0700
5117
5118    specs/XKB: Markup *Ptr as <type> instead of <emphasis>
5119    
5120    perl -i -p -e 's{<emphasis>(\w*Ptr)</emphasis>}{<type>\1</type>}g' *xml
5121    
5122    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5123
5124commit 9f6c00629fd4b713082cc11f9150f7aafd272c89
5125Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5126Date:   Tue Jul 8 23:34:29 2014 -0700
5127
5128    specs/XKB: Markup *Rec as <structname> instead of <emphasis>
5129    
5130    perl -i -p -e \
5131     's{<emphasis>(\w*Rec)</emphasis>}{<structname>\1</structname>}g' *xml
5132    
5133    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5134
5135commit 83839e37802b8b752c77859a95de60ad757feb79
5136Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5137Date:   Tue Jul 8 23:29:49 2014 -0700
5138
5139    specs/XKB: Markup XKB macros as <symbol> instead of <emphasis>
5140    
5141    Performed via:
5142     perl -n -e 'printf "s{<emphasis>\\s*%s\\s*</emphasis>}{<symbol>%s</symbol>};\n", $1, $1 if m{^#define\s+([^\s\(]*)}' \
5143      /usr/include/X11/extensions/XK*h /usr/include/X11/XKBlib.h \
5144      | sort -u > xkb-defines.pl
5145     perl -i -p -f xkb-defines.pl *.xml
5146    
5147    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5148
5149commit 9e397ed37ce4cc70621de347de3a795df88d4506
5150Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5151Date:   Tue Jul 8 22:53:12 2014 -0700
5152
5153    specs/XKB: Use ° instead of o for degrees.
5154    
5155    Conversion from framemaker turned superscripted "o" into plain "o".
5156    
5157    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5158
5159commit 3b8364c21f5119105a2c14ae8cc75a11494cb7a7
5160Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5161Date:   Tue Jul 8 22:46:03 2014 -0700
5162
5163    specs/XKB: Markup keysyms as <keysym> instead of <emphasis>
5164    
5165    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5166
5167commit 33bef065683c8f910f3722730503c0c0699ee8be
5168Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5169Date:   Tue Jul 8 22:26:56 2014 -0700
5170
5171    specs/XKB: Markup NULL as <symbol> instead of <emphasis>
5172    
5173    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5174
5175commit f10aa1e09468bd28454d85ac8ab55d9dc7178029
5176Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5177Date:   Tue Jul 8 22:22:29 2014 -0700
5178
5179    specs/XKB: Markup function args as <parameter> instead of <emphasis>
5180    
5181    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5182
5183commit 79ba58cceb69521fcb313c69233cf93a9fcb177f
5184Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5185Date:   Mon Jul 7 23:56:13 2014 -0700
5186
5187    specs/XKB: Convert remaining error names to errorname tags
5188    
5189    Most were caught by applying libX11 lists, but BadKeyboard & XKB*_Bad*
5190    are XKB-specific.   (Plus some were badly split across tag boundaries.)
5191    
5192    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5193
5194commit 42b2f5388c399949ece377f9cc9c479c06964972
5195Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5196Date:   Mon Jul 7 23:16:56 2014 -0700
5197
5198    specs/XKB: manually fixup some more emphasis tagging mismatches
5199    
5200    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5201
5202commit 3b2f47d44a55d93c65455ff183f3b47da04b1de1
5203Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5204Date:   Mon Jul 7 23:02:31 2014 -0700
5205
5206    specs/XKB: re-normalize <emphasis> layout in xml files
5207    
5208    Same script as before, just with <!-- xref --> comments out of the way
5209    now.
5210    
5211    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5212
5213commit ce95f152eda509263874c53fb7c6b4a6bdab2c29
5214Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5215Date:   Mon Jul 7 22:59:25 2014 -0700
5216
5217    specs/XKB: Remove remaining xref comments
5218    
5219    All the places marked by these have been turned into the appropriate
5220    link, xref, or olink tags now.
5221    
5222    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5223
5224commit 6590b66e19af8dff68888ac403ac82f5d585b4e2
5225Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5226Date:   Mon Jul 7 22:56:36 2014 -0700
5227
5228    specs/XKB: make olinks to xkbproto for references in section 10.13
5229    
5230    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5231
5232commit fcda446877a62e7443d7bc704ba3610e90d1e755
5233Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5234Date:   Mon Jul 7 22:22:28 2014 -0700
5235
5236    specs/XKB: Add <figure> tags and make Figure references link to them
5237    
5238    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5239
5240commit 087a2338476719e340dc3d5af0df6fdc4a26ce7a
5241Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5242Date:   Mon Jul 7 21:30:01 2014 -0700
5243
5244    specs/XKB: Turn Table references into links
5245    
5246    Adds id attributes to all table tags so we can link to them
5247    
5248    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5249
5250commit 135fa07b74cb50172c6a75768d499cd87ddb336e
5251Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5252Date:   Sun Jul 6 21:29:59 2014 -0700
5253
5254    specs/XKB: Turn section references into xref links
5255    
5256    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5257
5258commit 53e931d79926af8a3996253efd8b5f6c21d9e5d7
5259Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5260Date:   Sun Jul 6 21:17:18 2014 -0700
5261
5262    specs/XKB: Turn Chapter references into xref links
5263    
5264    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5265
5266commit b7f00ce5bcb0c00696bb82503ab548e14f04d17d
5267Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5268Date:   Sun Jul 6 20:40:18 2014 -0700
5269
5270    specs/XKB: Apply <emphasis> to semantic tag transformations from Xlib spec
5271    
5272    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5273
5274commit b00a7ddff2744238fbfe31c2298b02028a45a6ff
5275Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5276Date:   Sun Jul 6 20:34:51 2014 -0700
5277
5278    specs/XKB: Markup function names as <function> instead of <emphasis>
5279    
5280    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5281
5282commit bfbb58b7679221cb5c9212665209ea9099ad079a
5283Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5284Date:   Sun Jul 6 20:25:46 2014 -0700
5285
5286    specs/XKB: normalize <emphasis> layout in xml files
5287    
5288    - Stop placing <emphasis> on empty space, commas, and periods.
5289    - Move periods & commas after closing </emphasis> tag
5290    - move <emphasis> open & close tags to same line, instead of mirroring
5291      nroff layout.
5292    
5293    Simplifies automating further transformations of these tags.
5294    
5295    Performed via:
5296     perl -i -0 -p \
5297        -e 's{<emphasis>(\s*)</emphasis>}{}msg;' \
5298        -e 's{<emphasis>([\s\.,]*)</emphasis>\s*}{\1}msg;' \
5299        -e 's{\n([\.,])\s*}{\1\n}msg;' \
5300        -e 's{([^\.])([\.,])\s*</emphasis>}{\1</emphasis>\2}msg;' \
5301        -e 's{\s*<emphasis>\n\s*}{\n<emphasis>}msg;' *xml
5302    
5303    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5304
5305commit b16ee69a0103109a661a88140a1765dcd7bda634
5306Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5307Date:   Sun Jul 6 15:57:41 2014 -0700
5308
5309    specs/XKB: Convert to funcsynopsis+variablelist instead of informaltable
5310    
5311    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5312
5313commit b41d43d4cf0c0a1a049a171ee8cf6fd8a3ee4335
5314Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5315Date:   Sun Jul 6 19:29:38 2014 -0700
5316
5317    specs/XKB: Add index
5318    
5319    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5320
5321commit 72ae1d793be078db521dda60af578ece71f364de
5322Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5323Date:   Sun Jul 6 13:21:40 2014 -0700
5324
5325    specs/XKB: Fix various markup issues in functiondecl tables
5326    
5327    - Merge some functionargdecl entries incorrectly split across rows
5328    - Add missing parameter name markup to some functionargdecls
5329    - Add missing function prototype markup to a functiondecl
5330    - Remove stray emphasis tags in a functiondecl
5331    
5332    Allows them to correctly convert to funcsynopsis markup in next step.
5333    
5334    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5335
5336commit 9fdb973012de80ac60dbc59c39162f4e839fc5a4
5337Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5338Date:   Sun Jul 6 12:15:23 2014 -0700
5339
5340    specs/XKB: Convert header filenames to filename tags
5341    
5342    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5343
5344commit 5525e8433f93bce464412f27cffa203ea628f368
5345Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5346Date:   Tue Jul 8 00:05:32 2014 -0700
5347
5348    specs/libX11: disengender a user reference
5349    
5350    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5351
5352commit d8679eae9317b389ad4acb0430360ee0663e2af8
5353Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5354Date:   Fri Jul 11 18:41:42 2014 -0700
5355
5356    specs/libX11: Correct value of IconicState to match Xutil.h
5357    
5358    Xutil.h has always had a value of 3 for IconicState, since 2 was
5359    previously used for the long-obsolete ZoomState, so make the spec
5360    match what programs have used for decades.
5361    
5362    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5363    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
5364
5365commit 7ce2b0f12a48fb832f457cbafb0e1144ef557f9a
5366Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5367Date:   Fri Jul 11 10:34:08 2014 -0700
5368
5369    Use C99 named initializers to fill in events passed to XSendEvent
5370    
5371    Forces compiler to zero-fill unset fields in the struct (fixing bug 81236)
5372    and allows optimizer to order field initialization to best fit cache layout
5373    or other considerations.
5374    
5375    Before & after output of gcc -S on AMD64 shows insertion of "rep stosq"
5376    instructions to rapidly zero-fill structs.
5377    
5378    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5379    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
5380
5381commit 169805e1dc8743b37b00e24cf3a5eb8748f733ad
5382Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5383Date:   Sun Jul 6 11:13:49 2014 -0700
5384
5385    Fix validation of ctrls parameter to XkbGetPerClientControls()
5386    
5387    Nothing in the XKB spec states that the memory pointed to by ctrls has to
5388    be initialized to any given value when passed to the function, only that
5389    it is set by the function to the values returned by the X server:
5390    http://www.x.org/releases/X11R7.7/doc/libX11/XKB/xkblib.html#The_Miscellaneous_Per_client_Controls
5391    
5392    The check for the incoming value seems to be copied from
5393    XkbSetPerClientControls without explanation.
5394    
5395    Instead change it to checking if ctrls is non-NULL, since there's no
5396    point asking the X server to return a value the caller won't even see.
5397    
5398    Found while investigating report from cppcheck-1.65:
5399    [src/xkb/XKB.c:699] -> [src/xkb/XKB.c:719]: (warning) Possible null pointer
5400     dereference: ctrls - otherwise it is redundant to check it against null.
5401    
5402    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5403
5404commit 1e362fac92c6688fb42b195ccad16d7a337a34c1
5405Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5406Date:   Sun Jul 6 10:54:57 2014 -0700
5407
5408    Fix map->num_types check in XkbAddKeyType()
5409    
5410    Check is intended to ensure we allocate at least XkbNumRequiredTypes
5411    in map, but was accidentally marked with a ! causing the wrong check.
5412    
5413    Reported-by: Harms <wharms@bfs,de>
5414    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
5415    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5416
5417commit ff9a5c199251a84fa59d14fd48dadb3f8920b54b
5418Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5419Date:   Sun Jul 6 15:08:21 2014 -0700
5420
5421    specs/libX11: Add missing spaces to 'unsignedint' & 'unsignedlong' types
5422    
5423    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5424
5425commit a06ea86773568926c36ae650b188fc818d540db7
5426Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5427Date:   Sun Jul 6 15:04:27 2014 -0700
5428
5429    specs/libX11: Fix height & width in parameter lists to be two separate entries
5430    
5431    "unsigned int width, unsigned int height", not a single parameter "height"
5432    of type "unsignedintwidth,".
5433    
5434    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5435
5436commit e4db5e503682b3304fe82e4b17b419a8e0f0a9f2
5437Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5438Date:   Sun Jul 6 14:38:10 2014 -0700
5439
5440    specs/libX11: Fix x & y in parameter lists to be two separate parameters
5441    
5442    "int x, int y" not a single parameter y of type "intx"
5443    
5444    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5445
5446commit aa8bda0db2c6d82515b90ceb4a7d6403e38895e9
5447Author: walter harms <wharms@bfs.de>
5448Date:   Sat Jun 7 12:03:17 2014 +0200
5449
5450    lcDefConv.c: fix use before check
5451    
5452    * Do not use variables before checked for NULL.
5453    * remove some superfluid spaces (Mark Kettenis)
5454    
5455    Signed-off-by: Harms <wharms@bfs,de>
5456    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5457    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5458
5459commit c0670e5d3ae330e611ecb05303d579a4f8a3d114
5460Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5461Date:   Mon Jun 16 15:16:10 2014 -0700
5462
5463    Start adding Unicode 7.0 support to compose table
5464    
5465    New characters defined in http://www.unicode.org/charts/PDF/U1F300.pdf
5466    
5467    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5468
5469commit a4679baaa18142576d42d423afe816447f08336c
5470Author: walter harms <wharms@bfs.de>
5471Date:   Sat Jun 7 11:54:34 2014 +0200
5472
5473    rm redundant null checks
5474    
5475    remove more redundant NULL checks
5476    note that _XkbFree() is really Xfree()
5477    
5478    Signed-off-by: Harms <wharms@bfs,de>
5479    Reviewed-by: Rémi Cardona <remi@gentoo.org>
5480    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
5481
5482commit 602d7f5030fe93b2fe7f29fb7310deb6f50cb6df
5483Author: walter harms <wharms@bfs.de>
5484Date:   Sat Jun 7 15:17:27 2014 +0200
5485
5486    libX11: rm redundante NULL checks
5487    
5488    This patch removes the last remaining  NULL checks for Xfree()
5489    
5490    Signed-off-by: Harms <wharms@bfs,de>
5491    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
5492    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
5493
5494commit d81fed46144d089bdfa1d916a28dffc9ebffe1e4
5495Author: walter harms <wharms@bfs.de>
5496Date:   Fri Jun 6 22:53:05 2014 +0200
5497
5498    Remove more redundant null checks before Xfree()
5499    
5500    Signed-off-by: Harms <wharms@bfs,de>
5501    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5502    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5503
5504commit 0b7fd7dbec136bae317bd9a329309eaa089beee3
5505Author: walter harms <wharms@bfs.de>
5506Date:   Thu Jun 5 18:37:40 2014 +0200
5507
5508    Remove redundant null checks before free
5509    
5510    This patch removes some redundant null checks before free.
5511    It should not change the code otherwise. Be aware that this
5512    is only the first series.
5513    
5514    Signed-off-by: Harms <wharms@bfs,de>
5515    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5516    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5517
5518commit 7d452fad5068ba92b964e92bc46708046f4044aa
5519Author: walter harms <wharms@bfs.de>
5520Date:   Wed Jun 4 17:12:31 2014 +0200
5521
5522    libX11/lcUTF8.c fix: dereferenced before check
5523    
5524    * Do not use variables before checked for NULL.
5525    
5526    Signed-off-by: Harms <wharms@bfs,de>
5527    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5528    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5529
5530commit a3808f51517a720e7ff738208af60865779dd6ef
5531Author: walter harms <wharms@bfs.de>
5532Date:   Wed Jun 4 17:10:20 2014 +0200
5533
5534    libX11/XKBNames.c fix: dereferenced before check
5535    
5536    * Do not use variables before checked for NULL.
5537    
5538    Signed-off-by: Harms <wharms@bfs,de>
5539    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5540    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5541
5542commit b3c9f6a17e430aabe16aecbe097f7312a0f6ff78
5543Author: walter harms <wharms@bfs.de>
5544Date:   Wed Jun 4 17:08:12 2014 +0200
5545
5546    libX11/lcGenConv.c fix: dereferenced before check
5547    
5548    * Do not use variables before checked for NULL.
5549    
5550    Signed-off-by: Harms <wharms@bfs,de>
5551    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5552    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5553
5554commit c6bc28d433243c32b3f74955f1478451b4fd27b5
5555Author: Andreas Schwab <schwab@linux-m68k.org>
5556Date:   Sun Jan 19 16:59:13 2014 +0100
5557
5558    Restore lost tabs in sed commands
5559    
5560    Signed-off-by: Andreas Schwab <schwab@linux-m68k.org>
5561    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5562
5563commit e3dc0d17339e61eaf0b51b8907510984e3bf23cb
5564Author: Benno Schulenberg <bensberg@justemail.net>
5565Date:   Thu Sep 19 11:01:11 2013 +0200
5566
5567    nls: Transform Brazilian compose file to an include plus three overrides.
5568    
5569    Signed-off-by: James Cloos <cloos@jhcloos.com>
5570
5571commit 16c87dda4da2271aaecc5d8b6fe6ecd072cc584c
5572Author: Benno Schulenberg <bensberg@justemail.net>
5573Date:   Fri Sep 6 12:10:01 2013 +0200
5574
5575    nls: Adding the missing compose sequences with <comma> for O with ogonek.
5576    
5577    All other vowels with ogoneks can already be composed using <comma>.
5578    
5579    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
5580    Signed-off-by: James Cloos <cloos@jhcloos.com>
5581
5582commit 655b60f48376069750b151c46da836fdd411c83b
5583Author: Benno Schulenberg <bensberg@justemail.net>
5584Date:   Fri Sep 6 12:04:24 2013 +0200
5585
5586    nls: Adding the missing postfix sequences for composing vowels with ogoneks.
5587    
5588    It existed for lowercase i, but not for uppercase I nor the other vowels.
5589    
5590    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
5591    Signed-off-by: James Cloos <cloos@jhcloos.com>
5592
5593commit 7f8f9a36ef901f31279c385caf960a22daeb33fe
5594Author: Owen W. Taylor <otaylor@fishsoup.net>
5595Date:   Fri May 9 18:21:05 2014 -0400
5596
5597    Fix XNextRequest() after direct usage of XCB
5598    
5599    When XCB owns the X socket, dpy->request is not updated, so
5600    NextRequest() and XNextRequest() return the wrong value. There's
5601    nothing we can do to fix NextRequest() while retaining ABI compat,
5602    but change XNextRequest() to grab the socket back from XCB,
5603    updating dpy->request.
5604    
5605    Signed-off-by: Owen W. Taylor <otaylor@fishsoup.net>
5606    Reviewed-by: Uli Schlachter <psychon@znc.in>
5607    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5608
5609commit 0f9e734ea96556fe750a4baf354d42d5a87bcd14
5610Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5611Date:   Sun May 4 11:54:59 2014 -0700
5612
5613    Add missing .TE tags to end tables in Xkb man pages
5614    
5615    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5616
5617commit 280274e5292e013b43e552274111fab434f5ed4e
5618Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5619Date:   Sun May 4 11:23:17 2014 -0700
5620
5621    XCreateGC.man: simplify table to work with Solaris tbl
5622    
5623    Having every table cell be a text diversion (T{...T}) was too much for
5624    Solaris tbl to handle, and thus "man XCreateGC" would print the error
5625    /usr/man/man3x11/XCreateGC.3x11: line 402: Too many text block diversions
5626    tbl quits
5627    and not display the table of mask bits or any text in the man page after
5628    that table.   Since the #define column doesn't need special handling,
5629    making it not use text diversions brings the table under the tbl limit.
5630    
5631    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5632
5633commit 93bb325a54025dd15f4744abce54b358960420f9
5634Author: James Cloos <cloos@jhcloos.com>
5635Date:   Tue May 20 17:30:10 2014 -0400
5636
5637    Revert "nls: Adding compose sequences (with <parenleft> first) that GTK also has."
5638    
5639    Parenleft is already in use for sequences of the form <(> <letter> <)>
5640    to generate circled letters.
5641    
5642    Eg, <Multikey> <parenleft> <a> <parenright> generates ⓐ.
5643    
5644    This reverts commit f020235f4bd91fb6eade82f8c9f7b85a57981768.
5645    
5646    Signed-off-by: James Cloos <cloos@jhcloos.com>
5647
5648commit 060707851be918f2f507a26d17b016f764ddf2b4
5649Author: Benno Schulenberg <bensberg@justemail.net>
5650Date:   Fri Sep 6 11:42:59 2013 +0200
5651
5652    nls: Adding accessible compose sequences for Ș and Ț (with comma below).
5653    
5654    Compose sequences with <dead_belowcomma> exist, but very few keyboard
5655    layouts contain that symbol.  So a more usual character is needed to be
5656    able to easily compose Ș, ș, Ț and ț.  The semicolon is normally only
5657    used for composing letters with ogoneks -- but only vowels take ogoneks,
5658    so the character is free for consonants, and thus <semicolon> is used
5659    here to compose commas below.  It is somewhat fitting, because on most
5660    Romanian keyboards the Ș is placed on that key, and the Ț next to it.
5661    
5662    (Oh -- the more obvious sequences with <comma> were already taken for
5663    composing S and T with cedillas.)
5664    
5665    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
5666    Signed-off-by: James Cloos <cloos@jhcloos.com>
5667
5668commit ca435c2f753aa2961fb35ac448cdb2cc77112755
5669Author: Benno Schulenberg <bensberg@justemail.net>
5670Date:   Tue Sep 3 21:10:33 2013 +0200
5671
5672    nls: Ordering some compose sequences in a more customary way.
5673    
5674    The custom seems to be: pairing the ones that have only the sequence of
5675    two keys reversed, and putting the one with the diacritic first first.
5676    
5677    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
5678    Signed-off-by: James Cloos <cloos@jhcloos.com>
5679
5680commit f020235f4bd91fb6eade82f8c9f7b85a57981768
5681Author: Benno Schulenberg <bensberg@justemail.net>
5682Date:   Tue Sep 3 20:44:42 2013 +0200
5683
5684    nls: Adding compose sequences (with <parenleft> first) that GTK also has.
5685    
5686    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
5687    Signed-off-by: James Cloos <cloos@jhcloos.com>
5688
5689commit bda0b3b5bd19154206dc40166364e73d4b6b1374
5690Author: Benno Schulenberg <bensberg@justemail.net>
5691Date:   Tue Sep 3 11:14:16 2013 +0200
5692
5693    nls: Allowing Romanian Ă and ă to be composed also with lowercase <u>.
5694    
5695    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
5696    Signed-off-by: James Cloos <cloos@jhcloos.com>
5697
5698commit 8be4610939b833587954957f5963eb4191b43d19
5699Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5700Date:   Thu Mar 13 23:22:48 2014 -0700
5701
5702    Fix "follwing" typo in en_US.UTF-8/Compose comment
5703    
5704    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5705
5706commit 6f30e9034f29c3ae6ad7e617b3d5e903aa107b6a
5707Author: Reuben Thomas <rrt@sc3d.org>
5708Date:   Mon Jan 27 14:18:24 2014 +0000
5709
5710    en_US.UTF-8/Compose: Fix apparent copy-paste-o, changing capital to small A.
5711    
5712    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5713
5714commit d6bd988bc00494914b38b95ee5df77ac4f32f19f
5715Author: Peter Hutterer <peter.hutterer@who-t.net>
5716Date:   Mon Mar 3 12:38:48 2014 +1000
5717
5718    man: fix man page for XkbGetMap
5719    
5720    Returned structure must be freed with XkbFreeKeyboard().
5721    
5722    Reported-by: Morten Bøgeskov <mb@dbc.dk>
5723    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
5724
5725commit a6dcf2201a05adbff54122df05a1e6325936abb6
5726Author: Ran Benita <ran234@gmail.com>
5727Date:   Tue Feb 11 13:26:16 2014 +0200
5728
5729    Remove dead USE_OWN_COMPOSE-protected code
5730    
5731    The build doesn't provide any way to define this option. It also refers
5732    to files (imComp.h) and functions (e.g. XimCompInitTables(),
5733    XimCompProcessSym()) which are not found anywhere, and the ordinary
5734    Compose implementation in xim doesn't use any of it.
5735    
5736    Signed-off-by: Ran Benita <ran234@gmail.com>
5737    Reviewed-by: Julien Cristau <jcristau@debian.org>
5738    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5739
5740commit b64bee2ddb7b96f00713a8b8435f11ad9ac1c9e0
5741Author: Ran Benita <ran234@gmail.com>
5742Date:   Sun Feb 16 15:24:58 2014 +0200
5743
5744    nls: always use XCOMM instead of # for comments in Compose.pre files
5745    
5746    Lines starting with # are considered as preprocessor directives in the
5747    .pre files.
5748    
5749    Fixes warnings like:
5750    <stdin>:3:0: error: invalid preprocessing directive #Khmer
5751    
5752    Signed-off-by: Ran Benita <ran234@gmail.com>
5753    Signed-off-by: James Cloos <cloos@jhcloos.com>
5754
5755commit 470e2289a3ebc59c5a35e54e1adeb0f261d5bf88
5756Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5757Date:   Thu Feb 6 13:48:08 2014 -0800
5758
5759    Fix typos in Xrm.c comments
5760    
5761    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5762
5763commit aacf95dacc7c598e7297894580d4d655593813b2
5764Author: Marko Myllynen <myllynen@redhat.com>
5765Date:   Mon Jan 13 16:43:18 2014 +0200
5766
5767    Annotate Finnish Compose map with Unicode code points
5768    
5769    Scripted annotation, no functional changes.
5770    
5771    Signed-off-by: James Cloos <cloos@jhcloos.com>
5772
5773commit 20fdccd81b54678376d49e00edfebbbe94951f07
5774Author: Teemu Likonen <tlikonen@iki.fi>
5775Date:   Fri Jul 20 19:21:04 2012 +0300
5776
5777    Fix "RING ABOVE" key in the Finnish compose file
5778    
5779    The Finnish keyboard standard defines that <dead_abovering> <space> must
5780    insert the character U+02DA RING ABOVE. Currently the Finnish Compose
5781    file inserts U+00B0 DEGREE SIGN even though the line's comment says
5782    "RING ABOVE". This commit changes the character to U+02DA RING ABOVE.
5783    
5784    Signed-off-by: Teemu Likonen <tlikonen@iki.fi>
5785    Signed-off-by: James Cloos <cloos@jhcloos.com>
5786
5787commit 8757e2ac8e04f2932ff437127f3e2ae9ac20c1d7
5788Author: Ran Benita <ran234@gmail.com>
5789Date:   Wed Jan 29 02:11:47 2014 +0200
5790
5791    nls: remove duplicate 'ohorn' and 'uhorn' compose sequences
5792    
5793    Since <Ohorn> == <U01A0> and <ohorn> == <U01A1>, when translated to
5794    keysyms:
5795    
5796     #define XK_Ohorn                      0x10001a0  /* U+01A0 LATIN CAPITAL LETTER O WITH HORN */
5797     #define XK_ohorn                      0x10001a1  /* U+01A1 LATIN SMALL LETTER O WITH HORN */
5798    
5799    (and similarly for uhorn), there is no need to have both names. Remove
5800    the unicode literal ones.
5801    
5802    Signed-off-by: Ran Benita <ran234@gmail.com>
5803    Signed-off-by: James Cloos <cloos@jhcloos.com>
5804
5805commit b98998cb3bea7cb3005f2e9d5bc5332d14b1d5d3
5806Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5807Date:   Sat Jan 18 22:35:18 2014 -0800
5808
5809    Add RANDR 1.4 requests & events to XErrorDB
5810    
5811    Checked against randrproto.txt & randr.h
5812    
5813    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5814
5815commit 321392ded15a7ee9d177d4ebe8846336ba76741c
5816Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5817Date:   Fri Jan 3 20:04:33 2014 -0800
5818
5819    Remove unused ETEST & ESZTEST macros from XlibInt.c
5820    
5821    Left behind when 15e5eaf62897 removed support for building without XCB.
5822    
5823    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5824    Reviewed-by: Jasper St. Pierre <jstpierre@mecheye.net>
5825
5826commit 1ffc0c5503d4f419fdbc765243832a53491bf5bc
5827Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5828Date:   Thu Dec 26 09:26:13 2013 -0800
5829
5830    _XkbReadGeomOverlay: check for NULL first, then use pointer
5831    
5832    Flagged by cppcheck 1.62:
5833    [lib/libX11/src/xkb/XKBGeom.c:479] -> [lib/libX11/src/xkb/XKBGeom.c:480]:
5834     (warning) Possible null pointer dereference: row - otherwise it is
5835     redundant to check it against null.
5836    
5837    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5838
5839commit ddf5f130cc29bb3bf8b9c757dcbac31bc56e9379
5840Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5841Date:   Thu Dec 26 09:22:49 2013 -0800
5842
5843    XkbSelectEventDetails: remove unnecessary assignments
5844    
5845    clear & selectAll are set to 0 already a few lines earlier,
5846    affectWhich is set to XkbMapNotifyMask a few lines later.
5847    None are used between the other assignments and the removed ones.
5848    
5849    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5850
5851commit 3d69b0a83e62f8f6fbdd952fc49cdbdf8825e1e6
5852Author: Jon TURNEY <jon.turney@dronecode.org.uk>
5853Date:   Thu Oct 7 18:46:08 2010 +0100
5854
5855    Don't try so hard to find a matching font with the given encoding
5856    
5857    See http://sourceware.org/bugzilla/show_bug.cgi?id=10948
5858    
5859    Currently, if the locale is UTF-8, no CJK fonts are installed, and someone
5860    does XCreateFontSet() with a font name of "*", we end up asking the server
5861    to list the (non-existent) fonts 11 times for each CJK encoding, which can
5862    take a while.
5863    
5864    A * wildcard can match multiple components in a XLFD name in XListFonts(),
5865    so there's no need to try adding more than one to get a match.
5866    
5867    We do try once with a leading '*-' in case the fontname isn't a full
5868    well-formed XLFD name, maybe even that isn't needed?
5869    
5870    (See also http://invisible-island.net/xterm/xterm.faq.html#slow_menus)
5871    
5872    Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
5873    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5874
5875commit 7e163300735d4bcd3386b86eec112acdad139c59
5876Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5877Date:   Mon Dec 2 21:51:27 2013 -0800
5878
5879    unifdef -UISC
5880    
5881    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5882
5883commit 1e43c262d13cab2b759665f9f13bdedbc7afbfd4
5884Author: Benno Schulenberg <bensberg@justemail.net>
5885Date:   Thu Sep 19 13:20:05 2013 +0200
5886
5887    nls: Fix transposed locale identifier for Khmer.
5888    
5889    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
5890    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5891    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5892
5893commit 0e45f64766c0557c8e99a979c70ca6f55664dae7
5894Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5895Date:   Sat Nov 16 20:21:54 2013 -0800
5896
5897    Drop X_LOCALE fallback for OS'es without setlocale()
5898    
5899    C89 or bust!   This was documented as being needed for "only Lynx,
5900    Linux-libc5, OS/2" and has never been enabled in modular builds,
5901    since none of those platforms have had anyone step up to add support
5902    since the X11R7 conversion to autotools.
5903    
5904    Mostly performed with unifdef -UX_LOCALE, followed by removal of files
5905    left without any purpose, and manual cleanup of remaining references.
5906    
5907    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5908    Reviewed-by: Adam Jackson <ajax@redhat.com>
5909
5910commit 6cb02b166361200da35ba14f52cd9aaa493eb0ea
5911Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5912Date:   Wed Oct 23 10:37:53 2013 -0700
5913
5914    Xcms file parsing should not require the impossible to succeed
5915    
5916    The field2 helper function, to split lines from Xcms.txt files into
5917    two tab delimited fields, contained a check:
5918    
5919        if ((*pBuf != '\n') || (*pBuf != '\0')) {
5920            return(XcmsFailure);
5921    
5922    which would cause it to return failure unless *pBuf had a value that
5923    was simultaneously equal to both \n & \0, and no one wants to live in
5924    a world where that could ever be true.
5925    
5926    This has gone unnoticed since 1991, since this only caused lines
5927    in Xcms.txt that started with whitespace to be rejected, but now
5928    gcc -Wlogicalop has brought it to our attention, and
5929    https://bugs.freedesktop.org/show_bug.cgi?id=70803 was filed.
5930    
5931    Now that we see it, and cannot unsee it, we change it to use the
5932    same logic as the check at other points in this function, to return
5933    failure only if we hit \n or \0 before we find the first non-whitespace
5934    character, so that lines starting with whitespace will have the space
5935    skipped over to get to the color name to be defined.
5936    
5937    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5938    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
5939
5940commit 18a5278b008e9faa59b346fcab18a8d74b875fda
5941Author: Gaetan Nadon <memsize@videotron.ca>
5942Date:   Sat Sep 28 17:33:52 2013 -0400
5943
5944    makekeys: don't need to use target-specific CFLAGS
5945    
5946    It's the only thing built in that directory, so we can use AM_CFLAGS
5947    and AM_CPPFLAGS as usual.
5948    
5949    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5950    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
5951
5952commit 5dcb40f28d59587597d2ff6e6ac64c71cfe6ff7b
5953Author: James Cloos <cloos@jhcloos.com>
5954Date:   Tue Sep 17 12:50:42 2013 -0400
5955
5956    nls/en_US.UTF-8/Compose.pre: Fix typo.
5957    
5958    Fix typo added in 215ce6a67863, s/actute/acute/.
5959    
5960    Fixes bug #69476.  Reported by Jean Krohn.
5961    
5962    Signed-off-by: James Cloos <cloos@jhcloos.com>
5963
5964commit cb107760df33ffc8630677e66e2e50aa37950a5c
5965Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5966Date:   Sun Sep 8 18:37:01 2013 -0700
5967
5968    libX11 1.6.2
5969
5970commit 215ce6a67863de7acfd6dd3562b4fd97ef87b411
5971Author: Benno Schulenberg <bensberg@justemail.net>
5972Date:   Sun Sep 1 12:38:30 2013 +0200
5973
5974    nls: Adding more accessible compose sequences for J́ and j́.
5975    
5976    Few keyboards have an <acute> key, so this adds the much more
5977    accessible and usual compose sequences with <apostrophe>, ánd
5978    the most comfortable ones with <dead_acute>.
5979    
5980    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
5981    Signed-off-by: James Cloos <cloos@jhcloos.com>
5982
5983commit e9b14d10d0258bfcc273ff8bc84cd349dccda62c
5984Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5985Date:   Sat Aug 24 17:27:43 2013 -0700
5986
5987    Bug 68413 - [Bisected]Error in `xterm': realloc(): invalid next size
5988    
5989    Pass *new* size to realloc, not old size.
5990    
5991    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5992
5993commit c2b8e30790c21d6386767265263b3294ce1b1f9a
5994Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5995Date:   Fri Aug 16 21:04:02 2013 -0700
5996
5997    Stop checking for HAVE_DIX_CONFIG_H on the client side
5998    
5999    Leftover from when these XKB files were shared with the server sources
6000    and could be compiled in either the client or server, with the different
6001    autoconf config files in each.
6002    
6003    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6004
6005commit 84276609b2f0aec74fb464c428c7db5714b0fcfc
6006Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6007Date:   Fri Aug 16 18:27:28 2013 -0700
6008
6009    Rearrange some variable declarations & initializations in XKB
6010    
6011    Little things noticed during XKB restyling that seemed to make the
6012    code easier to read.
6013    
6014    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6015
6016commit b90b7e859cf45ec76921fa21bbfc1f3840d6e8d1
6017Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6018Date:   Sun Aug 11 13:29:33 2013 -0700
6019
6020    Reindent XKB code to X.Org standard style
6021    
6022    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6023
6024commit c0a0f78eb49c2e4ad956209de77475c85b9314ea
6025Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6026Date:   Fri Aug 16 18:14:14 2013 -0700
6027
6028    Fix overflow checks in _XkbReadKeySyms when key_sym_map is already created
6029    
6030    We were checking to make sure that the largest keysym value was within
6031    the range of the allocated buffer, but checking against different limits
6032    in the not-yet-allocated vs. the already-allocated branches.
6033    
6034    The check should be the same in both, and reflect the size used for the
6035    allocation, which is based on the maximum key code value, so we move it
6036    to be a common check, before we branch, instead of duplicating in each
6037    branch.
6038    
6039    map->key_sym_map is an array of XkbSymMapRec structs, [0..max_key_code]
6040    map->syms is the array for which num_syms is recorded, hence is not the
6041    right value to check for ensuring our key_sym_map accesses are in range.
6042    
6043    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6044    Reported-by: Barry Kauler <bkauler@gmail.com>
6045    Tested-by: Barry Kauler <bkauler@gmail.com>
6046
6047commit bea6cbd027973142fc64532274e1d16861b47190
6048Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6049Date:   Sun Aug 11 17:02:21 2013 -0700
6050
6051    Remove long unused src/udcInf.c
6052    
6053    I can find no record of what this file was for.  Neither the X11R6.8.2
6054    monolith Imakefile nor any modular release Makefile.am have ever built
6055    it and nothing else references it.
6056    
6057    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6058
6059commit bf3501e0395abe890acfea98fdd9f50a6966f118
6060Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6061Date:   Sun Aug 11 00:07:33 2013 -0700
6062
6063    Remove unnecessary casts of pointers to (char *) in calls to Xfree()
6064    
6065    Left one cast behind that is necessary to change from const char *
6066    to char * in src/xlibi18n/lcCharSet.c.
6067    
6068    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6069
6070commit 6ead9dd92ab90aabd9f0e328d59597e6b5bc09d3
6071Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6072Date:   Sat Aug 10 23:57:55 2013 -0700
6073
6074    Don't cast sizeof() results to unsigned when passing to Xmalloc/Xcalloc
6075    
6076    sizeof() returns size_t, malloc() & calloc() expect sizes in size_t,
6077    don't strip down to unsigned int and re-expand unnecessarily.
6078    
6079    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6080
6081commit 25a7a329def672fc8d26078538173777850c6390
6082Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6083Date:   Sat Aug 10 23:51:08 2013 -0700
6084
6085    Remove even more casts of return values from Xmalloc/Xrealloc
6086    
6087    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6088
6089commit f8fa16092a148b74ca35b4beb182053352606f2f
6090Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6091Date:   Sat Aug 10 23:05:13 2013 -0700
6092
6093    xlibi18n: fix argsize argument to _XlcParsePath
6094    
6095    The array is defined as having NUM_LOCALEDIR entries, so use that
6096    instead of hardcoded 256 value (the other two calls already did this).
6097    
6098    Reported by parfait:
6099       Buffer overflow (CWE 120): In pointer dereference of argv[argc] with index argc
6100          Pointer size is 64 elements (of 8 bytes each), index is 255
6101            at line 82 of src/xlibi18n/lcFile.c in function 'parse_line'.
6102            called at line 178 in function '_XlcParsePath' with argv = argv.
6103            called at line 722 in function '_XlcLocaleLibDirName' with argv = args, argsize = 256.
6104            at line 82 of src/xlibi18n/lcFile.c in function 'parse_line'.
6105            called at line 178 in function '_XlcParsePath' with argv = argv.
6106            called at line 638 in function '_XlcLocaleDirName' with argv = args, argsize = 256.
6107    
6108    [ This bug was found by the Parfait 1.2.0 bug checking tool.
6109      http://labs.oracle.com/pls/apex/f?p=labs:49:::::P49_PROJECT_ID:13 ]
6110    
6111    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6112
6113commit e7d46c6452c0b90fd66ae9f538546b968e0dd608
6114Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6115Date:   Sat Aug 10 22:32:42 2013 -0700
6116
6117    i18n modules: Fix some const cast warnings
6118    
6119    imRm.c: In function '_XimSetICMode':
6120    imRm.c:2419:37: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
6121    imRm.c:2420:30: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
6122    
6123    lcGenConv.c: In function 'byteM_parse_codeset':
6124    lcGenConv.c:345:13: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
6125    
6126    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6127
6128commit cbd86eccf175dc82a5cbcea54c8bd21ce18b70c0
6129Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6130Date:   Sat Aug 10 22:21:54 2013 -0700
6131
6132    xlibi18n: Fix a bunch of const cast warnings
6133    
6134    Add const qualifiers to casts where needed, remove other casts that
6135    are no longer needed.
6136    
6137    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6138
6139commit eb3676113fc2dd0f34d92b89beb81b3f61569aa1
6140Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6141Date:   Sat Aug 10 22:18:00 2013 -0700
6142
6143    Fix const handling in XSetLocaleModifiers
6144    
6145    Instead of reusing the input parameter to store the output, make a
6146    result variable instead, so that there's less const confusion.
6147    
6148    Fixes gcc warnings:
6149    lcWrap.c: In function 'XSetLocaleModifiers':
6150    lcWrap.c:87:18: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
6151    lcWrap.c:91:25: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
6152    lcWrap.c:93:12: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
6153    
6154    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6155
6156commit 8ebbffa98563960910152e4f2e31cb032375d871
6157Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6158Date:   Sat Aug 10 21:46:37 2013 -0700
6159
6160    Constify lc_name argument to _XlcLocaleDirName() & _XlcLocaleLibDirName()
6161    
6162    Makes code considerably less crufty and clears gcc warnings:
6163    XlcDL.c: In function '_XlcDynamicLoad':
6164    XlcDL.c:384:44: warning: cast discards '__attribute__((const))' qualifier
6165     from pointer target type [-Wcast-qual]
6166    XlcDL.c:386:51: warning: cast discards '__attribute__((const))' qualifier
6167     from pointer target type [-Wcast-qual]
6168    
6169    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6170
6171commit 07e4e864107b38c2f393564fdacc90f4e858f23f
6172Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6173Date:   Sat Aug 10 13:37:53 2013 -0700
6174
6175    init_om: remove unneeded extra copy of string to local buffer
6176    
6177    Strings from the supported_charset_list[] were being copied one by
6178    one to a stack buffer, and then strdup called on that buffer.
6179    
6180    Instead, just strdup the original string, without the local copy,
6181    and use a more traditional for loop, so it's easier to figure out
6182    what the code is doing (cleaning up a gcc const-cast warning in
6183    the process).
6184    
6185    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6186    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
6187
6188commit 1cec14dad904ba21a861f4af131be5982ecb83dd
6189Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6190Date:   Sat Aug 10 12:34:53 2013 -0700
6191
6192    Delete unused XKB_INSURE_SIZE macro from XKBlibint.h
6193    
6194    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6195    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
6196
6197commit 5f32182c7c4045540ff3833c48ee24a3a25726e2
6198Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6199Date:   Sat Aug 10 12:19:17 2013 -0700
6200
6201    miRegionOp(): ensure region size is not updated if realloc fails
6202    
6203    This function performs operations on a region, and when finished,
6204    checks to see if it should compact the rectangle list.  If the
6205    number of rectangles for which memory is allocated in the list is
6206    more than twice the number used, it tries to shrink.   realloc()
6207    should not fail in this case, but if it does, might as well keep
6208    the correct value for the number of allocated rectangles, so we
6209    don't try to grow it unnecessarily later if adding to the region.
6210    
6211    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6212
6213commit bd2a0b5a187798bb2e2f05dc5062ca79e37075dd
6214Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6215Date:   Sat Aug 10 12:19:17 2013 -0700
6216
6217    miRegionCopy(): handle realloc failure better
6218    
6219    Zero out the region size when freeing the region so callers don't think
6220    there's anything there.   (Pointer is already set to NULL from the realloc
6221    result itself.)  Return 0 to the callers, and have them cascade that back
6222    to their callers to indicate failure, instead of their usual return value
6223    of 1 on success.
6224    
6225    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6226
6227commit 5dc8b5385d513bbda88697c2372db750d23f46d4
6228Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6229Date:   Sat Aug 10 11:27:22 2013 -0700
6230
6231    Avoid memory leak/corruption if realloc fails in Xregion.h:MEMCHECK macro
6232    
6233    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6234
6235commit 453c4ee436ef32d91501d7736d7a91c1aeafc565
6236Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6237Date:   Sat Aug 10 12:07:51 2013 -0700
6238
6239    Avoid memory leak/corruption if realloc fails in imLcPrs.c:parseline()
6240    
6241    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6242
6243commit b3fea74ec5b7d4f83755a52a8d49c564b71c6d12
6244Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6245Date:   Sat Aug 10 12:30:39 2013 -0700
6246
6247    lcDB.c: ensure buffer size is updated correctly if realloc fails
6248    
6249    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6250
6251commit 43bb822c714a73c3b2d15e621ffb3333cd10da8c
6252Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6253Date:   Sat Aug 10 11:07:47 2013 -0700
6254
6255    Avoid memory leak/corruption if realloc fails in XlcDL.c:resolve_object()
6256    
6257    Previously, if realloc failed to increase the size, we'd still
6258    record that we had allocated the larger size, but the pointer
6259    to it would be NULL, causing future calls to be broken, and the
6260    previous allocation to be lost/leaked.
6261    
6262    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6263    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
6264
6265commit 5d47a39978e92bb34ec928b1b15d71c0c2434870
6266Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6267Date:   Fri Aug 9 23:33:03 2013 -0700
6268
6269    omGeneric.c: convert sprintf calls to snprintf
6270    
6271    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6272    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
6273
6274commit 88a27a2aa9b7d35cb79b16334ea3413e572b724a
6275Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6276Date:   Fri Aug 9 23:30:30 2013 -0700
6277
6278    ximcp/imRm.c: convert sprintf calls to snprintf
6279    
6280    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6281    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
6282
6283commit 4fadae243fb485628c9a137f5da3489ed6214b21
6284Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6285Date:   Fri Aug 9 23:02:12 2013 -0700
6286
6287    xlibi18n: convert sprintf calls to snprintf
6288    
6289    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6290    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
6291
6292commit 36a7edf0e5edfc5ef4ff2c3a8b4fa3dc4796e854
6293Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6294Date:   Fri Aug 9 23:02:12 2013 -0700
6295
6296    lcfile: skip over any null entries in args list
6297    
6298    Previous code seemed to assume that printf("%s", NULL) would result
6299    in a 0-length string, not "(null)" or similar, but since there's no
6300    point looking for files in "(null)/filepath...", instead we just
6301    skip over NULL entries in search paths when generating file names.
6302    
6303    In the *DirName() functions, this effectively just moves the "bail on
6304    NULL in arg[i]" check up from the later code that assigned it to targetdir
6305    and then bailed if that was NULL.
6306    
6307    Not sure how there ever could be a NULL in arg[i], given the current
6308    implementation of XlcParsePath, but it's easy enough to check once and
6309    reject up front instead of on every reference.
6310    
6311    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6312
6313commit ee0824f24392d5ca3d5fd5f5ed8d78c0d892f7c0
6314Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6315Date:   Fri Aug 9 22:00:09 2013 -0700
6316
6317    Fix file leak on malloc error in XlcDL.c:resolve_object()
6318    
6319    File Leak: Leaked File fp
6320       at line 219 of lib/libX11/src/xlibi18n/XlcDL.c in function 'resolve_object'.
6321          fp initialized at line 198 with fopen
6322    
6323    [ This bug was found by the Parfait 1.2.0 bug checking tool.
6324      http://labs.oracle.com/pls/apex/f?p=labs:49:::::P49_PROJECT_ID:13 ]
6325    
6326    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6327    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
6328
6329commit 9b291044a240e5b9b031ed814e0c84e53a1c3084
6330Author: Julien Cristau <jcristau@debian.org>
6331Date:   Sat Jun 15 18:02:21 2013 +0200
6332
6333    Add missing locales to configure.ac
6334    
6335    Commits 40761898692e5063957bfa2518cca3d35b2e354a and
6336    f198c6aa98f88ff285d903175a3c4c0fd33a4575 added two new locales
6337    (sr_CS.UTF-8 and km_KH.UTF-8), but didn't list them in configure.ac,
6338    meaning they're not included in tarballs.
6339    
6340    Signed-off-by: Julien Cristau <jcristau@debian.org>
6341    Reviewed-by: James Cloos <cloos@jhcloos.com>
6342
6343commit 8f58e54a5f46c3cd4897a23b89950f4800ae38d4
6344Author: ISHIKAWA,chiaki <ishikawa@yk.rim.or.jp>
6345Date:   Tue Dec 18 15:28:05 2012 +0000
6346
6347    Fix bogus timestamp generated by XIM
6348    
6349    Fix bogus timestamp generted by XIM due to uninitialized
6350    data field. Also set appropriate serial, too.
6351    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=39367
6352    
6353    Signed-off-by: Chiaki ISHIKAWA <ishikawa@yk.rim.or.jp>
6354    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6355
6356commit e7fd6f0eda57300df4d6b695b7064610ca5dec57
6357Author: Egbert Eich <eich@freedesktop.org>
6358Date:   Thu Jun 16 18:47:49 2011 +0200
6359
6360    XIM: Fix sync problem on focus change.
6361    
6362    XSetICFocus() and XUnsetICFocus() are both asynchronous events.
6363    This is a pretty stupid idea: those functions may undo certain
6364    settings on the client side for which requests from the server
6365    may still be in the queue unprocessed. Thus things may be set
6366    in the wrong order ie instead of set -> unest it will be unset -> set.
6367    Moreover there is no way for either the client or the server to
6368    cause the event queue to be flushed - which is pretty bad as
6369    XIM is bidirectional.
6370    The scenario is as follows:
6371    Two ICs are created:
6372            ic1 = XCreateIC(im,
6373                XNInputStyle, XIMPreeditCallbacks | XIMStatusCallbacks,
6374                XNClientWindow, window,
6375                XNPreeditAttributes, preedit_attr,
6376                XNStatusAttributes, status_attr,
6377                NULL);
6378            ic2 = XCreateIC(im, XNInputStyle,
6379                           XIMPreeditNothing | XIMStatusNothing,
6380                           XNClientWindow, window, NULL);
6381    Then the focus is removed from ic2:
6382            XUnsetICFocus(ic2);
6383    If SCIM is used as the input server it will send a bunch of requests
6384    following an XCreateIC(). One of the requests registers a key release
6385    filter. XUnsetICFocus() unsets both key press and release filters.
6386    Since it is asynchronous, the input server requests to register key
6387    press and release filters may not have been processed, when XUnsetICFocus()
6388    is called. Since there is no explicite way for client programs to enforce
6389    the request queue to be flushed explicitely before an X[Set/Unset]ICFocus()
6390    call it would be safest to make those two calls synchronous in the sense
6391    that they ensure the request queue has been handled before they execute.
6392    The easiest way to do this from Xlib is thru a call to XGetICValues()
6393    which sends a request to the server and subsequently reads the queue
6394    from the server to the client. This will cause all outstanding requests
6395    in the queue to be read and handled.
6396    This is an ugly hack and this could be fixed directly in the client,
6397    however it seems to be easier to fix Xlib than to fix numerous clients.
6398    This problem arose since there is no well documented way how to handle
6399    and synchronize XIM requests and not all input servers send requests
6400    when an IC is created.
6401    This has been discussed extensively in:
6402     https://bugzilla.novell.com/show_bug.cgi?id=221326
6403    
6404    Signed-off-by: Egbert Eich <eich@freedesktop.org>
6405
6406commit 26ec7d3821bc19debc73c8c3e42e6e33ef6f856e
6407Author: Egbert Eich <eich@freedesktop.org>
6408Date:   Thu Jun 16 17:28:39 2011 +0200
6409
6410    XIM: Fix race on focus change: set 'FABRICATED' only when keyev filters in place.
6411    
6412    When synthesized key events are sent on commit XIM sets the 'fabricated'
6413    flag so that the keypress handler knows that these were not real events.
6414    This also happens when committing due to the loss of focus. However in this
6415    case the keypress/release filters which consume and unset this flag are no
6416    longer in the filter chain.
6417    So the flag is erronously set when a real keyboard event is received after
6418    focus has been regained. So the first event is wrongly treated as a
6419    fabricated key in the keypress handler which will at the same time reset
6420    the flag so the second key event is treated correctly.
6421    This fix only sets the flag when at least one of the keyboard filters is in
6422    place.
6423    How to reproduce this bug: run scim, choose a Japanese input method start
6424    two instances of xterm: start typing in one xterm (this should pop up an
6425    IM window). Without comitting (hitting 'enter') move focus to the other
6426    xterm, then move focus back. Start typing again. The first character will
6427    be committed immediately without popping up an input window.
6428    With this fix this behavior is gone.
6429    
6430    See also: https://bugzilla.novell.com/show_bug.cgi?id=239698
6431    
6432    Signed-off-by: Egbert Eich <eich@freedesktop.org>
6433
6434commit 44f84223f5e2dd46883fcbd352af2798bfa9aeb6
6435Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6436Date:   Mon Jul 29 21:29:49 2013 -0700
6437
6438    libX11 1.6.1
6439    
6440    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6441
6442commit d19cfaca15826943d3c637ef7fa5db0a23d5feed
6443Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6444Date:   Sat Jul 27 12:19:00 2013 -0700
6445
6446    Fix undefined XCMSDIR error when building lint library
6447    
6448    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6449
6450commit 3083cd43d7dcd59da587975e7cadda681cd8a103
6451Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6452Date:   Sat Jul 27 00:36:08 2013 -0700
6453
6454    Add ku_TR.UTF-8 (Kurdish language, Turkey region) to compose/locale.dir
6455    
6456    Upstreaming from changes originally integrated into OpenSolaris
6457    under Sun bug id 6882572.
6458    
6459    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6460    Reviewed-by: Thomas Klausner <wiz@NetBSD.org>
6461
6462commit 208e586c808e88a2ee819e4450dc27f557afc2bf
6463Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6464Date:   Sat Jul 27 01:03:18 2013 -0700
6465
6466    omGeneric: remove space between struct name & member name
6467    
6468    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6469
6470commit 7db74514e454d3fc4ff70aa08ddac66bfffda4dd
6471Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6472Date:   Tue Jul 23 22:18:46 2013 -0700
6473
6474    Refactor common code from XAddHost & XRemoveHost into single function
6475    
6476    On the Xlib side, the only real difference is the mode flag we send
6477    to the server with the address, so just make that an argument to the
6478    function with the common code for packing the address into the request.
6479    
6480    (Aside from labels, gcc 4.7.2 generates identical code before & after
6481     this change due to inlining, verified via diff of gcc -S output.)
6482    
6483    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6484
6485commit 3292195a64a9ce4f0d27134cd544651ec647e728
6486Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6487Date:   Tue Jul 23 22:11:34 2013 -0700
6488
6489    XSetModifierMapping: Use Data instead of GetReqExtra
6490    
6491    Handle arbitrary length data in the same fashion as other calls,
6492    avoiding need to ensure it fits all in the request buffer.
6493    
6494    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6495
6496commit feb131b18aee31c2c125dc3275b0260940245882
6497Author: Kees Cook <kees@outflux.net>
6498Date:   Sun Jun 9 11:13:43 2013 -0700
6499
6500    libX11: check "req" when calling GetReqExtra
6501    
6502    This fixes the two callers of GetReqExtra to check that "req" is non-NULL
6503    to avoid crashing now that GetReqExtra does internal bounds-checking on
6504    the resulting buffer sizes.
6505    
6506    Additionally updates comment describing return values to use names
6507    instead of only literal values.
6508    
6509    Signed-off-by: Kees Cook <kees@outflux.net>
6510    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6511    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6512
6513commit 54540d7cba0c2bfe9176221c7bca910058d304df
6514Author: Kees Cook <kees@outflux.net>
6515Date:   Sun Jun 9 11:13:42 2013 -0700
6516
6517    libX11: check size of GetReqExtra after XFlush
6518    
6519    Two users of GetReqExtra pass arbitrarily sized allocations from the
6520    caller (ModMap and Host). Adjust _XGetRequest() (called by the GetReqExtra
6521    macro) to double-check the requested length and invalidate "req" when
6522    this happens. Users of GetReqExtra passing lengths greater than the Xlib
6523    buffer size (normally 16K) must check "req" and fail gracefully instead
6524    of crashing.
6525    
6526    Any callers of GetReqExtra that do not check "req" for NULL
6527    will experience this change, in the pathological case, as a NULL
6528    dereference instead of a buffer overflow. This is an improvement, but
6529    the documentation for GetReqExtra has been updated to reflect the need
6530    to check the value of "req" after the call.
6531    
6532    Bug that manifested the problem:
6533    https://bugs.launchpad.net/ubuntu/+source/x11-xserver-utils/+bug/792628
6534    
6535    Signed-off-by: Kees Cook <kees@outflux.net>
6536    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6537    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6538
6539commit 24d3ee0d08f24e23c91d55702f010f73d7b908e5
6540Author: Thomas Klausner <wiz@NetBSD.org>
6541Date:   Tue Jun 25 22:35:29 2013 +0200
6542
6543    Tighten out-of-range comparisons.
6544    
6545    [For all of these, LONG_MAX was the correct value to prevent overflows
6546     for the recent CVEs.   Lowering to INT_MAX catches buggy replies from
6547     the server that 32-bit clients would reject but 64-bit would accept,
6548     so we catch bugs sooner, and really, no sane & working server should
6549     ever report more than 2gb of extension names, font path entries,
6550     key modifier maps, etc.  -alan- ]
6551    
6552    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6553    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6554
6555commit 6d926088d80a08e13e6d6c4ff207b81ad52e667f
6556Author: Thomas Klausner <wiz@NetBSD.org>
6557Date:   Tue Jun 25 18:34:32 2013 +0200
6558
6559    Fix out-of-range comparison in _XF86BigfontQueryFont
6560    
6561    clang complained (correctly):
6562    warning: comparison of constant 768614336404564650 with expression
6563    of type 'CARD32' (aka 'unsigned int') is always true
6564    [-Wtautological-constant-out-of-range-compare]
6565    
6566    [While LONG_MAX is correct, since it's used in size_t math, the
6567     numbers have to be limited to 32-bit range to be usable by 32-bit
6568     clients, and values beyond that range are far more likely to be
6569     bugs in the data from the server than valid numbers of characters
6570     in a font.   -alan- ]
6571    
6572    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6573    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6574
6575commit 383e2b0d029482a0f4c39fe00e15397538576fc1
6576Author: Thomas Klausner <wiz@NetBSD.org>
6577Date:   Tue Jun 25 18:33:56 2013 +0200
6578
6579    Check for symbol existence with #ifdef, not #if
6580    
6581    Reviewed-by: Jamey Sharp <jamey@minilop.net>
6582    
6583    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6584
6585commit 9955d1c8de994a90fe7f2e3187e7362611d7d265
6586Author: Thomas Klausner <wiz@NetBSD.org>
6587Date:   Tue Jun 25 18:33:07 2013 +0200
6588
6589    Use newer callback-based API for XIM.
6590    
6591    Let libX11 load and make available the newer (X11R6) callback-based
6592    API for XIM (expected by emacs).
6593    
6594    This patch updates the files to match the other nls/ files.
6595    
6596    Patch from Ian D. Leroux <idleroux@fastmail.fm> on pkgsrc-users@NetBSD.org
6597    following a hint by Nhat Minh Lê <nhat.minh.le@gmail.com>.
6598    
6599    Reviewed-by: James Cloos <cloos@jhcloos.com>
6600    
6601    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6602
6603commit a17ceb7100bd36c2db210473ee701deb5d515731
6604Author: Thomas Klausner <wiz@NetBSD.org>
6605Date:   Tue Jun 25 18:31:32 2013 +0200
6606
6607    Stop truncating source to destination length if it is larger.
6608    
6609    It seems useless to do that since the code tests for both source
6610    length and destination to be non-zero. This fixes a cut'n'paste
6611    problem in xterm where the paste length was limited to 1024 (BUFSIZ)
6612    in button.c.
6613    
6614    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6615
6616commit a336db9a0add3ae0783dda6e52459236622a12af
6617Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6618Date:   Mon Jun 24 23:02:05 2013 -0700
6619
6620    Require ANSI C89 pre-processor, drop pre-C89 token pasting support
6621    
6622    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6623
6624commit 9dfb0f3c0a761590bcdc1f3396b1e064da4e18e8
6625Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6626Date:   Fri Jun 7 11:30:11 2013 -0700
6627
6628    troff macro expansion in specs/libX11
6629    
6630    Many of the custom nroff macros (.ds <macro> <contents>) were left
6631    unsubstituted in the nroff->docbook conversion.   This substitution
6632    is now performed, via the following perl script:
6633    
6634    #! /usr/bin/perl -w -i
6635    
6636    use Text::Wrap;
6637    
6638    while ($_ = <>) {
6639        while ($_ =~ m/\((\w+)\b/g) {
6640            my $m = $1;
6641            if (exists $macro{$m}) {
6642                $_ =~ s/\($m/$macro{$m}/;
6643                $_ = wrap('', '', $_);
6644                $_ =~ s/[ \t]+$//;
6645            }
6646        }
6647    
6648        if ($_ =~ /\<!-- .ds (\w+) (.*) -->/) {
6649            my ($m, $s) = ($1, $2);
6650            $macro{$m} = $s;
6651            while ($macro{$m} =~ /\\\s*$/) {
6652                $macro{$m} =~ s/\\\s*$//ms;
6653                $macro{$m} .= <>;
6654                chomp($macro{$m});
6655            }
6656            $macro{$m} =~ s/\\ / /g;
6657        } else {
6658            print $_;
6659        }
6660    }
6661    
6662    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6663
6664commit 20c17bd9ebf767a24643279e45866dddcb57b5ce
6665Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6666Date:   Fri Jun 7 09:27:26 2013 -0700
6667
6668    specs/libX11: correct prototype for XListPixmapFormats/XImageByteOrder
6669    
6670    The XListPixmapFormats arguments was being shown with XImageByteOrder's
6671    name and return types.   Appears to have been a glitch in the nroff ->
6672    docbook conversion.
6673    
6674    Reported-by: ZHANG Zhaolong <zhangzl2013@126.com>
6675    Reviewed-by: Jamey Sharp <jamey@minilop.net>
6676    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6677
6678commit ed3d830243c8a0eefaf24e15b11823272ffe5049
6679Author: Thomas Klausner <wiz@NetBSD.org>
6680Date:   Sun Jun 2 20:49:55 2013 +0200
6681
6682    Deal with the limited range of VAX floating point numbers when compiling for VAX.
6683    
6684    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6685
6686commit 0a48235d63639fb917c44d27c86e928e79fbac66
6687Author: Eric S. Raymond <esr@thyrsus.com>
6688Date:   Thu Jun 6 16:43:56 2013 -0400
6689
6690    Remove call to undefined macro.
6691
6692commit 9e4719b9b719f2f8d255f6778e2e8c1809e32599
6693Author: Eric S. Raymond <esr@thyrsus.com>
6694Date:   Thu Jun 6 16:42:20 2013 -0400
6695
6696    Remove call to undefined macro.
6697
6698commit 8496122eb00ce6cd5d2308ee54f64b68c378e455
6699Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6700Date:   Mon Jun 3 20:06:43 2013 -0700
6701
6702    Update README to reflect where to find the Xlib specs now
6703    
6704    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6705
6706commit 655d631e86c95b14888758b27ed2836ca3e3ce86
6707Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6708Date:   Mon Jun 3 19:21:06 2013 -0700
6709
6710    libX11 1.6.0
6711    
6712    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6713
6714commit 4a89b7ea908554628f374537a79931c8006a2de3
6715Author: Thomas Klausner <wiz@NetBSD.org>
6716Date:   Sun Jun 2 11:49:54 2013 -0700
6717
6718    cmsMath.c: Add missing stdio header for printf(3) in DEBUG build.
6719    
6720    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6721
6722commit 96dcf747f13b26b8e4d17b1bc8605d933c3e1dc6
6723Author: Thomas Klausner <wiz@NetBSD.org>
6724Date:   Sun Jun 2 20:49:48 2013 +0200
6725
6726    XCreateGC man page: Avoid .TS H and .TH macros
6727    
6728    Avoid .TS H and .TH for now as it doesn't alter the output in this case,
6729    and improve the output with mandoc(1).
6730    
6731    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6732
6733commit 95a388158c9d73df7d24016d6a3d61506d7d53a4
6734Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6735Date:   Thu May 23 19:43:35 2013 -0700
6736
6737    libX11 1.5.99.902 (1.6 RC2)
6738    
6739    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6740
6741commit a3bdd2b090915fe0163b062f0e6576fe05dd332e
6742Author: Julien Cristau <jcristau@debian.org>
6743Date:   Thu May 23 20:39:46 2013 +0200
6744
6745    xkb: fix off-by-one in _XkbReadGetNamesReply and _XkbReadVirtualModMap
6746    
6747    The size of the arrays is max_key_code + 1.  This makes these functions
6748    consistent with the other checks added for CVE-2013-1997.
6749    
6750    Also check the XkbGetNames reply when names->keys was just allocated.
6751    
6752    Signed-off-by: Julien Cristau <jcristau@debian.org>
6753    Tested-by: Colin Walters <walters@verbum.org>
6754    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6755
6756commit 7e30056e78e4b7979ff47f102e00327617266019
6757Author: Niveditha Rau <Niveditha.Rau@Oracle.COM>
6758Date:   Fri May 17 15:26:21 2013 -0700
6759
6760    Make sure internal headers include required headers
6761    
6762    Fixes builds with Solaris Studio 12.3 when lint is enabled, since it no
6763    longer ignores *.h files, but complains when they reference undefined
6764    typedefs or macros.
6765    
6766    Signed-off-by: Niveditha Rau <Niveditha.Rau@Oracle.COM>
6767    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6768
6769commit 2820100bf8ba130b94253f415e7fa5ac28bb2037
6770Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6771Date:   Thu May 16 23:05:36 2013 -0700
6772
6773    Free fs->properties in _XF86BigfontQueryFont overflow error path
6774    
6775    Fixes small memory leak introduced in commit 5669a22081
6776    
6777    Reported-by: Julien Cristau <jcristau@debian.org>
6778    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6779
6780commit 3131740513133a9ff7cb12123d29ceb18584fc38
6781Author: Matthieu Herrb <matthieu.herrb@laas.fr>
6782Date:   Wed May 8 19:33:09 2013 +0200
6783
6784    XListFontsWithInfo: Re-decrement flist[0] before calling free() on it.
6785    
6786    Freeing a pointer that wasn't returned by malloc() is undefined
6787    behavior and produces an error with OpenBSD's implementation.
6788    
6789    Signed-off-by: Matthieu Herrb <matthieu.herrb@laas.fr>
6790    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6791    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6792
6793commit 3fe4bea086149f06a142a8f1d575f627ec1e22c7
6794Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6795Date:   Fri Apr 19 14:30:40 2013 -0700
6796
6797    Give GNU & Solaris Studio compilers hints about XEatData branches
6798    
6799    Try to offset the cost of all the recent checks we've added by giving
6800    the compiler a hint that the branches that involve us eating data
6801    are less likely to be used than the ones that process it.
6802    
6803    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6804
6805commit e1b457beb8d4e831ef44279dada6c475cb955738
6806Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6807Date:   Sun Mar 31 12:22:35 2013 -0700
6808
6809    _XkbReadGetMapReply: reject maxKeyCodes smaller than the minKeyCode
6810    
6811    Various other bounds checks in the code assume this is true, so
6812    enforce it when we first get the data from the X server.
6813    
6814    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6815
6816commit 12ad4c6432496897ff000eb7cfecd0fb4b290331
6817Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6818Date:   Sat Mar 16 10:03:13 2013 -0700
6819
6820    Use calloc in XOpenDisplay to initialize structs containing pointers
6821    
6822    Prevents trying to free uninitialized pointers if we have to bail out
6823    partway through setup, such as if we receive a corrupted or incomplete
6824    connection setup block from the server.
6825    
6826    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6827
6828commit d38527e25f8b6e2f1174ecc21260c5c5416f972e
6829Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6830Date:   Thu Mar 7 23:46:05 2013 -0800
6831
6832    Remove more unnecessary casts from Xmalloc/calloc calls
6833    
6834    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6835
6836commit b2c86b582c58f50c7b14da01cf7ebd20ef12a6b2
6837Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6838Date:   Sat Mar 2 16:56:16 2013 -0800
6839
6840    Convert more _XEatData callers to _XEatDataWords
6841    
6842    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6843    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
6844
6845commit 192bbb9e2fc45df4e17b35b6d14ea0eb418dbd39
6846Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6847Date:   Sat Mar 9 11:04:37 2013 -0800
6848
6849    Make XGetWindowProperty() always initialize returned values
6850    
6851    Avoids memory corruption and other errors when callers access them
6852    without checking to see if XGetWindowProperty() returned an error value.
6853    
6854    Callers are still required to check for errors, this just reduces the
6855    damage when they don't.
6856    
6857    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
6858    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6859    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
6860
6861commit db1b1c871da29aa0545182bf888df81627f165a5
6862Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6863Date:   Sat Mar 2 15:08:21 2013 -0800
6864
6865    Avoid overflows in XListExtensions() [CVE-2013-1997 15/15]
6866    
6867    Ensure that when breaking the returned list into individual strings,
6868    we don't walk past the end of allocated memory to write the '\0' bytes
6869    
6870    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6871    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
6872
6873commit 8d5936594993921acdfec778dd8f41b555e2543a
6874Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6875Date:   Sat Mar 2 15:08:21 2013 -0800
6876
6877    Avoid overflows in XGetFontPath() [CVE-2013-1997 14/15]
6878    
6879    Ensure that when breaking the returned list into individual strings,
6880    we don't walk past the end of allocated memory to write the '\0' bytes
6881    
6882    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6883    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
6884
6885commit 0c404db6a92dc2c198328bf586c02d8abbe02013
6886Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6887Date:   Sat Mar 2 15:08:21 2013 -0800
6888
6889    Avoid overflows in XListFonts() [CVE-2013-1997 13/15]
6890    
6891    Ensure that when breaking the returned list into individual strings,
6892    we don't walk past the end of allocated memory to write the '\0' bytes
6893    
6894    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6895    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
6896
6897commit 0b0f5d4358c3de7563d6af03f0d2ce454702a06a
6898Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6899Date:   Sat Mar 2 15:08:21 2013 -0800
6900
6901    integer overflow in XGetModifierMapping() [CVE-2013-1981 13/13]
6902    
6903    Ensure that we don't underallocate when the server claims a very large reply
6904    
6905    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6906    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
6907
6908commit a351b8103b2ba78882e1c309e85893ca3abe2073
6909Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6910Date:   Sat Mar 2 15:08:21 2013 -0800
6911
6912    integer overflow in XGetPointerMapping() & XGetKeyboardMapping() [CVE-2013-1981 12/13]
6913    
6914    Ensure that we don't underallocate when the server claims a very large reply
6915    
6916    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6917    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
6918
6919commit 833f6b70bc789d33607f6dbfee9e0a4178ec4b59
6920Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6921Date:   Sat Mar 2 15:08:21 2013 -0800
6922
6923    integer overflow in XGetImage() [CVE-2013-1981 11/13]
6924    
6925    Ensure that we don't underallocate when the server claims to have sent a
6926    very large reply.
6927    
6928    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6929    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
6930
6931commit 79d8dc08eb98842173ce239b9dd60df0e9e9ae72
6932Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6933Date:   Fri Mar 8 22:25:35 2013 -0800
6934
6935    integer overflow in XGetWindowProperty() [CVE-2013-1981 10/13]
6936    
6937    If the reported number of properties is too large, the calculations
6938    to allocate memory for them may overflow, leaving us returning less
6939    memory to the caller than implied by the value written to *nitems.
6940    
6941    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
6942    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6943    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
6944
6945commit 164bf4dfe839b1cc75cdeee378a243d04a8200e4
6946Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6947Date:   Sat Mar 2 13:18:48 2013 -0800
6948
6949    integer overflows in TransFileName() [CVE-2013-1981 9/13]
6950    
6951    When trying to process file paths the tokens %H, %L, & %S are expanded
6952    to $HOME, the standard compose file path & the xlocaledir path.
6953    If enough of these tokens are repeated and values like $HOME are set to
6954    very large values, the calculation of the total string size required to
6955    hold the expanded path can overflow, resulting in allocating a smaller
6956    string than the amount of data we'll write to it.
6957    
6958    Simply restrict all of these values, and the total path size to PATH_MAX,
6959    because really, that's all you should need for a filename path.
6960    
6961    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
6962    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6963    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
6964
6965commit 460e8a223b87d4fa0ea1e97823e998a770e0f2a2
6966Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6967Date:   Fri Mar 1 18:37:37 2013 -0800
6968
6969    integer truncation in _XimParseStringFile() [CVE-2013-1981 8/13]
6970    
6971    Called from _XimCreateDefaultTree() which uses getenv("XCOMPOSEFILE")
6972    to specify filename.
6973    
6974    If the size of off_t is larger than the size of unsigned long (as in
6975    32-bit builds with large file flags), a file larger than 4 gigs could
6976    have its size truncated, leading to data from that file being written
6977    past the end of the undersized buffer allocated for it.
6978    
6979    While configure.ac does not use AC_SYS_LARGEFILE to set large file mode,
6980    builders may have added the large file compilation flags to CFLAGS on
6981    their own.
6982    
6983    size is left limited to an int, because if your Xim file is
6984    larger than 2gb, you're doing it wrong.
6985    
6986    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
6987    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6988    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
6989
6990commit 226622349a4b1e16064649d4444a34fb4be4f464
6991Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6992Date:   Sat Mar 2 12:39:58 2013 -0800
6993
6994    Unbounded recursion in _XimParseStringFile() when parsing include files [CVE-2013-2004 2/2]
6995    
6996    parseline() can call _XimParseStringFile() which can call parseline()
6997    which can call _XimParseStringFile() which can call parseline() ....
6998    eventually causing recursive stack overflow and crash.
6999    
7000    Limit is set to a include depth of 100 files, which should be enough
7001    for all known use cases, but could be adjusted later if necessary.
7002    
7003    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
7004    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7005    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
7006
7007commit 236b603d235dc264d1c6250dca09c745458a9088
7008Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7009Date:   Sat Mar 2 12:01:39 2013 -0800
7010
7011    Unbounded recursion in GetDatabase() when parsing include files [CVE-2013-2004 1/2]
7012    
7013    GetIncludeFile() can call GetDatabase() which can call GetIncludeFile()
7014    which can call GetDatabase() which can call GetIncludeFile() ....
7015    eventually causing recursive stack overflow and crash.
7016    
7017    Easily reproduced with a resource file that #includes itself.
7018    
7019    Limit is set to a include depth of 100 files, which should be enough
7020    for all known use cases, but could be adjusted later if necessary.
7021    
7022    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
7023    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7024    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
7025
7026commit 076428918e6c35f66b9b55c3fa097ff06496d155
7027Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7028Date:   Fri Mar 1 18:37:37 2013 -0800
7029
7030    integer overflow in ReadInFile() in Xrm.c [CVE-2013-1981 7/13]
7031    
7032    Called from XrmGetFileDatabase() which gets called from InitDefaults()
7033    which gets the filename from getenv ("XENVIRONMENT")
7034    
7035    If file is exactly 0xffffffff bytes long (or longer and truncates to
7036    0xffffffff, on implementations where off_t is larger than an int),
7037    then size may be set to a value which overflows causing less memory
7038    to be allocated than is written to by the following read() call.
7039    
7040    size is left limited to an int, because if your Xresources file is
7041    larger than 2gb, you're very definitely doing it wrong.
7042    
7043    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
7044    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7045    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
7046
7047commit 90fd5abac2faca86f9f100353a3c9c7b89f31484
7048Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7049Date:   Sat Mar 2 11:44:19 2013 -0800
7050
7051    Integer overflows in stringSectionSize() cause buffer overflow in ReadColornameDB() [CVE-2013-1981 6/13]
7052    
7053    LoadColornameDB() calls stringSectionSize() to do a first pass over the
7054    file (which may be provided by the user via XCMSDB environment variable)
7055    to determine how much memory needs to be allocated to read in the file,
7056    then allocates the returned sizes and calls ReadColornameDB() to load the
7057    data from the file into that newly allocated memory.
7058    
7059    If stringSectionSize() overflows the signed ints used to calculate the
7060    file size (say if you have an xcmsdb with ~4 billion lines in or a
7061    combined string length of ~4 gig - which while it may have been
7062    inconceivable when Xlib was written, is quite possible today), then
7063    LoadColornameDB() may allocate a memory buffer much smaller than the
7064    amount of data ReadColornameDB() will write to it.
7065    
7066    The total size is left limited to an int, because if your xcmsdb file
7067    is larger than 2gb, you're doing it wrong.
7068    
7069    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
7070    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7071    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
7072
7073commit b9ba832401734e1cbd30a930c0d11d850293f3f9
7074Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7075Date:   Sat Mar 2 11:25:25 2013 -0800
7076
7077    unvalidated length in _XimXGetReadData() [CVE-2013-1997 12/15]
7078    
7079    Check the provided buffer size against the amount of data we're going to
7080    write into it, not against the reported length from the ClientMessage.
7081    
7082    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
7083    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7084    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
7085
7086commit de2e6c322c4aca22856b380f67f8e488e7510015
7087Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7088Date:   Sat Mar 2 11:11:08 2013 -0800
7089
7090    unvalidated index/length in _XkbReadGetNamesReply() [CVE-2013-1997 11/15]
7091    
7092    If the X server returns key name indexes outside the range of the number
7093    of keys it told us to allocate, out of bounds memory writes could occur.
7094    
7095    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
7096    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7097    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
7098
7099commit 2df882eeb3a70256170127a746a9ba26376599a1
7100Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7101Date:   Sat Mar 2 11:01:04 2013 -0800
7102
7103    unvalidated index in _XkbReadVirtualModMap() [CVE-2013-1997 10/15]
7104    
7105    If the X server returns modifier map indexes outside the range of the number
7106    of keys it told us to allocate, out of bounds memory writes could occur.
7107    
7108    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
7109    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7110    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
7111
7112commit 4d7c422a37eb9617fb22f8e37527c2b34b105665
7113Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7114Date:   Sat Mar 2 11:04:44 2013 -0800
7115
7116    unvalidated index in _XkbReadExplicitComponents() [CVE-2013-1997 9/15]
7117    
7118    If the X server returns key indexes outside the range of the number of
7119    keys it told us to allocate, out of bounds memory writes could occur.
7120    
7121    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
7122    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7123    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
7124
7125commit e56a2ada719c5cfac5ed61a52a80ade86c0f5957
7126Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7127Date:   Sat Mar 2 10:51:51 2013 -0800
7128
7129    unvalidated index in _XkbReadModifierMap() [CVE-2013-1997 8/15]
7130    
7131    If the X server returns modifier map indexes outside the range of the number
7132    of keys it told us to allocate, out of bounds memory writes could occur.
7133    
7134    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
7135    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7136    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
7137
7138commit 06c086e8a1d8374ea9a95ff989f053c96bb1bdca
7139Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7140Date:   Sat Mar 2 10:39:21 2013 -0800
7141
7142    unvalidated index in _XkbReadKeyBehaviors() [CVE-2013-1997 7/15]
7143    
7144    If the X server returns key behavior indexes outside the range of the number
7145    of keys it told us to allocate, out of bounds memory writes could occur.
7146    
7147    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
7148    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7149    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
7150
7151commit 00626c3830b869259098985afa38933d77ccec72
7152Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7153Date:   Sat Mar 2 09:40:22 2013 -0800
7154
7155    unvalidated index in _XkbReadKeyActions() [CVE-2013-1997 6/15]
7156    
7157    If the X server returns key action indexes outside the range of the number
7158    of keys it told us to allocate, out of bounds memory access could occur.
7159    
7160    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
7161    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7162    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
7163
7164commit fd7d4956bc7a1c4b5c38661b12777ebee4d685d9
7165Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7166Date:   Sat Mar 2 09:28:33 2013 -0800
7167
7168    unvalidated index in _XkbReadKeySyms() [CVE-2013-1997 5/15]
7169    
7170    If the X server returns keymap indexes outside the range of the number of
7171    keys it told us to allocate, out of bounds memory access could occur.
7172    
7173    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
7174    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7175    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
7176
7177commit 59ae16a00d18588e98af57d26e442af8ea42b7aa
7178Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7179Date:   Sat Mar 2 09:18:26 2013 -0800
7180
7181    unvalidated indexes in _XkbReadGetGeometryReply() [CVE-2013-1997 4/15]
7182    
7183    If the X server returns color indexes outside the range of the number of
7184    colors it told us to allocate, out of bounds memory access could occur.
7185    
7186    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
7187    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7188    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
7189
7190commit bff938b9fe1629cbacb726509edfa2a3840b7207
7191Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7192Date:   Sat Mar 2 09:12:47 2013 -0800
7193
7194    unvalidated indexes in _XkbReadGeomShapes() [CVE-2013-1997 3/15]
7195    
7196    If the X server returns shape indexes outside the range of the number
7197    of shapes it told us to allocate, out of bounds memory access could occur.
7198    
7199    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
7200    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7201    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
7202
7203commit f293659d5a4024bda386305bb7ebeb4647c40934
7204Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7205Date:   Fri Mar 1 22:49:01 2013 -0800
7206
7207    unvalidated index in _XkbReadGetDeviceInfoReply() [CVE-2013-1997 2/15]
7208    
7209    If the X server returns more buttons than are allocated in the XKB
7210    device info structures, out of bounds writes could occur.
7211    
7212    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
7213    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7214    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
7215
7216commit cddc4e7e3cb4b9b7ad25f8591971a86901c249f2
7217Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7218Date:   Fri Mar 1 19:30:09 2013 -0800
7219
7220    unvalidated lengths in XAllocColorCells() [CVE-2013-1997 1/15]
7221    
7222    If a broken server returned larger than requested values for nPixels or
7223    nMasks, XAllocColorCells would happily overflow the buffers provided by
7224    the caller to write the results into.
7225    
7226    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
7227    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7228    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
7229
7230commit 2cd62b5eb99ffbb2fce99f3c459455e630b35bf7
7231Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7232Date:   Fri Mar 1 22:49:01 2013 -0800
7233
7234    integer overflow in XListHosts() [CVE-2013-1981 5/13]
7235    
7236    If the reported number of host entries is too large, the calculations
7237    to allocate memory for them may overflow, leaving us writing beyond the
7238    bounds of the allocation.
7239    
7240    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
7241    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7242    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
7243
7244commit 1f6a3dbf699b85c0ea715ef21de7e7095a714e12
7245Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7246Date:   Fri Mar 1 22:49:01 2013 -0800
7247
7248    integer overflow in XGetMotionEvents() [CVE-2013-1981 4/13]
7249    
7250    If the reported number of motion events is too large, the calculations
7251    to allocate memory for them may overflow, leaving us writing beyond the
7252    bounds of the allocation.
7253    
7254    v2: Ensure nEvents is set to 0 when returning NULL events pointer
7255    
7256    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
7257    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7258
7259commit 39515b7c3ba8cae9021bf6695e378ae19487082f
7260Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7261Date:   Fri Mar 1 22:49:01 2013 -0800
7262
7263    integer overflow in XListFontsWithInfo() [CVE-2013-1981 3/13]
7264    
7265    If the reported number of remaining fonts is too large, the calculations
7266    to allocate memory for them may overflow, leaving us writing beyond the
7267    bounds of the allocation.
7268    
7269    v2: Fix reply_left calculations, check calculated sizes fit in reply_left
7270    v3: On error cases, also set values to be returned in pointer args to 0/NULL
7271    
7272    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
7273    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7274
7275commit 5669a220816b7d58fcaf0c302ead16fbe5c87817
7276Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7277Date:   Fri Mar 1 21:05:27 2013 -0800
7278
7279    integer overflow in _XF86BigfontQueryFont() [CVE-2013-1981 2/13]
7280    
7281    Similar to _XQueryFont, but with more ways to go wrong and overflow.
7282    Only compiled if libX11 is built with XF86BigFont support.
7283    
7284    v2: Fix reply_left calculations, check calculated sizes fit in reply_left
7285    
7286    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
7287    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7288
7289commit 6df8a63d34b7514077188e2062a13774f920c085
7290Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7291Date:   Fri Mar 1 21:05:27 2013 -0800
7292
7293    integer overflow in _XQueryFont() on 32-bit platforms [CVE-2013-1981 1/13]
7294    
7295    If the CARD32 reply.nCharInfos * sizeof(XCharStruct) overflows an
7296    unsigned long, then too small of a buffer will be allocated for the
7297    data copied in from the reply.
7298    
7299    v2: Fix reply_left calculations, check calculated sizes fit in reply_left
7300    
7301    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
7302    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7303
7304commit 9f5d83706543696fc944c1835a403938c06f2cc5
7305Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7306Date:   Fri Mar 1 20:54:24 2013 -0800
7307
7308    Add _XEatDataWords to discard a given number of 32-bit words of reply data
7309    
7310    Matches the units of the length field in X protocol replies, and provides
7311    a single implementation of overflow checking to avoid having to replicate
7312    those checks in every caller.
7313    
7314    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7315    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
7316
7317commit d7f04c340ade3834e603c23d543132e1ee4e0c63
7318Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7319Date:   Sat Mar 2 13:03:55 2013 -0800
7320
7321    Move repeated #ifdef magic to find PATH_MAX into a common header
7322    
7323    Lets stop duplicating the mess all over
7324    
7325    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7326    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
7327
7328commit f3a553a4e4a55d9d19deda1ea01883e1d5d682b1
7329Author: Pander <pander@users.sourceforge.net>
7330Date:   Tue May 7 18:38:14 2013 -0400
7331
7332    Add compose sequences for J́ and j́.
7333    
7334    The resulting sequences are:
7335    
7336      U+004A LATIN CAPITAL LETTER J  U+0301 COMBINING ACUTE ACCENT
7337      U+006A LATIN SMALL LETTER J    U+0301 COMBINING ACUTE ACCENT
7338    
7339    Used in Dutch, per:
7340    
7341      http://lists.x.org/archives/xorg-devel/2013-February/035514.html
7342      https://nl.wikipedia.org/wiki/Accenttekens_in_de_Nederlandse_spelling
7343    
7344    Signed-off-by: Pander <pander@users.sourceforge.net>
7345    Signed-off-by: James Cloos <cloos@jhcloos.com>
7346
7347commit f49bb2dd6d4ea45c55bd21acc0efe2b764441020
7348Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7349Date:   Sat Mar 16 18:30:56 2013 -0700
7350
7351    Move big request comment in XOpenDisplay to the right place
7352    
7353    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7354
7355commit 3996543c1b2919e97d61a5d70fe1ebd7cd76fc83
7356Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7357Date:   Sat Mar 9 19:16:03 2013 -0800
7358
7359    libX11 1.5.99.901 (1.6 RC1)
7360    
7361    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7362
7363commit f9cd175a471116a616e681fb0ca1a61b3d84a6a0
7364Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7365Date:   Fri Mar 8 22:33:28 2013 -0800
7366
7367    Fix very weird indenting in src/GetFProp.c
7368    
7369    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7370
7371commit e9bd757630368afb374c5d1bcc5d4d85ad3c6c4c
7372Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7373Date:   Fri Mar 8 15:37:33 2013 -0800
7374
7375    XAllocClassHint: Assume calloc sets pointers in allocated memory to NULL
7376    
7377    While the C standard technically allows for the compiler to translate
7378    pointer = 0 or pointer = NULL into something other than filling the
7379    pointer address with 0 bytes, the rest of the Xlib code already assumes
7380    that calloc initializes any pointers in the struct to NULL, and there
7381    are no known systems supported by X.Org where this is not true.
7382    
7383    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7384
7385commit 39547d600a13713e15429f49768e54c3173c828d
7386Author: Karl Tomlinson <xmail@karlt.net>
7387Date:   Mon Feb 18 01:25:34 2013 +0000
7388
7389    MakeBigReq: don't move the last word, already handled by Data32
7390    
7391    MakeBigReq inserts a length field after the first 4 bytes of the request
7392    (after req->length), pushing everything else back by 4 bytes.
7393    
7394    The current memmove moves everything but the first 4 bytes back.
7395    If a request aligns to the end of the buffer pointer when MakeBigReq is
7396    invoked for that request, this runs over the buffer.
7397    Instead, we need to memmove minus the first 4 bytes (which aren't moved),
7398    minus the last 4 bytes (so we still align to the previous tail).
7399    
7400    The 4 bytes that fell out are already handled with Data32, which will
7401    handle the buffermax correctly.
7402    
7403    The case where req->length = 1 was already not functional.
7404    
7405    Reported by Abhishek Arya <inferno@chromium.org>.
7406    
7407    https://bugzilla.mozilla.org/show_bug.cgi?id=803762
7408    
7409    Reviewed-by: Jeff Muizelaar <jmuizelaar@mozilla.com>
7410    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
7411    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7412
7413Notes:
7414    CVE-2013-7439
7415
7416commit 3cdb6c3a1646f670afa03d424ec12ac418181d1e
7417Author: Quentin Glidic <sardemff7+git@sardemff7.net>
7418Date:   Tue Jan 15 21:07:17 2013 +0000
7419
7420    nls/Makefile.am: Use LOG_COMPILER
7421    
7422    TESTS_ENVIRONMENT is deprecated
7423    
7424    Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>
7425    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7426
7427commit df66d7a98e2bc7f44fb5583b645df87d525f07f1
7428Author: Quentin Glidic <sardemff7+git@sardemff7.net>
7429Date:   Tue Jan 15 21:07:16 2013 +0000
7430
7431    nls/Makefile.am: Remove unneeded $(srcdir)
7432    
7433    Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>
7434    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
7435    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7436
7437commit 3facbe5c0df1b5597571b7b00d5f7bdbc92fb278
7438Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7439Date:   Sat Mar 2 12:01:39 2013 -0800
7440
7441    Add <X11/Xresource.h> hint to all Xrm* man pages
7442    
7443    Help users figure out which header file they need to #include
7444    
7445    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7446
7447commit 466404007f2c8f7166e4faddfea1454c5bfe1e9a
7448Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7449Date:   Fri Mar 8 17:13:09 2013 -0800
7450
7451    _xudc_code_to_glyph: check for NULL pointer *before* writing to it, not after
7452    
7453    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7454
7455commit 47d2eff64d167b3245d346d7f38ca703be645e26
7456Author: Ken Moffat <ken@linuxfromscratch.org>
7457Date:   Thu Mar 7 18:27:54 2013 -0500
7458
7459    dead_double_grave and dead_inverted_breve should only have one underscore.
7460    
7461    Correct instances of dead_double_grave and dead_inverted_breve to
7462    dead_doublegrave and dead_invertedbreve.
7463    
7464    Signed-off-by: Ken Moffat <ken@linuxfromscratch.org>
7465    Signed-off-by: James Cloos <cloos@jhcloos.com>
7466
7467commit c23d61d1b84dca3740bf4786978c7908d0065fb9
7468Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7469Date:   Fri Mar 1 18:10:27 2013 -0800
7470
7471    Assume size_t is always available, since it was defined in C89
7472    
7473    Don't provide a fallback definition #ifdef X_NOT_POSIX anymore.
7474    We already use size_t throughout the rest of Xlib, just had this
7475    one instance left in XKBGAlloc.c of a fallback definition.
7476    
7477    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7478
7479commit 9bcfd84aa1410387bc8cf002a5f90f44705aa0d1
7480Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7481Date:   Fri Mar 1 18:09:07 2013 -0800
7482
7483    unifdef XKB_IN_SERVER
7484    
7485    Leftovers from XKB files that were previously shared between the client
7486    and server code, but aren't any more.
7487    
7488    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7489    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
7490
7491commit 769a0efa2298040fe8316a89fc9e75fb61e288e5
7492Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7493Date:   Thu Feb 28 20:04:25 2013 -0800
7494
7495    unifdef CRAY & _CRAY
7496    
7497    (mostly performed with unifdef, followed by some manual cleanup of
7498     the remaining code)
7499    
7500    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7501    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
7502
7503commit ca106eb03e5f5468df8033300c5caae3d3c6936b
7504Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7505Date:   Thu Feb 28 20:04:25 2013 -0800
7506
7507    unifdef WORD64
7508    
7509    WORD64 seems to have only been defined in <X11/Xmd.h> when building for
7510    CRAY, to handle int being a 64-bit value (ILP64, not LP64) and having
7511    64-bit alignment requirements.
7512    
7513    It hadn't been fully supported even before autotooling, as can be
7514    seen by removed code such as:
7515    
7516     #ifdef WORD64
7517     _XkbWriteCopyData32 Not Implemented Yet for sizeof(int)==8
7518     #endif
7519    
7520    (mostly performed with unifdef, followed by some manual cleanup of
7521     the remaining code)
7522    
7523    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7524    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
7525
7526commit 9399caf2c12cbe1ed56f4f6b368c5811cb5d0458
7527Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7528Date:   Thu Feb 28 20:04:25 2013 -0800
7529
7530    unifdef MUSTCOPY
7531    
7532    MUSTCOPY seems to have only been defined in <X11/Xmd.h> when building for
7533    CRAY, to handle missing some sizes of integer type.
7534    
7535    (mostly performed with unifdef, followed by some manual cleanup of
7536     spacing/indenting in the remaining code)
7537    
7538    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7539    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
7540
7541commit b687440c28c7da6ee0ae44514d20248db5161606
7542Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7543Date:   Sat Feb 16 10:42:23 2013 -0800
7544
7545    Convert more sprintf calls to snprintf
7546    
7547    You could analyze most of these and quickly recognize that there was no
7548    chance of buffer overflow already, but why make everyone spend time doing
7549    that when we can just make it obviously safe?
7550    
7551    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7552
7553commit b092dabbd712d7b656abcf572d253b9b206c0237
7554Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7555Date:   Fri Feb 15 23:43:12 2013 -0800
7556
7557    XKeysymToString: move variable declarations to the scope of their usage
7558    
7559    Makes it easier for readers to understand scope of variable usage, and
7560    clears up gcc warning:
7561    
7562    KeysymStr.c: In function 'XKeysymToString':
7563    KeysymStr.c:128:13: warning: declaration of 'i' shadows a previous local [-Wshadow]
7564    KeysymStr.c:73:18: warning: shadowed declaration is here [-Wshadow]
7565    
7566    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7567
7568commit f0b171c8ea7b055ba520272ea9a2604e18841ac7
7569Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7570Date:   Fri Feb 15 23:34:40 2013 -0800
7571
7572    Preserve constness in casting arguments through the Data*() routines
7573    
7574    Casts were annoying gcc by dropping constness when changing types,
7575    when routines simply either copy data into the request buffer or
7576    send it directly to the X server, and never modify the input.
7577    
7578    Fixes gcc warnings including:
7579    ChProp.c: In function 'XChangeProperty':
7580    ChProp.c:65:6: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
7581    ChProp.c:65:6: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
7582    ChProp.c:74:6: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
7583    ChProp.c:74:6: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
7584    ChProp.c:83:6: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
7585    SetHints.c: In function 'XSetStandardProperties':
7586    SetHints.c:262:20: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
7587    SetPntMap.c: In function 'XSetPointerMapping':
7588    SetPntMap.c:46:5: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
7589    SetPntMap.c:46:5: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
7590    StBytes.c: In function 'XStoreBuffer':
7591    StBytes.c:97:33: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
7592    StName.c: In function 'XStoreName':
7593    StName.c:40:27: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
7594    StName.c: In function 'XSetIconName':
7595    StName.c:51:27: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
7596    
7597    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7598
7599commit 6c558ee357292dd9dfc6d9006f4525f625327c52
7600Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7601Date:   Fri Feb 15 22:58:54 2013 -0800
7602
7603    Fix comment typo & confusing indentation levels in Data() macro definition
7604    
7605    The final } matches the one on the #define line, not one that doesn't
7606    appear after the else statement it was lined up with
7607    
7608    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7609
7610commit afd6593da90e51234d59f8921c411317f91ab48b
7611Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7612Date:   Fri Feb 15 23:25:38 2013 -0800
7613
7614    XStringToKeysym: preserve constness when casting off unsignedness for strcmp
7615    
7616    Fixes gcc warning:
7617    StrKeysym.c:97:17: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
7618    
7619    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7620
7621commit 7e3bf4dd83fec22bd568146de75e6d59eff74e21
7622Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7623Date:   Fri Feb 15 23:14:40 2013 -0800
7624
7625    XRebindKeysym: Drop unnecessary const-removing cast
7626    
7627    C89 defines memcpy as taking a const void *, so casting from
7628    const unsigned char * to char * simply angers gcc for no benefit:
7629    
7630    KeyBind.c:1017:24: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
7631    
7632    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7633
7634commit 54527eab93d46055cf11eb6c18abb353a03ae544
7635Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7636Date:   Fri Feb 15 22:45:19 2013 -0800
7637
7638    cmsColNm.c: maintain constness of arguments to qsort helper function
7639    
7640    Fixes gcc warning:
7641    
7642    cmsColNm.c: In function 'FirstCmp':
7643    cmsColNm.c:257:20: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
7644    cmsColNm.c:257:45: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
7645    
7646    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7647
7648commit deedeada53676ee529d700bf96fde0b29a3a1def
7649Author: Nickolai Zeldovich <nickolai@csail.mit.edu>
7650Date:   Tue Jan 22 10:03:00 2013 -0500
7651
7652    XListFontsWithInfo: avoid accessing realloc'ed memory
7653    
7654    If exactly one of the two reallocs in XListFontsWithInfo() fails, the
7655    subsequent code accesses memory freed by the other realloc.
7656    
7657    Signed-off-by: Nickolai Zeldovich <nickolai@csail.mit.edu>
7658    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7659    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7660
7661commit f57fd760cba92ad846917f21e94e73e9c846185f
7662Author: Colin Walters <walters@verbum.org>
7663Date:   Wed Jan 4 17:37:06 2012 -0500
7664
7665    autogen.sh: Implement GNOME Build API
7666    
7667    http://people.gnome.org/~walters/docs/build-api.txt
7668    
7669    Signed-off-by: Adam Jackson <ajax@redhat.com>
7670
7671commit 51c102d39e855cf1704d9eb3afba76a2e73c6b81
7672Author: Adam Jackson <ajax@redhat.com>
7673Date:   Tue Jan 15 14:28:48 2013 -0500
7674
7675    configure: Remove AM_MAINTAINER_MODE
7676    
7677    Signed-off-by: Adam Jackson <ajax@redhat.com>
7678
7679commit 3cd974b1d4d1fa6389d3695fa9fcc0c22a51d50c
7680Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7681Date:   Wed Dec 26 22:57:39 2012 -0800
7682
7683    Remove unused DECnet ("DNETCONN") code from Xlib
7684    
7685    Has never been converted to build in modular builds, so has been unusable
7686    since X11R7.0 release in 2005.  DNETCONN support was removed from xtrans
7687    back in 2008.
7688    
7689    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7690
7691commit a6e5b36a3e6d4a7a9fb4bad905ed127e67b1957e
7692Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7693Date:   Wed Dec 26 22:56:38 2012 -0800
7694
7695    Remove unused TLI ("STREAMSCONN") code from Xlib
7696    
7697    Has never been converted to build in modular builds, so has been unusable
7698    since X11R7.0 release in 2005.  All known platforms with TLI/XTI support
7699    that X11R7 & later releases run on also have (and mostly prefer) BSD
7700    socket support for their networking API.
7701    
7702    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7703
7704commit 59c9ee8cd58857c5769b643611cbe526005a9e45
7705Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7706Date:   Sun Dec 16 17:44:42 2012 -0800
7707
7708    Tell clang not to report -Wpadded warnings on public headers we can't fix
7709    
7710    Better to silence the compiler warning than break ABI.
7711    
7712    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7713
7714commit 0b148750027fd0557c5ed93afda861ddf4b92e0f
7715Author: Jon TURNEY <jon.turney@dronecode.org.uk>
7716Date:   Mon Nov 12 17:27:52 2012 +0000
7717
7718    Fix config check for loadable modules
7719    
7720    The config check of the results of testing for dlfcn.h or dl.h just tests the
7721    value of the ac_cv_ variables, which will be 'yes' or 'no', rather than checking
7722    it is 'yes', so loadable module support would always be detected.
7723    
7724    This is necessary for successful compilation for the MinGW target without the
7725    optional dlfcn-win32 library.
7726    
7727    v2: Also, fixed typoed name of ac_cv_header_dlfcn_h, so check still works
7728    correctly when dlfcn.h is available
7729    
7730    Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
7731    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
7732
7733commit cd25cab4b5b957641183ce72dd1ae0424aff1663
7734Author: Egbert Eich <eich@freedesktop.org>
7735Date:   Fri May 20 18:27:02 2011 +0200
7736
7737    Install Xcms.txt in $(datadir) rather than $(libdir).
7738    
7739    This file is an architecture independent data and should be where
7740    other databases are.
7741    This is the Xlib provided sample file, applications are free to
7742    use a different one specifying its location in the XCMSDB env
7743    variable.
7744    
7745    Signed-off-by: Egbert Eich <eich@freedesktop.org>
7746    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7747
7748commit 51fef7e273b5c6256e4c9604e3e1afe5dc8f6a1a
7749Author: Egbert Eich <eich@freedesktop.org>
7750Date:   Fri May 20 18:25:24 2011 +0200
7751
7752    Don't hard code path to Xcms.txt file.
7753    
7754    The path to this file is configurable at build time. The source
7755    however contains a hard coded path.
7756    
7757    Signed-off-by: Egbert Eich <eich@freedesktop.org>
7758    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7759
7760commit 9833489e6c3829a1e835bc0a11f028fc180809e4
7761Author: Colin Walters <walters@verbum.org>
7762Date:   Fri Dec 7 08:51:21 2012 -0500
7763
7764    Fix build after dropping locales
7765    
7766    They also needed to be removed from configure.ac
7767    
7768    Signed-off-by: Colin Walters <walters@verbum.org>
7769    Signed-off-by: Julien Cristau <jcristau@debian.org>
7770
7771commit 0a740a574aaf0c0eec78859b773a532cff3b74c3
7772Author: Egbert Eich <eich@freedesktop.org>
7773Date:   Fri May 20 13:04:11 2011 +0200
7774
7775    i18n: Uppercased all occurances if 'iso8859' in the full locale name.
7776    
7777    Making all occurances of iso8859 upper case in the full local name
7778    makes the alias entries more consistent and match the entries on
7779    locale.dir.
7780    
7781    Signed-off-by: Egbert Eich <eich@freedesktop.org>
7782    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7783
7784commit 5e7d589697755a70fb22d85c6a1ae82b39843e53
7785Author: Egbert Eich <eich@freedesktop.org>
7786Date:   Fri May 20 17:55:49 2011 +0200
7787
7788    i18n: Remove ja.S90 and ja.U90 locales.
7789    
7790    Both locales carry a copyright notice and a prorietary statement:
7791    
7792    Copyright 1995 by FUJITSU LIMITED
7793    This is source code modified by FUJITSU LIMITED under the Joint
7794    Development Agreement for the CDEnext PST.
7795    This is unpublished proprietary source code of FUJITSU LIMITED
7796    
7797    Signed-off-by: Egbert Eich <eich@freedesktop.org>
7798    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7799
7800commit 99eae3dcb7bf6764e3b243d2a2934a4d1ecce90e
7801Author: Egbert Eich <eich@freedesktop.org>
7802Date:   Fri May 20 16:46:15 2011 +0200
7803
7804    i18n: Bring locale.dir and compose.dir in sync.
7805    
7806    Some entries for locale/encoding combinations were missing from
7807    either file or just misspelled, some entries were wrong or just
7808    aliases.
7809    
7810    Signed-off-by: Egbert Eich <eich@freedesktop.org>
7811    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7812
7813commit d1e6baa4e290b758e430077cb74e7c03ad850771
7814Author: Egbert Eich <eich@freedesktop.org>
7815Date:   Fri May 20 14:02:39 2011 +0200
7816
7817    i18n: Treat 'a3_AZ' as an alias for 'az_AZ'.
7818    
7819    locale.alias contains a comment:
7820    XCOMM a3 is not an ISO 639 language code, but in Cyrillic, "Z" looks like "3".
7821    Thus lets treat 'a3' as an alias for 'az'.
7822    
7823    Signed-off-by: Egbert Eich <eich@freedesktop.org>
7824    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7825    Reviewed-by: Magnus Kessler <Magnus.Kessler@gmx.net>
7826
7827commit fa2aab0bea18efa26a56977d3166277582ab7b07
7828Author: Egbert Eich <eich@freedesktop.org>
7829Date:   Fri May 20 13:09:38 2011 +0200
7830
7831    i18n: Fixed typos in full locale names.
7832    
7833    Fixing those typos those names actually match entries in
7834    locale.dir.
7835    
7836    Signed-off-by: Egbert Eich <eich@freedesktop.org>
7837    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7838
7839commit b88dd95005dce4c40f9b4d5f938f945e7955fd04
7840Author: Egbert Eich <eich@freedesktop.org>
7841Date:   Sat May 21 07:29:38 2011 +0200
7842
7843    i18n: Remove duplicates and aliases to oneself.
7844    
7845    Aliases to itself don't make much sense.
7846    This changes occurances of:
7847    xy_UV.UTF-8:                    xy_UV.UTF-8
7848    to
7849    xy_UV:                  xy_UV.UTF-8
7850    where applicable.
7851    
7852    Signed-off-by: Egbert Eich <eich@freedesktop.org>
7853    Reviewed-by: James Cloos <cloos@jhcloos.com>
7854
7855commit f198c6aa98f88ff285d903175a3c4c0fd33a4575
7856Author: Jens Herden <jens.herden@email.de>
7857Date:   Fri May 20 17:29:03 2011 +0200
7858
7859    i18n: Add support for Khmer locale and compose table.
7860    
7861    Signed-off-by: Egbert Eich <eich@freedesktop.org>
7862    Reviewed-by: James Cloos <cloos@jhcloos.com>
7863
7864commit 40761898692e5063957bfa2518cca3d35b2e354a
7865Author: Kalman Kemenczy <kkemenczy@novell.com>
7866Date:   Fri May 20 17:03:24 2011 +0200
7867
7868    i18n: Add support for Serbian specific compose table entries.
7869    
7870    Signed-off-by: Egbert Eich <eich@freedesktop.org>
7871    Reviewed-by: James Cloos <cloos@jhcloos.com>
7872
7873commit 7c14aacc9f01d7a975f8d9d033b9b13cbd777a61
7874Author: Egbert Eich <eich@freedesktop.org>
7875Date:   Fri May 20 14:00:35 2011 +0200
7876
7877    i18n: Adding and removing comments.
7878    
7879    Signed-off-by: Egbert Eich <eich@freedesktop.org>
7880    Reviewed-by: James Cloos <cloos@jhcloos.com>
7881
7882commit 7754d68976106183751243c2c35a84134be17b34
7883Author: Egbert Eich <eich@freedesktop.org>
7884Date:   Fri May 20 13:45:31 2011 +0200
7885
7886    i18n: Add missing locales which existed in locale.alias.
7887    
7888    Signed-off-by: Egbert Eich <eich@freedesktop.org>
7889    Reviewed-by: James Cloos <cloos@jhcloos.com>
7890
7891commit 952eccd0d25ba66023acfd31873eee2e71c38c42
7892Author: Egbert Eich <eich@freedesktop.org>
7893Date:   Fri May 20 10:57:57 2011 +0200
7894
7895    i18n: Consolidate compose handling for locales with UTF-8 encoding.
7896    
7897    - add an entry to include the default en_US compose file
7898      for the ja_JP, ko_KR, th_TH, zh_CN, zh_HK and zh_TW locales.
7899    - add missing entries for zh_CN. and zh_HK and am_ET.
7900    - change entries for the UTF-8 encoding for ru_RU, ja_JP,
7901      ko_KR, th_TH and zh_TW to point to their native directory
7902      entries.
7903    
7904    Signed-off-by: Egbert Eich <eich@freedesktop.org>
7905    Reviewed-by: James Cloos <cloos@jhcloos.com>
7906
7907commit d14b6a250f004fa405179db7020f6953001d17b9
7908Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
7909Date:   Mon Oct 22 13:54:11 2012 -0500
7910
7911    XIM: remove Private and Public macros
7912    
7913    Private is a struct member name in mingw-w64 <winioctl.h>, causing this
7914    useless define in a private header to break the build.
7915    
7916    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
7917    Reviewed-by: Jon TURNEY <jon.turney@dronecode.org.uk>
7918
7919commit f2a8def423a46d52e834cf7ea49fa0079427663a
7920Author: Adam Jackson <ajax@redhat.com>
7921Date:   Wed Oct 17 14:40:43 2012 -0400
7922
7923    XErrorDB: Add GLXBadProfileARB
7924    
7925    Signed-off-by: Adam Jackson <ajax@redhat.com>
7926
7927commit d45b3fc19fbe95c41afc4e51d768df6d42332010
7928Author: Ross Burton <ross.burton@intel.com>
7929Date:   Wed Sep 12 14:39:40 2012 +0100
7930
7931    Allow overriding location of keysymdef.h
7932    
7933    Currently keysymdef.h is found by using the includedir of xproto.  This doesn't
7934    work when cross-compiling with a sysroot as that ends up being /usr/include/X11,
7935    not a path into the cross-build environment.
7936    
7937    So, add an option to allow explicitly specifying the location of keysymdef.h,
7938    and verify that the specified or found path exists.
7939    
7940    (original patch by Martin Jansa <martin.jansa@gmail.com>, revised by myself)
7941    
7942    Signed-off-by: Ross Burton <ross.burton@intel.com>
7943    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
7944    Reviewed-by: Daniel Stone <daniel@fooishbar.org>
7945
7946commit 44cdc0dc2c68d67654023ec707b807145d3a38c0
7947Author: Eric S. Raymond <esr@thyrsus.com>
7948Date:   Thu Aug 23 19:15:07 2012 -0400
7949
7950    Renove some unnecessary low-level markup.
7951    
7952    Also, SYNTAX -> SYNOPSIS so function prototypes get parsed by doclifter.
7953    This appears to have been somebody's thinko, it's only in a few of the files.
7954    
7955    Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
7956
7957commit b686600ab5ca93b5750f827786e79c329ab2db4d
7958Author: Eric S. Raymond <esr@thyrsus.com>
7959Date:   Thu Aug 23 10:53:33 2012 -0400
7960
7961    The .NT/.NE macro pair is no longer used.  Remove it.
7962    
7963    Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
7964
7965commit b83f2898528c5dd683acd2a2143879a760a8dad5
7966Author: Eric S. Raymond <esr@thyrsus.com>
7967Date:   Thu Aug 23 10:42:46 2012 -0400
7968
7969    Remove the one and only use of the .NT/.NE pair.
7970    
7971    The problem with these macros is that they rely on being able to
7972    center the note label.  That doesn't play well with modern HTML,
7973    not anyway without coomplications like CSS.  This use was just a cute
7974    trick, not adding enough value to be kept.
7975
7976commit e9509fa6745d25eee01ec6f1c34edf8a806d66b3
7977Author: Eric S. Raymond <esr@thyrsus.com>
7978Date:   Thu Aug 23 10:23:45 2012 -0400
7979
7980    The .C{ and .C} macros are never used.  Remove them.
7981    
7982    Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
7983
7984commit 6b2f7ddeea6c87dbec4ddfc19b1fed33f1bb8575
7985Author: Eric S. Raymond <esr@thyrsus.com>
7986Date:   Thu Aug 23 10:08:08 2012 -0400
7987
7988    The .FN macro, paired with .FD, is also never used. Remove it.
7989    
7990    Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
7991
7992commit cac6572701c976542da562b2b277b07ffb892a6f
7993Author: Eric S. Raymond <esr@thyrsus.com>
7994Date:   Thu Aug 23 10:03:00 2012 -0400
7995
7996    The ".FD" macro is never used.  Remove it.
7997    
7998    It was a temptation to presentation-level klugery and is best gone.
7999    
8000    Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
8001
8002commit 6e27a828f39f7028bc7f4a8736e7262fca250632
8003Author: Eric S. Raymond <esr@thyrsus.com>
8004Date:   Thu Aug 23 09:54:25 2012 -0400
8005
8006    Clean up, my last commit missed four cases.
8007    
8008    Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
8009
8010commit a7fb575957ff4d9dd3671994a005ac3be8bb10fe
8011Author: Eric S. Raymond <esr@thyrsus.com>
8012Date:   Thu Aug 23 08:24:17 2012 -0400
8013
8014    Eliminate all uses of tab stops in the libX11 man pages.
8015    
8016    Two steps: First, expand tabs to 8 spaces in code and structure
8017    listings.  Second, make the .Ds used to wrap code listings switch to
8018    constant-width font (CW) rather than numeric font position 1, which
8019    maps to R on most systems.
8020    
8021    It is possible some archaic systems won't know what CW is, but the
8022    only risk is that code listings won't look quite right on troff
8023    devices; the PostScript and DVI drivers definitely grok it, so those
8024    important cases are OK.
8025    
8026    The purpose of these changes is to get rid of presentation-level
8027    markup so these pages will lift clean to DocBook.
8028    
8029    Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
8030
8031commit 8042f88ace33573f9d0dfaa21ed54ac7cef266d5
8032Author: Will Thompson <will@willthompson.co.uk>
8033Date:   Mon Jul 9 18:00:27 2012 +0100
8034
8035    Add compose sequences for "therefore" and "because".
8036    
8037    These sequences look sensible to me. I added them to the APL-related
8038    section of Mathematical Operators—they're in that section of Unicode
8039    anyway.
8040    
8041    https://bugs.freedesktop.org/show_bug.cgi?id=51922
8042    
8043    Signed-off-by: Will Thompson <will@willthompson.co.uk>
8044    Reviewed-by: Daniel Stone <daniel@fooishbar.org>
8045
8046commit 65358ea5079236b2508f787ac2fb2024a477e36d
8047Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8048Date:   Fri Jun 29 23:08:04 2012 -0700
8049
8050    Convert XCreate{Pix,Bit}map...Data to use C99 designated initializers
8051    
8052    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8053
8054commit 0dc93f7e43deb102b1f8fb7c4c4844cdce7ffd1e
8055Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8056Date:   Fri Jun 29 22:57:13 2012 -0700
8057
8058    XCreate{Pix,Bit}map...Data: Free pixmap in error path if XCreateGC fails
8059    
8060    Fixes leaks in error paths found by Parfait 1.0.0:
8061    
8062    Error: X Resource Leak
8063       Leaked X Resource pix
8064            at line 62 of CrBFData.c in function 'XCreateBitmapFromData'.
8065              pix initialized at line 60 with XCreatePixmap
8066    Error: X Resource Leak
8067       Leaked X Resource pix
8068            at line 70 of CrPFBData.c in function 'XCreatePixmapFromBitmapData'.
8069              pix initialized at line 66 with XCreatePixmap
8070    
8071    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8072    Reviewed-by: Aaron Plattner <aplattner@nvidia.com>
8073
8074commit dce84b8c39ad5a8908c29bb6de25b6c3004c1ab7
8075Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8076Date:   Wed Jun 6 13:31:16 2012 -0700
8077
8078    libX11 spec: Correct prototype for XConvertSelection
8079    
8080    selection & target parameters were accidentally run together
8081    
8082    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8083
8084commit 6c5cb2a90a6479f56855e5167039c37c234cdfe7
8085Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8086Date:   Fri Jun 1 23:37:09 2012 -0700
8087
8088    libX11 1.5.0
8089    
8090    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8091
8092commit 05c587ec3be880721131a17c1dd4366e458fdd8b
8093Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8094Date:   Sat May 26 14:37:28 2012 -0700
8095
8096    libX11 1.4.99.902 (1.5 RC2)
8097    
8098    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8099
8100commit d817834d9772e3500d5102e2eae868b04a33c31f
8101Author: Pander <pander@users.sourceforge.net>
8102Date:   Sat May 5 19:02:10 2012 +0200
8103
8104    Compose: Reassigned squences with minus and a or o
8105    
8106    Reassigned squences with minus and a or o (vice versa and lower and
8107    upper case) to conform existing series and not resulting in tilde.
8108    Also added noe missing underscore sequence.
8109    
8110    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8111
8112commit 6bfd1dca6e7cb2046ee6bf9dbbddc0af5ef7cc00
8113Author: Pander <pander@users.sourceforge.net>
8114Date:   Sat May 5 16:56:05 2012 +0200
8115
8116    Compose: Removed <slash> <U> and vice versa
8117    
8118    Combination with lower case u suffices
8119    
8120    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8121
8122commit 3a8b1637132d1e36eb5e11f52dfb284081772d14
8123Author: Pander <pander@users.sourceforge.net>
8124Date:   Sat May 5 16:44:31 2012 +0200
8125
8126    Compose: Removed <n> <minus> for n with tilde, also vice versa & for upper case
8127    
8128    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8129
8130commit fd514d7a35119dd4413b51c84f2a536f2ca501a6
8131Author: Pander <pander@users.sourceforge.net>
8132Date:   Sat May 5 16:40:20 2012 +0200
8133
8134    Compose: Removed <S> in combination with a numeral for superscript
8135    
8136    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8137
8138commit 1b5cad3ca54410c4edbca79c23c463e9e088bc0d
8139Author: Pander <pander@users.sourceforge.net>
8140Date:   Sat May 5 16:28:01 2012 +0200
8141
8142    Compose: Reassigned <o> <apostrophe> to oacute, also for upper case.
8143    
8144    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8145
8146commit 0bbc0d5e605e2a4a3eb00a229b651d4546e8aef4
8147Author: James Cloos <cloos@jhcloos.com>
8148Date:   Thu May 10 12:27:28 2012 -0400
8149
8150    Remove duplicate compose sequences from commit e51e37c118ae.
8151    
8152    The compose-check script only handles compiled Compose files, not
8153    the Compose.pre files.  One must remember to use:
8154    
8155        ./autogen.sh; make; make check
8156    
8157    when reviewing patches to the Compose.pre files....
8158    
8159    Signed-off-by: James Cloos <cloos@jhcloos.com>
8160
8161commit e51e37c118ae6cb9ced8244ce1c410677e0279ce
8162Author: Geoff Streeter <geoff@dyalog.com>
8163Date:   Thu Mar 22 15:02:00 2012 +0000
8164
8165    Add APL support to compose
8166    
8167    Signed-off-by: Geoff Streeter <geoff@dyalog.com>
8168    Signed-off-by: James Cloos <cloos@jhcloos.com>
8169
8170commit dac90324cee224df977a428afe80d960dceca769
8171Author: Julien Cristau <jcristau@debian.org>
8172Date:   Sat May 5 16:05:07 2012 +0200
8173
8174    configure: make previous change work with older autoconf
8175    
8176    autoconf 2.63 doesn't seem to like the nested AC_CHECK_DECL/FUNC.  So do
8177    the tests separately.
8178    
8179    Reported-by: Dave Airlie
8180    Signed-off-by: Julien Cristau <jcristau@debian.org>
8181
8182commit f5b50af4324186962e258ffe9be78d5ee4681982
8183Author: Julien Cristau <jcristau@debian.org>
8184Date:   Sun Apr 29 16:43:09 2012 +0200
8185
8186    configure: check if issetugid is declared
8187    
8188    GNU/kFreeBSD has issetugid in libc (for legacy apps?), but doesn't
8189    declare it anywhere, causing gcc to error out with
8190    -Werror=implicit-function-declaration.  Use AC_CHECK_DECL in addition to
8191    AC_CHECK_FUNC so we disable this code instead of failing to build it.
8192    
8193    Debian bug#669670 <http://bugs.debian.org/669670>
8194    
8195    Signed-off-by: Julien Cristau <jcristau@debian.org>
8196    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8197    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8198
8199commit 52e1b5cc3b6de76ccf4285b55652474a522ed9a8
8200Author: Peter Hutterer <peter.hutterer@who-t.net>
8201Date:   Mon Apr 30 16:36:47 2012 +1000
8202
8203    Typo fix
8204    
8205    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
8206
8207commit b64969f0e510d5d3300cf968741a3726a6409577
8208Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8209Date:   Tue Apr 17 18:12:02 2012 -0700
8210
8211    Add X11R7 sections to the libX11 & XKBlib credits to cover Docbook conversion
8212    
8213    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8214
8215commit 9ea611696f317ac3b3fb67893f1d6d87d49e3b5e
8216Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8217Date:   Tue Apr 17 18:01:36 2012 -0700
8218
8219    Add olinks from libX11 & localedb specs to ICCCM spec
8220    
8221    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8222
8223commit b3c1b8cdab7d14220426c9b997ac362dc16318fc
8224Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8225Date:   Tue Apr 17 17:49:44 2012 -0700
8226
8227    Add olinks from libX11 spec to ICCCM spec
8228    
8229    Also convert ICCCM title mentions from <emphasis> to <citetitle>
8230    
8231    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8232
8233commit ebebb65e753007ad01966dccc90bd6ca9a826488
8234Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8235Date:   Sat Apr 14 23:40:01 2012 -0700
8236
8237    libX11 AppC: Fix section headers that didn't translate from nroff properly
8238    
8239    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8240    Acked-by: Peter Hutterer <peter.hutterer@who-t.net>
8241
8242commit d5ab4ae0e74ae1fb30fb72add0751effe2759bf2
8243Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8244Date:   Sat Apr 14 23:13:05 2012 -0700
8245
8246    Add olinks from libX11 spec to x11protocol spec
8247    
8248    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8249    Acked-by: Peter Hutterer <peter.hutterer@who-t.net>
8250
8251commit 83878a0e34fffd255597300dd3e6cd43fcd645b0
8252Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8253Date:   Sat Apr 14 22:28:53 2012 -0700
8254
8255    libX11 spec: Remove .br nroff macro left behind in XGetWindowProperty prototype
8256    
8257    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8258
8259commit abc523fce31fcf2687229697a8eb656e343ecb0c
8260Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8261Date:   Thu Mar 15 22:14:45 2012 -0700
8262
8263    libX11 1.4.99.901 (1.5 RC1)
8264    
8265    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8266
8267commit b2cc5905a4a6d519957223e8ba2caef71520040c
8268Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8269Date:   Thu Mar 15 22:03:21 2012 -0700
8270
8271    Remove "register" qualifier that annoys Solaris Studio compiler
8272    
8273    Fixes warning:
8274    "Xrm.c", line 1094: warning: storage class after type is obsolescent
8275    
8276    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8277
8278commit 62d42953893f93a98db0504eaf06d650ceaf5811
8279Author: James Cloos <cloos@jhcloos.com>
8280Date:   Wed Mar 14 17:25:46 2012 -0400
8281
8282    Fix the gtk+ additions
8283    
8284    (Some of) the Dstroke and dstroke entries already were present as U011[01],
8285    even though XK_Dstroke and XK_dstroke are part of the latin2 set in keysymdef.h.
8286    
8287    The addition of <Multi_key> <o> <apostrophe> as a postfix version of
8288    <Multi_key> <apostrophe> <o> blocks the existing entries for ǻ and Ǻ.
8289    That prevents its and <Multi_key> <O> <apostrophe>’s addition.
8290    
8291    Signed-off-by: James Cloos <cloos@jhcloos.com>
8292
8293commit 91bcce48d94792f78333d2aea73961cc2e739d2e
8294Author: Pander <pander@users.sourceforge.net>
8295Date:   Wed Mar 14 12:54:53 2012 -0400
8296
8297    Complete compose key sequences for musical symbols
8298    
8299    Signed-off-by: Pander <pander@users.sourceforge.net>
8300    Signed-off-by: James Cloos <cloos@jhcloos.com>
8301
8302commit cf040016d455bc37f7665d6714337c5eafd8ea94
8303Author: Pander <pander@users.sourceforge.net>
8304Date:   Wed Mar 14 12:46:25 2012 -0400
8305
8306    Add compose sequences from gtk+ to X.Org
8307    
8308    Signed-off-by: Pander <pander@users.sourceforge.net>
8309    Signed-off-by: James Cloos <cloos@jhcloos.com>
8310
8311commit a4c591ced5cac9301b9abfa0e521be2d0b267882
8312Author: Keith Packard <keithp@keithp.com>
8313Date:   Sun Mar 4 02:00:13 2012 -0800
8314
8315    Block for other threads in _XUserLockDisplay
8316    
8317    Wait for all other threads to release the user-level lock when
8318    acquiring it. This ensures that only one thread at a time holds the
8319    user-level lock, necessary as it is a nesting lock and a single
8320    variable is used to determine when the lock is nesting and when it is
8321    contended.
8322    
8323    Signed-off-by: Keith Packard <keithp@keithp.com>
8324    Reviewed-by: Jamey Sharp <jamey@minilop.net>
8325
8326commit ed00b460acb08787b695f27b864e96102dfd4867
8327Author: Jon TURNEY <jon.turney@dronecode.org.uk>
8328Date:   Fri Oct 28 11:09:20 2011 -0500
8329
8330    Don't use caddr_t casts
8331    
8332    (caddr_t) isn't used anywhere else in xcb or libX11.
8333    Cast to (char *) for consistency.
8334    
8335    Removing this cast allows building for MinGW without patching.
8336    
8337    v2: Cast to (char *) rather than just dropping the cast
8338    
8339    Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
8340    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8341
8342commit 20adca02c2a1d0b7c95ecbe387d68f881fd57754
8343Author: Julien Cristau <jcristau@debian.org>
8344Date:   Sun Feb 19 13:27:38 2012 +0100
8345
8346    Revert "xcb: Add TCP fallback"
8347    
8348    This reverts commit f09c5299a381e2729e800a0ac43f1c0e371f65f6.
8349    
8350    The TCP fallback ended up falling back to UNIX socket connection if
8351    $DISPLAY was set to e.g. some.host:0 and the initial attempt failed.
8352    
8353    Debian bug#659558 <http://bugs.debian.org/659558>
8354    
8355    Signed-off-by: Julien Cristau <jcristau@debian.org>
8356    
8357    Conflicts:
8358    
8359            src/OpenDis.c
8360
8361commit f4378193619baa9bb973c1b5b718721bbcbe92c7
8362Author: James Cloos <cloos@jhcloos.com>
8363Date:   Wed Feb 22 14:13:20 2012 -0500
8364
8365    Make the compose sequence for ẞ work.
8366    
8367    There is no XK_Ssharp symbol for U+1E9E LATIN CAPITAL LETTER SHARP S,
8368    so use the U1e9e symbol in the Compose sequence.
8369    
8370    (Compose sequences do not work when the target symbol is unknown.)
8371    
8372    Signed-off-by: James Cloos <cloos@jhcloos.com>
8373
8374commit 2ca641c3a506dcbee97e279b67990d5387389f36
8375Author: Marko Myllynen <myllynen@redhat.com>
8376Date:   Mon Feb 20 17:04:59 2012 +0200
8377
8378    Use ezh/EZH in compose maps
8379    
8380    Related: https://bugs.freedesktop.org/show_bug.cgi?id=19687
8381    
8382    Signed-off-by: Marko Myllynen <myllynen@redhat.com>
8383    Reviewed-by: Matt Dew <marcoz@osource.org>
8384    Signed-off-by: James Cloos <cloos@jhcloos.com>
8385
8386commit 61725822f20f47684a545c1797183ee7075243ac
8387Author: Marko Myllynen <myllynen@redhat.com>
8388Date:   Sun Feb 20 17:09:43 2011 +0200
8389
8390    Provide translation from XK_permille (ad5) to Unicode (U2030)
8391    
8392    https://bugs.freedesktop.org/show_bug.cgi?id=19687
8393    
8394    Signed-off-by: Marko Myllynen <myllynen@redhat.com>
8395    Reviewed-by: Matt Dew <marcoz@osource.org>
8396    Signed-off-by: James Cloos <cloos@jhcloos.com>
8397
8398commit d2cce0abba0fa0143f49026442c8cab5ed721625
8399Author: Jeremy Huddleston <jeremyhu@apple.com>
8400Date:   Sun Feb 12 19:01:43 2012 -0800
8401
8402    nls: Use LC_CTYPE=C for sed magic
8403    
8404    Stricter versions of sed can trip up if the input does not match
8405    LC_CTYPE
8406    
8407    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
8408
8409commit f180e043f55531933bedfa6e0ff36a00a9ec07f3
8410Author: Frédéric Boiteux < <fboiteux@calistel.com>
8411Date:   Wed Nov 30 12:47:31 2011 +0000
8412
8413    Compositions with the dead greek symbol
8414    
8415    FreeDesktop Bug 21475 <https://bugs.freedesktop.org/show_bug.cgi?id=21475>
8416    
8417    Signed-off-by: Frédéric Boiteux <fboiteux@calistel.com>
8418    Signed-off-by: James Cloos <cloos@jhcloos.com>
8419
8420commit d58e8f8e27790017fcfdeca0843b7318d541c189
8421Author: Ryan Pavlik <rpavlik@iastate.edu>
8422Date:   Sun Jan 1 21:04:52 2012 +0000
8423
8424    Use pthreads on MinGW also
8425    
8426    Use pthreads (provided by the pthreads-win32 compatability library which implements
8427    them using native Win32 threading) on MinGW
8428    
8429    Reviewed-by: Jon TURNEY <jon.turney@dronecode.org.uk>
8430
8431commit bf15ccb6821664746ec23d769d757edf8059007e
8432Author: Ryan Pavlik <rpavlik@iastate.edu>
8433Date:   Mon Jan 23 14:18:02 2012 +0000
8434
8435    Add XWindows.h include to Xxcbint.h
8436    
8437    This avoids some conflicting type re-definition errors which occur if
8438    we attempt to include Windows headers after Xmd.h
8439    
8440    Reviewed-by: Jon TURNEY <jon.turney@dronecode.org.uk>
8441
8442commit cadcbd376f0a5d17a71a2fe2f8ced5d93232921a
8443Author: Matt Dew <marcoz@osource.org>
8444Date:   Sat Jan 21 17:59:51 2012 -0700
8445
8446    informaltable & table cleanup
8447    
8448    On certain tables, add top and bottom borders to table header
8449    and a bottom border to the table. This matches what those
8450    tables in the old pdfs looked like.
8451    
8452    the <?dbfo keep-together='always'> prevents tables from
8453    splitting across pages. Useful for tiny tables.
8454    
8455    Converting the colwidth to a floating point, IE, 1* -> 1.0*
8456    cleans up these build errors:
8457    WARNING: table-layout="fixed" and column-width unspecified =>
8458    falling back to proportional-column-width(1)
8459    
8460    Signed-off-by: Matt Dew <marcoz@osource.org>
8461
8462commit bb551f654df8f647c867f79252241964521e689e
8463Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8464Date:   Wed Dec 28 21:22:41 2011 -0800
8465
8466    Add more Xkb man pages to the See Also lists for core keyboard functions
8467    
8468    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8469    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
8470
8471commit b7bb23fe7c8b8a17128e5bc98a05f68595190438
8472Author: Gaetan Nadon <nadon@memsize.(none)>
8473Date:   Fri Dec 30 17:08:14 2011 -0500
8474
8475    docbook.am: embed css styles inside the HTML HEAD element
8476    
8477    Rather than referring to the external xorg.css stylesheet, embed the content
8478    of the file in the html output produced. This is accomplished by using
8479    version 1.10 of xorg-xhtml.xsl.
8480    
8481    This makes the whole html docs tree much more relocatable.
8482    In addition, it eliminates xorg.css as a runtime file which makes
8483    xorg-sgml-doctools a build time only package.
8484    
8485    Signed-off-by: Gaetan Nadon <nadon@memsize.(none)>
8486
8487commit 70505468b7c4a7068cc39be42e421dcee34ec595
8488Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8489Date:   Tue Dec 13 19:58:30 2011 -0800
8490
8491    makekeys: move buf declaration from global to main to silence gcc -Wshadow
8492    
8493    The global was only referenced in the main() function, which passes it
8494    as an argument of the same name to the parse_line() function, leading
8495    to gcc -Wshadow warnings:
8496    
8497    makekeys.c: In function ‘parse_line’:
8498    makekeys.c:58:24: warning: declaration of ‘buf’ shadows a global declaration
8499    makekeys.c:54:13: warning: shadowed declaration is here
8500    
8501    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8502
8503commit 87e10a7b9a97c951ab4d477f61177779ac0a6a66
8504Author: Kusanagi Kouichi <slash@ac.auone-net.jp>
8505Date:   Wed Dec 14 02:17:55 2011 -0500
8506
8507    XQueryColors: Split a request into multiple requests if necessary
8508    
8509    https://bugs.freedesktop.org/show_bug.cgi?id=9160
8510    
8511    Signed-off-by: Kusanagi Kouichi <slash@ac.auone-net.jp>
8512    Signed-off-by: James Cloos <cloos@jhcloos.com>
8513
8514commit d3b3570592e9b9e57f270a0bd86762fd205a2833
8515Author: Andreas Wettstein <wettstein509@solnet.ch>
8516Date:   Tue Nov 8 20:18:09 2011 +0000
8517
8518    XIM: Allow modifier releases in compose sequences (#26705)
8519    
8520    Currently, only non-modifier keys (actually, keysyms) can be part of a compose
8521    sequence, and they are matched against the defined compose sequences at the
8522    time the key is pressed.  The patch allows to use modifier keys an well, but
8523    matches them on key release, and only if no other key has been pressed after
8524    the modifier.
8525    
8526    Releasing a non-matched modifier during an ongoing compose sequence only aborts
8527    the sequence if any modifier release would have matched.  In particular, if no
8528    compose sequences with modifiers are specified, the compose mechanism works
8529    exactly as without this patch.
8530    
8531    Even if modifiers are part of a compose sequence, they are not filtered.  This
8532    is because modifiers affect the keyboard state no matter what we do here and,
8533    therefore, filtering them only could confuse clients.
8534    
8535    The purpose is this extension to the compose mechanism is to allow to make
8536    better use of keys in convenient reach for touch typing.
8537    
8538    Signed-off-by: Andreas Wettstein <wettstein509@solnet.ch>
8539    Signed-off-by: James Cloos <cloos@jhcloos.com>
8540
8541commit 56448a626fc90bcf75a1fa2f4c294b0eb1f23bd6
8542Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8543Date:   Tue Nov 29 23:56:57 2011 -0800
8544
8545    Reject negative string counts in copy_string_list
8546    
8547    Silences parfait warning of a potential memory leak:
8548       Memory leak of pointer 'dst' allocated with malloc(length)
8549            at line 160 of FSWrap.c in function 'copy_string_list'.
8550              'dst' allocated at line 145 with malloc(length).
8551              dst leaks when count <= 0 at line 154.
8552    
8553    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8554
8555commit bf2d7c8c6d70539c72560b1921e18df2610acf29
8556Author: Peter Hutterer <peter.hutterer@who-t.net>
8557Date:   Fri Nov 11 14:56:36 2011 +1000
8558
8559    libX11 1.4.99.1
8560    
8561    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
8562
8563commit 24283d40b1e4314c6647dda49d2a159833341a8b
8564Author: Derek Buitenhuis <derek.buitenhuis@gmail.com>
8565Date:   Thu Sep 22 18:44:13 2011 -0400
8566
8567    makekeys: Fix build/target word size mismatch when cross-compiling
8568    
8569    Since makekeys is built using build environment's gcc and
8570    runs natively, we have to make sure that the size of the
8571    Signature type is the same on both the native environment
8572    and the target, otherwise we get mismatches upon running X,
8573    and some LSB test failures (xts5).
8574    
8575    Use an unsigned 32-bit integer on all platforms. Also,
8576    eliminate the redundant multiple typedefs for the
8577    Signature type.
8578    
8579    Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
8580    Reviewed-by: Daniel Stone <daniel@fooishbar.org>
8581
8582commit 1c41f3b9b86b5eeedfa3bff92e519d45aa097587
8583Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8584Date:   Wed Nov 9 21:00:36 2011 -0800
8585
8586    XlcSL.c: convert old-style function definitions to ANSI C89 style
8587    
8588    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8589
8590commit f6dad6aaa384bf836baa28ccb72b476a85c40eff
8591Author: Peter Hutterer <peter.hutterer@who-t.net>
8592Date:   Thu Oct 27 13:53:22 2011 +1000
8593
8594    Use GetReqSized for GetReq and GetReqExtra
8595    
8596    GetEmptyReq and GetResReq cannot do this due to the final typecast -
8597    typically requests that need either of those do not have their own typedef
8598    in the protocol headers.
8599    
8600    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
8601    Reviewed-by: Jamey Sharp <jamey@minilop.net>
8602
8603commit c9c99058b9d98789c0b2d7e78a23443c2b57a047
8604Author: Peter Hutterer <peter.hutterer@who-t.net>
8605Date:   Fri Oct 14 14:51:06 2011 +1000
8606
8607    include: Add GetReqSized() for request buffers of specific size
8608    
8609    Some XI2 requests change in size over different versions and libXi would
8610    need to hack around GetReq and GetReqExtra. Add a new GetReqSized so the
8611    library can explicitly specify the size of the request in 4-byte units.
8612    
8613    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
8614    Reviewed-by: Jamey Sharp <jamey@minilop.net>
8615
8616commit ba8a7a19165e30d14bc165f43f67c19b6a115585
8617Author: Peter Hutterer <peter.hutterer@who-t.net>
8618Date:   Thu Oct 27 13:24:10 2011 +1000
8619
8620    Switch GetEmptyReq and GetResReq to call _XGetRequest
8621    
8622    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
8623    Reviewed-by: Jamey Sharp <jamey@minilop.net>
8624
8625commit 4a060f993bf676cf21ad9784e010f54134da7b40
8626Author: Peter Hutterer <peter.hutterer@who-t.net>
8627Date:   Mon Oct 17 09:45:15 2011 +1000
8628
8629    Add _XGetRequest as substitute for GetReq/GetReqExtra
8630    
8631    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
8632    Reviewed-by: Jamey Sharp <jamey@minilop.net>
8633
8634commit d8956520deb79c1cbb5e974c175bf8493859b22b
8635Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8636Date:   Fri Oct 14 17:53:00 2011 -0700
8637
8638    Fix "nomal" -> "normal" typo in several comments
8639    
8640    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8641
8642commit 002b36e308a26a152504f9b40aa08a0dce9a7991
8643Author: Xue Wei <Wei.Xue@Sun.COM>
8644Date:   Fri Oct 14 17:39:21 2011 -0700
8645
8646    mbtocs should not truncate input
8647    
8648    Fixes pasting more than 1024 bytes into xterm, as described in
8649    https://bugs.freedesktop.org/show_bug.cgi?id=25209
8650    
8651    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8652
8653commit 9b8d8c9e5b27273e8856a3851ba9b68022bed3cd
8654Author: Marko Myllynen <myllynen@redhat.com>
8655Date:   Mon Oct 10 09:41:13 2011 +0300
8656
8657    Add new compose sequences
8658    
8659    This patch adds few new compose sequences to the en_US map, ligatures
8660    common in typesetting and sequences already in use in the fi_FI map.
8661    
8662    https://bugs.freedesktop.org/show_bug.cgi?id=30621
8663    https://bugs.freedesktop.org/show_bug.cgi?id=34523
8664    
8665    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
8666
8667commit 738f7b867341c1da87ee667d48815822715c3e75
8668Author: Choe Hwanjin <choe.hwanjin@gmail.com>
8669Date:   Thu Oct 13 07:58:02 2011 +0900
8670
8671    XIM: Make Xim handle NEED_SYNC_REPLY flag
8672    
8673    NEED_SYNC_REPLY flag should be in Xim not in Xic.
8674    Because the focused Xic can be changed before sending sync reply.
8675    After focused Xic changed, the new Xic doesn't have NEED_SYNC_REPLY
8676    flag enabled, so libX11 doesn't send XIM_SYNC_REPLY packet.
8677    
8678    This patch adds sync reply flag to Xim and removes sync reply
8679    from Xic.
8680    
8681    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=7869
8682    
8683    Signed-off-by: Choe Hwanjin <choe.hwanjin@gmail.com>
8684    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
8685
8686commit 50e15379331c436851abb194251cde96999e67b3
8687Author: Bodo Graumann <mail@bodograumann.de>
8688Date:   Mon Oct 10 16:40:52 2011 +0200
8689
8690    libX11: Fixing modifier key range in Xutil.h (Bug #21910)
8691    
8692    IsModifierKey, defined in include/X11/Xutil.h, is a macro determining,
8693    which keys are regarded as modifiers. The constants ISO_Level5_Shift,
8694    ISO_Level5_Latch and ISO_Level5_Lock where excluded previously, leaving
8695    some Neo2 modifiers functionless in combination with compose.
8696    This patch adjusts the range to include the correct, full range of
8697    modifier constants.
8698    
8699    Neo2 Bug 277 <http://wiki.neo-layout.org/ticket/277>
8700    
8701    X.Org Bug 21910 <http://bugs.freedesktop.org/show_bug.cgi?id=21910>
8702    
8703    Signed-off-by: Bodo Graumann <mail@bodograumann.de>
8704    Reviewed-by: Daniel Stone <daniel@fooishbar.org>
8705
8706commit b5a108624331fabf393223c0891914cc54d4caf4
8707Author: Yann Droneaud <yann@droneaud.fr>
8708Date:   Tue Oct 11 17:27:59 2011 +0200
8709
8710    Return name instead of False in XSetICValues()
8711    
8712    In case of error, XSetICValues() must return the first argument
8713    that failed to be set.
8714    
8715    But in some error paths, it returns False, which is converted to NULL,
8716    so the function returns OK in case of error.
8717    
8718    Signed-off-by: Yann Droneaud <yann@droneaud.fr>
8719    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
8720
8721commit 10992cb8dc5e4d938e7e5a633b68a81b5875f3ba
8722Author: Yann Droneaud <yann@droneaud.fr>
8723Date:   Sun Oct 9 17:56:45 2011 +0200
8724
8725    Return name instead of value in XGetIMValues() and XSetIMValues()
8726    
8727    As stated in man page (XOpenIM) and Xlib documentation (chapter 13.5.3),
8728    XGetIMValues() and XSetImValues() "returns the name of the first argument
8729    that could not be obtained."
8730    
8731    But currently,
8732    
8733      err = XGetIMValues(im, "invalid", &arg, NULL);
8734    
8735    returns &arg instead of "invalid".
8736    
8737    This patch fixes https://bugs.freedesktop.org/show_bug.cgi?id=12897
8738    
8739    Signed-off-by: Yann Droneaud <yann@droneaud.fr>
8740    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
8741
8742commit f2651e03f3295a453a2965c3749bc8b6e66f1c09
8743Author: Jeremy Huddleston <jeremyhu@apple.com>
8744Date:   Mon Oct 10 14:09:17 2011 -0700
8745
8746    Mark XKeycodeToKeysym as _X_DEPRECATED
8747    
8748    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
8749
8750commit 25d7bb9c705623ebbb3afba3b86d0ded5b6bb4fb
8751Author: Jeremy Huddleston <jeremyhu@apple.com>
8752Date:   Sun Oct 9 02:38:28 2011 -0700
8753
8754    Fix nobreakspace for pt_BR.UTF-8
8755    
8756    https://bugs.freedesktop.org/show_bug.cgi?id=31334
8757    
8758    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
8759
8760commit 913603660c17ec59a4d39d3e3b9d60469ee5c060
8761Author: Jeremy Huddleston <jeremyhu@apple.com>
8762Date:   Sun Oct 9 02:26:45 2011 -0700
8763
8764    Fix potential uninitialized variable access in _XimMakeICAttrIDList
8765    
8766    Found by clang static analysis
8767    
8768    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
8769
8770commit 566ceaf5a92c721ac7155528e4d0d2e5cbef023f
8771Author: Jeremy Huddleston <jeremyhu@apple.com>
8772Date:   Sun Oct 9 02:25:50 2011 -0700
8773
8774    Remove self-resolving aliases
8775    
8776    https://bugs.freedesktop.org/show_bug.cgi?id=30112
8777    
8778    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
8779
8780commit 22ba43d198dcca86c88eb15a56fc7d8fc47c422e
8781Author: Matt Dew <marcoz@osource.org>
8782Date:   Fri Oct 7 22:52:30 2011 -0600
8783
8784    Cleanup IDs and links in doc
8785    
8786    1 - fix the capitalization of the ID attributes to match either the
8787         <title> or <funcdef> string it goes with.
8788    2 - fix any <linkend>'s that were affected by 1.
8789    3 - any <function> in the docs that has an actual funcdef,
8790    will become an olink.
8791    
8792    Signed-off-by: Matt Dew <marcoz@osource.org>
8793
8794commit f858f3326adbc0c5711669b92a64a84a9083a055
8795Author: James Cloos <cloos@jhcloos.com>
8796Date:   Tue Oct 4 17:11:11 2011 -0400
8797
8798    [nls] Fix typo/synco.
8799    
8800    The iso8859-1 Compose table includes an optional section which uses
8801    Ctrl<T> as a substitute for <Multi_key>.  In that section the sequence
8802    to generate an @ (at) either was incorrectly copied from the Multi_key
8803    section or was not kept in sync with the Multi_key section.
8804    
8805    Fixing this eliminates the warning from compose-check.pl:
8806    
8807    ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
8808    ┃ Clash with existing sequence in iso8859-1/Compose.pre
8809    ┃  on line 661: Ctrl<T> <A> <A>
8810    ┃    line #661: Ctrl<T> <A> <A>         : "\305"        Aring
8811    ┃    line #480: Ctrl<T> <A> <A>         : "@"   at
8812    ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
8813    
8814    Signed-off-by: James Cloos <cloos@jhcloos.com>
8815
8816commit 7f35f7efc23234b3f8529fee31a802c21846d9ab
8817Author: Jeremy Huddleston <jeremyhu@apple.com>
8818Date:   Mon Sep 26 11:32:56 2011 -0700
8819
8820    Remove conflicting compose sequences for cent and colon
8821    
8822    Regression from 4d78ad4bf6dcabca9bb5f84c770abfbb02d3f7a4
8823    Found by tinderbox
8824    
8825    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
8826
8827commit 4d78ad4bf6dcabca9bb5f84c770abfbb02d3f7a4
8828Author: Jeremy Huddleston <jeremyhu@apple.com>
8829Date:   Sun Sep 25 16:29:17 2011 -0700
8830
8831    Add additional compose sequences for pound sterling, yen, and cent (mixed case)
8832    
8833    https://bugs.freedesktop.org/show_bug.cgi?id=1013
8834    
8835    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
8836    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
8837
8838commit 0ca4153a373e2af7a9eb3cef003393ab332bc79e
8839Author: Jeremy Huddleston <jeremyhu@apple.com>
8840Date:   Sat Sep 24 16:44:04 2011 -0700
8841
8842    Use a configure check for seteuid
8843    
8844    HP-UX doesn't have seteuid
8845    
8846    https://bugs.freedesktop.org/show_bug.cgi?id=1497
8847    
8848    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
8849
8850commit 79594b4d66344f248eb4314ecb78eb81f632c3ab
8851Author: Gaetan Nadon <memsize@videotron.ca>
8852Date:   Tue Sep 20 16:06:10 2011 -0400
8853
8854    localedb specs: use <copyright> for first holder of multi license
8855    
8856    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
8857
8858commit 154430268cf004b06920edde2f1812dc16d71fae
8859Author: Gaetan Nadon <memsize@videotron.ca>
8860Date:   Tue Sep 20 16:01:52 2011 -0400
8861
8862    libX11 specs: use <copyright> for first holder of multi license
8863    
8864    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
8865
8866commit 66e621f58dee804acb795ff2c79ce6dd38b34a3f
8867Author: Tollef Fog Heen <tfheen@err.no>
8868Date:   Tue Sep 20 13:07:37 2011 -0400
8869
8870    NLS: Add more vulgar fractions
8871    
8872    Add 1/7, 1/9, 1/10 and 0/3 vulgar fractions.
8873    
8874    Signed-off-by: Tollef Fog Heen <tfheen@err.no>
8875    Signed-off-by: James Cloos <cloos@jhcloos.com>
8876
8877commit e37a6da814b5653be46000a9a76902729660a2e6
8878Author: Alexander Polakov <polachok@gmail.com>
8879Date:   Sat Sep 17 20:54:58 2011 +0400
8880
8881    XGrabKey manual page: change XAllowAccess to XAllowEvents in See Also
8882    
8883    There is no XAllowAccess man page to see.
8884    
8885    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8886    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8887
8888commit a23f3323f269b33a43d16dce01395cd28bc41b45
8889Author: Gaetan Nadon <memsize@videotron.ca>
8890Date:   Mon Sep 19 15:27:44 2011 -0400
8891
8892    XKB: provide adequate quotes for the license text
8893    
8894    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
8895
8896commit a9c7a5cad91d968f5536ef8fc735036e921832a3
8897Author: Gaetan Nadon <memsize@videotron.ca>
8898Date:   Mon Sep 19 15:18:53 2011 -0400
8899
8900    XIM: refactor the multi licensing legal text
8901    
8902    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
8903
8904commit c46f934ed89e7de79746a0387c9f998d91994ea6
8905Author: Gaetan Nadon <memsize@videotron.ca>
8906Date:   Mon Sep 19 10:33:30 2011 -0400
8907
8908    xim trans: restore Fujitsu copyright legal text
8909    
8910    Somehow lost during docbook conversion. text from x.org ftp R7.5.
8911    
8912    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
8913
8914commit 3d75f993382bfdc89d31668d7dfc71c91222e0d7
8915Author: Gaetan Nadon <memsize@videotron.ca>
8916Date:   Mon Sep 19 10:11:46 2011 -0400
8917
8918    xtrans: restore X Consortium original legal text
8919    
8920    Asking X Consortium permission to use The Open Group name makes no sense.
8921    Even more so in 1994 before X Window System was passed on to the Open Group.
8922    
8923    Using original text from xorg-docs/general/License
8924    
8925    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
8926
8927commit 136a381585a4a9686c11bad1a6130837978e677f
8928Author: Gaetan Nadon <memsize@videotron.ca>
8929Date:   Mon Sep 19 10:03:21 2011 -0400
8930
8931    Framework: restore X Consortium copyright
8932    
8933    Somewhat dammaged during docbook conversion.
8934    Also restore pasrt of the original license text
8935    
8936    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
8937
8938commit 33f346878406762704a0c13cdc018111c666f3c1
8939Author: Gaetan Nadon <memsize@videotron.ca>
8940Date:   Mon Sep 19 09:50:00 2011 -0400
8941
8942    localedb: restore X Consortium original legal text
8943    
8944    Asking X Consortium permission to use The Open Group name makes no sense.
8945    Even more so in 1994 before X Window System was passed on to the Open Group.
8946    
8947    Using original text from xorg-docs/general/License
8948    
8949    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
8950
8951commit e99c9338e413efca026210b9d830efb5c74d34e5
8952Author: Gaetan Nadon <memsize@videotron.ca>
8953Date:   Mon Sep 19 08:23:18 2011 -0400
8954
8955    specs: support multi licensed copyright notice and license text
8956    
8957    For documentation having multiple licenses, the copyright and legalnotice
8958    elements sequence cannot instantiated multiple times.
8959    The copyright notice and license text are therefore coded inside a
8960    legalnotice element. The role attribute on the paragraph is used to allow
8961    styling of the copyright notice text which should not be italicized.
8962    
8963    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
8964
8965commit b9dedc757e667333ce899115d618f25cdaa4dd5e
8966Author: Gaetan Nadon <memsize@videotron.ca>
8967Date:   Mon Sep 19 08:17:50 2011 -0400
8968
8969    localedb: add release info to spec
8970    
8971    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
8972
8973commit 4519c89a87ddce01e599542737a27c26030fe4ff
8974Author: Gaetan Nadon <memsize@videotron.ca>
8975Date:   Mon Sep 19 08:05:32 2011 -0400
8976
8977    specs: fix The Open Group license text
8978    
8979    The warranty referred to the X Consortium
8980    
8981    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
8982
8983commit 08ac378423e7be72e340197ba5559a1a36f1783c
8984Author: Gaetan Nadon <memsize@videotron.ca>
8985Date:   Mon Sep 19 08:03:39 2011 -0400
8986
8987    specs: The strandard name is still "X Consortium Standard"
8988    
8989    This spec, and fsproto spec, are the only two docs with a different
8990    standard name.
8991    
8992    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
8993
8994commit 8dfbeb1b1b1e8aa17f69d0a373155419a5f6a172
8995Author: Gaetan Nadon <memsize@videotron.ca>
8996Date:   Sun Sep 18 13:22:34 2011 -0400
8997
8998    specs: support multi licensed copyright notice and license text
8999    
9000    For documentation having multiple licenses, the copyright and legalnotice
9001    elements sequence cannot instantiated multiple times.
9002    The copyright notice and license text are therefore coded inside a legalnotice
9003    element. The role attribute on the paragraph is used to allow styling of the
9004    copyright notice text which should not be italicized.
9005    
9006    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9007
9008commit 278ca8947c1dabb2b819527dca0fa6190c034f67
9009Author: Gaetan Nadon <memsize@videotron.ca>
9010Date:   Fri Sep 16 11:45:56 2011 -0400
9011
9012    docs: merge copyright holder under the same copyright notice
9013    
9014    As per the docbook markup dtd.
9015    
9016    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9017
9018commit 7ff012bb433109a622ac122ade71669e842ebdcf
9019Author: Gaetan Nadon <memsize@videotron.ca>
9020Date:   Fri Sep 16 10:09:57 2011 -0400
9021
9022    specs: handle multiple sets of copyright notice/license/warranty
9023    
9024    Docbook groups all the <copyright> elements together and all the
9025    <legalnotice> elements together.
9026    
9027    We cannot have a sequence:
9028    <copyright> <legalnotice> <copyright> <legalnotice> [...]
9029    
9030    A workaround, which was done in some documents, is to put the copyright
9031    notice inside the legalnotice in plain text without the <copyright> element.
9032    A formal paragraph title is added here which makes the copyright notice bold,
9033    and makes it much easier to locate.
9034    
9035    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9036    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9037
9038commit 4a550c71b8221c37b1a9378d5a170da9eaa03405
9039Author: Gaetan Nadon <memsize@videotron.ca>
9040Date:   Wed Sep 14 15:55:42 2011 -0400
9041
9042    specs: remove orphan affiliation.
9043    
9044    Authors affiliation are correct.
9045    
9046    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9047
9048commit 0cc02a6df65214560b7575e89cebee741d6d2469
9049Author: Gaetan Nadon <memsize@videotron.ca>
9050Date:   Tue Sep 13 17:39:02 2011 -0400
9051
9052    specs: use appropriate markup for Copyright statements
9053    
9054    Also move <releaseinfo> to match order of appearance
9055    
9056    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9057
9058commit afe13e19ebf0fc4e3460644164433af016f0add7
9059Author: Gaetan Nadon <memsize@videotron.ca>
9060Date:   Mon Sep 12 16:54:45 2011 -0400
9061
9062    docs: use the &fullrelvers; entity to set X11 release information
9063    
9064    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9065
9066commit 22a2153282db13e9d94881022b8c979539841a2c
9067Author: Gaetan Nadon <memsize@videotron.ca>
9068Date:   Sun Sep 11 19:49:53 2011 -0400
9069
9070    docs: remove <productnumber> which is not used by default
9071    
9072    This element is not rendered by default on the title. A template
9073    customization is required to display it.
9074    X Window System does not have a product number.
9075    
9076    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9077
9078commit 719f16570d9fcfd15247813ee51fa51ac8a6ff4c
9079Author: Gaetan Nadon <memsize@videotron.ca>
9080Date:   Sun Sep 11 17:40:21 2011 -0400
9081
9082    docs: use the &fullrelvers; entity to set X11 release information
9083    
9084    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9085
9086commit a6b2992f50b571d612ea9ade631c432c3099bc12
9087Author: Gaetan Nadon <memsize@videotron.ca>
9088Date:   Sun Sep 11 17:38:42 2011 -0400
9089
9090    docs: remove orphan <affiliation>
9091    
9092    Somehow created during the conversion from roff. Unable to locate
9093    the author to which it belongs.
9094    
9095    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9096
9097commit c7420060b6e47b8467ba50c796ec3c1bab090bc7
9098Author: Gaetan Nadon <memsize@videotron.ca>
9099Date:   Sun Sep 11 17:38:05 2011 -0400
9100
9101    docs: remove <productnumber> which is not used by default
9102    
9103    This element is not rendered by default on the title. A template
9104    customization is required to display it.
9105    X Window System does not have a product number.
9106    
9107    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9108
9109commit 7d5b718c1edbc43c54b7001be548e515a49540ea
9110Author: Gaetan Nadon <memsize@videotron.ca>
9111Date:   Fri Sep 9 14:46:39 2011 -0400
9112
9113    docbook.am: embed css styles inside the HTML HEAD element
9114    
9115    Rather than referring to the external xorg.css stylesheet, embed the content
9116    of the file in the html output produced. This is accomplished by using
9117    version 1.10 of xorg-xhtml.xsl.
9118    
9119    This makes the whole html docs tree much more relocatable.
9120    In addition, it eliminates xorg.css as a runtime file which makes
9121    xorg-sgml-doctools a build time only package.
9122    
9123    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9124
9125commit 24632d280491c465dfe208ef788815890892e326
9126Author: Gaetan Nadon <memsize@videotron.ca>
9127Date:   Mon Sep 5 12:53:12 2011 -0400
9128
9129    compose: upgrade makefile to support olinking on chunked html
9130    
9131    The essential differences over the regular docbook.am are:
9132    Adding root.filename parameter for naming of chapters html files.
9133    Using xhtml xmlto format and xorg-chunk.xsl stylesheet
9134    Set olink.base.uri for pdf but not for chunked html
9135    Olink is not applicable to ps and txt formats.
9136    
9137    Html chapters are added to shelf_DATA as they are also installed.
9138    The xml is generated from a perl script and not distributed.
9139    
9140    Requires version 1.10 of xorg-sgml-doctools.
9141    
9142    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9143
9144commit 93ab0a1c9a4f9094cf0c8e1c686130673e681798
9145Author: Gaetan Nadon <memsize@videotron.ca>
9146Date:   Wed Aug 31 19:46:20 2011 -0400
9147
9148    docbook.am: refactor common flags for xmlto and xsltproc
9149    
9150    Maximize reuse and reduce risk of setting the wrong flag
9151    at the wrong place.
9152    
9153    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9154
9155commit 85b725aa9ef76aeb5e94d42e0cd60f896da7ab97
9156Author: Gaetan Nadon <memsize@videotron.ca>
9157Date:   Wed Aug 31 10:46:59 2011 -0400
9158
9159    docbook.am: add search path for local entities
9160    
9161    Currently, only $(XORG_SGML_PATH)/X11 is searched for xml entities.
9162    A module may want to add entities that apply only to itself and
9163    not to all modules, like the xserver does.
9164    
9165    This feature may or may not be used in this module, but all modules
9166    share a copy of docbook.am.
9167    
9168    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9169
9170commit b5ed2d368d47f244d43d2513329fa2758bc4ef54
9171Author: Gaetan Nadon <memsize@videotron.ca>
9172Date:   Thu Aug 25 14:39:20 2011 -0400
9173
9174    docbook.am: explicitly list xmlto flags for each target
9175    
9176    Normal evolution of make targets make it impractical to factor out
9177    common command flags for xmlto.
9178    
9179    The targets now list each command option as its presence or absence
9180    needs to be justified.
9181    
9182    xorg.ss is only needed by xmlto for html.
9183    masterdb is only needed by xmlto.
9184    img.src.path must not be used by html.
9185    xsltproc need to use customization layer xorg-*.xsl.
9186    txt format is not required to search masterdb.
9187    
9188    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9189
9190commit d5b3605f3b0639452e892e9ff3afb18bb7442069
9191Author: Gaetan Nadon <memsize@videotron.ca>
9192Date:   Thu Aug 25 13:12:49 2011 -0400
9193
9194    docbook.am: do not generate docs if docbook customization layer is missing
9195    
9196    The stylesheets used to be only about style, fonts or colors.
9197    Complex features are now used like olink and chunked html which
9198    may cause a build break when stylesheets are missing or lead to hard
9199    to find problem.
9200    
9201    Some modules may be built when stylesheets are present while others
9202    are built without. There is no requirement to build crippled docs.
9203    
9204    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9205
9206commit 7f23c72c94d9d14122426b0d8c66054f1402769a
9207Author: Gaetan Nadon <memsize@videotron.ca>
9208Date:   Fri Aug 5 14:33:32 2011 -0400
9209
9210    libX11 specs: review doclifter generated tables
9211    
9212    Many tables had a questionnable layout and some had information dropped.
9213    Each table was cross-referenced with a pre-docbook version
9214    to ensure semantic integrity.
9215    
9216    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9217
9218commit 1efdbeb8cd08f443188ac783cbab6ba0654a66d6
9219Author: Gaetan Nadon <memsize@videotron.ca>
9220Date:   Wed Jul 20 15:28:47 2011 -0400
9221
9222    credits.xml: remove toc from Acknowledgments
9223    
9224    There should be no toc for a simple preface with only one
9225    Acknowledgments section.
9226    
9227    Use <simplesect> markup rather than sect1.
9228    
9229    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9230
9231commit 77cc17ed0817c1df3ac5feb9dc83a5ba5d021a4b
9232Author: Gaetan Nadon <memsize@videotron.ca>
9233Date:   Thu Aug 4 19:59:37 2011 -0400
9234
9235    libX11 specs: move </para> above <varaiablelist>
9236    
9237    Many, but not all, function synopsis have a paragraph that
9238    nests the variable list. The code was generated by doclifter
9239    and there is no apprent reasons as to why it was done this way.
9240    Found while investigating a spacing issue.
9241    
9242    Before the patch:
9243    <para>Some blurb about the function
9244    <funcsynopsis>
9245    </funcsynopsis>
9246    <variablelist>
9247    </variablelist>
9248    </para>
9249    
9250    After the patch:
9251    <para>Some blurb about the function</para>
9252    <funcsynopsis>
9253    </funcsynopsis>
9254    <variablelist>
9255    </variablelist>
9256    
9257    There are no noticable differences when reading the doc
9258    other than than the removed few pixels of spacing between
9259    the function sysnopsis and the variable list block.
9260    
9261    In some cases, there are no "blurb about the fucntion"
9262    and the empty paragraph is removed.
9263    
9264    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9265
9266commit 18595f0d8f95ff1c12e7b9f73bd4b30dda5c7168
9267Author: Gaetan Nadon <memsize@videotron.ca>
9268Date:   Thu Jul 28 19:46:14 2011 -0400
9269
9270    compose specs: generate chunked html
9271    
9272    For large 600 page documents such as this one, chunked html
9273    provide faster browser load time and better navigation.
9274    
9275    Simply click on the locale of your choice in the toc and
9276    the browser loads just that one file. Being a DocBook,
9277    it benefits from all of the usual features and can be
9278    integrated with the rest of the documentation.
9279    
9280    Acked-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9281    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9282
9283commit 5cc8815b8a117cf0b6af37e7d55c5a420d9fff57
9284Author: Gaetan Nadon <memsize@videotron.ca>
9285Date:   Thu Jun 23 15:16:47 2011 -0400
9286
9287    specs: build compose keys tables in specs/i18n/compose
9288    
9289    Build the tables article together with the rest of the specs.
9290    Make it transparent that the source in generated in nls.
9291    Reuse docbook.am and get all the features such as olink.
9292    
9293    The docbook article file stem and id must be the same. The new name
9294    for the main article is libX11-keys. The new installation location
9295    is $docdir/libX11/i18n/compose.
9296    
9297    The nls dir retains the role of generating the DocBook/XML source
9298    but does not build neither installs output formats or generated source.
9299    
9300    The tables article now has to specify that each included locale
9301    section is a dependency. It did not matter before as they were web links.
9302    
9303    The xorg-sgml-doctools masterdb shall be updated to include this new doc.
9304    Install location moved from doc/libX11/Compose to doc/libX11/i18n/compose.
9305    
9306    Acked-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9307    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9308
9309commit adebbe3856b4aee39c0c7af902c1dea847dd6d7c
9310Author: Gaetan Nadon <memsize@videotron.ca>
9311Date:   Thu Jun 23 14:43:31 2011 -0400
9312
9313    nls: restructure charts as a single article with sections
9314    
9315    Looks more like a real article with a toc rather than individual
9316    web pages. Looks nicer in pdf.
9317    
9318    Each locale is a "section" rather than an "article".
9319    Using XInclude to aggregate xml source files gets you the toc for free.
9320    
9321    The single document is over 600 pages while there were 62 separate
9322    documents previously. FOP version 1.0 is required to handle missing
9323    character like capital sharp s.
9324    
9325    Acked-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9326    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9327
9328commit fc74dc12b1ff3c43e240e1a713316ce1bf525d61
9329Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9330Date:   Thu Jul 28 19:32:40 2011 -0700
9331
9332    libX11 1.4.4
9333    
9334    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9335
9336commit ab1f30231755d99ed123af6873b981834640f01d
9337Author: Matt Dew <marcoz@osource.org>
9338Date:   Wed Jul 13 12:33:40 2011 -0600
9339
9340    Add id attributes to error codes to allow linking from other docs.
9341    
9342    Signed-off-by: Matt Dew <marcoz@osource.org>
9343    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9344    Acked-by: Gaetan Nadon <memsize@videotron.ca>
9345
9346commit 5c831fef402914ccf2ec14005c25be48852f119b
9347Author: David Coppa <dcoppa@gmail.com>
9348Date:   Tue Jul 12 10:05:47 2011 +0200
9349
9350    Fix libpthread linkage on OpenBSD.
9351    
9352    OpenBSD prefers to use the -pthread to fetch pthread libs when needed.
9353    
9354    Signed-off-by: Matthieu Herrb <matthieu.herrb@laas.fr>
9355    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9356
9357commit 445b0b3efc04a74fc77cd3e483b25cfb5da82f12
9358Author: Gaetan Nadon <memsize@videotron.ca>
9359Date:   Wed Jun 22 20:46:26 2011 -0400
9360
9361    config: use XORG_WITH_PERL macro to replace custom program check
9362    
9363    New in version util-macros 1.15, the macro does the usual checking
9364    for program path and provides an interface for makefile variables.
9365    
9366    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9367    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9368
9369commit 47d99a324db9232029a22dd523e3bc3ed0936aca
9370Author: Gaetan Nadon <memsize@videotron.ca>
9371Date:   Wed Jun 22 20:41:18 2011 -0400
9372
9373    config: update XORG_WITH_FOP macro usage
9374    
9375    A new feature to test for a minimum version has been added.
9376    
9377    The parameter position changed. Due to limited usage
9378    and requiring 1.15, it turns out to be backward compatible.
9379    
9380    There is no functional change to how docs are build.
9381    
9382    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9383
9384commit e659683ad51ecc26c989fbdefdfe20f83af2c5a5
9385Author: Gaetan Nadon <memsize@videotron.ca>
9386Date:   Wed Jun 22 11:48:49 2011 -0400
9387
9388    Remove unused xmlrules.in in specs, now in /nls
9389    
9390    The specs dir has been converted to docbook.am
9391    
9392    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9393
9394commit 9992092609bd83a0db778e9a9ac1e879d445e637
9395Author: Gaetan Nadon <memsize@videotron.ca>
9396Date:   Thu Mar 31 10:23:22 2011 -0400
9397
9398    nls: move xmlrules.in from specs to nls
9399    
9400    It is no longer used in the specs dir.
9401    Remove html from CLEANFILES as it breaks. Make do not clean directories
9402    Remove SUFFIXES as pattern rules are used rather than suffix rules.
9403    
9404    Other improvements are possible, the first priority is to move it out
9405    of the specs dir.
9406    
9407    Acked-by: Peter Hutterer <peter.hutterer@who-t.net>
9408    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9409
9410commit b370eeb0191b0e2a8bde2f03a442a8ca62e35d58
9411Author: Gaetan Nadon <memsize@videotron.ca>
9412Date:   Sun Jun 5 16:27:36 2011 -0400
9413
9414    Install target dbs alongside generated documents
9415    
9416    This matches a change in xorg-sgml-docs whereby the masterdb will look for
9417    the target dbs into the same location as the generated documents.
9418    
9419    The target dbs are now installed alongside the generated documents.
9420    Previously they are installed in $prefix/sgml/X11/dbs alongside masterdb which
9421    has the potential of installing outside the package prefix and cause
9422    distcheck to fail when user does not have write permission in this package.
9423    
9424    Requires XORG_CHECK_SGML_DOCTOOLS(1.8) which was released 2011-06-11
9425
9426commit 4e741654b7e0a283779b8b4af5bb32e05b7fc678
9427Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9428Date:   Tue Jun 7 18:41:30 2011 -0700
9429
9430    specs/libX11: Turn appendix references into links
9431    
9432    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9433
9434commit a3d1152bc4b300f59ea2f08925739aab1ebfbc4e
9435Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9436Date:   Tue Jun 7 18:37:41 2011 -0700
9437
9438    specs/libX11: Turn chapter references into links
9439    
9440    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9441
9442commit d0cc949dfe44a41a71f19e4fe6c7547bb3d9bdbe
9443Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9444Date:   Tue Jun 7 00:52:32 2011 -0700
9445
9446    specs/libX11: Turn many "see section ..." into links
9447    
9448    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9449
9450commit 02d4c08dead2f266809b3f93ec72377783423ac7
9451Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9452Date:   Sun Jun 5 22:50:37 2011 -0700
9453
9454    specs/libX11: Convert some header filenames to filename tags
9455    
9456    perl -i -p -e 's{^&lt;(.*\.h)&gt;\ *}{<filename class="headerfile">&lt;\1&gt;</filename>}' *.xml
9457    
9458    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9459
9460commit c51a011329afa6e5b9d2b285349c132683ecf9fb
9461Author: Matt Dew <marcoz@osource.org>
9462Date:   Tue May 31 20:03:23 2011 -0600
9463
9464    Add id attributes to funcsynopsis to allow other docs to olink to them.
9465    
9466    Signed-off-by: Matt Dew <marcoz@osource.org>
9467    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9468    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
9469
9470commit 6841260c8bb15404a0b4805bee3b0bdfec7176b3
9471Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9472Date:   Fri May 27 20:14:36 2011 -0700
9473
9474    Bug 37624 - parameter x is missing from synopsis of XDrawString in libX11.html
9475    
9476    https://bugs.freedesktop.org/show_bug.cgi?id=37624
9477    
9478    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9479
9480commit 205af6a4e557c62a6395feadc1c89f4a9fe1713b
9481Author: Matt Dew <marcoz@osource.org>
9482Date:   Sat May 21 00:23:06 2011 -0600
9483
9484    Add id's to functions, to make clickable links.
9485    
9486    Signed-off-by: Matt Dew <marcoz@osource.org>
9487    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
9488
9489commit 5c06bc594473f6ab234724cd90db32e7b57fe811
9490Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9491Date:   Fri May 20 15:38:08 2011 -0700
9492
9493    libX11 spec: fix monospaced column alignment after deligaturization
9494    
9495    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9496
9497commit ef0019c714c273cb9b4ad3eba52d0b905109826b
9498Author: James Cloos <cloos@jhcloos.com>
9499Date:   Fri May 20 15:51:46 2011 -0400
9500
9501    Expand latin ligatures out to their NFKC equivalents.
9502    
9503    Ligatures should be done by the typesetting system.
9504    Manuscripts should not bother with them.
9505    
9506    Signed-off-by: James Cloos <cloos@jhcloos.com>
9507    Reviewed-by: Keith Packard <keithp@keithp.com>
9508
9509commit 761b8aa0c9b3c58c478ac5ea1b3aaafadcfc1325
9510Author: Daniel Stone <daniel@fooishbar.org>
9511Date:   Thu May 12 16:21:50 2011 +0200
9512
9513    XCB: Add more friendly error messages for common asserts
9514    
9515    This patch adds more friendly error messages for three common classes of
9516    assertion:
9517        - missed sequence numbers due to being griefed by another thread
9518        - unknown requests in queue due to being griefed by another thread
9519        - extensions dequeuing too much or too little reply data
9520    
9521    It adds error messages offering advice (e.g. call XInitThreads() first)
9522    on stderr, but still generates actual assertions.  Hopefully this means
9523    it's a little more Googleable and a little less frightening.
9524    
9525    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
9526    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
9527
9528commit 159bf292477048b9a2f074735afc516f52c93d80
9529Author: Gaetan Nadon <memsize@videotron.ca>
9530Date:   Thu May 19 20:22:11 2011 -0400
9531
9532    Remove misplaced hyphens in libX11 DocBook/XML #37364
9533    
9534    Reported-by: Christopher Yeleighton <giecrilj@stegny.2a.pl>
9535    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
9536    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9537    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9538
9539commit 0ee6d8247d397500ae183ef180b6ff21bceefa1c
9540Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9541Date:   Tue May 17 20:49:59 2011 -0700
9542
9543    Fix man page and comment references to use XFreeModifiermap (lowercase map)
9544    
9545    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9546
9547commit 3275ec4ca8790d571b6a1902367ca5f68a2dc5fd
9548Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9549Date:   Tue May 17 20:30:54 2011 -0700
9550
9551    XKB man pages: Fix coordinantes typo in multiple pages
9552    
9553    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9554
9555commit ca33a80606cd68e4572fa49ed6aaa1d1fc31a47f
9556Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9557Date:   Tue May 17 16:27:32 2011 -0700
9558
9559    DisplayOfCCC.man: Fix typo "ClientWhitePointOfCC" -> "ClientWhitePointOfCCC"
9560    
9561    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9562
9563commit ae39d82b01359b07dd1fe092d867f79ea95a5438
9564Author: Jeremy Huddleston <jeremyhu@apple.com>
9565Date:   Sun May 8 09:08:07 2011 -0700
9566
9567    Silence clang static analysis warnings for SetReqLen
9568    
9569    This provides a simplified version of the SetReqLen macro when using clang for
9570    static analysis.  Prior to this change, we would see many Idempotent operation
9571    warnings inside this macro due to the common case of calling with arg2 and
9572    arg3 being the same variable.  This has no effect on code produced during
9573    compilation, but it silences a number of false positives in static analysis.
9574    
9575    XIPassiveGrab.c:170:5: warning: Assigned value is always the same as the existing value
9576        SetReqLen(req, num_modifiers, num_modifiers);
9577        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9578    In file included from XIPassiveGrab.c:26:
9579    .../include/X11/Xlibint.h:580:8: note: instantiated from:
9580                n = badlen; \
9581                  ^
9582    
9583    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
9584
9585commit 130af2bc02090ee2526adb2f9803fc07019b8f1f
9586Author: Jeremy Huddleston <jeremyhu@apple.com>
9587Date:   Wed May 4 15:34:31 2011 -0700
9588
9589    XKB: XkbComputeSectionBounds: Check correct bounds in default switch-case
9590    
9591    XKBGeom.c:191:25: warning: Access to field 'x1' results in a dereference of a null pointer (loaded from variable 'rbounds')
9592            _XkbCheckBounds(bounds,rbounds->x1,rbounds->y1);
9593                                   ^~~~~~~
9594    
9595    Found-by: clang static analyzer
9596    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
9597    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
9598
9599commit c987ef04bea345d5810e60cf6c53b747ddbe910e
9600Author: Jeremy Huddleston <jeremyhu@apple.com>
9601Date:   Wed May 4 15:31:17 2011 -0700
9602
9603    Revert "XKB: Avoid a possible NULL dereference"
9604    
9605    Sorry for the noise.  I accidentally pushed and didn't mean to. =(
9606    
9607    This reverts commit 4024091678ea07e0d898b798df9b29f3bf68eb08.
9608
9609commit 46d04bc4e7ff6c86385002c929d8eb0310f737a8
9610Author: Jeremy Huddleston <jeremyhu@apple.com>
9611Date:   Wed May 4 11:35:31 2011 -0700
9612
9613    Dead code removal
9614    
9615    XKBGeom.c:118:27: warning: Assigned value is always the same as the existing value
9616        for (key=row->keys,pos=k=0;k<row->num_keys;k++,key++) {
9617                           ~~~^~~~
9618    XKBGeom.c:115:5: warning: Value stored to 'pos' is never read
9619        pos= 0;
9620        ^    ~
9621    
9622    Found-by: clang static analyzer
9623    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
9624
9625commit 4024091678ea07e0d898b798df9b29f3bf68eb08
9626Author: Jeremy Huddleston <jeremyhu@apple.com>
9627Date:   Wed May 4 11:34:53 2011 -0700
9628
9629    XKB: Avoid a possible NULL dereference
9630    
9631    XKBGeom.c:191:25: warning: Access to field 'x1' results in a dereference of a null pointer (loaded from variable 'rbounds')
9632            _XkbCheckBounds(bounds,rbounds->x1,rbounds->y1);
9633                                   ^~~~~~~
9634    
9635    Found-by: clang static analyzer
9636    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
9637
9638commit 626e5e34be55b7cf734d745bd40a7ee3359029f8
9639Author: Jeremy Huddleston <jeremyhu@apple.com>
9640Date:   Wed May 4 11:21:41 2011 -0700
9641
9642    Annotate _XIOError as _X_NORETURN
9643    
9644    Found-by: clang static analyzer
9645    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
9646
9647commit d3d7896408b435ab42656398839ff4351a37724d
9648Author: Jeremy Huddleston <jeremyhu@apple.com>
9649Date:   Tue May 3 09:32:53 2011 -0700
9650
9651    clang analyzer: Don't warn about Xmalloc(0)
9652    
9653    This will prevent a number of false positives in where clang's
9654    static analysis reports about calls to malloc(0).
9655    
9656    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
9657
9658commit 393921cf2188b2b0713cc157effaf17d0abab783
9659Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9660Date:   Thu Apr 21 16:21:04 2011 -0700
9661
9662    Delete special case code to append "/sparcv9" to i18n module path
9663    
9664    Was triggered by defined(__sparcv9) so only built on Solaris SPARC 64-bit.
9665    Inconsistent with all other platforms, and a bit overcomplicated.
9666    
9667    Should anyone need to continue using that path, simply build with
9668    a #define POSTLOCALELIBDIR "sparcv9" to get the same result.
9669    
9670    Fixes Solaris bug 7038737:
9671     sparcv9 Xlib looking in wrong path for i18n loadable modules
9672    
9673    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9674    Reviewed-by: Daniel Stone <daniel@fooishbar.org>
9675
9676commit b9ff9cfd5c56ae6d52c6503f7019756d9de29557
9677Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9678Date:   Thu Apr 14 13:47:12 2011 -0700
9679
9680    specs/libX11: Fix XOpenDisplay() prototype in chapter 2 [bug 36244]
9681    
9682    Was incorrectly showing AllPlanes() instead when describing XOpenDisplay()
9683    
9684    https://bugs.freedesktop.org/show_bug.cgi?id=36244
9685    
9686    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9687
9688commit b850adbdebcf500c659f85285d4d7374e15857f5
9689Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9690Date:   Tue Apr 12 22:30:45 2011 -0700
9691
9692    Convert malloc(strlen()); strcpy() sets to strdup
9693    
9694    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9695    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
9696
9697commit 09194042d3dc44a463add1f7c122a68ffd5ef0bf
9698Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9699Date:   Tue Apr 12 21:27:45 2011 -0700
9700
9701    Replace Xmalloc+bzero pairs with Xcalloc calls
9702    
9703    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9704    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
9705
9706commit ac1e2bff7121987fd768500a11d428d9fb9447c5
9707Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
9708Date:   Fri Mar 25 14:47:35 2011 +0200
9709
9710    om: Fix memory leaks on get_font_name error paths.
9711    
9712    While at it, remove unneeded check for NULL before Xfree.
9713    
9714    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
9715    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9716
9717commit 7c362e275c93c92b4e68fe862e73ee36665de703
9718Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
9719Date:   Wed Mar 30 15:06:10 2011 +0300
9720
9721    xcms: Fix memory leaks on LINEAR_RGB_InitSCCData error path.
9722    
9723    pScreenData is replaced when building per visual intensity tables. If
9724    malloc failed the old value of pScreenData (stored also in
9725    pScreenDefaultData) was being leaked. Also, property_return wasn't
9726    free'd in that case.
9727    
9728    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
9729    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9730
9731commit 5c810e2ac233e00f361549bafb9b59e8a9e05eff
9732Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
9733Date:   Wed Mar 30 15:19:28 2011 +0300
9734
9735    xcms: Fix error on LINEAR_RGB_InitSCCData error path.
9736    
9737    Due to what looks like a copy & paste error, pScreenData->pBlueTbl would
9738    be accessed after being free'd.
9739    
9740    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
9741    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9742
9743commit d749948f9492fd9b61c74655a08e32c595e0e3a5
9744Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
9745Date:   Fri Mar 25 16:06:15 2011 +0200
9746
9747    om: Fix potential memory leak in init_om.
9748    
9749    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
9750    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9751
9752commit d0749d6abdf0fd4d8b4e59b02dad8ccda3f10995
9753Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
9754Date:   Thu Mar 24 20:40:41 2011 +0200
9755
9756    om: Fix memory leak on read_EncodingInfo error path.
9757    
9758    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
9759    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9760
9761commit 4b2e8d00f5b6969c14003ee8eb258b9f0e4dd7c3
9762Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
9763Date:   Thu Mar 24 19:55:33 2011 +0200
9764
9765    Fix memory leaks on _XimCbDispatch error path.
9766    
9767    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
9768    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9769
9770commit 46e6c78b1a89e4774e0f7e0f4d6d0fd060c3897e
9771Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
9772Date:   Thu Mar 24 19:52:05 2011 +0200
9773
9774    Fix memory leak on _XimCommitRecv error path.
9775    
9776    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
9777    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9778
9779commit 0ace642a2d47265f01450bfa2b2fd48eb6956a83
9780Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
9781Date:   Thu Mar 24 19:48:44 2011 +0200
9782
9783    Fix memory leaks on _XimWriteCachedDefaultTree error paths.
9784    
9785    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
9786    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9787
9788commit e29be94edbb58b3b8dab545377a710d1f73b61e0
9789Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
9790Date:   Thu Mar 24 19:42:36 2011 +0200
9791
9792    Fix memory leaks on _XimGetAttributeID error paths.
9793    
9794    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
9795    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9796
9797commit d144a50512466766f55ce61e3884925334b08f0d
9798Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
9799Date:   Thu Mar 24 19:36:56 2011 +0200
9800
9801    Fix memory leaks on _XimProtoCreateIC error paths.
9802    
9803    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
9804    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9805
9806commit 6a452f7a98499508f753cb8a7c3f08bcbec736b9
9807Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
9808Date:   Thu Mar 24 16:24:29 2011 +0200
9809
9810    Fix leaks in _XimEncodingNegotiation error paths.
9811    
9812    name_ptr and detail_ptr weren't free'd in some cases before returning
9813    False.
9814    
9815    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
9816    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9817
9818commit 396e5a452a59c1f121220ba72167b720a863b30f
9819Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
9820Date:   Thu Mar 24 14:17:44 2011 +0200
9821
9822    FSWrap: fix potential leak in copy_string_list
9823    
9824    If list_count is 0, dst would be allocated and leaked.
9825    
9826    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
9827    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9828
9829commit 1a944260182bb552b954d69f6355c2760d4415df
9830Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
9831Date:   Wed Mar 23 14:36:22 2011 +0200
9832
9833    Fix memory leak with broken bitmap files in XReadBitmapFileData
9834    
9835    Bitmap file data is read looping through the lines in the input file. If
9836    there is extra data after the bitmap, these lines will be processed and
9837    if this data represents another bitmap it will replace the one read
9838    before causing the memory allocated for bits to leak.
9839    
9840    This changes the code to stop processing the file once a bitmap was
9841    read.
9842    
9843    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
9844    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9845
9846commit c1c91e9a221a0e762d96cc12a3f189d6e59f4865
9847Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9848Date:   Tue Apr 12 20:50:42 2011 -0700
9849
9850    Fix "attrinute" typo in comments in ximcp
9851    
9852    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9853
9854commit 7103b83a88edb9c93acfa68f3b556595b087baff
9855Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9856Date:   Fri Apr 8 21:36:11 2011 -0700
9857
9858    Make doc install subdirectories more like the pre-docbook.am paths
9859    
9860    Haven't restored the "specs" path in the install path, but have restored
9861    libX11 & i18n subdirectories in the path for better logical grouping.
9862    
9863    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9864    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
9865
9866commit 9a1ae7a90f815a737a942e42d5eb1ffff400977b
9867Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9868Date:   Fri Apr 8 13:24:28 2011 -0700
9869
9870    Install xml versions of specs even if HAVE_XMLTO is false
9871    
9872    Moves HAVE_XMLTO check into docbook.am, more closely matches behaviour
9873    from before docbook.am changes (commit e8c76407d2f6e3)
9874    
9875    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9876    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
9877
9878commit a0ad0d5c99023bb9a8ce3944dbc3267f5265721e
9879Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9880Date:   Tue Apr 5 13:29:04 2011 -0700
9881
9882    libX11 1.4.3
9883    
9884    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9885
9886commit e8c76407d2f6e3b11babdb84426e43e780c859c3
9887Author: Gaetan Nadon <memsize@videotron.ca>
9888Date:   Fri Feb 25 09:23:54 2011 -0500
9889
9890    Documentation: add Docbook external references support
9891    
9892    When writing technical documentation, it is often necessary to cross
9893    reference to other information. When that other information is not in the
9894    current document, additional support is needed, namely <olink>.
9895    
9896    A new feature with version 1.7 of xorg-sgml-doctools adds references to
9897    other documents within or outside this package.
9898    
9899    This patch adds technical support for this feature but does not change
9900    the content of the documentation as seen by the end user.
9901    
9902    Each book or article must generate a database containing the href
9903    of sections that can be referred to from another document. This database
9904    is installed in DATAROOTDIR/sgml/X11/dbs. There is a requirement that
9905    the value of DATAROOTDIR for xorg-sgml-doctools and for the package
9906    documentation is the same. This forms a virtual document tree.
9907    
9908    This database is consulted by other documents while they are being generated
9909    in order to fulfill the missing information for linking.
9910    Refer to the xorg-sgml-doctools for further technical information.
9911    
9912    Co-authored-by: Matt Dew <marcoz@osource.org>
9913    
9914    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9915
9916commit 25eb76b3d2726f2f1de759901971ae53b2539dc4
9917Author: Harshula Jayasuriya <harshula@gmail.com>
9918Date:   Mon Mar 21 14:49:37 2011 +0000
9919
9920    Add #define XK_SINHALA
9921    
9922    Add #define XK_SINHALA so that the Sinhala keysyms can be used by
9923    the lk xkb keymap.
9924    
9925    Signed-off-by: Harshula Jayasuriya <harshula@gmail.com>
9926    Reviewed-by: Daniel Stone <daniel@fooishbar.org>
9927
9928commit db8b20b789112717ac0590b40f0b4dc2171797d0
9929Author: Jeremy Huddleston <jeremyhu@apple.com>
9930Date:   Thu Mar 17 16:15:00 2011 -0700
9931
9932    configure.ac: Bump version to 1.4.2
9933    
9934    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
9935
9936commit 83e1ba59c48c79f8b0a7e7aa0b9c9cfd84fa403d
9937Author: Jamey Sharp <jamey@minilop.net>
9938Date:   Tue Mar 15 16:48:07 2011 -0700
9939
9940    Call _XErrorFunction without holding the Display lock.
9941    
9942    Historically, Xlib dropped the Display lock around the upcall to any
9943    user-supplied _XErrorFunction, but somewhere along the way I quit doing
9944    that if you built with XCB. The reasons are lost somewhere in the
9945    pre-git history of Xlib/XCB, and I can't now see any reason to hold the
9946    lock.
9947    
9948    The documentation for XSetErrorHandler still applies though:
9949    
9950        Because this condition is not assumed to be fatal, it is acceptable
9951        for your error handler to return; the returned value is ignored.
9952        However, the error handler should not call any functions (directly
9953        or indirectly) on the display that will generate protocol requests
9954        or that will look for input events.
9955    
9956    So while you are now once again permitted to re-enter Xlib from the
9957    error handler, you're only allowed to call non-protocol functions.
9958    
9959    Signed-off-by: Jamey Sharp <jamey@minilop.net>
9960
9961commit fd85aca7a616c595fc17b2520f84316a11e8906f
9962Author: Jamey Sharp <jamey@minilop.net>
9963Date:   Mon Mar 14 14:45:35 2011 -0700
9964
9965    Ignore user locks after sleeping in _XReply and _XReadEvents.
9966    
9967    This bug appears as a hang in applications that wait for replies from
9968    multiple threads, where one such thread has taken a user lock using
9969    XLockDisplay.
9970    
9971    Prior to this fix, the code could deadlock in this way: If thread 1 goes
9972    to sleep waiting for a reply, and then thread 2 takes a user lock and
9973    waits for a reply, then thread 2 will wait for thread 1 to process its
9974    reply (because responses must be processed in order), but thread 1 will
9975    wait for thread 2 to drop its user lock.
9976    
9977    Fixed by making thread 1 not wait for thread 2 to drop its user lock.
9978    This makes the semantics of user locks hard to define, but they were
9979    already hard to define. The new behavior appears to be consistent with
9980    the way Xlib worked historically, anyway.
9981    
9982    Fixes: http://lists.freedesktop.org/archives/xcb/2011-March/006802.html
9983    
9984    There was a similar potential for deadlock in _XReadEvents, fixed the
9985    same way, with the same caveats about user-lock semantics.
9986    
9987    Signed-off-by: Jamey Sharp <jamey@minilop.net>
9988
9989commit 690f8bffd48a4e7e74298360ddd0431dc95dcd3f
9990Author: Erkki Seppälä < <erkki.seppala@vincit.fi>
9991Date:   Tue Jan 18 15:58:20 2011 +0200
9992
9993    xkb: XkbPropertyPtr determined allocation success from wrong variables
9994    
9995    Cannot reach dead statement "return NULL;"
9996    
9997    Check for the NULLness of prop->name and prop->value instead of
9998    name and value, which was checked earlier anyway. Decided against
9999    using strdup due to curious memory allocation functions and the
10000    rest of the xkb not using it either.
10001    
10002    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
10003    Reviewed-by: Alan Coopersmith <alan.coopersmith at oracle.com>
10004
10005commit 6a4d027284e7bb5dd458157947bbb1ff580ad071
10006Author: Erkki Seppälä < <erkki.seppala@vincit.fi>
10007Date:   Mon Jan 10 16:37:22 2011 +0200
10008
10009    keyBind: Use Xcalloc to initialize allocated _XKeytrans
10010    
10011    Using uninitialized value "p->modifiers"
10012    
10013    Small fix by using Xcalloc instead of Xmalloc
10014    
10015    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
10016    Reviewed-by: Alan Coopersmith <alan.coopersmith at oracle.com>
10017
10018commit b993d73bb3214ecc24646f5427c8003b816c6921
10019Author: Erkki Seppälä < <erkki.seppala@vincit.fi>
10020Date:   Mon Jan 10 16:22:45 2011 +0200
10021
10022    im/ximcp: release modifiermap before returning
10023    
10024    Variable "map" goes out of scope
10025    
10026    Release modifiermap before returning. Reordered code to call
10027    XGetModifierMapping after the first return from the function.
10028    
10029    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
10030    Reviewed-by: Dirk Wallenstein <halsmit@t-online.de>
10031
10032commit 807a7fc0354f2212dfa5ff1f9e4ede56d8e69ef4
10033Author: Gaetan Nadon <memsize@videotron.ca>
10034Date:   Fri Feb 25 09:23:54 2011 -0500
10035
10036    Docbook: change the book id to match the xml file basename
10037    
10038    This is required for the up-coming external references support.
10039    
10040    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
10041
10042commit 40812b53ff5fe548f6eaf43ba4c8781cb43dab43
10043Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
10044Date:   Mon Feb 21 21:54:17 2011 +0100
10045
10046    Make the Local XIM request key releases for braille
10047    
10048    Braille chords management needs key release events. We need to explicitly
10049    request then, else GTK would not pass them throught XFilterEvent and braille
10050    wouldn't work.
10051    
10052    Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
10053
10054commit c97c42c49cd5095462abecdf908b416fb0b540b6
10055Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
10056Date:   Mon Feb 21 17:27:38 2011 +0100
10057
10058    Match braille patterns with compose tree
10059    
10060    Braille patterns should also be usable in Compose.  This combines the
10061    implementation of braille chords and compose tree: only emit the braille
10062    pattern if it can not be found in the compose tree, if any.
10063    
10064    Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
10065
10066commit 0c6ca565d7c8a47ef3ea823569a9ca5298a5307d
10067Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
10068Date:   Mon Feb 21 15:56:54 2011 +0100
10069
10070    Fix status reporting for braille patterns
10071    
10072    _XimLocalMbLookupString can return a braille keysym even if _Xlcwctomb can't
10073    convert to the current MB charset.
10074    _XimLocalUtf8LookupString needs to set the braille keysym and status too.
10075    
10076    Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
10077
10078commit 993abe751f4141f54d8d28b8b73588a1c9085970
10079Author: Alan Coopersmith <alan.coopersmith@oracle.com>
10080Date:   Fri Feb 11 14:49:17 2011 -0800
10081
10082    Clean up memory when first XCreateRegion succeeds and second fails
10083    
10084    Error: Memory leak (CWE 401)
10085       Memory leak of pointer 's' allocated with XCreateRegion()
10086            at line 387 of /export/alanc/X.Org/sx86-gcc/lib/libX11/src/Region.c in function 'XShrinkRegion'.
10087              's' allocated at line 387 with XCreateRegion().
10088              s leaks when s != 0 at line 387.
10089    Error: Memory leak (CWE 401)
10090       Memory leak of pointer 'tra' allocated with XCreateRegion()
10091            at line 1452 of /export/alanc/X.Org/sx86-gcc/lib/libX11/src/Region.c in function 'XXorRegion'.
10092              'tra' allocated at line 1451 with XCreateRegion().
10093              tra leaks when tra != 0 at line 1451.
10094    
10095    [ This bug was found by the Parfait 0.3.6 bug checking tool.
10096      For more information see http://labs.oracle.com/projects/parfait/ ]
10097    
10098    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10099
10100commit 6ac417cea1136a3617f5e40f4b106aaa3f48d6c2
10101Author: Alan Coopersmith <alan.coopersmith@oracle.com>
10102Date:   Fri Feb 11 14:20:24 2011 -0800
10103
10104    ximcp: Prevent memory leak & double free if multiple %L in string
10105    
10106    In the highly unlikely event that TransFileName was passed a path
10107    containing multiple %L entries, for each entry it would call
10108    _XlcFileName, leaking the previous results, and then for each entry it
10109    would copy from that pointer and free it, resulting in invalid pointers
10110    & possible double frees for each use after the first one freed it.
10111    
10112    Error: Use after free (CWE 416)
10113       Use after free of pointer 'lcCompose'
10114            at line 358 of modules/im/ximcp/imLcPrs.c in function 'TransFileName'.
10115              Previously freed at line 360 with free.
10116    Error: Use after free (CWE 416)
10117       Use after free of pointer 'lcCompose'
10118            at line 359 of modules/im/ximcp/imLcPrs.c in function 'TransFileName'.
10119              Previously freed at line 360 with free.
10120    Error: Double free (CWE 415)
10121       Double free of pointer 'lcCompose'
10122            at line 360 of modules/im/ximcp/imLcPrs.c in function 'TransFileName'.
10123              Previously freed at line 360 with free.
10124    
10125    [ This bug was found by the Parfait 0.3.6 bug checking tool.
10126      For more information see http://labs.oracle.com/projects/parfait/ ]
10127    
10128    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10129
10130commit 502d414118c97d35a44f8e295709682022876331
10131Author: Erkki Seppälä < <erkki.seppala@vincit.fi>
10132Date:   Thu Feb 3 17:08:57 2011 +0200
10133
10134    xcms/cmsProp: don't deal with uninitialized values, fail instead
10135    
10136    Properly handle the return value of XGetWindowProperty by considering
10137    if after the loop as well.
10138    
10139    Using freed pointer "prop_ret"
10140    
10141    There were numerous things wrong in how this function interacted with
10142    XGetWindowProperty.
10143    
10144    None of the local variables were initialized and remained that way if
10145    the call to XGetWindowProperty returned 1 (not Succeed). That doesn't
10146    result in after_ret being initialized in which case if it happens to
10147    be 0, the loop was exited. In that case format_ret and nitems_ret were
10148    uninitialized and the function might return with success (but with
10149    uninitialized pointer in prop_ret) or XcmsFailure.
10150    
10151    As the buffer enlarging code was called only when XGetWindowProperty
10152    failed (returned not Success), after_ret would not have been
10153    initialized. It would have been initialized only if the
10154    XGetWindowProperty has returned Success earlier, but in that case the
10155    code fragment would not have been reached.
10156    
10157    This patch alters the function to return XcmsFailure if the call to
10158    XGetWindowProperty fails.
10159    
10160    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10161    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
10162    Reviewed-by: Rami Ylimäki <rami.ylimaki@vincit.fi>
10163    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
10164
10165commit c37e278993b9e5b3d7025ef4c434373a011996ec
10166Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
10167Date:   Mon Jan 31 14:02:07 2011 +0200
10168
10169    xcms/LRGB: don't double-free property_return
10170    
10171    property_return was free'd before and in the case the conditional is true,
10172    the call to XcmsGetProperty failed which means that property_return wasn't
10173    set so there is no need to free it again.
10174    
10175    Double free of pointer "property_return" in call to "free"
10176    
10177    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10178    Reviewed-by: Erkki Seppälä <erkki.seppala@vincit.fi>
10179    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
10180
10181commit 50f4107811249806718a100f9d34f996c58e5e25
10182Author: Alan Coopersmith <alan.coopersmith@oracle.com>
10183Date:   Wed Feb 2 08:58:45 2011 -0800
10184
10185    Xrm.c: ReadInFile: refactor fstat error handling
10186    
10187    We can simplify the fstat failure case now that the GetFileSize macro
10188    has been expanded inline.
10189    
10190    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10191    Reviewed-by: Julien Cristau <jcristau@debian.org>
10192
10193commit 5e9c40fcb5da43c9fdacf12967d090bf202daf2a
10194Author: Alan Coopersmith <alan.coopersmith@oracle.com>
10195Date:   Wed Feb 2 08:56:00 2011 -0800
10196
10197    Expand GetSizeOfFile() macro at the one place it's called
10198    
10199    Removes XrmI.h header that only contained this single macro
10200    
10201    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10202    Reviewed-by: Julien Cristau <jcristau@debian.org>
10203
10204commit 450e17422c0e374d25c643f343ea268cec68da38
10205Author: Erkki Seppälä < <erkki.seppala@vincit.fi>
10206Date:   Mon Jan 31 14:01:57 2011 +0200
10207
10208    XlibInt: Use strncpy+zero termination instead of strcpy to enforce buffer size
10209    
10210    Possible overrun of 8192 byte fixed size buffer "buffer" by copying
10211    "ext->name" without length checking
10212    
10213    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10214    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
10215    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
10216    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10217
10218commit e2566e43b02d2d7b7c1c3bb7db7c5ae81c1245fa
10219Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
10220Date:   Mon Jan 31 14:02:13 2011 +0200
10221
10222    lc/def/lcDefConv: Use Xcalloc to avoid use of uninitialized memory
10223    
10224    Fixed by zero'ing conv on allocation with Xcalloc. Then
10225    close_converter works properly.
10226    
10227    Using uninitialized value "conv->state" in call to function "close_converter"
10228    
10229    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10230    Reviewed-by: Erkki Seppälä <erkki.seppala@vincit.fi>
10231    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
10232    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10233
10234commit 03f81ad8fb9783986cf9b17661dd31e95c396681
10235Author: Erkki Seppälä < <erkki.seppala@vincit.fi>
10236Date:   Mon Jan 31 14:02:16 2011 +0200
10237
10238    xlibi18n/lcFile: Removed superfluous check for NULL target_dir
10239    
10240    The situation is already handled before this code.
10241    
10242    Cannot reach dead expression "0U" inside statement "if (1U + (target_dir ? strl..."
10243    
10244    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10245    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
10246    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
10247    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10248
10249commit 1346b9ea3b3882201ff8c3ee462ff4b0d4edf639
10250Author: Erkki Seppälä < <erkki.seppala@vincit.fi>
10251Date:   Mon Jan 31 14:02:15 2011 +0200
10252
10253    ximcp/imLckup: Handle negative return value from _Xlcwctomb
10254    
10255    Fixed by negative value to memcpy by checking for the negative return
10256    value of _Xlcwctomb and returning 0/XLookupNone in that case.
10257    
10258    a negative value was passed to memcpy
10259    
10260    Unfortunately the other return values for *status don't fit into the
10261    error (which appears to indicate some internal error or running out of
10262    memory). The other valid status codes are XBufferOverflow,
10263    XLookupNone, XLookupChars, XLookupKeySym, and XLookupBoth. Each of
10264    these has a specific meaning attached.
10265    
10266    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
10267    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
10268    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10269
10270commit 79a5c86e020f08cc108184298a72e2777036de39
10271Author: Erkki Seppälä < <erkki.seppala@vincit.fi>
10272Date:   Mon Jan 31 14:02:14 2011 +0200
10273
10274    ximcp/imTrX: Handle failing XGetWindowProperty
10275    
10276    Checked return value of XGetWindowProperty and return false if it fails.
10277    
10278    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
10279    
10280    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10281    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
10282    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10283
10284commit 2ace8d5c89c8f6d9f42b4068f4b508ca28f0ced1
10285Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
10286Date:   Mon Jan 31 14:02:12 2011 +0200
10287
10288    XlibInt: info_list->watch_data was reallocated, but result was discarded
10289    
10290    info_list->watch_data was being reallocated, but the return value of
10291    the reallocation was stored only into a local variable. This might
10292    cause some funky behavior and crashes.
10293    
10294    Variable "wd_array" goes out of scope
10295    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)))"
10296    
10297    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10298    Reviewed-by: Erkki Seppälä <erkki.seppala@vincit.fi>
10299    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
10300    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10301
10302commit 2b16a7e683e355c9746290b2cee2fd0dd2bf342a
10303Author: Erkki Seppälä < <erkki.seppala@vincit.fi>
10304Date:   Mon Jan 31 14:02:10 2011 +0200
10305
10306    GetProp: Zero-initialized error so its resourceID field is initialized
10307    
10308    Using uninitialized value "error.resourceID" in call to function "_XError"
10309    
10310    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10311    Reviewed-by: Erkki Seppälä <erkki.seppala@vincit.fi>
10312    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
10313    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10314
10315commit 85e9f38e016137f0ff2791eb0d092ab027382d2c
10316Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
10317Date:   Tue Feb 1 11:07:25 2011 +0200
10318
10319    xcms/LRGB: Add a label for freeing property_return.
10320    
10321    The rest of the code uses goto's to free memory allocated later
10322    and prevent memory leaks, but there were several paths were
10323    property_return was free'd just before a goto.
10324    
10325    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10326    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
10327    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
10328    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10329
10330commit 3161dc57d4e9b70f852f05e5e474455e121b06ab
10331Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
10332Date:   Mon Jan 31 14:02:08 2011 +0200
10333
10334    xcms/LRGB: Fix potential resource leak.
10335    
10336    property_return was not free'd if the allocation of pRedTbl failed.
10337    
10338    Reviewed-by: Erkki Seppälä <erkki.seppala@vincit.fi>
10339    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
10340    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10341
10342commit be3e6c205d94dedc1cdebf5d17b987f0f828377a
10343Author: Erkki Seppälä < <erkki.seppala@vincit.fi>
10344Date:   Mon Jan 31 14:02:06 2011 +0200
10345
10346    Xrm: Handle the extremely unlikely situation of fstat failing
10347    
10348    Tracked variable "size" was passed to a negative sink.
10349    
10350    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10351    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
10352    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
10353    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10354
10355commit 3fae16c64d6ef76fd4a25a54c7f7de76596457db
10356Author: Erkki Seppälä < <erkki.seppala@vincit.fi>
10357Date:   Mon Jan 31 14:02:05 2011 +0200
10358
10359    Xrm: NEWTABLE had a memory leak after a memory allocation error
10360    
10361    The NEWTABLE macro missed freeing its allocated memory on subsequent
10362    memory allocation errors. Added call to Xfree.
10363    
10364    Variable "table" goes out of scope
10365    
10366    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10367    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
10368    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
10369    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10370
10371commit 7110ac653349a23c80c365f11f6270dc27c8975a
10372Author: Erkki Seppälä < <erkki.seppala@vincit.fi>
10373Date:   Mon Jan 31 14:02:03 2011 +0200
10374
10375    ImUtil: Handle a memory leak in one early return branch
10376    
10377    Fixed memory leak by adding Xfree for image
10378    
10379    Variable "image" goes out of scope
10380    
10381    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10382    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
10383    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
10384    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10385
10386commit d695f5da9f5b778e54b6987d9177048e32818c4d
10387Author: Erkki Seppälä < <erkki.seppala@vincit.fi>
10388Date:   Mon Jan 31 14:02:01 2011 +0200
10389
10390    ximcp/imRm: Handle leaking colormap_ret
10391    
10392    Fixed memory leak by adding Xfree for colormap_ret
10393    
10394    Variable "colormap_ret" goes out of scope
10395    
10396    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10397    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
10398    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
10399    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10400
10401commit f9eda19d08c1ea0973dfe0bc10a2519d6fd26cc7
10402Author: Erkki Seppälä < <erkki.seppala@vincit.fi>
10403Date:   Mon Jan 31 14:01:59 2011 +0200
10404
10405    ximcp/imRmAttr: Handle leaking missing_list
10406    
10407    Fixed memory leak by adding Xfree and initializing missing_list with NULL
10408    
10409    Variable "missing_list" goes out of scope
10410    
10411    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10412    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
10413    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
10414    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10415
10416commit 3183269e0979c9dbce9d55d9e03937897dc9fb3b
10417Author: Erkki Seppälä < <erkki.seppala@vincit.fi>
10418Date:   Mon Jan 31 14:01:58 2011 +0200
10419
10420    ximcp/imRmAttr: Handle leaking colormap_ret
10421    
10422    XFree colormap_ret and initialize it when appropriate.
10423    
10424    Variable "colormap_ret" goes out of scope
10425    
10426    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10427    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
10428    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10429
10430commit f66a032a937030f2d9baa81744d36dc585bb085c
10431Author: Erkki Seppälä < <erkki.seppala@vincit.fi>
10432Date:   Mon Jan 31 14:01:56 2011 +0200
10433
10434    xlibi18n/lcGeneric: Initialize uninitialized local variable
10435    
10436    Using uninitialized value "new"
10437    
10438    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10439    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
10440    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
10441    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10442
10443commit d0266e06d38110ec908ca28379014eff743630b7
10444Author: Erkki Seppälä < <erkki.seppala@vincit.fi>
10445Date:   Mon Jan 31 14:01:54 2011 +0200
10446
10447    xcmx/cmxColNm: Removed unused assignments to pBuf (in two functions)
10448    
10449    Pointer "pBuf" returned from "fgets(buf, 256, stream)" is never used
10450    
10451    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10452    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
10453    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
10454    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10455
10456commit cc686655d7bfdeab8b67e01a24bd452a2e9e3fcf
10457Author: Alan Coopersmith <alan.coopersmith@oracle.com>
10458Date:   Tue Feb 1 12:30:56 2011 +0200
10459
10460    XDefaultOMIF.c: Fix memory leaks in get_font_name
10461    
10462    Instead of copying the value returned by get_prop_name and then releasing it,
10463    directly use the return value of get_prop_name, which allocates memory for the
10464    name.
10465    
10466    If get_prop_name returns NULL, continue on to XFreeFont to release the font
10467    before returning the NULL via the normal function return.
10468    
10469    Reviewed-by: Erkki Seppälä <erkki.seppala@vincit.fi>
10470    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10471
10472commit 95796351435d81eaef8166d49ba3a6e7b633d70a
10473Author: Gaetan Nadon <memsize@videotron.ca>
10474Date:   Mon Jan 31 14:50:19 2011 -0500
10475
10476    config: comment, minor upgrade, quote and layout configure.ac
10477    
10478    Group statements per section as per Autoconf standard layout
10479    Quote statements where appropriate.
10480    Autoconf recommends not using dnl instead of # for comments
10481    
10482    Use AC_CONFIG_FILES to replace the deprecated AC_OUTPUT with parameters.
10483    Remove redundant AC_CANONICAL_HOST included in XORG_DEFAULT_OPTIONS
10484    
10485    This helps automated maintenance and release activities.
10486    Details can be found in http://wiki.x.org/wiki/NewModuleGuidelines
10487    
10488    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
10489
10490commit e994ab227ed28655565c3193e63733630105e7f9
10491Author: Erkki Seppälä < <erkki.seppala@vincit.fi>
10492Date:   Tue Jan 18 12:49:48 2011 +0200
10493
10494    Comparing array against NULL is not useful "&xkb->server->vmods != NULL"
10495    
10496    Removed superfluous comparison.
10497    
10498    Reviewed-by: Dirk Wallenstein <halsmit@t-online.de>
10499    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
10500
10501commit 4115f051e62f9b098efce691e070d44f09f30f1c
10502Author: Erkki Seppälä < <erkki.seppala@vincit.fi>
10503Date:   Wed Jan 12 15:51:11 2011 +0200
10504
10505    Variable "entry" tracked as NULL was dereferenced.
10506    
10507    Check entry for non-nullness before dereferencing it
10508    
10509    Reviewed-by: Dirk Wallenstein <halsmit@t-online.de>
10510    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
10511    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
10512
10513commit 0edb76d1d5fdca5a2543332699be2e72386dab24
10514Author: Erkki Seppälä < <erkki.seppala@vincit.fi>
10515Date:   Thu Jan 27 09:54:00 2011 +0200
10516
10517    Dereferencing possibly NULL "str" in call to function "memcpy" (Deref assumed on the basis of 'nonnull' parameter attribute.)
10518    
10519    If _XkbGetReadBufferPtr returns NULL, goto BAILOUT
10520    
10521    Reviewed-by: Dirk Wallenstein <halsmit@t-online.de>
10522    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
10523    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
10524
10525commit 59da8a211ef723909d0530c0331d541db8e63378
10526Author: Erkki Seppälä < <erkki.seppala@vincit.fi>
10527Date:   Mon Jan 10 16:17:47 2011 +0200
10528
10529    Using freed pointer "e"
10530    
10531    Reordered code to first to do the comparison and then to release data
10532    
10533    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10534    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
10535    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
10536
10537commit 0f11c229f7099f7c5aeed4691b358dca151dac7d
10538Author: Matt Dew <marcoz@osource.org>
10539Date:   Thu Jan 27 00:31:23 2011 -0700
10540
10541    Remove <literal> tags from compose-chart.pl so pdf building doesn't die on soft-hyphens.
10542    
10543    Signed-off-by: Matt Dew <marcoz@osource.org>
10544    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10545
10546commit ca00bb202f3afcdbbcb8c4cb50308c5dd03f2322
10547Author: Gaetan Nadon <memsize@videotron.ca>
10548Date:   Fri Jan 28 16:07:07 2011 -0500
10549
10550    config: replace deprecated AC_HELP_STRING with AS_HELP_STRING
10551    
10552    This silences an Automake warning.
10553    
10554    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
10555
10556commit 8dac08c7515cb6f8a8f4d0a721713697eae755d8
10557Author: Gaetan Nadon <memsize@videotron.ca>
10558Date:   Fri Jan 28 14:59:04 2011 -0500
10559
10560    config: remove unrequired AC_HEADER_STDC
10561    
10562    Autoconf says:
10563    "This macro is obsolescent, as current systems have conforming
10564    header files. New programs need not use this macro".
10565
10566commit d4483375e37a72631d5821413cb75a423e990ffe
10567Author: Alan Coopersmith <alan.coopersmith@oracle.com>
10568Date:   Tue Jan 18 19:37:02 2011 -0800
10569
10570    config: Use correct AC_CONFIG_HEADERS macro
10571    
10572    Replaces obsolete AM_CONFIG_HEADER and undocumented AC_CONFIG_HEADER
10573    
10574    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10575    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
10576    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
10577
10578commit c6405fe931f313a0d159bdad00244fc8aae12468
10579Author: Alan Coopersmith <alan.coopersmith@oracle.com>
10580Date:   Sun Jan 16 11:55:23 2011 -0800
10581
10582    config: remove AC_PROG_CC as it overrides AC_PROG_C_C99
10583    
10584    XORG_STRICT_OPTION from XORG_DEFAULT_OPTIONS calls
10585    AC_PROG_C_C99. This sets gcc with -std=gnu99.
10586    If AC_PROG_CC macro is called afterwards, it resets CC to gcc.
10587    
10588    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10589    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
10590
10591commit 17aa1f2305da0952ad594c7329d08aba21f13ac8
10592Author: Alan Coopersmith <alan.coopersmith@oracle.com>
10593Date:   Sun Jan 16 11:40:59 2011 -0800
10594
10595    Update to xf86bigfontproto >= 1.2.0 header name
10596    
10597    Clears compile-time warning of:
10598    "X11/extensions/xf86bigfstr.h", line 1: #warning: "xf86bigfstr.h is obsolete and may be removed in the future."
10599    "X11/extensions/xf86bigfstr.h", line 2: #warning: "include <X11/extensions/xf86bigfproto.h> for the protocol defines."
10600    
10601    Requires xf86bigfontproto >= 1.2.0 if --disable-xf86bigfont is not
10602    passed to configure.
10603    
10604    Also removes unnecessary AC_SUBST of BIGFONT_CFLAGS & BIGFONT_LIBS
10605    that PKG_CHECK_MODULES does automatically
10606    
10607    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10608    Reviewed-by: Julien Cristau <jcristau@debian.org>
10609
10610commit a9228fcc676aacf9a760dd94891c89f9bc82b20d
10611Author: Alan Coopersmith <alan.coopersmith@oracle.com>
10612Date:   Tue Jan 11 17:55:22 2011 -0800
10613
10614    libX11 1.4.1
10615    
10616    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10617
10618commit 92fa96451af37a7a0f2592de07643fdaed7a9efd
10619Author: Pauli Nieminen <ext-pauli.nieminen@nokia.com>
10620Date:   Mon Jan 3 12:25:28 2011 -0500
10621
10622    Initialize event type
10623    
10624    If we receive unsupported event closing connection triggers valgrind
10625    error.
10626    
10627    ==12017== Conditional jump or move depends on uninitialised value(s)
10628    ==12017==    at 0x487D454: _XFreeDisplayStructure (OpenDis.c:607)
10629    ==12017==    by 0x486857B: XCloseDisplay (ClDisplay.c:72)
10630    *snip*
10631    ==12017==  Uninitialised value was created by a heap allocation
10632    ==12017==    at 0x4834C48: malloc (vg_replace_malloc.c:236)
10633    ==12017==    by 0x4894147: _XEnq (XlibInt.c:877)
10634    ==12017==    by 0x4891BF3: handle_response (xcb_io.c:335)
10635    ==12017==    by 0x4892263: _XReply (xcb_io.c:626)
10636    *snip*
10637    
10638    Problem is that XFreeDisplaySturture is checking for qelt->event.type ==
10639    GenericEvent while _XUnknownWireEvent doesn't store the type.
10640    
10641    Reviewed-by: Adam Jackson <ajax@redhat.com>
10642    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
10643    Signed-off-by: Pauli Nieminen <ext-pauli.nieminen@nokia.com>
10644
10645commit fa9747b9d4443eef9b1687b8b1208801f5c585da
10646Author: Fernando Carrijo <fcarrijo.lists@gmail.com>
10647Date:   Tue Dec 28 16:18:57 2010 -0500
10648
10649    specs: convert images from gif to svg format.
10650    
10651    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
10652
10653commit 0012e2a4eaddc0840617b4758931ad976ca2eb7c
10654Author: Philipp Reh <sefi@s-e-f-i.de>
10655Date:   Wed Dec 22 15:14:05 2010 +0000
10656
10657    Events: Store event cookie when dequeuing event
10658    
10659    When we dequeue an event in XCheckTypedEvent or XCheckTypedWindowEvent,
10660    make sure to store the corresponding cookie too.
10661    
10662    Signed-off-by: Philipp Reh <sefi@s-e-f-i.de>
10663    Reviewed-by: Daniel Stone <daniel@fooishbar.org>
10664
10665commit d2714d65e85b44abedf5f82e1a31506dba397ef2
10666Author: Alan Coopersmith <alan.coopersmith@oracle.com>
10667Date:   Tue Dec 21 18:47:16 2010 -0800
10668
10669    Revert "Mark atom names argument to XInternAtoms as const"
10670    
10671    This reverts commit c8701115462b482d99ecff24d9de0f2806084ba5.
10672    
10673    The constification of a pointer to a pointer caused unexpected issues,
10674    and xorg-devel was unable to come up with a clean, safe, reasonable way
10675    to handle them, so we're chalking this up for now as yet another mistake
10676    in the Xlib API definition we'll be living with.
10677    
10678    See https://bugs.freedesktop.org/show_bug.cgi?id=32098 for details.
10679    
10680    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10681
10682commit 6459f9a48a82de3bc0235bd36acab2df11e436d5
10683Author: Alan Coopersmith <alan.coopersmith@oracle.com>
10684Date:   Mon Dec 20 20:54:07 2010 -0800
10685
10686    specs/XKB: make acknowlegement section <preface> instead of <chapter>
10687    
10688    Fixes numbering of actual chapters to match their filenames and to
10689    make the table/figure numbering match the references in the text.
10690    
10691    Reported-by: jelmd on freenode irc
10692    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10693
10694commit 42c653d5413fc5870486a9cf51dd28d1e88f7c69
10695Author: Alan Coopersmith <alan.coopersmith@oracle.com>
10696Date:   Sun Dec 19 23:53:02 2010 -0800
10697
10698    Add XKBlib spec images to dist_spec_DATA for distribution & installation
10699    
10700    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10701    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
10702
10703commit 8f8a3c8c42af82976d261ac2447cfbb0f90fa77d
10704Author: Matt Dew <matt@osource.org>
10705Date:   Tue Nov 30 10:52:07 2010 -0500
10706
10707    specs: convert XKBlib spec from Framemaker to DocBook.xml
10708    
10709    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
10710
10711commit c8701115462b482d99ecff24d9de0f2806084ba5
10712Author: Alan Coopersmith <alan.coopersmith@oracle.com>
10713Date:   Sun Nov 21 20:49:05 2010 -0800
10714
10715    Mark atom names argument to XInternAtoms as const
10716    
10717    Updates code & docs for XInternAtoms.
10718    
10719    The single atom name argument to XInternAtom was already const char *
10720    in the code, but not the docs, so updated it in the docs too.
10721    
10722    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10723    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
10724
10725commit 24db5b5ff0d51b0ed9d9701a792c5f14f23b638d
10726Author: Alan Coopersmith <alan.coopersmith@oracle.com>
10727Date:   Sun Nov 21 14:04:32 2010 -0800
10728
10729    libX11 1.4.0
10730    
10731    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10732
10733commit 18d3c3e9de19e936281b111d5a82acfb3a3f552e
10734Author: Dan Nicholson <dbn.lists@gmail.com>
10735Date:   Sat Nov 6 21:58:10 2010 +0000
10736
10737    config: Check host string when deciding architecture to build for
10738    
10739    When checking for the OS/2 platform, $target_os is used. However, unless
10740    building a cross compiler, the $host* strings contain the platform
10741    details for the build system. See:
10742    
10743    http://www.gnu.org/software/automake/manual/automake.html#Cross_002dCompilation
10744    
10745    $host_os is already being used to determine the transport and threading
10746    options.
10747    
10748    Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
10749    Reviewed-by: Julien Cristau <jcristau@debian.org>
10750    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10751
10752commit affc2488a7f2660a74dc8354fc3e0bff2c4f879c
10753Author: Dan Nicholson <dbn.lists@gmail.com>
10754Date:   Sat Nov 6 21:58:09 2010 +0000
10755
10756    config: Fix architecture check for OS/2 to skip nios2 cpu
10757    
10758    The OS/2 platform requires some utility functions as well as having a
10759    non-32 bit wchar_t. Fix the configure check so that it doesn't also
10760    affect the nios2 cpu, which wouldn't influence these operating system
10761    issues.
10762    
10763    Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
10764    Tested-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
10765    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10766    Reviewed-by: Julien Cristau <jcristau@debian.org>
10767    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10768
10769commit 8cbca8a10761d1ea75a75bafa647632d6c0dac71
10770Author: Gaetan Nadon <memsize@videotron.ca>
10771Date:   Tue Nov 9 13:04:44 2010 -0500
10772
10773    config: HTML file generation: use the installed copy of xorg.css
10774    
10775    Currenlty the xorg.css file is copied in each location
10776    where a DocBook/XML file resides. This produces about
10777    70 copies in the $(docdir) install tree.
10778    
10779    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
10780
10781commit 3e8907305e1818369aef5a5c0da61f09e20de4f8
10782Author: Alan Coopersmith <alan.coopersmith@oracle.com>
10783Date:   Fri Oct 29 22:02:10 2010 -0700
10784
10785    libX11 1.3.99.903 (1.4.0 RC3)
10786    
10787    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10788
10789commit 5d245d8013289b13e0c42100951b26166c7fada4
10790Author: Alan Coopersmith <alan.coopersmith@oracle.com>
10791Date:   Fri Oct 29 22:01:39 2010 -0700
10792
10793    Require xorg-macros 1.11 now that it is released
10794    
10795    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10796
10797commit 1ec89689fc771f116a6165226b9e076f54254a40
10798Author: Dan Nicholson <dbn.lists@gmail.com>
10799Date:   Fri Oct 22 19:09:07 2010 -0700
10800
10801    docs: Disable fop documentation by default
10802    
10803    fop is used to generate the pdf and ps formats of the documentation.
10804    This can significantly slow down the build, especially when creating all
10805    the compose key charts. Since few people probably want the full set of
10806    doc formats, set the default to 'no'.
10807    
10808    The default parameter for XORG_WITH_FOP is only available in recent
10809    macros. Users generating configure from older macros will just get
10810    'auto' as the default.
10811    
10812    Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
10813    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
10814    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10815    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10816
10817commit 03877bda911b72ac60a7144d6eced7d5be4b4d72
10818Author: Jon TURNEY <jon.turney@dronecode.org.uk>
10819Date:   Wed Apr 14 13:38:18 2010 +0100
10820
10821    Add C.UTF-8 and C.ASCII locale aliases
10822    
10823    Add C.UTF-8 locale as an alias for en_US.UTF-8
10824    Add C.ASCII locale as an alias for C
10825    
10826    (C.UTF-8 is the default locale for cygwin.  It also exists in debian,
10827    although I don't think it's intended for use by humans.)
10828    
10829    Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
10830    Acked-by: Julien Cristau <jcristau@debian.org>
10831    Reviewed-by: James Cloos <cloos@jhcloos.com>
10832
10833commit 81d1d9a6bdca779a44f931730b866eea75777c00
10834Author: Dan Nicholson <dbn.lists@gmail.com>
10835Date:   Sat Oct 9 16:00:47 2010 -0700
10836
10837    docs: Remove directory prerequisites from make rules
10838    
10839    Make expects prerequisites to be files with valid timestamps, and
10840    directories are treated as always being out of date. Thus, any targets
10841    depending on directories will always be rebuilt.
10842    
10843    Instead, the doc rules are changed to always create the target's leading
10844    directory. This should prevent the documentation from being rebuilt when
10845    "make install" is run.
10846    
10847    Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
10848    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
10849    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10850
10851commit d0cbf388919364fe6b5b9127f36426eb744090a0
10852Author: Jeremy Huddleston <jeremyhu@apple.com>
10853Date:   Sun Sep 26 21:21:16 2010 -0700
10854
10855    Add an "X11_" string to header guards to avoid possible collision
10856    
10857    This addresses a build failure which can result from <X11/Xlocale.h> and
10858    <xlocale.h> being included in the same code since they both used the same
10859    _XLOCALE_H_ protection.
10860    
10861    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
10862
10863commit b51ac675f44f5ce1a28c5734bf3c26983f8b4192
10864Author: Alan Coopersmith <alan.coopersmith@oracle.com>
10865Date:   Tue Sep 21 19:53:03 2010 -0700
10866
10867    libX11 1.3.99.902 (1.4.0 RC2)
10868    
10869    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10870
10871commit 986bb6d1d54368fe91e3ea24f518d43ce6179782
10872Author: Alan Coopersmith <alan.coopersmith@oracle.com>
10873Date:   Tue Sep 14 00:10:31 2010 -0700
10874
10875    Bug 19379 - Provide docs with overview of all compose key combinations
10876    
10877    Adds compose-chart.pl to generate DocBook/XML documents listing compose
10878    keys, and Makefile rules to generate HTML & PDF output from them if xmlto
10879    is present.
10880    
10881    https://bugs.freedesktop.org/show_bug.cgi?id=19379
10882    
10883    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10884    Reviewed-by: Mikhail Gusarov <dottedmag@dottedmag.net>
10885    Reviewed-by: James Cloos <cloos@jhcloos.com>
10886    Tested-by: Gaetan Nadon <memsize@videotron.ca>
10887
10888commit 3eb064071695ebf0f371163ed818a428dfeba8e6
10889Author: Alan Coopersmith <alan.coopersmith@oracle.com>
10890Date:   Sat Sep 11 00:49:21 2010 -0700
10891
10892    Make locale data build non-recursive / parallelizable
10893    
10894    On a 4 core CPU with gmake -j 16 the nls subdir builds in half the time,
10895    plus this simplifies the next set of changes.
10896    
10897    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10898    Reviewed-by: Mikhail Gusarov <dottedmag@dottedmag.net>
10899    Reviewed-by: James Cloos <cloos@jhcloos.com>
10900    Tested-by: Gaetan Nadon <memsize@videotron.ca>
10901
10902commit a3fc78ac352e5a70a958996ef6aec50f653974d1
10903Author: Gaetan Nadon <memsize@videotron.ca>
10904Date:   Fri Sep 17 17:38:11 2010 -0400
10905
10906    config: remove man page suffix from bottom summary
10907    
10908    The man page suffix is the same for all libraries on a given
10909    platform and is not configurable. It should have been removed
10910    in commit 09edc6de6.
10911    
10912    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
10913
10914commit a52b0068f36c739eb7e426214cd72a8d9bb776ca
10915Author: Gaetan Nadon <memsize@videotron.ca>
10916Date:   Fri Sep 17 17:29:30 2010 -0400
10917
10918    config: remove unhelpful comment in .gitignore
10919    
10920    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
10921
10922commit 10dd881e7818be9074da4ab3a68577adcdaf71d2
10923Author: Adam Jackson <ajax@redhat.com>
10924Date:   Wed Sep 8 10:44:23 2010 -0400
10925
10926    Zero buffer data in BufAlloc()
10927    
10928    Inspired by a pattern in NoMachine's NX.  Consistently zeroed buffers
10929    compress better with ssh and friends.  Note that you'll need to rebuild
10930    all your protocol libraries to take advantage of this.
10931    
10932    Signed-off-by: Adam Jackson <ajax@redhat.com>
10933    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
10934    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10935
10936commit da099f0d2015831ea5f4a5d0740ed962aa4d5d8b
10937Author: James Cloos <cloos@jhcloos.com>
10938Date:   Sun Sep 12 17:00:54 2010 -0400
10939
10940    Revert “Dolt-ify"
10941    
10942    Libtool’s is now sufficiently fast that DOLT is no longer
10943    worth the bother, even on those few systems where is works.
10944    
10945    This reverts commit 3e9afd501e40d76040635bd9a3045bcaf5a03b60
10946    and part of commit d31e644c65c52828ea3e7abd94a8cf9aee12265c.
10947    
10948    It conflicted with commit f6a4fd0c7615684d08e848245849dea4017a5214
10949    which moved dolt from configure.ac to m4/dolt.m4.
10950    
10951    And it addresses: http://bugs.freedesktop.org/show_bug.cgi?id=28188
10952    
10953    Signed-off-by: James Cloos <cloos@jhcloos.com>
10954
10955commit 2661fbe6b809c937a60c2c1ca5ddb8280e399bd8
10956Author: Alan Coopersmith <alan.coopersmith@oracle.com>
10957Date:   Thu Sep 9 19:24:29 2010 -0700
10958
10959    XIM spec title page minor formatting cleanup
10960    
10961    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10962
10963commit f99f1380bbf7bb2a0c491acad4a3d8db44bfd752
10964Author: Jens Petersen <petersen@redhat.com>
10965Date:   Mon Aug 23 18:08:10 2010 -0700
10966
10967    Bug 29773: aliases for nb_NO.utf8 and nn_NO.utf8
10968    
10969    <https://bugs.freedesktop.org/show_bug.cgi?id=29773>
10970    
10971    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10972
10973commit b15b8a558ec64c834cc8f6a52d7f3c4f530c8c4b
10974Author: Alan Coopersmith <alan.coopersmith@oracle.com>
10975Date:   Fri Sep 3 23:11:53 2010 -0700
10976
10977    Sun's copyrights are now owned by Oracle
10978    
10979    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10980
10981commit 7742bf62b1fa652da4270587e280249945367cae
10982Author: Alan Coopersmith <alan.coopersmith@oracle.com>
10983Date:   Fri Sep 3 18:31:44 2010 -0700
10984
10985    libX11 1.3.99.901 (1.4.0 RC1)
10986    
10987    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10988
10989commit 5a02d6d74b5451d48d8f55709dfd4ecd3c068586
10990Author: Jeroen Hoek <mail@jeroenhoek.nl>
10991Date:   Sun Aug 29 09:47:06 2010 -0400
10992
10993    libX11/nls compose tables, add LATIN CAPITAL LETTER SHARP S
10994    
10995    Add LATIN CAPITAL LETTER SHARP S
10996    (See https://bugs.freedesktop.org/show_bug.cgi?id=29448 for rationale)
10997    
10998    Signed-off-by: James Cloos <cloos@jhcloos.com>
10999
11000commit 09edc6de6619a2eabda3b808ebff4165550664f1
11001Author: Gaetan Nadon <memsize@videotron.ca>
11002Date:   Fri Aug 13 14:21:08 2010 -0400
11003
11004    config: remove man-pages configuration option
11005    
11006    This option was added in commit 6e752ea120 with no explanation.
11007    The section number is provoded by XORG_MANPAGE_SECTIONS
11008    There is no case where libX11 should be different than other libs
11009    The option was also used to disable building of the man pages,
11010    which build in 14 secs. No indication this is required.
11011    
11012    If there is a requirement from system builders to disable building
11013    of man pages, it could be done consistently for all modules.
11014    
11015    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
11016
11017commit f92e754297ec5fdb81068b56a4435026666224fa
11018Author: Aaron Plattner <aplattner@nvidia.com>
11019Date:   Sun Aug 15 21:51:38 2010 -0700
11020
11021    XOpenDisplay: save the correct display_name value
11022    
11023    The X Test Suite's XDisplayString test checks the invariant
11024    XDisplayString(XOpenDisplay(str)) == str.  The Xlib XOpenDisplay violates this
11025    invariant by expanding str to the canonical form "host:display.scrn" (unless
11026    HAVE_LAUNCHD is set and it starts with "/tmp/launch").  E.g., this expands ":1"
11027    to ":1.0":
11028    
11029      400|26 1 1 19:26:41|IC Start
11030      200|26 1 19:26:41|TP Start
11031      520|26 1 00032625 1 1|VSW5TESTSUITE PURPOSE 1
11032      520|26 1 00032625 1 2|Assertion XDisplayString-1.(A)
11033      520|26 1 00032625 1 3|A call to XDisplayString returns the string that was used
11034      520|26 1 00032625 1 4|as the argument to the XOpenDisplay call that returned the
11035      520|26 1 00032625 1 5|value used as the display argument.
11036      520|26 1 00032625 1 6|METH: Open a connection using XOpenDisplay.
11037      520|26 1 00032625 1 7|METH: Obtain the display string using XDisplayString.
11038      520|26 1 00032625 1 8|METH: Verify that the value of the string is the parameter used in XOpenDisplay.
11039      520|26 1 00032625 1 9|METH: Close the display using XCloseDisplay.
11040      520|26 1 00032625 1 10|REPORT: XDisplayString() returned ":1.0" instead of ":1".
11041      220|26 1 1 19:26:41|FAIL
11042      410|26 1 1 19:26:41|IC End
11043    
11044    Fix this by deleting all of the code to construct the canonical path and just
11045    stashing a copy of the original display_name in dpy->display_name.
11046    
11047    Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
11048    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
11049
11050commit 1dc401f678469d0235e6d0b28eb4356f03327c9f
11051Author: Gaetan Nadon <memsize@videotron.ca>
11052Date:   Fri Aug 13 13:06:51 2010 -0400
11053
11054    man: xkb: remove unused variable LIB_MAN_DIR_SUFFIX
11055    
11056    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
11057
11058commit cbe9eebd11e5ebab4280d25b57b4cd4001241619
11059Author: Gaetan Nadon <memsize@videotron.ca>
11060Date:   Fri Aug 13 11:42:29 2010 -0400
11061
11062    man: simplify building of shadow man pages
11063    
11064    Store the shadow files in git as any other man page.
11065    Move man pages to man dir and use the common makefile
11066    
11067    Local fix in CVS for bug 5628 is not required
11068    as the problem has been fixed in
11069    util-macros d9062e4077ebfd0985baf8418f3d0f111b9ddbba
11070    
11071    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
11072
11073commit bfd899c9af2318ecbe84cb69007dba4223fdb502
11074Author: Gaetan Nadon <memsize@videotron.ca>
11075Date:   Mon Aug 9 09:39:26 2010 -0400
11076
11077    config: reinstate XORG_PROG_RAWCPP erroneoulsy removed
11078    
11079    in commit 76e07ef6911734eac418e399b114f1b544512736.
11080    
11081    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
11082
11083commit 76e07ef6911734eac418e399b114f1b544512736
11084Author: Gaetan Nadon <memsize@videotron.ca>
11085Date:   Fri Aug 6 14:01:51 2010 -0400
11086
11087     man: using the C preprocessor is not required for man pages.
11088    
11089    There were no special symbols needing cpp.
11090    Everything can be handled by the default MAN_SUBSTS in util-macros.
11091    
11092    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
11093
11094commit 4b8ff7db39f2fe7ef12968d462aaf3f9054b6c18
11095Author: Jamey Sharp <jamey@minilop.net>
11096Date:   Fri Aug 6 15:51:56 2010 -0700
11097
11098    Fix use-after-free in _XReply on X errors.
11099    
11100    _XReply would always call dequeue_pending_request on errors.  When it
11101    got an error for the current request, it would call dequeue, then break
11102    out of the loop; then, if it had an error in the event queue, it would
11103    compare it with the sequence number of the now-freed pending request.
11104    _XReply already stored that sequence number in dpy->last_request_read
11105    before freeing it, so look at that instead.
11106    
11107    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=29412
11108    
11109    Signed-off-by: Jamey Sharp <jamey@minilop.net>
11110    Signed-off-by: Josh Triplett <josh@joshtriplett.org>
11111
11112commit 9fa146b30046396b70d64986e50d6617b3a8ac48
11113Author: Gaetan Nadon <memsize@videotron.ca>
11114Date:   Sat Jul 31 16:15:35 2010 -0400
11115
11116    specs: xsl stylesheet requires abs path to images
11117    
11118    Using abs_builddir requires automake 1.10 or later.
11119    
11120    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
11121
11122commit a8727d4bc39015e303b4128d0ad8aaf6d5fc9f0a
11123Author: Gaetan Nadon <memsize@videotron.ca>
11124Date:   Sun Aug 1 14:13:07 2010 -0400
11125
11126    specs: update .gitignore now that all groff generated files are gone
11127    
11128    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
11129
11130commit f70527f05677aaf6a493ba42d2d95f738aaebafa
11131Author: Adam Jackson <ajax@redhat.com>
11132Date:   Thu Jul 29 11:11:21 2010 -0400
11133
11134    nls: Switch one of the interrobang sequences to gnaborretni
11135    
11136    Since gnaborretni is primarily used in LTR locales, the ? part of the
11137    sequence reflects the position of the bulge in the ?.  When scanning an
11138    inverted interrobang left-to-right, you see the bulge first, so the
11139    compose sequence ?! is used; upright interrobang shows the bulge
11140    last, so it's !?.
11141    
11142    This is a change in behaviour, but I was unable to come up with anything
11143    better.  ??!! or !!?? would match the patterns for ¿ and ¡, but they
11144    would delay evaluation of them; "¿Qué?" wouldn't show the ¿ until you hit
11145    Q.  Likewise ?!?! and !?!? would delay showing the interrobang itself.
11146    ~!? and ~?! were considered but are arguably less intuitive.
11147    
11148    Reviewed-by: James Cloos <cloos@jhcloos.com>
11149    Signed-off-by: Adam Jackson <ajax@redhat.com>
11150
11151commit 511c4f6d29b2da4f71093feabcbb3913cb5d12a7
11152Author: Gaetan Nadon <memsize@videotron.ca>
11153Date:   Wed Jul 28 10:27:39 2010 -0400
11154
11155    specs: move indexterm from glossdef to glossterm
11156    
11157    This move fixes a Java class cast exception in the glossary.
11158    The problem was introduced in commit
11159    26f4f0d50840fe5ba4c46aae0a8e68db0059434b
11160    
11161    It may not happen on all versions of the doc toolchain.
11162    There is no reason why indexterm cannot appear in glossdef,
11163    this is a workaround to an implementation problem found by
11164    trial and error.
11165    
11166    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
11167    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11168    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11169
11170commit 87a108f3aa565aa803dacb3a53b811f45025b609
11171Author: Matt Dew <matt@osource.org>
11172Date:   Sat Jul 24 14:46:57 2010 -0400
11173
11174    specs: replace troff source with docbook-xml source
11175    
11176    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
11177
11178commit 8e603413586ff42b1351688f6f99318cbe243bca
11179Author: Julien Cristau <jcristau@debian.org>
11180Date:   Sat Jul 24 22:13:07 2010 +0200
11181
11182    Compose.man: default user compose file is .XCompose, not .Xcompose
11183    
11184    The path was correct in the DESCRIPTION section, but not in FILES.
11185    
11186    Signed-off-by: Julien Cristau <jcristau@debian.org>
11187
11188commit 554da76ece85d0fc0cada45a86860e69c2107e9a
11189Author: Daniel Stone <daniel@fooishbar.org>
11190Date:   Tue Jul 20 12:34:48 2010 +0100
11191
11192    NLS: Add \o/ Compose sequence
11193    
11194    Unicode is even more pointlessly awesome! Add a binding for Compose-\o/
11195    to U+1F64C PERSON RAISING BOTH HANDS IN CELEBRATION.
11196    
11197    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
11198
11199commit 2e7a18b6a617b9b4bfcea2d36f2bd2d7e0c4a3dd
11200Author: Daniel Stone <daniel@fooishbar.org>
11201Date:   Fri Jul 9 18:13:13 2010 +0100
11202
11203    XStringToKeysym: Cope with 0x1234cafe-style input
11204    
11205    If we get input in the style of 0xdeadbeef, just return that exact
11206    keysym.  Introduces a dependency on strtoul, which I'm told is OK on all
11207    the systems we care about.
11208    
11209    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
11210
11211commit 3df45ed0c29b98ff468a0ff0ba24830bb664fd5a
11212Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11213Date:   Mon Jul 19 17:58:27 2010 -0700
11214
11215    specs/libX11: Fix column count of Gravity Attributes table
11216    
11217    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11218
11219commit 53bcba0d1d2dc3fd5e0de4bae3da30a1aa31a0c4
11220Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11221Date:   Mon Jul 19 14:43:38 2010 -0700
11222
11223    specs/libX11: Convert \- to &minus; and \^ to either &hairsp; or removed
11224    
11225    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11226
11227commit 5a0b45275638281e1bb2ae7d3e16b98e6470dae9
11228Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11229Date:   Mon Jul 19 11:28:50 2010 -0700
11230
11231    specs/libX11: Manual cleanup pass over Ch. 1
11232    
11233    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11234
11235commit 21567992958a6f12b3d0186f2f27a5b2a41b8448
11236Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11237Date:   Mon Jul 19 14:51:10 2010 -0700
11238
11239    specs/libX11: make sure all files have DOCTYPEs so standard entities work
11240    
11241    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11242
11243commit c944a8521f5760b485192658b921145159cdb439
11244Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11245Date:   Sun Jul 18 13:12:20 2010 -0700
11246
11247    specs/libX11: Fix up list of header files in Ch.1 & add index entries
11248    
11249    Combination of manual editing and automatic substitution via:
11250    
11251    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
11252    
11253    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11254
11255commit bb66e8f1ce330043278d3e8cbc7d5d3bc56ee030
11256Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11257Date:   Sun Jul 18 12:47:27 2010 -0700
11258
11259    specs/libX11: Add indexterms for headerfiles that .hN used to provide
11260    
11261    Automatic substitution performed via:
11262    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
11263    
11264    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11265
11266commit d0b0d215cb85da48b323b1392149ce181e7ef5ec
11267Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11268Date:   Fri Jul 16 21:15:13 2010 -0700
11269
11270    specs/libX11: convert multicolumn lists from tables to <simplelist>
11271    
11272    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11273
11274commit e679f80c6210c0aefe3669f8f536353619097a4b
11275Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11276Date:   Fri Jul 16 20:51:52 2010 -0700
11277
11278    specs/libX11: Tag WM_* as <property>
11279    
11280    Mass substitution done by:
11281     perl -i -p -e 'if ($_ !~ m{^\<}) { $_ =~ s{(WM_\w+)}{<property>$1</property>}g; }' *.xml
11282    
11283    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11284
11285commit c7b7e59b3b22221d0be6286c540001c360308f69
11286Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11287Date:   Fri Jul 16 20:41:33 2010 -0700
11288
11289    specs/libX11: Convert simpler eqn markup to docbook tags
11290    
11291    Mostly "sup" to <superscript>
11292    
11293    There's several more complicated equations that will probably need
11294    MathML or SVG to solve.
11295    
11296    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11297
11298commit 897486c54c6a54771867d667441aaf9a4b9c35ca
11299Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11300Date:   Fri Jul 16 00:50:39 2010 -0700
11301
11302    specs/libX11: App. D: convert literallayouts to synopsis or programlisting
11303    
11304    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11305
11306commit 692906c3b3d8aa8b8927fbc230c3050d633785d2
11307Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11308Date:   Fri Jul 16 00:36:43 2010 -0700
11309
11310    specs/libX11: Fix section headers in Appendix D
11311    
11312    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11313
11314commit bcc41baa02e137884d847aec0f3ff8ca5c85c32f
11315Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11316Date:   Wed Jul 14 07:22:26 2010 -0700
11317
11318    specs/libX11: Explicitly tag document as English
11319    
11320    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11321
11322commit 6783544706ff370e900c137f951e90230586d6dc
11323Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11324Date:   Mon Jul 12 22:03:18 2010 -0700
11325
11326    specs/libX11: Appendix C: convert literallayouts to synopsis or programlisting
11327    
11328    Fixes display of a bunch of function prototypes and sample code
11329    
11330    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11331
11332commit 8834cd9285e6aaf437aee56292c508d99a090fa9
11333Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11334Date:   Mon Jul 12 18:37:16 2010 -0700
11335
11336    xmlrules.in: Add chunked-html rule to manually generate smaller files
11337    
11338    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11339
11340commit 53f78680c34ebc94ce26b5e14c2a0003435cf10d
11341Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11342Date:   Mon Jul 12 18:35:59 2010 -0700
11343
11344    specs/libX11: Convert Appendix A tables to real tables
11345    
11346    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11347
11348commit 705a1257a8a47f4a1f94979aee09a837500ede7d
11349Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11350Date:   Mon Jul 12 18:38:09 2010 -0700
11351
11352    specs/libX11: Fix out-of-place text in Chapter 1
11353    
11354    DTD violation error introduced in 89cc2e02e7c29ef9a02f0cfdf2090a2934f539e4
11355    
11356    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11357
11358commit a151346a2b7810e988f1de4b1e00b37672dc587a
11359Author: Jeremy Huddleston <jeremyhu@apple.com>
11360Date:   Mon Jul 12 16:52:12 2010 -0700
11361
11362    launchd: Explicitly search /sbin
11363    
11364    Previously, launchd wasn't found if /sbin wasn't in the user's PATH.
11365    https://bugs.freedesktop.org/show_bug.cgi?id=29028
11366    
11367    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
11368
11369commit 89cc2e02e7c29ef9a02f0cfdf2090a2934f539e4
11370Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11371Date:   Mon Jul 12 13:38:04 2010 -0700
11372
11373    Replace untranslated .hN macros with <filename> tags to show header names
11374    
11375    Translation performed by:
11376     perl -i -p -e 's{\<\!-- .hN (\S+) (\S+)?\s*-->}
11377                     {&lt;<filename class="headerfile">$1</filename>&gt;$2}' *.xml
11378    
11379    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11380
11381commit 75480440946603b8efdbbf78b88d59c641b6d2c8
11382Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11383Date:   Sat Jul 10 00:06:13 2010 -0700
11384
11385    specs/libX11: Mass substitution of <function> tags with more specific tags
11386    
11387    Matched names from X headers & "nm libX11.so" output to names in spec to
11388    map to more specific tags.   Tags used:
11389    
11390                        <code>   code fragments
11391                    <constant>   enum values
11392                   <errorname>   X protocol errors
11393                    <filename>   filenames
11394                    <function>   functions
11395                    <function>   function-like macros (#define foo(a,b)...)
11396                 <returnvalue>   function return codes
11397                 <structfield>   struct members
11398                  <structname>   struct names (even when typedefed)
11399                      <symbol>   simple value #defines (#define NAME value)
11400                  <systemitem>   X protocol requests
11401    <systemitem class="event">   X protocol events
11402                        <type>   non-struct typedefs
11403                     <varname>   global variables
11404    
11405    (Also fixed a couple typos detected by failures of this matching, such as
11406     XESSetPrintErrorValues -> XESetPrintErrorValues.)
11407    
11408    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11409
11410commit 26f4f0d50840fe5ba4c46aae0a8e68db0059434b
11411Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11412Date:   Fri Jul 9 00:37:23 2010 -0700
11413
11414    specs/libX11: Glossary cross-reference links
11415    
11416    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11417
11418commit 930b52d84031de0e15e0a11cf4ecfd3b2f59e073
11419Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11420Date:   Thu Jul 8 21:19:08 2010 -0700
11421
11422    specs/libX11: Make whitespace around <function> tags more uniform
11423    
11424    Simplifies regular expressions for further mass substitutions.
11425    
11426    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11427
11428commit 730ce6b8aca77b77385aa894d234cbde5fcbce37
11429Author: Gaetan Nadon <memsize@videotron.ca>
11430Date:   Fri Jul 9 20:10:37 2010 -0400
11431
11432    specs: use pattern rules rather than suffix rules
11433    
11434    This allows target to rebuild when included .xml files are changed.
11435    
11436    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
11437
11438commit 5527b4bc8ce7de60123eb28789ddef54aa48a378
11439Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11440Date:   Thu Jul 8 20:56:41 2010 -0700
11441
11442    specs/libX11: Move punctuation outside of the <function> tags
11443    
11444    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11445
11446commit d66d2134dfc38cd866c7c2d9ea45ed4b4dad23f0
11447Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11448Date:   Thu Jul 8 20:42:50 2010 -0700
11449
11450    specs/libX11: Mark a number of <acronym>s
11451    
11452    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11453
11454commit d5bbb12f55ac9f691eab6242cedc53207275131b
11455Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11456Date:   Thu Jul 8 19:31:36 2010 -0700
11457
11458    specs/libX11: Glossary terms should not be marked as functions
11459    
11460    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11461
11462commit 5decf7bc5dae0ae0c45c47eaaa9c4fdf9515ca1c
11463Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11464Date:   Thu Jul 8 19:28:18 2010 -0700
11465
11466    specs/libX11: Clean up author list & acknowledgements a little
11467    
11468    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11469
11470commit 0cd29bdb332c333e5123dce65b25ad1d97fbdae3
11471Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11472Date:   Thu Jul 8 17:30:34 2010 -0700
11473
11474    specs/libX11: Convert troff .IN macros to docbook <indexterm> tags
11475    
11476    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11477
11478commit a67d99ccbe22c8ce5f7a12f13b8991d9e0cf4491
11479Author: Gaetan Nadon <memsize@videotron.ca>
11480Date:   Thu Jul 8 17:29:21 2010 -0400
11481
11482    specs: specdir is required to install xml files
11483    
11484    The source is installed as well as the targets.
11485    This failed when configuring with --without-xmlto
11486    
11487    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
11488
11489commit e14273f44c1501ab51db4adcb83b18a1073787d8
11490Author: Matt Dew <matt@osource.org>
11491Date:   Thu Jul 8 14:42:32 2010 -0400
11492
11493    specs: replace troff source with docbook-xml source
11494    
11495    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
11496
11497commit bea0873caf50e9ed1b89255775d9ab912cbecd45
11498Author: Daniel Stone <daniel@fooishbar.org>
11499Date:   Thu Jul 8 16:49:51 2010 +0100
11500
11501    XStringToKeysym: Check strdup() return value
11502    
11503    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
11504    Reviewed-by: Keith Packard <keithp@keithp.com>
11505
11506commit cffa71b4a5743e2b6675b9a917d15aef4177d513
11507Author: Marko Myllynen <myllynen@redhat.com>
11508Date:   Mon Jun 28 15:08:05 2010 +0300
11509
11510    Fix two typos in SFS 5966 Annex 3
11511    
11512    X.Org bug#28792 <https://bugs.freedesktop.org/show_bug.cgi?id=28792>
11513    
11514    Signed-off-by: Julien Cristau <jcristau@debian.org>
11515
11516commit eb023c0f8919e809b8b609e1467b14d20a290aa7
11517Author: Daniel Stone <daniel@fooishbar.org>
11518Date:   Tue Jun 15 18:49:43 2010 +0100
11519
11520    Delete now-redundant XKeysymDB
11521    
11522    Since XStringToKeysym now supports all the vendor keysyms, just delete
11523    our XKeysymDB, which was incomplete at best, misleading at worst, and
11524    always an annoyance.
11525    
11526    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
11527    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11528
11529commit 00175397480b76d32bf82b0c7c94c91a2a95954e
11530Author: Daniel Stone <daniel@fooishbar.org>
11531Date:   Tue Jun 15 18:48:48 2010 +0100
11532
11533    makekeys: Scan vendor keysyms as well as core
11534    
11535    Since we can't really live without vendor keysyms, scan them all in to
11536    generate ks_tables.h, rather than only doing the core ones, and leaving
11537    the vendor syms to be manually synchronised with XKeysymDB.
11538    
11539    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
11540    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11541
11542commit ebd6ef0a4db0ddef0ae17ad14571518ccdeea5ba
11543Author: Daniel Stone <daniel@fooishbar.org>
11544Date:   Tue Jun 15 18:47:37 2010 +0100
11545
11546    XStringToKeysym: Special case for XF86 keysyms
11547    
11548    Some XFree86 keysyms were in XKeysymDB as XF86_foo, despite really being
11549    XF86foo.  So, if we get to the bottom of XStringToKeysym and haven't
11550    found our XF86_foo, try it again as XF86foo.
11551    
11552    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
11553    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11554
11555commit 8c2ffce9e5c6eef8a04f7e2732db46b3b62e13bb
11556Author: Daniel Stone <daniel@fooishbar.org>
11557Date:   Tue Jun 15 17:20:48 2010 +0100
11558
11559    configure.ac: Change from deprecated AC_DEFINE_DIR to AX_
11560    
11561    AC_DEFINE_DIR is deprecated as it's squatting on the autoconf-builtin
11562    namespace, so start using the more proper AX_DEFINE_DIR instead.
11563    
11564    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
11565    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
11566    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11567
11568commit 6de368c9aa7ccd2fcd62fca5a2b278913db4d03d
11569Author: Fernando Carrijo <fcarrijo@yahoo.com.br>
11570Date:   Thu Jul 1 06:50:47 2010 -0300
11571
11572    Purge macros NEED_EVENTS and NEED_REPLIES
11573    
11574    Signed-off-by: Fernando Carrijo <fcarrijo@yahoo.com.br>
11575    Acked-by: Tiago Vignatti <tiago.vignatti@nokia.com>
11576    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11577
11578commit 0b724231be17f19538ee115a03b82b221b1f83c0
11579Author: Adam Jackson <ajax@redhat.com>
11580Date:   Wed Jun 30 16:30:49 2010 -0400
11581
11582    Use -version-number consistently instead of -version-info
11583    
11584    The latter is libtool braindamage.
11585    
11586    Signed-off-by: Adam Jackson <ajax@redhat.com>
11587
11588commit 241a990afcf9c967c587ad6fd245df21b68b1ad9
11589Author: Juliusz Chroboczek <jch@pps.jussieu.fr>
11590Date:   Tue Jun 29 18:32:42 2010 +0200
11591
11592    Make Compose-comma map to ogonek for I and U in UTF-8 locales.
11593    
11594    With the preceding patch, it makes the UTF-8 compose map consistent with
11595    the ISO 8859-4 and -13 maps.
11596
11597commit af55e582f485a668c2bf43129be972bc65f03c60
11598Author: Juliusz Chroboczek <jch@pps.jussieu.fr>
11599Date:   Tue Jun 29 18:20:18 2010 +0200
11600
11601    Make Compose-comma map to Ogonek for A and E in UTF-8 locales.
11602    
11603    This makes the UTF-8 compose file consistent with the ISO 8859-2 compose file
11604    as far as Polish is concerned.  We only sacrifice one pair of characters,
11605    e-cedilla, which is not used in any language.
11606
11607commit d6ba13009fc9ef876a104b907ffef73c6e405d4b
11608Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11609Date:   Thu Jun 24 13:13:11 2010 -0700
11610
11611    Define FILE_MAN_DIR_SUFFIX so XCompose shadow page has correct path
11612    
11613    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11614
11615commit 978c7238789037de917b9423ea9adfb006da1260
11616Author: Jamey Sharp <jamey@minilop.net>
11617Date:   Sat Jun 19 10:44:55 2010 -0700
11618
11619    poll_for_response: Really handle xcb_poll_for_reply getting a reply.
11620    
11621    Don't lose async replies. That's bad.
11622    
11623    `xlsfonts -l`, which uses XListFontsWithInfo, worked fine, because the
11624    _XReply path worked; that path waited for replies, rather than polling.
11625    
11626    However, XRecordProcessReplies, which does nothing but call XPending,
11627    relied on the event-handling path to process async replies, and that was
11628    busted.
11629    
11630    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=28595
11631    
11632    Signed-off-by: Jamey Sharp <jamey@minilop.net>
11633
11634commit ef67486c5a8aada24fd95b2991a3c4979f53805f
11635Author: Jamey Sharp <jamey@minilop.net>
11636Date:   Mon Jun 21 13:34:15 2010 -0700
11637
11638    Revert "xcb_io.c: poll_for_response doesn't guarantee there's a pending request."
11639    
11640    This reverts commit 4a8b6528ff69f6feb8c0e119939b4ce6c088f29e, because as
11641    a matter of fact, if poll_for_response returns NULL when we know
11642    dpy->xcb->next_event is non-NULL, there *is* guaranteed to be a pending
11643    request.
11644
11645commit 301ec5b41e9d253a446db656e1789ac7345dc433
11646Author: Jamey Sharp <jamey@minilop.net>
11647Date:   Mon Jun 21 13:24:24 2010 -0700
11648
11649    Revert "poll_for_response: Really handle xcb_poll_for_reply getting a reply."
11650    
11651    This reverts commit c115095d7f2bc4f5a4fb26380e3698fefdad7611. We *do*
11652    need to check poll_for_event every time through the loop in
11653    poll_for_response, so the commit did too much.
11654
11655commit 4a8b6528ff69f6feb8c0e119939b4ce6c088f29e
11656Author: Jamey Sharp <jamey@minilop.net>
11657Date:   Mon Jun 21 10:54:02 2010 -0700
11658
11659    xcb_io.c: poll_for_response doesn't guarantee there's a pending request.
11660    
11661    Fixes the second bug reported in:
11662    https://bugs.freedesktop.org/show_bug.cgi?id=28595
11663    
11664    Signed-off-by: Jamey Sharp <jamey@minilop.net>
11665
11666commit c115095d7f2bc4f5a4fb26380e3698fefdad7611
11667Author: Jamey Sharp <jamey@minilop.net>
11668Date:   Sat Jun 19 10:44:55 2010 -0700
11669
11670    poll_for_response: Really handle xcb_poll_for_reply getting a reply.
11671    
11672    Don't lose async replies. That's bad.
11673    
11674    `xlsfonts -l`, which uses XListFontsWithInfo, worked fine, because the
11675    _XReply path worked; that path waited for replies, rather than polling.
11676    
11677    However, XRecordProcessReplies, which does nothing but call XPending,
11678    relied on the event-handling path to process async replies, and that was
11679    busted.
11680    
11681    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=28595
11682    
11683    Signed-off-by: Jamey Sharp <jamey@minilop.net>
11684    Signed-off-by: Josh Triplett <josh@joshtriplett.org>
11685
11686commit a25ae169862ab9b76daf259613b37c6b07bc2ef2
11687Author: Marko Myllynen <myllynen@redhat.com>
11688Date:   Sun Jun 13 19:23:05 2010 +0300
11689
11690    Implement SFS 5966 Annex 4 for Finland
11691    
11692    This patch adds Annex 4 of SFS 5966 for Finland and fixes two typos in
11693    Annex 3 (which were actually copied verbatim from the standard text).
11694    
11695    The implementation of the standard is now complete.
11696    
11697    X.Org bug#28498 <https://bugs.freedesktop.org/show_bug.cgi?id=28498>
11698    
11699    Signed-off-by: Julien Cristau <jcristau@debian.org>
11700
11701commit 47b04195d8a31c8f9e6dd804196162c6cfca3ac6
11702Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11703Date:   Fri Jun 4 13:20:17 2010 -0700
11704
11705    LINEAR_RGB_InitSCCData: When malloc fails, don't try to free unallocated bits
11706    
11707    One of the malloc failure checks had a goto to the wrong spot in the
11708    list of cleanup free() calls to unwind at the end, and was freeing
11709    bits that hadn't been initialized/allocated yet, since they would be
11710    stored in the struct that just failed to be allocated.
11711    
11712    Error: Null pointer dereference (CWE 476)
11713       Read from pointer that could be constant 'NULL'
11714            at line 805 of /export/alanc/X.Org/sx86/lib/libX11/src/xcms/LRGB.c in function 'LINEAR_RGB_InitSCCData'.
11715              Pointer checked against constant 'NULL' at line 754 but does not protect the dereference.
11716    
11717    [ This bug was found by the Parfait bug checking tool.
11718      For more information see http://research.sun.com/projects/parfait ]
11719    
11720    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11721
11722commit aebbf3623888119b43893b253195d93b613a6e1e
11723Author: Josh Triplett <josh@joshtriplett.org>
11724Date:   Sun Jun 6 19:11:55 2010 -0700
11725
11726    Mark the rest of Xprivate.h as _X_HIDDEN.
11727    
11728    None of the functions in Xprivate.h should have any callers outside of
11729    Xlib, by definition.
11730    
11731    Signed-off-by: Josh Triplett <josh@joshtriplett.org>
11732    Suggested-by: Jamey Sharp <jamey@minilop.net>
11733    Reviewed-by: Jamey Sharp <jamey@minilop.net>
11734
11735commit abcd1b67c8135ad652833e5a60d818837c39fce1
11736Author: Julien Cristau <jcristau@debian.org>
11737Date:   Fri Jun 4 13:57:45 2010 +0200
11738
11739    Hide _XSeqSyncFunction
11740    
11741    Commit a6d974dc59f2722b36e2df9d4f07aeee4f83ce43 made _XSeqSyncFunction
11742    non-static, but we don't need to export it.
11743    
11744    Signed-off-by: Julien Cristau <jcristau@debian.org>
11745    Reviewed-by: Adam Jackson <ajax@redhat.com>
11746    Reviewed-by: Jamey Sharp <jamey@minilop.net>
11747
11748commit 15e5eaf62897b3179d1fbe457cb19f886f0449f8
11749Author: Josh Triplett <josh@joshtriplett.org>
11750Date:   Thu Jun 3 09:41:01 2010 -0700
11751
11752    Remove support for building without XCB
11753    
11754    And there was much rejoicing.
11755    
11756    Signed-off-by: Josh Triplett <josh@joshtriplett.org>
11757    Reviewed-by: Jamey Sharp <jamey@minilop.net>
11758    
11759    Consensus on #xorg-devel agrees with removing --without-xcb; in
11760    particular, acks from Adam Jackson, Daniel Stone, Kristian Høgsberg,
11761    Julien Cristau, and Rémi Cardona.
11762
11763commit fb19eb767a32fd4ff74021c51bc6f60eb8bdff74
11764Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11765Date:   Thu Jun 3 15:21:40 2010 -0700
11766
11767    libX11 1.3.4
11768    
11769    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11770
11771commit 8f3db40ca5108a919244f3fff7466d01a14b3ce2
11772Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11773Date:   Thu Jun 3 13:08:17 2010 -0700
11774
11775    Workaround bug in groff flag processing that breaks distcheck
11776    
11777    At least with the groff 1.19.2 package I have installed, groff passes
11778    on the -I flags for the include path to grohtml, which if they come
11779    after the -P-I... flag we pass to grohtml to specify the image file
11780    name pattern cause it to override that flag and put the images in
11781    the wrong place, breaking "make distcheck" - changing the flag order
11782    works around this.
11783    
11784    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11785
11786commit bdb31a1fb707cebccc9efbbf68cb55c10fa4ea3e
11787Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11788Date:   Thu Jun 3 11:25:33 2010 -0700
11789
11790    Fix typo that made configure always report "none" for man page suffix
11791    
11792    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11793
11794commit 6bb7d2d21d6b58019fb37b724b59c9744f30b9ce
11795Author: Paul Bender <pebender@gmail.com>
11796Date:   Thu Jun 3 11:20:26 2010 -0700
11797
11798    Bug 22591 - configure does not obey the --enable-*-transport options
11799    
11800    https://bugs.freedesktop.org/show_bug.cgi?id=22591
11801    
11802    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11803
11804commit d7f35946d673bb00f2768e025b6e1017422b2174
11805Author: Paul Bender <pebender@gmail.com>
11806Date:   Thu Jun 3 11:17:45 2010 -0700
11807
11808    Bug 22590 - libX11 1.2.1 has broken abstract namespace support
11809    
11810    https://bugs.freedesktop.org/show_bug.cgi?id=22590
11811    
11812    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11813
11814commit b2487d07f7b355f230a56e32c763acd08862735c
11815Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11816Date:   Thu Jun 3 11:06:15 2010 -0700
11817
11818    Bug 22584 - libX11 does not cross compile
11819    
11820    Adaptation of patch submitted by Paul Bender in attachment 27301 to
11821    https://bugs.freedesktop.org/show_bug.cgi?id=22584
11822    
11823    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11824    Reviewed-by: Mikhail Gusarov <dottedmag@dottedmag.net>
11825    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
11826
11827commit 4378219ff8c1418418c70086085358b69d574e74
11828Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11829Date:   Tue Jun 1 18:55:48 2010 -0700
11830
11831    Clarify requirements in XRestackWindows man page
11832    
11833    The required common parent window is not specified in the arguments,
11834    just implied as the parent of the first window in the list.
11835    
11836    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
11837
11838commit f09c5299a381e2729e800a0ac43f1c0e371f65f6
11839Author: Jeremy Huddleston <jeremyhu@apple.com>
11840Date:   Wed May 12 16:42:18 2010 -0700
11841
11842    xcb: Add TCP fallback
11843    
11844    If we fail to connect to a UNIX socket and the transport isn't specified,
11845    fallback on TCP.  This matches behavior with the xtrans codepath and the
11846    Xlib spec.
11847    
11848    http://lists.x.org/archives/xorg-devel/2010-April/007915.html
11849    
11850    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
11851    Reviewed-by: Jamey Sharp <jamey@minilop.net>
11852
11853commit fd82552d5c0ce1931f29006a0c36f5e03cf8577e
11854Merge: aae2a4a7 933aee1d
11855Author: Jamey Sharp <jamey@minilop.net>
11856Date:   Mon May 10 16:51:24 2010 -0700
11857
11858    Merge branch 'xlib-xcb-thread-fixes'
11859
11860commit aae2a4a7aab26de3fa715d6ecd0a0e0926b37fc9
11861Author: Jeremy Huddleston <jeremyhu@apple.com>
11862Date:   Fri Apr 23 21:50:29 2010 -0700
11863
11864    Don't append the screen number when using a launchd socket
11865    
11866    ssh gets confused by this.  XQuartz is the only DDX using this
11867    functionality, and it doesn't support different screens, so
11868    let's just not include this until most ssh know how to handle
11869    this.
11870    
11871    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
11872
11873commit adcd0ec209abf832a769d52db660fb37eaad6e0c
11874Author: Jeremy Huddleston <jeremyhu@apple.com>
11875Date:   Fri Apr 23 16:33:44 2010 -0700
11876
11877    Remove launchd logic from _XConnectXCB as it's handled in XCB
11878    
11879    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
11880
11881commit d232b259c36fdde1f4179822809fec1480867dc5
11882Author: Jeremy Huddleston <jeremyhu@apple.com>
11883Date:   Tue Feb 2 17:01:28 2010 -0800
11884
11885    Fix various build warnings
11886    
11887    imLcIm.c: In function '_XimCachedFileName':
11888    imLcIm.c:361: warning: format '%03x' expects type 'unsigned int', but argument 8 has type 'long unsigned int'
11889    imLcIm.c:364: warning: format '%03x' expects type 'unsigned int', but argument 8 has type 'long unsigned int'
11890    
11891    imRm.c: In function '_XimDefaultArea':
11892    imRm.c:597: warning: cast from pointer to integer of different size
11893    imRm.c: In function '_XimDefaultColormap':
11894    imRm.c:626: warning: cast from pointer to integer of different size
11895    
11896    lcFile.c:224: warning: no previous prototype for 'xlocaledir'
11897    
11898    lcUTF8.c: In function 'iconv_cstombs':
11899    lcUTF8.c:1841: warning: assignment discards qualifiers from pointer target type
11900    lcUTF8.c:1869: warning: pointer targets in passing argument 1 of 'wctomb' differ in signedness
11901    lcUTF8.c:1873: warning: pointer targets in passing argument 1 of 'wctomb' differ in signedness
11902    lcUTF8.c: In function 'iconv_mbstocs':
11903    lcUTF8.c:1935: warning: pointer targets in passing argument 2 of 'mbtowc' differ in signedness
11904    lcUTF8.c: In function 'iconv_mbtocs':
11905    lcUTF8.c:2031: warning: pointer targets in passing argument 2 of 'mbtowc' differ in signedness
11906    lcUTF8.c: In function 'iconv_mbstostr':
11907    lcUTF8.c:2121: warning: pointer targets in passing argument 2 of 'mbtowc' differ in signedness
11908    lcUTF8.c: In function 'iconv_strtombs':
11909    lcUTF8.c:2180: warning: pointer targets in passing argument 1 of 'wctomb' differ in signedness
11910    lcUTF8.c: In function '_XlcAddGB18030LocaleConverters':
11911    lcUTF8.c:2367: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type
11912    lcUTF8.c:2368: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type
11913    lcUTF8.c:2373: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type
11914    lcUTF8.c:2374: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type
11915    lcUTF8.c:2375: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type
11916    lcUTF8.c:2376: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type
11917    lcUTF8.c:2377: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type
11918    
11919    XlibInt.c: In function '_XGetHostname':
11920    XlibInt.c:3441: warning: implicit declaration of function 'gethostname'
11921    XlibInt.c:3441: warning: nested extern declaration of 'gethostname'
11922    
11923    ConnDis.c: In function '_XDisconnectDisplay':
11924    ConnDis.c:540: warning: old-style function definition
11925    ConnDis.c: In function '_XSendClientPrefix':
11926    ConnDis.c:554: warning: old-style function definition
11927    ConnDis.c: In function 'XSetAuthorization':
11928    ConnDis.c:677: warning: old-style function definition
11929    
11930    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
11931
11932commit 3e11c73187acb2e2be9a812840bbbea947527ccb
11933Author: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
11934Date:   Fri Apr 23 00:01:54 2010 +0200
11935
11936    Allow X11 users to compose anarchism
11937    
11938    I can easily compose the hammer and sickle (the symbol representative
11939    of communism) by pressing the key sequence:
11940    
11941      <Compose> <C> <C> <C> <P> -> ☭
11942    
11943    But i can't easily make the circled A (the symbol representative of
11944    anarchism).
11945    
11946    I'd like to be able to use <Compose> <O> <A> (this is a
11947    currently unused key sequence) to generate the symbol:  Ⓐ
11948    
11949    Debian bug#555938 <http://bugs.debian.org/555938>
11950    
11951    Signed-off-by: Julien Cristau <jcristau@debian.org>
11952
11953commit 933aee1d5c53b0cc7d608011a29188b594c8d70b
11954Author: Jamey Sharp <jamey@minilop.net>
11955Date:   Fri Apr 16 20:18:28 2010 -0700
11956
11957    Fix Xlib/XCB for multi-threaded applications (with caveats).
11958    
11959    Rather than trying to group all response processing in one monolithic
11960    process_responses function, let _XEventsQueued, _XReadEvents, and
11961    _XReply each do their own thing with a minimum of code that can all be
11962    reasoned about independently.
11963    
11964    Tested with `ico -threads 20`, which seems to be able to make many
11965    icosahedrons dance at once quite nicely now.
11966    
11967    Caveats:
11968    
11969    - Anything that was not thread-safe in Xlib before XCB probably still
11970      isn't. XListFontsWithInfo, for instance.
11971    
11972    - If one thread is waiting for events and another thread tries to read a
11973      reply, both will hang until an event arrives. Previously, if this
11974      happened it might work sometimes, but otherwise would trigger either
11975      an assertion failure or a permanent hang.
11976    
11977    - Versions of libxcb up to and including 1.6 have a bug that can cause
11978      xcb_wait_for_event or xcb_wait_for_reply to hang if they run
11979      concurrently with xcb_writev or other writers. So you'll want that fix
11980      as well.
11981    
11982    Signed-off-by: Jamey Sharp <jamey@minilop.net>
11983    Reviewed-by: Josh Triplett <josh@freedesktop.org>
11984
11985commit aab43278ae619eb57d2dd9c7396f460f078588fc
11986Author: Jamey Sharp <jamey@minilop.net>
11987Date:   Fri Apr 16 22:24:16 2010 -0700
11988
11989    Use InternalLockDisplay on code paths called from LockDisplay.
11990    
11991    It's easier to reason about the code when we can't re-enter the
11992    Xlib-private sync-handlers while they're already running.
11993    
11994    Signed-off-by: Jamey Sharp <jamey@minilop.net>
11995    Reviewed-by: Josh Triplett <josh@freedesktop.org>
11996
11997commit 660b7d05f4ca4ab4661c9fe7ce655a4909b4e556
11998Author: Jamey Sharp <jamey@minilop.net>
11999Date:   Fri Apr 16 19:45:11 2010 -0700
12000
12001    Fix _XSend to enqueue the right range of pending requests.
12002    
12003    _XSend was off-by-one on both ends. It should not re-enqueue the last
12004    request that was already flushed, but it should enqueue the last request
12005    currently being flushed.
12006    
12007    Signed-off-by: Jamey Sharp <jamey@minilop.net>
12008    Reviewed-by: Josh Triplett <josh@freedesktop.org>
12009
12010commit f2735889908d6e5a7f8dbee42f00c54a52665191
12011Author: Jamey Sharp <jamey@minilop.net>
12012Date:   Fri Apr 16 19:45:11 2010 -0700
12013
12014    Pending requests are always added in-order.
12015    
12016    Replace insert_pending_request, which did an in-order search of the
12017    queue to find the right insertion point, with a simpler
12018    append_pending_request, and use that in _XSend as well.
12019    
12020    Includes assertions to check that the list of pending requests is in
12021    order by sequence number and does not have duplicates.
12022    
12023    Signed-off-by: Jamey Sharp <jamey@minilop.net>
12024    Reviewed-by: Josh Triplett <josh@freedesktop.org>
12025
12026commit d9cf5885b0f97942fbbd2a7cc50118132ece50f6
12027Author: Markus Duft <markus.duft@salomon.at>
12028Date:   Fri Apr 16 08:39:34 2010 -0700
12029
12030    Bug 26839: Fix build problem on Interix (POSIX layer on Windows)
12031    
12032    https://bugs.freedesktop.org/show_bug.cgi?id=26839
12033    
12034    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
12035
12036commit a3f5f1b90936d23e9894e3261b2d77fb7b32a51a
12037Author: Josh Triplett <josh@freedesktop.org>
12038Date:   Thu Apr 15 14:24:21 2010 -0700
12039
12040    Stop returning an int from _XIDHandler and _XSeqSyncFunction
12041    
12042    _XIDHandler and _XSeqSyncFunction originally ran from dpy->synchandler, and
12043    thus had to return an int.  Now, they only run from _XPrivSyncHandler or
12044    LockDisplay, neither of which needs to check their return value since they
12045    always returned 0.  Make them both void.
12046    
12047    Signed-off-by: Josh Triplett <josh@freedesktop.org>
12048    Signed-off-by: Jamey Sharp <jamey@minilop.net>
12049
12050commit a6d974dc59f2722b36e2df9d4f07aeee4f83ce43
12051Author: Jamey Sharp <jamey@minilop.net>
12052Date:   Thu Apr 15 13:05:08 2010 -0700
12053
12054    Move XID and sync handling from SyncHandle to LockDisplay to fix races.
12055    
12056    XID and sync handling happened via _XPrivSyncHandler, assigned to
12057    dpy->synchandler and called from SyncHandle.  _XPrivSyncHandler thus ran
12058    without the Display lock, so manipulating the Display caused races, and
12059    these races led to assertions in multithreaded code (demonstrated via
12060    ico).
12061    
12062    In the XTHREADS case, after you've called XInitThreads, we can hook
12063    LockDisplay and UnlockDisplay.  Use that to run _XIDHandler and
12064    _XSeqSyncHandler from LockDisplay rather than SyncHandle; we then know
12065    that we hold the lock, and thus we can avoid races.  We think it makes
12066    sense to do these both from LockDisplay rather than UnlockDisplay, so
12067    that you know you have valid sync and a valid XID before you start
12068    setting up the request you locked to prepare.
12069    
12070    In the !XTHREADS case, or if you haven't called XInitThreads, you don't
12071    get to use Xlib from multiple threads, so we can use the logic we have
12072    now (with synchandler and savedsynchandler) without any concern about
12073    races.
12074    
12075    This approach gets a bit exciting when the XID and sequence sync
12076    handlers drop and re-acquire the Display lock. Reacquisition will re-run
12077    the handlers, but they return immediately unless they have work to do,
12078    so they can't recurse more than once.  In the worst case, if both of
12079    them have work to do, we can nest the Display lock three deep.  In the
12080    case of the _XIDHandler, we drop the lock to call xcb_generate_id, which
12081    takes the socket back if it needs to request more XIDs, and taking the
12082    socket back will reacquire the lock; we take care to avoid letting
12083    _XIDHandler run again and re-enter XCB from the return_socket callback
12084    (which causes Very Bad Things, and is Not Allowed).
12085    
12086    Tested with ico (with 1 and 20 threads), and with several test programs
12087    for XID and sequence sync.  Tested with and without XInitThreads(), and
12088    with and without XCB.
12089    
12090    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=23192
12091    
12092    Signed-off-by: Jamey Sharp <jamey@minilop.net>
12093    Signed-off-by: Josh Triplett <josh@freedesktop.org>
12094
12095commit b089b53b697c2851db2985d32af3b29f1da5e31e
12096Author: Jamey Sharp <jamey@minilop.net>
12097Date:   Wed Apr 14 12:59:11 2010 -0700
12098
12099    Honest. Extensions get to filter async errors too.
12100    
12101    Under some circumstances, errors are picked up by calling
12102    xcb_poll_for_reply, rather than xcb_poll_for_event, because Xlib issued
12103    the requests with the XCB_REQUEST_CHECKED flag. That happens when either
12104    an async handler is queued at the time the requests are flushed, or when
12105    XSetEventQueueOwner has been used to prevent Xlib from processing XCB's
12106    event queue.
12107    
12108    This bugfix extends 405132dab64bf2375f8e57d02b1b53da2311933a to cover
12109    those cases.
12110    
12111    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=26545
12112    
12113    Signed-off-by: Jamey Sharp <jamey@minilop.net>
12114
12115commit a15c31274650e391bc6de5d0951eb4464c228139
12116Author: Jamey Sharp <jamey@minilop.net>
12117Date:   Wed Apr 14 12:10:34 2010 -0700
12118
12119    _XError already runs async handlers; only call them directly for replies.
12120    
12121    The previous behavior probably would have triggered bug reports someday.
12122    
12123    Signed-off-by: Jamey Sharp <jamey@minilop.net>
12124
12125commit 405132dab64bf2375f8e57d02b1b53da2311933a
12126Author: Jamey Sharp <jamey@minilop.net>
12127Date:   Tue Apr 13 12:12:36 2010 -0700
12128
12129    Extensions get to filter async errors too.
12130    
12131    Apparently I misread XlibInt.c:_XReply and thought that handlers set
12132    with XESetError should be consulted only for the sequence number that
12133    _XReply is currently looking for. In fact, the error handlers are also
12134    consulted when an error arrives for a request that was not expected to
12135    have a reply.
12136    
12137    However, in an odd twist, the error handlers are *not* consulted outside
12138    of _XReply--that is, when looking for events, or waiting to be able to
12139    flush the output queue. So this patch takes some small pains to preserve
12140    that behavior, though it seems likely to have been unintentional.
12141    
12142    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=26545
12143    
12144    Signed-off-by: Jamey Sharp <jamey@minilop.net>
12145
12146commit d3eab4a38f3e53ef21eb3b6fa66ead7afecf6227
12147Author: Jamey Sharp <jamey@minilop.net>
12148Date:   Tue Apr 13 12:49:59 2010 -0700
12149
12150    Prefer the xcb_generic_error_t we already have over casting to xEvent.
12151    
12152    Just a minor cleanup.
12153    
12154    Signed-off-by: Jamey Sharp <jamey@minilop.net>
12155
12156commit 75ea8c37935ccc911557d16a303ba595b8ab106b
12157Author: Jamey Sharp <jamey@minilop.net>
12158Date:   Mon Apr 12 11:30:20 2010 -0700
12159
12160    Run the user's synchandler as well as any internal synchandlers.
12161    
12162    Fixes https://bugs.freedesktop.org/show_bug.cgi?id=27595
12163    
12164    Signed-off-by: Jamey Sharp <jamey@minilop.net>
12165
12166commit c3f3e4a9e531d010312c97e753d6e543e607094d
12167Author: Kusanagi Kouichi <slash@ac.auone-net.jp>
12168Date:   Fri Feb 12 17:16:10 2010 +0900
12169
12170    Fix manual typos.
12171    
12172    Signed-off-by: Kusanagi Kouichi <slash@ac.auone-net.jp>
12173    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
12174
12175commit 75c6c5595408caba9ef8233839d77021d02f86f2
12176Author: Dirk Wallenstein <dirkwallenstein@t-online.de>
12177Date:   Fri Feb 5 20:42:46 2010 +0100
12178
12179    man: Correct the XkbAllAccessXEventsMask mask name
12180    
12181    This mask has probably been renamed but not been updated in the manuals.
12182    
12183    Signed-off-by: Dirk Wallenstein <dirkwallenstein@t-online.de>
12184    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
12185
12186commit 9262aceaff24c954cab8c252690032bc2ec25e7d
12187Author: Dirk Wallenstein <dirkwallenstein@t-online.de>
12188Date:   Fri Feb 5 20:42:45 2010 +0100
12189
12190    man: Add missing geometry component flag
12191    
12192    Signed-off-by: Dirk Wallenstein <dirkwallenstein@t-online.de>
12193    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
12194
12195commit 50cf134465f6fd263f37acecac94518468ef1c6d
12196Author: Dirk Wallenstein <halsmit@t-online.de>
12197Date:   Tue Feb 2 21:24:32 2010 +0100
12198
12199    man: Return value of XkbGetState is Status and not Bool
12200    
12201    Signed-off-by: Dirk Wallenstein <halsmit@t-online.de>
12202    Reviewed-by: Julien Cristau <jcristau@debian.org>
12203    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
12204
12205commit 7a93ae2bb5292a97fdd27ed818bc81248b37f641
12206Author: Dirk Wallenstein <halsmit@t-online.de>
12207Date:   Tue Feb 2 21:24:30 2010 +0100
12208
12209    man: Fix return value specification of XkbKeyActionEntry
12210    
12211    The XkbKeyActionEntry macro expands to a pointer.
12212    
12213    Signed-off-by: Dirk Wallenstein <halsmit@t-online.de>
12214    Reviewed-by: Julien Cristau <jcristau@debian.org>
12215    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
12216
12217commit e9884d4a05a5661ec343ea8a2aa0562b6419e086
12218Author: Dirk Wallenstein <halsmit@t-online.de>
12219Date:   Tue Feb 2 21:24:29 2010 +0100
12220
12221    man: Redirect users from XKeycodeToKeysym to XkbKeycodeToKeysym #25732
12222    
12223    XKeycodeToKeysym keeps compatibility with pre-XKB and thus only sees 2
12224    groups with 2 levels each. It wraps the index into the next group.
12225    This behavior confuses the unaware user, and therefore this will add a
12226    reference to XkbKeycodeToKeysym in the corresponding man paragraph.
12227    
12228    Another bug had that issue, too. #5349
12229    
12230    Signed-off-by: Dirk Wallenstein <halsmit@t-online.de>
12231    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
12232
12233commit 6474cdf97cd648afaeaa872155f3fa21cfb43f80
12234Author: Alan Coopersmith <alan.coopersmith@oracle.com>
12235Date:   Thu Apr 8 19:59:55 2010 -0700
12236
12237    Fix typo in new fi_FI.UTF-8 that was reported by "make check"
12238    
12239    Unrecognized pattern in Compose on line #154:
12240      <dead_diaeresis> <space>                " "¨"
12241    
12242    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
12243
12244commit 91bd5e7af2d3a9526aefb73dc10f417896f0e4dd
12245Author: Marko Myllynen <myllynen@redhat.com>
12246Date:   Thu Apr 8 19:52:42 2010 -0700
12247
12248    Bug 27465 - Rewritten fi_FI.UTF-8 Compose file
12249    
12250    I've rewritten the fi_FI.UTF-8 Compose file so that it
12251    
12252    - includes en_US.UTF-8/Compose for base compose definitions (and thus gets any
12253    possible additions to en_US.UTF-8/Compose automatically included)
12254    - overrides any en_US.UTF-8/Compose definitions with fi_FI.UTF-8/Compose
12255    definitions (thus making it safe to include en_US.UTF-8/Compose)
12256    - lists all the definitions specified in the SFS 5966 standard (thus making it
12257    easy to verify that the implementation is valid and complete)
12258    - adds a header about the file itself as required by the standard
12259    
12260    The rewritten version is ~320 lines compared to over 5000 lines of the previous
12261    version.
12262    
12263    https://bugs.freedesktop.org/show_bug.cgi?id=27465
12264
12265commit f6a4fd0c7615684d08e848245849dea4017a5214
12266Author: Gaetan Nadon <memsize@videotron.ca>
12267Date:   Thu Apr 1 21:46:12 2010 -0400
12268
12269    config: update and relocate AC_DEFINE_DIR macro
12270    
12271    Remove deprecated acinclude.m4 macro container file
12272    Use separate macro files as per autoconf recommendation
12273    Use the latest macro from GNU (ax) which replaces
12274    the non-gnu version (ac)
12275    This preserves the Autoconf macro AC namespace.
12276    
12277    Also moved out of acinclude.m4 is the DOLT macro
12278    
12279    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
12280
12281commit 61d5231db418cec51bd718633c3bba39b18689d6
12282Author: Gaetan Nadon <memsize@videotron.ca>
12283Date:   Mon Mar 29 14:53:48 2010 -0400
12284
12285    config: remove the pkgconfig pc.in file from EXTRA_DIST
12286    
12287    Automake always includes it in the tarball.
12288    
12289    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
12290
12291commit 69fc76a0321c6b25cc4286173c53435c69ab8e0e
12292Author: Fernando Carrijo <fcarrijo@yahoo.com.br>
12293Date:   Wed Mar 17 23:53:16 2010 -0300
12294
12295    No need for req->firstKeyCode to be set twice.
12296    
12297    There is no reason to set req->firstKeyCode twice when a client, wishful
12298    for changing keyboard mappings, calls XChangeKeyboardMapping. This patch
12299    fixes the mistake by making no functional changes to libX11 whatsoever.
12300    
12301    Signed-off-by: Fernando Carrijo <fcarrijo@yahoo.com.br>
12302    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
12303
12304commit b5797597f83ee62228abfb88f026ef92163e07a5
12305Author: Gaetan Nadon <memsize@videotron.ca>
12306Date:   Tue Feb 16 10:37:21 2010 -0500
12307
12308    config: move CWARNFLAGS from configure.ac to Makefile.am
12309    
12310    Compiler warning flags should be explicitly set in the makefile
12311    rather than being merged with other packages compiler flags.
12312    
12313    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
12314    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
12315
12316commit 052c4d7995b0e52a038933beb85cd544571c6b7e
12317Author: Gaetan Nadon <memsize@videotron.ca>
12318Date:   Tue Feb 16 14:28:21 2010 -0500
12319
12320    specs: change install cmd due to automake 1.11
12321    
12322    specData_INSTALL is defined in 1.9 and 1.10 but not 1.11
12323    
12324    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
12325
12326commit 7277a18cda9f5a6807d11cf4ceb9449b1c302c18
12327Author: Gaetan Nadon <memsize@videotron.ca>
12328Date:   Tue Feb 9 17:27:08 2010 -0500
12329
12330    doc: use $(mkdir_p) rather than $(MKDIR_P) due to automake 1.9.6
12331    
12332    $(MKDIR_P) is not defined in automake 1.9.
12333    
12334    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
12335
12336commit e66eda95b520727969d721416d4ea49b54ef2b03
12337Author: Gaetan Nadon <memsize@videotron.ca>
12338Date:   Tue Feb 2 16:29:26 2010 -0500
12339
12340    specs: install html images in $docdir with html files
12341    
12342    The images required by the html files have been omitted.
12343    
12344    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
12345
12346commit 137d1ff6be99d040e77c8c4c52029c5bdf1f4808
12347Author: Gaetan Nadon <memsize@videotron.ca>
12348Date:   Sun Jan 31 14:16:20 2010 -0500
12349
12350    doc: use new macros to control doc generation
12351    
12352    Namely XORG_WITH_GROFF for the groff generation tool
12353    XORG_WITH_PS2PDF for the conversion of PS docs to PDF
12354    XORG_ENABLE_SPECS for the generation of specs
12355    
12356    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
12357
12358commit 9ca583c5d6fcf9cd8151ee7b019630b141d32fab
12359Author: Gaetan Nadon <memsize@videotron.ca>
12360Date:   Tue Jan 26 19:41:08 2010 -0500
12361
12362    doc: clean-up generated html images
12363    
12364    Generate images in /images as is the convention
12365    Provide a base file name for images rather than process ID
12366    Remove images directory when running make clean
12367    
12368    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
12369
12370commit eb289b34bfc9978eef724e0f268975938334c06c
12371Author: Kristian Høgsberg  <krh@bitplanet.net>
12372Date:   Thu Jan 21 13:39:17 2010 -0500
12373
12374    XErrorDB: Add new DRI2 request names
12375
12376commit 6babf2123d05adb9349394c49cc2d81d1f66cf9e
12377Author: Julien Cristau <jcristau@debian.org>
12378Date:   Sat Jan 16 22:47:03 2010 +0000
12379
12380    man: Fix typo in Makefile
12381    
12382    Missing line continuation was preventing the XCompose alias from being
12383    generated.
12384    
12385    Signed-off-by: Julien Cristau <jcristau@debian.org>
12386    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
12387
12388commit 68530599e61cf9fef3fcc91650e7cef21837fce7
12389Author: Alan Coopersmith <alan.coopersmith@sun.com>
12390Date:   Sat Jan 16 11:41:32 2010 -0800
12391
12392    libX11 1.3.3
12393    
12394    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
12395
12396commit 1e5af224b9fbdb154620f898558704f2bc4bf4e9
12397Author: Alan Coopersmith <alan.coopersmith@sun.com>
12398Date:   Thu Jan 14 18:33:39 2010 -0800
12399
12400    Update COPYING file with actual licenses from libX11 code & docs
12401    
12402    COPYING was previously a years out-of-date copy of the LICENSES
12403    doc summarizing all licenses for all XFree86 components, many of
12404    which did not apply to libX11.
12405    
12406    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
12407
12408commit ddb1786720d6136b1b28be599c75c10ad1b76a2a
12409Author: Alan Coopersmith <alan.coopersmith@sun.com>
12410Date:   Thu Jan 14 17:38:26 2010 -0800
12411
12412    Purge CVS/RCS id tags
12413    
12414    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
12415
12416commit c1db9ddcfa7091f173478dca45bf720badedfca4
12417Author: Alan Coopersmith <alan.coopersmith@sun.com>
12418Date:   Thu Jan 14 15:39:14 2010 -0800
12419
12420    Update Sun license notices to current X.Org standard form
12421    
12422    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
12423
12424commit 1aaa7c0358c5c035b99625f5715cb722bc2d2a2f
12425Author: Alan Coopersmith <alan.coopersmith@sun.com>
12426Date:   Thu Jan 14 08:28:22 2010 -0800
12427
12428    Add %S substitutions to Compose man page
12429    
12430    Commit 9df349a7894725f9469b106af645f57f7f3f9af3 added support for %S
12431    in Compose file include statements - this documents it in the Compose
12432    file man page.
12433    
12434    Also changes the existing substitution documentation to list format
12435    instead of a paragraph format to allow easier adding of %S.
12436    
12437    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
12438
12439commit 94b45db93058cffa25598fe27dd3e385ace9d305
12440Author: Richard Purdie <rpurdie@linux.intel.com>
12441Date:   Thu Jan 14 08:04:28 2010 -0800
12442
12443    Fix configure.ac PKG_ macro calls
12444    
12445    If the first call to PKG_CHECK_MODULES() may not be called during execution
12446    which is the case here since its inside a case statement, call
12447    PKG_PROG_PKG_CONFIG() to ensure things worked correctly.
12448    
12449    Fixes a configure failure introduced by commit
12450    87529c039050ce3336ff9ce00f1b5a21d15690da when xcb is enabled.
12451    
12452    http://bugs.freedesktop.org/show_bug.cgi?id=26041
12453    
12454    Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
12455    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
12456
12457commit df559d8bc2238a2c369152fcb06e5b5ab132a5dc
12458Author: Alan Coopersmith <alan.coopersmith@sun.com>
12459Date:   Tue Jan 12 09:18:15 2010 -0800
12460
12461    Raise xorg-macros requirement to 1.4
12462    
12463    Needed since the changes in 464390f16d7ed4aa5bf80f89863ba92273075ec2
12464    depend on the INSTALL file delivered in xorg-macros 1.4
12465    
12466    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
12467
12468commit 9df349a7894725f9469b106af645f57f7f3f9af3
12469Author: James Cloos <cloos@jhcloos.com>
12470Date:   Wed Jan 13 11:04:38 2010 -0500
12471
12472    Allow inclusion of system level compose files.
12473    
12474    With the release of XFree86 4.4 an inclusion system of compose files was
12475    added to Xlib to allow inclusion of the default compose file (with %L),
12476    any compose files from user’s home directory (with %H), or a compose
12477    file with a hard coded path¹. However, even today including system level
12478    compose files is not possible in a platform independent manner although
12479    the machinery for including compose files and overriding previously
12480    defined compositions is already in place.
12481    
12482    With the ability to include system level compose files one could greatly
12483    reduce the need for compose file rule duplication and the work needed to
12484    propagate changes in one compose file to others. For example, currently
12485    the Finnish compose file fi_FI.UTF-8 weights over 5000 lines² but it
12486    is almost identical with en_US.UTF-8 except for perhaps half a dozen
12487    compositions.
12488    
12489    This commit allows one to include system level compose files with the
12490    following kind of syntax:
12491    
12492    include "%S/en_US.UTF-8/Compose"
12493    
12494    1] http://www.xfree86.org/4.4.0/RELNOTES5.html#42
12495    2] http://cgit.freedesktop.org/xorg/lib/libX11/tree/nls/fi_FI.UTF-8/Compose.pre
12496    
12497    Signed-off-by: Marko Myllynen <myllynen@redhat.com>
12498    Signed-off-by: James Cloos <cloos@jhcloos.com>
12499
12500commit ccf21a8877f40136e25f2f62d0668b0c76b3cfbd
12501Author: Thien-Thi Nguyen <ttn@gnuvola.org>
12502Date:   Tue Dec 1 10:31:47 2009 +0100
12503
12504    libX11: Fix comment: Invert polarity (direction) of reformat description.
12505    
12506    Signed-off-by: Thien-Thi Nguyen <ttn@gnuvola.org>
12507    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
12508
12509commit 4d4676c0d6324d2ff9d00d15ab485fa5d848a369
12510Author: Osamu Sayama <osamu.sayama@sun.com>
12511Date:   Tue Jan 5 17:26:40 2010 -0800
12512
12513    set_fontset_extents crash after get_rotate_fontname fix in 2bef065b70f7
12514    
12515    - In set_fontset_extents, check font_data is not NULL before running
12516      loop that may increment it to a non-NULL invalid pointer.
12517    - Make sure get_rotate_fontname counts the final field
12518    
12519    Fixes OpenSolaris bug 6913809: X application dumps core in ja_JP.UTF-8 locale
12520    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6913809>
12521    
12522    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
12523    Reviewed-by: Adam Jackson <ajax@redhat.com>
12524
12525commit 87529c039050ce3336ff9ce00f1b5a21d15690da
12526Author: Alan Coopersmith <alan.coopersmith@sun.com>
12527Date:   Tue Jan 5 18:02:37 2010 -0800
12528
12529    Merge X11, XKBPROTO, & XPROTO pkg-config lists
12530    
12531    Since the XPROTO_CFLAGS & XKBPROTO_CFLAGS are just merged into X11_CFLAGS
12532    in configure.ac anyway, might as well combine the lists passed to
12533    PKG_CHECK_MODULES to reduce duplication in the flags.
12534    
12535    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
12536    Reviewed-by: Rémi Cardona <remi@gentoo.org>
12537    Acked-by: Peter Hutterer <peter.hutterer@who-t.net>
12538
12539commit 2dd053667b44c55e2bf601aec7b75fc6fee1cf44
12540Author: Alan Coopersmith <alan.coopersmith@sun.com>
12541Date:   Tue Jan 5 17:56:58 2010 -0800
12542
12543    Add XCompose man page shadow for Compose man page
12544    
12545    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
12546
12547commit 02543bba816e065c02cd36e0c9e21519a9ee9c96
12548Author: Alan Coopersmith <alan.coopersmith@sun.com>
12549Date:   Tue Jan 5 17:47:44 2010 -0800
12550
12551    Add $(AM_V_GEN) to silence lint rules too
12552    
12553    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
12554
12555commit db7c6fdeeaef9475458498e4cf09d6b1329e9aa3
12556Author: Alan Coopersmith <alan.coopersmith@sun.com>
12557Date:   Tue Jan 5 17:42:42 2010 -0800
12558
12559    Remove GCC_WARNINGS now that XORG_CWARNFLAGS sets them for us
12560    
12561    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
12562
12563commit 6b4e526e7ba105622f6b143e8e2639b44cb6cc19
12564Author: Gaetan Nadon <memsize@videotron.ca>
12565Date:   Sun Nov 29 10:44:24 2009 -0500
12566
12567    configure.ac: restore correct order for XORG_DEFAULT_OPTIONS
12568    
12569    It must be following AC_USE_SYSTEM_EXTENSION
12570
12571commit 3dbaa11d1c8705e1b309c6686f354766b651ad20
12572Author: Gaetan Nadon <memsize@videotron.ca>
12573Date:   Sun Nov 29 10:01:44 2009 -0500
12574
12575    Add .gitignore in /specs for generated files
12576    
12577    Being in /specs, it will apply for all 3 subdirs
12578
12579commit f45d39d37aab04742e44cd8c3c993aad7587e40c
12580Author: Gaetan Nadon <memsize@videotron.ca>
12581Date:   Fri Nov 27 20:56:03 2009 -0500
12582
12583    Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
12584    
12585    Now that the INSTALL file is generated.
12586    Allows running make maintainer-clean.
12587
12588commit 464390f16d7ed4aa5bf80f89863ba92273075ec2
12589Author: Gaetan Nadon <memsize@videotron.ca>
12590Date:   Wed Oct 28 14:09:10 2009 -0400
12591
12592    INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
12593    
12594    Add missing INSTALL file. Use standard GNU file on building tarball
12595    README may have been updated
12596    Remove AUTHORS file as it is empty and no content available yet.
12597    Remove NEWS file as it is empty and no content available yet.
12598
12599commit 6360e7f0ce6a75da2bed33ede7fea783a1fb80e1
12600Author: Gaetan Nadon <memsize@videotron.ca>
12601Date:   Tue Oct 27 15:07:25 2009 -0400
12602
12603    Deploy the new XORG_DEFAULT_OPTIONS #24242
12604    
12605    This macro aggregate a number of existing macros that sets commmon
12606    X.Org components configuration options. It shields the configuration file from
12607    future changes.
12608
12609commit d02f943c98fde2f14319bc57fd9ad77eb9a2a572
12610Author: Gaetan Nadon <memsize@videotron.ca>
12611Date:   Mon Oct 26 22:08:42 2009 -0400
12612
12613    Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
12614    
12615    ChangeLog filename is known to Automake and requires no further
12616    coding in the makefile.
12617
12618commit f77c89c751a6a63c8ef11ecdddca2aed11ff6e29
12619Author: Gaetan Nadon <memsize@videotron.ca>
12620Date:   Thu Oct 22 12:34:19 2009 -0400
12621
12622    .gitignore: use common defaults with custom section # 24239
12623    
12624    Using common defaults will reduce errors and maintenance.
12625    Only the very small or inexistent custom section need periodic maintenance
12626    when the structure of the component changes. Do not edit defaults.
12627
12628commit 46c7b0e9d0d85cf5ccc0d40d19821fcc3335503b
12629Author: Alan Coopersmith <alan.coopersmith@sun.com>
12630Date:   Thu Nov 12 23:05:40 2009 -0800
12631
12632    Add compose-check.pl to EXTRA_DIST
12633    
12634    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
12635
12636commit 54c64267cc8bc98641cc39a22cb7bd71673e89e0
12637Author: Julien Cristau <jcristau@debian.org>
12638Date:   Thu Oct 29 17:17:24 2009 +0100
12639
12640    man: fix XCopyGC argument order
12641    
12642    Ubuntu bug#408337
12643
12644commit aad10032651cdc2a53b359035954454a28d6db67
12645Author: Alan Coopersmith <alan.coopersmith@sun.com>
12646Date:   Fri Oct 23 13:55:14 2009 -0700
12647
12648    libX11 1.3.2
12649    
12650    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
12651
12652commit 6303ada89cb228c0f9656036f798703afb42fc29
12653Author: Peter Hutterer <peter.hutterer@who-t.net>
12654Date:   Wed Oct 21 12:42:07 2009 +1000
12655
12656    Add smiley faces to compose sequences.
12657    
12658    I wonder how we could have lasted that long without them.
12659    
12660    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
12661    Acked-by: Daniel Stone <daniel@fooishbar.org>
12662    Acked-By: James Cloos <cloos@jhcloos.com>
12663
12664commit 0e104ebd8628803c27e36b16922ad1edd891325a
12665Author: Alan Coopersmith <alan.coopersmith@sun.com>
12666Date:   Thu Oct 22 23:12:30 2009 -0700
12667
12668    Add man page for Compose file format
12669    
12670    Based on grammar description in modules/im/ximcp/imLcPrs.c and
12671    note on XFree86 changes formerly found in xorg-docs RELNOTES.sgml
12672    
12673    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
12674
12675commit 9c95f2af7c442b3a59b1a30cf804f1ef4e7fc5b5
12676Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
12677Date:   Tue Oct 20 12:46:03 2009 -0700
12678
12679    Add extra configuration and sanity checks for groff and ps2pdf
12680    
12681    1) Add AC_ARG_VAR for GROFF and PS2PDF to inform users of these
12682       environment variables.
12683    2) Check that groff -ms works
12684    
12685    Some distributions ship the ms macros as a separate package which may
12686    not be installed together with groff, so we need to make sure that groff
12687    works and the required macros are actually installed before attempting
12688    to build the specs.
12689    
12690    Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
12691    Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
12692    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
12693
12694commit d3f801fd2f9198eaad6797414dba652f9c006c6d
12695Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
12696Date:   Sun Oct 18 17:34:53 2009 -0500
12697
12698    Fix VPATH build of libX11 specs
12699    
12700    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
12701
12702commit ad15e1a89d30ccc11d80745897b83def1448e8c0
12703Author: Alan Coopersmith <alan.coopersmith@sun.com>
12704Date:   Sat Oct 17 16:14:34 2009 -0700
12705
12706    libX11 1.3.1
12707    
12708    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
12709
12710commit 0cbf98c17a7484bb58b2464b98d63bb3b4ea2594
12711Author: Alan Coopersmith <alan.coopersmith@sun.com>
12712Date:   Sat Oct 17 16:28:25 2009 -0700
12713
12714    Fix make distcheck
12715    
12716    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
12717
12718commit 082e62ad268ef16a3bebc5a3c9fa008dbdc483ed
12719Author: Alan Coopersmith <alan.coopersmith@sun.com>
12720Date:   Fri Oct 16 19:25:35 2009 -0700
12721
12722    Use $(AM_V_GEN) to silence echo commands for generating shadow man pages
12723    
12724    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
12725
12726commit 4e66da0783b2e5e3b288aaecd3c89396ed425c20
12727Author: Alan Coopersmith <alan.coopersmith@sun.com>
12728Date:   Wed Oct 14 16:18:24 2009 -0700
12729
12730    Move libX11 & XIM/locale specs from xorg-docs
12731    
12732    If groff is found, and --disable-specs is not passed to configure,
12733    specs will be converted to text, html and ps (or pdf if ps2pdf is
12734    found) and installed to $(docdir)
12735    
12736    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
12737
12738commit 5d3d817a42ddcc8d0c6efd33efd1442fe14f5c6b
12739Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
12740Date:   Tue Oct 13 19:15:51 2009 -0500
12741
12742    Provide _Xsetlocale compat wrappers on Cygwin
12743    
12744    Previous versions of Cygwin did not have proper locale support, so Cygwin/X
12745    defined X_LOCALE, using _Xsetlocale instead.  Cygwin 1.7 has added locale
12746    support, but we can't remove the _Xsetlocale entry point without breaking
12747    ABI.
12748    
12749    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
12750
12751commit 2c8b3a877a713bb66a6316a7051b43c46af6e1a0
12752Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
12753Date:   Tue Oct 13 19:15:49 2009 -0500
12754
12755    dolt: add Cygwin to supported platforms
12756    
12757    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
12758
12759commit a2c8e3e34b15b57ff881a52101fc961a602f35e4
12760Author: Alan Coopersmith <alan.coopersmith@sun.com>
12761Date:   Wed Oct 14 13:23:30 2009 -0700
12762
12763    Recognize XSUNBUFFERSIZE alias for XLIBBUFFERSIZE on Solaris
12764    
12765    Also fix indenting of the XLIBBUFFERSIZE code to match surrounding code
12766    
12767    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
12768
12769commit 34ddfca7b7d58240b0fe74bec6b2e0652d15c051
12770Author: Jon TURNEY <jon.turney@dronecode.org.uk>
12771Date:   Tue Feb 10 17:47:25 2009 +0000
12772
12773    Include sys/select.h for select() and struct timeval, if it exists
12774    
12775    This is a cygwin build fix
12776
12777commit 383165916ddac91740d4c780174d4c0d07cdb994
12778Author: Xake <xake@rymdraket.net>
12779Date:   Sun Sep 27 11:16:36 2009 +0200
12780
12781    Use AM_V_GEN instead of customized macros for AM_SILENT_RULES
12782    
12783    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
12784
12785commit 854269d55cdda8caf425515bfed2855e211a5ada
12786Author: Julien Cristau <jcristau@debian.org>
12787Date:   Tue Oct 6 16:11:24 2009 +0200
12788
12789    configure: quote argument to m4_pattern_forbid
12790    
12791    Without this, configure spits out
12792    ../configure: line 12364: ac_fn_c_check_member: command not found
12793    ../configure: line 12378: ac_fn_c_check_type: command not found
12794    
12795    Also anchor the pattern to make it stricter.
12796    
12797    Signed-off-by: Julien Cristau <jcristau@debian.org>
12798
12799commit 3bb020587ce74e0737ec7aceb20041f1e77d3b87
12800Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
12801Date:   Thu Oct 1 22:20:38 2009 -0700
12802
12803    Split CFLAGS into CPPFLAGS and CFLAGS
12804    
12805    On some build systems, CPPFLAGS is set to "-I/some/prefix/include".  If older
12806    X11 headers are in /some/prefix/include, they will be preferred over the
12807    shipped headers.  This corrects that problem.
12808
12809commit d54caf1c9c55af8247621b7ba6afb20b23699839
12810Author: Peter Hutterer <peter.hutterer@who-t.net>
12811Date:   Fri Oct 2 10:59:08 2009 +1000
12812
12813    libX11 1.3
12814    
12815    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
12816
12817commit dd201bcf9e7f8863b7ef32273a5ef021678133c1
12818Author: Peter Hutterer <peter.hutterer@who-t.net>
12819Date:   Fri Oct 2 12:10:29 2009 +1000
12820
12821    nls: remove duplicate Compose sequences from pt_BR.UTF-8
12822    
12823    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
12824
12825commit a293ae9e83739067fc92db1a39c262857bc2283e
12826Author: Peter Hutterer <peter.hutterer@who-t.net>
12827Date:   Fri Sep 25 11:19:41 2009 +1000
12828
12829    Add XF86TouchpadToggle to XKeysymDB
12830    
12831    Lenovo laptops provide a key to enable or disable the touchpad and the
12832    trackstick. This key is usually located on Fn + F8.
12833    
12834    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
12835    Acked-by: Adam Jackson <ajax@redhat.com>
12836
12837commit 69839f8903a24eab08f17a781b3797fb64dce9cf
12838Author: Alan Coopersmith <alan.coopersmith@sun.com>
12839Date:   Sun Sep 27 10:34:16 2009 -0700
12840
12841    Bug 24173: libX11 from git fails to build with automake older then 1.11
12842    
12843    AM_CONDITIONAL must come *before* the AC_OUTPUT that creates the
12844    Makefiles, instead of after.
12845    <http://bugs.freedesktop.org/show_bug.cgi?id=24173>
12846    
12847    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
12848
12849commit f5effd041f58ef07703cca2b4f396758811e1eec
12850Author: Alan Coopersmith <alan.coopersmith@sun.com>
12851Date:   Wed Apr 15 10:59:23 2009 -0700
12852
12853    Resolve conflicting Compose sequences in iso8859-2, el_GR.UTF-8 & pt_BR.UTF-8
12854    
12855    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
12856
12857commit 3843778358d3a0cd6a2d07dba5dd061248053ac9
12858Author: Alan Coopersmith <alan.coopersmith@sun.com>
12859Date:   Wed Apr 15 10:56:09 2009 -0700
12860
12861    Add perl script to check for duplicate or conflicting compose file entries
12862    
12863    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
12864
12865commit 19cc5e1fa17a285045662820a8b4de2a0f9a194d
12866Author: Alan Coopersmith <alan.coopersmith@sun.com>
12867Date:   Fri Sep 18 17:10:04 2009 -0700
12868
12869    Use make rules instead of shell for loops to generate shadow man pages
12870    
12871    Allows parallel make and simpler build logs/error reporting
12872    
12873    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
12874
12875commit 7dabcac973d0b6692a3cd62bd6d8e0467b24200b
12876Author: Alan Coopersmith <alan.coopersmith@sun.com>
12877Date:   Fri Sep 18 16:58:53 2009 -0700
12878
12879    Add AM_SILENT_RULES support for cpp rules for man & nls files
12880    
12881    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
12882
12883commit bfa19cddd8546b4930a773f3bbd81137c362d82b
12884Author: Alan Coopersmith <alan.coopersmith@sun.com>
12885Date:   Fri Sep 18 16:58:16 2009 -0700
12886
12887    Update to using xorg-macros 1.3 & XORG_DEFAULT_OPTIONS
12888    
12889    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
12890
12891commit 51396066c8003a96a6399c9a4bed2a81e512b582
12892Author: Mikko Niskanen <mikko.niskanen@iki.fi>
12893Date:   Fri Sep 4 10:11:15 2009 +1000
12894
12895    Fix wrong typedef on HP-UX (#18998)
12896    
12897    shl_dt doesn't exist, the type is shl_t.
12898    
12899    X.Org Bug 18998 <http://bugs.freedesktop.org/show_bug.cgi?id=18998>
12900    
12901    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
12902
12903commit 615220a312b9430a580fe6dcf51703c6ef244f66
12904Author: Paul Bender <pebender@gmail.com>
12905Date:   Fri Sep 4 09:57:10 2009 +1000
12906
12907    Don't require xdmcp in configure.ac (#22583)
12908    
12909    X.Org Bug 22583 <http://bugs.freedesktop.org/show_bug.cgi?id=22583>
12910    
12911    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
12912
12913commit 20f9ecd86ad2a9ac6966f7eee32234cb5ef77c29
12914Author: Peter Hutterer <peter.hutterer@who-t.net>
12915Date:   Thu Sep 3 14:02:44 2009 +1000
12916
12917    man: fix parameters to XkbAllocGeomOverlay{Rows|Keys} (#23499)
12918    
12919    X.Org Bug 23499 <http://bugs.freedesktop.org/show_bug.cgi?id=23499>
12920    
12921    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
12922
12923commit c2814a614dc4d9409bfa0f44c18bfd69ad7f7b85
12924Author: Peter Hutterer <peter.hutterer@who-t.net>
12925Date:   Thu Sep 3 12:05:25 2009 +1000
12926
12927    man: XQueryTree may return BadWindow. (#23416)
12928    
12929    X.Org Bug 23416 <http://bugs.freedesktop.org/show_bug.cgi?id=XXX>
12930    
12931    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
12932
12933commit dbe98d456ccc6eeca9fa3e241a3db0a4d83c5a65
12934Author: Alan Coopersmith <alan.coopersmith@sun.com>
12935Date:   Fri Aug 28 23:07:58 2009 +0800
12936
12937    Fix version tag in .TH line of several XKB man pages
12938    
12939    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
12940
12941commit bf24400936c10af6f5aa0c75cfe2207ab9b680b4
12942Author: Alan Coopersmith <alan.coopersmith@sun.com>
12943Date:   Fri Aug 28 23:04:38 2009 +0800
12944
12945    XkbSetDeviceButtonActions.man: remove non-existent actions argument
12946    
12947    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
12948
12949commit 53affa9335116f2d367f041e6502a411d4619e47
12950Author: Alan Coopersmith <alan.coopersmith@sun.com>
12951Date:   Fri Aug 28 23:00:17 2009 +0800
12952
12953    XkbQueryExtension.man: Arguments should be pointers
12954    
12955    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
12956
12957commit 6233948885acc5873a5abddfff235afec555f3c2
12958Author: Alan Coopersmith <alan.coopersmith@sun.com>
12959Date:   Fri Aug 28 22:53:03 2009 +0800
12960
12961    XkbSAActionSetCtrls.man: Fix typo in formatting macro
12962    
12963    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
12964
12965commit 28a9ca57cdec4aa9ca92322f963b01f0c2daf47a
12966Author: Alan Coopersmith <alan.coopersmith@sun.com>
12967Date:   Fri Aug 28 22:49:31 2009 +0800
12968
12969    Convert Xkb API man pages to ANSI prototypes
12970    
12971    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
12972
12973commit fa2eecca85baab9616f7143cc1a853a594b4a90c
12974Author: James Cloos <cloos@jhcloos.com>
12975Date:   Mon Aug 24 06:35:17 2009 -0400
12976
12977    Add some (Serbian) Cyrillic NFD sequences.
12978    
12979    A number of characters in use in the various countries which use the
12980    Cyrillic script do not appear as pre-composed characters in The UCS
12981    or Unicode; they are only available as combining-character sequences.
12982    
12983    This commit adds support for using (prefix) dead keys and Multi_key-
12984    initiated sequences to enter a number of these combining-character
12985    sequences.  This ensures that users can enter these scripts even
12986    when using the current Cyrillic keymaps, which lack support for
12987    the combining characters.
12988    
12989    Please see the discussions on the xkb mailing list.
12990    
12991    Signed-off-by: James Cloos <cloos@jhcloos.com>
12992
12993commit d1bdc909f9246119696c8b0d9afb7bd8afb71b60
12994Author: Julien Cristau <jcristau@debian.org>
12995Date:   Wed Aug 5 18:14:23 2009 +0200
12996
12997    man/xkb: delete spurious newline in .TH headers
12998
12999commit ee723b83b24682db833a2f0abd96cd319b8a62af
13000Author: Julien Cristau <jcristau@debian.org>
13001Date:   Wed Aug 5 16:45:19 2009 +0200
13002
13003    man: use __libmansuffix__ instead of 3X11 for references to other pages
13004
13005commit 595e204feb82c798a92eea41fea03be6476ac181
13006Author: Julien Cristau <jcristau@debian.org>
13007Date:   Wed Aug 5 16:43:36 2009 +0200
13008
13009    man/xkb: use __libmansuffix__ instead of hardcoding 3Xkb for manpage sections
13010
13011commit 9da7e230d5320e1556ad2084fcd06ee7994385ea
13012Author: Peter Hutterer <peter.hutterer@who-t.net>
13013Date:   Wed Aug 5 14:15:02 2009 +1000
13014
13015    Bump to 1.2.99.901 (1.3 RC1)
13016    
13017    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
13018
13019commit 8f78c7b4e3570cd46c5a220982963c17fe2157b8
13020Author: Filippo Giunchedi <filippo@debian.org>
13021Date:   Sat Jun 6 16:56:54 2009 +0200
13022
13023    nls: add {left,right}wards arrow to compose table
13024    
13025    Debian bug#532117 <http://bugs.debian.org/532117>
13026    
13027    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
13028
13029commit 7949bfa00390241d994f32463e50d4bd78920568
13030Author: Julien Cristau <jcristau@debian.org>
13031Date:   Fri Jul 31 13:33:52 2009 +0200
13032
13033    Update library version for new symbols
13034    
13035    Commit 554f755e5545f63d3c8f299297927238da155773 added generic event
13036    cookie handling.  Bump libX11 version number accordingly.
13037    
13038    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
13039
13040commit 640fec5f4feacd01a00eea3dcd4edb220907d3dc
13041Author: Julien Cristau <jcristau@debian.org>
13042Date:   Sun Aug 2 17:18:31 2009 +0200
13043
13044    Add _XFUNCPROTOBEGIN/END to Xlib-xcb.h
13045    
13046    X.Org bug#22252 <https://bugs.freedesktop.org/show_bug.cgi?id=22252>
13047    
13048    Reported-by: Riku Salminen <rsalmin2@cc.hut.fi>
13049    Signed-off-by: Julien Cristau <jcristau@debian.org>
13050
13051commit bc06d49e9dac1836d6824769ddb2ac5ba9f14df7
13052Author: Peter Hutterer <peter.hutterer@who-t.net>
13053Date:   Wed Jul 29 08:44:09 2009 +1000
13054
13055    Fix compiler warning 'unused variable qelt'
13056    
13057    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
13058
13059commit 03f4907e14f5755e72309f08742977b871e81e33
13060Author: Peter Hutterer <peter.hutterer@who-t.net>
13061Date:   Wed Jul 29 08:34:57 2009 +1000
13062
13063    Add utlist.h to the Makefile.am
13064    
13065    utlist.h contains the linked list macros, it was added with the recent
13066    addition of event cookies but utlist.h wasn't added to the Makefile.am. As a
13067    result, make dist failed.
13068    
13069    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
13070
13071commit 554f755e5545f63d3c8f299297927238da155773
13072Author: Peter Hutterer <peter.hutterer@who-t.net>
13073Date:   Fri Jun 26 11:27:43 2009 +1000
13074
13075    Add generic event cookie handling to libX11.
13076    
13077    Generic events require more bytes than Xlib provides in the standard XEvent.
13078    Memory allocated by the extension and stored as pointers inside the event is
13079    prone to leak by simple 'while (1) { XNextEvent(...); }' loops.
13080    
13081    This patch adds cookie handling for generic events. Extensions may register
13082    a cookie handler in addition to the normal event vectors. If an extension
13083    has registered a cookie handler, _all_ generic events for this extensions
13084    must be handled through cookies. Otherwise, the default event handler is
13085    used.
13086    
13087    The cookie handler must return an XGenericEventCookie with a pointer to the
13088    data.The rest of the event (type, serialNumber, etc.) are to be filled as
13089    normal. When a client retrieves such a cookie event, the data is stored in
13090    an internal queue (the 'cookiejar'). This data is freed on the next call to
13091    XNextEvent().
13092    
13093    New extension interfaces:
13094        XESetWireToEventCookie(display, extension_number, cookie_handler)
13095    
13096    Where cookie_handler must set cookie->data. The data pointer is of arbitray
13097    size and type but must be a single memory block. This memory block
13098    represents the actual extension's event.
13099    
13100    New client interfaces:
13101        XGetEventData(display, *cookie);
13102        XFreeEventData(display, *cookie);
13103    
13104    If the client needs the actual event data, it must call XGetEventData() with
13105    the cookie. This returns the data pointer (and removes it from the cookie
13106    jar) and the client is then responsible for freeing the event with
13107    XFreeEventData(). It is safe to call either function with a non-cookie
13108    event. Events unclaimed or not handled by the XGetEventData() are cleaned up
13109    automatically.
13110    
13111    Example client code:
13112        XEvent event;
13113        XGenericEventCookie *cookie = &ev;
13114    
13115        XNextEvent(display, &event);
13116        if (XGetEventData(display, cookie)) {
13117            XIEvent *xievent = cookie->data;
13118            ...
13119        } else if (cookie->type == GenericEvent) {
13120            /* handle generic event */
13121        } else {
13122            /* handle extension/core event */
13123        }
13124        XFreeEventData(display, cookie);
13125    
13126    Cookies are not multi-threading safe. Clients that use XGetEventData() must
13127    lock between XNextEvent and XGetEventData to avoid other threads freeing
13128    cookies.
13129    
13130    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
13131
13132commit d7675cb8fa7155e7aff1459636a117a97aa1bf28
13133Author: Peter Hutterer <peter.hutterer@who-t.net>
13134Date:   Mon Jul 6 13:17:35 2009 +1000
13135
13136    Bump to 1.2.99.1
13137    
13138    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
13139
13140commit 75fe48e7a42a685d7098e8d7108b9b956c471563
13141Author: Peter Hutterer <peter.hutterer@who-t.net>
13142Date:   Fri Jul 10 14:07:34 2009 +1000
13143
13144    Bump to 1.2.2
13145    
13146    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
13147
13148commit 5d0fe0e0e92759af5667c5dca2eacb1b6f2d66ea
13149Author: Peter Hutterer <peter.hutterer@who-t.net>
13150Date:   Thu Jul 2 09:10:25 2009 +1000
13151
13152    XMaskEvent/XCheckMaskedEvents must not check for GenericEvents.
13153    
13154    GenericEvent cannot be selected for in the core event masks and they must
13155    thus be treated like extension events.
13156    
13157    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
13158
13159commit c1bf65b89f4e361f6178a73dd5334c8f2bd95732
13160Author: Peter Hutterer <peter.hutterer@who-t.net>
13161Date:   Thu Jul 2 09:06:05 2009 +1000
13162
13163    XWindowEvent/XCheckWindowEvent must not return GenericEvents.
13164    
13165    GenericEvents have no fixed position for the window, so they must be treated
13166    like extension events.
13167    
13168    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
13169
13170commit 38f9054554d63525d2dd51aafb5eb57821158ab9
13171Author: Alan Coopersmith <alan.coopersmith@sun.com>
13172Date:   Mon Jun 15 19:00:43 2009 -0700
13173
13174    Drop ancient USG SysV #ifdefs
13175    
13176    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
13177
13178commit 7bfe1323f16a1a69cc474659f7ac0c2570b1cf42
13179Author: Adam Jackson <ajax@redhat.com>
13180Date:   Fri Jun 12 12:44:01 2009 -0400
13181
13182    Remove X_NOT_STDC_ENV usage. (#6527)
13183
13184commit 6dd74d7fb414ca1e99bae5c13e333961f396eb36
13185Author: Julien Cristau <jcristau@debian.org>
13186Date:   Fri May 29 11:18:11 2009 +0200
13187
13188    nls: remove more duplicated aliases
13189    
13190    Signed-off-by: Julien Cristau <jcristau@debian.org>
13191
13192commit e4b0899f516da224010e68bd2d953d5293d94993
13193Author: parag <parag@rawhideTM.pnq.redhat.com>
13194Date:   Thu May 28 11:29:35 2009 +0530
13195
13196    nls: Add pa_PK locale information and make pa_IN as default for pa.
13197    
13198    X.Org bug#21954 <http://bugs.freedesktop.org/show_bug.cgi?id=21954>
13199    
13200    [jcristau: removed the pa_PK.UTF-8 alias to itself]
13201    
13202    Signed-off-by: parag <pnemade@redhat.com>
13203    Signed-off-by: Julien Cristau <jcristau@debian.org>
13204
13205commit f0ea1f6d51145592f8617854f9320ec5dbff3299
13206Author: Julien Cristau <jcristau@debian.org>
13207Date:   Fri May 29 10:58:20 2009 +0200
13208
13209    nls: remove broken sd_IN.UTF-8 alias
13210    
13211    Signed-off-by: Julien Cristau <jcristau@debian.org>
13212
13213commit e29e010dabdb17d6498f2ef1786f69b8830c18ca
13214Author: Julien Cristau <jcristau@debian.org>
13215Date:   Fri May 29 10:57:43 2009 +0200
13216
13217    nls: remove duplicated en_US* aliases
13218    
13219    Signed-off-by: Julien Cristau <jcristau@debian.org>
13220
13221commit a89a300d87852c84389ad97db66dcb8930cb45dd
13222Author: Caolan McNamara <caolanm@redhat.com>
13223Date:   Thu May 21 18:41:05 2009 +0200
13224
13225    man: missing space in XAllocColor man page
13226    
13227    X.Org bug#21854 <http://bugs.freedesktop.org/show_bug.cgi?id=21854>
13228
13229commit c1c001e36504fd304f76f69bf6af3643225c49ea
13230Author: James Cloos <cloos@jhcloos.com>
13231Date:   Wed May 13 13:03:54 2009 -0400
13232
13233    [nls] Replace remaining UCS Combining Characters in Compose sequences.
13234    
13235    The replaces the instances of keysyms which match <U03[0-6][0-9A-Fa-f]>,
13236    where the keysym is used as a dead_key, with an actual dead_key symbol.
13237    
13238    The only remaining instances of UCS combining characters in the
13239    compose sequences are of U0338 COMBINING LONG SOLIDUS OVERLAY
13240    used as a suffix in Multi_key-initiated sequences to create
13241    mathematics characters such as ∉ U+2209 NOT AN ELEMENT OF
13242    from ∈ U+2208 ELEMENT OF.
13243
13244commit e2b0bad3d3b9e9ca781fc264eb7584afbe2a1a4f
13245Author: James Cloos <cloos@jhcloos.com>
13246Date:   Wed May 13 09:58:59 2009 -0400
13247
13248    [nls] Remove extraneous instances of UCS Combining Characters in Compose sequences.
13249    
13250    This removes those instances of keysyms which match <U03[0-6][0-9A-Fa-f]>,
13251    where the matching keysym is used as a dead_key, and for which alternative
13252    compose sequences exist.
13253
13254commit 79f47e6dff2f0a0b673bbfecc47528edca814baa
13255Author: James Cloos <cloos@jhcloos.com>
13256Date:   Fri May 8 20:11:54 2009 -0400
13257
13258    [nls] Remove combining_ keysyms from the Compose files
13259    
13260    Some of the UTF-8 Compose tables included combining_ keysyms in
13261    the compose sequences as though they were dead symbols.  This
13262    is contrary to how combining characters are used in the UCS.
13263    Therefore, those lines have been removed from the Compose tables.
13264    
13265    There were also some combining_ keysyms as targets.  As those
13266    are not included in x11proto’s keysymdef.h, and as those do
13267    exist there as Uxxxx keysyms, they are replaced with the Uxxxx
13268    keysym names.
13269    
13270    This addresses http://bugzilla.freedesktop.org/show_bug.cgi?id=5107
13271    and is based on attachment 25644 by samuel.thibault@ens-lyon.org.
13272    
13273    Signed-off-by: James Cloos <cloos@jhcloos.com>
13274
13275commit 4a08a3dfbda497b2be46e3e5fe6b777815ea27f9
13276Author: parag <pnemade@redhat.com>
13277Date:   Tue May 5 16:50:47 2009 +0530
13278
13279    libX11: Add new Indic language information to nls directory files. #21560
13280    
13281    Signed-off-by: parag <pnemade@redhat.com>
13282
13283commit aaf81096eb44b4c2812108721ba02738391884da
13284Author: Alan Coopersmith <alan.coopersmith@sun.com>
13285Date:   Sat May 2 01:38:14 2009 -0700
13286
13287    Correct return type in XkbGetKeyboard man page
13288    
13289    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
13290
13291commit 2bef065b70f70af520b5de8fb23529254d15f003
13292Author: Christoph Pfister <christophpfister@gmail.com>
13293Date:   Mon Apr 27 22:32:57 2009 -0700
13294
13295    X.Org Bug #21117: crash in get_rotate_fontname (omGeneric.c)
13296    
13297    http://bugs.freedesktop.org/show_bug.cgi?id=21117
13298    
13299    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
13300
13301commit 5c1cde105db10df24d3c532f032cbc59050c7313
13302Author: Alan Coopersmith <alan.coopersmith@sun.com>
13303Date:   Fri Apr 17 22:14:47 2009 -0700
13304
13305    Use AC_USE_SYSTEM_EXTENSIONS instead of hand-rolled check for _GNU_SOURCE
13306    
13307    Raises minimum autoconf version required to 2.60
13308    
13309    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
13310
13311commit 84b7a91ef84f345384e4b0e13907385ca3ca3255
13312Author: Julien Cristau <jcristau@debian.org>
13313Date:   Tue Apr 14 15:59:57 2009 +0100
13314
13315    Fix fi_FI.UTF-8, again
13316    
13317    Commit 97fc6babd4ccaf300e25708868aa2a738893dc30 "NLS: Add UTF-8 compose
13318    file for Finnish" made fi_FI.UTF-8 use a broken empty XLC_LOCALE file.
13319    This reverts it back to using the en_US.UTF-8 one.
13320
13321commit 128daff4422f973ea40dd1e31b2db230e643549e
13322Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
13323Date:   Thu Apr 9 12:01:07 2009 +0700
13324
13325    Thai XIM not retrieve MB surrounding on UTF-8 LC
13326    
13327    On th_TH.UTF-8 locale, Thai XIM rejects all combining characters for GTK+ apps
13328    that use X Input Method.
13329    
13330    This is because GTK+ imxim immodule passes surrounding text in locale encoding,
13331    which is UTF-8 for UTF-8 locales. But current Thai XIM in Xlib assumes the
13332    multi-byte StringConversionText response for the StringConversionCallback to
13333    always be TIS-620, by retrieving a single byte and using it as-is.
13334    
13335    If the Thai XIM tries to convert the multi-byte text based on locale codeset
13336    before using it, it will work again.
13337    
13338    X.Org But 12759 <http://bugs.freedesktop.org/show_bug.cgi?id=12759>
13339    
13340    Signed-off-by: Theppitak Karoonboonyanan <thep@linux.thai.net>
13341    Signed-off-by: Julien Cristau <jcristau@debian.org>
13342
13343commit e09f0d227fbf95b6252759af9d426efd57686f9f
13344Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
13345Date:   Thu Apr 9 11:47:55 2009 +0700
13346
13347    Thai XIM not filters when NumLock or CapsLock is on
13348    
13349    The Thai XIM component in libx11 activated on 'th*' locales normally filters
13350    input sequence according to orthographic rules. However, when NumLock/CapsLock
13351    is on, this stops working. All sequences are passed through.
13352    
13353    This is caused by missing masks in _XimThaiFilter(), which normally screens out
13354    certain special keys from entering orthographic rules. Unfortunately, this
13355    included events with NumLock/CapsLock on. Negating the masks from the check
13356    allows the events to be tested by the rules.
13357    
13358    X.Org Bug 12517 <http://bugs.freedesktop.org/show_bug.cgi?id=12517>
13359    
13360    Signed-off-by: Theppitak Karoonboonyanan <thep@linux.thai.net>
13361    Signed-off-by: Julien Cristau <jcristau@debian.org>
13362
13363commit d108d3c706af3502820b5202564488ea19908b77
13364Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
13365Date:   Thu Apr 9 11:25:25 2009 +0700
13366
13367    CharSet-to-CompoundText Conversion Failed for Thai Locales
13368    
13369    SCIM fails to commit Thai input characters on Thai locales, because it commits
13370    string in compound text form, which was converted via
13371    XwcTextListToTextProperty(). But the XLC_LOCALE for th_TH and th_TH.UTF-8
13372    declares cs1's ct_encoding as TIS620-0:GR, which was commented out in
13373    src/xlibi18n/lcCT.c default_ct_data, in favor of ISO8859-11 ESC sequence.
13374    So, declaring cs1 as ISO8859-11:GR instead makes it work.
13375    
13376    Besides, for th_TH.UTF-8, adding cs2 class with ISO10646-1 encoding also adds
13377    support for UTF-8 input.
13378    
13379    And, along discussion in the bug, a similar problem was found for fontset, too,
13380    by causing delays on X apps startups on systems without tis620-0 fonts. This
13381    is normally the case, as mkfontdir and mkfontscale generate iso8859-11 entries
13382    by default for Thai X fonts. So, Thai fontset charset is also patched.
13383    
13384    X.Org Bug 16475 <http://bugs.freedesktop.org/show_bug.cgi?id=16475>
13385    
13386    Signed-off-by: Theppitak Karoonboonyanan <thep@linux.thai.net>
13387    Signed-off-by: Julien Cristau <jcristau@debian.org>
13388
13389commit fd62d3318c846cd43d66a505946e94704d7d83dc
13390Author: Alan Coopersmith <alan.coopersmith@sun.com>
13391Date:   Wed Apr 8 19:42:25 2009 -0700
13392
13393    Revert "Change masculine to ordmasculine in Compose file comments"
13394    
13395    This reverts commit 892b401d5acc055803a20e349ede0d64490f2230.
13396    
13397    As Julien Cristau correctly points out, I misread the Compose file grammar
13398    in modules/im/ximcp/imLcPrs.c, and those are keysyms, not comments, and
13399    the keysym is named XK_masculine in keysymdef.h.   This change is thus a
13400    bug in the Solaris compose tables to be fixed, not an improvement to bring
13401    upstream.
13402
13403commit eac57c77afdf44f50692225b8b0345a7c927bc84
13404Author: Alan Coopersmith <alan.coopersmith@sun.com>
13405Date:   Tue Apr 7 15:38:45 2009 -0700
13406
13407    Version bump: 1.2.1
13408    
13409    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
13410
13411commit bfbec08baec33c5024510b0bcbbee6e4a8473e79
13412Author: Yaakov Selkowitz (Cygwin Ports maintainer) <yselkowitz@users.sourceforge.net>
13413Date:   Tue Apr 7 13:46:57 2009 -0700
13414
13415    Bug 20773: Xcursor dynamic loading on Cygwin
13416    
13417    X.Org Bug #20773 <http://bugs.freedesktop.org/show_bug.cgi?id=20773>
13418    Patch #24096 <http://bugs.freedesktop.org/attachment.cgi?id=24096>
13419    
13420    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
13421
13422commit c8c41614911be4fa222fa22478677d263b41c751
13423Author: Alan Coopersmith <alan.coopersmith@sun.com>
13424Date:   Mon Apr 6 16:52:46 2009 -0700
13425
13426    Fix a several sparse warnings: Using plain integer as NULL pointer
13427    
13428    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
13429
13430commit b336c3d0cc2aefc8926500cff5f76b5a3e803886
13431Author: Alan Coopersmith <alan.coopersmith@sun.com>
13432Date:   Mon Apr 6 16:32:05 2009 -0700
13433
13434    Further ansify prototypes & reduce #ifdefs in locking.c
13435    
13436    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
13437
13438commit 892b401d5acc055803a20e349ede0d64490f2230
13439Author: Alan Coopersmith <alan.coopersmith@sun.com>
13440Date:   Mon Apr 6 10:50:09 2009 -0700
13441
13442    Change masculine to ordmasculine in Compose file comments
13443    
13444    Matches the ordfeminine name used for the matching character,
13445    and the ordmasculine name used in many font descriptions of the glyph.
13446    
13447    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
13448
13449commit e3198b55dc16ec57346cc28aa8d34165ce8cde96
13450Author: Julien Cristau <jcristau@debian.org>
13451Date:   Fri Mar 13 13:52:33 2009 +0100
13452
13453    Add a ru_RU.UTF-8 locale
13454    
13455    Based on patch by Eugene Konev <ejka@imfi.kspu.ru> for X.Org 6.9.0.
13456    
13457    Debian bug#330144 <http://bugs.debian.org/330144>
13458    X.Org bug#15887 <http://bugs.freedesktop.org/show_bug.cgi?id=15887>
13459
13460commit d239de9452691d6f875e6e5ace3d499ec3bf14d9
13461Author: Alan Coopersmith <alan.coopersmith@sun.com>
13462Date:   Wed Mar 25 17:59:09 2009 -0700
13463
13464    Delete some unused "#ifdef notdef" static functions
13465    
13466    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
13467
13468commit 4281892e31058ef3aecc96a5767824b34d88d415
13469Author: Alan Coopersmith <alan.coopersmith@sun.com>
13470Date:   Wed Mar 25 17:52:48 2009 -0700
13471
13472    Remove _XP_PRINT_SERVER_ #ifdefs from Xrm.c
13473    
13474    This copy of Xrm.c is never compiled into the Xprint server any more, so
13475    this old code-sharing #ifdef from the monolith tree isn't needed.
13476    
13477    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
13478
13479commit 27a2e16e8ea11c1604e28645fae4d6ba4371d513
13480Author: Alan Coopersmith <alan.coopersmith@sun.com>
13481Date:   Tue Mar 17 18:38:58 2009 -0700
13482
13483    makekeys: combine malloc(strlen)+strcpy into strdup
13484    
13485    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
13486
13487commit 78a894231ae8ec4959007b6d9b8d2a15d6333a1e
13488Author: Alan Coopersmith <alan.coopersmith@sun.com>
13489Date:   Tue Mar 17 15:42:19 2009 -0700
13490
13491    When makekeys fails to find a good hash, print error instead of divide-by-zero
13492    
13493    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
13494
13495commit c9f84af591d15fbc3fa890bcd955d94f1ff82a0b
13496Author: Alan Coopersmith <alan.coopersmith@sun.com>
13497Date:   Tue Mar 17 14:59:16 2009 -0700
13498
13499    Remove ifdef checks for macII left over from ancient A/UX 3.0 support
13500    
13501    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
13502
13503commit 4b90da0ffb32b791d915ecae11996cc2f2cac9a7
13504Author: Alan Coopersmith <alan.coopersmith@sun.com>
13505Date:   Mon Mar 16 18:37:49 2009 -0700
13506
13507    XErrorDB additions for DRI2 requests
13508    
13509    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
13510
13511commit 273f45af1441be9d2135e4cac8c46ceb33470236
13512Author: Alan Coopersmith <alan.coopersmith@sun.com>
13513Date:   Mon Mar 16 18:35:44 2009 -0700
13514
13515    XErrorDB additions for XInput errors and new XInput 1.5 requests
13516    
13517    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
13518
13519commit 90ef36f6336068183bf9d13ca972202db35b1202
13520Author: Alan Coopersmith <alan.coopersmith@sun.com>
13521Date:   Mon Mar 16 18:23:05 2009 -0700
13522
13523    XErrorDB additions for RANDR 1.3
13524    
13525    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
13526
13527commit 124a4efaccf329f1a44f6b824e70278bdd1cad83
13528Author: Lubos Lunak <l.lunak@suse.cz>
13529Date:   Mon Mar 16 18:03:36 2009 -0700
13530
13531    XErrorDB updates for XTEST, RANDR, DAMAGE extensions
13532    
13533    From http://lists.freedesktop.org/archives/xorg/2008-January/031937.html
13534    
13535    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
13536
13537commit 80811846e37b805fddb37c71589fd5f6f6037b3f
13538Author: Lubos Lunak <l.lunak@suse.cz>
13539Date:   Mon Mar 16 17:57:52 2009 -0700
13540
13541    XGetErrorText() fails for extension error codes equal to the error base
13542    
13543    From http://lists.freedesktop.org/archives/xorg/2008-January/031937.html
13544    
13545    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
13546
13547commit da95ecbbdcacc483cd0b5fd7db1fb2e2543341bd
13548Author: Milos Komarcevic <miloskomarcevic@netscape.net>
13549Date:   Mon Mar 16 17:43:26 2009 -0700
13550
13551    Bug 11456: Serbian locale updates (sr_RS and sr_ME)
13552    
13553    X.Org Bug #11456 <http://bugs.freedesktop.org/show_bug.cgi?id=11456>
13554    Patch #23937 <http://bugs.freedesktop.org/attachment.cgi?id=23937>
13555    
13556    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
13557
13558commit 934a6c0519a9e32505beee55b004f36c2a710217
13559Author: Alan Coopersmith <alan.coopersmith@sun.com>
13560Date:   Mon Mar 16 14:55:22 2009 -0700
13561
13562    Bug 10082: Compose entries for some standard mathematical operators
13563    
13564    X.Org Bug #10082 <http://bugs.freedesktop.org/show_bug.cgi?id=10082>
13565    
13566    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
13567
13568commit abf4da1ed0f735ca7ce471dc13a0ec3677391486
13569Author: Alan Coopersmith <alan.coopersmith@sun.com>
13570Date:   Mon Mar 16 14:27:46 2009 -0700
13571
13572    Bug 14651: We need to add new locale specification for Belarusian Latin locale
13573    
13574    X.Org Bug #14651 <http://bugs.freedesktop.org/show_bug.cgi?id=14651>
13575    
13576    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
13577
13578commit 837703c8651e1321a50147a8311c56e4758ce08a
13579Author: Caolan McNamara <caolanm@redhat.com>
13580Date:   Mon Mar 16 14:15:50 2009 -0700
13581
13582    Bug 20575: man page for XCreatePixmapFromBitmapData doesn't match signature
13583    
13584    X.Org Bug #20575 <http://bugs.freedesktop.org/show_bug.cgi?id=20575>
13585    Patch #23717 <http://bugs.freedesktop.org/attachment.cgi?id=23717>
13586    
13587    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
13588
13589commit 22199018879055d8653e59d8236bef57164fac66
13590Author: Alan Coopersmith <alan.coopersmith@sun.com>
13591Date:   Mon Mar 16 13:28:18 2009 -0700
13592
13593    Correct locale alias for sh_BA.ISO8859-2@bosnia (should be sr, not nr)
13594    
13595    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
13596
13597commit 4c63c27eab2b88f5556dbf72c36321f50f6de35e
13598Author: Alan Coopersmith <alan.coopersmith@sun.com>
13599Date:   Thu Mar 12 18:57:20 2009 -0700
13600
13601    Bug 9953: Please provide locale alias hu_HU.utf8
13602    
13603    X.Org Bug #9953 <http://bugs.freedesktop.org/show_bug.cgi?id=9953>
13604    Debian Bug #407573 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=407573>
13605    
13606    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
13607
13608commit 501f4e0ada1690783ada05ad412e4b191ad55336
13609Author: Alan Coopersmith <alan.coopersmith@sun.com>
13610Date:   Thu Mar 12 17:38:21 2009 -0700
13611
13612    Bug 6820: Xlib shouldn't handle EAGAIN as a fatal IO error
13613    
13614    X.Org Bug #6820 <http://bugs.freedesktop.org/show_bug.cgi?id=6820>
13615    Patch #17637 <http://bugs.freedesktop.org/attachment.cgi?id=17637>
13616    
13617    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
13618
13619commit 7b9c543e7210c7da204871c31a160e79d3a949b6
13620Author: Paul Bender <pebender@gmail.com>
13621Date:   Thu Mar 12 17:11:42 2009 -0700
13622
13623    Bug 15664: xau & xdmcp not needed in x11.pc dependencies when built with xcb
13624    
13625    X.Org bug #15664 <https://bugs.freedesktop.org/show_bug.cgi?id=15664>
13626    Patch #16128 <https://bugs.freedesktop.org/attachment.cgi?id=16128>
13627    
13628    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
13629
13630commit fd2cf1ef66c2aff3dc758956c9e9e567b9892c06
13631Author: Xue Wei <Wei.Xue@Sun.COM>
13632Date:   Wed Mar 4 19:32:29 2009 -0800
13633
13634    Add UTF-8 locale entries for es_US, kk_KZ, mt_MT, and sh_BA
13635    
13636    Sun bug 6809309 Add new utf8 locales supported by Xlib
13637    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6809309>
13638    
13639    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
13640
13641commit cb70c9bc43267577859a3674ca9de9be396ba69e
13642Author: Alan Coopersmith <alan.coopersmith@sun.com>
13643Date:   Mon Feb 23 19:29:15 2009 -0800
13644
13645    Add --with-locale-lib-dir configure option to set locale lib install dir
13646    
13647    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
13648
13649commit ccd3584f0330db8dac90b9313c33ab8b5b2ec6af
13650Author: Alan Coopersmith <alan.coopersmith@sun.com>
13651Date:   Mon Feb 23 18:33:51 2009 -0800
13652
13653    Incorporate more locale names/aliases from Solaris libX11
13654    
13655    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
13656
13657commit 83ce4daefdf544f801c7d666c89162690a36ce41
13658Author: Alan Coopersmith <alan.coopersmith@sun.com>
13659Date:   Mon Feb 23 18:32:34 2009 -0800
13660
13661    Incorporate char range comments from Solaris version of ksc5601.h
13662    
13663    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
13664
13665commit ee279c84e34f1ebb8a6ff17d54ee146d11e29764
13666Author: Chris Ball <cjb@laptop.org>
13667Date:   Sat Feb 21 14:48:42 2009 -0500
13668
13669    Fix fi_FI locale install directory.
13670    
13671    fi_FI was setting "x11thislocaledir" to en_US, with the result that its
13672    locale data was written in that locale dir.
13673    
13674    Signed-off-by: Chris Ball <cjb@laptop.org>
13675
13676commit da6bbca07c796c69172a649405474f03bee66754
13677Author: Emilio Jesús Gallego Arias  <egallego@babel.ls.fi.upm.es>
13678Date:   Sat Feb 21 20:17:23 2009 +0100
13679
13680    xcb_io: Avoid datatype overflow on AMD64 and friends.
13681
13682commit 4ef6491afa69e8441caee7bbebc583e6e796275e
13683Author: Chris Ball <cjb@laptop.org>
13684Date:   Sat Feb 21 12:51:03 2009 -0500
13685
13686    Build fix for fi_FI.
13687    
13688    Commit 642c4e928e770e0.. instructs make to enter nls/fi_FI, but no
13689    Makefile is written there by configure.
13690    
13691    Signed-off-by: Chris Ball <cjb@laptop.org>
13692
13693commit 642c4e928e770e012379539a6ce09e11c02f09a6
13694Author: Julien Cristau <jcristau@debian.org>
13695Date:   Sat Feb 21 03:12:05 2009 +0100
13696
13697    nls: actually use the fi_FI.UTF-8 files
13698    
13699    The subdir wasn't added to nls/Makefile.am
13700
13701commit 9bad8309ef289bb943651abf6967b24fa2252aac
13702Author: Alan Coopersmith <alan.coopersmith@sun.com>
13703Date:   Fri Feb 20 14:45:54 2009 -0800
13704
13705    flags member of Display structure needs to be marked volatile
13706    
13707    Since the Xlib multithreaded code checks the flags variable in _XFlushInt
13708    to see if the other threads are done yet, it has to be marked volatile so
13709    the compiler doesn't optimize out re-loading it on each trip through the
13710    while loop and end up in an impossible-to-exit infinite loop of CPU chewing.
13711    
13712    Part of fix for Sun bug 6409332: infinite loop in XFlushInt() on x86/32-bit
13713    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6409332>
13714    
13715    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
13716
13717commit ef5c446395aa30d7b1096a112e241a81c5b358e7
13718Author: Xue Wei <Wei.Xue@Sun.COM>
13719Date:   Fri Feb 20 15:12:35 2009 -0800
13720
13721    Add nn_NO.UTF-8 to compose.dir.pre for Norwegian Nynorsk
13722    
13723    Sun bug 6691236: Swing applications dump core when locale is nn_NO.UTF-8
13724    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6691236>
13725    
13726    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
13727
13728commit 3822f2654e9630167f0c6cae317b472c09771672
13729Author: Xue Wei <Wei.Xue@Sun.COM>
13730Date:   Fri Feb 20 15:03:51 2009 -0800
13731
13732    Add locale aliases for no_NO & sh_BA locale variants
13733    
13734    Fixes Sun bug id 6691219: xterm refuses to start in some locales
13735    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6691219>
13736    
13737    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
13738
13739commit 63b6b5b5f522c0a606b32163c643edb64ca91d54
13740Author: Xue Wei <Wei.Xue@Sun.COM>
13741Date:   Fri Feb 20 14:23:11 2009 -0800
13742
13743    Add kk_KZ.UTF-8 to locale.dir.pre for Kazakhstan
13744    
13745    Fixes Sun bug id 6737254 ("kk_KZ.UTF-8 locale: In Java applications
13746     changing keyboard layout with gimlet does not work")
13747    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6737254>
13748    
13749    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
13750
13751commit d497301707962f3b94542e999a36abffcfbd303d
13752Author: Julien Cristau <jcristau@debian.org>
13753Date:   Tue Feb 17 16:09:41 2009 +0100
13754
13755    Bump to 1.2
13756
13757commit 990e71361d1d7b79bf07b1dc93e4e905d4f1bdaf
13758Author: Julien Cristau <jcristau@debian.org>
13759Date:   Tue Feb 17 15:23:40 2009 +0100
13760
13761    Check Xmalloc return value in _XConnectXCB
13762    
13763    X.Org bug#19137 <http://bugs.freedesktop.org/show_bug.cgi?id=19137>
13764    
13765    Signed-off-by: Julien Cristau <jcristau@debian.org>
13766
13767commit b4b5893f69419ff577bbaa4d18f78e4ffd729a0c
13768Author: James Cloos <cloos@jhcloos.com>
13769Date:   Sat Feb 14 12:35:56 2009 -0500
13770
13771    dolt: allow older versions of bash to compile the library
13772    
13773    Cf xserver commit 7be6520d and bugzilla #19031.
13774
13775commit 20982d6866e24453642b0b592fa0f13a88aa747c
13776Author: Will Thompson <will@willthompson.co.uk>
13777Date:   Thu Feb 5 02:53:06 2009 +1100
13778
13779    NLS: Compose: Non-aliasing CCCP
13780    
13781    Oops, cccp aliased cc for question mark.  Upper-case it to avoid fail.
13782    
13783    Signed-off-by: Will Thompson <will@willthompson.co.uk>
13784    Signed-off-by: Daniel Stone <daniel@fooishbar.org> (sorry)
13785
13786commit f052665394f3f0319e93a98f1d5d4ea287e1dd07
13787Author: Will Thompson <will@willthompson.co.uk>
13788Date:   Wed Feb 4 14:51:11 2009 +0000
13789
13790    Add two essential compose sequences
13791    
13792    Signed-off-by: Will Thompson <will@willthompson.co.uk>
13793    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
13794
13795commit d7bea6fa909bf34c43efe0ca8239ab0f9f3a415f
13796Author: Alan Coopersmith <alan.coopersmith@sun.com>
13797Date:   Mon Feb 2 20:34:31 2009 -0800
13798
13799    Add README with pointers to mailing list, bugzilla & git repos
13800    
13801    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
13802
13803commit f682c27e93512773122887d2cbabb1657af45d2e
13804Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
13805Date:   Mon Feb 2 16:36:39 2009 -0200
13806
13807    Check if a function argument is NULL.
13808    
13809      This was an addition to patch (also by me)
13810    https://bugs.freedesktop.org/attachment.cgi?id=14660
13811    that was not added when rediscovering/correcting the problem.
13812
13813commit 427e9d45d424b84efd9fc499aebf8d72392844c5
13814Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
13815Date:   Thu Feb 28 15:58:12 2008 -0300
13816
13817    Allow multiple inclusions of cursorfont.h, cosmetic patch.
13818
13819commit b91524a53e691f6a5d278fd8972b48a14ebeedeb
13820Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
13821Date:   Thu Feb 28 15:54:43 2008 -0300
13822
13823    Don't add prototypes for functions that don't exist.
13824    
13825    Note that a full review was not done, only for functions that receive
13826    char/short arguments, or one of it's parameters is a function pointer
13827    that requires char/short arguments.
13828
13829commit 537eb52fe266ac439c4b383bb04a70017b709911
13830Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
13831Date:   Thu Feb 28 15:50:27 2008 -0300
13832
13833    WORD64 compile fix. This bug catched on a overview of the code.
13834    
13835    The code is wrong since the first git revision, so it seens that it has
13836    not been compiled with WORD64 for quite some time, there is also another
13837    interesting code in xkb/XKBRdBuf.c:
13838      <hash>ifdef WORD64
13839      _XkbWriteCopyData32 Not Implemented Yet for sizeof(int)==8
13840      <hash>endif
13841    and possibly there are other similar problems.
13842
13843commit ffd0300fb74c6183208ae599133f2ded09e08d97
13844Author: Brian Rogers <brian@xyzw.org>
13845Date:   Sat Jan 31 10:37:51 2009 -0800
13846
13847    Initialize event_notify after allocating the memory for it.
13848    
13849    An uninitialized or otherwise invalid condition variable can apparently
13850    cause a hang in pthread_cond_broadcast. Ekiga, openoffice, and xine
13851    at least are freezing as a result of event_notify never being initialized.
13852    
13853    Signed-off-by: Brian Rogers <brian@xyzw.org>
13854    Signed-off-by: Bart Massey <bart@cs.pdx.edu>
13855
13856commit 97fc6babd4ccaf300e25708868aa2a738893dc30
13857Author: James Cloos <cloos@jhcloos.com>
13858Date:   Thu Jan 29 20:10:41 2009 -0500
13859
13860    NLS: Add UTF-8 compose file for Finnish
13861    
13862    From bug report:
13863    
13864      https://bugs.freedesktop.org/show_bug.cgi?id=18747
13865
13866commit 1bd2966ed88f83479a066c6ca7da23a515979550
13867Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
13868Date:   Thu Jan 29 20:25:15 2009 -0200
13869
13870    patches to avoid gcc warnings for libX11 (#4)
13871    
13872    Author is Peter Breitenlohner <peb@mppmu.mpg.de>
13873    Bug #17946, attachment #19443
13874    
13875    This patch avoids the gcc warning
13876            ../../../../libX11-1.1.5/modules/im/ximcp/imDefLkup.c:223: warning: passing arg 1 of `_XimProcSyncReply' from incompatible pointer type
13877    (same as already done at other places)
13878    
13879    BTW: what is the difference between XIM (the type of ic->core.im)
13880    and Xim ?
13881
13882commit f16dd6af3eb17a25b8ee03d6617a7acc6e919fb0
13883Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
13884Date:   Thu Jan 29 20:22:21 2009 -0200
13885
13886    patches to avoid gcc warnings for libX11 (#3)
13887    
13888    Author is Peter Breitenlohner <peb@mppmu.mpg.de>
13889    Bug #17946, attachment #19441
13890    
13891    This patch avoids the two gcc warnings
13892            ../../../../libX11-1.1.5/modules/im/ximcp/imRm.c:413: warning: assignment discards qualifiers from pointer target type
13893            ../../../../libX11-1.1.5/modules/im/ximcp/imRm.c:450: warning: assignment discards qualifiers from pointer target type
13894    
13895    Note, that this as a rather crude fix of the problem (and it is really a
13896    shame to cast name_table to non-const).
13897    
13898    The right solution would be to declare XIMValuesList.supported_values
13899    (in include/X11/Xlib.h) as 'const char **' (or '_Xconst char **').
13900    This will, however, require extensive modifications in various places.
13901
13902commit cce75c5dce73fe1f8626ed9e6798138ada09a860
13903Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
13904Date:   Thu Jan 29 20:20:18 2009 -0200
13905
13906    patches to avoid gcc warnings for libX11 (#2)
13907    
13908    Author is Peter Breitenlohner <peb@mppmu.mpg.de>
13909    Bug #17946, attachment #19440
13910    
13911    Avoid a preprocessor message
13912            <stdin>:194: warning: no newline at end of file
13913    
13914    Two more such warnings (in XkbSAGroup.man and XkbSASetGroup.man)
13915    seem to be caused by a truncated (or otherwise incomplete)
13916    manpage.
13917
13918commit 692baebcc50f1e952800bfe4e2e6bc42f54e62fe
13919Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
13920Date:   Thu Jan 29 20:12:24 2009 -0200
13921
13922    patches to avoid gcc warnings for libX11 (#1)
13923    
13924    Author is Peter Breitenlohner <peb@mppmu.mpg.de>
13925    Bug #17946, attachment #19439
13926    
13927    Define as 1 (one) as done by autoconf and the command line
13928    option, e.g. -DX11_t, not as empty.
13929    
13930    This avoids the gcc (3.4.6) warnings:
13931            ../../libX11-1.1.5/src/x11_trans.c:27:1: warning: "X11_t" redefined
13932            <command line>:7:1: warning: this is the location of the previous definition
13933            ../../libX11-1.1.5/src/x11_trans.c:28:1: warning: "TRANS_CLIENT" redefined
13934            <command line>:8:1: warning: this is the location of the previous definition
13935    
13936    Similarly, follow the autoconf convention to define XTHREADS
13937    and XUSE_MTSAFE_API as one.
13938    
13939    This avoids analogous warnings when compiling libXcomposite,
13940    libXcursor, and libXdamage.
13941    
13942    No reason to AC_SUBST XTHREADS and XUSE_MTSAFE_API (unused).
13943
13944commit a1977883c9f5ef0e515569d6e2ebccb07411f98c
13945Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
13946Date:   Thu Jan 29 15:01:06 2009 -0200
13947
13948    Janitor: Correct some gcc/sparse warnings.
13949    
13950      Most remaining warnings are about XIM/Xim to/from conversion
13951    and discarding const from pointers.
13952
13953commit 8ba0ca32a63c532f128bdca7f1bf982cab8e12be
13954Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
13955Date:   Wed Jan 28 20:31:42 2009 -0200
13956
13957    Janitor: ansification, make distcheck, compiler warnings.
13958    
13959      Only convert to use "ansi prototypes" the functions warned from
13960    compilation with "./autogen.sh --prefix=/usr", on a Linux computer.
13961    
13962      Also, only address "trivial" compiler warning fixes in this commit.
13963    
13964      The new .gitignore is the output of a command like:
13965    % find . -name .gitignore -exec cat {} \; | sort | uniq
13966    and only the toplevel .gitignore file was kept.
13967
13968commit 091c1624fd2f9d933329d6152e4ecd865aa7903a
13969Author: Peter Hutterer <peter.hutterer@who-t.net>
13970Date:   Tue Jan 13 12:05:54 2009 +1000
13971
13972    Fix wrong implies symbol.
13973    
13974    Quote Simos Xenitellis:
13975    > I checked the gtk+ commit logs that go back to 2000, and I see that still it
13976    > was
13977    >
13978    >   { 0x08ce, 0x21d2 }, /*                     implies ⇒ RIGHTWARDS
13979    > DOUBLE ARROW */
13980    >
13981    > In XFree86, it appears there was an error when they converted the
13982    > original table to
13983    > http://cvsweb.xfree86.org/cvsweb/xc/lib/X11/imKStoUCS.c?rev=1.1&content-type=text/vnd.viewcvs-markup
13984    > and the problem still shows up there (November 2000).
13985    
13986    http://lists.freedesktop.org/archives/xorg/2008-October/039743.html
13987    
13988    Reported by Erik Streb del Toro.
13989
13990commit e32521f19e0b07649b7e3a03d56a2bd556b138fb
13991Author: James Cloos <cloos@jhcloos.com>
13992Date:   Sun Dec 7 04:13:34 2008 -0500
13993
13994    [i18n] s/U00DC/Udiaeresis/g
13995    
13996    The xkeyboard-config keyboards generate the symbol Udiaeresis, not
13997    U00DC.  Make sure the relevant Compose sequences expect the symbol
13998    which the keyboards actually send.
13999
14000commit b7502abfe22f8dc009b21cda1172af221d8f9f32
14001Author: James Cloos <cloos@jhcloos.com>
14002Date:   Sun Dec 7 04:09:46 2008 -0500
14003
14004    Revert "For nls/*.pre, allow people to comment lines by starting them with '##'."
14005    
14006    As of commit c9d20e3 the initial double-hashes are replaced with proper C comments.
14007    
14008    This reverts commit a225a0be48770beb689d5ac5da97073634f7deab.
14009
14010commit c9d20e3f697c9cfae5511412023362c1db7449b1
14011Author: James Cloos <cloos@jhcloos.com>
14012Date:   Sun Dec 7 04:08:23 2008 -0500
14013
14014    Use C comments rather than initial doubled hashes to exclude lines from .pre files
14015
14016commit c34ce54d9eac2d8052dc5f205a2ab09866ef5d25
14017Author: vehemens <vehemens@verizon.net>
14018Date:   Sun Dec 7 01:18:26 2008 -0500
14019
14020    [i18n] Distribute new headers which were added for gb18030 support.
14021    
14022    big5hkscs.h and gbk.h, added in 67e34d7a, need to be in SOURCES to
14023    make it into the tar.
14024    
14025    Completes 67e34d7a82ccd31f1208c0c43a6d58c3c05bf51.
14026    
14027    Signed-off-by: James Cloos <cloos@jhcloos.com>
14028
14029commit 418819558d2c60e58b4e3022ce0fadf2143488ac
14030Author: Stefan Dirsch <sndirsch@suse.de>
14031Date:   Sat Nov 22 22:01:07 2008 +0100
14032
14033    Fixed strange font mixups, when fontsets are still used (#2676, Novell #74299).
14034
14035commit 67e34d7a82ccd31f1208c0c43a6d58c3c05bf51a
14036Author: Stefan Dirsch <sndirsch@suse.de>
14037Date:   Sat Nov 22 19:40:54 2008 +0100
14038
14039    Added remaining xlib patch required for gb18030 support (#1573).
14040
14041commit 55782a0a1fe1560f1a9c0ed78bc7f2575c15abcf
14042Author: Stefan Dirsch <sndirsch@suse.de>
14043Date:   Sat Nov 22 17:53:06 2008 +0100
14044
14045    Added remaining hunk of Egbert's patch to prevent XIM deadlocks (#1182).
14046
14047commit c859446c500c883a67f7a86cab1a44844e24dade
14048Author: Ken Thomases <ken@codeweavers.com>
14049Date:   Fri Nov 21 13:58:10 2008 -0500
14050
14051    [i18n] Provide translation from XK_partialderivative (8ef) to Unicode (U2202)
14052    
14053    Signed-off-by: James Cloos <cloos@jhcloos.com>
14054
14055commit 5e68e94d852c730ef9264fc0d8ca61a2ffe98b53
14056Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
14057Date:   Mon Nov 17 20:47:26 2008 -0800
14058
14059    Force local transport when using the launchd socket.
14060    
14061    Fixes a regression due to
14062    bf53987eaf0fbd7f7627783fc39e7ee99e8361ba
14063
14064commit 7aca689ce14d314b5c8c72c8df76f53f76ab467c
14065Author: Peter Hutterer <peter.hutterer@redhat.com>
14066Date:   Fri Nov 14 10:32:50 2008 +1000
14067
14068    Add XF86Suspend, XF86Hibernate to KeysymDB.
14069
14070commit d16b11f25f8265e651def8d80bcd430c0448e664
14071Author: James Cloos <cloos@jhcloos.com>
14072Date:   Tue Nov 11 19:43:39 2008 -0500
14073
14074    [nls] Annotate the Bépo compose sequences
14075    
14076    Add comments with the UCS names.
14077    Add utf-8 strings for each result.
14078    Format for easy reading.
14079
14080commit 730298464240be6f65b32416b3f9b20062c61825
14081Author: James Cloos <cloos@jhcloos.com>
14082Date:   Tue Nov 11 16:41:34 2008 -0500
14083
14084    [nls]  Add some UTF-8 Compose sequences
14085    
14086    As requested for the Bépo keyboard layout (http://clavier-dvorak.org/wiki/).
14087    
14088    Cf. bugs:
14089    
14090      https://bugs.freedesktop.org/show_bug.cgi?id=17821
14091      https://bugs.freedesktop.org/show_bug.cgi?id=17822
14092
14093commit ad6008a0c92733826983eb93f063d3d6276007d8
14094Author: Colin Harrison <colin.harrison@virgin.net>
14095Date:   Thu Nov 6 17:48:21 2008 -0500
14096
14097    Fix copy/paste typo in imLcPrs
14098    
14099    Signed-off-by: James Cloos <cloos@jhcloos.com>
14100
14101commit 0f0168ad18f8a280fc5a689eb02cfaa62d022ea6
14102Author: Adam Jackson <ajax@redhat.com>
14103Date:   Thu Nov 6 14:54:13 2008 -0500
14104
14105    Fix leak in _XimXGetReadData
14106    
14107    Spotted by Denis Dzyubenko
14108
14109commit ae23c25b9349ab1d7ff81f3075c000cf35fc442b
14110Author: Julien Cristau <jcristau@debian.org>
14111Date:   Wed Nov 5 22:09:37 2008 +0100
14112
14113    Bump to 1.1.99.2
14114
14115commit d31e644c65c52828ea3e7abd94a8cf9aee12265c
14116Author: Julien Cristau <jcristau@debian.org>
14117Date:   Wed Nov 5 21:33:13 2008 +0100
14118
14119    Fix distcheck
14120
14121commit e6a7b70cdb2ae8b713012839a0a0bbb93817b8ef
14122Author: Jamey Sharp <jamey@minilop.net>
14123Date:   Wed Oct 29 14:00:33 2008 -0700
14124
14125    Support multiple independent internal sync handlers
14126    
14127    Xlib has several independent tasks that need to be performed with the
14128    display unlocked. It does this by replacing the existing sync handler with
14129    one of a variety of internal sync handlers. However, if multiple internal
14130    sync handlers need to run, then the last one registering wins and
14131    previously registered internal sync handlers are never invoked. This
14132    manifested as a bug with DRI applications on Xlib/XCB as that requires
14133    both an XID handler after every XID allocation, and the periodic sequence
14134    number handler. The XID handler would win, and the sequence number handler
14135    would never be invoked.
14136    
14137    Fix this by unifying the internal sync handler mechanism into a single
14138    function that calls all of the known internal sync handlers. They all need
14139    to deal with being called when not strictly necessary now.
14140    
14141    Signed-off-by: Keith Packard <keithp@keithp.com>
14142    Signed-off-by: Jamey Sharp <jamey@minilop.net>
14143    Signed-off-by: Josh Triplett <josh@freedesktop.org>
14144
14145commit 2dbaaab9c4e3894b33dcae850551dee5473431d5
14146Author: Keith Packard <keithp@keithp.com>
14147Date:   Sat Oct 11 21:44:21 2008 -0700
14148
14149    Ensure that _XReadEvents always leaves an event in the queue on return
14150    
14151    XNextEvent assumes that the event queue will be non-empty on return from
14152    _XReadEvents, but with multiple event readers running, the previous change
14153    could leave the queue empty on return from process_responses. Re-invoke
14154    process_responses until the queue is non-empty.
14155    
14156    Signed-off-by: Keith Packard <keithp@keithp.com>
14157
14158commit bedfe68259037c5564fe52758c92b9c97729640a
14159Author: Keith Packard <keithp@keithp.com>
14160Date:   Sat Oct 11 21:10:23 2008 -0700
14161
14162    Permit only one Xlib thread to block waiting for events
14163    
14164    As Xlib queues events internally, we must prevent multiple Xlib threads from
14165    entering XCB to wait for an event in case the queued event is to be
14166    delivered to the thread which didn't manage to read it. In other words, let
14167    only one Xlib thread into xcb_wait_for_event at a time.
14168    
14169    Jamey Sharp looked over my shoulder while making this fix and, while hating
14170    my whitespace conventions, appears happy enough with the actual code.
14171    
14172    Signed-off-by: Keith Packard <keithp@keithp.com>
14173
14174commit cc19618d2eb3ed92a0b574aee26a7da8b4aed5d2
14175Author: Jamey Sharp <jamey@minilop.net>
14176Date:   Sun Mar 23 16:33:50 2008 -0700
14177
14178    Fix XAllocID race: hold the user display lock until we have a new XID.
14179    
14180    Xlib built --without-xcb is also vulnerable to this race, and a similar
14181    fix might work there too.
14182    
14183    Also, use an XID that's truly invalid while waiting for the next XID to be
14184    requested.
14185
14186commit 54e5c0941b0ded1628d559a9f0a3451ea96c299b
14187Author: Josh Triplett <josh@freedesktop.org>
14188Date:   Sat Mar 15 17:22:23 2008 -0700
14189
14190    Use XCB's new socket handoff mechanism rather than the old XCB Xlib lock.
14191    
14192    Previously, Xlib/XCB used XCB's Xlib lock to prevent XCB from sending
14193    requests between calls to Xlib's LockDisplay and UnlockDisplay macros.
14194    Xlib/XCB then sent all of its requests using XCB's xcb_send_request, and
14195    had to flush its requests when unlocking the display.
14196    
14197    XCB 1.2 adds a new socket handoff mechanism, xcb_take_socket.  Replace
14198    much of the existing Xlib/XCB implementation with the use of
14199    xcb_take_socket to take ownership of the write side of the X connection
14200    socket, and a return_socket callback which writes any outstanding requests
14201    with xcb_writev.  This approach allows Xlib/XCB to use the same buffering
14202    as traditional Xlib did.  In particular, programs which use Xlib/XCB and
14203    never make XCB calls will never need to hand the socket back to XCB, and
14204    vice versa.
14205    
14206    This allows us to discard large quantities of synchronization code from
14207    Xlib/XCB, together with the synchronization bugs present in that code.
14208    Several test cases which previously failed now work perfectly, including
14209    multi-threaded ico.  In addition, the infamous locking correctness
14210    assertions, triggered when double-locking or when unlocking without a
14211    previous lock, no longer exist, because Xlib/XCB no longer has any reason
14212    to care more about application locking than traditional Xlib does.
14213    
14214    Furthermore, the handoff approach provides great improvements to
14215    performance.  Results from x11perf's XNoOp test, which represented the
14216    worst case for the lock-based Xlib/XCB:
14217    
14218    Traditional Xlib:       average 19100000/sec
14219    Lock-based Xlib/XCB:    average  3350000/sec
14220    Handoff-based Xlib/XCB: average 17400000/sec
14221    
14222    Thus, for no-ops, the handoff mechanism provides more than a 4x speedup to
14223    Xlib/XCB, bringing Xlib/XCB within 9% of traditional Xlib no-op
14224    performance.  Of course, real-world workloads do not use no-op, so your
14225    mileage may vary.  In particular, since no-ops represent the worst case,
14226    we expect real workloads to more closely match the performance of
14227    traditional Xlib.
14228    
14229    While removing synchronization code, we changed _XReply to not drop any
14230    locks when calling xcb_wait_for_reply; previously, we had to carefully
14231    avoid a deadlock between the Display lock and the XCB Xlib lock. Holding
14232    the locks reduces implementation complexity and should not impact
14233    applications.
14234    
14235    Commit by Jamey Sharp and Josh Triplett.
14236    XCB's handoff mechanism inspired by Keith Packard.
14237
14238commit 5a19ac473f7a8046b0421fbd5d53da160c22ed75
14239Author: Chris Ball <cjb@laptop.org>
14240Date:   Mon Nov 3 22:57:29 2008 -0500
14241
14242    Remove configure check for xcb-xlib.
14243    
14244    xcb-xlib has been intentionally removed from libxcb; stop checking for
14245    it at configure-time.
14246
14247commit 34b35dda0bb7f3cf0ad9ab95ad7953d35d24f71b
14248Author: Josh Triplett <josh@freedesktop.org>
14249Date:   Wed Oct 29 14:37:44 2008 -0700
14250
14251    .gitignore: Add dolt files
14252
14253commit 1290cccf2d90083eba852f5f413f7e3dff48ccd2
14254Author: Peter Hutterer <peter.hutterer@redhat.com>
14255Date:   Tue Oct 28 11:56:55 2008 +1030
14256
14257    man: fix formatting error in XkbGetIndicatorState man page.
14258
14259commit b1022fa6d7e97640049e93ffa108083fc8d71b05
14260Author: James Cloos <cloos@jhcloos.com>
14261Date:   Sat Oct 25 09:13:08 2008 -0400
14262
14263    Increase size of working arrays in the makekeys utility program.
14264    
14265    Makekeys is used to create an optimal hash of the keysyms defined
14266    in x11proto’s keysymdef.h.
14267    
14268    The recent addition of new keysyms there has triggered a bug in
14269    makekeys where it tries to use a zero on the rhs of the % (mod)
14270    operator (resulting in a divide by zero error) whenever it fails
14271    to find a solution within its constraints.
14272    
14273    Increasing the size of the arrays allows it to find a solution for
14274    the current set of keysyms.
14275    
14276    Makekeys is only run durring the build process, so this has no impact
14277    on users of libX11, only on the amount of VM needed to build it.
14278    
14279    It still needs a more complete fix, but this allows compiles to
14280    progress until that is completed.
14281
14282commit 3e9afd501e40d76040635bd9a3045bcaf5a03b60
14283Author: James Cloos <cloos@jhcloos.com>
14284Date:   Sat Oct 11 01:03:14 2008 -0400
14285
14286    Dolt-ify
14287    
14288    Add dolt to acinclude.m4 and call it it configure.ac to speed compiles.
14289
14290commit 39c0b266cac8cbc15bf501d7869186862f01d823
14291Author: Peter Hutterer <peter.hutterer@redhat.com>
14292Date:   Wed Oct 15 14:30:20 2008 +1030
14293
14294    Add more keysyms for PS3 BD remotes, Ericsson Phones #16519
14295    
14296    X.Org Bug 16519 <https://bugs.freedesktop.org/show_bug.cgi?id=16519>
14297
14298commit d23aad31338e7d869d878d5aa1b6b91d20287005
14299Author: Peter Hutterer <peter.hutterer@redhat.com>
14300Date:   Mon Oct 13 09:41:59 2008 +1030
14301
14302    Add XF86Battery, XF86Bluetooth, XF86WLAN, XF86UWB to keysymdb.
14303
14304commit 214ea6f5fd6aeaa7303ea4a69f9aedabf219ec4c
14305Author: Peter Hutterer <peter.hutterer@who-t.net>
14306Date:   Thu Jul 24 15:44:26 2008 +0930
14307
14308    xkb: fix out-by-1 error in _XkbWriteKeyExplicit.
14309    
14310    Thanks to Michael Meeks, Novell Bug 369263.
14311    https://bugzilla.novell.com/show_bug.cgi?id=369263
14312
14313commit e7ece39afc8e0adc3b6b1e70b337b98376754462
14314Author: Alan Coopersmith <alan.coopersmith@sun.com>
14315Date:   Tue Oct 7 15:41:38 2008 -0700
14316
14317    Sun bug #6739431: double free in _X11TransConnectDisplay()
14318    
14319    Double free() introduced in bf53987eaf0fbd7f7627783fc39e7ee99e8361ba
14320    After copying original_hostname to phostname, set original_hostname
14321    to NULL, so we don't free the same pointer twice when we free both
14322    original_hostname and phostname.
14323    
14324    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6739431>
14325
14326commit 0877bc916afbd1ff8f1833edc930b765ea783576
14327Author: Daniel Stone <daniel@fooishbar.org>
14328Date:   Tue Sep 23 19:02:02 2008 +0300
14329
14330    configure.ac: Fix CC_FOR_BUILD logic error
14331    
14332    Turns out we were accidentally smashing it so that you couldn't set it
14333    externally at all.  Oops.
14334
14335commit 58bf3aa746908f01c37be7045699e43a4e270944
14336Author: John Tapsell <johnflux@gmail.com>
14337Date:   Tue Sep 23 17:30:13 2008 +0300
14338
14339    Build: Use native compiler for makekeys
14340    
14341    makekeys needs to be run during the build process, as opposed to on the
14342    target, so build it with either of gcc or cc to fix cross-compiling.
14343    This can be overridden by setting $CC_FOR_BUILD.
14344
14345commit 340422a5c7a413faef18666cada27cee14615250
14346Author: Adam Jackson <ajax@redhat.com>
14347Date:   Wed Sep 17 12:54:34 2008 -0400
14348
14349    Fix the previous patch for the BadFont case.
14350
14351commit 2335eafe4b53c27f6f9ee1bab3e1f5842f896428
14352Author: Matthias Clasen <mclasen@redhat.com>
14353Date:   Wed Sep 17 10:43:52 2008 -0400
14354
14355    Bug #17616: Fix an XCB leak when the client has a non-fatal error handler.
14356
14357commit db0b85db29699be6bf7e78dede655d59ba926dfc
14358Author: Rafael Ávila de Espíndola < <rafael.espindola@gmail.com>
14359Date:   Sun Sep 14 19:15:26 2008 -0400
14360
14361    Fix problem with <dead_acute> <c> in pt_BR.UTF-8
14362    
14363    The <dead_acute> <C> and <dead_acute> <c> lines in the pt_BR UTF-8
14364    Compose file show "Ç" and "ç" (c with cedilla accent) (akin to the
14365    ISO 8859 pt_BR Compose file) as the string but specify the keysym
14366    and comment for Ć and ć (c with acute accent).
14367    
14368    This commit normalizes those two lines to match the specified string.
14369    
14370    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=4671
14371    
14372    Signed-off-by: James Cloos <cloos@jhcloos.com>
14373
14374commit b065c011baa69b69e3ea77c30d5e153c0d103e2d
14375Author: Michael Verret <michael.verret@gmail.com>
14376Date:   Mon Sep 8 16:33:35 2008 -0400
14377
14378    Fix documentation typo
14379    
14380    Signed-off-by: James Cloos <cloos@jhcloos.com>
14381
14382commit 4213ea95185377bdd1b51e82933f331fc0f52e5b
14383Author: James Cloos <cloos@jhcloos.com>
14384Date:   Sat Sep 6 04:19:19 2008 -0400
14385
14386    Remove extraneous <angle brackets> from the Ethiopic Compose file.
14387    
14388    The am_ET.UTF-8 Compose file submitted in:
14389    
14390    https://bugs.freedesktop.org/show_bug.cgi?id=11307
14391    
14392    for the OLCP project used incorrect syntax.  (It has angle brackets around the
14393    Uxxxx symbols on the right hand side rather than only on the left hand side).
14394    
14395    This bug is noted in OLPC’s ticket:
14396    
14397    http://dev.laptop.org/ticket/7474
14398    http://dev.laptop.org/attachment/ticket/7474/olpc_7474_dead_vowels_libX11.patch
14399
14400commit 9df84b513dd2b6e65e6d528cfac6d4cc3ea46918
14401Author: James Cloos <cloos@jhcloos.com>
14402Date:   Mon Sep 1 17:49:33 2008 -0400
14403
14404    Complete the set of vulgar fractions
14405    
14406    Unicode 1.1 added thirds, fifths, sixths and eights;
14407    we might as well catch up.
14408    
14409    (Unicode and ISO 10646 have 1/7 (U2150), 1/9 (U2151), 1/10 (U2152)
14410    and 0/3 (U2189) in their pipelines, but those four can be added
14411    here after they are published.)
14412
14413commit a788792e9de95f8db0639557859722a35087481d
14414Author: James Cloos <cloos@jhcloos.com>
14415Date:   Wed Aug 20 15:28:07 2008 -0400
14416
14417    nls (en_US) Re-remove long compositions that override shorter
14418    
14419    As reported in <https://bugs.freedesktop.org/show_bug.cgi?id=17228>:
14420    
14421      Commit a6f4bbf7
14422        nls (en_US): remove long compositions that override shorter [...]
14423        removed some longer compose sequences because there are shorter
14424        ones which take preference over the longer. For example the
14425        sequences:
14426    
14427          <Multi_key> <apostrophe> <comma> <c>   : U1E09 # ḉ
14428          <Multi_key> <apostrophe> <comma> <C>   : U1E08 # Ḉ
14429    
14430        were removed becase there already was:
14431    
14432          <Multi_key> <apostrophe> <comma>       : U201A # ‚
14433    
14434      Then commit 4ba09125
14435        Work on making the en_US and pt_BR UTF-8 Compose as similar as
14436        possible added exactly the same key sequences again. Obviusly
14437        they won't work.
14438
14439commit 55248e5c84c3fd8c349a3bb4cb15a1ec86989d74
14440Author: James Cloos <cloos@jhcloos.com>
14441Date:   Thu Jul 17 21:01:42 2008 -0400
14442
14443    Add more <Multi_key> <cedilla> Compose tuples
14444    
14445    The last commit missed the el_GR UTF-8 Compose.pre as well as
14446    the various ISO 8859 locales which have compose sequences
14447    generating ‘WITH CEDILLA’ characters.
14448    
14449    (Interestingly, some of the 8859 locales already supported
14450    <Multi_key> <cedilla> for some CEDILLA characters, but not
14451    for Ç or ç.)
14452    
14453    This is further work on bug 10397.
14454
14455commit 4ba091255bb953d53078ba5619d6751052c739f7
14456Author: James Cloos <cloos@jhcloos.com>
14457Date:   Thu Jul 17 17:16:50 2008 -0400
14458
14459    Work on making the en_US and pt_BR UTF-8 Compose as similar as possible.
14460    
14461    The eventual goal here is to have a single primary UTF-8 Compose
14462    file which the locale-specific UTF-8 Compose.pre files can #include.
14463
14464commit 254522d3c24e0590732fc03cdd61ff4564819d94
14465Author: James Cloos <cloos@jhcloos.com>
14466Date:   Thu Jul 17 17:13:36 2008 -0400
14467
14468    Add <Multi_key> <cedilla> Compose tuples
14469    
14470    The en_US and pt_BR UTF-8 Compose tables had support for using <comma>
14471    with <Multi_key> to enter CEDILLA characters.  Bug 10397 requests
14472    support for using <cedilla> instead of <comma> in said sequences.
14473    
14474    This commit makes both styles work.
14475
14476commit 7dc907f6032e1d5cbe4da0e414bdf2c569c04b44
14477Author: James Cloos <cloos@jhcloos.com>
14478Date:   Sat Jun 28 15:25:23 2008 -0400
14479
14480    Fix commit 21e464ec682ab23ba20ddf6bd72c6db214cfbe01
14481    
14482    The new block was added twice to the en_US.UTF-8 Compose.pre;
14483    delete the duplicate.
14484
14485commit 596e081b7457dcd1c4ad555ac140e6999239bc0d
14486Author: Peter Hutterer <peter@cs.unisa.edu.au>
14487Date:   Sat Jun 28 20:14:05 2008 +0930
14488
14489    Fix unbalanced parenthesis in XKBlib.h # 16551
14490    
14491    X.Org Bug 16551 <http://bugs.freedesktop.org/show_bug.cgi?id=16551>
14492
14493commit f6af6dd2f76c12b56ec166bb771457b9f08fe246
14494Author: Adam Jackson <ajax@redhat.com>
14495Date:   Tue Jun 24 13:16:53 2008 -0400
14496
14497    Bug #14898: Don't abuse the sprintf() implementation.
14498    
14499    The thing you're printing into should not itself appear in the list of
14500    things to print from, that's bad juju.  Just use strcat().
14501
14502commit 21e464ec682ab23ba20ddf6bd72c6db214cfbe01
14503Author: Khaled Hosny <khaledhosny@eglug.org>
14504Date:   Thu Jun 19 18:26:11 2008 -0400
14505
14506    NLS: Add Arabic Lam-Alef ligature compose sequences (bug #16426)
14507    
14508    Add some Arabic digraphs to utf-8 locales with a Compose.pre
14509    
14510    Signed-off-by: James Cloos <cloos@jhcloos.com>
14511
14512commit bf53987eaf0fbd7f7627783fc39e7ee99e8361ba
14513Author: Alan Coopersmith <alan.coopersmith@sun.com>
14514Date:   Wed Jun 18 20:00:25 2008 -0700
14515
14516    Rework code to choose local connection types and fallback to others
14517    
14518    Adds --with-local-transport-order configure flag if you don't like the
14519    default ordering (which is platform dependent)
14520    
14521    Includes fixes for these Sun/Solaris bug ids:
14522    6678250 X Commands returning incorrect display value unix:0.0 not <system>:0.0
14523    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6678250>
14524    6716481 libX11 should prefer Unix domain sockets over named pipes on Solaris
14525    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6716481>
14526
14527commit cf49e537014c3cb5aaee07e57400933e0bb72b6b
14528Author: Alan Coopersmith <alan.coopersmith@sun.com>
14529Date:   Tue Jun 17 14:41:17 2008 -0700
14530
14531    Strip whitespace from end of lines in source files
14532
14533commit f76fd81dfbbd5cfae75c87ce0511e88e08529cf3
14534Author: Jeff Smith <whydoubt@yahoo.com>
14535Date:   Sun Jun 15 23:52:20 2008 -0500
14536
14537    Fix memory leak in XOpenDisplay
14538    
14539    Signed-off-by: Peter Hutterer <peter@cs.unisa.edu.au>
14540
14541commit fca0b0ba3f72b7284601d4690bba99fc80a92614
14542Author: Jens Herden <jens@khmeros.info>
14543Date:   Tue Jun 10 20:07:30 2008 +0300
14544
14545    NLS: Add Khmer compose sequences (bug #5706)
14546    
14547    Add some Khmer digraphs to all locales with a Compose.pre.
14548
14549commit e54cffb649b1622c17457e470cfab8cc56d38c97
14550Merge: 19802ccd 721b574d
14551Author: Daniel Stone <daniel@fooishbar.org>
14552Date:   Tue Jun 10 20:04:30 2008 +0300
14553
14554    Merge branch 'master' of ssh://git.freedesktop.org/git/xorg/lib/libX11
14555
14556commit 721b574d36f1884c3f1bf7bd933646e2ed6680b5
14557Author: Peter Hutterer <peter@cs.unisa.edu.au>
14558Date:   Thu May 29 10:57:21 2008 +0930
14559
14560    Bump to 1.1.99.1
14561
14562commit 631d32d13247d1cf52c0833d438c5b38b01b17a4
14563Author: Peter Hutterer <peter@cs.unisa.edu.au>
14564Date:   Wed May 28 17:31:59 2008 +0930
14565
14566    Require xproto 7.0.13 and libxcb 1.1.90 (for GenericEvents)
14567
14568commit e9195db7257e418f83707233baeeb84b225caf4f
14569Merge: c34f76f4 a7f85567
14570Author: Peter Hutterer <peter@cs.unisa.edu.au>
14571Date:   Thu May 22 12:14:28 2008 +0930
14572
14573    Merge branch 'master' into xge
14574
14575commit 19802ccd3909145e3ba2f6c073271cb5f3701685
14576Author: Daniel Stone <daniel@fooishbar.org>
14577Date:   Mon May 19 19:22:31 2008 +0300
14578
14579    gitignore: Update with loads more bits from server
14580
14581commit a7f85567a3e850fba0c44571453d2852ab1a09be
14582Author: Adam Jackson <ajax@redhat.com>
14583Date:   Tue May 13 10:28:39 2008 -0400
14584
14585    Bug #15884: Remove useless sleep()'s from the connection code.
14586    
14587    For network transports, there's enough delay in the network layer
14588    already without adding more.  For local transports, just hurry up
14589    and fail if the server isn't there.
14590
14591commit c34f76f475bc632490122e67b5a82575d69d5569
14592Author: Peter Hutterer <peter@cs.unisa.edu.au>
14593Date:   Mon May 12 21:46:24 2008 +0930
14594
14595    Pull down extra bytes when reading a GenericEvent (non-xcb).
14596    
14597    I refuse to take any responsibily for this code. It works, I guess.
14598    But - all the flushing is done somewhere before that, so we might need to
14599    flush here. Under some circumstances anyway. Don't ask me, I'm an optical
14600    illusion.
14601    
14602    Build with xcb as transport layer highly recommended.
14603
14604commit c9b2ff1e6a607463993afa4a8d085857d97cc2f3
14605Merge: 17d7dcbf 9129057b
14606Author: Peter Hutterer <peter@cs.unisa.edu.au>
14607Date:   Mon May 12 17:58:37 2008 +0930
14608
14609    Merge branch 'master' into xge
14610
14611commit 9129057bdbff0ec9cd8bb780cf7f85f134a291eb
14612Author: Teemu Likonen <tlikonen@iki.fi>
14613Date:   Wed May 7 21:44:22 2008 +0300
14614
14615    Change <dead_belowdot> to <dead_belowring> for U+1E00 and U+U1E01
14616    
14617    Commit 6b6caeea830a977bdb54688cfb648d879821e752 added <dead_belowdot>
14618    <A> and <dead_belowdot> <a> compose sequences for letters U+1E00 and
14619    U+U1E01 (LATIN CAPITAL/SMALL LETTER A WITH RING BELOW). This caused
14620    duplicate compose sequences since these have already been defined. Also,
14621    using <dead_belowring> is more logical since the diacritic is indeed
14622    a "RING BELOW".
14623
14624commit 01a9cb58888d290cc3d319feec4ee4a0297a844c
14625Author: Daniel Stone <daniel@fooishbar.org>
14626Date:   Wed May 7 20:04:44 2008 +0300
14627
14628    NLS: Make UTF-8 the default for Russian
14629    
14630    No-one uses 8859-5 anymore, so make the default for Russian UTF-8; the
14631    only other possible answer would be KOI8-R.
14632    
14633    Signed-off-by: Sergey V. Udaltsov <sergey.udaltsov@gmail.com>
14634
14635commit 407b81bfbbabf6feb565d6da22f9ef9a69016ab8
14636Author: Ross Burton <ross@burtonini.com>
14637Date:   Tue Apr 29 13:38:10 2008 +0300
14638
14639    NLS: Add interrobang to UTF-8 compose tables (bug #15653)
14640    
14641    It is what it says on the box.
14642
14643commit 0b6682303e9c61fefc3818acfda616b1e3691abf
14644Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
14645Date:   Mon Apr 28 11:51:25 2008 +0300
14646
14647    IM: Respect XMODIFIERS for Thai locale (bug #15719)
14648    
14649    When looking at Thai input methods, make sure XMODIFIERS is checked
14650    before jumping straight into built-in Thai processing, so external XIM
14651    servers such as SCIM can be used with Thai.
14652
14653commit c13aded1b2f830ba5004abb0ec5518f9ea16087e
14654Author: Colin Harrison <colin.harrison-at-virgin.net>
14655Date:   Sat Apr 26 18:56:05 2008 +0100
14656
14657    Fix missing error condition
14658
14659commit f5c5ffc175cb383c92ea0fa8c08cfb087c5f3083
14660Author: Colin Harrison <colin.harrison-at-virgin.net>
14661Date:   Mon Apr 21 17:24:33 2008 +0100
14662
14663    Xlib warning fixes
14664
14665commit 6b6caeea830a977bdb54688cfb648d879821e752
14666Author: James Cloos <cloos@jhcloos.com>
14667Date:   Fri Apr 18 02:50:55 2008 -0400
14668
14669    Add some dead_key sequences to en_US.UTF-8 Compose table
14670    
14671    Make use of the new dead key symbols added to x11proto’s
14672    commit 44e24a27bca023cf7b799f191fe6d52e12efbe5f (which
14673    was in responce to bug #15446).
14674
14675commit 8f9b039580deaf658e464b7d6254064fcf183df6
14676Author: Alan Coopersmith <alan.coopersmith@sun.com>
14677Date:   Mon Apr 14 19:09:42 2008 -0700
14678
14679    Update ac_define_dir macro in acinclude.m4 to 2008-04-12 version
14680
14681commit 9f5e96eb91ab55dd441c3e94b75caf48c588778f
14682Author: Alan Coopersmith <alan.coopersmith@sun.com>
14683Date:   Mon Apr 14 18:21:14 2008 -0700
14684
14685    Fix mismatched brace indenting
14686
14687commit a19f9c65ee9e5e5d783feaa84998c36439b0288b
14688Author: Bart Massey <bart@cs.pdx.edu>
14689Date:   Fri Apr 4 18:58:45 2008 -0700
14690
14691    added error check in Xcms color file parser; closes bug #15305
14692
14693commit 12e8d0d01dd72ce98e7683ddb1bde181b7ed246f
14694Author: Christian Weisgerber <naddy@mips.inka.de>
14695Date:   Tue Mar 18 07:30:05 2008 +0100
14696
14697    ConnDis: properly cast 'addr' before accessing it as a byte array.
14698    
14699    If you use XDM-AUTHORIZATION-1 authorization keys for remote X11
14700    clients over IPv6, the clients are liable to segfaults.
14701
14702commit 64325f38bab082a8e0e9ce779a8e582de5c8588e
14703Author: Josh Triplett <josh@freedesktop.org>
14704Date:   Sat Mar 15 12:29:33 2008 -0700
14705
14706    Fix fd.o bug 15023: make Xlib sync correctly given many void requests
14707    
14708    If given many requests without replies, Xlib may not sync until it flushes
14709    the output buffer.  Thus, if Xlib can fit enough requests in the buffer to
14710    pass by the number of requests it would normally sync after (65536 -
14711    BUFSIZE/sizeof(xReq)), it will sync too late.  The test case in bug 15023
14712    demonstrated this by issuing a request with a reply (ListExtensions) at
14713    just the right time to get confused with the GetInputFocus reply issued in
14714    response to the sync 65,536 requests later; the test case used an async
14715    handler to watch the replies, since otherwise it could not issue a request
14716    without waiting for the response.  When the test case failed, Xlib's sync
14717    handler would eat the ListExtensions reply, and the test case's async
14718    handler would see the GetInputFocus reply.
14719    
14720    Fix this by replacing SEQLIMIT with a function sync_hazard() that uses the
14721    buffer size to figure out when the sequence numbers could potentially wrap
14722    before the next flush.
14723    
14724    With this commit, the test case consistently passed, and the async reply
14725    handler always saw the ListExtensions reply.
14726    
14727    Commit by Jamey Sharp and Josh Triplett.
14728
14729commit a5395563bbee15fabe1e8fd7aa86f9f314d8d30e
14730Author: Colin Harrison <colin.harrison@virgin.net>
14731Date:   Sat Mar 15 13:39:13 2008 -0400
14732
14733    Fix typo
14734    
14735    Signed-off-by: James Cloos <cloos@jhcloos.com>
14736
14737commit f07585ca27a8487bc66dfe41486c823f0fdcea7d
14738Author: Daniel Stone <daniel@fooishbar.org>
14739Date:   Sat Mar 15 17:32:57 2008 +0200
14740
14741    configure.ac: Don't search for legacy X11 headers
14742    
14743    This can actually break cross-compiles, so don't do it anymore.
14744
14745commit bf69541238c7df6606340c0f389e5c47149b29c7
14746Author: Matthieu Herrb <matthieu.herrb@laas.fr>
14747Date:   Sun Mar 9 09:08:07 2008 +0100
14748
14749    nuke RCS Ids
14750
14751commit 5e98aed13e529638df744e45893c471d5f2014fb
14752Author: Adam Jackson <ajax@redhat.com>
14753Date:   Thu Mar 6 16:10:33 2008 -0500
14754
14755    libX11 1.1.4
14756
14757commit 8e085971dc661da9f80ff6b67747459c0fb15c08
14758Author: Alan Coopersmith <alan.coopersmith@sun.com>
14759Date:   Thu Feb 28 20:17:41 2008 -0800
14760
14761    Man page typo fixes
14762
14763commit 1a1a42a3ca1dfaf42f1094936b71c140fc030fcb
14764Author: Søren Sandmann Pedersen  <sandmann@redhat.com>
14765Date:   Sun Feb 24 20:03:35 2008 -0500
14766
14767    XIM: Fix a hand when switching input context.
14768    
14769    Red Hat bug #201284.
14770
14771commit e02e4ccafcaf3eb8993152dfcbfbee0240ea2db2
14772Author: Adam Jackson <ajax@redhat.com>
14773Date:   Sun Feb 24 20:00:43 2008 -0500
14774
14775    Bug #14029: Don't LockDisplay() recursively.
14776    
14777    See also Red Hat bugzilla #326461.
14778
14779commit e5892467ae3308c8651be76e06db322dcbc08522
14780Author: Alan Coopersmith <alan.coopersmith@sun.com>
14781Date:   Fri Feb 15 17:27:53 2008 -0800
14782
14783    Add support for building lint library with --enable-lint-library
14784
14785commit e3eb83ec6a9bffa63cdffd94f077c12f85ad7240
14786Author: Alan Coopersmith <alan.coopersmith@sun.com>
14787Date:   Mon Feb 11 20:11:43 2008 -0800
14788
14789    Spell out number in XkbGetKeyVirtualModMap man page to avoid cpp errors from #
14790
14791commit d5ceed7a73a6b61758ddb6ff4e194955fbd5c185
14792Author: Alan Coopersmith <alan.coopersmith@sun.com>
14793Date:   Fri Feb 8 16:46:46 2008 -0800
14794
14795    Add WM_LOCALE_NAME to list of properties set in XSetWMProperties comment
14796
14797commit 416a812200f24d19149dcc497e5c51a0608120f6
14798Author: Alan Coopersmith <alan.coopersmith@sun.com>
14799Date:   Fri Feb 8 15:31:31 2008 -0800
14800
14801    XErrorDB updates for Render 0.9 & XFixes 4.0
14802
14803commit 16a76091cd632e5a3708e235ff864b58f3e4613e
14804Author: Kim Woelders <kim@woelders.dk>
14805Date:   Sat Dec 22 21:45:23 2007 +0100
14806
14807    Fix bs_BA entries in locale.dir.pre
14808    
14809    X.Org bug#13786 <http://bugs.freedesktop.org/show_bug.cgi?id=13786>
14810
14811commit 32115c563b87d2f37e3f9de70fbd0f4d9e424aea
14812Merge: 8f0bd3f4 e8d4cefa
14813Author: James Cloos <cloos@jhcloos.com>
14814Date:   Fri Dec 14 22:43:47 2007 -0500
14815
14816    Merge branch 'master' of ssh://git.freedesktop.org/git/xorg/lib/libX11
14817
14818commit 8f0bd3f445cbdcc67650f6e8e3baf2ed89cb3695
14819Author: James Cloos <cloos@jhcloos.com>
14820Date:   Fri Dec 14 22:42:59 2007 -0500
14821
14822    add a comment to en_US.UTF-8/Compose
14823
14824commit 4d6c45e60ed13d3b0fea10413873d6a74f9d6a3b
14825Author: James Cloos <cloos@jhcloos.com>
14826Date:   Fri Dec 14 22:40:13 2007 -0500
14827
14828    Add <dead_stroke> compose sequences
14829    
14830    The added sequences match the existing <Multi_key> <slash> sequences.
14831    
14832    This is related to bug #12765¹.
14833    
14834    1] https://bugs.freedesktop.org/show_bug.cgi?id=12765
14835
14836commit e8d4cefa0837afa149a10e981528b368485a9e38
14837Author: Jeremy Huddleston <jeremy@yuffie.local>
14838Date:   Mon Dec 10 23:00:44 2007 -0800
14839
14840    Added launchd support.
14841
14842commit 17d7dcbfced4a9417b33507bd3fd9b7dd8268242
14843Merge: 5dfefd38 13ac8046
14844Author: Peter Hutterer <peter@cs.unisa.edu.au>
14845Date:   Thu Dec 6 14:08:29 2007 +1030
14846
14847    Merge branch 'master' into xge
14848
14849commit 5dfefd3829d3ba7e41d5db0ad28e9dfee92fadd5
14850Merge: a68a1cd7 eff33ae5
14851Author: Peter Hutterer <peter@cs.unisa.edu.au>
14852Date:   Thu Dec 6 13:57:09 2007 +1030
14853
14854    Merge branch 'master' into xge
14855    
14856    Conflicts:
14857    
14858            src/xcb_io.c
14859
14860commit 13ac80469f6958cabac596834e203bd9cb6d4c94
14861Author: James Cloos <cloos@jhcloos.com>
14862Date:   Wed Dec 5 20:14:03 2007 -0500
14863
14864    Update the currency symbols block of en_US.UTF-8/Compose.pre
14865    Add XCOMM lines a la the existing NEW SHEQEL SIGN entry for
14866    the KIP, TUGRIK, DRACHMA. GERMAN PENNY, PESO, GUARANI,
14867    AUSTRAL, HRYVNIA and CEDI SIGNs.
14868
14869commit b0a8f2ec4ba698841683f8ce389f9d72e6bce53e
14870Author: Anton Zinoviev <anton@lml.bas.bg>
14871Date:   Wed Dec 5 19:56:03 2007 -0500
14872
14873    Additions to the Compose file for UTF-8
14874    From bug #5371¹
14875    
14876    Commit 5cf5bc76642bfece7cb5b76faf414bf445f14489 left out this change
14877    from those in attachment #4122².  The post³ on xorg resulted in only
14878    a positive reply⁴ from Daniel, so this block is now also commited.
14879    
14880    1] https://bugs.freedesktop.org/show_bug.cgi?id=5371
14881    2] https://bugs.freedesktop.org/attachment.cgi?id=4122
14882    3] http://article.gmane.org/gmane.comp.freedesktop.xorg/20628
14883    4] http://article.gmane.org/gmane.comp.freedesktop.xorg/23966
14884    
14885    Signed-off-by: James Cloos <cloos@jhcloos.com>
14886    Acked-by:  Daniel Stone <daniel@fooishbar.org>
14887
14888commit 438d02ebc08ee171cf1d3936f4c81050d428ab92
14889Author: James Cloos <cloos@jhcloos.com>
14890Date:   Tue Dec 4 17:25:39 2007 -0500
14891
14892    Fix the <U\x+> keysyms in the en_US.UTF-8 Compose file
14893    
14894    Based on src/KeysymStr.c and src/StrKeysym.c and comments in
14895    bugs #11930¹ and #5129² it is clear that <U100XXXXX> is invalid;
14896    those should be in the form U plus the hex of the UCS Code Point.
14897    
14898    The 0x01000000 is ORed in by the code.
14899    
14900    This update fixes all of those.
14901    
14902    1] https://bugs.freedesktop.org/show_bug.cgi?id=11930
14903    2] https://bugs.freedesktop.org/show_bug.cgi?id=5129
14904
14905commit 02e04059c89e175f51647e3b031344f743286b34
14906Merge: 1254c57d b57129ef
14907Author: James Cloos <cloos@jhcloos.com>
14908Date:   Tue Dec 4 06:55:04 2007 -0500
14909
14910    Merge branch 'master' of ssh://git.freedesktop.org/git/xorg/lib/libX11
14911
14912commit 1254c57dd3a8d6ea87041b2f63024f99094f290f
14913Author: James Cloos <cloos@jhcloos.com>
14914Date:   Tue Dec 4 06:53:55 2007 -0500
14915
14916    Use the new dead_psili and dead_dasia keysyms added to proto/x11proto 7.0.11
14917    Inspired by bug 11930¹:
14918    
14919    Commit 40ed4eef92e31fcf7ea0a436e1a00cdf49484c1b to x11proto added dead_psili
14920    and dead_dasia keysyms.  Make use of them in the en_US.UTF-8 and el_GR.UTF-8
14921    Compose files.
14922    
14923    This was done with a pair of perl scripts based on the one quoted in the
14924    log for commit c76d30253f1483ac8200ad5c032a818907e65030.
14925    
14926    1] https://bugs.freedesktop.org/show_bug.cgi?id=11930
14927
14928commit b57129ef324c73ee91c2a796b800c4b45f4d4855
14929Author: Jeremy Huddleston <jeremy@yuffie.local>
14930Date:   Mon Dec 3 20:04:19 2007 -0800
14931
14932    Use __APPLE__ instead of __DARWIN__
14933
14934commit b9c032e1d5ed08510863dfb91b8bda588e6c8c9e
14935Author: Jeremy Huddleston <jeremy@yuffie.local>
14936Date:   Wed Nov 28 16:43:49 2007 -0800
14937
14938    Define __DARWIN__ when host_os == darwin* as needed in SetLocale.c
14939
14940commit 4b91ed099554626f1ec17d5bdf7bd77ce1a70037
14941Author: Alan Coopersmith <alan.coopersmith@sun.com>
14942Date:   Wed Nov 21 16:50:04 2007 -0800
14943
14944    X.Org Bug #4312: incorrect comment asterisk in XAnyEvent.3x man page
14945    
14946    X.Org Bugzilla #4312 <http://bugs.freedesktop.org/show_bug.cgi?id=4312>
14947    
14948    Protect /* sequences from cpp pre-processor removal without transforming
14949    to Unicode mathematical asterisk character
14950
14951commit 2af660c2fcd15c86c66459bfc074c190ea1462e6
14952Author: Jamey Sharp <jamey@minilop.net>
14953Date:   Mon Oct 29 10:46:20 2007 -0700
14954
14955    Two threads can request sequence sync and XID fetch simultaneously.
14956    
14957    So don't assert that they can't.
14958    
14959    This makes the Xlib/XCB implementation of _XAllocID more closely
14960    resemble the traditional Xlib version.
14961
14962commit 6e5485e0a5e3ab738becad12193e760c5fee83a4
14963Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
14964Date:   Sun Oct 28 04:44:00 2007 -0800
14965
14966    X.Org Bug #12983: Typos in ./man/XChangeKeyboardControl.man
14967    
14968    <http://bugs.freedesktop.org/show_bug.cgi?id=12983>
14969
14970commit 24527c92fd1f433ea135e85ec876a94a529fe500
14971Author: Yann Droneaud <ydroneaud@mandriva.com>
14972Date:   Wed Oct 24 19:26:07 2007 +0300
14973
14974    XIM: Properly initialise client event
14975    
14976    Make sure all ClientMessage fields are initialised to 0 before we send it.
14977
14978commit e41477f37b0d9b74a056d22dbf0073a94eecb9d6
14979Author: Daniel Stone <daniel@fooishbar.org>
14980Date:   Wed Oct 24 19:22:22 2007 +0300
14981
14982    Colours: Fix --disable-xcms
14983    
14984    Disable large tracts of colour management code when passing
14985    --disable-xcms.
14986
14987commit 11ea09745efa8de7dc82fe30ebd2393f08390957
14988Author: Eric Anholt <eric@anholt.net>
14989Date:   Fri Aug 31 17:30:33 2007 -0700
14990
14991    Bug #2081: Note the range limitation of XSetScreenSaver arguments.
14992
14993commit 31540f1438ec63faf37044f2fd654b335ddf80f0
14994Author: Kristian Høgsberg  <krh@redhat.com>
14995Date:   Wed Aug 29 19:50:57 2007 -0400
14996
14997    Add GLX 1.4 requests and errors.
14998
14999commit 7c996f78914c77fe17e9f4feede980d895d9df51
15000Author: Eric Anholt <eric@anholt.net>
15001Date:   Tue Aug 28 15:15:11 2007 -0700
15002
15003    Add XF86 keyboard/monitor brightness keysyms to the keysymbdb.
15004
15005commit fa4effe82759f864a22a2dc6c920fa72ddb175a8
15006Author: Eric S. Raymond <esr@thyrsus.com>
15007Date:   Sun Jan 14 10:48:00 2007 -0800
15008
15009    Bug #9658: Bad markup on XIfEvent.3x
15010    
15011    X.Org Bugzilla #9658 <https://bugs.freedesktop.org/show_bug.cgi?id=9658>
15012
15013commit 74cba78daa738ef4d92096107d95c1a585933666
15014Author: Eric S. Raymond <esr@thyrsus.com>
15015Date:   Sun Jan 14 10:43:00 2007 -0800
15016
15017    Bug #9655: Bad markup in XrmUniqueQuark.3x
15018    
15019    X.Org Bugzilla #9655 <https://bugs.freedesktop.org/show_bug.cgi?id=9655>
15020
15021commit 4341d1a34b2a2e460b58131b6fd81935f3355bbc
15022Author: Eric S. Raymond <esr@thyrsus.com>
15023Date:   Sun Jan 14 10:43:00 2007 -0800
15024
15025    Bug #9654: Bad markup in XrmGetFileDatabase.3x
15026    
15027    X.Org Bugzilla #9654 <https://bugs.freedesktop.org/show_bug.cgi?id=9654>
15028
15029commit 2db713252090cae08f0200fecad4fc25fb64c8b1
15030Author: Eric S. Raymond <esr@thyrsus.com>
15031Date:   Sun Jan 14 10:40:00 2007 -0800
15032
15033    Bug #9653: Bad markup in XQueryColor.3x
15034    
15035    X.Org Bugzilla #9653 <https://bugs.freedesktop.org/show_bug.cgi?id=9653>
15036
15037commit 9d3ceea4b902e0471824c1e07ad64342b9a1114e
15038Author: Eric S. Raymond <esr@thyrsus.com>
15039Date:   Sun Jan 14 10:40:00 2007 -0800
15040
15041    Bug #9652: Bad markup in XDrawArc.3x
15042    
15043    X.Org Bugzilla #9652 <https://bugs.freedesktop.org/show_bug.cgi?id=9652>
15044
15045commit 2e7e0748d353d7f53bbd65ec6bf0df8758528ddc
15046Author: Eric S. Raymond <esr@thyrsus.com>
15047Date:   Sun Jan 14 10:39:00 2007 -0800
15048
15049    Bug #9651: Bad markup in XcmsColor.3x
15050    
15051    X.Org Bugzilla #9651 <https://bugs.freedesktop.org/show_bug.cgi?id=9651>
15052
15053commit c316aaf0aab06951db9dc5c9c1148bfea835d885
15054Author: Eric S. Raymond <esr@thyrsus.com>
15055Date:   Sun Jan 14 10:38:00 2007 -0800
15056
15057    Bug #9650: Bad markup in XLoadFont.3x manual page
15058    
15059    X.Org Bugzilla #9650 <https://bugs.freedesktop.org/show_bug.cgi?id=9650>
15060
15061commit ca5d9a625ea0965853fa9e74a448b8c29c78ec95
15062Author: Eric S. Raymond <esr@thyrsus.com>
15063Date:   Tue Jan 2 10:18:00 2007 -0800
15064
15065    Bug 9523: Markup problems in XQueryExtension.3x
15066    
15067    X.Org Bugzilla #9523 <https://bugs.freedesktop.org/show_bug.cgi?id=9523>
15068
15069commit fe713c616e29ba19c179b43c18eca1035079ce18
15070Author: Ian Romanick <idr@us.ibm.com>
15071Date:   Tue Aug 21 14:56:33 2007 -0700
15072
15073    Make sure nls/am_ET.UTF-8/Makefile is created by configure.
15074
15075commit e3430616f26b68e1439143cbe10732f3fc329d20
15076Author: Eric S. Raymond <esr@thyrsus.com>
15077Date:   Tue Jan 2 08:40:00 2007 -0800
15078
15079    Bug #9516: Markup error in XAllocWMHints.3x
15080    
15081    X.Org Bugzilla #9516 <https://bugs.freedesktop.org/show_bug.cgi?id=9516>
15082
15083commit d8fe979fc929833e8c754aed32641786d5a0622b
15084Merge: 21ca9533 4ec1723f
15085Author: James Cloos <cloos@jhcloos.com>
15086Date:   Mon Aug 20 15:34:50 2007 -0400
15087
15088    Merge branch 'master' of ssh://git.freedesktop.org/git/xorg/lib/libX11
15089
15090commit 21ca953337fb221b85345bf35ce1a98a0dcb2bf2
15091Author: James Cloos <cloos@jhcloos.com>
15092Date:   Mon Aug 20 15:34:03 2007 -0400
15093
15094    Fix typo
15095    The code <U1000000D> was used where <U10000DC> was obviously intended.
15096    
15097    It is possible that <Udiaeresis> should be used instead, if that will
15098    not break anyone’s setup.
15099
15100commit 4ec1723fff729440cd3349c1f95d87d2a6ba89cf
15101Author: James Cloos <cloos@jhcloos.com>
15102Date:   Mon Aug 20 15:25:48 2007 -0400
15103
15104    Add compose file for Ethiopic to match new keyboard in xkeyboard-config
15105    From bug report:
15106    
15107      https://bugs.freedesktop.org/show_bug.cgi?id=11307
15108
15109commit eff33ae525337ce2026be135a26464c7b1237113
15110Author: James Cloos <cloos@jhcloos.com>
15111Date:   Sat Aug 18 17:58:23 2007 -0400
15112
15113    Patch for Catalan locales
15114    From bugzilla bug 10943¹:
15115    
15116      There are several Catalan locale codes which presently can
15117      be used in X11 systems; especially after they were accepted
15118      in belocs-locale-data².
15119    
15120      In the following patches, I³ add ca_AD, ca_FR and ca_IT Catalan
15121      locale codes.  For instance, without this, using ca_AD (actually
15122      a quite used locale⁴) some applications (eg. Emacs or Skype)
15123      cannot display Catalan diacritic marks as you type them.
15124    
15125    1] https://bugs.freedesktop.org/show_bug.cgi?id=10943
15126    2] http://lists.debian.org/debian-devel-changes/2005/07/msg01429.html
15127    3] Toni Hermoso Pulido <toniher@softcatala.org>
15128    4] https://launchpad.net/~ubuntu.cat/+members
15129
15130commit 1f980cb7d022f53d0aee9e793b08203fb888e86e
15131Author: James Cloos <cloos@jhcloos.com>
15132Date:   Sat Aug 18 17:47:04 2007 -0400
15133
15134    Add additional Euro signs to compose
15135    Inspired by bug 7419¹ make all of:
15136    
15137        C=, =C, c=, =c, E=, =E, e=, E=
15138    
15139    after <Multi_key> generate € U+20AC EURO SIGN.
15140    
15141    1] https://bugs.freedesktop.org/show_bug.cgi?id=7419
15142
15143commit 4b0a14521449dfce8b4347bd17243efd1d3eae2d
15144Author: James Cloos <cloos@jhcloos.com>
15145Date:   Sat Aug 18 17:29:08 2007 -0400
15146
15147    Compose fix for Latin-1 (from Debian)
15148    The description from bugzilla bug 7417¹ is:
15149    
15150      We've been shipping this patch for some time in Debian now. The
15151      problem description from the patch header is reproduced below. You
15152      may want to note the licensing issue mentioned below, but we've been
15153      shipping it because the method by which this particular patch was
15154      generated and updated was also given below.
15155    
15156      This patch by Denis Barbier.
15157    
15158      The X11 protocol states that Unicode keysyms are in the range
15159      0x01000100 - 0x0110FFFF.  If the result of composing characters is a
15160      Unicode codepoint, X returns the corresponding Unicode keysym, which
15161      is its Unicode codepoint augmented by 0x01000000.  Latin-1
15162      characters must not appear with their Unicode codepoints in compose
15163      files, otherwise the returned composed character lies in the range
15164      0x01000000 - 0x010000FF which is not valid.
15165    
15166      There are two solutions: either fix composing routines to return
15167      0xZZ instead of 0x010000ZZ (where Z is an hexadecimal digit), or
15168      replace U00ZZ by their corresponding keysyms in compose files.  The
15169      latter is more logical and less error prone, so compose files will
15170      be patched.  Many applications accept these invalid Unicode keysyms,
15171      but few of them don't, most notably xemacs.  Only UTF-8 locales are
15172      affected.
15173    
15174      This has been fixed very recently in XFree86 CVS (but not xorg), but
15175      for licensing reasons, this patch is not grabbed.  Instead automatic
15176      conversion is performed by:
15177    
15178        sed -e '/XK_LATIN1/,/XK_LATIN1/!d' /usr/include/X11/keysymdef.h \
15179        | grep -v deprecated | grep 0x0 \
15180        | sed -e 's/0x0/U0/' -e 's/XK_//' \
15181        | awk '{ printf "s/\\b%s\\b/%s/ig\n", $3, $2; }' > sedfile
15182        for f in nls/*.UTF-8/Compose.pre
15183        do
15184          sed -f sedfile $f > $f.tmp && mv $f.tmp $f
15185        done
15186    
15187    [I edited the quoted script to update it for the current location of
15188    the installed keysymdef.h and the current layout of the libX11
15189    repo. -JimC]
15190    
15191    I applied the script, not the patch attached to the bugreport.
15192    
15193    1] https://bugs.freedesktop.org/show_bug.cgi?id=7417
15194
15195commit 5cf5bc76642bfece7cb5b76faf414bf445f14489
15196Author: James Cloos <cloos@jhcloos.com>
15197Date:   Sat Aug 18 17:13:41 2007 -0400
15198
15199    Add some compose sequences
15200    
15201    Add some compose sequences from the patch in bug 5371 (attachment 4122).
15202    
15203    Cf:
15204    
15205    https://bugs.freedesktop.org/show_bug.cgi?id=5371
15206    https://bugs.freedesktop.org/attachment.cgi?id=4122
15207
15208commit d4002e389dd69780dfc7c2f7bd3cb0c57f05d4f8
15209Author: James Cloos <cloos@jhcloos.com>
15210Date:   Sat Aug 18 13:57:31 2007 -0400
15211
15212    Fix SMP Compose targets
15213    The compose targets from the SMP (plane 1) were incorrect.
15214    
15215    At some point the 0x10000 bit had been lost.
15216
15217commit f1ed3da9a30a1f0264fdc7d1c6466f27fe2a3d7d
15218Author: Jeremy C. Reed <reed@glacier.reedmedia.net>
15219Date:   Thu Aug 16 17:37:22 2007 -0500
15220
15221    Fix a mutex reference-counting bug.
15222    
15223    I was told that some systems have a much more permissive libpthread.
15224    I was asked to commit this. This is from NetBSD's X source.
15225    (I didn't receive any feedback on xorg list for over two weeks
15226    about this.)
15227
15228commit ac00a44b4875de70382da5a40dd87f976e5b9327
15229Author: Tilman Sauerbeck <tilman@code-monkey.de>
15230Date:   Wed Aug 1 20:36:03 2007 +0200
15231
15232    Bumped version to 1.1.3.
15233
15234commit 76fae9cba1e9bdf7f0eb2ff2b90153d622136cf0
15235Author: Joerg Sonnenberger <joerg@netbsd.org>
15236Date:   Fri Jul 27 11:15:47 2007 -0700
15237
15238    Fail properly on errors in recursive make.
15239
15240commit 1a18319b3bde08dd9ef69c7cd735a76000cf3177
15241Author: Brice Goglin <Brice.Goglin@ens-lyon.org>
15242Date:   Thu Jul 26 23:31:15 2007 +0200
15243
15244    Add missing override parameter in XrmCombineDatabase prototype in the manpage
15245    
15246    Reported by Arnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
15247    in http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=393434
15248    and https://bugs.freedesktop.org/show_bug.cgi?id=9948
15249    
15250    Also add the type of the second argument in XrmMergeDatabases.
15251
15252commit 6f0764d4b56f64786b4980839ca262f10a51af6f
15253Author: Brice Goglin <Brice.Goglin@ens-lyon.org>
15254Date:   Thu Jul 26 22:53:52 2007 +0200
15255
15256    Clarify return value of XGetCommand in case of error in the manpage
15257    
15258    Reported by Sean Perry <shalehperry@attbi.com>
15259    in http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=133348
15260    and https://bugs.freedesktop.org/show_bug.cgi?id=9828
15261
15262commit b8bef57342632cc2d25580bb7daa3839bae04d89
15263Author: Alan Coopersmith <alan.coopersmith@sun.com>
15264Date:   Wed Jul 25 17:44:06 2007 -0700
15265
15266    Include comment/copyright/license for AC_DEFINE_DIR in acinclude.m4
15267
15268commit 590cde811a79375231c59ed8583e02b111ed567c
15269Author: Kean Johnston <kean@armory.com>
15270Date:   Thu Jul 19 16:44:20 2007 -0700
15271
15272    Reset hostname when falling back from :0 to hostname/localhost:0 as well
15273
15274commit d334665e619e9db657a2ea2764a8b852401d4a3f
15275Author: Kean Johnston <kean@armory.com>
15276Date:   Tue Jul 17 16:34:30 2007 -0700
15277
15278    LOCALCONN fallback changes DisplayString() output, breaks KDE
15279    
15280    See <http://lists.freedesktop.org/archives/xorg/2007-July/026443.html>
15281
15282commit 8e76bcf3cafda85058ce5f35f1f81929f4772f72
15283Author: Olivier Blin <blino@mandriva.org>
15284Date:   Mon Jun 11 18:32:09 2007 +1000
15285
15286    fix XGetMotionEvents arguments order - Fixes bug 11222
15287
15288commit c2f88cdf5cd9c94b77e5bfdac572b5ac06ab4aa8
15289Author: Jamey Sharp <jamey@minilop.net>
15290Date:   Sun Jun 10 16:19:59 2007 -0700
15291
15292    Fix locking in _XimGetWindowEventmask.
15293    
15294    Now that XFilterEvent drops the Display lock before invoking callback
15295    functions, _XimGetWindowEventmask is called without the lock held. So
15296    when it called _XGetWindowAttributes, a variant of XGetWindowAttributes
15297    that does not lock the Display, Xlib/XCB would assert:
15298    
15299    xcb_xlib.c:50: xcb_xlib_unlock: Assertion `c->xlib.lock' failed.
15300    
15301    Should fix Gentoo #156367, Ubuntu #87947, Debian #427296. And others?
15302
15303commit 65f0ab5d46d80d55fc04d4eb14fa05f130eb8b9c
15304Author: Jamey Sharp <jamey@minilop.net>
15305Date:   Sun Jun 3 21:41:47 2007 -0700
15306
15307    Move security fixes to the top of NEWS, and fix spacing.
15308    
15309    Commit by Josh Triplett and Jamey Sharp.
15310
15311commit a549a258b8fcb1ba9d0c1b01b72967e385f67cab
15312Author: Jamey Sharp <jamey@minilop.net>
15313Date:   Sun Jun 3 21:29:40 2007 -0700
15314
15315    Add NEWS item for bugfix in commit e2c1d788d1fe7bd2d34756493951552441e59b8c.
15316    
15317    Commit by Josh Triplett and Jamey Sharp
15318
15319commit 5123b77a3d32d3ad479462f319762c328278aed9
15320Author: Jamey Sharp <jamey@minilop.net>
15321Date:   Sun Jun 3 21:24:54 2007 -0700
15322
15323    Xlib/XCB: Inline and simplify handle_event, since only process_responses calls it now.
15324    
15325    Commit by Josh Triplett and Jamey Sharp.
15326
15327commit 582ca690ea4f3ffd2b94826c4db97229bd3c7238
15328Author: Jamey Sharp <jamey@minilop.net>
15329Date:   Sun Jun 3 20:59:12 2007 -0700
15330
15331    Xlib/XCB: Fix _XReadEvents to always enqueue a new event, even if an error occurs
15332    
15333    Commit c337f9de7cfd89f983f83956b7457a274dd412f3 broke the invariant that
15334    _XReadEvents always enqueues at least one event even if an error occurred,
15335    because the one call to xcb_wait_for_event would then return an error, not an
15336    event, and nothing else ensured that process_responses would obtain an event.
15337    Fix this by reverting most of c337f9de7cfd89f983f83956b7457a274dd412f3 and
15338    f417570735aac865eb6b576d1ea76b5bfcd8573b and implementing the correct fix.  In
15339    process_responses, wait_for_first_event now serves as a flag, cleared when
15340    actually handling an event.
15341    
15342    Commit by Josh Triplett and Jamey Sharp.
15343
15344commit e2c1d788d1fe7bd2d34756493951552441e59b8c
15345Author: Jamey Sharp <jamey@minilop.net>
15346Date:   Sun Jun 3 17:33:23 2007 -0700
15347
15348    Xlib/XCB: Only remove pending_requests when there are provably no more responses.
15349
15350commit 7a6dbd4b07ca0a49c30ca7a1d2437eafb2e15eab
15351Author: Josh Triplett <josh@freedesktop.org>
15352Date:   Sun Jun 3 15:39:39 2007 -0700
15353
15354    Bump version number to 1.1.2, and add NEWS entry for 1.1.2
15355    
15356    Signed-off-by: Josh Triplett <josh@freedesktop.org>
15357
15358commit 416f38f2e67ee1979b3d2feac6f06b3670238804
15359Author: Josh Triplett <josh@freedesktop.org>
15360Date:   Sun Jun 3 12:13:44 2007 -0700
15361
15362    Revert "Revert "include: don't distribute XlibConf.h""
15363    
15364    This reverts commit 79fa3d8070d95b960ba486f2439225872471dadd.
15365    
15366    Re-revert the XlibConf.h change, which prevented distribution, not
15367    installation.
15368
15369commit 79fa3d8070d95b960ba486f2439225872471dadd
15370Author: Josh Triplett <josh@freedesktop.org>
15371Date:   Sat Jun 2 22:05:16 2007 -0700
15372
15373    Revert "include: don't distribute XlibConf.h"
15374    
15375    This reverts commit c9e28e05ae01ce8a29bea09df759b6271865b44c.
15376    
15377    The installed XlibInt.h includes XlibConf.h , so libX11 should ship
15378    XlibConf.h.  (Commit c9e28e05ae01ce8a29bea09df759b6271865b44c didn't actually
15379    prevent automake from shipping XlibConf.h, because it used
15380    nodist_x11include_HEADERS rather than nodist_HEADERS.)
15381
15382commit f417570735aac865eb6b576d1ea76b5bfcd8573b
15383Author: Jamey Sharp <jamey@minilop.net>
15384Date:   Sat Jun 2 17:59:15 2007 -0700
15385
15386    Xlib/XCB: inline wait_or_poll_for_event, which now had only one caller.
15387    
15388    Commit by Josh Triplett and Jamey Sharp.
15389
15390commit c337f9de7cfd89f983f83956b7457a274dd412f3
15391Author: Jamey Sharp <jamey@minilop.net>
15392Date:   Sat Jun 2 17:46:41 2007 -0700
15393
15394    Xlib/XCB: Ensure _XReadEvents reads at least one new event and blocks for exactly one event.
15395    
15396    Commit by Jamey Sharp and Josh Triplett.
15397
15398commit 7f66c897f04806b75e574b55b48921b48045e3f9
15399Author: Jamey Sharp <jamey@minilop.net>
15400Date:   Sat Jun 2 16:43:39 2007 -0700
15401
15402    Update _XReply's copy of _XCBUnlockDisplay's guts.
15403    
15404    We introduced this bug in 6b81cbbedfb521ce046b77ee3cc54e884a1dc0c5.
15405    
15406    Also add a comment in _XCBUnlockDisplay to discourage this problem from
15407    respawning.
15408    
15409    Commit by Josh Triplett and Jamey Sharp.
15410
15411commit 740ead23512f8d2eaafaa69e514f1ebafad475b9
15412Author: Jamey Sharp <jamey@minilop.net>
15413Date:   Sat Jun 2 16:01:01 2007 -0700
15414
15415    Xlib/XCB: Avoid re-crashing after _XIOError.
15416    
15417    Commit by Josh Triplett and Jamey Sharp.
15418
15419commit 6b81cbbedfb521ce046b77ee3cc54e884a1dc0c5
15420Author: Jamey Sharp <jamey@minilop.net>
15421Date:   Sat Jun 2 12:30:30 2007 -0700
15422
15423    Hold XCB's Xlib lock even when only the user lock (XLockDisplay) is held.
15424    
15425    An Xlib client can query Display state, such as with NextRequest, while
15426    it holds only the Xlib user lock (between XLockDisplay and
15427    XUnlockDisplay), so XCB requests in other threads should be blocked when
15428    the Xlib user lock is held.
15429    
15430    We acquire the lock even when XInitThreads was not called, so that pure
15431    XCB code can use multiple threads even in an otherwise single-threaded
15432    Xlib application.
15433    
15434    Commit by Josh Triplett and Jamey Sharp.
15435
15436commit 95523387d619af5b400748898d722e080b5ce1a6
15437Author: Jamey Sharp <jamey@minilop.net>
15438Date:   Sat Jun 2 11:57:39 2007 -0700
15439
15440    Allow re-entrant Xlib calls from _XIOError.
15441    
15442    Some libraries try to clean up X resources from atexit handlers, _fini,
15443    or C++ destructors. To make these work, the Display lock should be
15444    downgraded to a user lock (as in XLockDisplay) before calling exit(3).
15445    This blocks Xlib calls from threads other than the one calling exit(3)
15446    while still allowing the exit handlers to call Xlib.
15447    
15448    This assumes that the thread calling exit will call any atexit handlers.
15449    If this does not hold, then an alternate solution would involve
15450    registering an atexit handler to take over the lock, which would only
15451    assume that the same thread calls all the atexit handlers.
15452    
15453    Commit by Josh Triplett and Jamey Sharp.
15454
15455commit 91b02b8064f4e0bcc56019f0722914850008a597
15456Author: Tilman Sauerbeck <tilman@code-monkey.de>
15457Date:   Thu May 17 19:07:34 2007 +0200
15458
15459    More constification.
15460
15461commit a4f3841940158351f9424c3f59b305cce877177d
15462Author: Tilman Sauerbeck <tilman@code-monkey.de>
15463Date:   Thu May 17 00:29:43 2007 +0200
15464
15465    Constified composite text charset table.
15466
15467commit 0581c0aa6039e6b2abb9f7b0a4f9904d8e01f00e
15468Author: Tilman Sauerbeck <tilman@code-monkey.de>
15469Date:   Wed May 16 23:19:22 2007 +0200
15470
15471    Have the compiler fill in hexTable so we don't have to do it at runtime.
15472
15473commit 0e8d9ca47dab0d069e305d5784d05f2ade04f0a8
15474Author: Tilman Sauerbeck <tilman@code-monkey.de>
15475Date:   Wed May 16 19:36:23 2007 +0200
15476
15477    More constification.
15478
15479commit 6d2bed8f04942b4de086a519ac693e729c9fdeea
15480Author: Tilman Sauerbeck <tilman@code-monkey.de>
15481Date:   Wed May 16 19:18:20 2007 +0200
15482
15483    Constify and clean up token table.
15484
15485commit 6c508eab5df5d517f7e4cbe6087308cd53a564b2
15486Author: Tilman Sauerbeck <tilman@code-monkey.de>
15487Date:   Wed May 16 18:24:42 2007 +0200
15488
15489    Constified more tables.
15490
15491commit e699c4231c205ef00d687b6412308d031b99806b
15492Author: Tilman Sauerbeck <tilman@code-monkey.de>
15493Date:   Wed May 16 18:01:23 2007 +0200
15494
15495    Constified error list.
15496
15497commit a68a1cd7cb990ba276fbc36a7591044d78b3d3c1
15498Author: Peter Hutterer <peter@cs.unisa.edu.au>
15499Date:   Tue May 15 16:54:01 2007 +0930
15500
15501    Add XGenericEvent definition and handling for long events.
15502
15503commit c76d30253f1483ac8200ad5c032a818907e65030
15504Author: Jan Willem Stumpel <jstumpel@planet.nl>
15505Date:   Fri May 4 12:00:49 2007 -0700
15506
15507    Update el_GR.UTF-8/Compose.pre to match changes in xkeyboard-config cvs
15508    
15509    Cf:
15510    
15511      https://bugs.freedesktop.org/show_bug.cgi?id=10851
15512      https://bugs.freedesktop.org/show_bug.cgi?id=10824
15513      http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=386385
15514    
15515    The greek keyboard definition was changed to replace dead_horn and
15516    dead_ogonek with U0313 COMBINING COMMA ABOVE (aka Psili) and U0314
15517    COMBINING REVERSED COMMA ABOVE (aka Dasia).
15518    
15519    This patch modifies the Greek Compose.pre to match.
15520    
15521    It is generated by the script Jan Willem Stumpel <jstumpel@planet.nl>
15522    posted to 386385@bugs.debian.org:
15523    
15524    #!/usr/bin/perl
15525    while (<>) {
15526      print $_;
15527      if (/dead_horn/) {
15528        s/dead_horn/U0313/;
15529        print $_;
15530      }
15531      elsif (/dead_ogonek/) {
15532        s/dead_ogonek/U0314/;
15533        print $_;
15534      }
15535    }
15536
15537commit a48386ce6b5f8fd2d9dc11a966c9bf5da59f3831
15538Author: Magnus Kessler <Magnus.Kessler@gmx.net>
15539Date:   Tue May 1 15:20:08 2007 +0200
15540
15541    Switched function definitions from K&R to ANSI style.
15542
15543commit 605d357074d556a05a3fba2e85cbea36a3204248
15544Author: Tilman Sauerbeck <tilman@code-monkey.de>
15545Date:   Tue May 1 14:47:03 2007 +0200
15546
15547    Tweaked configure output about the man pages suffix.
15548
15549commit 9824b40d2af4ca2376512c1be7743da0d5065900
15550Author: Alan Coopersmith <alan.coopersmith@sun.com>
15551Date:   Sat Apr 28 00:42:18 2007 -0700
15552
15553    Fix typo in nroff macro in XkbAddGeomOverlayKey.man
15554
15555commit f93849dcc68bd5042ea0884e5190dc7c35b31d68
15556Author: Alan Coopersmith <alan.coopersmith@sun.com>
15557Date:   Sat Apr 28 00:30:55 2007 -0700
15558
15559    Protect C comments and #defines in XKB man pages from being mangled by cpp
15560
15561commit f2f27d4763c7665e422fab10b96b4cf5ad6c0a6f
15562Author: Alan Coopersmith <alan.coopersmith@sun.com>
15563Date:   Sat Apr 28 00:14:50 2007 -0700
15564
15565    Add Makefile to process/install XKB man pages
15566
15567commit d9954c6f6f3a8c406b946acd0d034ff83c656156
15568Author: Dennis Arellano <Dennis.Arellano@Sun.COM>
15569Date:   Thu Aug 19 00:00:00 1999 -0700
15570
15571    Add man pages for XKB API's
15572    
15573    Man pages originally written for X11R6.4 integration to Solaris 7 11/99
15574    Sun bug id 4258344: Add new XKB API manpages for 6.4 upgrade
15575    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=4258344>
15576    
15577    (Volunteer needed to convert prototypes in man pages to ANSI C style...)
15578
15579commit f640a49b5e2ebf29f9d655df544c63bf826f619a
15580Author: Tilman Sauerbeck <tilman@code-monkey.de>
15581Date:   Fri Apr 20 18:39:59 2007 +0200
15582
15583    Markup tweak for XOpenIM.
15584
15585commit e972b0bb255af4f3258217852542faf5afa60b28
15586Author: Julien Cristau <jcristau@debian.org>
15587Date:   Fri Apr 20 18:35:09 2007 +0200
15588
15589    Bug #9695: Fixed a few argument types in the XOpenIM manpage.
15590
15591commit b4e2276f329fa42397cb8609cfcd34ebafd3d96b
15592Author: Julien Cristau <jcristau@debian.org>
15593Date:   Fri Apr 20 18:28:52 2007 +0200
15594
15595    Bug #9697: Fixed documentation of XVisualInfo struct.
15596    
15597    The "depth" member was said to be unsigned int, but it's signed.
15598
15599commit 4068f3dae01c630f825002673b1d3a047ad61863
15600Author: Julien Cristau <jcristau@debian.org>
15601Date:   Fri Apr 20 16:41:21 2007 +0200
15602
15603    Bug #9696: refer to XDefineCursor() instead of XDefineCusor().
15604
15605commit 603c2f88d4e57ce1a3c16e8b6246866e6edd8fa8
15606Author: Tilman Sauerbeck <tilman@code-monkey.de>
15607Date:   Sat Apr 7 14:42:55 2007 +0200
15608
15609    Use unistd.h to get getresuid() and friends.
15610    
15611    This works since we now have _GNU_SOURCE defined.
15612
15613commit 0300f295bbd3a0c7c46baac8e0a27aeaf53c9d9b
15614Author: Tilman Sauerbeck <tilman@code-monkey.de>
15615Date:   Sat Apr 7 14:27:12 2007 +0200
15616
15617    Bug #10562: Define _GNU_SOURCE on glibc systems.
15618
15619commit a225a0be48770beb689d5ac5da97073634f7deab
15620Author: Tilman Sauerbeck <tilman@code-monkey.de>
15621Date:   Fri Apr 6 12:46:25 2007 +0200
15622
15623    For nls/*.pre, allow people to comment lines by starting them with '##'.
15624    
15625    This fixes a bunch of cpp warnings from nls/en_US.UTF-8/Compose.pre.
15626    Fixing that file would have been a larger diff, and using ## may be
15627    nicer to use anyway.
15628
15629commit 1c75a9479011e5f1ad01c950628d0ef5a302d8b6
15630Author: Tilman Sauerbeck <tilman@code-monkey.de>
15631Date:   Fri Apr 6 11:59:31 2007 +0200
15632
15633    Bug #10475: Fixed lots of char*/const char* mixups.
15634    
15635    I didn't fix all of them, as that would require touching
15636    public headers.
15637
15638commit 680dd50193b5b3fcabdd3f1fcbd6a889d5a95c54
15639Author: Matthias Hopf <mhopf@suse.de>
15640Date:   Thu Apr 5 11:53:18 2007 +0200
15641
15642    Fix 64bit issues with reallocation.
15643
15644commit 4d38aeaca42d0bdfe34a833a142ee4d895de03bf
15645Author: Tilman Sauerbeck <tilman@code-monkey.de>
15646Date:   Wed Apr 4 18:41:18 2007 +0200
15647
15648    Fixed a few warnings.
15649
15650commit 7dc7ef398b6ad90ccd1680ed9cd1cfdd47312f5a
15651Author: Matthieu Herrb <matthieu@roadrock.(none)>
15652Date:   Tue Apr 3 15:39:52 2007 +0200
15653
15654    Multiple integer overflows in the XGetPixel() and XInitImage functions
15655    
15656    CVE-2007-1667
15657
15658commit 0284b144340a455a4b5b5011d81ac5a610372291
15659Author: David Baron <dbaron@dbaron.org>
15660Date:   Fri Mar 30 17:07:46 2007 +0200
15661
15662    Bug #7703: Fixed XSetSizeHints() et al wrt use of uninitialized data.
15663    
15664    Now only those fields of the respective hint struct are set that
15665    are actually valid in the input data.
15666    The changed functions are:
15667    XSetSizeHints(), XSetWMHints() and XSetWMSizeHints().
15668
15669commit 0994faa0c76c45b106442db461b8a30a3e1c9395
15670Author: Tilman Sauerbeck <tilman@code-monkey.de>
15671Date:   Thu Mar 29 17:31:25 2007 +0200
15672
15673    Fixed the change from the previous SendEvent commit.
15674    
15675    Testing a different patch than the one you commit is bad, right?
15676
15677commit 398d75528a84f4b8414eb0e363cf53b1b16f6fdf
15678Author: Tilman Sauerbeck <tilman@code-monkey.de>
15679Date:   Wed Mar 28 22:23:44 2007 +0200
15680
15681    Bug #10292: Fixed a memory leak related to XOpenDisplay() in the XCB code.
15682
15683commit ab0bcd07957cecc8e7c0e75d5160a625e91264fe
15684Author: David Baron <dbaron@dbaron.org>
15685Date:   Wed Mar 28 22:21:40 2007 +0200
15686
15687    Bug #7713: Initialize all of the event's fields before sending it.
15688
15689commit bc80f9fe3ccce40ee41246b97470c4f0519756ad
15690Author: Julien Cristau <jcristau@debian.org>
15691Date:   Sun Mar 18 13:14:48 2007 +0100
15692
15693    Bug #9279: Fixed a file descriptor leak.
15694
15695commit c9e28e05ae01ce8a29bea09df759b6271865b44c
15696Author: Daniel Stone <daniel@fooishbar.org>
15697Date:   Sat Dec 16 00:45:19 2006 +0200
15698
15699    include: don't distribute XlibConf.h
15700    
15701    Since XlibConf.h is built by configure, don't distribute it.
15702
15703commit dd1705ced2cac6b4b6b21e79272fcf9bed4bf376
15704Merge: 129bbb9f 769b9854
15705Author: Jeremy C. Reed <reed@glacier.reedmedia.net>
15706Date:   Thu Dec 14 14:23:20 2006 -0600
15707
15708    Merge branch 'master' of git+ssh://git.freedesktop.org/git/xorg/lib/libX11
15709
15710commit 129bbb9f9114a571556fa3a24f15ba58a5cdb2de
15711Author: Jeremy C. Reed <reed@glacier.reedmedia.net>
15712Date:   Thu Dec 14 14:21:19 2006 -0600
15713
15714    For NetBSD, define the XTHREADLIB and XTHREAD_CFLAGS.
15715
15716commit 769b9854f7eb1d6d20dd0b4a1c1215ad8e1b77b6
15717Author: Daniel Stone <daniel@fooishbar.org>
15718Date:   Wed Dec 6 18:53:00 2006 +0200
15719
15720    Makefile.am: make ChangeLog hook safer
15721    
15722    Make ChangeLog hook as safe as possible.
15723    (cherry picked from f5d6a3d24095c7ffed86705995d0874c885e7676 commit)
15724
15725commit 8a8185a649e93b90ffa820387ffdca831227f5a9
15726Author: Josh Triplett <josh@freedesktop.org>
15727Date:   Thu Nov 30 18:33:13 2006 -0800
15728
15729    Add autogen.sh to EXTRA_DIST.
15730
15731commit efe817f95ef8d05e863c83147e903140bc860de4
15732Author: Jamey Sharp <jamey@minilop.net>
15733Date:   Thu Nov 30 17:58:35 2006 -0800
15734
15735    Release libX11 1.1.1.
15736
15737commit f637a5b03164263a3af2e644cf655e52b015f1bb
15738Author: Ross Combs <rocombs@cs.nmsu.edu>
15739Date:   Sat Nov 25 14:45:17 2006 -0800
15740
15741    Debian bug #354315: Clarify return value in XGetWindowAttributes man page
15742    
15743    This man page does not discuss the actual return values of the
15744    function, but says they are of type "Status".  One might assume
15745    that this means you could compare it with the "Success" macro.
15746    One would be wrong.
15747    
15748    The X functions seem to have two three types representing status.
15749    If it is an "int" there are a number of error codes or "Success"
15750    which can be compared against.  If it is a bool, the result can be
15751    compared with "True" or "False".  If the return type is "Status" it
15752    appears that the return type is either 0 or 1.  Unfortunately the
15753    value for Success is zero, so it is important to distinguish
15754    between the first two types of return values and the third;
15755    otherwise the conditional will be inverted.
15756    
15757    XGetWindowAttributes() is one of the functions which returns zero
15758    for failure.  The man page should make this clear.
15759
15760commit c6a0b0f18ed1242eeb908f5cf767ab8381edd456
15761Author: Jamey Sharp <jamey@minilop.net>
15762Date:   Sat Nov 25 14:23:45 2006 -0800
15763
15764    Bug #9154: Always process an event for _XReadEvents, even if an error occurs
15765    
15766    Previously, process_responses (in the wait_for_first_event case called
15767    from _XReadEvents) considered any return from xcb_wait_for_event
15768    sufficient to think it had processed an event. If xcb_wait_for_event
15769    returned an error, and no more events occurred before process_responses
15770    called xcb_poll_for_event, process_responses would try to return with
15771    dpy->head NULL, and would fail an assertion for the _XReadEvents
15772    postcondition. Now, process_responses continues using xcb_wait_for_event
15773    until it gets an event.
15774
15775commit d56e78acce9b2aa1dd1bf172afedaa3bccd5e1c8
15776Author: Tilman Sauerbeck <tilman@code-monkey.de>
15777Date:   Sat Nov 25 05:29:31 2006 -0800
15778
15779    Bug #9153: Fix access to freed memory.
15780    
15781    The fix for bug #8622 introduced a smaller bug where _XReply would
15782    read memory shortly after freeing it. This patch caches the needed
15783    value in a stack-allocated variable before the heap-allocated memory
15784    is freed.
15785
15786commit 934ca763bbc0dd7ae460469bfc000ba101602bcc
15787Author: Josh Triplett <josh@freedesktop.org>
15788Date:   Fri Nov 24 19:57:58 2006 -0800
15789
15790    libx11 doesn't use inputproto in public headers; don't require it in x11.pc
15791    
15792    Based on a Debian patch.
15793
15794commit 4255997ef2d92740d51f6e63e9eabcfa089683f0
15795Author: Josh Triplett <josh@freedesktop.org>
15796Date:   Thu Nov 23 07:19:32 2006 -0800
15797
15798    Release libX11 1.1
15799
15800commit a1168e11ec9377307c51a7271faec3bf88a63a66
15801Author: Jamey Sharp <jamey@minilop.net>
15802Date:   Tue Nov 21 17:52:34 2006 -0800
15803
15804    Add note in man-page that XListFontsWithInfo is not thread-safe.
15805    
15806    _XReply drops the Display lock, so the value of dpy->request may change
15807    before _XReply is called again.
15808    
15809    I discovered this by inspection a year or two ago. I'm pretty confident
15810    in the claim, and nobody has come up with an argument for why it's safe
15811    despite appearances.
15812
15813commit 67abe024268c6b1fdee516e5d3a046ccffd7e80a
15814Author: Jamey Sharp <jamey@minilop.net>
15815Date:   Sat Nov 18 15:39:26 2006 -0800
15816
15817    Bug #8622: Fix response processing order for threaded apps
15818    
15819    Previously, process_responses (the common code for _XReply,
15820    _XReadEvents, and _XEventsQueued) took the current request sequence
15821    number as an argument, and did some highly complicated processing to
15822    attempt to process responses in order across threads.  This didn't
15823    actually work.
15824    
15825    Now, process_responses handles responses in order, by adding condition
15826    variables to the list of outstanding requests in
15827    dpy->xcb->pending_requests, and blocking on them when those requests
15828    should get processed to allow _XReply to process them; if actually
15829    called from _XReply, it returns when _XReply's request should get
15830    processed.  _XReply broadcasts on the condition variable after it has
15831    read its reply and re-acquired the display lock.
15832    
15833    Another great commit brought to you by Jamey Sharp, Josh Triplett, the
15834    Gobby collaborative text editor, conspy, and ridiculous amounts of SSH
15835    forwarding.
15836    
15837    Signed-off-by: Josh Triplett <josh@freedesktop.org>
15838    Signed-off-by: Jamey Sharp <jamey@minilop.net>
15839
15840commit 941f02ede63baa46f93ed8abccebe76fb29c0789
15841Author: Lars Knoll <lars@trolltech.com>
15842Date:   Wed Nov 8 12:17:41 2006 -0800
15843
15844    Don't hold the display lock around callbacks to the application.
15845    
15846    This fixes an XCB locking assertion failure, particularly with emacs.
15847
15848commit e494ecaac1ec8a22bd9a85f800fca74d02e9d358
15849Author: Diego 'Flameeyes' Pettenò  <flameeyes@gentoo.org>
15850Date:   Tue Nov 7 09:32:00 2006 -0800
15851
15852    Add xcb-xlib dependency to x11.pc when built against XCB.
15853
15854commit 2302008a3793eb4df8ede777d54fe06505c47eaf
15855Author: Eric Anholt <eric@anholt.net>
15856Date:   Mon Nov 6 17:11:42 2006 -0800
15857
15858    XCB: Allocate the right amount of memory for dpy->lock_fns.
15859    
15860    Fixes a crash I was experiencing on startup of anything using gdk.
15861
15862commit 5f860655be88108b03ccd97470a0814819254bf0
15863Author: Jamey Sharp <jamey@minilop.net>
15864Date:   Thu Nov 2 17:55:31 2006 -0800
15865
15866    Release libX11 1.1 RC2 (1.0.99.2).
15867
15868commit a6f4bbf7b1d725b0f04bd660f57b861a76b19831
15869Author: Benno Schulenberg <bensberg@justemail.net>
15870Date:   Sun Oct 29 03:10:30 2006 +0300
15871
15872    nls (en_US): remove long compositions that override shorter (bug #2286)
15873    Remove long compositions that override (or get overriden by) later shorter
15874    compositions, e.g. a four-key compose sequence that gets overriden by a
15875    later three-key compose sequence.
15876
15877commit 0280bf11ef88673a9b5bba3a91a599260f1f0949
15878Author: Benno Schulenberg <bensberg@justemail.net>
15879Date:   Sun Oct 29 03:08:36 2006 +0300
15880
15881    nls: remove shadowed compose entries (bug #2286)
15882    Remove compose entries shadowed by others later on.
15883
15884commit d118f2b1ef10997194b281524177dea7396da7dd
15885Author: Benno Schulenberg <bensberg@justemail.net>
15886Date:   Sun Oct 29 03:07:15 2006 +0300
15887
15888    nls: remove duplicate compose entries (bug #2286)
15889    Remove a bunch of duplicate entries from various Compose files.
15890
15891commit 5e1cc2fe20e5904ca1e05a4cb7be13d450a593bb
15892Author: Caolan McNamara <caolanm@redhat.com>
15893Date:   Sun Oct 29 02:46:15 2006 +0300
15894
15895    XKB geometry: fix leaks in GetKeyboardByName (bug #8099)
15896    Don't leak the name and value of every property we parse, as well as the
15897    name of every colour.
15898
15899commit 686bb8b35acf6cecae80fe89b2b5853f5816ce19
15900Author: Matthias Hopf <mhopf@suse.de>
15901Date:   Wed Oct 18 14:25:04 2006 +0200
15902
15903    Fix double open of compose file.
15904    
15905    Issue found by Kees Cook <kees@canonical.com>.
15906
15907commit d3e65cb8cddf08913d83c9df2bb9b1517f2ad3a8
15908Author: Jamey Sharp <jamey@minilop.net>
15909Date:   Sat Oct 14 21:25:10 2006 -0700
15910
15911    XCB: check for and handle I/O errors in _XGetXCBBuffer.
15912
15913commit 256eba6b40c5f811a03b04abf5f85f728ee3ab5d
15914Author: Jamey Sharp <jamey@minilop.net>
15915Date:   Wed Oct 11 00:06:50 2006 -0700
15916
15917    XKB bugfix: SyncHandle must be called after UnlockDisplay, not before.
15918
15919commit 1eedf1bd033e496843cfde42ae4ae5a119298605
15920Author: Jamey Sharp <jamey@minilop.net>
15921Date:   Tue Oct 10 23:03:28 2006 -0700
15922
15923    Add correct Display locking to XKB functions.
15924    
15925    Some XKB functions didn't correctly call LockDisplay or UnlockDisplay.
15926    This patch fixes at least some instances of that problem.
15927    
15928    Thanks to Magnus Kessler <Magnus.Kessler@gmx.net> for finding these bugs
15929    and proposing a fix, which this patch is based on.
15930
15931commit e17c2cbe9fbaa1600d4b9463ec800a874b0d87cd
15932Author: David Nusinow <dnusinow@debian.org>
15933Date:   Tue Oct 10 22:11:05 2006 -0400
15934
15935    Dynamically generate internal manpage section using __libmanpagesuffix__ so that it actually matches the section if you don't use 3X11
15936
15937commit e53557da969b706dbc843f6fde3db31ffe382e0f
15938Author: Jamey Sharp <jamey@minilop.net>
15939Date:   Sat Oct 7 21:00:36 2006 -0700
15940
15941    Release libX11 1.1 RC1 (1.0.99.1).
15942
15943commit bf237409c5fce32c557d298f62f44d456c2b5bc8
15944Merge: ba477191 2d426d1f
15945Author: Jamey Sharp <jamey@minilop.net>
15946Date:   Sat Oct 7 21:07:16 2006 -0700
15947
15948    As XCB support is about to be released in libX11, stable is now subsumed by master.
15949
15950commit ba477191c67ce93e61423cc1abe35275704cce50
15951Author: Jamey Sharp <jamey@minilop.net>
15952Date:   Sat Oct 7 03:48:13 2006 -0700
15953
15954    XCB: Don't rely on having the definition of struct xcb_setup_t available.
15955
15956commit 117b55cbd0b0ce51362df88363ed83d44a493ac7
15957Author: Jamey Sharp <jamey@minilop.net>
15958Date:   Fri Oct 6 16:27:31 2006 -0700
15959
15960    xcb_poll_for_event no longer takes an 'int *error' out-parameter.
15961
15962commit caaa8e8a55e837b3585c1dee7bef194fc4c79d16
15963Author: Josh Triplett <josh@freedesktop.org>
15964Date:   Fri Oct 6 16:26:11 2006 -0700
15965
15966    Actually ship Xxcbint.h
15967
15968commit 7b027e53b5e393082f4f515c8ba18077eb97163f
15969Author: Josh Triplett <josh@freedesktop.org>
15970Date:   Fri Oct 6 16:25:50 2006 -0700
15971
15972    Clean ChangeLog only in "make maintainer-clean", not "make clean"
15973    
15974    ChangeLog requires a git repo to generate; make clean and make distclean
15975    shouldn't get rid of it.
15976
15977commit cab22e02e78b3e5b8a73d1cd55cf6686426b47e0
15978Author: Josh Triplett <josh@freedesktop.org>
15979Date:   Fri Oct 6 16:24:58 2006 -0700
15980
15981    Add ChangeLog and "make dist"-generated files to .gitignore
15982
15983commit e4c7cfdee4a40e466c0c6b370cabd432e9e855a0
15984Author: Josh Triplett <josh@freedesktop.org>
15985Date:   Fri Oct 6 15:53:27 2006 -0700
15986
15987    Add manual pages for XGetXCBConnection and XSetEventQueueOwner
15988
15989commit 688224cea95e453f94c5a602dc6fce84bc93dfc0
15990Author: Josh Triplett <josh@freedesktop.org>
15991Date:   Fri Oct 6 13:41:16 2006 -0700
15992
15993    Remove unnecessary prototype for _XFreeDisplayStructure in xcb_disp.c
15994
15995commit ab728ca372288d0db1b486c265e34c1376f29104
15996Author: Josh Triplett <josh@freedesktop.org>
15997Date:   Fri Oct 6 12:36:39 2006 -0700
15998
15999    XCL is dead; long live Xlib/XCB
16000    
16001    Rename all instances of "XCL" to Xlib/XCB-derived names.
16002    
16003    The only user-visible change: rename the include file <X11/xcl.h> to
16004    <X11/Xlib-xcb.h>; programs will need to change their #include lines to match.
16005    
16006    Remove the XCL cast inlines from Xlib-xcb.h.
16007
16008commit 5b73093203039d307eb7ab3845c3ced207e9e26c
16009Author: Josh Triplett <josh@freedesktop.org>
16010Date:   Fri Oct 6 11:33:49 2006 -0700
16011
16012    Add XCB developers to AUTHORS
16013
16014commit 1cb71ff139276a0a58c60ea5f261f64b94706b9b
16015Author: Josh Triplett <josh@freedesktop.org>
16016Date:   Fri Oct 6 11:21:28 2006 -0700
16017
16018    Fix email addresses in README
16019
16020commit 12f038669278019594ca0ed53dadcf4e84092422
16021Author: Jamey Sharp <jamey@minilop.net>
16022Date:   Fri Oct 6 02:13:05 2006 -0700
16023
16024    XCB: Handle all responses in order of monotonically increasing sequence number.
16025
16026commit f392680273278b43079302206897f794e60f3c70
16027Author: Josh Triplett <josh@freedesktop.org>
16028Date:   Fri Oct 6 01:11:08 2006 -0700
16029
16030    Actually install x11-xcb.pc, and ship x11-xcb.pc.in
16031
16032commit f1fcad2e3fd17aaf1294f1d8e9f406fd5b32a863
16033Author: Jamey Sharp <jamey@minilop.net>
16034Date:   Thu Oct 5 18:32:29 2006 -0700
16035
16036    XCB: correctly handle failure to connect to X server.
16037
16038commit e754b3b078d556c7861da56aad47d244e9199e06
16039Author: Josh Triplett <josh@freedesktop.org>
16040Date:   Thu Oct 5 17:44:22 2006 -0700
16041
16042    Split public Xlib/XCB functions into libX11-xcb
16043    
16044    We can never change the libX11 soname, and we don't want to commit to never
16045    changing the public Xlib/XCB functions, so split them into a separate library
16046    libX11-xcb.  This also means that a program linked solely against libX11
16047    should work with either Xlib or Xlib/XCB, which will make life easier for
16048    package maintainers.
16049    
16050    Signed-off-by: Josh Triplett <josh@freedesktop.org>
16051    Acked-by: Jamey Sharp <jamey@minilop.net>
16052
16053commit ffd367f708b295abaedf3a23a1bfd4710d171d6f
16054Author: Jamey Sharp <jamey@minilop.net>
16055Date:   Wed Oct 4 17:16:46 2006 -0700
16056
16057    No longer #include Xmd from xcl.h: we do not need it.
16058
16059commit 3aff149d42ba8ed620091971b3766bdf96c62aaf
16060Author: Jamey Sharp <jamey@minilop.net>
16061Date:   Wed Oct 4 16:58:32 2006 -0700
16062
16063    XCB: Revert locking to simple wrapper around libX11's normal locks.
16064    
16065    No more recursive mutexes, no more banging XCB's I/O lock in-place, and
16066    reduces the differences between the previous stable release and an
16067    XCB-enabled one. Sadly, Xlib's pluggable thread functions work again
16068    too, now. I apologize to the world.
16069
16070commit 8ff122fb529bdb1c2b9a86b12d06b6da1b35d708
16071Author: Jamey Sharp <jamey@minilop.net>
16072Date:   Mon Sep 25 04:54:52 2006 -0700
16073
16074    Link explicitly against XCB's Xlib compatibility functions.
16075
16076commit bde3cd123d65a2f36ee0c417f5f231b7e01d0671
16077Author: Jamey Sharp <jamey@minilop.net>
16078Date:   Mon Sep 25 04:13:20 2006 -0700
16079
16080    libxcb now installs header files in <xcb>, not <X11/XCB>.
16081
16082commit 87d00207f5a1f25a45a153618739cd6481814f89
16083Author: Ian Osgood <iano@quirkster.com>
16084Date:   Sun Sep 24 23:39:01 2006 -0700
16085
16086    Track XCB's "Great Renaming".
16087
16088commit 85a5e98dff9b7752fae157fad9b8c9825cb0efab
16089Author: Jamey Sharp <jamey@minilop.net>
16090Date:   Tue Sep 12 23:02:42 2006 -0700
16091
16092    Quit using XCBGetQueuedRequestRead.
16093
16094commit a61936fc4e9bd93b108764bbacd5b8f786e51915
16095Author: Tollef Fog Heen <tfheen@err.no>
16096Date:   Wed Aug 30 00:05:54 2006 +0300
16097
16098    nls: use _XlcUtf8Loader for en_US (bug #7982)
16099    Use _XlcUtf8Loader instead of _XlcUnicodeLoade,r bringing it into line with
16100    every other locale.
16101
16102commit abcc7e1865cdfbd591f6520cfe4257f0b0b1c03e
16103Author: Alan Coopersmith <alan.coopersmith@sun.com>
16104Date:   Wed Aug 23 18:49:30 2006 -0700
16105
16106    When opening display, if LOCALCONN fails, fall back to UNIXCONN, then TCPCONN
16107    
16108    Port to X11R7 of Sun bug fix 4061225 by Alex Chen for X11R6 - when failing to
16109    connect on a named pipe, try a Unix socket first, to better support people who
16110    replace their X servers with ones that don't support named pipe transport.
16111    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=4061225>
16112
16113commit 1ddc44c1cada7e926bd4787406444ce7c36b61e1
16114Author: Mark Brown <mark.brown@sun.com>
16115Date:   Thu Jul 27 19:17:10 2006 -0700
16116
16117    Sun bug 1149809: Document event delivery when grab is terminated.
16118
16119commit 171107b03ac89d94f9006c7cda242aeefb9ecd16
16120Author: Dennis Arellano <Dennis.Arellano@Sun.COM>
16121Date:   Thu Jul 27 18:47:06 2006 -0700
16122
16123    Sun bug 4091271: XGetWindowProperty is missing a crucial prop_return description
16124    
16125    Document that 32-bit format properties are always returned in arrays of type
16126    long, even on systems where long is 64-bits.
16127    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=4091271>
16128
16129commit 8309efe6550877cd0bf22979904b3f6bd3e6cffa
16130Author: Alan Coopersmith <alan.coopersmith@sun.com>
16131Date:   Mon Jul 24 15:52:00 2006 -0700
16132
16133    Add support for "make lint" to check code with lint/sparse/etc.
16134
16135commit 931e02fbd1acd09aae2b0954c34342c86c72dff6
16136Author: Alan Coopersmith <alan.coopersmith@sun.com>
16137Date:   Mon Jul 24 15:50:52 2006 -0700
16138
16139    ANSIfy some static function definitions
16140
16141commit 20b7abcaac324d90454de63f32f4a2b398e69e63
16142Author: Alan Coopersmith <alan.coopersmith@sun.com>
16143Date:   Mon Jul 24 15:01:40 2006 -0700
16144
16145    Fix sparse warning: Using plain integer as NULL pointer
16146
16147commit d158ab29930513c4097f5b67e7bea08ed2bfd62c
16148Author: Alan Coopersmith <alan.coopersmith@sun.com>
16149Date:   Mon Jul 24 14:00:24 2006 -0700
16150
16151    Remove unused variable
16152
16153commit 30377000375bdb958042dcb1f38503c94ef21eaf
16154Author: Eric Anholt <anholt@FreeBSD.org>
16155Date:   Fri Jul 21 18:55:36 2006 -0400
16156
16157    Bug #7188: Fix the documentation of XUrgencyHint (not UrgencyHint).
16158
16159commit 4eba45879aea4e415ab550ee56b900d060099110
16160Author: Matthieu Herrb <matthieu.herrb@laas.fr>
16161Date:   Sun Jul 16 10:55:39 2006 +0200
16162
16163    set GIT_DIR=${srcdir}/.git for git-log
16164
16165commit 2d426d1f2608fedb77bd7d010dabece76b8d4a60
16166Author: Aaron Plattner <aplattner@nvidia.com>
16167Date:   Tue Jul 11 13:27:49 2006 -0700
16168
16169    Add a .PHONY to ensure the ChangeLog isn't stale.
16170    
16171    Setting the ChangeLog rule as phony forces it to be re-run even when the
16172    ChangeLog file already exists. Research indicates .PHONY is portable to BSD and
16173    Solaris make.
16174    (cherry picked from b8a98809ed81e1226775e6447ef219ffc01334b5 commit)
16175
16176commit b8a98809ed81e1226775e6447ef219ffc01334b5
16177Author: Aaron Plattner <aplattner@nvidia.com>
16178Date:   Tue Jul 11 13:27:49 2006 -0700
16179
16180    Add a .PHONY to ensure the ChangeLog isn't stale.
16181    
16182    Setting the ChangeLog rule as phony forces it to be re-run even when the
16183    ChangeLog file already exists. Research indicates .PHONY is portable to BSD and
16184    Solaris make.
16185
16186commit 8f2be66089b88e4ed6acb0211ea107f4bb910bd3
16187Author: Mayank Jain <majain@redhat.com>
16188Date:   Tue Jul 11 19:42:47 2006 +0100
16189
16190    add Indian language locales
16191    Add as, kn, ml, or, ur, and te locales.
16192
16193commit a92eb6785699bbc9c6c3813f6af3bb9431a3f6b0
16194Author: Matthias Hopf <mhopf@suse.de>
16195Date:   Tue Jul 4 12:16:30 2006 +0200
16196
16197    Fix for autoconf 2.60 issue.
16198    
16199    Updated AC_DEFINE_DIR.
16200    Reverted datarootdir change.
16201
16202commit 644f4828b15bce42b597eb123ba0bbc372c46c03
16203Author: Keith Packard <keithp@neko.keithp.com>
16204Date:   Sat Jul 1 21:31:23 2006 -0700
16205
16206    Work around recent autoconf (2.59?) changes in directory expansion.
16207    
16208    Recent autoconf versions have changed how directory names are managed in the
16209    configure.ac script; automatic 'eval' invocations now occur as a part of the
16210    AC_DEFINE_DIR macro which make it imperative that AC_DEFINE_DIR be executed
16211    before the variables are used in further macro definitions. Also, ${datadir}
16212    is apparantly an old name for ${datarootdir} as ${datadir} doesn't get
16213    expanded correctly by AC_DEFINE_DIR. This looks like an autoconf bug, but it
16214    is easy to work around by just using ${datarootdir} instead of ${datadir}.
16215
16216commit be70a31229aa106aff0a09d78c00812682cd3475
16217Author: Keith Packard <keithp@neko.keithp.com>
16218Date:   Sat Jul 1 01:56:05 2006 -0700
16219
16220    Xlib/XCB: handle 32-bit sequence wrap.
16221    
16222    Replace broken sequence compares with XCB_SEQUENCE_COMPARE (copied from
16223    XCB).
16224    Account for XCB sequence 0 handling.
16225
16226commit 99c711707ad08e1396e123b1c7df687c560a489a
16227Author: Donnie Berkholz <spyderous@gentoo.org>
16228Date:   Thu Jun 29 19:43:20 2006 -0700
16229
16230    Bump version to 1.0.3.
16231
16232commit cde3c0dd72af2b490e80cffca962e3487dd31be4
16233Author: Donnie Berkholz <spyderous@gentoo.org>
16234Date:   Thu Jun 29 19:39:36 2006 -0700
16235
16236    Bug #7349: Missed one of the setuid fixes.
16237    (cherry picked from e9614c963b532f46a7932c2305a4b177a996a222 commit)
16238
16239commit df3fef8983d96c59d481c4cdaf1f271d54a116d2
16240Author: Matthias Hopf <mhopf@suse.de>
16241Date:   Thu Jun 29 18:59:57 2006 +0200
16242
16243    Update to final Compose cache directory location.
16244    (cherry picked from abda4d223e9cce9ac6e7b5d82a5680d9a502e52a commit)
16245
16246commit 912ef198292d3053daa810f842510e5d62ded0f0
16247Author: Matthias Hopf <mhopf@suse.de>
16248Date:   Thu Jun 29 17:41:41 2006 +0200
16249
16250    Fix alignment of trees and wide chars in the cache.
16251    (cherry picked from 40a64c61f8bc33d497e1224e02c41dea2d424d97 commit)
16252
16253commit 2ece832118b3ee5d8ed19f1ee9b1c822b70ec6e9
16254Author: Matthias Hopf <mhopf@suse.de>
16255Date:   Wed Jun 28 19:17:03 2006 +0200
16256
16257    First (dummy) entry of compose caches was not initialized and thus contained varying garbage.
16258    (cherry picked from f442dcaa56f8ecb7443e8e51c88ed97e10dbdba3 commit)
16259
16260commit e9614c963b532f46a7932c2305a4b177a996a222
16261Author: Donnie Berkholz <spyderous@gentoo.org>
16262Date:   Thu Jun 29 19:39:36 2006 -0700
16263
16264    Bug #7349: Missed one of the setuid fixes.
16265
16266commit abda4d223e9cce9ac6e7b5d82a5680d9a502e52a
16267Author: Matthias Hopf <mhopf@suse.de>
16268Date:   Thu Jun 29 18:59:57 2006 +0200
16269
16270    Update to final Compose cache directory location.
16271
16272commit 40a64c61f8bc33d497e1224e02c41dea2d424d97
16273Author: Matthias Hopf <mhopf@suse.de>
16274Date:   Thu Jun 29 17:41:41 2006 +0200
16275
16276    Fix alignment of trees and wide chars in the cache.
16277
16278commit f442dcaa56f8ecb7443e8e51c88ed97e10dbdba3
16279Author: Matthias Hopf <mhopf@suse.de>
16280Date:   Wed Jun 28 19:17:03 2006 +0200
16281
16282    First (dummy) entry of compose caches was not initialized and thus contained varying garbage.
16283
16284commit bdbe464d774e01d317f67c63ebbda2fd0edbbdd1
16285Author: Donnie Berkholz <spyderous@gentoo.org>
16286Date:   Thu Jun 22 23:59:03 2006 -0700
16287
16288    Delete ChangeLog, and add a rule to autogenerate it for distribution. Also
16289    add 'foreign' to AM_INIT_AUTOMAKE to make autotools happy with not having a
16290    ChangeLog.
16291    (cherry picked from b0edfb8df16ab8c9959b83a4c966d55a59c4e295 commit)
16292
16293commit b0edfb8df16ab8c9959b83a4c966d55a59c4e295
16294Author: Donnie Berkholz <donnie@comet.(none)>
16295Date:   Thu Jun 22 23:47:38 2006 -0700
16296
16297    Delete ChangeLog, and add a rule to autogenerate it for distribution. Also
16298    add 'foreign' to AM_INIT_AUTOMAKE to make autotools happy with not having a
16299    ChangeLog.
16300
16301commit dd54981aa76e9dfdc4c3302d6105b4b229447c84
16302Author: Donnie Berkholz <donnie@comet.(none)>
16303Date:   Thu Jun 22 15:47:38 2006 -0700
16304
16305    Bump version to 1.0.2.
16306
16307commit c93539d974a67f596a5eb5b65042d26602546c72
16308Author: Matthieu Herrb <matthieu@deville.herrb.com>
16309Date:   Tue Jun 20 21:04:03 2006 +0200
16310
16311    Check setuid() return value.
16312    (cherry picked from 5169d0e08ff6acb350a6ea768623f5ff0b85b05f commit)
16313
16314commit 605533f814ab7892991578706a6458f61a89ca4d
16315Author: Derek Wang <derek.wang@sun.com>
16316Date:   Mon Jun 19 11:05:37 2006 -0700
16317
16318    Sun bug 6209243: XExtentsOfFontSet causes segfault when font set not loaded
16319    (cherry picked from eff50c94a07194297e705da53d9fbb3a40fb9ad4 commit)
16320
16321commit 5bbd0822c5a926de0ed293437fb9f2b75cf3c4f4
16322Author: Scott Revelt <scott.revelt@sun.com>
16323Date:   Fri Jun 16 19:11:13 2006 -0700
16324
16325    Sun bug 4022903: Xcms routines may fail if sscanf() is looking for separators
16326    based on locale that doesn't match those used in the Xcms.txt
16327    (cherry picked from 94f3213fc4bd6ec49bfb68e8b4a4fddea2bf3baa commit)
16328
16329commit 0b05cd4da6134df527fb010384a9fd569bd5d6a3
16330Author: Alan Coopersmith <alanc@alf.(none)>
16331Date:   Fri Jun 16 18:53:33 2006 -0700
16332
16333    Add *~ to ignore emacs droppings
16334    (cherry picked from c33d7b8282ac196b36229be26442296768c16f3e commit)
16335
16336commit 214658b76b56768f69c3959a11525aae7813f448
16337Author: Matthias Hopf <mhopf@suse.de>
16338Date:   Fri Jun 16 15:36:40 2006 +0200
16339
16340    Bug #3104: Compose table cache for faster X11 application starts.
16341    (cherry picked from 1f4c9893ade08bad30c9bd12a36bee57d30b001e commit)
16342
16343commit 13968a23aaea838ba4b69e42e8900f803499e091
16344Author: Matthias Hopf <mhopf@suse.de>
16345Date:   Tue Jun 13 20:23:46 2006 +0200
16346
16347    Bug #3104: Compose table cache for faster X11 application starts.
16348    (cherry picked from 4fe22647e6010a2886c2f3a7093adeaeb6678faa commit)
16349
16350commit e7f8bca08f5476d0ca262097639ac7d424bb4d10
16351Author: Lubos Lunak <llunak@suse.de>
16352Date:   Mon Jun 12 18:48:08 2006 +0200
16353
16354    Bug #3104: Compose table cache for faster X11 application starts.
16355    (cherry picked from 1d28a655629a11ea7fd1e5df4c7b77dd4b63e3be commit)
16356
16357commit f506aaf8ac9aae1ee8daaef6cde34ee85aecd641
16358Author: Matthias Hopf <mhopf@suse.de>
16359Date:   Fri Jun 9 18:24:02 2006 +0200
16360
16361    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.
16362    (cherry picked from 9354351fcb8baeaab85250d14409cfb4fa50f3e9 commit)
16363
16364commit 0e6d5e979aacb0c295ce79369ecc5f22ffa7922c
16365Author: Jamey Sharp <jamey@minilop.net>
16366Date:   Wed Jun 7 20:29:05 2006 -0700
16367
16368    Fix bug #7035: unnecessary memmove in XOpenDisplay.
16369    Using memmove on the connection setup data causes a problem for XCB, but making
16370    Xlib stop doing that should be harmless for non-XCB as well.
16371    (cherry picked from b18713ec3f36a10b3cdb1e16f9550e1d2e05dff0 commit)
16372
16373commit cd7328c46ae72903ed02832828891b2dab4d5ee0
16374Author: Daniel Stone <daniels@preemptive.fooishbar.org>
16375Date:   Sat Jun 3 13:51:51 2006 +0300
16376
16377    Fix threading support on GNU/kFreeBSD systems.  (Robert Millan)
16378    (cherry picked from e3acee88cfcc4ef0fa8a7db39763a5ebe2e985cb commit)
16379
16380commit c336eb6b80a6f91da1d0b3d28634a2cfde324670
16381Merge: 33556ca8 ad9ebbd2
16382Author: Donnie Berkholz <donnie@comet.(none)>
16383Date:   Thu Jun 22 14:25:35 2006 -0700
16384
16385    Merge branch 'stable' of http://people.freedesktop.org/~jamey/libX11 into stable
16386
16387commit 213dacad21740466e7ab31b01d3fc513fe4b3e74
16388Author: Daniel Stone <daniel@fooishbar.org>
16389Date:   Thu Jun 22 17:20:59 2006 +0300
16390
16391    Bump to 1.0.99.0 to avoid confusion.
16392
16393commit efedfd68e31bcee2d21ac340be8dc9e1825ec890
16394Merge: e3acee88 4b8eb5d4
16395Author: Daniel Stone <daniel@fooishbar.org>
16396Date:   Thu Jun 22 16:53:45 2006 +0300
16397
16398    Merge branch 'master' of git+ssh://git.freedesktop.org/srv/git.freedesktop.org/git/xorg/lib/libX11
16399
16400commit 4b8eb5d4a1da73a94b5a6ab12e34784aae4c79c5
16401Merge: 5169d0e0 eff50c94
16402Author: Matthieu Herrb <matthieu@deville.herrb.com>
16403Date:   Tue Jun 20 21:05:15 2006 +0200
16404
16405    Merge branch 'master' of git+ssh://herrb@git.freedesktop.org/git/xorg/lib/libX11
16406
16407commit 5169d0e08ff6acb350a6ea768623f5ff0b85b05f
16408Author: Matthieu Herrb <matthieu@deville.herrb.com>
16409Date:   Tue Jun 20 21:04:03 2006 +0200
16410
16411    Check setuid() return value.
16412
16413commit eff50c94a07194297e705da53d9fbb3a40fb9ad4
16414Author: Derek Wang <derek.wang@sun.com>
16415Date:   Mon Jun 19 11:05:37 2006 -0700
16416
16417    Sun bug 6209243: XExtentsOfFontSet causes segfault when font set not loaded
16418
16419commit 94f3213fc4bd6ec49bfb68e8b4a4fddea2bf3baa
16420Author: Scott Revelt <scott.revelt@sun.com>
16421Date:   Fri Jun 16 19:11:13 2006 -0700
16422
16423    Sun bug 4022903: Xcms routines may fail if sscanf() is looking for separators
16424    based on locale that doesn't match those used in the Xcms.txt
16425
16426commit c33d7b8282ac196b36229be26442296768c16f3e
16427Author: Alan Coopersmith <alanc@alf.(none)>
16428Date:   Fri Jun 16 18:53:33 2006 -0700
16429
16430    Add *~ to ignore emacs droppings
16431
16432commit 1f4c9893ade08bad30c9bd12a36bee57d30b001e
16433Author: Matthias Hopf <mhopf@suse.de>
16434Date:   Fri Jun 16 15:36:40 2006 +0200
16435
16436    Bug #3104: Compose table cache for faster X11 application starts.
16437
16438commit 4fe22647e6010a2886c2f3a7093adeaeb6678faa
16439Author: Matthias Hopf <mhopf@suse.de>
16440Date:   Tue Jun 13 20:23:46 2006 +0200
16441
16442    Bug #3104: Compose table cache for faster X11 application starts.
16443
16444commit 1d28a655629a11ea7fd1e5df4c7b77dd4b63e3be
16445Author: Lubos Lunak <llunak@suse.de>
16446Date:   Mon Jun 12 18:48:08 2006 +0200
16447
16448    Bug #3104: Compose table cache for faster X11 application starts.
16449
16450commit 9354351fcb8baeaab85250d14409cfb4fa50f3e9
16451Author: Matthias Hopf <mhopf@suse.de>
16452Date:   Fri Jun 9 18:24:02 2006 +0200
16453
16454    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.
16455
16456commit b18713ec3f36a10b3cdb1e16f9550e1d2e05dff0
16457Author: Jamey Sharp <jamey@minilop.net>
16458Date:   Wed Jun 7 20:29:05 2006 -0700
16459
16460    Fix bug #7035: unnecessary memmove in XOpenDisplay.
16461    Using memmove on the connection setup data causes a problem for XCB, but making
16462    Xlib stop doing that should be harmless for non-XCB as well.
16463
16464commit ad9ebbd2424bc2699944ffdf4e19e13f9dd8ab84
16465Author: Daniel Stone <daniels@preemptive.fooishbar.org>
16466Date:   Sat Jun 3 12:57:55 2006 +0300
16467
16468    Bug #2186: Add cs_CZ.iso8859-2 alias.
16469
16470commit 9e7765e0b1cbaae6643072d91066ba1201b36227
16471Author: Daniel Stone <daniel@fooishbar.org>
16472Date:   Fri Jun 2 02:46:29 2006 +0300
16473
16474    nls: Serbian (sr_CS) update (#5575)
16475    
16476    Bug #5575: 'Yugoslavia' has changed to Serbia & Montenegro, along with a
16477    corresponding locale change.  Update compose.dir.pre, locale.alias.pre,
16478    and locale.dir.pre.  (Milos Komarcevic)
16479
16480commit a4ac2242b588da23044a20aa999ae84d4de7b2d8
16481Author: Daniel Stone <daniel@fooishbar.org>
16482Date:   Fri Jun 2 02:24:25 2006 +0300
16483
16484    im: add Braille input method (#6296)
16485    
16486    Bug #6296: Add a Braille input method.  (Samuel Thibault)
16487
16488commit 90de1e2e141ec591048a76cb695579ef809a28d3
16489Author: Daniel Stone <daniel@fooishbar.org>
16490Date:   Fri Jun 2 02:22:17 2006 +0300
16491
16492    xkb support: small typo
16493
16494commit 4c3e34bece7402f08139d34d1ef5834e3cf533c7
16495Author: Daniel Stone <daniel@fooishbar.org>
16496Date:   Fri Jun 2 01:50:24 2006 +0300
16497
16498    en_US.UTF-8 Compose.pre: updates from Simos (#5129)
16499    
16500    Bug #5129: Numerous updates from Simos Xenitellis, fixing Unicode keysyms,
16501    adding Unicode character names, removing duplicate entries, et al.
16502
16503commit 0c6473dd329c7334ae511884bcb6e73e632c784f
16504Author: Daniel Stone <daniel@fooishbar.org>
16505Date:   Fri Jun 2 01:44:53 2006 +0300
16506
16507    nls: fix use of non-keysym dead_space (#5107)
16508    
16509    Bug #5107: Change users of dead_space to space.
16510
16511commit 6f99f6349de5120f1cb7e02fbc97849341bc48e8
16512Author: Daniel Stone <daniel@fooishbar.org>
16513Date:   Fri Jun 2 01:41:18 2006 +0300
16514
16515    optional XKB support fix
16516    
16517    Fix compilation with --disable-xkb.
16518
16519commit 217d43ed44ced901122093af3ef1294e1736bb77
16520Author: Daniel Stone <daniel@fooishbar.org>
16521Date:   Fri Jun 2 01:39:12 2006 +0300
16522
16523    i18n: separate data and lib directories
16524    
16525    Break out locale data into separate data and library directories, under
16526    $(datadir) and $(libdir), respectively, by default.
16527
16528commit 92fa7fcde8df22830fca7c0275ab201033f7909c
16529Author: Adam Jackson <ajax@benzedrine.nwnk.net>
16530Date:   Thu May 11 14:04:48 2006 -0400
16531
16532    libXcursor.so.1, not libXcursor.so
16533
16534commit 135b4df13ed7c35dbae8975f302fc1fb8412d7c0
16535Author: Daniel Stone <daniels@preemptive.fooishbar.org>
16536Date:   Wed May 10 18:06:03 2006 +0300
16537
16538    XKBMisc.c: use Xfree, not xfree
16539    
16540    Use Xfree() instead of xfree() when freeing interps.
16541
16542commit 3518d772b08e3433bc28b4d8d293fa53ca25f0ee
16543Author: Daniel Stone <daniels@preemptive.fooishbar.org>
16544Date:   Wed May 10 14:51:37 2006 +0300
16545
16546    locale.alias.pre: bg_BG typo fix
16547    
16548    Fix typo (be_BG.UTF-8 rather than bg_BG.UTF-8) in locale.alias.pre.
16549
16550commit cc533db60cb64dc163c66451933a9bf77c519062
16551Author: Daniel Stone <daniels@endtroducing.localdomain>
16552Date:   Sun Apr 9 22:22:03 2006 +0300
16553
16554    Coverity #203, #204: Fix potential NULL dereferences.
16555
16556commit b83adf7dfd6157694fe4f232012fef36cd9666da
16557Author: Daniel Stone <daniels@endtroducing.localdomain>
16558Date:   Sun Apr 9 22:20:25 2006 +0300
16559
16560    Coverity #205: Fix potential NULL dereference.
16561
16562commit 2d0cd10ad907864d0136739eaac459779c9a5332
16563Author: Daniel Stone <daniels@endtroducing.localdomain>
16564Date:   Sun Apr 9 22:18:20 2006 +0300
16565
16566    Coverity #209: Fix potential NULL dereference. (Alan Coopersmith)
16567
16568commit dc2f3966068d66a564aa452cab9f0c26657fa1df
16569Author: Daniel Stone <daniels@preemptive.research.nokia.com>
16570Date:   Fri Apr 7 18:11:52 2006 +0300
16571
16572    Coverity #826: Fix potential memory leak.
16573
16574commit 23df609ec451a01c77e8f31ecc85c5af7c62efed
16575Author: Daniel Stone <daniels@preemptive.research.nokia.com>
16576Date:   Fri Apr 7 17:49:41 2006 +0300
16577
16578    Bug #1625: Include keysym.h from Xutil.h.
16579
16580commit 5262a1945c543a3419ed626e1deb09ef5b4584c1
16581Author: Eric Anholt <anholt@leguin.anholt.net>
16582Date:   Wed Apr 5 17:12:15 2006 -0700
16583
16584    Check if visualList == NULL, not nVisualsMatched == 0. NULL happens in more
16585    
16586    cases (allocation failure) than nVisualsMatched == 0.  Noticed from inspection
16587    of Coverity #599, #600.
16588
16589commit 8b42635f577468bb143ca593cdd9fb3450ad712c
16590Author: Eric Anholt <anholt@leguin.anholt.net>
16591Date:   Wed Apr 5 16:42:26 2006 -0700
16592
16593    Coverity #558: Free newly-allocated Database in error path.
16594
16595commit 6d06e41d1f431b3f1a1fcf69161e0af411325e9f
16596Author: Eric Anholt <anholt@leguin.anholt.net>
16597Date:   Wed Apr 5 16:38:52 2006 -0700
16598
16599    Coverity #582: Free newly-allocated region in error path.
16600
16601commit 5fd8f79ad3e38df74d9a6cb573617542c101df1a
16602Author: Daniel Stone <daniels@preemptive.research.nokia.com>
16603Date:   Fri Mar 17 15:58:39 2006 +0200
16604
16605    Properly clip bounds when only one point is defining an outline.
16606
16607commit 1e1572eb7f8394ce152e99d96f711ccf9083baf9
16608Author: Matthieu Herrb <matthieu@bluenote.herrb.com>
16609Date:   Sat Mar 11 15:39:15 2006 +0100
16610
16611    Fix prototype of XConfigureWindow(). Bugzilla #6023.
16612
16613commit 1da8bd904f1fc79d63d368473531b438d08bfe37
16614Author: Jeremy C. Reed <reed@reedmedia.net>
16615Date:   Tue Feb 21 14:10:22 2006 -0800
16616
16617    Set XTHREADLIB correctly for dragonfly platforms.
16618
16619commit c9768133e3f65ac4bb64e3941e2d6ae36897ec9c
16620Author: Jamey Sharp <jamey@minilop.net>
16621Date:   Sun Feb 19 12:29:27 2006 -0800
16622
16623    Update .gitignores for *.o and nls/locale.dir*.
16624
16625commit efcbde6ba0b770bb0d4c7818e307712161011f10
16626Author: Jamey Sharp <jamey@minilop.net>
16627Date:   Sun Feb 19 12:28:41 2006 -0800
16628
16629    Move .cvsignore to .gitignore.
16630
16631commit e3acee88cfcc4ef0fa8a7db39763a5ebe2e985cb
16632Author: Daniel Stone <daniels@preemptive.fooishbar.org>
16633Date:   Sat Jun 3 13:51:51 2006 +0300
16634
16635    Fix threading support on GNU/kFreeBSD systems.  (Robert Millan)
16636
16637commit f1bd3152359ddfadd0d043006036c239f3e2907b
16638Author: Daniel Stone <daniels@preemptive.fooishbar.org>
16639Date:   Sat Jun 3 12:57:55 2006 +0300
16640
16641    Bug #2186: Add cs_CZ.iso8859-2 alias.
16642
16643commit 2b1b79d90db1d7f0472718b8c010c36275994195
16644Author: Daniel Stone <daniel@fooishbar.org>
16645Date:   Fri Jun 2 02:46:29 2006 +0300
16646
16647    nls: Serbian (sr_CS) update (#5575)
16648    Bug #5575: 'Yugoslavia' has changed to Serbia & Montenegro, along with a
16649    corresponding locale change.  Update compose.dir.pre, locale.alias.pre,
16650    and locale.dir.pre.  (Milos Komarcevic)
16651
16652commit d6fba1f44d404362d3be1b421f57d7ccc3c8cdac
16653Author: Daniel Stone <daniel@fooishbar.org>
16654Date:   Fri Jun 2 02:24:25 2006 +0300
16655
16656    im: add Braille input method (#6296)
16657    Bug #6296: Add a Braille input method.  (Samuel Thibault)
16658
16659commit 0fed7d3185addd610e917dcdaa0676f0256c0ec5
16660Author: Daniel Stone <daniel@fooishbar.org>
16661Date:   Fri Jun 2 02:22:17 2006 +0300
16662
16663    xkb support: small typo
16664
16665commit cf7d9f9e46f3ce01ac04a95978918d5c0f3f3cf9
16666Author: Daniel Stone <daniel@fooishbar.org>
16667Date:   Fri Jun 2 01:50:24 2006 +0300
16668
16669    en_US.UTF-8 Compose.pre: updates from Simos (#5129)
16670    Bug #5129: Numerous updates from Simos Xenitellis, fixing Unicode keysyms,
16671    adding Unicode character names, removing duplicate entries, et al.
16672
16673commit 332d45fce9fdbf59168d90a133af1f580a589e54
16674Author: Daniel Stone <daniel@fooishbar.org>
16675Date:   Fri Jun 2 01:44:53 2006 +0300
16676
16677    nls: fix use of non-keysym dead_space (#5107)
16678    Bug #5107: Change users of dead_space to space.
16679
16680commit 34f59ce3d1e2eb2971b732d11871c6fff8a1c75b
16681Author: Daniel Stone <daniel@fooishbar.org>
16682Date:   Fri Jun 2 01:41:18 2006 +0300
16683
16684    optional XKB support fix
16685    Fix compilation with --disable-xkb.
16686
16687commit c5940a0b85edec4003f91a59fc3c44f538accfe1
16688Author: Daniel Stone <daniel@fooishbar.org>
16689Date:   Fri Jun 2 01:39:12 2006 +0300
16690
16691    i18n: separate data and lib directories
16692    Break out locale data into separate data and library directories, under
16693    $(datadir) and $(libdir), respectively, by default.
16694
16695commit 33556ca81db2419b9d2a37664c4cea2069414b37
16696Author: Adam Jackson <ajax@benzedrine.nwnk.net>
16697Date:   Fri May 12 14:49:17 2006 -0400
16698
16699    Bump to 1.0.1
16700
16701commit 80d88557626fae9debc404de33d7fb5d69a6049d
16702Author: Adam Jackson <ajax@benzedrine.nwnk.net>
16703Date:   Thu May 11 14:06:28 2006 -0400
16704
16705    libXcursor.so.1, not libXcursor.so
16706
16707commit 5384f27dfe3c94c462c137ab3540eaa5646ca4c6
16708Author: Adam Jackson <ajax@benzedrine.nwnk.net>
16709Date:   Thu May 11 14:04:48 2006 -0400
16710
16711    libXcursor.so.1, not libXcursor.so
16712
16713commit 01f4d433eed6b70c6e9636157acac022054fdeb6
16714Author: Jamey Sharp <jamey@minilop.net>
16715Date:   Wed May 10 17:02:52 2006 -0700
16716
16717    Count any partial request towards the current Xlib sequence number.
16718
16719commit 770cfbd1fcc80a83a9be0c4f68727b8af2c8f4a4
16720Author: Daniel Stone <daniels@preemptive.fooishbar.org>
16721Date:   Wed May 10 18:06:03 2006 +0300
16722
16723    XKBMisc.c: use Xfree, not xfree
16724    Use Xfree() instead of xfree() when freeing interps.
16725
16726commit 22a5255b80b80772612279bc840a953edd0e3442
16727Author: Daniel Stone <daniels@preemptive.fooishbar.org>
16728Date:   Wed May 10 14:51:37 2006 +0300
16729
16730    locale.alias.pre: bg_BG typo fix
16731    Fix typo (be_BG.UTF-8 rather than bg_BG.UTF-8) in locale.alias.pre.
16732
16733commit 9cac8c9824874ca7d835f001a4efa910b7fdd822
16734Merge: 19b8840a e514bc87
16735Author: Daniel Stone <daniels@preemptive.fooishbar.org>
16736Date:   Wed May 10 14:50:37 2006 +0300
16737
16738    Merge branch 'master' of git+ssh://git.freedesktop.org/srv/git.freedesktop.org/git/xorg/lib/libX11
16739
16740commit e514bc875f27f4bf197b06b8315eeca526195915
16741Author: Jamey Sharp <jamey@minilop.net>
16742Date:   Tue May 9 12:41:59 2006 -0700
16743
16744    Assert that dpy->request does not go backwards. Catches #5839 earlier.
16745
16746commit fc1159137365a599bf611ee001f439416952c4e0
16747Author: Jamey Sharp <jamey@minilop.net>
16748Date:   Sun May 7 17:40:01 2006 -0700
16749
16750    In _XPutXCBBuffer, set aside any trailing partial request until the last byte is available.
16751
16752commit c394480a4247213239822808e3f6e7c6cd6decd9
16753Author: Jamey Sharp <jamey@minilop.net>
16754Date:   Sun May 7 16:58:13 2006 -0700
16755
16756    Update for XCB ConnSetupSuccessRep name change.
16757
16758commit 7672bf93bc1200905461aeb0a2dc2c2696410b93
16759Author: Daniel Stone <daniels@endtroducing.localdomain>
16760Date:   Sun Apr 9 22:22:03 2006 +0300
16761
16762    Coverity #203, #204: Fix potential NULL dereferences.
16763
16764commit cfcafbe48d22d9a0cd50eb9454ce0ff88f0129d3
16765Author: Daniel Stone <daniels@endtroducing.localdomain>
16766Date:   Sun Apr 9 22:20:25 2006 +0300
16767
16768    Coverity #205: Fix potential NULL dereference.
16769
16770commit b6771501feea98d037032f82117b6d4f15779f07
16771Author: Daniel Stone <daniels@endtroducing.localdomain>
16772Date:   Sun Apr 9 22:18:20 2006 +0300
16773
16774    Coverity #209: Fix potential NULL dereference.  (Alan Coopersmith)
16775
16776commit 19b8840af241087bb17b1edabcaa9b28fdd0a1dc
16777Author: Daniel Stone <daniels@preemptive.research.nokia.com>
16778Date:   Fri Apr 7 18:11:52 2006 +0300
16779
16780    Coverity #826: Fix potential memory leak.
16781
16782commit 3a16f262abe48b44ed641525e894bc22e13bf72a
16783Author: Daniel Stone <daniels@preemptive.research.nokia.com>
16784Date:   Fri Apr 7 17:49:41 2006 +0300
16785
16786    Bug #1625: Include keysym.h from Xutil.h.
16787
16788commit 2481b767ae96e2f2503c0390545932c8397b090f
16789Author: Eric Anholt <anholt@leguin.anholt.net>
16790Date:   Wed Apr 5 17:12:15 2006 -0700
16791
16792    Check if visualList == NULL, not nVisualsMatched == 0.  NULL happens in more
16793    cases (allocation failure) than nVisualsMatched == 0.  Noticed from inspection
16794    of Coverity #599, #600.
16795
16796commit 152b17e47d878c2d928eb74581aa69d925a29123
16797Author: Eric Anholt <anholt@leguin.anholt.net>
16798Date:   Wed Apr 5 16:42:26 2006 -0700
16799
16800    Coverity #558: Free newly-allocated Database in error path.
16801
16802commit bc62b99ef36edb34035911c42104be7f6f9d2333
16803Author: Eric Anholt <anholt@leguin.anholt.net>
16804Date:   Wed Apr 5 16:38:52 2006 -0700
16805
16806    Coverity #582: Free newly-allocated region in error path.
16807
16808commit d47f0b3cec1388f7ce60ab2af91df0dea0f221c5
16809Author: Jamey Sharp <jamey@minilop.net>
16810Date:   Fri Mar 31 22:53:07 2006 -0800
16811
16812    Fix buggy interaction with XCB when running out of XIDs.
16813
16814commit e3f452571824d6a875bbf582946de185de9e01e9
16815Author: Jamey Sharp <jamey@minilop.net>
16816Date:   Fri Mar 31 22:52:14 2006 -0800
16817
16818    Add explicit include of Xmd.h to work around bug including both xcb.h and Xmd.h simultaneously.
16819
16820commit 2363b74ca795c1b3a73c9e572532ba5191adec5b
16821Author: Daniel Stone <daniels@preemptive.research.nokia.com>
16822Date:   Fri Mar 17 15:58:39 2006 +0200
16823
16824    Properly clip bounds when only one point is defining an outline.
16825
16826commit e876efb8aa410f2f5c87aaaa7042f847c4ff96f7
16827Merge: be266b20 f71ea0bc
16828Author: Matthieu Herrb <matthieu@bluenote.herrb.com>
16829Date:   Sat Mar 11 15:40:35 2006 +0100
16830
16831    Merge branch 'master' of git+ssh://herrb@git.freedesktop.org/git/xorg/lib/libX11
16832
16833commit be266b201dc13530a302a7572283ccd3f32aad87
16834Author: Matthieu Herrb <matthieu@bluenote.herrb.com>
16835Date:   Sat Mar 11 15:39:15 2006 +0100
16836
16837    Fix prototype of XConfigureWindow(). Bugzilla #6023.
16838
16839commit f71ea0bc737c5a42e9e022b86e7ec3b4f846d31c
16840Author: Jamey Sharp <jamey@minilop.net>
16841Date:   Fri Mar 3 11:08:41 2006 -0800
16842
16843    Update for XCBSendRequest sequence number API changes.
16844
16845commit a11d1b0ae674320cf9897f6a83ec08c65eca8d9b
16846Author: Jamey Sharp <jamey@minilop.net>
16847Date:   Fri Mar 3 01:42:49 2006 -0800
16848
16849    Use the full_sequence from XCBGenericError/Event for setting last_request_read, and quit replacing _XSetLastRequestRead with an XCB-specific version.
16850
16851commit d8ba4ae7045b227f8b675628b9094dded02f1c08
16852Author: Jamey Sharp <jamey@minilop.net>
16853Date:   Thu Mar 2 23:43:26 2006 -0800
16854
16855    Bugfix: Rely on XCBSendRequest to leave iov in a well-defined state, and place the spare iovecs at the beginning of the array.
16856
16857commit f9afb5a54435c30961306080e9358d4240ecb844
16858Author: Jamey Sharp <jamey@minilop.net>
16859Date:   Thu Mar 2 23:34:19 2006 -0800
16860
16861    assert() that we will not infinite loop or read uninitialized memory.
16862
16863commit d3512ef3aae5b036a8ce6579318108f1ec20ee22
16864Author: Jamey Sharp <jamey@minilop.net>
16865Date:   Thu Mar 2 15:58:52 2006 -0800
16866
16867    Quit relying on XCBSendRequest to pad to 4-byte boundaries and do it ourselves.
16868
16869commit fb590c15a740264ee867d15a2547072e43b21eed
16870Author: Jamey Sharp <jamey@minilop.net>
16871Date:   Thu Mar 2 12:06:04 2006 -0800
16872
16873    Handle errors correctly when Xlib owns the event queue and XCB has the checked error feature.
16874
16875commit 8356ba37d307a9eda895a6bf41ef727bbfc9a695
16876Author: Jamey Sharp <jamey@minilop.net>
16877Date:   Mon Feb 27 11:51:47 2006 -0800
16878
16879    Use the new XCBSendRequest flag, XCB_REQUEST_RAW, to hand a bag-o-bytes down uninterpreted.
16880
16881commit 07bdf1fbbf2418f866df1a2140d514dd3f035139
16882Author: Jamey Sharp <jamey@minilop.net>
16883Date:   Sun Feb 26 15:46:01 2006 -0800
16884
16885    Update for new XCBSendRequest API.
16886
16887commit 409a08cff8347d39e0e6c53c9f380d21f221f5ac
16888Author: Jamey Sharp <jamey@minilop.net>
16889Date:   Thu Feb 23 18:12:31 2006 -0800
16890
16891    Performance fix: Replace calls to XCBGetRequestRead with the new XCBGetQueuedRequestRead. Cuts a lot of syscalls.
16892
16893commit ec30a27341b97620b07dd886f98d1d7664a67685
16894Author: Jamey Sharp <jamey@minilop.net>
16895Date:   Thu Feb 23 18:01:46 2006 -0800
16896
16897    Minor performance fix: Access dpy->xcl->connection directly instead of calling XCBConnectionOfDisplay. It happens a lot.
16898
16899commit 53c471c6a835d5cedeca99f2c97058d196a3fd7e
16900Author: Jamey Sharp <jamey@minilop.net>
16901Date:   Thu Feb 23 11:46:09 2006 -0800
16902
16903    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.
16904
16905commit 41c0121a8718b530feaf7fe315b673d9b8defce2
16906Author: Jamey Sharp <jamey@minilop.net>
16907Date:   Tue Feb 21 21:25:41 2006 -0800
16908
16909    Refactor the code that passes requests down to XCB into a separate issue_complete_request function.
16910
16911commit 67d06e0fe468dca22847aa14d3f917128f89f9cf
16912Author: Jamey Sharp <jamey@minilop.net>
16913Date:   Tue Feb 21 15:33:05 2006 -0800
16914
16915    If we have not actually put the buffer back, deferred invariants may not hold. This is OK.
16916
16917commit 434bf80b4053ff1ba82adf65de1f76b4d3731bf1
16918Author: Jeremy C. Reed <reed@reedmedia.net>
16919Date:   Tue Feb 21 14:10:22 2006 -0800
16920
16921    Set XTHREADLIB correctly for dragonfly platforms.
16922
16923commit b24834762e975bd319f9ab5c7cf790b2a02a9474
16924Author: Jamey Sharp <jamey@minilop.net>
16925Date:   Tue Feb 21 14:03:26 2006 -0800
16926
16927    Sometimes functions other than _XUnlockDisplay call _XPutXCBBuffer. Some invariants appropriate for Unlock are not appropriate otherwise: move them to _XUnlockDisplay.
16928
16929commit 99b8defd0d5e6993071e21638128c9de2574b37d
16930Author: Jamey Sharp <jamey@minilop.net>
16931Date:   Tue Feb 21 13:04:21 2006 -0800
16932
16933    Execute BeforeFlush hooks on complete buffers, not request-at-a-time.
16934    Traditional Xlib worked this way; I dunno why I changed it.
16935
16936commit 9b01e7849775749182052fe324df9d8e6ceeee99
16937Author: Jamey Sharp <jamey@minilop.net>
16938Date:   Tue Feb 21 12:51:44 2006 -0800
16939
16940    Factor the XCBSendRequest call out of the conditional in _XPutXCBBuffer.
16941
16942commit 7ce7ac882de128955751a5307889db9d712d8a72
16943Author: Jamey Sharp <jamey@minilop.net>
16944Date:   Tue Feb 21 12:44:30 2006 -0800
16945
16946    Quit using a triple-pointer. Almost as if I were a sensible person.
16947
16948commit 35a858be218cdbfa4593d44a67663d5c25297016
16949Author: Jamey Sharp <jamey@minilop.net>
16950Date:   Tue Feb 21 12:21:01 2006 -0800
16951
16952    Remove the XCL_PAD macro.
16953
16954commit e741b70ed2542c5463c57dac44bc37328616733b
16955Author: Jamey Sharp <jamey@minilop.net>
16956Date:   Sun Feb 19 12:29:27 2006 -0800
16957
16958    Update .gitignores for *.o and nls/locale.dir*.
16959
16960commit f25b4b00e1683b0d97dba46dac46d65a9c2270a6
16961Author: Jamey Sharp <jamey@minilop.net>
16962Date:   Sun Feb 19 12:28:41 2006 -0800
16963
16964    Move .cvsignore to .gitignore.
16965
16966commit c7cda56eebaf6ab11403363be14d4948d7d8be38
16967Author: Jamey Sharp <jamey@minilop.net>
16968Date:   Sun Feb 19 11:49:15 2006 -0800
16969
16970    Land XCB support on X.org HEAD.
16971
16972commit 881467b3032261791ef5ec61b3879bb68d0a3d8c
16973Author: Jamey Sharp <jamey@minilop.net>
16974Date:   Sun Feb 19 02:14:11 2006 +0000
16975
16976    Merge the X11 and BIGREQS package sets: they were used in exactly the same places.
16977
16978commit 6b0158dfad714db5b89c04dbea3aedeafa0fb146
16979Author: Jamey Sharp <jamey@minilop.net>
16980Date:   Tue Feb 14 19:37:36 2006 +0000
16981
16982    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.
16983
16984commit 010c3acbb3a6993d39274f42d88c00849acb0fb0
16985Author: Alan Coopersmith <alan.coopersmith@sun.com>
16986Date:   Sun Feb 12 18:19:17 2006 +0000
16987
16988    Bug #5628 <https://bugs.freedesktop.org/show_bug.cgi?id=5628> Shadow pages not created correctly when MANDIR & MANSUFFIX don't match.
16989
16990commit fe8c01c80263457f01b70dc1511b2bd9466b7c96
16991Author: Alan Coopersmith <alan.coopersmith@sun.com>
16992Date:   Fri Feb 3 23:34:43 2006 +0000
16993
16994    Fix typo in .TH line
16995
16996commit b091c217f3c3f60dde78b09a95c150df6c83d7ba
16997Author: Kevin E Martin <kem@kem.org>
16998Date:   Thu Dec 15 00:24:28 2005 +0000
16999
17000    Update package version number for final X11R7 release candidate.
17001
17002commit e7c04e0e65a2a0c70c6ad29ec2d6f4350fd81c2a
17003Author: Kevin E Martin <kem@kem.org>
17004Date:   Tue Dec 6 22:48:41 2005 +0000
17005
17006    Change *man_SOURCES ==> *man_PRE to fix autotools warnings.
17007
17008commit b5c495854d5270e64e6d588388ffa906bfcaac22
17009Author: Kevin E Martin <kem@kem.org>
17010Date:   Sat Dec 3 05:49:42 2005 +0000
17011
17012    Update package version number for X11R7 RC3 release.
17013
17014commit 9e96dbc343c7f27ff47607acd75378ab23903e2a
17015Author: Kevin E Martin <kem@kem.org>
17016Date:   Sat Dec 3 04:41:47 2005 +0000
17017
17018    Add check and cflags for malloc(0) returning NULL.
17019
17020commit 649c37b47909620ccafde3e983de8321cddd74ce
17021Author: Alan Coopersmith <alan.coopersmith@sun.com>
17022Date:   Mon Nov 28 22:03:04 2005 +0000
17023
17024    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)
17025
17026commit 8d1500df66d796ebff2b0d8c02205e5fa6796d4a
17027Author: Alan Coopersmith <alan.coopersmith@sun.com>
17028Date:   Wed Nov 23 22:33:06 2005 +0000
17029
17030    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
17031
17032commit 93cf3747f9ae8d30bd485b41c5ff10397f68f078
17033Author: Eric Anholt <anholt@freebsd.org>
17034Date:   Sun Nov 20 23:17:39 2005 +0000
17035
17036    Add/improve libs .cvsignores.
17037
17038commit fa1f4a08112bfa14d3758f4702733dd3892966c3
17039Author: Kevin E Martin <kem@kem.org>
17040Date:   Sat Nov 19 07:15:39 2005 +0000
17041
17042    Update pkgconfig files to separate library build-time dependencies from application build-time dependencies, and update package deps to work with separate build roots.
17043
17044commit 7012f9b56c594cf40855ba0dbf93af1263417a8c
17045Author: Kevin E Martin <kem@kem.org>
17046Date:   Mon Nov 14 21:51:07 2005 +0000
17047
17048    Fix xf86bigfont pkgconfig dep typo.
17049
17050commit 60a72f47951f46b4e0505d9903a94af3b6bed8ca
17051Author: Kevin E Martin <kem@kem.org>
17052Date:   Wed Nov 9 21:19:12 2005 +0000
17053
17054    Update package version number for X11R7 RC2 release.
17055
17056commit 6bb0c3796b6e1beddc376a896e865704886e1462
17057Author: Kean Johnson <kean@armory.com>
17058Date:   Tue Nov 8 06:33:25 2005 +0000
17059
17060    See ChangeLog entry 2005-11-07 for details.
17061
17062commit 14be0098ad90c3e68bd2d21b00ffabb76f1fd780
17063Author: Kevin E Martin <kem@kem.org>
17064Date:   Tue Nov 1 15:11:50 2005 +0000
17065
17066    Update pkgcheck dependencies to work with separate build roots.
17067
17068commit 1bf71462a972e0fc56de63f5c7fd613b37fc70f1
17069Author: Donnie Berkholz <spyderous@gentoo.org>
17070Date:   Fri Oct 28 10:44:03 2005 +0000
17071
17072    Revert that, it's redundant. But it is worth noting that --disable-xkb is broken, if anyone cares.
17073
17074commit be627a39fe373e2e81fdc263780e70a271d9e0c5
17075Author: Donnie Berkholz <spyderous@gentoo.org>
17076Date:   Fri Oct 28 08:28:08 2005 +0000
17077
17078    Add dependency on inputproto for XI.h.
17079
17080commit 5fae4cb456cb03fb70cd065dbc2ca94c8ed99082
17081Author: Adam Jackson <ajax@nwnk.net>
17082Date:   Fri Oct 21 18:44:24 2005 +0000
17083
17084    Bug #4736: Error decoding for Damage extension. (Jonathan Lennox)
17085
17086commit 1171fa9dc77413f0e90933a565ec07068052afb4
17087Author: Kevin E Martin <kem@kem.org>
17088Date:   Wed Oct 19 02:48:08 2005 +0000
17089
17090    Update package version number for RC1 release.
17091
17092commit 2a2d905706308b9d5a1c16af1067fb390f43850c
17093Author: Alan Coopersmith <alan.coopersmith@sun.com>
17094Date:   Tue Oct 18 00:00:08 2005 +0000
17095
17096    Use @LIB_MAN_SUFFIX@ instead of $(LIB_MAN_SUFFIX) in macro substitutions to work better with BSD make
17097
17098commit 66d35b6971fb26762392a2a8e2c47db46c11116a
17099Author: Alan Coopersmith <alan.coopersmith@sun.com>
17100Date:   Mon Oct 17 21:13:15 2005 +0000
17101
17102    Rename .shadows.DONE to shadows.DONE to avoid some make's thinking it's a suffix rule (reported by Matthieu Herrb)
17103
17104commit a316995a17c084e98ef1b7f25d287c2c08b6d749
17105Author: Donnie Berkholz <spyderous@gentoo.org>
17106Date:   Sun Oct 16 03:03:35 2005 +0000
17107
17108    Change '==' to portable '='.
17109
17110commit b76a072530e884bcbea6ed8fed5aef39361dcfc0
17111Author: Alan Coopersmith <alan.coopersmith@sun.com>
17112Date:   Wed Oct 12 00:04:50 2005 +0000
17113
17114    configure.ac Use XORG_MAN_SECTIONS instead of custom man section configuration. Add shadow man pages for man pages that document multiple functions.
17115
17116commit 8ee5c1429af98206e05a0536f87c0f21a529cdf0
17117Author: Eric Anholt <anholt@freebsd.org>
17118Date:   Tue Oct 11 02:18:36 2005 +0000
17119
17120    Add appropriate pthread libs/flags for FreeBSD, fixing the build of ico and probably others.
17121
17122commit 41ff3b9d1f194a7b56437b650d5f589225c078c6
17123Author: Alan Coopersmith <alan.coopersmith@sun.com>
17124Date:   Sun Oct 9 22:28:39 2005 +0000
17125
17126    Bug #3021 <https://bugs.freedesktop.org/show_bug.cgi?id=3021> Requests and Errors for XFixes are not in XErrorDB (Jonathan Lennox)
17127
17128commit 91ed79852e790049ab54e68f288afb3c953194c9
17129Author: Kevin E Martin <kem@kem.org>
17130Date:   Fri Oct 7 15:00:00 2005 +0000
17131
17132    Clean up generated files
17133    Add missing dist tarball files
17134
17135commit 440399b470c97b159a530602fff11c315aca8d97
17136Author: Søren Sandmann Pedersen  <sandmann@daimi.au.dk>
17137Date:   Wed Oct 5 18:27:10 2005 +0000
17138
17139    Add el_GR.UTF-8 compose file
17140
17141commit 010f0647e25ac617d0f92c8d2b8dda684da545db
17142Author: Daniel Stone <daniel@fooishbar.org>
17143Date:   Fri Sep 30 07:52:46 2005 +0000
17144
17145    Bug #2609: Add Kyrgyz locale (Ilyas Bakirov).
17146
17147commit 3ef2fb67bd8905b208ad7eb790c3843e14cea7ed
17148Author: Daniel Stone <daniel@fooishbar.org>
17149Date:   Fri Sep 30 07:47:55 2005 +0000
17150
17151    Bug #1640: Kinyarwanda locale support. (Steve Murphy)
17152
17153commit 4ae0decabe0960870df0ec165f495166c10a053c
17154Author: Daniel Stone <daniel@fooishbar.org>
17155Date:   Fri Sep 30 07:40:03 2005 +0000
17156
17157    Bug #2268: Add South African locales (Dwayne Bailey). Some whitespace cleanups, as the parser is a little touchy.
17158
17159commit 3f79eb4c99844f618f1889741d1631c2ffe5385f
17160Author: Daniel Stone <daniel@fooishbar.org>
17161Date:   Fri Sep 30 07:11:19 2005 +0000
17162
17163    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.
17164
17165commit d1237d1483ff972c76a0ac344ec97d5280db0007
17166Author: Alan Coopersmith <alan.coopersmith@sun.com>
17167Date:   Thu Sep 29 21:27:12 2005 +0000
17168
17169    Add Xcms.txt to lib/X11
17170
17171commit 4a86f299693f7376cbe98175f0b0c44d691802b3
17172Author: Alan Coopersmith <alan.coopersmith@sun.com>
17173Date:   Sat Sep 24 20:11:06 2005 +0000
17174
17175    Add XQueryExtension.man
17176
17177commit a057a66e2041d45198a13a4ece7c07068f76f21b
17178Author: Alan Coopersmith <alan.coopersmith@sun.com>
17179Date:   Sat Sep 24 00:16:32 2005 +0000
17180
17181    Add XTHREAD_CFLAGS for platforms that need special defines like
17182    -D_REENTRANT or -D_POSIX_whatever to get re-entrant function definitions. Set XDMCP_LIBS correctly for later libXdmcp tests.
17183
17184commit 3e920a65a7c376ad63eae2240fd06904d25d18bf
17185Author: Alan Coopersmith <alan.coopersmith@sun.com>
17186Date:   Fri Sep 2 23:00:30 2005 +0000
17187
17188    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
17189
17190commit 3eb9f2d693af89d04e2fd92492c8205dce332c9c
17191Author: Kristian Høgsberg  <krh@redhat.com>
17192Date:   Thu Sep 1 19:24:13 2005 +0000
17193
17194    Use $(X11_LOCALEDATADIR) instead of @X11_LOCALEDATADIR@ so this install destination can be overridden at make install time.
17195
17196commit 7afa64325183b78d2d6a4862821f8b3e9866105c
17197Author: Matthieu Herrb <matthieu.herrb@laas.fr>
17198Date:   Sun Aug 28 19:45:48 2005 +0000
17199
17200    OpenBSD needs -lpthread for threaded applications too.
17201
17202commit 2b2f3d3877cb7927f196d01a5df6a27bf8d0518a
17203Author: Daniel Stone <daniel@fooishbar.org>
17204Date:   Fri Aug 26 05:16:46 2005 +0000
17205
17206    Define ERRORDB/KEYSYMDB to XERRORDB/XKEYSYMDB if the former is undefined but the latter is. (Gerte Hoogewerf)
17207
17208commit 07066da0902df91c71f2adb81d1a17ec29165553
17209Author: Matthieu Herrb <matthieu.herrb@laas.fr>
17210Date:   Sun Aug 21 15:45:04 2005 +0000
17211
17212    update
17213
17214commit de44d8b111f57bd2f015e085fd8298c5f2a15ef3
17215Author: Matthieu Herrb <matthieu.herrb@laas.fr>
17216Date:   Sun Aug 21 15:38:39 2005 +0000
17217
17218    Threads support for BSD systems:
17219    - need to check for gewtpwuid_r to define mtsafeapi
17220    - build UIThrstubs if needed.
17221
17222commit 60217fdb918bafb2082519efe5cba3b13ad3082a
17223Author: Adam Jackson <ajax@nwnk.net>
17224Date:   Wed Aug 17 19:46:08 2005 +0000
17225
17226    Add xthreadlib variable to x11.pc. Bump to 0.99.1.
17227
17228commit e1f4c6f5e36c1511f66fa1fac76520fd97eecbad
17229Author: Alan Coopersmith <alan.coopersmith@sun.com>
17230Date:   Wed Aug 17 01:27:08 2005 +0000
17231
17232    Fix more broken multi-line .ds macros. Remove extraneous ;'s .
17233
17234commit 1909786f4a7d686369edcfc05a938df115fab37c
17235Author: Alan Coopersmith <alan.coopersmith@sun.com>
17236Date:   Tue Aug 16 19:23:15 2005 +0000
17237
17238    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)
17239
17240commit 83406d69c62070d2eeef23eb47f1ca887f711ee5
17241Author: Alan Coopersmith <alan.coopersmith@sun.com>
17242Date:   Mon Aug 15 19:53:37 2005 +0000
17243
17244    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
17245
17246commit 5bb43de17de8e71d967488a713bf2b3448533444
17247Author: Alan Coopersmith <alan.coopersmith@sun.com>
17248Date:   Sat Aug 6 18:59:49 2005 +0000
17249
17250    Typo fix in output message
17251
17252commit afe34b95862bb3c06cdbe724cb5ec3001a4a5215
17253Author: Alan Coopersmith <alan.coopersmith@sun.com>
17254Date:   Thu Aug 4 02:55:49 2005 +0000
17255
17256    //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)
17257
17258commit 3979a0b88edf6475ce5cfaa386e18ef980bda13c
17259Author: Alan Coopersmith <alan.coopersmith@sun.com>
17260Date:   Thu Aug 4 02:51:30 2005 +0000
17261
17262    //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)
17263
17264commit 34b454df192f4563499c453ccdb8c079f4a20cbe
17265Author: Alan Coopersmith <alan.coopersmith@sun.com>
17266Date:   Sat Jul 30 20:30:46 2005 +0000
17267
17268    Include config.h so Xtrans knows which transport types to build code for
17269
17270commit cd9c9936b49c125eda779b99887d7e6ae4cf56cd
17271Author: Alan Coopersmith <alan.coopersmith@sun.com>
17272Date:   Sat Jul 30 19:15:16 2005 +0000
17273
17274    Add -D flags to clear various warnings (Stefan Dirsch)
17275
17276commit e7fef67b4531faddd805d8f2157903006d3117ed
17277Author: Kevin E Martin <kem@kem.org>
17278Date:   Fri Jul 29 21:22:50 2005 +0000
17279
17280    Various changes preparing packages for RC0:
17281    - Verify and update package version numbers as needed
17282    - Implement versioning scheme
17283    - Change bug address to point to bugzilla bug entry form
17284    - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to reenable it)
17285    - Fix makedepend to use pkgconfig and pass distcheck
17286    - Update build script to build macros first
17287    - Update modular Xorg version
17288
17289commit 2ebb00244928237088e68325b1032b3550455ce9
17290Author: Matthieu Herrb <matthieu.herrb@laas.fr>
17291Date:   Sat Jul 23 20:19:31 2005 +0000
17292
17293    remove orphan TAB at begin of line
17294
17295commit dd7a9cdecda73e024ca84c5b9a22b18688038d94
17296Author: Kevin E Martin <kem@kem.org>
17297Date:   Sat Jul 23 18:09:39 2005 +0000
17298
17299    Modify modular libs to use Xregion.h instead of region.h
17300
17301commit 6d635a88d91647b1b63611c3591f74916f88cd1c
17302Author: Kevin E Martin <kem@kem.org>
17303Date:   Sat Jul 23 18:06:16 2005 +0000
17304
17305    lib/Xrender/Picture.c Change region.h to Xregion.h and modify internal references to include <X11/Xregion.h>.
17306
17307commit 36283f50fd9748733ae84cb7fb52ca8d9e661c15
17308Author: Daniel Stone <daniel@fooishbar.org>
17309Date:   Sat Jul 16 06:25:35 2005 +0000
17310
17311    Set soversion to 6.2.0.
17312
17313commit 75fd5ae6e4683b9b9dcc13bc2f0faf223610a74f
17314Author: Keith Packard <keithp@keithp.com>
17315Date:   Fri Jul 15 04:27:32 2005 +0000
17316
17317    Add missing Makefile.am to lib/X11/modules
17318
17319commit 6d84a8b1329af1fcfe86b198f1a6e7dd6ff616c3
17320Author: Keith Packard <keithp@keithp.com>
17321Date:   Fri Jul 15 04:08:51 2005 +0000
17322
17323    Move i18n modules to top-level so they can be built in the right order (before xlib for non-loadable, after xlib for loadable).
17324    Link i18n modules against xlib to resolve Xlib symbols used by them.
17325
17326commit 45f40126a73295345bb5eb187b1167874842ab6e
17327Author: Alexander Gottwald <ago@freedesktop.org>
17328Date:   Thu Jul 14 19:50:00 2005 +0000
17329
17330    Add $(top_srcdir)/src to include list
17331
17332commit 0aed7d91f5928d09d541617aad03709b5090658d
17333Author: Matthieu Herrb <matthieu.herrb@laas.fr>
17334Date:   Thu Jul 14 17:04:49 2005 +0000
17335
17336    Build fix for non-GNU make.
17337
17338commit b79422ccb02ab44548d1038956ab0cd4e2638645
17339Author: Adam Jackson <ajax@nwnk.net>
17340Date:   Thu Jul 14 15:12:44 2005 +0000
17341
17342    typo fixes (Matthieu Herrb)
17343
17344commit 419304cde2fda19457c667870edefc0b227651b3
17345Author: Alan Coopersmith <alan.coopersmith@sun.com>
17346Date:   Wed Jul 13 02:41:36 2005 +0000
17347
17348    Add missing backslashes to xlocale_la_SOURCES
17349
17350commit d14cc5c8964c4539b57c6cb51ef653292e410b79
17351Author: Keith Packard <keithp@keithp.com>
17352Date:   Mon Jul 11 20:32:55 2005 +0000
17353
17354    Ammend AM_CFLAGS with all needed includes; cannot figure out an easy way to automate this.
17355
17356commit 424c2d8905eb2ad0a2df15b1da2f96140bfbcffb
17357Author: Lars Knoll <lars@trolltech.com>
17358Date:   Mon Jul 11 15:24:32 2005 +0000
17359
17360    compile
17361
17362commit de9784eb1bde46efc316da279e3da27c6cc288a7
17363Author: Keith Packard <keithp@keithp.com>
17364Date:   Mon Jul 11 09:26:40 2005 +0000
17365
17366    Ignore built man page files
17367
17368commit 0c258c36d1523113790c599b16d2947d7aa6469a
17369Author: Keith Packard <keithp@keithp.com>
17370Date:   Mon Jul 11 09:18:31 2005 +0000
17371
17372    Minor changes to help modular Xlib build i18n modules
17373
17374commit 6e752ea1203b786423e40f43340bce15ca3de0f0
17375Author: Keith Packard <keithp@keithp.com>
17376Date:   Mon Jul 11 08:29:18 2005 +0000
17377
17378    Enable loadable i18n modules, making them configurable on the configure command line.
17379    Clean up conditionals for XKB, XCMS, XLOCALEDIR
17380    Create new lib directory for locale modules in ${X11_LIBDIR}/locale/lib. Add this to the default XLOCALEDIR search path.
17381    Create separate X11_LOCALEDATADIR variable pointing at ${datadir}/X11/locale for installing locale data.
17382    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.
17383    Display message at end of configure script with selected options.
17384    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.
17385
17386commit b46cf0d879f1dbf92dcf5a0305d18986c766ed84
17387Author: Daniel Stone <daniel@fooishbar.org>
17388Date:   Sun Jul 10 22:37:33 2005 +0000
17389
17390    Fix segfault when _XimProtoCreateIC() fails to create a context; Debian #239991. (Chung-chieh Shan)
17391
17392commit 6f2132b18e61ca9755e4b45550f3f5097dd1fbb7
17393Author: Alan Coopersmith <alan.coopersmith@sun.com>
17394Date:   Sat Jul 9 20:06:04 2005 +0000
17395
17396    Set __libmansuffix__ & __xorgversion__ correctly when cpp processing man pages
17397
17398commit 3939ac4410446b46071c9d714f4270c12bf904fe
17399Author: Alan Coopersmith <alan.coopersmith@sun.com>
17400Date:   Sat Jul 9 18:44:14 2005 +0000
17401
17402    - 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
17403    - Don't assume $(CPP) can take gcc-only -traditional flag
17404    - CPP process man pages as is done in the monolithic tree
17405
17406commit 19ba9d0df86c688319377467254b9ea9c4b0eccc
17407Author: Keith Packard <keithp@keithp.com>
17408Date:   Sat Jul 9 06:01:49 2005 +0000
17409
17410    Clean up .cvsignore files
17411
17412commit f4bba6fa9b9ce637be7662754750054567e9250a
17413Author: Adam Jackson <ajax@nwnk.net>
17414Date:   Sat Jul 9 02:53:29 2005 +0000
17415
17416    typo fix. i suck.
17417
17418commit 3305da61a61695e24c1ea11d3f59dddb52873d47
17419Author: Adam Jackson <ajax@nwnk.net>
17420Date:   Sat Jul 9 02:41:18 2005 +0000
17421
17422    Check for bigfont proto headers via pkgconfig (Arwed von Merkatz)
17423
17424commit afdae2e8ccb93de2987b5a5e850695af15ece7e0
17425Author: Keith Packard <keithp@keithp.com>
17426Date:   Fri Jul 8 07:11:56 2005 +0000
17427
17428    Create and use XlibConf.h to match modular build which needs XTHREADS defined when building extensions
17429
17430commit 86fa88dc594ca2093030acf5c84973ee2b33eb4c
17431Author: Keith Packard <keithp@keithp.com>
17432Date:   Fri Jul 8 06:57:06 2005 +0000
17433
17434    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.
17435    Add a bunch of .cvsignore files
17436
17437commit 30f6ffedeaf899e699f0c6b14c9471ce9bcc430c
17438Author: Chris Less <clee@c133.org>
17439Date:   Mon Jul 4 23:01:48 2005 +0000
17440
17441    Fixing bug #380 - add a man page for XQueryExtension, XListExtensions, and XFreeExtensionList.
17442
17443commit 55328bb6caabd37885cd19d7a5821ed425daf321
17444Author: Eric Anholt <anholt@freebsd.org>
17445Date:   Sun Jul 3 10:17:38 2005 +0000
17446
17447    Avoid a gmake-specific construct, and instead just write the name of the current directory into each Makefile.am.
17448
17449commit 726538ba21b631bfb0b8094a5546acdaf57379ff
17450Author: Daniel Stone <daniel@fooishbar.org>
17451Date:   Sun Jul 3 07:37:33 2005 +0000
17452
17453    Fix more include paths; add dix-config.h to XKB code.
17454
17455commit 8c7677138e70e14eca0255f2168583f0ecc21994
17456Author: Daniel Stone <daniel@fooishbar.org>
17457Date:   Sun Jul 3 07:00:55 2005 +0000
17458
17459    Add Xtrans definitions (FONT_t, TRANS_CLIENT) to clean up warnings.
17460    Add XSERV_t, TRANS_SERVER, TRANS_REOPEN to quash warnings.
17461    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>.
17462
17463commit 197697c92a63091a4cc3cc04dcb7fa29d2655758
17464Author: Daniel Stone <daniel@fooishbar.org>
17465Date:   Fri Jul 1 22:13:35 2005 +0000
17466
17467    Fix objdir != srcdir, as well as make distcheck.
17468    Don't attempt to create Compose.pre files; formatting fixes.
17469    Added if not already present.
17470
17471commit c162d60ad8f124563f94a2a266de59373936266c
17472Author: Søren Sandmann Pedersen  <sandmann@daimi.au.dk>
17473Date:   Wed Jun 22 22:46:31 2005 +0000
17474
17475    Apply these patches from Theo van Klaveren:
17476    lib-dmx.patch lib-FS.patch lib-X11.patch lib-XRes.patch lib-XScrnSaver.patch lib-xtrans.patch
17477    to make the libraries distcheck.
17478
17479commit 9ee8abdab03ea605a6327118ab7dacab6adf8876
17480Author: Alan Coopersmith <alan.coopersmith@sun.com>
17481Date:   Sat Jun 18 07:48:43 2005 +0000
17482
17483    Move Secure RPC flags from X11/configure.ac to xtrans/xtrans.m4 since multiple modules will need them
17484
17485commit 12afc57b7d455781eee305e9ed6a899ceec8729e
17486Author: Daniel Stone <daniel@fooishbar.org>
17487Date:   Wed Jun 15 16:50:47 2005 +0000
17488
17489    Typo fix to locale/error/keysym location declarations.
17490
17491commit 9a895777e30762f61b98d25be3b5d8b1169baa17
17492Author: Daniel Stone <daniel@fooishbar.org>
17493Date:   Wed Jun 15 13:37:43 2005 +0000
17494
17495    Typo in ImUtil.h commit -- I AM CAPTAIN SKILL.
17496
17497commit add49285663684875ab7a5c58ec7a2cf8b775f67
17498Author: Daniel Stone <daniel@fooishbar.org>
17499Date:   Wed Jun 15 13:32:35 2005 +0000
17500
17501    Define locations for XErrorDB, XKeysymDB, and locale data in configure.ac. Add AC_DEFINE_DIR macro from autoconf-archive.cryp.to towards this end.
17502    Move ImUtil.h from src/ to include/X11/.
17503
17504commit 845dfc6b42b950890866ee4df27761e086f50dca
17505Author: Daniel Stone <daniel@fooishbar.org>
17506Date:   Wed Jun 15 13:27:48 2005 +0000
17507
17508    Move ImUtil.h from src/ to include/X11/. Additionally, copy Cmap.h as a distribution file.
17509
17510commit bba117f0d98f62cfb060d0fab97b407a3a0bfda9
17511Author: Daniel Stone <daniel@fooishbar.org>
17512Date:   Fri Jun 10 14:11:36 2005 +0000
17513
17514    Remove pointless include of Xlib.h.
17515    Fix #include path to bigreqstr.h.
17516
17517commit 1a0de49da1274882bab05b0f7240936b37955e5c
17518Author: Alexander Gottwald <ago@freedesktop.org>
17519Date:   Thu Jun 9 21:30:15 2005 +0000
17520
17521    Use $(srcdir) for Compose.pre and XLC_LOCALE.pre
17522
17523commit af4f0f302644ebfbb0ca9f4016a4aee85c973d37
17524Author: Alexander Gottwald <ago@freedesktop.org>
17525Date:   Thu Jun 9 15:55:33 2005 +0000
17526
17527    Replace <X11/transport.c> with <X11/Xtrans/transport.c>
17528
17529commit fd5f58e0baf692e34b9b622286f18762cc2500d3
17530Author: Alexander Gottwald <ago@freedesktop.org>
17531Date:   Thu Jun 9 15:52:02 2005 +0000
17532
17533    Replace <X11/Xtrans.h> with <X11/Xtrans/Xtrans.h>
17534    Copy Xtrans.h to exports/include/X11/Xtrans only
17535
17536commit 44538f9940f969d46c0e5e4b201c684cde2ba611
17537Author: Alan Coopersmith <alan.coopersmith@sun.com>
17538Date:   Sun Jun 5 03:29:33 2005 +0000
17539
17540    Port Imake flags to autoconf tests & --enable-* flags: HASSETUGID, HASGETRESUID, NO_XLOCALEDIR, HAS_SHM and XF86BIGFONT
17541
17542commit 588e30e9ec65fa6205a34be650b79d5e2243edec
17543Author: Alan Coopersmith <alan.coopersmith@sun.com>
17544Date:   Sat Jun 4 22:53:21 2005 +0000
17545
17546    Add --enable-secure-rpc flag and checks for needed functions for Secure RPC ("SUN-DES-1") authentication method
17547
17548commit a547afee2ef49cc41bbb67f9cff5a52a283c0854
17549Author: Alan Coopersmith <alan.coopersmith@sun.com>
17550Date:   Sat Jun 4 21:20:20 2005 +0000
17551
17552    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)
17553
17554commit ca93c761559ae464189c7ea7cf11c6a6679f2431
17555Author: Matthieu Herrb <matthieu.herrb@laas.fr>
17556Date:   Sat May 28 01:02:32 2005 +0000
17557
17558    Don't use $< in explicit rules. This only works with GNU make. <https://bugs.freedesktop.org/show_bug.cgi?id=3383>
17559
17560commit 09ebb349359e3dd9131fa2fa8b07559faa173654
17561Author: Alan Coopersmith <alan.coopersmith@sun.com>
17562Date:   Sun May 22 19:05:11 2005 +0000
17563
17564    Convert man pages to long file names in lib/X11, lib/Xt, & lib/Xext
17565
17566commit 761219b1ef9befc350c8a35b6f96d047e5f008cc
17567Author: Alan Coopersmith <alan.coopersmith@sun.com>
17568Date:   Sat May 21 23:07:48 2005 +0000
17569
17570    xtrans:
17571    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
17572    ICE:
17573    Add ICE_t #define required by Xtrans headers. Replace static defines of LOCALCONN & UNIXCONN with new XTRANS_CONNECTION_FLAGS macro.
17574    X11:
17575    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.
17576
17577commit 4b1ba6eb975b547b808f4d5c8825a3261de5e02a
17578Author: Alan Coopersmith <alan.coopersmith@sun.com>
17579Date:   Sat May 21 04:26:12 2005 +0000
17580
17581    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)
17582    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).
17583
17584commit 1d425d5e2092dd18a7dd599b37ed9af61cf59819
17585Author: Adam Jackson <ajax@nwnk.net>
17586Date:   Thu May 19 00:22:32 2005 +0000
17587
17588    revert last change, didn't do right thing at all, sorry for the noise
17589
17590commit 1b0c46c1ae61d751dd3ca96de8e2c3fe21c5f4f2
17591Author: Adam Jackson <ajax@nwnk.net>
17592Date:   Thu May 19 00:10:07 2005 +0000
17593
17594    Require automake 1.7 in AM_INIT_AUTOMAKE
17595
17596commit cd4657c175dbab6aaca36f18a0ca92c95b5567dd
17597Author: Søren Sandmann Pedersen  <sandmann@daimi.au.dk>
17598Date:   Tue May 17 22:32:09 2005 +0000
17599
17600    - Check for xproto as its CFLAGS are needed in the .pc file
17601
17602commit 46e8d8a65430dd87c10b066b5cff99a689c22241
17603Author: Egbert Eich <eich-at-freedesktop-dot-org>
17604Date:   Tue May 17 08:10:10 2005 +0000
17605
17606    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).
17607
17608commit 23198d2bfbf0049b2630235cd4d4a4ffba7ec6c1
17609Author:  <ssp@aware-of-vacuity.boston.redhat.com>
17610Date:   Mon May 16 22:35:27 2005 +0000
17611
17612    Make Xdmcp unconditionally required, require various protocol modules.
17613    Mon May 16 17:48:03 2005 Søren Sandmann <sandmann@redhat.com>
17614    Check for kbproto if using XKB.
17615    Require xextproto rather than xextensions
17616    Remove the entries from the xlibs tree, as they are not relevant here.
17617
17618commit 8bd3aea84ce54b8b76a898f3ae00e2b499c14a5e
17619Author: Søren Sandmann Pedersen  <sandmann@daimi.au.dk>
17620Date:   Mon May 16 21:48:36 2005 +0000
17621
17622    Mon May 16 17:48:03 2005 Søren Sandmann <sandmann@redhat.com>
17623    Check for kbproto if using XKB.
17624
17625commit 9b1fa9ca3ed852ed40860f137511683f4bdae6fa
17626Author:  <ssp@aware-of-vacuity.boston.redhat.com>
17627Date:   Mon May 16 21:27:35 2005 +0000
17628
17629    Require xextproto rather than xextensions
17630    Remove the entries from the xlibs tree, as they are not relevant here.
17631
17632commit 7eee605e3aeed549d1053325a03027c5e8cbf71b
17633Author: Søren Sandmann Pedersen  <sandmann@daimi.au.dk>
17634Date:   Fri May 13 22:53:36 2005 +0000
17635
17636    - For now put xtrans in X11/Xtrans/X11, since libX11 is looking for it in <X11/...>
17637    - For Xcomposite and Xdamage, don't link the build system out of the xc tree
17638    - Link the public X11 headers into their own directory
17639    - Add links to XKeysymDB and XErrorDB
17640    - Add links to all the Xlib man pages
17641    - Add links to the lcUniConv subdirectory
17642    - Conditionally include config.h in Xlib source
17643
17644commit 6769ccda88caf27d1441d335ef2b318a047a612b
17645Author: Alan Coopersmith <alan.coopersmith@sun.com>
17646Date:   Mon Mar 21 04:58:21 2005 +0000
17647
17648    xc/lib/X11/ErrDes.c
17649    //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>
17650
17651commit 3b9e8ece93b916c55a82df53e85f097418edf471
17652Author: Roland Mainz <roland.mainz@nrubsig.org>
17653Date:   Sat Mar 19 22:04:55 2005 +0000
17654
17655    xc/nls/Compose/iso8859-2
17656    xc/nls/Compose/iso8859-3
17657    xc/nls/Compose/iso8859-9
17658    //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>.
17659
17660commit 0ce5950a08b9ab23ca8a32effdd40c421e92df84
17661Author: Alan Coopersmith <alan.coopersmith@sun.com>
17662Date:   Tue Mar 8 02:53:36 2005 +0000
17663
17664    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>.
17665
17666commit df341cd2f2f263f13323e8c0936ea8aa0d7fbba1
17667Author: Roland Mainz <roland.mainz@nrubsig.org>
17668Date:   Tue Feb 1 03:12:28 2005 +0000
17669
17670    xc/nls/Compose/pt_BR.UTF-8
17671    //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>.
17672
17673commit 483d3973f56dda51f9251d3ea808aaf7f3b48c10
17674Author: Markus Kuhn <Markus.Kuhn@cl.cam.ac.uk>
17675Date:   Fri Jan 28 18:31:31 2005 +0000
17676
17677    cleaned up boundary-case handling for Uxxxx Unicode keysym notation
17678
17679commit f234188a4c1e6b655aef0e3957ccad20d4c5847f
17680Author: Roland Mainz <roland.mainz@nrubsig.org>
17681Date:   Wed Jan 19 01:53:55 2005 +0000
17682
17683    xc/nls/compose.dir
17684    xc/nls/locale.dir
17685    xc/nls/Compose/Imakefile
17686    xc/nls/Compose/pt_BR.UTF-8
17687    xc/nls/XI18N_OBJS/Imakefile
17688    xc/nls/XI18N_OBJS/pt_BR.UTF-8
17689    xc/nls/XLC_LOCALE/Imakefile
17690    xc/nls/XLC_LOCALE/pt_BR.UTF-8
17691    //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.
17692
17693commit 7448ea7ef425d35cfc31eb41d46f4d879774f376
17694Author: Egbert Eich <eich-at-freedesktop-dot-org>
17695Date:   Fri Jan 14 18:03:09 2005 +0000
17696
17697    Made some security enhancements:
17698    - no writing past end of buffer caused by bogus locale.
17699    - explicitely add a \0 character at end of string. (Bugzilla #2262)
17700
17701commit 5557d47fcf22a6f3adf327691158f2270e3d5094
17702Author: Roland Mainz <roland.mainz@nrubsig.org>
17703Date:   Fri Jan 14 04:59:05 2005 +0000
17704
17705    xc/nls/compose.dir
17706    xc/nls/locale.alias
17707    xc/nls/locale.dir
17708    //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>.
17709
17710commit 1fa3737f042f798fa11a9ff5b03f3b3ba3529824
17711Author: Egbert Eich <eich-at-freedesktop-dot-org>
17712Date:   Tue Jan 11 17:37:57 2005 +0000
17713
17714    '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.
17715
17716commit 642cd269f94a234aa470a1d43385bd42625d89a1
17717Author: Egbert Eich <eich-at-freedesktop-dot-org>
17718Date:   Tue Dec 14 08:59:20 2004 +0000
17719
17720    Removed #ifdef'ed out code together with the comment explaining why it was #ifdef'ed out.
17721    Fixed typo.
17722    Added comment to a changed that's been committed with one of the previous commits.
17723
17724commit a07ccae36e629741d2e48de7730114d30a975a41
17725Author: Matthieu Herrb <matthieu.herrb@laas.fr>
17726Date:   Sun Dec 12 08:42:50 2004 +0000
17727
17728    Fix missing XChangeProperty() prototype missing in synopsis section.
17729
17730commit c73adb1c8ad806c2f9f0ba32f4b449e7a871501c
17731Author: Alexander Gottwald <ago at freedesktop dot org>
17732Date:   Wed Dec 8 13:42:01 2004 +0000
17733
17734    Bugzilla #1980 (https://bugs.freedesktop.org/show_bug.cgi?id=1980) Handle XERRORDB only on WIN32 platform
17735
17736commit d5e7ab194103e22fd6c5094aaa107d90210bb600
17737Author: Jim Gettys <jg@freedesktop.org>
17738Date:   Thu Dec 2 16:18:16 2004 +0000
17739
17740    fix comment to indicate additional possible mode. i bug 1756 reported by Owen Taylor.
17741
17742commit 03940d7330cb1bbf93d49c650aefb19de457da7c
17743Author: Alexander Gottwald <ago at freedesktop dot org>
17744Date:   Wed Dec 1 13:06:55 2004 +0000
17745
17746    Bugzilla #1980, https://bugs.freedesktop.org/show_bug.cgi?id=1980 Make location of XErrorDB configurable
17747
17748commit 11a03ab908bfcfab8a3492684e8e9320e492d552
17749Author: Alexander Gottwald <ago at freedesktop dot org>
17750Date:   Wed Dec 1 12:42:17 2004 +0000
17751
17752    Bugzilla #1864, http://freedesktop.org/bugzilla/show_bug.cgi?id=1864 Initialize pointer to NULL to avoid freeing random memory
17753
17754commit f3d83ee153f42e8899b844377e6b842d93411e62
17755Author: Alexander Gottwald <ago@freedesktop.org>
17756Date:   Mon Nov 15 15:06:54 2004 +0000
17757
17758    Bufzilla #1802, http://freedesktop.org/bugzilla/show_bug.cgi?id=1802 Added mingw (Win32) port
17759
17760commit b798ea11911ac58a8e6e7d15a2a643b023859749
17761Author: Alexander Gottwald <ago at freedesktop dot org>
17762Date:   Mon Nov 15 13:29:56 2004 +0000
17763
17764    Bugzilla #1864, http://freedesktop.org/bugzilla/show_bug.cgi?id=1864 Initialize pointer to NULL to avoid freeing random memory
17765
17766commit 436108cd6c84053698e5ca629096f59b34f50c2a
17767Author: Kristian Høgsberg  <krh@redhat.com>
17768Date:   Thu Nov 11 15:37:01 2004 +0000
17769
17770    Fix #1818
17771
17772commit bf2e6ef66ba55f90efa4a4ba8c8b6d3ec0d1531c
17773Author: Roland Mainz <roland.mainz@nrubsig.org>
17774Date:   Tue Nov 9 00:56:56 2004 +0000
17775
17776    xc/nls/compose.dir
17777    xc/nls/locale.alias
17778    xc/nls/locale.dir
17779    //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>.
17780
17781commit 443890ceefbd6dafe68e30d103ec4f9d316ed655
17782Author: Roland Mainz <roland.mainz@nrubsig.org>
17783Date:   Fri Nov 5 00:58:49 2004 +0000
17784
17785    xc/nls/compose.dir
17786    xc/nls/locale.alias
17787    xc/nls/locale.dir
17788    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>.
17789
17790commit af7467ec734321f127b957921cce7792902b6794
17791Author: Egbert Eich <eich-at-freedesktop-dot-org>
17792Date:   Mon Oct 18 17:29:03 2004 +0000
17793
17794    Correcting font encodings for GB18030, GBK and BIG5-HKSCS. Adding nls support for those encodings (Bugzilla 1573, James Su).
17795
17796commit 1b900b59cb24fe8be3db0d434b04d462c0eeb206
17797Author: Egbert Eich <eich-at-freedesktop-dot-xorg>
17798Date:   Mon Oct 18 14:21:45 2004 +0000
17799
17800    Made handling of DevelDrivers for x86-64 more conformant to other platforms.
17801    Compress all font encodings (Stefan Dirsch).
17802    Fixed warnings.
17803    Turn on forwarding XNSpotLocation event to XIM server in OffTheSpot and Root mode (bugzilla #1580, James Su).
17804    Added another compose key combination for the Euro symbol (Stefan Dirsch).
17805    Added support for UTF-8 in ja_JP, ko_KR and zh_TW locales (Mike Fabian).
17806    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.
17807    Added explanation for DESTDIR to install to a different directory than /.
17808    Added some early bailouts to atiprobe if PCI structure pointer is NULL to prevent sig11.
17809    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.
17810    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().
17811    Use /dev/xconsole (named pipe) or devpts for system logger (Werner Fink).
17812    Create missing links for backward compatibility to XFree86 (Stefan Dirsch).
17813    Changed comment to mention xorg.
17814    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).
17815    Added 'pic' to the man page rendering command pipeline (Werner Fink).
17816    Added missing return value (Stefan Dirsch, Roland Mainz)
17817
17818commit 1ba103c3cad2329db3a31f88d7798b913affc570
17819Author: Eric Anholt <anholt@freebsd.org>
17820Date:   Wed Oct 13 07:38:00 2004 +0000
17821
17822    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>)
17823
17824commit d80237db627bf71ad5615ff4ba05e6ab436aa740
17825Author: Søren Sandmann Pedersen  <sandmann@daimi.au.dk>
17826Date:   Fri Oct 8 22:57:56 2004 +0000
17827
17828    Fri Oct 8 18:53:11 2004 Soeren Sandmann <sandmann@redhat.com>
17829    Move iso10646 last so the "fallback" fonts will actually be used if they are better matches.
17830
17831commit d1f76d17ecf418396627b1a58319f2b9b255548a
17832Author: Markus Kuhn <Markus.Kuhn@cl.cam.ac.uk>
17833Date:   Sun Sep 26 22:54:57 2004 +0000
17834
17835    bug fix for previous patch
17836
17837commit 48932d9b71d10e15812f47d5b842ab6aa8dac625
17838Author: Markus Kuhn <Markus.Kuhn@cl.cam.ac.uk>
17839Date:   Sun Sep 26 20:46:17 2004 +0000
17840
17841    The big keysym cleanup, to bring implementation in line with the recent revision of Appendix A of the protocol spec. (Markus Kuhn)
17842
17843commit 2e02a95dcc43dd3ec7bbaf4675ffb94f5074f543
17844Author: Egbert Eich <eich@freedesktop.org>
17845Date:   Wed Sep 15 09:05:22 2004 +0000
17846
17847    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).
17848    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).
17849
17850commit 2d3afb68a104a80a21ee622b9abb9c95e83505d3
17851Author: Egbert Eich <eich@freedesktop.org>
17852Date:   Tue Aug 31 11:37:03 2004 +0000
17853
17854    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).
17855
17856commit e689746c8d0e21e9011e8b91a3071d235d3a2a74
17857Author: Kevin E Martin <kem@kem.org>
17858Date:   Thu Aug 19 06:48:06 2004 +0000
17859
17860    Fix header file to #ifdef the XKB keysyms when they are used. This fixes the X test suite build failure.
17861
17862commit d558a53a6f57eecfcaadce5141fe3a08860defcb
17863Author: Keith Packard <keithp@keithp.com>
17864Date:   Sat Aug 14 07:12:36 2004 +0000
17865
17866    Use XLIB_SKIP_ARGB_VISUALS environment variable to disable all depth 32 visuals. Necessary to keep Flash from crashing.
17867    Must call ValidateGC/ValidatePicture on "real" GC/Picture to ensure pCompositeClip is set correctly.
17868    Need to take the composite clip from the "real" GC/Picture and turn it into the clientClip for the backing version.
17869    Adjust pixmap screen origin to account for drawable->x/y Change debugging output a bit (disabled by default)
17870
17871commit 85c2d81f299ed3444658011b7d6fb0a7ab8a6f55
17872Author: Alexander Gottwald <ago@freedesktop.org>
17873Date:   Fri Aug 13 16:28:19 2004 +0000
17874
17875    Set most significant bit to be a one. (Bug #1024, Kensuke Matsuzaki)
17876    Fix conversion from sjis and euc. (Bug #1024, Toshio Takabe)
17877
17878commit c4d56e4e288d4e48b84b021a61638f46e9a45e27
17879Author: Adam Jackson <ajax@nwnk.net>
17880Date:   Wed Aug 11 05:25:13 2004 +0000
17881
17882    Bug #372: Prevent a crash in XPolygonRegion when called with a bogus point count. Reported by Andreas Luik.
17883
17884commit 92487437173f600f208d825f65756d3ad14a4f7e
17885Author: Kevin E Martin <kem@kem.org>
17886Date:   Mon Aug 9 22:37:22 2004 +0000
17887
17888    Fix install problem on platforms not using xorg.cf/xfree86.cf (Bug #339, Harold L. Hunt II, Alexander Gottwald).
17889    Fix crash when using X core font in zh_CN.UTF-8 locale (Bug #368, Yu Shao, David Dawes).
17890    Fix glXMakeCurrent(Dpy, None, NULL) crash (Bug #719, Adam Jackson).
17891    HP-PA build fix (Bug #828, Guy Martin, Paul Anderson).
17892    Fix SDK build for GATOS and Wacom driver (Bug #829, Bryan Stine).
17893    Fix attempt to read video ROM before enabling it (Bug #843, Ivan Kokshaysky, Mike A. Harris).
17894    Fix detection of primary adapter (Bug #843, Ivan Kokshaysky, Mike A. Harris).
17895    Clarify xset man page description of how to use the keyboard repeat rate settings (Bug #846, Mike A. Harris).
17896    Fix problem where print-screen key would get remapped to sys-req in certain keymaps, which broke GNOME printscreen functionality (Bug #847, Owen Taylor).
17897    Fix several render problems:
17898    - MMIO mode support
17899    - Hang on IGP chips
17900    - VT switching hang
17901    - 3D render corruption (Bug #922, Hui Yu).
17902
17903commit 55c2ee568e7d3903258286a13bdf96ce5348ffda
17904Author: Matthieu Herrb <matthieu.herrb@laas.fr>
17905Date:   Tue Jul 27 06:06:05 2004 +0000
17906
17907    - remove remaining AMOEBA references.
17908    - remove unused file.
17909
17910commit 6e884b12911eedfb003e90a3829ce66f7fc9cf2d
17911Author: Søren Sandmann Pedersen  <sandmann@daimi.au.dk>
17912Date:   Tue Jul 20 17:48:09 2004 +0000
17913
17914    Tue Jul 20 19:38:06 2004 Soeren Sandmann <sandmann@daimi.au.dk>
17915    Set font_data->xlfd_data to NULL after XFree(). (#837, patch from Bastien Nocera).
17916    Tue Jul 20 18:23:32 2004 Soeren Sandmann <sandmann@daimi.au.dk>
17917    Use /dev/urandom on Linux.(#761).
17918
17919commit 6f0bc97aa4e6de5a4b001f40ac10795cfdf09fc1
17920Author: Eric Anholt <anholt@freebsd.org>
17921Date:   Fri May 28 23:26:44 2004 +0000
17922
17923    Forced commit to note repocopy from xc/lib/XThrStub, will be connected to the build after this.
17924
17925commit aa7010c43ae9f39fb84b5ff155f76117c9e527a0
17926Author: Egbert Eich <eich@pdx.freedesktop.org>
17927Date:   Mon May 24 19:02:11 2004 +0000
17928
17929    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.
17930
17931commit 720702da29769d80ad1254d92edbad5b30f8a8da
17932Author: Alan Coopersmith <alan.coopersmith@sun.com>
17933Date:   Sat May 22 03:47:42 2004 +0000
17934
17935    Bugzilla #658: XStringToKeysym fails for Greek_IOTAdiaeresis (Fixes VSW5 testcase XStringToKeysym-7 failure)
17936
17937commit 3aed873292424b497d9a7dcee2975b95bf5ac966
17938Author: Alan Coopersmith <alan.coopersmith@sun.com>
17939Date:   Sat Apr 24 23:39:25 2004 +0000
17940
17941    XOpenDisplay should try tcp connection if local connections fail (aka Sun bug id #4624183).
17942    Also includes fix from NetBSD Problem Report #25098 (Michael van Elst) (Xlib segfaults with IPv6 if compiled with HASXDMAUTH).
17943    xc/config/cf/sunLib.tmpl
17944    xc/lib/FS/Imakefile Add missing shared library dependencies for Solaris
17945
17946commit c6349f43193b74a3c09945f3093a871b0157ba47
17947Author: Egbert Eich <eich@freedesktop.org>
17948Date:   Fri Apr 23 18:42:09 2004 +0000
17949
17950    Merging XORG-CURRENT into trunk
17951
17952commit c3c4ddc682950a01b80825021f3e2503ab01ea7f
17953Author: Kaleb Keithley <kaleb@freedesktop.org>
17954Date:   Tue Nov 25 19:28:07 2003 +0000
17955
17956    Initial revision
17957
17958commit dc4268a7dadc8da0d561757a68461246728613d3
17959Author: Kaleb Keithley <kaleb@freedesktop.org>
17960Date:   Fri Nov 14 16:48:47 2003 +0000
17961
17962    Initial revision
17963
17964commit deae12c6b683898f5213992d561a59d4ea889cca
17965Author: Kaleb Keithley <kaleb@freedesktop.org>
17966Date:   Fri Nov 14 15:54:30 2003 +0000
17967
17968    R6.6 is the Xorg base-line
17969