ChangeLog revision d4a3aaf4
1commit ca8115186f810eccb7d86b0979980eff3ba95f0b
2Author: Keith Packard <keithp@keithp.com>
3Date:   Thu Nov 19 11:30:41 2020 -0800
4
5    Version 1.7.0
6    
7    Release notes in README.md, version bump in configure.ac
8    
9    Signed-off-by: Keith Packard <keithp@keithp.com>
10
11commit 325ac177fb6d38f4c7689d9ce059792eaef388ef
12Author: Keith Packard <keithp@keithp.com>
13Date:   Mon Nov 16 15:48:40 2020 -0800
14
15    Update libX11 .so version to 6.4.0
16    
17    There have been API additions since the previous release, so the
18    .so version needs to change.
19    
20    Signed-off-by: Keith Packard <keithp@keithp.com>
21
22commit 103e2e11519984aa5746c06e7d90d1f5bc8174a3
23Author: Alan Coopersmith <alan.coopersmith@oracle.com>
24Date:   Sat Oct 31 09:24:01 2020 -0700
25
26    Don't leave dangling pointers in Free functions
27    
28    While these are mostly called during teardown of larger structures
29    that are about to themselves be freed, there's no guarantee that
30    will always be the case, so try to be safer here.
31    
32    [ This bug was found by the Parfait 4.0 bug checking tool.
33      http://labs.oracle.com/pls/apex/f?p=labs:49:::::P49_PROJECT_ID:13 ]
34    
35    v2: Deduplicate & simplify pointer clearing in _XFreeEventCookies
36        as suggested by @keithp
37    
38    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
39
40commit 7d70e302218e2ec8518548ddcdc02d828e7889af
41Author: Alan Coopersmith <alan.coopersmith@oracle.com>
42Date:   Sat Oct 31 08:56:34 2020 -0700
43
44    XimProto.h: wrap XIM_HEADER_SIZE definition in parens
45    
46    Resolves parfait warning of potential macro misinterpretation if
47    expanded in the midst of other arithmetic operations with higher
48    precedence.
49    
50    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
51
52commit a3c0b5dbd6b12ae64bc78b11795647a7f6df0c7a
53Author: Keith Packard <keithp@keithp.com>
54Date:   Tue Nov 17 13:15:18 2020 -0800
55
56    Copy locale modifiers when creating XimInstCallback [v2]
57    
58    Locale modifiers may be freed whenever XSetLocaleModifiers gets
59    called, even if the locale hasn't changed. This means that we cannot
60    save a pointer to those modifiers in the XimInstCallback record and
61    must, instead, make a copy of them instead.
62    
63    This fixes a problem uncovered when running wish under libasan as
64    follows (on current Debian unstable):
65    
66            $ LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libasan.so.6 wish
67    
68    Reported-by: Vittorio Zecca <zeccav@gmail.com>
69    Signed-off-by: Keith Packard <keithp@keithp.com>
70    
71    v2:
72            Remove incorrect 'else' token found by @alanc
73
74commit 960e2e0cfac12c3477c672d0d40818a0dc74aca5
75Author: Peter Hutterer <peter.hutterer@who-t.net>
76Date:   Mon Nov 16 09:34:57 2020 +1000
77
78    gitlab CI: add a basic build test
79    
80    Using Arch as base distribution here because we can expect our dependencies to
81    be up-to-date. We rely on the Arch for our dependencies rather than building
82    those from git (notably: xorg-macros, xtrans and libxcb).
83    
84    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
85
86commit dbb55e1a5e82870466b095097d9e46046680ec25
87Author: Frediano Ziglio <fziglio@redhat.com>
88Date:   Wed Jan 29 09:06:54 2020 +0000
89
90    Fix poll_for_response race condition
91    
92    In poll_for_response is it possible that event replies are skipped
93    and a more up to date message reply is returned.
94    This will cause next poll_for_event call to fail aborting the program.
95    
96    This was proved using some slow ssh tunnel or using some program
97    to slow down server replies (I used a combination of xtrace and strace).
98    
99    How the race happens:
100    - program enters into poll_for_response;
101    - poll_for_event is called but the server didn't still send the reply;
102    - pending_requests is not NULL because we send a request (see call
103      to  append_pending_request in _XSend);
104    - xcb_poll_for_reply64 is called from poll_for_response;
105    - xcb_poll_for_reply64 will read from server, at this point
106      server reply with an event (say sequence N) and the reply to our
107      last request (say sequence N+1);
108    - xcb_poll_for_reply64 returns the reply for the request we asked;
109    - last_request_read is set to N+1 sequence in poll_for_response;
110    - poll_for_response returns the response to the request;
111    - poll_for_event is called (for instance from another poll_for_response);
112    - event with sequence N is retrieved;
113    - the N sequence is widen, however, as the "new" number computed from
114      last_request_read is less than N the number is widened to N + 2^32
115      (assuming last_request_read is still contained in 32 bit);
116    - poll_for_event enters the nested if statement as req is NULL;
117    - we compare the widen N (which now does not fit into 32 bit) with
118      request (which fits into 32 bit) hitting the throw_thread_fail_assert.
119    
120    To avoid the race condition and to avoid the sequence to go back
121    I check again for new events after getting the response and
122    return this last event if present saving the reply to return it
123    later.
124    
125    To test the race and the fix it's helpful to add a delay (I used a
126    "usleep(5000)") before calling xcb_poll_for_reply64.
127    
128    Original patch written by Frediano Ziglio, see
129    https://gitlab.freedesktop.org/xorg/lib/libx11/-/merge_requests/34
130    
131    Reworked primarily for readability by Peter Hutterer, see
132    https://gitlab.freedesktop.org/xorg/lib/libx11/-/merge_requests/53
133    
134    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
135
136commit 30ccef3a48029bf4fc31d4abda2d2778d0ad6277
137Author: Keith Packard <keithp@keithp.com>
138Date:   Sat Nov 7 22:22:47 2020 -0800
139
140    Avoid recursing through _XError due to sequence adjustment
141    
142    This patch is based on research done by Dmitry Osipenko to uncover the
143    cause of a large class of Xlib lockups.
144    
145    _XError must unlock and re-lock the display around the call to the
146    user error handler function. When re-locking the display, two
147    functions are called to ensure that the display is ready to generate a request:
148    
149        _XIDHandler(dpy);
150        _XSeqSyncFunction(dpy);
151    
152    The first ensures that there is at least one XID available to use
153    (possibly calling _xcb_generate_id to do so). The second makes sure a
154    reply is received at least every 65535 requests to keep sequence
155    numbers in sync (possibly generating a GetInputFocus request and
156    synchronously awaiting the reply).
157    
158    If the second of these does generate a GetInputFocus request and wait
159    for the reply, then a pending error will cause recursion into _XError,
160    which deadlocks the display.
161    
162    One seemingly easy fix is to have _XError avoid those calls by
163    invoking InternalLockDisplay instead of LockDisplay. That function
164    does everything that LockDisplay does *except* call those final two
165    functions which may end up receiving an error.
166    
167    However, that doesn't protect the system from applications which call
168    some legal Xlib function from within their error handler. Any Xlib
169    function which cannot generate protocol or wait for events is valid,
170    including many which invoke LockDisplay.
171    
172    What we need to do is make LockDisplay skip these two function calls
173    precisely when it is called from within the _XError context for the
174    same display.
175    
176    This patch accomplishes this by creating a list of threads in the
177    display which are in _XError, and then having LockDisplay check the
178    current thread against those list elements.
179    
180    Inspired-by: Dmitry Osipenko <digetx@gmail.com>
181    Signed-off-by: Keith Packard <keithp@keithp.com>
182    Tested-by: Dmitry Osipenko <digetx@gmail.com>
183    Reviewed-by: Dmitry Osipenko <digetx@gmail.com>
184
185commit c9c4d6efbf92ab51695e2e740319503221d68eed
186Author: Benno Schulenberg <bensberg@telfort.nl>
187Date:   Fri Nov 13 11:34:04 2020 +0100
188
189    nls: improve the comments for the Serbian compose sequences
190    
191    Also put an extra space before the lone combining characters
192    so they have some room to breathe.
193    
194    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
195
196commit 3497dae3d9c52a252110b2a0983b82000be0fe8e
197Author: Benno Schulenberg <bensberg@telfort.nl>
198Date:   Fri Nov 13 11:23:09 2020 +0100
199
200    nls: remove mistaken Serbian compose sequences with combining diacritics
201    
202    Combining characters are not dead keys -- they have an immediate effect
203    and combine with the preceding character.  So they cannot be used in
204    compose sequences.
205    
206    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
207
208commit 5cd60398b7787297008b13a848ed3cfbd7ef178d
209Author: Benno Schulenberg <bensberg@telfort.nl>
210Date:   Mon Nov 2 16:34:39 2020 +0100
211
212    nls: rename the obsolete sr_CS locale to sr_RS
213    
214    Fixes #107, for the most part.
215    
216    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
217
218commit 7cf1729590534e257b851899cf03421b65c538e3
219Author: Keith Packard <keithp@keithp.com>
220Date:   Sat Nov 7 17:02:56 2020 -0800
221
222    Don't attempt to unload locale context data
223    
224    Most locale context users call _XlcCurrentLC, which returns a pointer
225    which never needs to be passed to _XCloseLC, meaning it has unbounded
226    lifetime, so that locale data can never be freed.
227    
228    Remove all reference counting and just leave all locales that were
229    ever used in memory.
230    
231    Signed-off-by: Keith Packard <keithp@keithp.com>
232    Acked-by: Martin Peres <martin.peres@mupuf.org>
233
234commit 87a8fd8051b823636c3c4f3c37c4cfd11fdb880d
235Author: Jacek Caban <jacek@codeweavers.com>
236Date:   Mon Aug 14 19:20:19 2017 +0200
237
238    Don't cache last lcd in _XlcCurrentLC.
239    
240    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=55678
241    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=68538
242    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=69088
243    
244    The way it's currently cached is not thread safe. As long as locale doesn't change, the same object is reused anyway.
245    
246    Signed-off-by: Jacek Caban <jacek@codeweavers.com>
247    Signed-off-by: Keith Packard <keithp@keithp.com>
248    Acked-by: Martin Peres <martin.peres@mupuf.org>
249
250commit 7a38c09b82ee2522d987c3da4af8af186e562c61
251Author: Keith Packard <keithp@keithp.com>
252Date:   Sat Nov 7 16:59:37 2020 -0800
253
254    Don't cache converters in _Xlcmbtowc and Xlcwctomb
255    
256    These functions were caching encoding conversion functions in static
257    variables which is not thread safe. Let the conversion loader do its
258    job and cache locale to converters there. It's less efficient, but
259    it's also (now) thread safe.
260    
261    Signed-off-by: Keith Packard <keithp@keithp.com>
262    Acked-by: Martin Peres <martin.peres@mupuf.org>
263
264commit b52ba5c209165fc2c533b77b86147b31763299f3
265Author: Jacek Caban <jacek@codeweavers.com>
266Date:   Mon Aug 14 19:20:20 2017 +0200
267
268    Make conv_list thread safe.
269    
270    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=55678
271    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=68538
272    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=69088
273    Signed-off-by: Jacek Caban <jacek@codeweavers.com>
274    Signed-off-by: Keith Packard <keithp@keithp.com>
275    Acked-by: Martin Peres <martin.peres@mupuf.org>
276
277commit 8b5ce3a9b1219c81711944880e5a1e1cfad3d956
278Author: Antti Savolainen <antti.savo@gmail.com>
279Date:   Wed Sep 16 07:47:26 2020 +0000
280
281    Added DOWNWARD ARROW support
282
283commit 7138826dccba9d538dfb142ce9af1a40d64ea849
284Author: Antti Savolainen <antti.savo@gmail.com>
285Date:   Tue Sep 8 00:54:23 2020 +0300
286
287    Added support for UPWARDS ARROW and ALMOST EQUAL TO
288    
289    Signed-off-by: Antti Savolainen <antti.savo@gmail.com>
290
291commit 56d59299f7433cdeb88bac970b06eb7df44df5bb
292Author: Jonathan Belsewir <jonbel@jonasund.de>
293Date:   Thu Nov 5 22:57:50 2020 +0000
294
295    Add less and greater to characters that are difficult to access on some keyboards
296
297commit 5caf45f8d3bebad5b72ac88545adc156ccfd754d
298Author: Benno Schulenberg <bensberg@telfort.nl>
299Date:   Fri Oct 23 17:12:22 2020 +0200
300
301    nls: Allow all letters with a caron to be composed also with v.
302    
303    It was strange that the accented letters Ž and ž can be composed with
304    sequences that start with "v" ("v Z" and "v z"), but not Č and č and
305    Š and š (and other letters with a caron).  For these letters, compose
306    sequences that start with a "c" had to be used, which was frustrating
307    because it is hard to remember that "c" stands for "caron", AND the
308    graphically more obvious "v" is right next to it.
309    
310    (Unfortunately, the sequence "v l" is already taken for vertical line.
311    Maybe the compose sequences for vertical line could be reduced to just
312    "V L" and "L V"?)
313    
314    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
315
316commit 62de4ac9025e2cb3f62a890241c06ebc75acce62
317Author: Benno Schulenberg <bensberg@telfort.nl>
318Date:   Sun Nov 1 20:23:55 2020 +0100
319
320    nls: vertically align the target column of aliases
321    
322    Also improve the grammar of the initial comment.
323    
324    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
325
326commit f5b26a16ef959fc6860e9cf58b97a042600900b4
327Author: Benno Schulenberg <bensberg@telfort.nl>
328Date:   Sun Nov 1 20:17:05 2020 +0100
329
330    nls: remove some twenty aliases that have been obsolete for fifteen years
331    
332    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
333
334commit 3e61f3b49660e081108f06bc514366f1784cb2e0
335Author: Benno Schulenberg <bensberg@telfort.nl>
336Date:   Sun Nov 1 19:50:56 2020 +0100
337
338    nls: remove country-specific aliases for two constructed languages
339    
340    These artificial languages are meant to be international and are
341    thus not specific to any country.  If one would want to support
342    aliases like ia_FR or ia_CH, then one would also have to support
343    ia_AU, ia_DE, ia_ES, et cetera, et cetera.  That would be silly.
344    
345    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
346
347commit 3f9c43adde22bb2ab4bef5837bc8401af9bb537c
348Author: Benno Schulenberg <bensberg@telfort.nl>
349Date:   Sun Nov 1 17:28:24 2020 +0100
350
351    nls: remove four aliases where the name is identical to the definition
352    
353    They were found with:
354    
355        while read one two; do
356            if [[ $one == $two: ]]; then echo $two; fi;
357        done  <nls/locale.alias.pre
358    
359    Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
360
361commit 9f9c5365816bdd036fd80d54b22e86764ea4b7a7
362Author: Carlos Garnacho <carlosg@gnome.org>
363Date:   Fri Jun 14 17:55:14 2019 +0200
364
365    Add XSetIOErrorExitHandler() function
366    
367    This function complements XSetIOErrorHandler(), allowing to override
368    the default behavior that trusts on I/O errors never coming back
369    (i.e. exit()ing the process).
370    
371    This is meant as a mechanism for Wayland compositors (that are too
372    a X11 client + compositing manager) to unfasten seatbelts and jump
373    through the car window. It might get lucky and land on a stack of
374    pillows.
375    
376    In consequence, some functions labeled as _X_NORETURN can as a
377    matter of fact return. So those hints were removed.
378    
379    Signed-off-by: Carlos Garnacho <carlosg@gnome.org>
380    Reviewed-by: Michel Dänzer <mdaenzer@redhat.com>
381
382commit 4cb758019e374fa7c022fe79d28444e13441717b
383Author: Carlos Garnacho <carlosg@gnome.org>
384Date:   Fri Jun 14 17:54:47 2019 +0200
385
386    Prepare for _XIOError() possibly returning
387    
388    Ensure current state is cut short on _XIOError(), possible reentrancy
389    should be skipped through the XlibDisplayIOError flag checks.
390    
391    Signed-off-by: Carlos Garnacho <carlosg@gnome.org>
392    Reviewed-by: Michel Dänzer <mdaenzer@redhat.com>
393
394commit a37986f7a7d4ae9b8292b132dbb0da2885ea919c
395Author: Ross Burton <ross.burton@intel.com>
396Date:   Wed Jan 22 17:11:23 2020 +0000
397
398    cpprules.in: squash whitespace in generated files
399    
400    CPP is used to generate files, but as cpp reads files from the build host the
401    output has a number of blank lines at the beginning which varies depending on
402    what GCC and friends is used.
403    
404    Pathalogical example:
405    
406     $ cpp -undef -traditional /dev/null
407     # 1 "/dev/null"
408     # 1 "<built-in>"
409     # 1 "<command-line>"
410     # 31 "<command-line>"
411     # 1 "/usr/include/stdc-predef.h" 1 3 4
412    
413     # 17 "/usr/include/stdc-predef.h" 3 4
414    
415     [ 40 blank line ]
416    
417     # 32 "<command-line>" 2
418     # 1 "/dev/null"
419    
420    So depending on the content of stdc-predef.h and what other headers CPP will
421    load, the amount of whitespace in the generates files varies. This can result in
422    differences in reproducible environments, and file conflicts in multilib
423    environments.
424    
425    As whitespace is irrelevant to these machine-readable files, extend the sed to
426    just delete blank lines.
427
428commit 16192ce2a7e462e09f95aa45ce9eaa180e483c43
429Author: Carmina16 <mistresssilvara@hotmail.com>
430Date:   Sun Jun 16 02:54:25 2019 +0000
431
432    Adding ia and ie locales
433
434commit caa71668af7fd3ebdd56353c8f0ab90824773969
435Author: Alan Coopersmith <alan.coopersmith@oracle.com>
436Date:   Mon Sep 28 16:16:07 2020 -0700
437
438    Use __builtin_popcountl if available to replace Ones() in GetImage.c
439    
440    If the compiler knows of a better algorithm for counting the number of
441    bits set in a word for the target CPU, let it use that, instead of the
442    classic algorithm optimized for PDP-6.
443    
444    Based on libXext commit 490a25e6f8a4d2482af4364c700b68ad11a4d10b
445    
446    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
447
448commit 1a9269a95c353e3de9f4d33bab9f1363d84e79db
449Author: Krzesimir Nowak <qdlacz@gmail.com>
450Date:   Mon Jun 1 12:58:30 2020 +0000
451
452    Fix leaking modifiers string.
453    
454    Reported by valgrind:
455    
456    ```
457    ==118175== 17 bytes in 1 blocks are definitely lost in loss record 13 of 1,675
458    ==118175==    at 0x483A809: malloc (vg_replace_malloc.c:307)
459    ==118175==    by 0x5CD1B46: _XlcDefaultMapModifiers (in /usr/lib64/libX11.so.6.3.0)
460    ==118175==    by 0x5CD1F1A: XSetLocaleModifiers (in /usr/lib64/libX11.so.6.3.0)
461    ==118175==    by 0x496841C: X11_InitKeyboard (SDL_x11keyboard.c:324)
462    ==118175==    by 0x496F0CA: X11_VideoInit (SDL_x11video.c:455)
463    ==118175==    by 0x494747B: SDL_VideoInit_REAL (SDL_video.c:532)
464    ==118175==    by 0x489E886: SDL_InitSubSystem_REAL (SDL.c:206)
465    ==118175==    by 0x402634: main (fade.cc:35)
466    ```
467
468commit d127217f26df1bf7566c1f372d8b5329a06754ea
469Author: Alan Coopersmith <alan.coopersmith@oracle.com>
470Date:   Sun Aug 16 17:03:24 2020 -0700
471
472    Exempt XLookupKeysym from XKeycodeToKeysym deprecation warnings
473    
474    Gets rid of:
475    src/xkb/XKBBind.c: In function ‘XLookupKeysym’:
476    src/xkb/XKBBind.c:234:5: warning: ‘XKeycodeToKeysym’ is deprecated
477    [https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wdeprecated-declarations-Wdeprecated-declarations]
478      234 |     return XKeycodeToKeysym(dpy, event->keycode, col);
479          |     ^~~~~~
480    src/xkb/XKBBind.c:96:1: note: declared here
481       96 | XKeycodeToKeysym(Display *dpy,
482          | ^~~~~~~~~~~~~~~~
483    
484    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
485
486commit a64eb5f478c6ca84ef3457a01f9a7c3db8ecf1e5
487Author: Alan Coopersmith <alan.coopersmith@oracle.com>
488Date:   Sun Aug 16 16:50:43 2020 -0700
489
490    lcUTF8: Increase string buffer size from 20 to 32 bytes
491    
492    While we don't expect large enough ints to need it, we don't
493    enforce a maximum size, so gcc assumes the worst and warns:
494    
495    ../../../src/xlibi18n/lcUTF8.c: In function ‘create_tofontcs_conv’:
496    ../../../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=]
497     1736 |  snprintf(buf, sizeof(buf), "fs%d.charset.name", i);
498          |                                  ^~~~~~~~~~~~~
499    ../../../src/xlibi18n/lcUTF8.c:1736:2: note: ‘snprintf’ output between 17 and 26 bytes into a destination of size 20
500     1736 |  snprintf(buf, sizeof(buf), "fs%d.charset.name", i);
501          |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
502    ../../../src/xlibi18n/lcUTF8.c:1739:46: warning: ‘snprintf’ output may be truncated before the last format character [-Wformat-truncation=]
503     1739 |      snprintf(buf, sizeof(buf), "fs%d.charset", i);
504          |                                              ^
505    ../../../src/xlibi18n/lcUTF8.c:1739:6: note: ‘snprintf’ output between 12 and 21 bytes into a destination of size 20
506     1739 |      snprintf(buf, sizeof(buf), "fs%d.charset", i);
507          |      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
508    ../../../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=]
509     1754 |         snprintf(buf, sizeof(buf), "fs%d.charset.name", i);
510          |                                         ^~~~~~~~~~~~~
511    ../../../src/xlibi18n/lcUTF8.c:1754:9: note: ‘snprintf’ output between 17 and 26 bytes into a destination of size 20
512     1754 |         snprintf(buf, sizeof(buf), "fs%d.charset.name", i);
513          |         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
514    ../../../src/xlibi18n/lcUTF8.c:1757:53: warning: ‘snprintf’ output may be truncated before the last format character [-Wformat-truncation=]
515     1757 |             snprintf(buf, sizeof(buf), "fs%d.charset", i);
516          |                                                     ^
517    ../../../src/xlibi18n/lcUTF8.c:1757:13: note: ‘snprintf’ output between 12 and 21 bytes into a destination of size 20
518     1757 |             snprintf(buf, sizeof(buf), "fs%d.charset", i);
519          |             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
520    
521    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
522
523commit 54925250ad9c825bea671dcade5c913bad88abee
524Author: Alan Coopersmith <alan.coopersmith@oracle.com>
525Date:   Sun Aug 16 16:33:59 2020 -0700
526
527    i18n: use memcpy instead of strncpy on unterminated char arrays
528    
529    Avoids gcc warnings that we're using strncpy wrong to copy a known-length
530    set of characters without a terminating '\0' to a buffer whose length we
531    are checking separately.  (Should also be imperceptibly faster since we
532    no longer check if each byte is '\0' when we already know it won't be.)
533    
534    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
535
536commit 8754868dbbbc5fa096282df0504aa7880488eeb9
537Author: Alan Coopersmith <alan.coopersmith@oracle.com>
538Date:   Sun Aug 16 16:02:01 2020 -0700
539
540    Mark FreeBlueTblElements label unused in LRGB.c
541    
542    Quiets gcc 10.2 warning of:
543    src/xcms/LRGB.c: In function ‘LINEAR_RGB_InitSCCData’:
544    src/xcms/LRGB.c:798:1: warning: label ‘FreeBlueTblElements’ defined
545     but not used
546    [https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wunused-label-Wunused-label]
547      798 | FreeBlueTblElements:
548          | ^~~~~~~~~~~~~~~~~~~
549    
550    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
551
552commit 52b0cd67073f2f4665884b5a7decfedeb3b7ca1e
553Author: Alan Coopersmith <alan.coopersmith@oracle.com>
554Date:   Sun Aug 16 14:54:47 2020 -0700
555
556    Raise minimum required xproto version to 7.0.25 (released 2013-11-23)
557    
558    Allows us to depend on _X_COLD directly instead of having to check for it.
559    
560    (Since we also use _X_UNUSED, 7.0.22 or later was implicitly required
561     already but not checked for.)
562    
563    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
564
565commit deafb99fd8faf8b044eaee13d072440ce4db76af
566Author: Maya Rashish <maya@NetBSD.org>
567Date:   Sun Aug 23 21:19:33 2020 +0300
568
569    Avoid the use of "register" keyword in public headers.
570    
571    This causes issues when compiling code for C++17.
572
573commit 505420662577749e36640db48f6b6b9ae0236e09
574Author: Matthieu Herrb <matthieu@herrb.eu>
575Date:   Mon Aug 24 15:42:25 2020 +0200
576
577    libX11 1.6.12
578    
579    Signed-off-by: Matthieu Herrb <matthieu@herrb.eu>
580
581commit acdaaadcb3d85c61fd43669fc5dddf0f8c3f911d
582Author: Matthieu Herrb <matthieu@herrb.eu>
583Date:   Thu Aug 13 18:02:58 2020 +0200
584
585    Fix an integer overflow in init_om()
586    
587    CVE-2020-14363
588    
589    This can lead to a double free later, as reported by Jayden Rivers.
590    
591    Signed-off-by: Matthieu Herrb <matthieu@herrb.eu>
592
593commit d15c24c8b44be5e4054c8ecd0ff9dcf2c8e18e5b
594Author: Niclas Zeising <zeising@daemonic.se>
595Date:   Tue Aug 11 13:44:38 2020 +0200
596
597    Fix input clients connecting to server
598    
599    Fix a bug where some input clients can't connect to the input server.
600    This fixes #117.
601    
602    FreeBSD bugzilla reference:
603    https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=248549
604    
605    Signed-off-by: Niclas Zeising <zeising@daemonic.se>
606
607commit 6dd618e5ea8e7558dd8e99a2777ab7b69211789c
608Author: Maya Rashish <maya@NetBSD.org>
609Date:   Sat Aug 15 00:48:56 2020 +0300
610
611    Avoid the use of "register" keyword in XkbTranslateKeySym.
612    
613    This causes issues when compiling code for C++17.
614    While here, make function prototype match the header with regards
615    to removal of another register keyword.
616
617commit 780d222343098b4bfe3ec529b4a0dc2aadea19bf
618Author: Christopher Chavez <chrischavez@gmx.us>
619Date:   Mon Aug 10 17:08:39 2020 +0000
620
621    Fix typo GCCLipYOrigin -> GCClipYOrigin in XCreateGC() manpage
622
623commit 29a8251a456bb7dc10146b4713f499a624d6dacd
624Author: Felix Yan <felixonmars@archlinux.org>
625Date:   Thu Aug 6 16:03:38 2020 +0000
626
627    Correct a typo in GetStCmap.c
628
629commit 0d8f038db83f68724a84ef9d4ccd0d5e33ec6a70
630Author: Alan Coopersmith <alan.coopersmith@oracle.com>
631Date:   Thu Aug 6 08:07:57 2020 -0700
632
633    libX11 1.6.11
634    
635    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
636
637commit 93fce3f4e79cbc737d6468a4f68ba3de1b83953b
638Author: Yichao Yu <yyc1992@gmail.com>
639Date:   Sun Aug 2 13:43:58 2020 -0400
640
641    Fix size calculation in `_XimAttributeToValue`.
642    
643    The check here guards the read below.
644    For `XimType_XIMStyles`, these are `num` of `CARD32` and for `XimType_XIMHotKeyTriggers`
645    these are `num` of `XIMTRIGGERKEY` ref[1] which is defined as 3 x `CARD32`.
646    (There are data after the `XIMTRIGGERKEY` according to the spec but they are not read by this
647    function and doesn't need to be checked.)
648    
649    The old code here used the native datatype size instead of the wire protocol size causing
650    the check to always fail.
651    
652    Also fix the size calculation for the header (size). It is 2 x CARD16 for both types
653    despite the unused `CARD16` for `XimType_XIMStyles`.
654    
655    [1] https://www.x.org/releases/X11R7.6/doc/libX11/specs/XIM/xim.html#Input_Method_Styles
656    
657    This fixes a regression caused by 388b303c62aa35a245f1704211a023440ad2c488 in 1.6.10.
658    
659    Fix #116
660
661commit 9949364ea761ab7efa2a9930ec7718f966a740c0
662Author: Matthieu Herrb <matthieu@herrb.eu>
663Date:   Thu Jul 30 21:36:22 2020 +0200
664
665    libX11 1.6.10
666    
667    Signed-off-by: Matthieu Herrb <matthieu@herrb.eu>
668
669commit 1703b9f3435079d3c6021e1ee2ec34fd4978103d
670Author: Matthieu Herrb <matthieu@herrb.eu>
671Date:   Fri Jul 24 21:09:10 2020 +0200
672
673    Change the data_len parameter of _XimAttributeToValue() to CARD16
674    
675    It's coming from a length in the protocol (unsigned) and passed
676    to functions that expect unsigned int parameters (_XCopyToArg()
677    and memcpy()).
678    
679    Signed-off-by: Matthieu Herrb <matthieu@herrb.eu>
680    Reviewed-by: Todd Carson <toc@daybefore.net>
681
682commit 1a566c9e00e5f35c1f9e7f3d741a02e5170852b2
683Author: Todd Carson <tc@daybefore.net>
684Date:   Fri Jul 24 20:59:32 2020 +0200
685
686    Zero out buffers in functions
687    
688    It looks like uninitialized stack or heap memory can leak
689    out via padding bytes.
690    
691    Signed-off-by: Matthieu Herrb <matthieu@herrb.eu>
692    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
693
694commit 2fcfcc49f3b1be854bb9085993a01d17c62acf60
695Author: Todd Carson <tc@daybefore.net>
696Date:   Fri Jul 24 20:22:44 2020 +0200
697
698    Fix more unchecked lengths
699    
700    Signed-off-by: Matthieu Herrb <matthieu@herrb.eu>
701    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
702
703commit 388b303c62aa35a245f1704211a023440ad2c488
704Author: Todd Carson <tc@daybefore.net>
705Date:   Fri Jul 24 19:36:51 2020 +0200
706
707    fix integer overflows in _XimAttributeToValue()
708    
709    Signed-off-by: Matthieu Herrb <matthieu@herrb.eu>
710    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
711
712commit 0e6561efcfaa0ae7b5c74eac7e064b76d687544e
713Author: Todd Carson <tc@daybefore.net>
714Date:   Fri Jul 24 19:33:30 2020 +0200
715
716    Fix signed length values in _XimGetAttributeID()
717    
718    The lengths are unsigned according to the specification. Passing
719    negative values can lead to data corruption.
720    
721    Signed-off-by: Matthieu Herrb <matthieu@herrb.eu>
722    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
723
724commit 2b7598221d87049d03e9a95fcb541c37c8728184
725Author: Alan Coopersmith <alan.coopersmith@oracle.com>
726Date:   Wed Jul 22 15:19:58 2020 -0700
727
728    Fix spelling/wording issues
729    
730    Found by using:
731        codespell --builtin clear,rare,usage,informal,code,names
732    
733    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
734
735commit f9e3378ebcfc79ff00591b8617a68e97580a741e
736Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
737Date:   Sun Jul 19 22:19:24 2020 +0200
738
739    xlibi18n: Fix converting horizline keysyms to UCS
740    
741    U+23BA - U+23BD are meant to represent the scan lines, and U+2500 is
742    unified with scan line 5.
743    
744    Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
745
746commit 4385a84c4a79c1b60bf12839899a1544198de975
747Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
748Date:   Thu Jun 4 02:19:13 2020 +0200
749
750    Braille: Fix default lookup
751    
752    cbb59d172 ('Braille: Fix typing quickly') broke the default lookup that
753    translates Braille keysym patterns to Braille Unicode patterns since it
754    rightfully clears brl_committing, but then we do not have it any more to
755    fill brl_committed.
756    
757    This change saves the committed pattern so we can return it in the
758    default lookup.
759    
760    Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
761
762commit fb65b67169105c82c243f265e0f993cf72efdacd
763Author: Marko Myllynen <myllynen@redhat.com>
764Date:   Fri Feb 28 13:59:36 2020 +0200
765
766    Update Finnish compose sequences for SFS 5966:2019 standard
767    
768    U0219, U0218, U021B, U021A are now part of the standard.
769    
770    Fixes #70 which was printed incorrectly in the earlier standard version.
771
772commit 07724ce046348a21cc82a874853b14b9a285df75
773Author: Tristan Miller <psychonaut@nothingisreal.com>
774Date:   Wed Sep 25 13:34:01 2019 +0200
775
776    Add acute accent compose sequences for Russian vowels.
777    
778    Fixes: https://gitlab.freedesktop.org/xorg/lib/libx11/issues/104
779    
780    Signed-off-by: Tristan Miller <psychonaut@nothingisreal.com>
781
782commit 3ec9264d01a3a66c0fa0145a7c1db06a64be1507
783Author: Thomas E. Dickey <dickey@invisible-island.net>
784Date:   Sat Apr 25 14:40:54 2020 -0400
785
786    document an ancient performance problem (see Debian #954845).
787    
788    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
789
790commit 791c93816ce0520d54925b0b3ccbc29823370041
791Author: Thomas E. Dickey <dickey@invisible-island.net>
792Date:   Sat Apr 25 14:22:11 2020 -0400
793
794    update/correct function prototypes in manpages to match headers
795    
796    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
797
798commit 844271305a28e87031562dfeb43defbea02960a2
799Author: Thomas E. Dickey <dickey@invisible-island.net>
800Date:   Tue Apr 21 20:53:35 2020 -0400
801
802    reduce gcc-normal warnings using casts (no object change)
803    
804    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
805
806commit 53b59ddfc114a55d26e9717a1b4822f1b18c40ca
807Author: Thomas E. Dickey <dickey@invisible-island.net>
808Date:   Tue Apr 21 18:13:22 2020 -0400
809
810    reduce gcc-normal warnings using casts (no object change)
811    
812    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
813
814commit 68c72a7341b114277ab232f2499ee3bd035af8a0
815Author: Adam Jackson <ajax@redhat.com>
816Date:   Wed Dec 11 11:53:11 2019 -0500
817
818    Fix XTS regression in XCopyColormapAndFree
819    
820    XCopyColormapAndFree/5 threw an assertion:
821    
822        520|4 5 00014017 1 2|Assertion XCopyColormapAndFree-5.(A)
823        520|4 5 00014017 1 3|When a colourmap argument does not name a valid colourmap,
824        520|4 5 00014017 1 4|then a BadColor error occurs.
825        520|4 5 00014017 1 5|METH: Create a bad colourmap by creating and freeing a colourmap.
826        520|4 5 00014017 1 6|METH: Call test function using bad colourmap as the colourmap argument.
827        520|4 5 00014017 1 7|METH: Verify that a BadColor error occurs.
828        520|4 5 00014017 1 8|unexpected signal 6 (SIGABRT) received
829        220|4 5 2 15:05:53|UNRESOLVED
830        410|4 5 1 15:05:53|IC End
831        510|4|system 0: Abandoning testset: caught unexpected signal 11 (SIGSEGV)
832    
833    More specifically:
834    
835        lt-XCopyColormapAndFree: xcb_io.c:533: _XAllocID: Assertion `ret != inval_id' failed.
836    
837    This bug was introduced (by following my advice, d'oh) in:
838    
839        commit 99a2cf1aa0b58391078d5d3edf0a7dab18c7745d
840        Author: Tapani Pälli <tapani.palli@intel.com>
841        Date:   Mon May 13 08:29:49 2019 +0300
842    
843            Protect colormap add/removal with display lock
844    
845    In that patch we moved the call to _XcmsCopyCmapRecAndFree inside the
846    display lock. The problem is said routine has side effects, including
847    trying to implicitly create a colormap in some cases. Since we don't run
848    the XID handler until SyncHandle() we would see inconsistent internal
849    xlib state, triggering the above assert.
850    
851    Fix this by dropping and re-taking the display lock before calling into
852    XCMS.
853    
854    Reviewed-by: Tapani Pälli <tapani.palli@intel.com>
855
856commit 7f46a38139f66fda734f3a6c445b84ea89c8f310
857Author: Alex Henrie <alexhenrie24@gmail.com>
858Date:   Wed Jan 1 14:54:06 2020 -0700
859
860    Handle small final sigma in XConvertCase
861    
862    lowercase: GREEK SMALL LETTER FINAL SIGMA (U+03C2)
863    uppercase: GREEK CAPITAL LETTER SIGMA (U+03A3)
864    
865    This mapping was correct in UCSConvertCase, but the "legacy" mapping
866    must also be correct for Caps Lock to work with the final sigma key.
867    
868    https://gitlab.freedesktop.org/xorg/lib/libx11/issues/5
869    
870    Signed-off-by: Alex Henrie <alexhenrie24@gmail.com>
871
872commit a48787d3d155c8a09cead345f5055da30c1db537
873Author: Peter Hutterer <peter.hutterer@who-t.net>
874Date:   Wed Dec 11 14:12:27 2019 +1000
875
876    Handle ssharp in XConvertCase()
877    
878    lowercase: LATIN SMALL LETTER SHARP S (U+00DF)
879    uppercase: LATIN CAPITAL LETTER SHARP S (U+1E9E)
880    
881    The uppercase sharp s (XK_ssharp) is a relatively recent addition to unicode
882    but was added to the relevant keyboard layouts in xkeyboard-config-2.25
883    (d1411e5e95c)
884    https://gitlab.freedesktop.org/xkeyboard-config/xkeyboard-config/issues/144
885    
886    Alas, the CapsLock behavior was broken on the finnish layout (maybe others).
887    This was due to xkbcomp using XConvertCase() to determine whether a key
888    requires the type FOUR_LEVEL_ALPHABETIC or FOUR_LEVEL_SEMIALPHABETIC.
889    
890    Let's make this function return the right lower/upper symbols for the sharp s
891    and hope that the world won't get any worse because of it.
892    
893    https://gitlab.freedesktop.org/xorg/lib/libx11/issues/110
894    
895    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
896
897commit b8766a438461e20b5c6f7a6111b703d4cb71501f
898Author: Raul Fernandes <rgfernandes@gmail.com>
899Date:   Wed Oct 9 18:39:26 2019 +0000
900
901    Use memcmp and memcpy
902
903commit db7cca17ad7807e92a928da9d4c68a00f4836da2
904Author: Adam Jackson <ajax@redhat.com>
905Date:   Wed Oct 9 13:41:29 2019 -0400
906
907    libX11 1.6.9
908    
909    Signed-off-by: Adam Jackson <ajax@redhat.com>
910
911commit f5ba2c632a4c84279bdd48c687271292f5dc4f87
912Author: Dmitry Osipenko <digetx@gmail.com>
913Date:   Sat May 18 19:10:32 2019 +0300
914
915    Fix lockup in _XReply() caused by recursive synchronization
916    
917    This patch is based on a suggestion made by Uli Schlachter in a comment
918    to the bug report https://gitlab.freedesktop.org/xorg/lib/libx11/issues/93.
919    
920    Explanation of the bug (given by Uli Schlachter as well):
921    
922    An error was received and handled. Since there was an error callback set,
923    Xlib unlocks the display, runs the error callback, and then locks the display
924    again. This goes through _XLockDisplay and then calls _XSeqSyncFunction.
925    On this "lock the thing"-path, Xlib notices that sequence numbers are close to
926    wrap-around and tries to send a GetInputFocus request. However, the earlier
927    calls already registered themselves as "we are handling replies/errors, do
928    not interfere!" and so the code here waits for "that other thread" to be done
929    before it continues. Only that there is no other thread, but it is this thread
930    itself and thus a deadlock follows.
931    
932    The bug is relatively easy to reproduce on any desktop environment by
933    using actively a touchscreen input that supports multitouch, i.e. practically
934    all mobile devices are affected.
935    
936    Fixes: https://gitlab.freedesktop.org/xorg/lib/libx11/issues/93
937    Suggested-by: Uli Schlachter <psychon@znc.in>
938    Tested-by: Dmitry Osipenko <digetx@gmail.com>
939    Reported-by: Dmitry Osipenko <digetx@gmail.com>
940    Signed-off-by: Dmitry Osipenko <digetx@gmail.com>
941
942commit 1f1ca0863fd81fd0538b104eb9d9841ddbc7c905
943Author: Adam Jackson <ajax@redhat.com>
944Date:   Fri Sep 13 16:44:32 2019 -0400
945
946    xkb: Provide <X11/extensions/XKBgeom.h> ourselves
947    
948    This header refers to libX11 types, it doesn't belong in xorgproto and
949    has been moved to legacy in 2019.2. Supply it ourselves.
950
951commit edc7680ed5a03cedb5facf14693823455e12c29c
952Author: Ross Burton <ross.burton@intel.com>
953Date:   Tue Aug 6 14:53:43 2019 +0100
954
955    src/util/Makefile: explicitly reset LINK to not use libtool
956    
957    Simply looking at libtool redefines LINK globally to use libtool, which when
958    you're trying to cross-compile to Windows can cause complications.
959    
960    As in src/util/ we're simply building a small binary for the build host, reset
961    LINK to the automake default so that the traditional compile/link steps occur
962    without libtool.
963    
964    Also remove -all-static from LDFLAGS as that is a libtool-specific argument
965    intended to solve this problem.
966    
967    Closes: #100
968    Signed-off-by: Ross Burton <ross.burton@intel.com>
969
970commit f111bf3ac091a3a6d1f094172621d9d033c3833c
971Author: Thomas E. Dickey <dickey@invisible-island.net>
972Date:   Tue Jul 30 16:53:27 2019 -0400
973
974    improve some formatting
975    
976    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
977
978commit 1d0a6fe9126c7ce61c6648cabf43b2de4d6d3ba9
979Author: Thomas E. Dickey <dickey@invisible-island.net>
980Date:   Tue Jul 30 15:49:09 2019 -0400
981
982    fix a substitution error from recent commit, e.g, "s/^\.EE/XDe/"
983    
984    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
985
986commit 8fe8aafe7e9beffaff0460fe08354dfcde1efe98
987Author: Thomas E. Dickey <dickey@invisible-island.net>
988Date:   Tue Jul 30 05:07:40 2019 -0400
989
990    split lines at sentence endings
991    
992    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
993
994commit 6f2cbcea5d6dcd1df7ef309481cad1663284c061
995Author: Thomas E. Dickey <dickey@invisible-island.net>
996Date:   Tue Jul 30 04:52:25 2019 -0400
997
998    trim trailing whitespace from manpages
999    
1000    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
1001
1002commit 4abf482d8e6b0b1ae84e0f528e71066afd6d18b5
1003Author: Thomas E. Dickey <dickey@invisible-island.net>
1004Date:   Tue Jul 30 04:36:24 2019 -0400
1005
1006    another fake-quote fix
1007    
1008    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
1009
1010commit c0f0651f2b4dfa9fef86d1374689220125631993
1011Author: Thomas E. Dickey <dickey@invisible-island.net>
1012Date:   Tue Jul 30 04:34:54 2019 -0400
1013
1014    the last commit overlooked some fake-quote pairs
1015    
1016    Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
1017
1018commit ef31143c9decda54b3ab2937d3300fcf5b493fd6
1019Author: Walter Harms <wharms@bfs.de>
1020Date:   Mon Jul 29 18:50:19 2019 +0200
1021
1022    fix ``fake quotes'' in text
1023    
1024    to remove the fake quotes replace them with propper
1025    predefined macros \*(lq and \*(rq. this will allow
1026    nroff to choose the propper characters when using ps etc.
1027    
1028    Signed-off-by: Walter Harms <wharms@bfs.de>
1029
1030commit 705027ea9b17d6552388d2067736ab4b0bf9dfb5
1031Author: Walter Harms <wharms@bfs.de>
1032Date:   Mon Jul 29 18:27:12 2019 +0200
1033
1034    get rid of ``fake quotes''
1035    
1036    these fake quotes are inside a comment and can be replaced with
1037    some double quotes
1038    
1039    Signed-off-by: Walter Harms <wharms@bfs.de>
1040
1041commit fe46eb287106ad05538e896783a5cf877a4138df
1042Author: Walter Harms <wharms@bfs.de>
1043Date:   Mon Jul 29 17:57:02 2019 +0200
1044
1045    remove all private macro defines
1046    
1047    after converting everything to st. man page macros there is
1048    no need to maintain X11 private nroff macros, so remove them.
1049    
1050    Signed-off-by: Walter Harms <wharms@bfs.de>
1051
1052commit b7f09ae19c9a098ecd545b4d4c45a6afe39a8764
1053Author: Walter Harms <wharms@bfs.de>
1054Date:   Mon Jul 29 17:47:35 2019 +0200
1055
1056    Replace home-grown .Ds .De macro with man page .EX/.EE macro
1057    
1058    Same pages use the man page .EX/.EE macro. Replace all occurences
1059    of .De/.Ds with the std. macros to make the code better to maintain.
1060    
1061    Signed-off-by: Walter Harms <wharms@bfs.de>
1062
1063commit 951e772bc8d89bc62c4bbac14adc5d4f5027419f
1064Author: Walter Harms <wharms@bfs.de>
1065Date:   Wed Jul 3 18:23:51 2019 +0200
1066
1067    fix TBL format
1068    
1069    Signed-off-by: Walter Harms <wharms@bfs.de>
1070
1071commit 4eb167f5aca4cca05a230c728ffdb4fd382a4e1e
1072Author: Walter Harms <wharms@bfs.de>
1073Date:   Wed Jul 3 18:18:09 2019 +0200
1074
1075    replace home grown .ZN with std, .B and .BR
1076    
1077    Replace the home grown macro .ZN with std. macros
1078    from man macro paket. So we can get rid of the
1079    definition an get a clean header.
1080    
1081    Signed-off-by: Walter Harms <wharms@bfs.de>
1082
1083commit 08e6b36292ebf01ba2dcc4a48ec371c6f5d13458
1084Author: Walter Harms <wharms@bfs.de>
1085Date:   Sat Jun 22 18:33:48 2019 +0200
1086
1087    remove in-text macros
1088    
1089    remove in-text macros an fix a few typos on the way.
1090    hopefuly that will make maintenance more easy.
1091    
1092    Signed-off-by: Walter Harms <wharms@bfs.de>
1093
1094commit cb0e894fe9927b07bd9d97c067fd0d007accb105
1095Author: Walter Harms <wharms@bfs.de>
1096Date:   Fri Jun 21 18:01:16 2019 +0200
1097
1098    note that we can handle kbd==NULL
1099    
1100    Signed-off-by: Walter Harms <wharms@bfs.de>
1101
1102commit 0327c427d62f671eced067c6d9b69f4e216a8cac
1103Author: Adam Jackson <ajax@redhat.com>
1104Date:   Mon Jun 17 13:36:08 2019 -0400
1105
1106    makekeys: Detach ourselves from X headers entirely
1107    
1108    Subsequent to a121b7b0c210efe10bf93453b29050282324c906 we are no longer
1109    building makekeys with enough -I/foo/bar to find the X11 headers, so if
1110    they're not in a system include path, things fail. Since this utility is
1111    only needed at build time, there's no real reason to demand the X
1112    headers be installed for both the build and target machines if cross-
1113    compiling, we can just assume a vaguely ANSI environment instead.
1114    
1115    Tested-by: Niclas Zeising <zeising@daemonic.se>
1116    Reviewed-by: Keith Packard <keithp@keithp.com>
1117    Reviewed-by: Matt Turner <mattst88@gmail.com>
1118
1119commit 57f0d421a1320090d3a4948181fe228d86cc8977
1120Author: Matt Turner <mattst88@gmail.com>
1121Date:   Mon Jun 17 10:45:45 2019 -0400
1122
1123    libX11 1.6.8
1124    
1125    Signed-off-by: Matt Turner <mattst88@gmail.com>
1126
1127commit 5464b302bc0c4a055d3eac06c6ab15e209ff7668
1128Author: Matt Turner <mattst88@gmail.com>
1129Date:   Sun Jun 9 14:00:15 2019 -0700
1130
1131    Use AC_SYS_LARGEFILE
1132    
1133    ... and include config.h in makekeys.c to get the definition of
1134    _FILE_OFFSET_BITS. Without it, libX11 can fail to build on a file
1135    system with 64-bit inode numbers.
1136    
1137    Bug: https://bugs.gentoo.org/550502
1138    Bug: https://bugs.gentoo.org/616140
1139    Signed-off-by: Matt Turner <mattst88@gmail.com>
1140
1141commit 33b9148a833ab2ea46e44871da3c031bf1b78f77
1142Author: Ran Benita <ran234@gmail.com>
1143Date:   Thu Feb 13 20:55:08 2014 +0200
1144
1145    Compose.man: fix escaped hexadecimal char description
1146    
1147    The man page says:
1148        Strings may be direct text encoded in the locale for which the
1149        compose file is to be used, or an escaped octal or hexadecimal
1150        character code.   Octal codes are specified as "\123" and
1151        hexadecimal codes as "\0x123a".
1152    
1153    But the grammar in the parser and the implementation say:
1154        ESCAPED_CHAR  ::= ('\\' | '\"' | OCTAL | HEX )
1155        HEX           ::= '\' (x|X) HEX_CHAR [HEX_CHAR]]
1156        HEX_CHAR      ::= (0|1|2|3|4|5|6|7|8|9|A|B|C|D|E|F|a|b|c|d|e|f)
1157    
1158    So "\0x123a" -> "\x3a".
1159    
1160    Signed-off-by: Ran Benita <ran234@gmail.com>
1161    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1162
1163commit d9b2cc35edf01e4f751a9ccb5ac185745184cec0
1164Author: ojab <ojab@ojab.ru>
1165Date:   Mon Apr 24 20:12:17 2017 +0000
1166
1167    Compose sequences for rouble sign
1168    
1169    Cyrillic combinations mirror the Qwerty-Jcuken keyboard layout.
1170    
1171    Signed-off-by: Slava Kardakov <ojab@ojab.ru>
1172    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1173
1174commit 3f211616f6414bd9958566c0ca137e87a2b6df95
1175Author: Pavel Labath <pavelo@centrum.sk>
1176Date:   Fri Nov 30 20:45:04 2012 +0100
1177
1178    Fix a leak in XCreateFontSet
1179    
1180    a simple snippet like XFreeFontSet(d, XCreateFontSet(d, ...)) will generate lots of memory leaks,
1181    as evidenced by the following valgrind output:
1182    ==983== HEAP SUMMARY:
1183    ==983==     in use at exit: 39,409 bytes in 341 blocks
1184    ==983==   total heap usage: 4,795 allocs, 4,454 frees, 489,086 bytes allocated
1185    ==983==
1186    ==983== 1,688 (136 direct, 1,552 indirect) bytes in 1 blocks are definitely lost in loss record
1187    40 of 46
1188    ==983==    at 0x4C2B042: realloc (in /usr/lib64/valgrind/vgpreload_memcheck-amd64-linux.so)
1189    ==983==    by 0x56D5A93: add_codeset.clone.9 (in /usr/lib64/libX11.so.6.3.0)
1190    ==983==    by 0x56D5FE0: load_generic (in /usr/lib64/libX11.so.6.3.0)
1191    ==983==    by 0x56D7612: initialize (in /usr/lib64/libX11.so.6.3.0)
1192    ==983==    by 0x56D7E75: _XlcCreateLC (in /usr/lib64/libX11.so.6.3.0)
1193    ==983==    by 0x56F9A5F: _XlcUtf8Loader (in /usr/lib64/libX11.so.6.3.0)
1194    ==983==    by 0x56DF815: _XOpenLC (in /usr/lib64/libX11.so.6.3.0)
1195    ==983==    by 0x56B255A: XOpenOM (in /usr/lib64/libX11.so.6.3.0)
1196    ==983==    by 0x56A665A: XCreateFontSet (in /usr/lib64/libX11.so.6.3.0)
1197    ==983==    by 0x4FCA80: conky::x11_output::create_gc() (x11.cc:746)
1198    ==983==    by 0x4FC3B4: conky::x11_output::use_own_window() (x11.cc:602)
1199    ==983==    by 0x4FAD42: conky::priv::own_window_setting::set(bool const&, bool) (x11.cc:92)
1200    ==983==
1201    ==983== LEAK SUMMARY:
1202    ==983==    definitely lost: 136 bytes in 1 blocks
1203    ==983==    indirectly lost: 1,552 bytes in 34 blocks
1204    ==983==      possibly lost: 0 bytes in 0 blocks
1205    ==983==    still reachable: 37,721 bytes in 306 blocks
1206    ==983==         suppressed: 0 bytes in 0 blocks
1207    
1208    This patch makes the leak dissappear (Well, at least the "definitely lost part". The "still
1209    reachable" thingy remains). After some analysis, I've discovered that the XLCd structure is
1210    destroyed improperly. The "constructor" is in lcGeneric.c, but the structure is destroyed using
1211    code from lcPublic.c. I've found that changing the destructor call to _XlcDestroyLC executes the
1212    correct code path, and I'm pretty sure this is correct (the object was constructed using
1213    _XlcCreateLC, it make sense to destroy it using its conterpart).
1214    
1215    So far I haven't observed any strange behaviour on my system caused by this change (although, I'm
1216    not sure, how many programs actually use this function).
1217    
1218    Signed-off-by: Pavel Labath <pavelo@centrum.sk>
1219    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1220
1221commit 4645e219133458781e3fb48eaea6a74cccb1b9aa
1222Author: Jon Turney <jon.turney@dronecode.org.uk>
1223Date:   Tue Apr 30 14:39:06 2019 +0100
1224
1225    Avoid using libtool wrapper for makekeys
1226    
1227    For Windows targets, libtool uses a wrapper executable, not a wrapper
1228    script (see [1]), which it compiles with the host compiler.  This
1229    doesn't work when cross-compiling.
1230    
1231    Since we don't actually need to link with anything, use the libtool flag
1232    -all-static to tell it to stay completely out of this.
1233    
1234    [1] https://www.gnu.org/software/libtool/manual/html_node/Wrapper-executables.html
1235
1236commit 6886d9ba06826785a8ccb312c04ea82b91bb6a25
1237Author: Jon Turney <jon.turney@dronecode.org.uk>
1238Date:   Wed Apr 24 12:50:41 2019 +0100
1239
1240    Use EXEEXT_FOR_BUILD for makekeys
1241    
1242    Use EXEXT_FOR_BUILD, to fix cross-compiling where EXEEXT differs from
1243    EXEEXT_FOR_BUILD, such as when building for Windows from unix.
1244    
1245    (Note: As written, this assumes EXEEXT_FOR_BUILD is always empty when
1246    cross-compiling.  There could be some elaborate autodetection for
1247    EXEXT_FOR_BUILD, but for the moment, if you are cross-compiling from
1248    Windows to Unix, you'll need to set EXEEXT_FOR_BUILD explicity...)
1249
1250commit a121b7b0c210efe10bf93453b29050282324c906
1251Author: Jon Turney <jon.turney@dronecode.org.uk>
1252Date:   Tue Apr 30 14:30:41 2019 +0100
1253
1254    Remove makekeys dependency on X headers
1255    
1256    This is the patch from https://bugs.freedesktop.org/show_bug.cgi?id=6669
1257    by Pierre Ossman, reworked for master.
1258    
1259    Avoid using LIBS (which are for host, but we don't need) and rewrite
1260    makekeys slightly to avoid needing to include any X headers, which
1261    avoids potentially having -I with host paths in CFLAGS, which can cause
1262    standard headers e.g. stdio.h for the host to also be used, which can
1263    break things...
1264
1265commit cbb59d1727cb1bfcff91b54fd55f4139e360b7ab
1266Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
1267Date:   Fri Jun 7 23:35:33 2019 +0200
1268
1269    Braille: Fix typing quickly
1270    
1271    On finishing releasing Braille keys, we should clear the just-commited
1272    pattern, to reset the state to initial state, and avoid having to wait for
1273    0.3s before typing the next pattern.
1274    
1275    Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
1276    Tested-by: Jean-Philippe Mengual <jpmengual@hypra.fr>
1277
1278commit 99a2cf1aa0b58391078d5d3edf0a7dab18c7745d
1279Author: Tapani Pälli <tapani.palli@intel.com>
1280Date:   Mon May 13 08:29:49 2019 +0300
1281
1282    Protect colormap add/removal with display lock
1283    
1284    This fixes a bug where concurrent threads call XCreateColormap and
1285    XFreeColormap corrupting a linked list where colormap structures
1286    are stored.
1287    
1288    Fixes: https://gitlab.freedesktop.org/xorg/lib/libx11/issues/94
1289    
1290    v2: handle XCopyColormapAndFree also (Adam Jackson)
1291    
1292    Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
1293
1294commit fea80d03c381a4de379863c0d41f6d4c00f15e1e
1295Author: Jon Turney <jon.turney@dronecode.org.uk>
1296Date:   Wed Mar 13 13:12:20 2019 +0000
1297
1298    Add autoconf checks for headers we include for FIONREAD
1299    
1300    Add autoconf checks for the extra headers we include to define FIONREAD.
1301    This needs sys/socket.h on Cygwin, and none of the alternatives on
1302    Windows.
1303
1304commit 87c77a1e6d7034536e9d25ce24a667ebf53486a7
1305Author: Matthias Dieter Wallnöfer <matthias.wallnoefer@lugbz.org>
1306Date:   Mon Mar 11 14:19:52 2019 +0000
1307
1308    locale.alias.pre - add the de_IT locale
1309    
1310    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1311
1312commit 568f77f414072506bbe48646637c872987c97e63
1313Author: Matthias Dieter Wallnöfer <matthias.wallnoefer@lugbz.org>
1314Date:   Mon Mar 11 14:17:10 2019 +0000
1315
1316    locale.dir.pre - add the de_IT locale
1317    
1318    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1319
1320commit 38c0c92feaef7dc4a72920b1dd79872e6578086c
1321Author: Matthias Dieter Wallnöfer <matthias.wallnoefer@lugbz.org>
1322Date:   Mon Mar 11 14:12:07 2019 +0000
1323
1324    compose.dir.pre - add de_IT locale
1325    
1326    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1327
1328commit 49f835611ba6ab82e68b7b851507931c142db7a5
1329Author: Matthias Dieter Wallnöfer <matthias.wallnoefer@lugbz.org>
1330Date:   Tue Jan 29 15:34:34 2019 +0000
1331
1332    Update locale.alias.pre - introduce the de_LI aliases (equivalent to de_CH)
1333    
1334    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1335
1336commit ed669234d0cd5933618aa5fd2da697b59845b9be
1337Author: Matthias Dieter Wallnöfer <matthias.wallnoefer@lugbz.org>
1338Date:   Tue Jan 29 15:28:18 2019 +0000
1339
1340    locale.dir.pre - fix the de_LI latin15 locale
1341    
1342    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1343
1344commit 82b5c1454a49333b4d94984d40db79cff386d37f
1345Author: Josh Triplett <josh@joshtriplett.org>
1346Date:   Sun Feb 3 08:31:41 2019 +0100
1347
1348    compose.dir.pre: Give the C.UTF-8 locale a full set of UTF-8 compose sequences
1349    
1350    Signed-off-by: Josh Triplett <josh@joshtriplett.org>
1351
1352commit 603c3ab25a692194805fd4b0c62afac8093897fe
1353Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1354Date:   Sat Mar 9 20:58:07 2019 -0800
1355
1356    Add missing close paren to XrmGetStringDatabase synopsis in man page
1357    
1358    Fixes: commit 0642e99ac05afb0c
1359    
1360    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1361
1362commit 6590cc41e3c5c5c836a49a2c82774d7cc9ab3c85
1363Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1364Date:   Sat Feb 23 11:12:27 2019 -0800
1365
1366    Include reallocarray.h in tarballs so "make distcheck" passes
1367    
1368    Fixes: commit bcf7b5aa06c23aee
1369    
1370    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1371
1372commit a4a7df06351ce9565d298a84547ff71f2d220fbf
1373Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1374Date:   Sat Feb 23 11:04:41 2019 -0800
1375
1376    XlibInt.c: include headers needed for ioctl(...FIONREAD...) on Solaris
1377    
1378    Fixes: commit 5538b3e4ae6dee
1379    
1380    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1381
1382commit 38ec04de7e537dde6b7b1eaca46b1a24fcdbc044
1383Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1384Date:   Sat Feb 23 10:48:26 2019 -0800
1385
1386    specs/XKB: Fix misprint in documentation of XkbFreeGeomOverlayKeys()
1387    
1388    Fixes: https://gitlab.freedesktop.org/xorg/lib/libx11/issues/86
1389    aka: https://bugs.freedesktop.org/show_bug.cgi?id=23550
1390    
1391    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1392
1393commit 74f2f26811ae82b15dede31504b0eb541f7a3293
1394Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1395Date:   Sat Feb 23 10:46:05 2019 -0800
1396
1397    specs/XKB: Fix misprint in documentation of XkbAllocGeomOverlayKeys()
1398    
1399    Fixes: https://gitlab.freedesktop.org/xorg/lib/libx11/issues/85
1400    aka: https://bugs.freedesktop.org/show_bug.cgi?id=23549
1401    
1402    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1403
1404commit 66b039a41690f076e962ac6bd46cca017360a7d1
1405Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1406Date:   Sat Feb 23 10:44:15 2019 -0800
1407
1408    specs/XKB: Fix misprint in documentation of XkbAllocGeomOverlayRows()
1409    
1410    Fixes: https://gitlab.freedesktop.org/xorg/lib/libx11/issues/84
1411    aka: https://bugs.freedesktop.org/show_bug.cgi?id=23548
1412    
1413    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1414
1415commit cdea0e840315171f8390adc63a2397ddf111eea4
1416Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1417Date:   Sat Feb 23 10:38:08 2019 -0800
1418
1419    specs/XKB: Fix misprint in documentation of XkbGetNamedGeometry()
1420    
1421    Fixes: https://gitlab.freedesktop.org/xorg/lib/libx11/issues/82
1422    aka: https://bugs.freedesktop.org/show_bug.cgi?id=23520
1423    
1424    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1425
1426commit c72d17ada98723cd9e03ddf06680a0e54b2c3089
1427Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1428Date:   Sat Feb 23 10:30:32 2019 -0800
1429
1430    XkbAllocGeomOverlayKey man page should be named XkbAllocGeomOverlayKeys
1431    
1432    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1433
1434commit 05002b8aef9544c8545e0823a02cf14f335d2b68
1435Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1436Date:   Sun Feb 17 15:13:25 2019 -0800
1437
1438    Fix man page typo: XkbAllBellNotifyMask -> XkbAllBellEventsMask
1439    
1440    Reported-by: Daniel Hahler <git@thequod.de>
1441    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1442
1443commit 5538b3e4ae6dee32c47db9dfc85b07bbe7b90f6c
1444Author: Adam Jackson <ajax@redhat.com>
1445Date:   Fri Mar 24 11:07:36 2017 -0400
1446
1447    _XDefaultIOError: Do better at detecting explicit shutdown
1448    
1449    Currently, when the X server crashes or a client is disconnected with
1450    XKillClient, you get a somewhat confusing error message from libX11
1451    along the lines of:
1452    
1453    XIO:  fatal IO error 11 (Resource temporarily unavailable) on X server ":0"
1454          after 98 requests (40 known processed) with 0 events remaining.
1455    
1456    What's happening here is the previous recvmsg has thrown EAGAIN, since
1457    the socket is non-blocking. In this case, check whether the socket has
1458    any more data to read, and if not treat it like EPIPE.
1459    
1460    Signed-off-by: Adam Jackson <ajax@redhat.com>
1461
1462commit 6d2cde9633b5ee020cb60caea1cf61e090b86dd2
1463Author: Adam Jackson <ajax@redhat.com>
1464Date:   Fri Mar 24 11:07:35 2017 -0400
1465
1466    _XDefaultIOError: Reformat to be less ugly
1467    
1468    Signed-off-by: Adam Jackson <ajax@redhat.com>
1469    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1470
1471commit 003e30a66a249f5c70b30d1c187385124cd4cdad
1472Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1473Date:   Tue Jan 1 14:34:04 2019 -0800
1474
1475    Avoid use-after-free in _XimProtoSetIMValues()
1476    
1477    Fixes gitlab issue #49
1478    
1479    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1480
1481commit 30656fd66ad47aeaca0bfc237a818f189554f07e
1482Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1483Date:   Tue Jan 1 12:21:04 2019 -0800
1484
1485    Fix implicit conversion warnings in _XlcCreateDefaultCharSet
1486    
1487    lcCharSet.c:187:50: warning: implicit conversion changes signedness:
1488          'int' to 'unsigned long' [-Wsign-conversion]
1489        tmp = Xmalloc(name_len + 1 + ct_sequence_len + 1);
1490              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~
1491    ../../include/X11/Xlibint.h:453:32: note: expanded from macro 'Xmalloc'
1492                           ~~~~~~  ^~~~
1493    lcCharSet.c:192:31: warning: implicit conversion changes signedness:
1494          'int' to 'unsigned long' [-Wsign-conversion]
1495        memcpy(tmp, name, name_len+1);
1496        ~~~~~~            ~~~~~~~~^~
1497    lcCharSet.c:216:45: warning: implicit conversion changes signedness:
1498          'int' to 'unsigned long' [-Wsign-conversion]
1499        memcpy(tmp, ct_sequence, ct_sequence_len+1);
1500        ~~~~~~                   ~~~~~~~~~~~~~~~^~
1501    lcCharSet.c:183:16: warning: implicit conversion loses integer precision:
1502          'unsigned long' to 'int' [-Wshorten-64-to-32]
1503        name_len = strlen(name);
1504                 ~ ^~~~~~~~~~~~
1505    lcCharSet.c:184:23: warning: implicit conversion loses integer precision:
1506          'unsigned long' to 'int' [-Wshorten-64-to-32]
1507        ct_sequence_len = strlen(ct_sequence);
1508                        ~ ^~~~~~~~~~~~~~~~~~~
1509    lcCharSet.c:198:37: warning: implicit conversion loses integer precision:
1510         'long' to 'unsigned int' [-Wshorten-64-to-32]
1511            unsigned int length = colon - charset->name;
1512                         ~~~~~~   ~~~~~~^~~~~~~~~~~~~~~
1513    
1514    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1515
1516commit 2e6300905784fa8adfcea019262ea58b3e1ed4ad
1517Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1518Date:   Tue Jan 1 11:41:47 2019 -0800
1519
1520    Remove no-longer-used name variable in _XGetAtomName
1521    
1522    Fixes gcc warning:
1523    GetAtomNm.c: In function ‘_XGetAtomName’:
1524    GetAtomNm.c:39:11: warning: unused variable ‘name’ [-Wunused-variable]
1525         char *name;
1526               ^~~~
1527    
1528    Introduced by commit 336c1e7a505698a8f3bcb6eb96dbbb8ed21ade96
1529    
1530    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1531
1532commit f077871c2a12cf098b0c50572e112c6dc5e04de0
1533Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1534Date:   Sat Dec 29 11:39:29 2018 -0800
1535
1536    Fix out-of-tree builds after commit 8a62e26515e528bb47917ec4a55cc2b492419eeb
1537    
1538    In-tree builds found reallocarray.h in $(top_builddir)/src but the
1539    out-of-tree build didn't find it at all.
1540    
1541    Reported-by: Emmanuele Bassi <ebassi@gmail.com> from GNOME continuous integration pipeline
1542    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1543
1544commit ba7f7cc783672784bebc6e69349b55c6c75c1973
1545Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1546Date:   Sun Sep 27 18:35:27 2015 -0700
1547
1548    Convert src/xlibi18n to use reallocarray()
1549    
1550    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1551
1552commit 336c1e7a505698a8f3bcb6eb96dbbb8ed21ade96
1553Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1554Date:   Sat Sep 26 11:12:47 2015 -0700
1555
1556    Replace Xmalloc+strcpy pairs with strdup calls
1557    
1558    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1559
1560commit 258a8ced681dc1bc50396be7439fce23f9807e2a
1561Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1562Date:   Sun Jul 19 11:58:50 2015 -0700
1563
1564    Replace _XkbTypedRealloc & _XkbClearElems with new _XkbResizeArray
1565    
1566    Makes resizing & clearing more consistent and gets rid of some weird
1567    quirks like always subtracting 1 from the size passed to _XkbClearElems
1568    so it could always add 1 to the size passed in.
1569    
1570    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1571
1572commit f94273e2f4284040306b888e5ca0381ee00591af
1573Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1574Date:   Sun Jul 19 09:47:29 2015 -0700
1575
1576    Add some missing allocation failure checks in src/xcms
1577    
1578    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1579
1580commit 76850471b4a5a6d30f5660234e87ec2772e7b426
1581Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1582Date:   Sun Jul 19 09:33:21 2015 -0700
1583
1584    Convert src/xcms to use reallocarray()
1585    
1586    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1587
1588commit 8a62e26515e528bb47917ec4a55cc2b492419eeb
1589Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1590Date:   Sun Jul 19 09:24:02 2015 -0700
1591
1592    Convert src/XKB to use reallocarray()
1593    
1594    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1595
1596commit 6d1dc1f6169ebf0ba71785d461bd98129c65c862
1597Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1598Date:   Thu Jun 4 23:30:43 2015 -0700
1599
1600    Convert main src directory to use reallocarray()
1601
1602commit bcf7b5aa06c23aee00af7999b58cb96a8571ac42
1603Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1604Date:   Thu Jun 4 23:18:23 2015 -0700
1605
1606    Import reallocarray() from OpenBSD
1607    
1608    Wrapper for realloc() that checks for overflow when multiplying
1609    arguments together, so we don't have to add overflow checks to
1610    every single call.  For documentation on usage, see:
1611    http://www.openbsd.org/cgi-bin/man.cgi/OpenBSD-current/man3/calloc.3
1612    
1613    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1614
1615commit 9bdfe9c9af11d77d66e5ff651e82b20e695cb460
1616Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1617Date:   Mon Nov 19 21:26:23 2018 -0800
1618
1619    Update README for gitlab migration
1620    
1621    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1622
1623commit c8bcc19970a2cc4ad337de1338c63a07325eefcd
1624Author: Albert Astals Cid <aacid@kde.org>
1625Date:   Fri Nov 9 22:24:52 2018 +0100
1626
1627    locale.dir: Add ast_ES.UTF-8
1628    
1629    With this patch xev properly reports
1630       XLookupString gives 2 bytes: (c2 b4) "´"
1631    for the dead_acute key when using the Asturian locale
1632
1633commit 117bb310b44ce03802c91a70949eb58dcc702a3c
1634Author: Albert Astals Cid <aacid@kde.org>
1635Date:   Fri Nov 9 22:18:43 2018 +0100
1636
1637    compose.dir: Add ast_ES.UTF-8
1638    
1639    With this patch one can properly type dead keys like á when using the
1640    Asturian locale
1641
1642commit d7e22252d68258a63ca537827c99d0ac0bc4b9d8
1643Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1644Date:   Sat Nov 10 13:30:47 2018 -0800
1645
1646    Remove documentation of obsolete B16 & B32 tags in specs/libX11
1647    
1648    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1649
1650commit f3c978476e0be6813268af494efb7ac507451116
1651Author: Matt Turner <mattst88@gmail.com>
1652Date:   Tue Oct 9 10:26:05 2018 -0400
1653
1654    libX11 1.6.7
1655    
1656    Signed-off-by: Matt Turner <mattst88@gmail.com>
1657
1658commit 823a0f8a820247b6c1e092f679b49cbdc2ea5c95
1659Author: Michel Dänzer <michel.daenzer@amd.com>
1660Date:   Fri Sep 28 17:24:17 2018 +0200
1661
1662    poll_for_event: Allow using xcb_poll_for_queued_event
1663    
1664    It avoids reading from the display connection again in cases where that
1665    was already done.
1666    
1667    Suggested-by: Uli Schlachter <psychon@znc.in>
1668    Reviewed-by: Uli Schlachter <psychon@znc.in>
1669
1670commit 406afe4b0f1b655c0db19bbc9a0c48da9a46acf5
1671Author: Michel Dänzer <michel.daenzer@amd.com>
1672Date:   Tue Sep 25 17:10:58 2018 +0200
1673
1674    poll_for_response: Call poll_for_event again if xcb_poll_for_reply fails
1675    
1676    If xcb_poll_for_reply fails to find a reply, poll_for_response would
1677    always return NULL. However, xcb_poll_for_reply may have read events
1678    from the display connection while looking for a reply. In that case,
1679    returning NULL from poll_for_response is wrong and can result in the
1680    client hanging, e.g. because it returns to waiting for the display
1681    connection file descriptor becoming readable after XPending incorrectly
1682    returned 0 pending events.
1683    
1684    The solution is to call poll_for_event again after xcb_poll_for_reply
1685    returned 0. This will return the first of any events read by
1686    xcb_poll_for_reply.
1687    
1688    Fixes issue #79.
1689    
1690    Reported-by: Yuxuan Shui <yshuiv7@gmail.com>
1691    Bugzilla: https://bugs.freedesktop.org/108008
1692    Bugzilla: https://bugs.freedesktop.org/107992
1693    Reviewed-by: Adam Jackson <ajax@redhat.com>
1694
1695commit d0416863d5bf75af54ce81f6c30d4c1476b5e04f
1696Author: Bhavi Dhingra <b.dhingra@samsung.com>
1697Date:   Mon Sep 28 08:33:40 2015 +0000
1698
1699    XcmsLookupColor: fully initialize XColor structs passed to _XColor_to_XcmsRGB
1700    
1701    Fixes https://gitlab.freedesktop.org/xorg/lib/libx11/issues/44
1702    aka https://bugs.freedesktop.org/show_bug.cgi?id=92154
1703    
1704    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1705    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1706
1707commit 733f64bfeb311c1d040b2f751bfdef9c9d0f89ef
1708Author: Matthieu Herrb <matthieu@herrb.eu>
1709Date:   Tue Aug 21 16:54:50 2018 +0200
1710
1711    libX11 1.6.6
1712    
1713    Signed-off-by: Matthieu Herrb <matthieu@herrb.eu>
1714
1715commit 173704243fbcbea0b6de2068b4fb403c7408fb54
1716Author: Matthieu Herrb <matthieu@herrb.eu>
1717Date:   Tue Aug 21 16:53:40 2018 +0200
1718
1719    Remove statement with no effect.
1720    
1721    Signed-off-by: Matthieu Herrb <matthieu@herrb.eu>
1722
1723commit e83722768fd5c467ef61fa159e8c6278770b45c2
1724Author: Tobias Stoeckmann <tobias@stoeckmann.org>
1725Date:   Fri Jul 27 16:38:00 2018 +0200
1726
1727    Fixed crash on invalid reply (CVE-2018-14598).
1728    
1729    If the server sends a reply in which even the first string would
1730    overflow the transmitted bytes, list[0] (or flist[0]) will be set to
1731    NULL and a count of 0 is returned.
1732    
1733    If the resulting list is freed with XFreeExtensionList or
1734    XFreeFontPath later on, the first Xfree call:
1735    
1736        Xfree (list[0]-1)
1737     turns into
1738        Xfree (NULL-1)
1739    
1740    which will most likely trigger a segmentation fault.
1741    
1742    I have modified the code to return NULL if the first string would
1743    overflow, thus protecting the freeing functions later on.
1744    
1745    Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
1746
1747commit dbf72805fd9d7b1846fe9a11b46f3994bfc27fea
1748Author: Tobias Stoeckmann <tobias@stoeckmann.org>
1749Date:   Fri Jul 27 16:37:17 2018 +0200
1750
1751    Fixed out of boundary write (CVE-2018-14600).
1752    
1753    The length value is interpreted as signed char on many systems
1754    (depending on default signedness of char), which can lead to an out of
1755    boundary write up to 128 bytes in front of the allocated storage, but
1756    limited to NUL byte(s).
1757    
1758    Casting the length value to unsigned char fixes the problem and allows
1759    string values with up to 255 characters.
1760    
1761    Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
1762
1763commit b469da1430cdcee06e31c6251b83aede072a1ff0
1764Author: Tobias Stoeckmann <tobias@stoeckmann.org>
1765Date:   Fri Jul 27 16:36:34 2018 +0200
1766
1767    Fixed off-by-one writes (CVE-2018-14599).
1768    
1769    The functions XGetFontPath, XListExtensions, and XListFonts are
1770    vulnerable to an off-by-one override on malicious server responses.
1771    
1772    The server replies consist of chunks consisting of a length byte
1773    followed by actual string, which is not NUL-terminated.
1774    
1775    While parsing the response, the length byte is overridden with '\0',
1776    thus the memory area can be used as storage of C strings later on. To
1777    be able to NUL-terminate the last string, the buffer is reserved with
1778    an additional byte of space.
1779    
1780    For a boundary check, the variable chend (end of ch) was introduced,
1781    pointing at the end of the buffer which ch initially points to.
1782    Unfortunately there is a difference in handling "the end of ch".
1783    
1784    While chend points at the first byte that must not be written to,
1785    the for-loop uses chend as the last byte that can be written to.
1786    
1787    Therefore, an off-by-one can occur.
1788    
1789    I have refactored the code so chend actually points to the last byte
1790    that can be written to without an out of boundary access. As it is not
1791    possible to achieve "ch + length < chend" and "ch + length + 1 > chend"
1792    with the corrected chend meaning, I removed the inner if-check.
1793    
1794    Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
1795
1796commit d81da209fd4d0c2c9ad0596a8078e58864479d0d
1797Author: Tobias Stoeckmann <tobias@stoeckmann.org>
1798Date:   Tue Jul 3 22:31:37 2018 +0200
1799
1800    Validation of server response in XListHosts.
1801    
1802    If a server sends an incorrect length in its response, a client is prone
1803    to perform an out of boundary read while processing the data.
1804    
1805    The length field of xHostEntry is used to specify the amount of bytes
1806    used to represent the address. It is 16 bit, which means that it is not
1807    possible to perform an arbitrary memory access, but it might be enough
1808    to read sensitive information, e.g. malloc-related pointers and offsets.
1809    
1810    Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
1811    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
1812
1813commit b676e62377483df77bcb6472d26b24f901323fa9
1814Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
1815Date:   Wed Jun 13 15:46:58 2018 +0200
1816
1817    XkbOpenDisplay.3: fix typo
1818    
1819    XkbOpenDisplay returns a pointer to Display, not a Display.
1820    
1821    Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
1822
1823commit 9c5845ff0dc080ff10bd68af4fc40fcd805728ca
1824Author: Martin Natano <natano@natano.net>
1825Date:   Sat Oct 8 19:57:50 2016 +0200
1826
1827    Don't rebuild ks_tables.h if nothing changed.
1828    
1829    ks_tables.h is always considered out of date due to the forced rebuild
1830    of the makekeys util. This means the file is also rebuilt during 'make
1831    install', which is usually performed as root, which can to lead
1832    permission problems later on.
1833    
1834    Signed-off-by: Martin Natano <natano@natano.net>
1835    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1836
1837commit 796f754cba6d75b676a0fc39b97802198fceda4f
1838Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1839Date:   Sat May 5 14:43:30 2018 -0700
1840
1841    Change fall through comment in lcDB.c to match gcc's requirements
1842    
1843    Needs to match one of the regexps shown under
1844    https://gcc.gnu.org/onlinedocs/gcc-7.3.0/gcc/Warning-Options.html#index-Wimplicit-fallthrough
1845    
1846    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1847
1848commit 82ca6308757126fa7ffc6588f1e5d8e3be04251b
1849Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1850Date:   Sat Mar 24 19:45:14 2018 -0700
1851
1852    Use size_t for buffer sizes in SetHints.c
1853    
1854    These variables store values returned from strlen() as a size_t
1855    and are passed to Xmalloc, which expects a size_t, so lets stop
1856    converting back and forth to int along the way.
1857    
1858    Reported by: Konstantin SKliarov
1859    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1860    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
1861
1862commit 50a5a98984097d614227d22a49265e12b172cac7
1863Author: Bhavi Dhingra <b.dhingra@samsung.com>
1864Date:   Tue Jul 5 11:37:50 2016 +0530
1865
1866    Fix possible memory leak in cmsProp.c:140
1867    
1868    https://bugs.freedesktop.org/show_bug.cgi?id=96814
1869    
1870    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1871    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1872
1873commit a9dafdd57c71473fa3a2ec4887e973e4e9876d83
1874Author: Michal Srb <msrb@suse.com>
1875Date:   Thu Mar 15 09:50:58 2018 +0100
1876
1877    Use flexible array member instead of fake size.
1878    
1879    The _XimCacheStruct structure is followed in memory by two strings containing
1880    fname and encoding. The memory was accessed using the last member of the
1881    structure `char fname[1]`. That is a lie, prohibits us from using sizeof and
1882    confuses checkers. Lets declare it properly as a flexible array, so compilers
1883    don't complain about writing past that array. As bonus we can replace the
1884    XOffsetOf with regular sizeof.
1885    
1886    Fixes GCC8 error:
1887      In function 'strcpy',
1888          inlined from '_XimWriteCachedDefaultTree' at imLcIm.c:479:5,
1889          inlined from '_XimCreateDefaultTree' at imLcIm.c:616:2,
1890          inlined from '_XimLocalOpenIM' at imLcIm.c:700:5:
1891      /usr/include/bits/string_fortified.h:90:10: error: '__builtin_strcpy'
1892      forming offset 2 is out of the bounds [0, 1] [-Werror=array-bounds]
1893         return __builtin___strcpy_chk (__dest, __src, __bos (__dest));
1894    
1895    Caused by this line seemingly writing past the fname[1] array:
1896      imLcIm.c:479:  strcpy (m->fname+strlen(name)+1, encoding);
1897    
1898    Reviewed-by: Keith Packard <keithp@keithp.com>
1899    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
1900
1901commit 34f4464f69a4d6ff0d1042500a62f9a5ed7f3647
1902Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1903Date:   Tue Mar 6 11:42:27 2018 -0800
1904
1905    If XGetImage fails to create image, don't dereference it to bounds check
1906    
1907    Reported by gcc 7.3:
1908    
1909    GetImage.c:110:25: warning: potential null pointer dereference [-Wnull-dereference]
1910      if (planes < 1 || image->height < 1 || image->bytes_per_line < 1 ||
1911                        ~~~~~^~~~~~~~
1912    
1913    Introduced by 8ea762f94f4c942d898fdeb590a1630c83235c17 in Xlib 1.6.4
1914    
1915    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1916    Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
1917
1918commit e835a9dcc3362b5e92893be756dd7ae361e64ced
1919Author: wharms <wharms@bfs.de>
1920Date:   Sun Sep 3 14:17:45 2017 +0200
1921
1922    silence gcc warning assignment discards 'const' qualifier from pointer target type
1923
1924commit 36a1ac0253fea82ff79cc52ba56c5691cfd07a3b
1925Author: wharms <wharms@bfs.de>
1926Date:   Sun Aug 20 21:51:57 2017 +0200
1927
1928    remove empty line
1929
1930commit e02dfe54f32b4165351d2712a9d2e0584906a3ce
1931Author: wharms <wharms@bfs.de>
1932Date:   Sun Aug 20 21:50:33 2017 +0200
1933
1934    add _X_UNUSED to avoid unused variable warnings
1935
1936commit 2911c39cecd63ed3747072a5eeeb9eedffc881e9
1937Author: walter harms <wharms@bfs.de>
1938Date:   Sat Jun 4 17:19:59 2016 +0200
1939
1940    Fixes: warning: variable 'req' set but not,used
1941    
1942    Fixes: warning: variable 'req' set but not used [-Wunused-but-set-variable]
1943           by marking req _X_UNUSED
1944            Solution was discussed on xorg-devel ML
1945           Peter Hutter, Alan Coopersmith
1946            Re: [PATCH libX11 3/5] fix: warning: pointer targets in passing argument 2 of '_XSend' differ in signedness [-Wpointer-sign]
1947    
1948    Signed-off-by: harms wharms@bfs.de
1949
1950commit bf82ec0402479fd8399d69e7d62fc17d7956699a
1951Author: walter harms <wharms@bfs.de>
1952Date:   Sat Jun 4 17:22:07 2016 +0200
1953
1954    mark _XDefaultIOError as no_return
1955    
1956    mark _XDefaultIOError as no_return. No one comes back from exit() ...
1957    
1958    Signed-off-by: harms wharms@bfs.de
1959
1960commit 9abe8380074edea3ac4e72466ec47e921ca05e47
1961Author: walter harms <wharms@bfs.de>
1962Date:   Sat Jun 4 17:21:52 2016 +0200
1963
1964    no need to check XFree arguments
1965    
1966    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
1967    
1968    Signed-off-by: harms wharms@bfs.de
1969
1970commit 433477fcb7e07d0c26a22ba78aae88827ed1f440
1971Author: walter harms <wharms@bfs.de>
1972Date:   Tue Apr 26 16:32:20 2016 +0200
1973
1974    fix memleak in error path
1975    
1976    free all mem on error
1977    Signed-off-by: walter harms <wharms@bfs.de>
1978
1979commit ed9f0d34abc645eee56e21863f23acb4d0bb8e9a
1980Author: walter harms <wharms@bfs.de>
1981Date:   Tue Apr 26 17:58:16 2016 +0200
1982
1983    fix memleak in error path
1984    
1985    V2: remove unneeded NULL (reported by eric.engestrom@imgtec.com)
1986    
1987    fix mem leak in error path
1988    Signed-off-by: walter harms <wharms@bfs.de>
1989
1990commit 7c78fc57693afa94cf26170f0f6276e3b7374ed0
1991Author: walter harms <wharms@bfs.de>
1992Date:   Tue Apr 26 16:34:11 2016 +0200
1993
1994    no need to check args for Xfree()
1995    
1996    simplify code
1997    
1998    Signed-off-by: walter harms <wharms@bfs.de>
1999
2000commit c1c14af441ae73d1a8e67a971fafcf967e45ac48
2001Author: walter harms <wharms@bfs.de>
2002Date:   Tue Apr 26 16:23:46 2016 +0200
2003
2004    remove stray extern
2005    
2006    remove stray extern
2007    
2008    Signed-off-by: walter harms <wharms@bfs.de>
2009
2010commit 714921f041a245dc5f37a689268b584226a2ccb9
2011Author: walter harms <wharms@bfs.de>
2012Date:   Mon Apr 11 18:26:52 2016 +0200
2013
2014    no need to check argument for _XkbFree()
2015    
2016    simplify code by removing unneeded checks
2017    
2018    Signed-off-by: walter harms <wharms@bfs.de>
2019
2020commit d02c2466f65063a03c97dbcee05071c12a3676e6
2021Author: walter harms <wharms@bfs.de>
2022Date:   Mon Apr 11 18:22:38 2016 +0200
2023
2024    fix more shadow warning
2025    
2026    Signed-off-by: walter harms <wharms@bfs.de>
2027
2028commit 0355c3926d5372f9762f235071dbd94a89bbbdad
2029Author: walter harms <wharms@bfs.de>
2030Date:   Thu Mar 31 19:16:33 2016 +0200
2031
2032    fix shadow char_size
2033    
2034    Signed-off-by: walter harms <wharms@bfs.de>
2035
2036commit 916dffadf052135df3398651be873c353da629e1
2037Author: walter harms <wharms@bfs.de>
2038Date:   Thu Mar 31 19:14:32 2016 +0200
2039
2040    remove argument check for free() adjust one inden
2041    
2042    Signed-off-by: walter harms <wharms@bfs.de>
2043
2044commit 6ec901ebca3fea6a762e22090dc35b1b90911133
2045Author: walter harms <wharms@bfs.de>
2046Date:   Thu Mar 31 19:12:17 2016 +0200
2047
2048    _XIOError(dpy); will never return so remore dead
2049    
2050    Signed-off-by: walter harms <wharms@bfs.de>
2051
2052commit 83107a677b2ed458e4d62ea4a601e8181d3683d8
2053Author: walter harms <wharms@bfs.de>
2054Date:   Thu Mar 31 19:10:49 2016 +0200
2055
2056    fix shadow warning
2057    
2058    Signed-off-by: walter harms <wharms@bfs.de>
2059
2060commit 4fe66b1c5112b07bd09e28bbc021911d08a9621f
2061Author: Ryan C. Gordon <icculus@icculus.org>
2062Date:   Wed Aug 2 02:41:03 2017 -0400
2063
2064    Valgrind fix for XStoreColor and XStoreColors.
2065    
2066    If the "pad" field isn't set, Valgrind will report it as uninitialized
2067    memory accesses when the struct is copied into the Display's send buffer.
2068    
2069    In practice, this is (probably) harmless, but Valgrind is correct in
2070    believing it's a bug.
2071    
2072    https://bugs.freedesktop.org/attachment.cgi?id=133189
2073    
2074    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2075    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2076
2077commit 7d2010fec25c2f52b873ad0572479eb43128b038
2078Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2079Date:   Fri Apr 7 00:13:03 2017 -0700
2080
2081    Improve table formatting in XkbChangeControls & XkbKeyNumGroups man pages
2082    
2083    Includes fix for Solaris Bug 24564279: "XkbKeyNumGroups.3x11 man page
2084    contains some malformed text" caused by extra whitespace after .TE macros
2085    
2086    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2087
2088commit b856d5d929047d1ea169814d56e43784ea404c83
2089Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2090Date:   Thu Mar 16 00:05:49 2017 -0700
2091
2092    Clarify state parameter to XkbSetNamedDeviceIndicator
2093    
2094    Checking a Bool to see if it's NULL does not work well in C.
2095    Also reported in https://bugs.freedesktop.org/show_bug.cgi?id=251
2096    
2097    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2098    Reviewed-by: Adam Jackson <ajax@redhat.com>
2099
2100commit c6dadd4cebd994aafb37a58b3adbaa82507c2d18
2101Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2102Date:   Wed Mar 15 23:50:26 2017 -0700
2103
2104    Make Xkb{Get,Set}NamedIndicator spec & manpages match code
2105    
2106    The XKB Library spec and the man pages for XkbGetNamedIndicator &
2107    XkbSetNamedIndicator included a device_spec argument neither function
2108    takes, and do not include the XkbGetNamedDeviceIndicator &
2109    XkbSetNamedDeviceIndicator variants that do take it (along with two
2110    other arguments).
2111    
2112    This updates them to match the interfaces the code has provided for
2113    decades.
2114    
2115    This has been reported multiple times, so this fixes:
2116    https://bugs.freedesktop.org/show_bug.cgi?id=251
2117    https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=729812
2118    Sun Bug 4528016 XkbSetNamedIndicator & XkbGetNamedIndicator man pages are wrong
2119      (filed: alan.coopersmith@sun.com 2001-11-15 - now aka Oracle bug 15087506)
2120    X.Org Group Defect Id #9418
2121    
2122    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2123    Reviewed-by: Adam Jackson <ajax@redhat.com>
2124
2125commit 2d20890e7ffd3ee88a9ceb25cdd2ac1fe7aaceb6
2126Author: Arthur Huillet <ahuillet@nvidia.com>
2127Date:   Wed Feb 1 15:02:41 2017 +0100
2128
2129    _XDefaultError: set XlibDisplayIOError flag before calling exit
2130    
2131    _XReply isn't reentrant, and it can lead to deadlocks when the default error
2132    handler is called: _XDefaultError calls exit(1). It is called indirectly by
2133    _XReply when a X protocol error comes in that isn't filtered/handled by an
2134    extension or the application. This means that if the application (or one of its
2135    loaded shared libraries such as the NVIDIA OpenGL driver) has registered any
2136    _fini destructor, _fini will get called while still on the call stack of
2137    _XReply. If the destructor interacts with the X server and calls _XReply, it
2138    will hit a deadlock, looping on the following in _XReply:
2139    
2140        ConditionWait(dpy, dpy->xcb->reply_notify);
2141    
2142    It is legal for an application to make Xlib calls during _fini, and that is
2143    useful for an OpenGL driver to avoid resource leaks on the X server side, for
2144    example in the dlopen/dlclose case. However, the driver can not readily tell
2145    whether its _fini is being called because Xlib called exit, or for another
2146    reason (dlclose), so it is hard to cleanly work around this issue in the driver.
2147    
2148    This change makes it so _XReply effectively becomes a no-op when called after
2149    _XDefaultError was called, as though an XIOError had happened. The dpy
2150    connection isn't broken at that point, but any call to _XReply is going to hang.
2151    This is a bit of a kludge, because the more correct solution would be to make
2152    _XReply reentrant, maybe by broadcasting the reply_notify condition before
2153    calling the default error handler. However, such a change would carry a grater
2154    risk of introducing regressions in Xlib.
2155    
2156    This change will drop some valid requests on the floor, but this should not
2157    matter, as it will only do so in the case where the application is dying: X will
2158    clean up after it once exit() is done running. There is the case of
2159    XSetCloseDownMode(RETAIN_PERMANENT), but an application using that and wishing
2160    to clean up resources in _fini would currently be hitting a deadlock, which is
2161    hardly a better situation.
2162    
2163    Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
2164    Reviewed-by: Jamey Sharp <jamey@minilop.net>
2165
2166commit 42f4d7af9cf6d1dbfa575552e057328b054a20c9
2167Author: Matt Turner <mattst88@gmail.com>
2168Date:   Sat Feb 25 21:54:22 2017 -0800
2169
2170    libX11 1.6.5
2171    
2172    Signed-off-by: Matt Turner <mattst88@gmail.com>
2173
2174commit a0da5835e8078445947c828fe2d86c1a31439012
2175Author: Adam Jackson <ajax@redhat.com>
2176Date:   Tue Feb 14 15:33:29 2017 -0500
2177
2178    Revert "Compose sequences for rouble sign"
2179    
2180    This reverts commit d9e34061307748cb7318ed6b5f83ee5ee9b81fd0.
2181    
2182    Reported to break 'make check':
2183    
2184    https://lists.freedesktop.org/archives/xorg-devel/2017-February/052720.html
2185
2186commit d9e34061307748cb7318ed6b5f83ee5ee9b81fd0
2187Author: Mihail Konev <k.mvc@ya.ru>
2188Date:   Fri Feb 10 18:48:18 2017 +0500
2189
2190    Compose sequences for rouble sign
2191    
2192    Cyrillic combinations mirror the Qwerty-Jcuken keyboard layout.
2193    Also add Cyrillic sequences for hryvnia sign.
2194    
2195    Submitted-by: Victor V. Kustov <coyote@bks.tv>
2196    Reviewed-by: Victor V. Kustov <coyote@bks.tv>
2197    Signed-off-by: Mihail Konev <k.mvc@ya.ru>
2198
2199commit 23d9623c661694aba8cf1e8f277dffa7a86cf065
2200Author: Petr Písař <petr.pisar@atlas.cz>
2201Date:   Sun Oct 30 12:49:11 2016 +0100
2202
2203    Revert cs_CZ.UTF-8 XLC_LOCALE to en_US.UTF-8
2204    
2205    The cs_CZ.UTF-8/XLC_LOCALE is an empty file leading to unsupported cs_CZ.UTF-8
2206    locale and reporting this error:
2207    
2208    Warning: locale not supported by Xlib, locale set to C
2209    
2210    Therefore this patch reverts to the en_US.UTF-8 definition file that was used
2211    before. This patch also deduplicates the cs_CZ.UTF-8 entry.
2212    
2213    <https://bugs.freedesktop.org/show_bug.cgi?id=98219>
2214    
2215    This reverts commit 33840a5465a2e5fecab520bfbdd2d1bd0a456f51
2216    
2217    Signed-off-by: Julien Cristau <jcristau@debian.org>
2218
2219commit 71b0929ebc1f0f877f63e3f6de260f529daa6c69
2220Author: Mihail Konev <k.mvc@ya.ru>
2221Date:   Thu Jan 26 13:52:49 2017 +1000
2222
2223    autogen: add default patch prefix
2224    
2225    Signed-off-by: Mihail Konev <k.mvc@ya.ru>
2226
2227commit 2979011bc170c55894b9185b26376f8efc6db7d4
2228Author: Emil Velikov <emil.l.velikov@gmail.com>
2229Date:   Mon Mar 9 12:00:52 2015 +0000
2230
2231    autogen.sh: use quoted string variables
2232    
2233    Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent
2234    fall-outs, when they contain space.
2235    
2236    Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
2237    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
2238    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2239
2240commit 4a0082a1b6affa65d38294f0e13511525cd8ad15
2241Author: Peter Hutterer <peter.hutterer@who-t.net>
2242Date:   Tue Jan 24 10:32:07 2017 +1000
2243
2244    autogen.sh: use exec instead of waiting for configure to finish
2245    
2246    Syncs the invocation of configure with the one from the server.
2247    
2248    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2249    Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
2250
2251commit c74b070f2712c95f0db7c320a10232b0e5c83049
2252Author: Julien Cristau <jcristau@debian.org>
2253Date:   Sat Jan 7 16:20:31 2017 +0100
2254
2255    Fix wrong Xfree in XListFonts failure path
2256    
2257    'ch' gets moved inside the allocated buffer as we're looping through
2258    fonts, so keep a reference to the start of the buffer so we can pass
2259    that to Xfree in the failure case.
2260    
2261    Fixes: commit 20a3f99eba5001925b8b313da3accb7900eb1927 "Plug a memory leak"
2262    
2263    Signed-off-by: Julien Cristau <jcristau@debian.org>
2264    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2265    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2266
2267commit 663f47075fe67bab4f99bc5d186c49175d4a4334
2268Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2269Date:   Sun Jan 1 20:57:58 2017 -0800
2270
2271    specs/libX11: Update Portability Considerations for the 21st century
2272    
2273    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2274    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2275
2276commit 28f4b989b52fcf45c7e75a878d8d9c2583cd6b3c
2277Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2278Date:   Sun Jan 1 20:39:53 2017 -0800
2279
2280    specs/libX11: Fix broken synopsis for Data/Data16/Data32
2281    
2282    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2283
2284commit 382561951e3460b09c21a1a23748cde0315fbb19
2285Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2286Date:   Sun Jan 1 20:31:54 2017 -0800
2287
2288    specs/libX11: Add missing parameter types for XGetWindowProperty()
2289    
2290    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2291
2292commit 2beaecdb66965b861d6b790d151ba947f65f0a22
2293Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2294Date:   Sun Jan 1 20:16:08 2017 -0800
2295
2296    specs/libX11: Make paramdef spacing more consistent
2297    
2298    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2299
2300commit 4c436c6c14cfd4c397b011563bf13c2872861133
2301Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2302Date:   Sun Jan 1 20:02:53 2017 -0800
2303
2304    specs/libX11: Fix paramdef entries listing multiple parameters
2305    
2306    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2307
2308commit 1728b1a8a4718315da8e5c9cbc2c04bb75c74107
2309Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2310Date:   Sun Jan 1 19:38:40 2017 -0800
2311
2312    specs/libX11: More synopsis fixes
2313    
2314    Mostly transforming macro definitions and functions taking void arguments
2315    from undecorated <para> tags to use <funcsynopsis> tags to get decorations.
2316    
2317    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2318
2319commit f0dc83db7e3a3d4a76c0f9d24763b80f01c893a9
2320Author: Lucien Gentis <lucien.gentis@waika9.com>
2321Date:   Wed Jun 1 17:02:47 2016 +0200
2322
2323    Typos in "Xlib - C Language X Interface" document - Chapter 02
2324    
2325    This patch fixes typos and lack of tags in "Xlib - C Language X Interface" document - Chapter 02.
2326    
2327    Signed-off-by: Lucien Gentis <lucien.gentis@waika9.com>
2328    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2329    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2330
2331commit 20a3f99eba5001925b8b313da3accb7900eb1927
2332Author: Emilio Pozuelo Monfort <pochu@debian.org>
2333Date:   Tue Oct 25 21:30:15 2016 +0200
2334
2335    Plug a memory leak
2336    
2337    This was introduced in 8ea762f.
2338    
2339    Reported-by: Julien Cristau <jcristau@debian.org>
2340    Signed-off-by: Emilio Pozuelo Monfort <pochu@debian.org>
2341    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2342
2343commit 8f349feac24aacc958bd816afcc52380764e3d92
2344Author: Matthieu Herrb <matthieu.herrb@laas.fr>
2345Date:   Tue Oct 4 21:01:39 2016 +0200
2346
2347    libX11 1.6.4
2348    
2349    Signed-off-by: Matthieu Herrb <matthieu.herrb@laas.fr>
2350
2351commit 8ea762f94f4c942d898fdeb590a1630c83235c17
2352Author: Tobias Stoeckmann <tobias@stoeckmann.org>
2353Date:   Sun Sep 25 21:25:25 2016 +0200
2354
2355    Validation of server responses in XGetImage()
2356    
2357    Check if enough bytes were received for specified image type and
2358    geometry. Otherwise GetPixel and other functions could trigger an
2359    out of boundary read later on.
2360    
2361    Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
2362    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
2363
2364commit 8c29f1607a31dac0911e45a0dd3d74173822b3c9
2365Author: Tobias Stoeckmann <tobias@stoeckmann.org>
2366Date:   Sun Sep 25 21:22:57 2016 +0200
2367
2368    The validation of server responses avoids out of boundary accesses.
2369    
2370    v2: FontNames.c  return a NULL list whenever a single
2371    length field from the server is incohent.
2372    
2373    Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
2374    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
2375
2376commit 78851f6a03130e3c720b60c3cbf96f8eb216d741
2377Author: walter harms <wharms@bfs.de>
2378Date:   Mon Aug 15 19:18:14 2016 +0200
2379
2380    XFree will accept NULL as argument
2381    
2382    since Xfree is a define for free():
2383      Xlibint.h:#define Xfree(ptr) free((ptr))
2384    
2385    Xfree will accept NULL and do nothing.
2386    
2387    Signed-off-by: Hans de Goede <hdegoede@redhat.com>
2388
2389commit 83adf3d1e3d0d6602244381334f75c216da4ab6e
2390Author: Matthew D. Fuller <fullermd@over-yonder.net>
2391Date:   Sat Jun 4 11:24:01 2016 -0500
2392
2393    Fixup param specification for XChangeProperty()
2394    
2395    Signed-off-by: Matthew D. Fuller <fullermd@over-yonder.net>
2396    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2397
2398commit 3129c757f9da8586ab8b8654a56c8f687cc9ef5c
2399Author: Mats Blakstad <mats.gbproject@gmail.com>
2400Date:   Sun Feb 28 13:22:03 2016 -0500
2401
2402     New compose keys for local languages in Togo
2403    
2404    Signed-off-by: James Cloos <cloos@jhcloos.com>
2405
2406commit e1011b9e2f6c82255959cf3cc1d8cda402ded0a9
2407Author: Daniel Albers <daniel@lbe.rs>
2408Date:   Wed Mar 9 14:35:48 2016 +0100
2409
2410    Add Compose sequence for U+1F4A9.
2411    
2412    Signed-off-by: Daniel Albers <daniel@lbe.rs>
2413
2414commit 6d7bb040c928485f2557c2c914b95cffb2354179
2415Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2416Date:   Sat Feb 6 14:18:32 2016 -0800
2417
2418    xcms: use size_t for pointer offsets passed to strncmp
2419    
2420    instead of converting to int and back
2421    
2422    Fixes clang warnings of the form:
2423    HVC.c:190:43: warning: implicit conversion changes signedness: 'int' to
2424          'unsigned long' [-Wsign-conversion]
2425              if (strncmp(spec, _XcmsTekHVC_prefix, n) != 0) {
2426                  ~~~~~~~
2427    
2428    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2429
2430commit a9266804eed38a83897ab5f0f9f8a8ab82a98882
2431Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2432Date:   Sat Feb 6 13:32:44 2016 -0800
2433
2434    xcms: use unsigned indexes when looping through unsigned values
2435    
2436    Clears many gcc warnings of the form:
2437    
2438    uvY.c: In function ‘XcmsCIEuvYToCIEXYZ’:
2439    uvY.c:263:19: warning: comparison between signed and unsigned integer
2440      expressions [-Wsign-compare]
2441         for (i = 0; i < nColors; i++, pColor++) {
2442                       ^
2443    
2444    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2445
2446commit 0ee0d383b4488b7b90d8bd50b75c371e0dc0d397
2447Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2448Date:   Sat Feb 6 13:01:25 2016 -0800
2449
2450    xcms: use size_t for strlen/sizeof values instead of converting to int & back
2451    
2452    Fixes gcc warnings of the form:
2453    
2454    IdOfPr.c: In function ‘XcmsFormatOfPrefix’:
2455    IdOfPr.c:69:32: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
2456         if ((len = strlen(prefix)) >= sizeof(string_buf)) {
2457                                    ^
2458    IdOfPr.c:83:11: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
2459       if (len >= sizeof(string_buf)) Xfree(string_lowered);
2460               ^
2461    IdOfPr.c:97:11: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
2462       if (len >= sizeof(string_buf)) Xfree(string_lowered);
2463               ^
2464    IdOfPr.c:104:13: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
2465         if (len >= sizeof(string_buf)) Xfree(string_lowered);
2466                 ^
2467    
2468    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2469
2470commit 4de6ed3e7b1833c52c9d58ab74d59d57ca2a9f0d
2471Author: Dominik Muth <nxdomainuser-muth@yahoo.com>
2472Date:   Thu Mar 26 07:52:58 2015 +0100
2473
2474    Xlib.h: Fix macros imitating C functions.
2475    
2476    The basic rule "put parantheses around macro parameters" should be
2477    observed where possible. Otherwise code like
2478    
2479        ConnectionNumber(foo = bar);
2480    
2481    fails to compile. (It obviously passes if ConnectionNumber is a C
2482    function.) There are several other macros amended for the same reason.
2483    
2484    This bug appeared while building http://ioccc.org/1993/cmills.c, so
2485    historically it was not present.
2486    
2487    Signed-off-by: Dominik Muth <muth@nxdomain.no-ip.biz>
2488    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2489    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2490
2491commit 3706b0f2b14cc97578a6bee620266edca2722ebf
2492Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2493Date:   Fri Nov 15 18:03:25 2013 -0800
2494
2495    Don't need to link libX11-xcb against libX11
2496    
2497    libX11-xcb only accesses data structures defined in X11 headers,
2498    it doesn't call any functions or reference any global variables
2499    in libX11 itself.  (Seems to have been left from previous XCL
2500    implementation.)
2501    
2502    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2503
2504commit eddf1bbd18872b286a9f939140f0cd9ba4e93804
2505Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2506Date:   Fri Jan 22 11:44:25 2016 -0800
2507
2508    Stop checking for preferred order of local transports
2509    
2510    Removes --with-local-transport-order=... flag to configure.
2511    
2512    Code which used this ordered list was removed in commit 15e5eaf6289
2513    which outsourced X11 connection handling & authentication to libxcb.
2514    
2515    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2516    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
2517
2518commit 1a66c1e964ff8d11382313404f48b5a3d5ed8be8
2519Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2520Date:   Fri Jan 22 09:39:28 2016 -0800
2521
2522    Stop checking XTRANS_SECURE_RPC_FLAGS since we no longer use them
2523    
2524    Removes --enable-secure-rpc & --disable-secure-rpc flags to configure
2525    
2526    Code that used SECURE_RPC definitions was removed in commit 15e5eaf6289
2527    which outsourced X11 connection handling & authentication to libxcb.
2528    
2529    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2530    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
2531
2532commit 7eb724dc24505f1591ef32620fa63f079b540646
2533Author: Olivier Fourdan <ofourdan@redhat.com>
2534Date:   Thu Jan 21 11:54:19 2016 +0100
2535
2536    XKB: fix XkbGetKeyboardByName with Xming server
2537    
2538    XkbGetKeyboardByName relies on flags to read the data from the server.
2539    
2540    If the X server sends us the wrong flags or if a subreply is smaller
2541    than it should be, XkbGetKeyboardByName will not read all the available
2542    data and leave data in the buffer, which will cause the next _XReply()
2543    to fail with:
2544    
2545    [xcb] Extra reply data still left in queue
2546    [xcb] This is most likely caused by a broken X extension library
2547    [xcb] Aborting, sorry about that.
2548    xcb_io.c:576: _XReply: Assertion `!xcb_xlib_extra_reply_data_left' failed.
2549    Aborted
2550    
2551    Check if there is some extra data left at the end of
2552    XkbGetKeyboardByName() and discard that data if any is found.
2553    
2554    Many thanks to Peter Hutterer <peter.hutterer@who-t.net> for finding the
2555    root cause of the issue and Adam Jackson <ajax@redhat.com> for helping
2556    with the analysis!
2557    
2558    Signed-off-by: Olivier Fourdan <ofourdan@redhat.com>
2559    Reviewed-by: Daniel Stone <daniels@collabora.com>
2560    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
2561    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2562
2563commit 43ba0a68d3d17b496ec1f48d44921122ddd7d7d9
2564Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2565Date:   Sat Dec 19 18:03:41 2015 -0800
2566
2567    lcPubWrap: replace malloc(strlen) + strcpy with strdup
2568    
2569    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2570    Reviewed-by: Adam Jackson <ajax@redhat.com>
2571
2572commit 6fc95cb12b70c5a67cb4fc5e5749f9f1ec741e2a
2573Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2574Date:   Sat Dec 19 10:21:04 2015 -0800
2575
2576    XlcDL.c: reduce code duplication
2577    
2578    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2579    Reviewed-by: Adam Jackson <ajax@redhat.com>
2580
2581commit f7ecc0856be58608881d2086954cb71857ad64e1
2582Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2583Date:   Sat Dec 19 10:19:25 2015 -0800
2584
2585    XlcDL.c: replace strcpy+strcat sequences with snprintf
2586    
2587    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2588    Reviewed-by: Adam Jackson <ajax@redhat.com>
2589
2590commit 522989b34398bd6a6ea144c4af0ba69d6dc4faea
2591Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2592Date:   Sat Dec 19 10:05:42 2015 -0800
2593
2594    XDefaultOMIF: Remove comments referring to ancient Sun bug ids
2595    
2596    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2597    Reviewed-by: Adam Jackson <ajax@redhat.com>
2598
2599commit b738a104ae80e4270dd1d215ad0c6a80016982c2
2600Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2601Date:   Sat Dec 19 10:00:22 2015 -0800
2602
2603    XDefaultOMIF: additional code simplification
2604    
2605    Don't need to test for a case that we already returned for, don't need
2606    to store a count that will only ever be 1 if we didn't return, don't
2607    need to increment pointers to allow storing more than one item when we
2608    can only ever possibly do one.
2609    
2610    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2611    Reviewed-by: Adam Jackson <ajax@redhat.com>
2612
2613commit 31011cf100419269eae7409581c784638be503cf
2614Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2615Date:   Sat Dec 19 09:46:31 2015 -0800
2616
2617    XDefaultOMIF: replace strlen+Xmalloc+strcpy with strdup
2618    
2619    Code seems to have been originally written to handle appending multiple
2620    strings, but only ever operates on a single string.
2621    
2622    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2623    Reviewed-by: Adam Jackson <ajax@redhat.com>
2624
2625commit c27c46d5e22bbf60fb5608eaabe584b7fdeb0b09
2626Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2627Date:   Sat Dec 19 09:20:55 2015 -0800
2628
2629    Use strdup instead of Xmalloc+strcpy in _XDefaultOpenIM
2630    
2631    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2632    Reviewed-by: Adam Jackson <ajax@redhat.com>
2633
2634commit 4359dfabc04af082872d2bc2d5b52e26d6d93290
2635Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2636Date:   Fri Dec 4 22:20:53 2015 -0800
2637
2638    Delete #if 0 hunks of code
2639    
2640    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2641
2642commit a2f9dfac286f37e54eb47d4736cc3f0150224a84
2643Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2644Date:   Thu Dec 3 23:38:07 2015 -0800
2645
2646    Bug 93183: _XDefaultOpenIM memory leaks in out-of-memory error paths
2647    
2648    Rework code to store allocations directly into XIM struct instead of
2649    temporary local variables, so we can use _XCloseIM to unwind instead
2650    of duplicating it, and consistently jump to error handler on failure,
2651    instead of sometimes leaking and sometimes freeing.
2652    
2653    Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=93183
2654    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2655
2656commit 07a97b3944467dce085a1efd24706cc851d2caf2
2657Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2658Date:   Thu Dec 3 23:19:48 2015 -0800
2659
2660    Bug 93184: read_EncodingInfo invalid free
2661    
2662    Free the correct bits of memory if we run out and need to unwind
2663    
2664    Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=93184
2665    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2666
2667commit 11118e9eb3705fcbe42b6a68d4a8aa86ab0211f1
2668Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2669Date:   Sat Nov 28 13:18:11 2015 -0800
2670
2671    Remove unused definition of XCONN_CHECK_FREQ
2672    
2673    The only use of XCONN_CHECK_FREQ was removed in commit 15e5eaf62897b3179
2674    when we dropped the old Xlib connection handling in favor of xcb's.
2675    
2676    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2677    Reviewed-by: Mark Kettenis <kettenis@openbsd.org>
2678
2679commit 5f0da8311a61498edf073cc877f5b467bfd5f863
2680Author: James Cloos <cloos@jhcloos.com>
2681Date:   Thu Dec 3 18:24:44 2015 -0500
2682
2683    Fix another missing update in cf4d5989383a
2684    
2685    Reported in:
2686    
2687       https://bugs.freedesktop.org/show_bug.cgi?id=81875#c7
2688    
2689    Signed-off-by: James Cloos <cloos@jhcloos.com>
2690
2691commit 33840a5465a2e5fecab520bfbdd2d1bd0a456f51
2692Author: James Cloos <cloos@jhcloos.com>
2693Date:   Thu Dec 3 18:15:40 2015 -0500
2694
2695    Fix missing update in cf4d5989383a
2696    
2697    Reported in:
2698    
2699       https://bugs.freedesktop.org/show_bug.cgi?id=81875#c7
2700    
2701    Signed-off-by: James Cloos <cloos@jhcloos.com>
2702
2703commit dbcb847a08c44d99e4e1de2ba777d63238fb0e03
2704Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2705Date:   Sun Sep 27 18:38:32 2015 -0700
2706
2707    Get rid of some extraneous ; at the end of C source lines
2708    
2709    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2710    Reviewed-by: Thomas Klausner <wiz@NetBSD.org>
2711
2712commit 121a1bad334459f66f78bfca6df53dc841cf97f8
2713Author: Gunnar Hjalmarsson <gunnarhj@ubuntu.com>
2714Date:   Wed Sep 23 11:44:55 2015 -0400
2715
2716    Add compose file for pt_PT similar to pt_BR
2717    
2718    This is a forward of the Ubuntu bug https://launchpad.net/bugs/518056
2719    
2720    One of the conclusions from the discussion on that bug report, which
2721    basically is about typing the ccedilla character easily on a non-
2722    Portuguese keyboard, is that X11 should include a compose file for
2723    pt_PT.UTF-8 similar to the file for pt_BR.UTF-8.
2724    
2725    FDO bug: https://bugs.freedesktop.org/show_bug.cgi?id=90300
2726    
2727    Signed-off-by: Gunnar Hjalmarsson <gunnarhj@ubuntu.com>
2728    Signed-off-by: James Cloos <cloos@jhcloos.com>
2729
2730commit 3f41d8a7f82eb5ffbd5c5d36472cf7043186b904
2731Author: Julien Cristau <jcristau@debian.org>
2732Date:   Fri May 1 13:50:15 2015 +0200
2733
2734    Mark _XNextRequest as hidden
2735    
2736    It's only used inside XNextRequest(), so doesn't need to be exported.
2737    
2738    Signed-off-by: Julien Cristau <jcristau@debian.org>
2739    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2740
2741commit a72d2d06c002b644b7040a0a9936c8525e092ba8
2742Author: Christian Linhart <chris@demorecorder.com>
2743Date:   Mon Sep 7 17:17:32 2015 +0200
2744
2745    fix for Xlib 32-bit request number issues
2746    
2747    Make use of the new 64-bit sequence number API in XCB 1.11.1 to avoid
2748    the 32-bit sequence number wrap in libX11.
2749    
2750    Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=71338
2751    Signed-off-by: Christian Linhart <chris@demorecorder.com>
2752    Signed-off-by: Olivier Fourdan <ofourdan@redhat.com>
2753    Reviewed-by: Adam Jackson <ajax@redhat.com>
2754
2755commit 58af066a764305c506efea7065ef7679369a1a98
2756Author: Thomas Klausner <wiz@NetBSD.org>
2757Date:   Sun Jul 19 10:23:21 2015 +0200
2758
2759    Ignore test-driver (used by newer autoconf).
2760    
2761    Signed-off-by: Thomas Klausner <wiz@NetBSD.org>
2762    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2763
2764commit 80b9a346b9ba200fa4652560282e80d249519287
2765Author: Thomas Klausner <wiz@NetBSD.org>
2766Date:   Sun Jul 19 10:22:45 2015 +0200
2767
2768    Do not return() after exit().
2769    
2770    Signed-off-by: Thomas Klausner <wiz@NetBSD.org>
2771    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2772
2773commit c827edcd1c4a7f920aa25208083b5b58d60d2b44
2774Author: Ross Burton <ross.burton@intel.com>
2775Date:   Mon May 18 14:49:01 2015 +0100
2776
2777    Add missing NULL checks to ICWrap
2778    
2779    ICWrap.c dereferences the xim parameter passed in from client code without a
2780    NULL check.  I have seen mplayer trigger this resulting in a segfault.  In this
2781    case mplayer had called XOpenIM and NULL was returned which was later passed
2782    into XCreateIC.
2783    
2784    Patch originally by Drew Moseley <drew_moseley@mentor.com>.
2785    
2786    Signed-off-by: Ross Burton <ross.burton@intel.com>
2787    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2788    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2789
2790commit 26e0d2de294f8adf1ce65f1dbff0b59af41a00b9
2791Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2792Date:   Thu Jun 4 20:51:17 2015 -0700
2793
2794    Replace Xmalloc+memset pairs with Xcalloc calls
2795    
2796    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2797
2798commit f0286b2770ece10aef5e2e8c004260217f12fd25
2799Author: Bhavi Dhingra <b.dhingra@samsung.com>
2800Date:   Thu Jun 4 19:07:12 2015 -0700
2801
2802    omGeneric.c: Correct the parameter usage of sizeof
2803    
2804    Incorrect parameter usage with sizeof. Earlier passed argument FontData
2805    will be 4 bytes always as its a pointer hence the change is needed and
2806    FontDataRec should be used for memset.
2807    
2808    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2809    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2810
2811commit 47da70d75f9e48e800719c0db752f9ccd2d77aea
2812Author: Peter Hutterer <peter.hutterer@who-t.net>
2813Date:   Tue May 19 12:30:22 2015 +1000
2814
2815    Fix three "use of uninitialized variable" coverity warnings
2816    
2817    False positive, if rlen/nbytes are unset we quit early before using it. Still,
2818    initialize it so we don't have to deal with these warnings again.
2819    
2820    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2821    Reviewed-by: Hans de Goede <hdegoede@redhat.com>
2822    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2823
2824commit 19a30f17f30e9ae9641a7c0634fc52134208b060
2825Author: Peter Hutterer <peter.hutterer@who-t.net>
2826Date:   Mon May 18 07:56:22 2015 +1000
2827
2828    Fix an indentation issue
2829    
2830    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2831    Reviewed-by: Hans de Goede <hdegoede@redhat.com>
2832    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2833
2834commit 013ccece124b990217ad3bcf2c41688e8fda1df8
2835Author: Peter Hutterer <peter.hutterer@who-t.net>
2836Date:   Mon May 18 07:55:17 2015 +1000
2837
2838    Fix potential memory leak
2839    
2840    If we hit the depth limit, filename leaks. Move the depth check up before we
2841    allocate filename.
2842    Introduced in 226622349a4b1e16064649d4444a34fb4be4f464.
2843    
2844    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2845    Reviewed-by: Hans de Goede <hdegoede@redhat.com>
2846    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2847
2848commit d3415d1f052530760b4617db45affcb984cfe35c
2849Author: Mike FABIAN <mfabian@redhat.com>
2850Date:   Mon Apr 20 17:59:30 2015 +0200
2851
2852    Fix spelling mistake introduced by 748d47e69f5c12d8557d56a8a8ec166588da7b93
2853    
2854    Sorry, my patch to fix the spelling mistakes in the ks_IN and sd_IN
2855    locales fixed it only partly, I introduced a new spelling mistake
2856    in the sd_IN locales. This patch fixes this.
2857    
2858    Signed-off-by: James Cloos <cloos@jhcloos.com>
2859
2860commit 748d47e69f5c12d8557d56a8a8ec166588da7b93
2861Author: Mike FABIAN <mfabian@redhat.com>
2862Date:   Wed Feb 19 11:46:45 2014 +0100
2863
2864    fix spelling mistakes in ks_IN and sd_IN devanagari locales
2865    
2866    The codeset must be *before* the modifier.
2867    
2868    See also: http://pubs.opengroup.org/onlinepubs/7908799/xbd/envvar.html
2869    
2870    opengroup> The syntax for these environment variables is thus defined as:
2871    opengroup>
2872    opengroup> [language[_territory][.codeset][@modifier]]
2873    
2874    Signed-off-by: James Cloos <cloos@jhcloos.com>
2875
2876commit c64fe5553aa4738f9d1d74a795f5651fbb7b1b09
2877Author: Mike FABIAN <mfabian@redhat.com>
2878Date:   Wed Feb 19 11:50:55 2014 +0100
2879
2880    add be_BY.UTF-8@latin and sr_RS.UTF-8@latin to locale.dir
2881    
2882    See also: https://bugzilla.redhat.com/show_bug.cgi?id=1066910
2883    
2884    If these are not in locale.dir,
2885    
2886        $ LANG=sr_RS.UTF-8@latin xterm
2887    
2888    and
2889    
2890        $ LANG=sr_RS@latin xterm
2891    
2892    give the warning:
2893    
2894        Warning: locale not supported by Xlib, locale set to C
2895    
2896    and some programs (like xmms) fail to find translations for Serbian
2897    in Latin because of this.
2898    
2899    Signed-off-by: James Cloos <cloos@jhcloos.com>
2900
2901commit c85be01b006126c4407eebd1eb6e01a17312b7b4
2902Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2903Date:   Sun Mar 22 16:46:45 2015 -0700
2904
2905    Move Compose \ o / to be with other emoji compose sequences
2906    
2907    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2908
2909commit 5a499ca7b064bf7e6a4fcc169f22862dce0c60c5
2910Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2911Date:   Mon Mar 9 15:28:29 2015 -0700
2912
2913    libX11 1.6.3
2914    
2915    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2916
2917commit c8e19b393defd53f046ddc2da3a16881221b3c34
2918Author: Joonas Javanainen <joonas.javanainen@gmail.com>
2919Date:   Thu Feb 5 17:31:04 2015 +0200
2920
2921    Fix XErrorEvent struct field order in man page
2922    
2923    In the man page the field "resourceid" was in a different place than
2924    in the actual struct layout in Xlib.h
2925    
2926    Signed-off-by: Joonas Javanainen <joonas.javanainen@gmail.com>
2927    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2928
2929commit ddf3b09bb262d01b56fbaade421ac85b0e60a69f
2930Author: Ran Benita <ran234@gmail.com>
2931Date:   Tue Feb 3 13:23:50 2015 -0500
2932
2933    compose: fix the description of modifiers in compose sequences
2934    
2935    The Compose format has a feature which allows specifying certain
2936    modifiers must (or must not) be present with a given keysym in the
2937    sequence.
2938    
2939    The grammar in imLcPrs.c and the Compose man page both do not match what
2940    the code actually does (see the handling of the variables
2941    `modifier_mask` and `modifier` in parseline() in imLcPrs.c, which are
2942    eventually matched as `ev->state & modifier_mask == modifier`).
2943    
2944    Also explicitly list the accepted modifier names, since they are
2945    not standard (e.g. "Ctrl" instead of "Control").
2946    
2947    Signed-off-by: Ran Benita <ran234@gmail.com>
2948    Signed-off-by: James Cloos <cloos@jhcloos.com>
2949
2950commit 129f13f385c50e3d8b53ea7441b17386b0f36aeb
2951Author: Ran Benita <ran234@gmail.com>
2952Date:   Tue Feb 3 13:23:49 2015 -0500
2953
2954    xkb: fix misleading comment about consumed modifiers
2955    
2956    In the spec and the man page the `mods_rtrn` argument is described as
2957    "backfilled with unconsumed modifiers" but actually it is backfilled
2958    with the *consumed* modifiers. This is also mentioned a few lines below
2959    in each case.
2960    
2961    Signed-off-by: Ran Benita <ran234@gmail.com>
2962    Signed-off-by: James Cloos <cloos@jhcloos.com>
2963
2964commit 446f5f7f41317a85a0cd0efa5e6a1b37bc99fba2
2965Author: Ingo Schwarze <schwarze@usta.de>
2966Date:   Tue Dec 9 10:44:13 2014 +0100
2967
2968    Fix pasto in XkbGetKeyBehaviors(3) manual
2969    
2970    Reviewed-by: Thomas Klausner <wiz@NetBSD.org>
2971    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2972
2973commit f3831dde6972e4da9e018c6a5f4013d8756a5e78
2974Author: Benno Schulenberg <bensberg@justemail.net>
2975Date:   Sun Nov 23 21:35:36 2014 +0100
2976
2977    nls: Sorting compose sequences rigorously in mirroring pairs, as is custom.
2978    
2979    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
2980
2981commit a51681b60c84109fe19f5d449e13080522499324
2982Author: Benno Schulenberg <bensberg@justemail.net>
2983Date:   Thu Sep 19 16:42:01 2013 +0200
2984
2985    nls: Remove a duplicate locale name, and sort some others more strictly.
2986    
2987    Also improve the grammar of the initial comment.
2988    
2989    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
2990    Signed-off-by: James Cloos <cloos@jhcloos.com>
2991
2992commit 426b7f850f5376db96a4b12420ee141603fcc3cd
2993Author: Benno Schulenberg <bensberg@justemail.net>
2994Date:   Fri Sep 20 12:37:29 2013 +0200
2995
2996    nls: Add a comment to the block of accented Hebrew letters.
2997    
2998    And align them in a nicer manner.
2999    
3000    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
3001    Signed-off-by: James Cloos <cloos@jhcloos.com>
3002
3003commit 7474c6f1ee78dd097b1d0b4c7e3e4ea41317e335
3004Author: Benno Schulenberg <bensberg@justemail.net>
3005Date:   Fri Sep 20 12:05:09 2013 +0200
3006
3007    nls: Add one lowercase compose variant for ®, to mirror those for ©.
3008    
3009    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
3010    Signed-off-by: James Cloos <cloos@jhcloos.com>
3011
3012commit 18dcd13514fa538afefa78c93523d9dbd4688e74
3013Author: Benno Schulenberg <bensberg@justemail.net>
3014Date:   Sat Sep 7 20:10:43 2013 +0200
3015
3016    nls: Adding the visual composing characters to two comment lines.
3017    
3018    The lines around them also contain the characters in the comments.
3019    
3020    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
3021    Signed-off-by: James Cloos <cloos@jhcloos.com>
3022
3023commit 18d8307575af748913d5da17e3de45da2a22ede4
3024Author: Benno Schulenberg <bensberg@justemail.net>
3025Date:   Sat Sep 7 20:09:32 2013 +0200
3026
3027    nls: Grouping a lone superscript minus together with its mates.
3028    
3029    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
3030    Signed-off-by: James Cloos <cloos@jhcloos.com>
3031
3032commit 33301cc45e6a2b8aa841ed6325547af970f8c4db
3033Author: Benno Schulenberg <bensberg@justemail.net>
3034Date:   Sat Sep 7 19:53:38 2013 +0200
3035
3036    nls: Grouping the compose sequences for Dstroke/dstroke together.
3037    
3038    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
3039    Signed-off-by: James Cloos <cloos@jhcloos.com>
3040
3041commit 78fe1becb6c18fa33c0d5f04005b45d856f8952a
3042Author: Gioele Barabucci <gioele@svario.it>
3043Date:   Sun Sep 21 23:05:55 2014 +0200
3044
3045    Add compose sequence for U+20B9 INDIAN RUPEE SIGN
3046    
3047    The compose sequence for the new Indian Rupee sign is modelled after
3048    the sequence for the Euro sign.
3049    
3050    Signed-off-by: Gioele Barabucci <gioele@svario.it>
3051    Signed-off-by: James Cloos <cloos@jhcloos.com>
3052
3053commit 6101b967b641355dd863fd1ce52c6a7d58bcbe68
3054Author: Gabriel Souza Franco <gabrielfrancosouza@gmail.com>
3055Date:   Thu Jul 31 22:23:28 2014 -0300
3056
3057    Add double-arrow compose sequence
3058    
3059    Signed-off-by: Gabriel Souza Franco <gabrielfrancosouza@gmail.com>
3060    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3061    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3062
3063commit 368a6401c6a3275d3497fec38a3dcbc38cd9df60
3064Author: James Cloos <cloos@jhcloos.com>
3065Date:   Fri Aug 1 18:30:42 2014 -0400
3066
3067    Add cs_CZ.UTF-8 locale to configure.ac
3068    
3069    Commit cf4d5989383a should have included this.
3070    
3071    Reported-by: Colin Harrison <colin.harrison@virgin.net>
3072    Signed-off-by: James Cloos <cloos@jhcloos.com>
3073
3074commit cf4d5989383acc4ed1b7eebadde9f380f2129766
3075Author: James Cloos <cloos@jhcloos.com>
3076Date:   Tue Jul 29 15:02:56 2014 -0400
3077
3078    Add nls for cs_CZ.UTF-8
3079    
3080    Based on the iso8859-2 compose, and a bug report by Vladimír Marek,
3081    override the en_US.UTF-8 use of <dead_caron> <u> to enter »ǔ« instead
3082    to enter »ů«, and likewise for the majuscule, for the Czech locale.
3083    
3084    This evidently is the norm for Czech keyboards.
3085    
3086    Fixes bz#81875.
3087    
3088    The XI18N_OBJS and XLC_LOCALE.pre files are empty, as they are for
3089    several other locales.  That may require an update.
3090    
3091    Reported-by:  Vladimír Marek <vlmarek@volny.cz>
3092    Signed-off-by: James Cloos <cloos@jhcloos.com>
3093
3094commit d9f569572bd14db31921471e7b877523b5cf1e4c
3095Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3096Date:   Sat Jul 26 12:17:47 2014 -0700
3097
3098    Fix source paths for out-of-tree lintlib builds
3099    
3100    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3101
3102commit 0885cad1e4a9ed57266582be320be55259c881bf
3103Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3104Date:   Sun Jul 20 09:21:20 2014 -0700
3105
3106    specs/XKB: Markup fractions as <{super,sub}script> instead of <emphasis>
3107    
3108    Matches the way they were styled in original doc, before conversion
3109    to DocBook.
3110    
3111    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3112
3113commit d0a9e9d56bb003315787201ee525b4d00fd54e06
3114Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3115Date:   Sat Jul 19 23:55:47 2014 -0700
3116
3117    specs/XKB: acknowledge my contributions
3118    
3119    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3120
3121commit 9c0be82017f513e2eb63d59b095f1cf1955f2e2b
3122Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3123Date:   Sat Jul 19 23:53:48 2014 -0700
3124
3125    specs/XKB: Trim leading spaces off text lines
3126    
3127    perl -i -p -e 's{/\*(\S)}{/* \1}g;' *.xml
3128    
3129    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3130
3131commit 75b0b10990f38d966c6fcc821bf15e58c5a90c91
3132Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3133Date:   Sat Jul 19 20:30:55 2014 -0700
3134
3135    specs/XKB: Add olinks to libX11 for "X Library Functions Affected by Xkb"
3136    
3137    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3138
3139commit 5009621799444e9d1d284719f871d00be13e7330
3140Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3141Date:   Sat Jul 19 12:34:28 2014 -0700
3142
3143    specs/XKB: Fix miscelleanous typos & spelling errors
3144    
3145    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3146
3147commit ac219bf1522a592bd3e3283b1a6ea3dfd2c3c48c
3148Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3149Date:   Sat Jul 19 00:46:41 2014 -0700
3150
3151    specs/XKB: add some more indexterms by hand
3152    
3153    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3154
3155commit 5c3aa4c69e65ecf2e56d5e26f3833fb5d31973c2
3156Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3157Date:   Sat Jul 19 00:48:02 2014 -0700
3158
3159    specs/XKB: fixup various formatting issues in <programlisting>s
3160    
3161    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3162
3163commit 70c648ff852fd9bc784967cfc77ea70bd7f14c8d
3164Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3165Date:   Fri Jul 18 23:56:29 2014 -0700
3166
3167    specs/XKB: fixup various formatting issues in <literallayout>s
3168    
3169    Including translating some that are really just lists into
3170    <simplelist> markup.
3171    
3172    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3173
3174commit 94b56774784ac00b9db02403aecea10bb0814c10
3175Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3176Date:   Fri Jul 18 23:18:52 2014 -0700
3177
3178    specs/XKB: add some more links by hand
3179    
3180    random bits where a link looked handy
3181    
3182    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3183
3184commit 7a15a934cdb07ed1b991bd0ef633f32ee00b1833
3185Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3186Date:   Fri Jul 18 23:16:31 2014 -0700
3187
3188    specs/XKB: add links for terms in definition list under figure 1.1
3189    
3190    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3191
3192commit 92b86fc3c50fbb7ab2e36af10a2fb3fe6284f58c
3193Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3194Date:   Fri Jul 18 22:52:16 2014 -0700
3195
3196    specs/XKB: add links to more tables listing section references
3197    
3198    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3199
3200commit 06a4483a05053b4f8d8c0d4cc0513c68ea912676
3201Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3202Date:   Fri Jul 18 22:49:34 2014 -0700
3203
3204    specs/XKB: Table 4.1: remove page numbers & unnecessary para tags
3205    
3206    Page numbers refer to old doc format, didn't translate to new one
3207    
3208    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3209
3210commit 61bd55c6d1ab211b89d604bd05555dc417f6e53d
3211Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3212Date:   Sat Jul 19 11:55:51 2014 -0700
3213
3214    specs/XKB: remove unwanted white space around C -&gt; struct references
3215    
3216    perl -i -0 -p -e 's{\s*-&gt;\s*}{-&gt;}g' *xml
3217    
3218    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3219
3220commit 2be0cc0b2abbcc98cfd150210dea415a04787251
3221Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3222Date:   Fri Jul 18 22:26:20 2014 -0700
3223
3224    specs/XKB: replace -&gt; with &rarr; when used as arrow, not in C structs
3225    
3226    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3227
3228commit bf1f3d6f6f995303624679ae546f507c70967dc0
3229Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3230Date:   Fri Jul 18 22:21:10 2014 -0700
3231
3232    specs/XKB: replace =&gt; with &rArr; for double arrows
3233    
3234    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3235
3236commit c7ee427fc0a72abd4a4f147ab16a5d1128a6a2ba
3237Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3238Date:   Sat Jul 19 11:33:35 2014 -0700
3239
3240    specs/XKB: Markup some ranges with &ndash; instead of -
3241
3242commit ec4075303c6c0d1d64bfe378e585968f9a137da7
3243Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3244Date:   Fri Jul 18 22:10:45 2014 -0700
3245
3246    specs/XKB: Markup some subtractions with &minus; instead of -
3247    
3248    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3249
3250commit 441a267e461132a38abed205245f028686526f1d
3251Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3252Date:   Fri Jul 18 22:04:40 2014 -0700
3253
3254    specs/XKB: make sure all files have DOCTYPEs so standard entities work
3255    
3256    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3257
3258commit 88fd70bee410f290b4f540405fdc7ecd85c26f25
3259Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3260Date:   Fri Jul 18 21:55:41 2014 -0700
3261
3262    specs/XKB: Markup quoted terms as <quote> instead of with ""
3263    
3264    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3265
3266commit 3576587ff10334a8f48c34b4fe5b7e829dec9a1b
3267Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3268Date:   Sat Jul 19 09:01:26 2014 -0700
3269
3270    specs/XKB: fixup newlines between tags and punctuation
3271    
3272    Get rid of unwanted whitespace before punctuation by moving them to the
3273    lines with the tags, instead of before & after.
3274    
3275    perl -i -0 -p -e 's{\>\s*\n([\.,;:])}{>\1\n}g' *xml
3276    
3277    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3278
3279commit 6d5ec492cd28c206423337f926503349702af5a6
3280Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3281Date:   Fri Jul 18 21:29:33 2014 -0700
3282
3283    specs/XKB: fixup newlines between tags and parens
3284    
3285    Get rid of unwanted whitespace inside parens by moving them to the
3286    lines with the tags, instead of before & after.
3287    
3288    perl -i -0 -p \
3289         -e 's{(?<!--) \(\s*\n\<}{\n(<}g;' \
3290         -e 's{\>\s*\n\)([\.,;]?)(?! [^\n]*--)}{>)\1\n}g' *xml
3291    
3292    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3293
3294commit 59d688f4c787250e0b401a92b1db0437d8c60f2d
3295Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3296Date:   Fri Jul 18 21:09:24 2014 -0700
3297
3298    specs/XKB: Markup key terms as <firstterm> instead of <emphasis>
3299    
3300    Also add <indexterm> entries for most of them, to make their definitions
3301    or introductions easy to find from the index.
3302    
3303    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3304
3305commit 861f3087ee0f501362a67501f384c2ca4c7bfe73
3306Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3307Date:   Thu Jul 10 20:00:53 2014 -0700
3308
3309    specs/XKB: Manual fixup of type markup
3310    
3311    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3312
3313commit 6b96259dabe52701fd1bcaa0625b574180c4e769
3314Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3315Date:   Thu Jul 10 15:00:30 2014 -0700
3316
3317    specs/XKB: Manual fixup of parameter markup
3318    
3319    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3320
3321commit 5526dce6812a84102f556fdde8f2b52b21c8bcdc
3322Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3323Date:   Thu Jul 10 13:40:40 2014 -0700
3324
3325    specs/XKB: Manual fixup of struct name/field markup
3326    
3327    Handles typos that caused the scripts to miss matches, misnamed structs, etc.
3328    
3329    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3330
3331commit c36ee1a4db4e7876526190b8ab6b0da5867f76f7
3332Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3333Date:   Wed Jul 9 23:26:37 2014 -0700
3334
3335    specs/XKB: Manual fixup of symbol name markup
3336    
3337    Handles typos that caused the scripts to miss matches, misnamed masks, etc.
3338    
3339    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3340
3341commit eb1453a0c69606b8af96b90ddccf1b93a069fb35
3342Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3343Date:   Wed Jul 9 00:03:23 2014 -0700
3344
3345    specs/XKB: Manual fixup of function name markup
3346    
3347    Handles typos that caused the scripts to miss matches, functions like
3348    malloc & free from other libraries, function name patterns, etc.
3349    
3350    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3351
3352commit 252d99c87b60ac6f3f2b36f292f9b3880daabe26
3353Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3354Date:   Thu Jul 10 19:42:31 2014 -0700
3355
3356    specs/XKB: Markup protocol requests as <systemitem> instead of <emphasis>
3357    
3358    No great fit in DocBook, so follow what we used in Xlib spec.
3359    
3360    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3361
3362commit ed60df10aad15057577d5714c955d22d2a446e51
3363Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3364Date:   Thu Jul 10 15:45:57 2014 -0700
3365
3366    specs/XKB: Markup keyboard keys as <keycap> instead of <emphasis>
3367    
3368    Also uses <guilabel> for LED names/labels, for lack of a better fit
3369    in DocBook.
3370    
3371    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3372
3373commit f57b91ee497414083cc1bf481d28eb9ad9f965fb
3374Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3375Date:   Thu Jul 10 15:41:19 2014 -0700
3376
3377    specs/XKB: Markup characters & strings as <literal> instead of <emphasis>
3378    
3379    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3380
3381commit cfd4279c9b59d7e87c9f7c67692c87973adb7667
3382Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3383Date:   Thu Jul 10 11:08:14 2014 -0700
3384
3385    specs/XKB: Markup structs as <struct{name,field}> instead of <emphasis>
3386    
3387    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3388
3389commit a014bb4cc013b0d1b76524b7868e860c7e7ebc79
3390Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3391Date:   Wed Jul 9 23:30:54 2014 -0700
3392
3393    specs/XKB: Markup symbol names in table entries too
3394    
3395    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3396
3397commit 907f7ad7a7a977bf4f19daa3143d47c4d07ca33d
3398Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3399Date:   Tue Jul 8 23:35:48 2014 -0700
3400
3401    specs/XKB: Markup *Ptr as <type> instead of <emphasis>
3402    
3403    perl -i -p -e 's{<emphasis>(\w*Ptr)</emphasis>}{<type>\1</type>}g' *xml
3404    
3405    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3406
3407commit 9f6c00629fd4b713082cc11f9150f7aafd272c89
3408Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3409Date:   Tue Jul 8 23:34:29 2014 -0700
3410
3411    specs/XKB: Markup *Rec as <structname> instead of <emphasis>
3412    
3413    perl -i -p -e \
3414     's{<emphasis>(\w*Rec)</emphasis>}{<structname>\1</structname>}g' *xml
3415    
3416    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3417
3418commit 83839e37802b8b752c77859a95de60ad757feb79
3419Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3420Date:   Tue Jul 8 23:29:49 2014 -0700
3421
3422    specs/XKB: Markup XKB macros as <symbol> instead of <emphasis>
3423    
3424    Performed via:
3425     perl -n -e 'printf "s{<emphasis>\\s*%s\\s*</emphasis>}{<symbol>%s</symbol>};\n", $1, $1 if m{^#define\s+([^\s\(]*)}' \
3426      /usr/include/X11/extensions/XK*h /usr/include/X11/XKBlib.h \
3427      | sort -u > xkb-defines.pl
3428     perl -i -p -f xkb-defines.pl *.xml
3429    
3430    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3431
3432commit 9e397ed37ce4cc70621de347de3a795df88d4506
3433Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3434Date:   Tue Jul 8 22:53:12 2014 -0700
3435
3436    specs/XKB: Use ° instead of o for degrees.
3437    
3438    Conversion from framemaker turned superscripted "o" into plain "o".
3439    
3440    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3441
3442commit 3b8364c21f5119105a2c14ae8cc75a11494cb7a7
3443Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3444Date:   Tue Jul 8 22:46:03 2014 -0700
3445
3446    specs/XKB: Markup keysyms as <keysym> instead of <emphasis>
3447    
3448    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3449
3450commit 33bef065683c8f910f3722730503c0c0699ee8be
3451Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3452Date:   Tue Jul 8 22:26:56 2014 -0700
3453
3454    specs/XKB: Markup NULL as <symbol> instead of <emphasis>
3455    
3456    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3457
3458commit f10aa1e09468bd28454d85ac8ab55d9dc7178029
3459Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3460Date:   Tue Jul 8 22:22:29 2014 -0700
3461
3462    specs/XKB: Markup function args as <parameter> instead of <emphasis>
3463    
3464    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3465
3466commit 79ba58cceb69521fcb313c69233cf93a9fcb177f
3467Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3468Date:   Mon Jul 7 23:56:13 2014 -0700
3469
3470    specs/XKB: Convert remaining error names to errorname tags
3471    
3472    Most were caught by applying libX11 lists, but BadKeyboard & XKB*_Bad*
3473    are XKB-specific.   (Plus some were badly split across tag boundaries.)
3474    
3475    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3476
3477commit 42b2f5388c399949ece377f9cc9c479c06964972
3478Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3479Date:   Mon Jul 7 23:16:56 2014 -0700
3480
3481    specs/XKB: manually fixup some more emphasis tagging mismatches
3482    
3483    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3484
3485commit 3b2f47d44a55d93c65455ff183f3b47da04b1de1
3486Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3487Date:   Mon Jul 7 23:02:31 2014 -0700
3488
3489    specs/XKB: re-normalize <emphasis> layout in xml files
3490    
3491    Same script as before, just with <!-- xref --> comments out of the way
3492    now.
3493    
3494    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3495
3496commit ce95f152eda509263874c53fb7c6b4a6bdab2c29
3497Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3498Date:   Mon Jul 7 22:59:25 2014 -0700
3499
3500    specs/XKB: Remove remaining xref comments
3501    
3502    All the places marked by these have been turned into the appropriate
3503    link, xref, or olink tags now.
3504    
3505    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3506
3507commit 6590b66e19af8dff68888ac403ac82f5d585b4e2
3508Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3509Date:   Mon Jul 7 22:56:36 2014 -0700
3510
3511    specs/XKB: make olinks to xkbproto for references in section 10.13
3512    
3513    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3514
3515commit fcda446877a62e7443d7bc704ba3610e90d1e755
3516Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3517Date:   Mon Jul 7 22:22:28 2014 -0700
3518
3519    specs/XKB: Add <figure> tags and make Figure references link to them
3520    
3521    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3522
3523commit 087a2338476719e340dc3d5af0df6fdc4a26ce7a
3524Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3525Date:   Mon Jul 7 21:30:01 2014 -0700
3526
3527    specs/XKB: Turn Table references into links
3528    
3529    Adds id attributes to all table tags so we can link to them
3530    
3531    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3532
3533commit 135fa07b74cb50172c6a75768d499cd87ddb336e
3534Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3535Date:   Sun Jul 6 21:29:59 2014 -0700
3536
3537    specs/XKB: Turn section references into xref links
3538    
3539    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3540
3541commit 53e931d79926af8a3996253efd8b5f6c21d9e5d7
3542Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3543Date:   Sun Jul 6 21:17:18 2014 -0700
3544
3545    specs/XKB: Turn Chapter references into xref links
3546    
3547    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3548
3549commit b7f00ce5bcb0c00696bb82503ab548e14f04d17d
3550Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3551Date:   Sun Jul 6 20:40:18 2014 -0700
3552
3553    specs/XKB: Apply <emphasis> to semantic tag transformations from Xlib spec
3554    
3555    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3556
3557commit b00a7ddff2744238fbfe31c2298b02028a45a6ff
3558Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3559Date:   Sun Jul 6 20:34:51 2014 -0700
3560
3561    specs/XKB: Markup function names as <function> instead of <emphasis>
3562    
3563    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3564
3565commit bfbb58b7679221cb5c9212665209ea9099ad079a
3566Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3567Date:   Sun Jul 6 20:25:46 2014 -0700
3568
3569    specs/XKB: normalize <emphasis> layout in xml files
3570    
3571    - Stop placing <emphasis> on empty space, commas, and periods.
3572    - Move periods & commas after closing </emphasis> tag
3573    - move <emphasis> open & close tags to same line, instead of mirroring
3574      nroff layout.
3575    
3576    Simplifies automating further transformations of these tags.
3577    
3578    Performed via:
3579     perl -i -0 -p \
3580        -e 's{<emphasis>(\s*)</emphasis>}{}msg;' \
3581        -e 's{<emphasis>([\s\.,]*)</emphasis>\s*}{\1}msg;' \
3582        -e 's{\n([\.,])\s*}{\1\n}msg;' \
3583        -e 's{([^\.])([\.,])\s*</emphasis>}{\1</emphasis>\2}msg;' \
3584        -e 's{\s*<emphasis>\n\s*}{\n<emphasis>}msg;' *xml
3585    
3586    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3587
3588commit b16ee69a0103109a661a88140a1765dcd7bda634
3589Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3590Date:   Sun Jul 6 15:57:41 2014 -0700
3591
3592    specs/XKB: Convert to funcsynopsis+variablelist instead of informaltable
3593    
3594    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3595
3596commit b41d43d4cf0c0a1a049a171ee8cf6fd8a3ee4335
3597Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3598Date:   Sun Jul 6 19:29:38 2014 -0700
3599
3600    specs/XKB: Add index
3601    
3602    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3603
3604commit 72ae1d793be078db521dda60af578ece71f364de
3605Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3606Date:   Sun Jul 6 13:21:40 2014 -0700
3607
3608    specs/XKB: Fix various markup issues in functiondecl tables
3609    
3610    - Merge some functionargdecl entries incorrectly split across rows
3611    - Add missing parameter name markup to some functionargdecls
3612    - Add missing function prototype markup to a functiondecl
3613    - Remove stray emphasis tags in a functiondecl
3614    
3615    Allows them to correctly convert to funcsynopsis markup in next step.
3616    
3617    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3618
3619commit 9fdb973012de80ac60dbc59c39162f4e839fc5a4
3620Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3621Date:   Sun Jul 6 12:15:23 2014 -0700
3622
3623    specs/XKB: Convert header filenames to filename tags
3624    
3625    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3626
3627commit 5525e8433f93bce464412f27cffa203ea628f368
3628Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3629Date:   Tue Jul 8 00:05:32 2014 -0700
3630
3631    specs/libX11: disengender a user reference
3632    
3633    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3634
3635commit d8679eae9317b389ad4acb0430360ee0663e2af8
3636Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3637Date:   Fri Jul 11 18:41:42 2014 -0700
3638
3639    specs/libX11: Correct value of IconicState to match Xutil.h
3640    
3641    Xutil.h has always had a value of 3 for IconicState, since 2 was
3642    previously used for the long-obsolete ZoomState, so make the spec
3643    match what programs have used for decades.
3644    
3645    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3646    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
3647
3648commit 7ce2b0f12a48fb832f457cbafb0e1144ef557f9a
3649Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3650Date:   Fri Jul 11 10:34:08 2014 -0700
3651
3652    Use C99 named initializers to fill in events passed to XSendEvent
3653    
3654    Forces compiler to zero-fill unset fields in the struct (fixing bug 81236)
3655    and allows optimizer to order field initialization to best fit cache layout
3656    or other considerations.
3657    
3658    Before & after output of gcc -S on AMD64 shows insertion of "rep stosq"
3659    instructions to rapidly zero-fill structs.
3660    
3661    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3662    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
3663
3664commit 169805e1dc8743b37b00e24cf3a5eb8748f733ad
3665Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3666Date:   Sun Jul 6 11:13:49 2014 -0700
3667
3668    Fix validation of ctrls parameter to XkbGetPerClientControls()
3669    
3670    Nothing in the XKB spec states that the memory pointed to by ctrls has to
3671    be initialized to any given value when passed to the function, only that
3672    it is set by the function to the values returned by the X server:
3673    http://www.x.org/releases/X11R7.7/doc/libX11/XKB/xkblib.html#The_Miscellaneous_Per_client_Controls
3674    
3675    The check for the incoming value seems to be copied from
3676    XkbSetPerClientControls without explanation.
3677    
3678    Instead change it to checking if ctrls is non-NULL, since there's no
3679    point asking the X server to return a value the caller won't even see.
3680    
3681    Found while investigating report from cppcheck-1.65:
3682    [src/xkb/XKB.c:699] -> [src/xkb/XKB.c:719]: (warning) Possible null pointer
3683     dereference: ctrls - otherwise it is redundant to check it against null.
3684    
3685    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3686
3687commit 1e362fac92c6688fb42b195ccad16d7a337a34c1
3688Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3689Date:   Sun Jul 6 10:54:57 2014 -0700
3690
3691    Fix map->num_types check in XkbAddKeyType()
3692    
3693    Check is intended to ensure we allocate at least XkbNumRequiredTypes
3694    in map, but was accidentally marked with a ! causing the wrong check.
3695    
3696    Reported-by: Harms <wharms@bfs,de>
3697    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
3698    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3699
3700commit ff9a5c199251a84fa59d14fd48dadb3f8920b54b
3701Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3702Date:   Sun Jul 6 15:08:21 2014 -0700
3703
3704    specs/libX11: Add missing spaces to 'unsignedint' & 'unsignedlong' types
3705    
3706    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3707
3708commit a06ea86773568926c36ae650b188fc818d540db7
3709Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3710Date:   Sun Jul 6 15:04:27 2014 -0700
3711
3712    specs/libX11: Fix height & width in parameter lists to be two separate entries
3713    
3714    "unsigned int width, unsigned int height", not a single parameter "height"
3715    of type "unsignedintwidth,".
3716    
3717    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3718
3719commit e4db5e503682b3304fe82e4b17b419a8e0f0a9f2
3720Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3721Date:   Sun Jul 6 14:38:10 2014 -0700
3722
3723    specs/libX11: Fix x & y in parameter lists to be two separate parameters
3724    
3725    "int x, int y" not a single parameter y of type "intx"
3726    
3727    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3728
3729commit aa8bda0db2c6d82515b90ceb4a7d6403e38895e9
3730Author: walter harms <wharms@bfs.de>
3731Date:   Sat Jun 7 12:03:17 2014 +0200
3732
3733    lcDefConv.c: fix use before check
3734    
3735    * Do not use variables before checked for NULL.
3736    * remove some superfluid spaces (Mark Kettenis)
3737    
3738    Signed-off-by: Harms <wharms@bfs,de>
3739    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3740    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3741
3742commit c0670e5d3ae330e611ecb05303d579a4f8a3d114
3743Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3744Date:   Mon Jun 16 15:16:10 2014 -0700
3745
3746    Start adding Unicode 7.0 support to compose table
3747    
3748    New characters defined in http://www.unicode.org/charts/PDF/U1F300.pdf
3749    
3750    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3751
3752commit a4679baaa18142576d42d423afe816447f08336c
3753Author: walter harms <wharms@bfs.de>
3754Date:   Sat Jun 7 11:54:34 2014 +0200
3755
3756    rm redundant null checks
3757    
3758    remove more redundant NULL checks
3759    note that _XkbFree() is really Xfree()
3760    
3761    Signed-off-by: Harms <wharms@bfs,de>
3762    Reviewed-by: Rémi Cardona <remi@gentoo.org>
3763    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
3764
3765commit 602d7f5030fe93b2fe7f29fb7310deb6f50cb6df
3766Author: walter harms <wharms@bfs.de>
3767Date:   Sat Jun 7 15:17:27 2014 +0200
3768
3769    libX11: rm redundante NULL checks
3770    
3771    This patch removes the last remaining  NULL checks for Xfree()
3772    
3773    Signed-off-by: Harms <wharms@bfs,de>
3774    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
3775    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
3776
3777commit d81fed46144d089bdfa1d916a28dffc9ebffe1e4
3778Author: walter harms <wharms@bfs.de>
3779Date:   Fri Jun 6 22:53:05 2014 +0200
3780
3781    Remove more redundant null checks before Xfree()
3782    
3783    Signed-off-by: Harms <wharms@bfs,de>
3784    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3785    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3786
3787commit 0b7fd7dbec136bae317bd9a329309eaa089beee3
3788Author: walter harms <wharms@bfs.de>
3789Date:   Thu Jun 5 18:37:40 2014 +0200
3790
3791    Remove redundant null checks before free
3792    
3793    This patch removes some redundant null checks before free.
3794    It should not change the code otherwise. Be aware that this
3795    is only the first series.
3796    
3797    Signed-off-by: Harms <wharms@bfs,de>
3798    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3799    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3800
3801commit 7d452fad5068ba92b964e92bc46708046f4044aa
3802Author: walter harms <wharms@bfs.de>
3803Date:   Wed Jun 4 17:12:31 2014 +0200
3804
3805    libX11/lcUTF8.c fix: dereferenced before check
3806    
3807    * Do not use variables before checked for NULL.
3808    
3809    Signed-off-by: Harms <wharms@bfs,de>
3810    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3811    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3812
3813commit a3808f51517a720e7ff738208af60865779dd6ef
3814Author: walter harms <wharms@bfs.de>
3815Date:   Wed Jun 4 17:10:20 2014 +0200
3816
3817    libX11/XKBNames.c fix: dereferenced before check
3818    
3819    * Do not use variables before checked for NULL.
3820    
3821    Signed-off-by: Harms <wharms@bfs,de>
3822    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3823    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3824
3825commit b3c9f6a17e430aabe16aecbe097f7312a0f6ff78
3826Author: walter harms <wharms@bfs.de>
3827Date:   Wed Jun 4 17:08:12 2014 +0200
3828
3829    libX11/lcGenConv.c fix: dereferenced before check
3830    
3831    * Do not use variables before checked for NULL.
3832    
3833    Signed-off-by: Harms <wharms@bfs,de>
3834    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3835    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3836
3837commit c6bc28d433243c32b3f74955f1478451b4fd27b5
3838Author: Andreas Schwab <schwab@linux-m68k.org>
3839Date:   Sun Jan 19 16:59:13 2014 +0100
3840
3841    Restore lost tabs in sed commands
3842    
3843    Signed-off-by: Andreas Schwab <schwab@linux-m68k.org>
3844    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3845
3846commit e3dc0d17339e61eaf0b51b8907510984e3bf23cb
3847Author: Benno Schulenberg <bensberg@justemail.net>
3848Date:   Thu Sep 19 11:01:11 2013 +0200
3849
3850    nls: Transform Brazilian compose file to an include plus three overrides.
3851    
3852    Signed-off-by: James Cloos <cloos@jhcloos.com>
3853
3854commit 16c87dda4da2271aaecc5d8b6fe6ecd072cc584c
3855Author: Benno Schulenberg <bensberg@justemail.net>
3856Date:   Fri Sep 6 12:10:01 2013 +0200
3857
3858    nls: Adding the missing compose sequences with <comma> for O with ogonek.
3859    
3860    All other vowels with ogoneks can already be composed using <comma>.
3861    
3862    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
3863    Signed-off-by: James Cloos <cloos@jhcloos.com>
3864
3865commit 655b60f48376069750b151c46da836fdd411c83b
3866Author: Benno Schulenberg <bensberg@justemail.net>
3867Date:   Fri Sep 6 12:04:24 2013 +0200
3868
3869    nls: Adding the missing postfix sequences for composing vowels with ogoneks.
3870    
3871    It existed for lowercase i, but not for uppercase I nor the other vowels.
3872    
3873    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
3874    Signed-off-by: James Cloos <cloos@jhcloos.com>
3875
3876commit 7f8f9a36ef901f31279c385caf960a22daeb33fe
3877Author: Owen W. Taylor <otaylor@fishsoup.net>
3878Date:   Fri May 9 18:21:05 2014 -0400
3879
3880    Fix XNextRequest() after direct usage of XCB
3881    
3882    When XCB owns the X socket, dpy->request is not updated, so
3883    NextRequest() and XNextRequest() return the wrong value. There's
3884    nothing we can do to fix NextRequest() while retaining ABI compat,
3885    but change XNextRequest() to grab the socket back from XCB,
3886    updating dpy->request.
3887    
3888    Signed-off-by: Owen W. Taylor <otaylor@fishsoup.net>
3889    Reviewed-by: Uli Schlachter <psychon@znc.in>
3890    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3891
3892commit 0f9e734ea96556fe750a4baf354d42d5a87bcd14
3893Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3894Date:   Sun May 4 11:54:59 2014 -0700
3895
3896    Add missing .TE tags to end tables in Xkb man pages
3897    
3898    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3899
3900commit 280274e5292e013b43e552274111fab434f5ed4e
3901Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3902Date:   Sun May 4 11:23:17 2014 -0700
3903
3904    XCreateGC.man: simplify table to work with Solaris tbl
3905    
3906    Having every table cell be a text diversion (T{...T}) was too much for
3907    Solaris tbl to handle, and thus "man XCreateGC" would print the error
3908    /usr/man/man3x11/XCreateGC.3x11: line 402: Too many text block diversions
3909    tbl quits
3910    and not display the table of mask bits or any text in the man page after
3911    that table.   Since the #define column doesn't need special handling,
3912    making it not use text diversions brings the table under the tbl limit.
3913    
3914    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3915
3916commit 93bb325a54025dd15f4744abce54b358960420f9
3917Author: James Cloos <cloos@jhcloos.com>
3918Date:   Tue May 20 17:30:10 2014 -0400
3919
3920    Revert "nls: Adding compose sequences (with <parenleft> first) that GTK also has."
3921    
3922    Parenleft is already in use for sequences of the form <(> <letter> <)>
3923    to generate circled letters.
3924    
3925    Eg, <Multikey> <parenleft> <a> <parenright> generates ⓐ.
3926    
3927    This reverts commit f020235f4bd91fb6eade82f8c9f7b85a57981768.
3928    
3929    Signed-off-by: James Cloos <cloos@jhcloos.com>
3930
3931commit 060707851be918f2f507a26d17b016f764ddf2b4
3932Author: Benno Schulenberg <bensberg@justemail.net>
3933Date:   Fri Sep 6 11:42:59 2013 +0200
3934
3935    nls: Adding accessible compose sequences for Ș and Ț (with comma below).
3936    
3937    Compose sequences with <dead_belowcomma> exist, but very few keyboard
3938    layouts contain that symbol.  So a more usual character is needed to be
3939    able to easily compose Ș, ș, Ț and ț.  The semicolon is normally only
3940    used for composing letters with ogoneks -- but only vowels take ogoneks,
3941    so the character is free for consonants, and thus <semicolon> is used
3942    here to compose commas below.  It is somewhat fitting, because on most
3943    Romanian keyboards the Ș is placed on that key, and the Ț next to it.
3944    
3945    (Oh -- the more obvious sequences with <comma> were already taken for
3946    composing S and T with cedillas.)
3947    
3948    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
3949    Signed-off-by: James Cloos <cloos@jhcloos.com>
3950
3951commit ca435c2f753aa2961fb35ac448cdb2cc77112755
3952Author: Benno Schulenberg <bensberg@justemail.net>
3953Date:   Tue Sep 3 21:10:33 2013 +0200
3954
3955    nls: Ordering some compose sequences in a more customary way.
3956    
3957    The custom seems to be: pairing the ones that have only the sequence of
3958    two keys reversed, and putting the one with the diacritic first first.
3959    
3960    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
3961    Signed-off-by: James Cloos <cloos@jhcloos.com>
3962
3963commit f020235f4bd91fb6eade82f8c9f7b85a57981768
3964Author: Benno Schulenberg <bensberg@justemail.net>
3965Date:   Tue Sep 3 20:44:42 2013 +0200
3966
3967    nls: Adding compose sequences (with <parenleft> first) that GTK also has.
3968    
3969    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
3970    Signed-off-by: James Cloos <cloos@jhcloos.com>
3971
3972commit bda0b3b5bd19154206dc40166364e73d4b6b1374
3973Author: Benno Schulenberg <bensberg@justemail.net>
3974Date:   Tue Sep 3 11:14:16 2013 +0200
3975
3976    nls: Allowing Romanian Ă and ă to be composed also with lowercase <u>.
3977    
3978    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
3979    Signed-off-by: James Cloos <cloos@jhcloos.com>
3980
3981commit 8be4610939b833587954957f5963eb4191b43d19
3982Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3983Date:   Thu Mar 13 23:22:48 2014 -0700
3984
3985    Fix "follwing" typo in en_US.UTF-8/Compose comment
3986    
3987    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3988
3989commit 6f30e9034f29c3ae6ad7e617b3d5e903aa107b6a
3990Author: Reuben Thomas <rrt@sc3d.org>
3991Date:   Mon Jan 27 14:18:24 2014 +0000
3992
3993    en_US.UTF-8/Compose: Fix apparent copy-paste-o, changing capital to small A.
3994    
3995    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3996
3997commit d6bd988bc00494914b38b95ee5df77ac4f32f19f
3998Author: Peter Hutterer <peter.hutterer@who-t.net>
3999Date:   Mon Mar 3 12:38:48 2014 +1000
4000
4001    man: fix man page for XkbGetMap
4002    
4003    Returned structure must be freed with XkbFreeKeyboard().
4004    
4005    Reported-by: Morten Bøgeskov <mb@dbc.dk>
4006    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
4007
4008commit a6dcf2201a05adbff54122df05a1e6325936abb6
4009Author: Ran Benita <ran234@gmail.com>
4010Date:   Tue Feb 11 13:26:16 2014 +0200
4011
4012    Remove dead USE_OWN_COMPOSE-protected code
4013    
4014    The build doesn't provide any way to define this option. It also refers
4015    to files (imComp.h) and functions (e.g. XimCompInitTables(),
4016    XimCompProcessSym()) which are not found anywhere, and the ordinary
4017    Compose implementation in xim doesn't use any of it.
4018    
4019    Signed-off-by: Ran Benita <ran234@gmail.com>
4020    Reviewed-by: Julien Cristau <jcristau@debian.org>
4021    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4022
4023commit b64bee2ddb7b96f00713a8b8435f11ad9ac1c9e0
4024Author: Ran Benita <ran234@gmail.com>
4025Date:   Sun Feb 16 15:24:58 2014 +0200
4026
4027    nls: always use XCOMM instead of # for comments in Compose.pre files
4028    
4029    Lines starting with # are considered as preprocessor directives in the
4030    .pre files.
4031    
4032    Fixes warnings like:
4033    <stdin>:3:0: error: invalid preprocessing directive #Khmer
4034    
4035    Signed-off-by: Ran Benita <ran234@gmail.com>
4036    Signed-off-by: James Cloos <cloos@jhcloos.com>
4037
4038commit 470e2289a3ebc59c5a35e54e1adeb0f261d5bf88
4039Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4040Date:   Thu Feb 6 13:48:08 2014 -0800
4041
4042    Fix typos in Xrm.c comments
4043    
4044    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4045
4046commit aacf95dacc7c598e7297894580d4d655593813b2
4047Author: Marko Myllynen <myllynen@redhat.com>
4048Date:   Mon Jan 13 16:43:18 2014 +0200
4049
4050    Annotate Finnish Compose map with Unicode code points
4051    
4052    Scripted annotation, no functional changes.
4053    
4054    Signed-off-by: James Cloos <cloos@jhcloos.com>
4055
4056commit 20fdccd81b54678376d49e00edfebbbe94951f07
4057Author: Teemu Likonen <tlikonen@iki.fi>
4058Date:   Fri Jul 20 19:21:04 2012 +0300
4059
4060    Fix "RING ABOVE" key in the Finnish compose file
4061    
4062    The Finnish keyboard standard defines that <dead_abovering> <space> must
4063    insert the character U+02DA RING ABOVE. Currently the Finnish Compose
4064    file inserts U+00B0 DEGREE SIGN even though the line's comment says
4065    "RING ABOVE". This commit changes the character to U+02DA RING ABOVE.
4066    
4067    Signed-off-by: Teemu Likonen <tlikonen@iki.fi>
4068    Signed-off-by: James Cloos <cloos@jhcloos.com>
4069
4070commit 8757e2ac8e04f2932ff437127f3e2ae9ac20c1d7
4071Author: Ran Benita <ran234@gmail.com>
4072Date:   Wed Jan 29 02:11:47 2014 +0200
4073
4074    nls: remove duplicate 'ohorn' and 'uhorn' compose sequences
4075    
4076    Since <Ohorn> == <U01A0> and <ohorn> == <U01A1>, when translated to
4077    keysyms:
4078    
4079     #define XK_Ohorn                      0x10001a0  /* U+01A0 LATIN CAPITAL LETTER O WITH HORN */
4080     #define XK_ohorn                      0x10001a1  /* U+01A1 LATIN SMALL LETTER O WITH HORN */
4081    
4082    (and similarly for uhorn), there is no need to have both names. Remove
4083    the unicode literal ones.
4084    
4085    Signed-off-by: Ran Benita <ran234@gmail.com>
4086    Signed-off-by: James Cloos <cloos@jhcloos.com>
4087
4088commit b98998cb3bea7cb3005f2e9d5bc5332d14b1d5d3
4089Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4090Date:   Sat Jan 18 22:35:18 2014 -0800
4091
4092    Add RANDR 1.4 requests & events to XErrorDB
4093    
4094    Checked against randrproto.txt & randr.h
4095    
4096    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4097
4098commit 321392ded15a7ee9d177d4ebe8846336ba76741c
4099Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4100Date:   Fri Jan 3 20:04:33 2014 -0800
4101
4102    Remove unused ETEST & ESZTEST macros from XlibInt.c
4103    
4104    Left behind when 15e5eaf62897 removed support for building without XCB.
4105    
4106    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4107    Reviewed-by: Jasper St. Pierre <jstpierre@mecheye.net>
4108
4109commit 1ffc0c5503d4f419fdbc765243832a53491bf5bc
4110Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4111Date:   Thu Dec 26 09:26:13 2013 -0800
4112
4113    _XkbReadGeomOverlay: check for NULL first, then use pointer
4114    
4115    Flagged by cppcheck 1.62:
4116    [lib/libX11/src/xkb/XKBGeom.c:479] -> [lib/libX11/src/xkb/XKBGeom.c:480]:
4117     (warning) Possible null pointer dereference: row - otherwise it is
4118     redundant to check it against null.
4119    
4120    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4121
4122commit ddf5f130cc29bb3bf8b9c757dcbac31bc56e9379
4123Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4124Date:   Thu Dec 26 09:22:49 2013 -0800
4125
4126    XkbSelectEventDetails: remove unnecessary assignments
4127    
4128    clear & selectAll are set to 0 already a few lines earlier,
4129    affectWhich is set to XkbMapNotifyMask a few lines later.
4130    None are used between the other assignments and the removed ones.
4131    
4132    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4133
4134commit 3d69b0a83e62f8f6fbdd952fc49cdbdf8825e1e6
4135Author: Jon TURNEY <jon.turney@dronecode.org.uk>
4136Date:   Thu Oct 7 18:46:08 2010 +0100
4137
4138    Don't try so hard to find a matching font with the given encoding
4139    
4140    See http://sourceware.org/bugzilla/show_bug.cgi?id=10948
4141    
4142    Currently, if the locale is UTF-8, no CJK fonts are installed, and someone
4143    does XCreateFontSet() with a font name of "*", we end up asking the server
4144    to list the (non-existent) fonts 11 times for each CJK encoding, which can
4145    take a while.
4146    
4147    A * wildcard can match multiple components in a XLFD name in XListFonts(),
4148    so there's no need to try adding more than one to get a match.
4149    
4150    We do try once with a leading '*-' in case the fontname isn't a full
4151    well-formed XLFD name, maybe even that isn't needed?
4152    
4153    (See also http://invisible-island.net/xterm/xterm.faq.html#slow_menus)
4154    
4155    Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
4156    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4157
4158commit 7e163300735d4bcd3386b86eec112acdad139c59
4159Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4160Date:   Mon Dec 2 21:51:27 2013 -0800
4161
4162    unifdef -UISC
4163    
4164    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4165
4166commit 1e43c262d13cab2b759665f9f13bdedbc7afbfd4
4167Author: Benno Schulenberg <bensberg@justemail.net>
4168Date:   Thu Sep 19 13:20:05 2013 +0200
4169
4170    nls: Fix transposed locale identifier for Khmer.
4171    
4172    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
4173    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4174    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4175
4176commit 0e45f64766c0557c8e99a979c70ca6f55664dae7
4177Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4178Date:   Sat Nov 16 20:21:54 2013 -0800
4179
4180    Drop X_LOCALE fallback for OS'es without setlocale()
4181    
4182    C89 or bust!   This was documented as being needed for "only Lynx,
4183    Linux-libc5, OS/2" and has never been enabled in modular builds,
4184    since none of those platforms have had anyone step up to add support
4185    since the X11R7 conversion to autotools.
4186    
4187    Mostly performed with unifdef -UX_LOCALE, followed by removal of files
4188    left without any purpose, and manual cleanup of remaining references.
4189    
4190    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4191    Reviewed-by: Adam Jackson <ajax@redhat.com>
4192
4193commit 6cb02b166361200da35ba14f52cd9aaa493eb0ea
4194Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4195Date:   Wed Oct 23 10:37:53 2013 -0700
4196
4197    Xcms file parsing should not require the impossible to succeed
4198    
4199    The field2 helper function, to split lines from Xcms.txt files into
4200    two tab delimited fields, contained a check:
4201    
4202        if ((*pBuf != '\n') || (*pBuf != '\0')) {
4203            return(XcmsFailure);
4204    
4205    which would cause it to return failure unless *pBuf had a value that
4206    was simultaneously equal to both \n & \0, and no one wants to live in
4207    a world where that could ever be true.
4208    
4209    This has gone unnoticed since 1991, since this only caused lines
4210    in Xcms.txt that started with whitespace to be rejected, but now
4211    gcc -Wlogicalop has brought it to our attention, and
4212    https://bugs.freedesktop.org/show_bug.cgi?id=70803 was filed.
4213    
4214    Now that we see it, and cannot unsee it, we change it to use the
4215    same logic as the check at other points in this function, to return
4216    failure only if we hit \n or \0 before we find the first non-whitespace
4217    character, so that lines starting with whitespace will have the space
4218    skipped over to get to the color name to be defined.
4219    
4220    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4221    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
4222
4223commit 18a5278b008e9faa59b346fcab18a8d74b875fda
4224Author: Gaetan Nadon <memsize@videotron.ca>
4225Date:   Sat Sep 28 17:33:52 2013 -0400
4226
4227    makekeys: don't need to use target-specific CFLAGS
4228    
4229    It's the only thing built in that directory, so we can use AM_CFLAGS
4230    and AM_CPPFLAGS as usual.
4231    
4232    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4233    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
4234
4235commit 5dcb40f28d59587597d2ff6e6ac64c71cfe6ff7b
4236Author: James Cloos <cloos@jhcloos.com>
4237Date:   Tue Sep 17 12:50:42 2013 -0400
4238
4239    nls/en_US.UTF-8/Compose.pre: Fix typo.
4240    
4241    Fix typo added in 215ce6a67863, s/actute/acute/.
4242    
4243    Fixes bug #69476.  Reported by Jean Krohn.
4244    
4245    Signed-off-by: James Cloos <cloos@jhcloos.com>
4246
4247commit cb107760df33ffc8630677e66e2e50aa37950a5c
4248Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4249Date:   Sun Sep 8 18:37:01 2013 -0700
4250
4251    libX11 1.6.2
4252
4253commit 215ce6a67863de7acfd6dd3562b4fd97ef87b411
4254Author: Benno Schulenberg <bensberg@justemail.net>
4255Date:   Sun Sep 1 12:38:30 2013 +0200
4256
4257    nls: Adding more accessible compose sequences for J́ and j́.
4258    
4259    Few keyboards have an <acute> key, so this adds the much more
4260    accessible and usual compose sequences with <apostrophe>, ánd
4261    the most comfortable ones with <dead_acute>.
4262    
4263    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
4264    Signed-off-by: James Cloos <cloos@jhcloos.com>
4265
4266commit e9b14d10d0258bfcc273ff8bc84cd349dccda62c
4267Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4268Date:   Sat Aug 24 17:27:43 2013 -0700
4269
4270    Bug 68413 - [Bisected]Error in `xterm': realloc(): invalid next size
4271    
4272    Pass *new* size to realloc, not old size.
4273    
4274    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4275
4276commit c2b8e30790c21d6386767265263b3294ce1b1f9a
4277Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4278Date:   Fri Aug 16 21:04:02 2013 -0700
4279
4280    Stop checking for HAVE_DIX_CONFIG_H on the client side
4281    
4282    Leftover from when these XKB files were shared with the server sources
4283    and could be compiled in either the client or server, with the different
4284    autoconf config files in each.
4285    
4286    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4287
4288commit 84276609b2f0aec74fb464c428c7db5714b0fcfc
4289Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4290Date:   Fri Aug 16 18:27:28 2013 -0700
4291
4292    Rearrange some variable declarations & initializations in XKB
4293    
4294    Little things noticed during XKB restyling that seemed to make the
4295    code easier to read.
4296    
4297    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4298
4299commit b90b7e859cf45ec76921fa21bbfc1f3840d6e8d1
4300Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4301Date:   Sun Aug 11 13:29:33 2013 -0700
4302
4303    Reindent XKB code to X.Org standard style
4304    
4305    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4306
4307commit c0a0f78eb49c2e4ad956209de77475c85b9314ea
4308Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4309Date:   Fri Aug 16 18:14:14 2013 -0700
4310
4311    Fix overflow checks in _XkbReadKeySyms when key_sym_map is already created
4312    
4313    We were checking to make sure that the largest keysym value was within
4314    the range of the allocated buffer, but checking against different limits
4315    in the not-yet-allocated vs. the already-allocated branches.
4316    
4317    The check should be the same in both, and reflect the size used for the
4318    allocation, which is based on the maximum key code value, so we move it
4319    to be a common check, before we branch, instead of duplicating in each
4320    branch.
4321    
4322    map->key_sym_map is an array of XkbSymMapRec structs, [0..max_key_code]
4323    map->syms is the array for which num_syms is recorded, hence is not the
4324    right value to check for ensuring our key_sym_map accesses are in range.
4325    
4326    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4327    Reported-by: Barry Kauler <bkauler@gmail.com>
4328    Tested-by: Barry Kauler <bkauler@gmail.com>
4329
4330commit bea6cbd027973142fc64532274e1d16861b47190
4331Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4332Date:   Sun Aug 11 17:02:21 2013 -0700
4333
4334    Remove long unused src/udcInf.c
4335    
4336    I can find no record of what this file was for.  Neither the X11R6.8.2
4337    monolith Imakefile nor any modular release Makefile.am have ever built
4338    it and nothing else references it.
4339    
4340    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4341
4342commit bf3501e0395abe890acfea98fdd9f50a6966f118
4343Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4344Date:   Sun Aug 11 00:07:33 2013 -0700
4345
4346    Remove unnecessary casts of pointers to (char *) in calls to Xfree()
4347    
4348    Left one cast behind that is necessary to change from const char *
4349    to char * in src/xlibi18n/lcCharSet.c.
4350    
4351    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4352
4353commit 6ead9dd92ab90aabd9f0e328d59597e6b5bc09d3
4354Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4355Date:   Sat Aug 10 23:57:55 2013 -0700
4356
4357    Don't cast sizeof() results to unsigned when passing to Xmalloc/Xcalloc
4358    
4359    sizeof() returns size_t, malloc() & calloc() expect sizes in size_t,
4360    don't strip down to unsigned int and re-expand unnecessarily.
4361    
4362    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4363
4364commit 25a7a329def672fc8d26078538173777850c6390
4365Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4366Date:   Sat Aug 10 23:51:08 2013 -0700
4367
4368    Remove even more casts of return values from Xmalloc/Xrealloc
4369    
4370    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4371
4372commit f8fa16092a148b74ca35b4beb182053352606f2f
4373Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4374Date:   Sat Aug 10 23:05:13 2013 -0700
4375
4376    xlibi18n: fix argsize argument to _XlcParsePath
4377    
4378    The array is defined as having NUM_LOCALEDIR entries, so use that
4379    instead of hardcoded 256 value (the other two calls already did this).
4380    
4381    Reported by parfait:
4382       Buffer overflow (CWE 120): In pointer dereference of argv[argc] with index argc
4383          Pointer size is 64 elements (of 8 bytes each), index is 255
4384            at line 82 of src/xlibi18n/lcFile.c in function 'parse_line'.
4385            called at line 178 in function '_XlcParsePath' with argv = argv.
4386            called at line 722 in function '_XlcLocaleLibDirName' with argv = args, argsize = 256.
4387            at line 82 of src/xlibi18n/lcFile.c in function 'parse_line'.
4388            called at line 178 in function '_XlcParsePath' with argv = argv.
4389            called at line 638 in function '_XlcLocaleDirName' with argv = args, argsize = 256.
4390    
4391    [ This bug was found by the Parfait 1.2.0 bug checking tool.
4392      http://labs.oracle.com/pls/apex/f?p=labs:49:::::P49_PROJECT_ID:13 ]
4393    
4394    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4395
4396commit e7d46c6452c0b90fd66ae9f538546b968e0dd608
4397Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4398Date:   Sat Aug 10 22:32:42 2013 -0700
4399
4400    i18n modules: Fix some const cast warnings
4401    
4402    imRm.c: In function '_XimSetICMode':
4403    imRm.c:2419:37: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
4404    imRm.c:2420:30: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
4405    
4406    lcGenConv.c: In function 'byteM_parse_codeset':
4407    lcGenConv.c:345:13: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
4408    
4409    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4410
4411commit cbd86eccf175dc82a5cbcea54c8bd21ce18b70c0
4412Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4413Date:   Sat Aug 10 22:21:54 2013 -0700
4414
4415    xlibi18n: Fix a bunch of const cast warnings
4416    
4417    Add const qualifiers to casts where needed, remove other casts that
4418    are no longer needed.
4419    
4420    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4421
4422commit eb3676113fc2dd0f34d92b89beb81b3f61569aa1
4423Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4424Date:   Sat Aug 10 22:18:00 2013 -0700
4425
4426    Fix const handling in XSetLocaleModifiers
4427    
4428    Instead of reusing the input parameter to store the output, make a
4429    result variable instead, so that there's less const confusion.
4430    
4431    Fixes gcc warnings:
4432    lcWrap.c: In function 'XSetLocaleModifiers':
4433    lcWrap.c:87:18: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
4434    lcWrap.c:91:25: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
4435    lcWrap.c:93:12: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
4436    
4437    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4438
4439commit 8ebbffa98563960910152e4f2e31cb032375d871
4440Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4441Date:   Sat Aug 10 21:46:37 2013 -0700
4442
4443    Constify lc_name argument to _XlcLocaleDirName() & _XlcLocaleLibDirName()
4444    
4445    Makes code considerably less crufty and clears gcc warnings:
4446    XlcDL.c: In function '_XlcDynamicLoad':
4447    XlcDL.c:384:44: warning: cast discards '__attribute__((const))' qualifier
4448     from pointer target type [-Wcast-qual]
4449    XlcDL.c:386:51: warning: cast discards '__attribute__((const))' qualifier
4450     from pointer target type [-Wcast-qual]
4451    
4452    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4453
4454commit 07e4e864107b38c2f393564fdacc90f4e858f23f
4455Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4456Date:   Sat Aug 10 13:37:53 2013 -0700
4457
4458    init_om: remove unneeded extra copy of string to local buffer
4459    
4460    Strings from the supported_charset_list[] were being copied one by
4461    one to a stack buffer, and then strdup called on that buffer.
4462    
4463    Instead, just strdup the original string, without the local copy,
4464    and use a more traditional for loop, so it's easier to figure out
4465    what the code is doing (cleaning up a gcc const-cast warning in
4466    the process).
4467    
4468    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4469    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
4470
4471commit 1cec14dad904ba21a861f4af131be5982ecb83dd
4472Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4473Date:   Sat Aug 10 12:34:53 2013 -0700
4474
4475    Delete unused XKB_INSURE_SIZE macro from XKBlibint.h
4476    
4477    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4478    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
4479
4480commit 5f32182c7c4045540ff3833c48ee24a3a25726e2
4481Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4482Date:   Sat Aug 10 12:19:17 2013 -0700
4483
4484    miRegionOp(): ensure region size is not updated if realloc fails
4485    
4486    This function performs operations on a region, and when finished,
4487    checks to see if it should compact the rectangle list.  If the
4488    number of rectangles for which memory is allocated in the list is
4489    more than twice the number used, it tries to shrink.   realloc()
4490    should not fail in this case, but if it does, might as well keep
4491    the correct value for the number of allocated rectangles, so we
4492    don't try to grow it unnecessarily later if adding to the region.
4493    
4494    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4495
4496commit bd2a0b5a187798bb2e2f05dc5062ca79e37075dd
4497Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4498Date:   Sat Aug 10 12:19:17 2013 -0700
4499
4500    miRegionCopy(): handle realloc failure better
4501    
4502    Zero out the region size when freeing the region so callers don't think
4503    there's anything there.   (Pointer is already set to NULL from the realloc
4504    result itself.)  Return 0 to the callers, and have them cascade that back
4505    to their callers to indicate failure, instead of their usual return value
4506    of 1 on success.
4507    
4508    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4509
4510commit 5dc8b5385d513bbda88697c2372db750d23f46d4
4511Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4512Date:   Sat Aug 10 11:27:22 2013 -0700
4513
4514    Avoid memory leak/corruption if realloc fails in Xregion.h:MEMCHECK macro
4515    
4516    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4517
4518commit 453c4ee436ef32d91501d7736d7a91c1aeafc565
4519Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4520Date:   Sat Aug 10 12:07:51 2013 -0700
4521
4522    Avoid memory leak/corruption if realloc fails in imLcPrs.c:parseline()
4523    
4524    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4525
4526commit b3fea74ec5b7d4f83755a52a8d49c564b71c6d12
4527Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4528Date:   Sat Aug 10 12:30:39 2013 -0700
4529
4530    lcDB.c: ensure buffer size is updated correctly if realloc fails
4531    
4532    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4533
4534commit 43bb822c714a73c3b2d15e621ffb3333cd10da8c
4535Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4536Date:   Sat Aug 10 11:07:47 2013 -0700
4537
4538    Avoid memory leak/corruption if realloc fails in XlcDL.c:resolve_object()
4539    
4540    Previously, if realloc failed to increase the size, we'd still
4541    record that we had allocated the larger size, but the pointer
4542    to it would be NULL, causing future calls to be broken, and the
4543    previous allocation to be lost/leaked.
4544    
4545    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4546    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
4547
4548commit 5d47a39978e92bb34ec928b1b15d71c0c2434870
4549Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4550Date:   Fri Aug 9 23:33:03 2013 -0700
4551
4552    omGeneric.c: convert sprintf calls to snprintf
4553    
4554    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4555    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
4556
4557commit 88a27a2aa9b7d35cb79b16334ea3413e572b724a
4558Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4559Date:   Fri Aug 9 23:30:30 2013 -0700
4560
4561    ximcp/imRm.c: convert sprintf calls to snprintf
4562    
4563    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4564    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
4565
4566commit 4fadae243fb485628c9a137f5da3489ed6214b21
4567Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4568Date:   Fri Aug 9 23:02:12 2013 -0700
4569
4570    xlibi18n: convert sprintf calls to snprintf
4571    
4572    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4573    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
4574
4575commit 36a7edf0e5edfc5ef4ff2c3a8b4fa3dc4796e854
4576Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4577Date:   Fri Aug 9 23:02:12 2013 -0700
4578
4579    lcfile: skip over any null entries in args list
4580    
4581    Previous code seemed to assume that printf("%s", NULL) would result
4582    in a 0-length string, not "(null)" or similar, but since there's no
4583    point looking for files in "(null)/filepath...", instead we just
4584    skip over NULL entries in search paths when generating file names.
4585    
4586    In the *DirName() functions, this effectively just moves the "bail on
4587    NULL in arg[i]" check up from the later code that assigned it to targetdir
4588    and then bailed if that was NULL.
4589    
4590    Not sure how there ever could be a NULL in arg[i], given the current
4591    implementation of XlcParsePath, but it's easy enough to check once and
4592    reject up front instead of on every reference.
4593    
4594    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4595
4596commit ee0824f24392d5ca3d5fd5f5ed8d78c0d892f7c0
4597Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4598Date:   Fri Aug 9 22:00:09 2013 -0700
4599
4600    Fix file leak on malloc error in XlcDL.c:resolve_object()
4601    
4602    File Leak: Leaked File fp
4603       at line 219 of lib/libX11/src/xlibi18n/XlcDL.c in function 'resolve_object'.
4604          fp initialized at line 198 with fopen
4605    
4606    [ This bug was found by the Parfait 1.2.0 bug checking tool.
4607      http://labs.oracle.com/pls/apex/f?p=labs:49:::::P49_PROJECT_ID:13 ]
4608    
4609    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4610    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
4611
4612commit 9b291044a240e5b9b031ed814e0c84e53a1c3084
4613Author: Julien Cristau <jcristau@debian.org>
4614Date:   Sat Jun 15 18:02:21 2013 +0200
4615
4616    Add missing locales to configure.ac
4617    
4618    Commits 40761898692e5063957bfa2518cca3d35b2e354a and
4619    f198c6aa98f88ff285d903175a3c4c0fd33a4575 added two new locales
4620    (sr_CS.UTF-8 and km_KH.UTF-8), but didn't list them in configure.ac,
4621    meaning they're not included in tarballs.
4622    
4623    Signed-off-by: Julien Cristau <jcristau@debian.org>
4624    Reviewed-by: James Cloos <cloos@jhcloos.com>
4625
4626commit 8f58e54a5f46c3cd4897a23b89950f4800ae38d4
4627Author: ISHIKAWA,chiaki <ishikawa@yk.rim.or.jp>
4628Date:   Tue Dec 18 15:28:05 2012 +0000
4629
4630    Fix bogus timestamp generated by XIM
4631    
4632    Fix bogus timestamp generted by XIM due to uninitialized
4633    data field. Also set appropriate serial, too.
4634    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=39367
4635    
4636    Signed-off-by: Chiaki ISHIKAWA <ishikawa@yk.rim.or.jp>
4637    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4638
4639commit e7fd6f0eda57300df4d6b695b7064610ca5dec57
4640Author: Egbert Eich <eich@freedesktop.org>
4641Date:   Thu Jun 16 18:47:49 2011 +0200
4642
4643    XIM: Fix sync problem on focus change.
4644    
4645    XSetICFocus() and XUnsetICFocus() are both asynchronous events.
4646    This is a pretty stupid idea: those functions may undo certain
4647    settings on the client side for which requests from the server
4648    may still be in the queue unprocessed. Thus things may be set
4649    in the wrong order ie instead of set -> unest it will be unset -> set.
4650    Moreover there is no way for either the client or the server to
4651    cause the event queue to be flushed - which is pretty bad as
4652    XIM is bidirectional.
4653    The scenario is as follows:
4654    Two ICs are created:
4655            ic1 = XCreateIC(im,
4656                XNInputStyle, XIMPreeditCallbacks | XIMStatusCallbacks,
4657                XNClientWindow, window,
4658                XNPreeditAttributes, preedit_attr,
4659                XNStatusAttributes, status_attr,
4660                NULL);
4661            ic2 = XCreateIC(im, XNInputStyle,
4662                           XIMPreeditNothing | XIMStatusNothing,
4663                           XNClientWindow, window, NULL);
4664    Then the focus is removed from ic2:
4665            XUnsetICFocus(ic2);
4666    If SCIM is used as the input server it will send a bunch of requests
4667    following an XCreateIC(). One of the requests registers a key release
4668    filter. XUnsetICFocus() unsets both key press and release filters.
4669    Since it is asynchronous, the input server requests to register key
4670    press and release filters may not have been processed, when XUnsetICFocus()
4671    is called. Since there is no explicite way for client programs to enforce
4672    the request queue to be flushed explicitely before an X[Set/Unset]ICFocus()
4673    call it would be safest to make those two calls synchronous in the sense
4674    that they ensure the request queue has been handled before they execute.
4675    The easiest way to do this from Xlib is thru a call to XGetICValues()
4676    which sends a request to the server and subsequently reads the queue
4677    from the server to the client. This will cause all outstanding requests
4678    in the queue to be read and handled.
4679    This is an ugly hack and this could be fixed directly in the client,
4680    however it seems to be easier to fix Xlib than to fix numerous clients.
4681    This problem arose since there is no well documented way how to handle
4682    and synchronize XIM requests and not all input servers send requests
4683    when an IC is created.
4684    This has been discussed extensively in:
4685     https://bugzilla.novell.com/show_bug.cgi?id=221326
4686    
4687    Signed-off-by: Egbert Eich <eich@freedesktop.org>
4688
4689commit 26ec7d3821bc19debc73c8c3e42e6e33ef6f856e
4690Author: Egbert Eich <eich@freedesktop.org>
4691Date:   Thu Jun 16 17:28:39 2011 +0200
4692
4693    XIM: Fix race on focus change: set 'FABRICATED' only when keyev filters in place.
4694    
4695    When synthesized key events are sent on commit XIM sets the 'fabricated'
4696    flag so that the keypress handler knows that these were not real events.
4697    This also happens when committing due to the loss of focus. However in this
4698    case the keypress/release filters which consume and unset this flag are no
4699    longer in the filter chain.
4700    So the flag is erronously set when a real keyboard event is received after
4701    focus has been regained. So the first event is wrongly treated as a
4702    fabricated key in the keypress handler which will at the same time reset
4703    the flag so the second key event is treated correctly.
4704    This fix only sets the flag when at least one of the keyboard filters is in
4705    place.
4706    How to reproduce this bug: run scim, choose a Japanese input method start
4707    two instances of xterm: start typing in one xterm (this should pop up an
4708    IM window). Without comitting (hitting 'enter') move focus to the other
4709    xterm, then move focus back. Start typing again. The first character will
4710    be committed immediately without popping up an input window.
4711    With this fix this behavior is gone.
4712    
4713    See also: https://bugzilla.novell.com/show_bug.cgi?id=239698
4714    
4715    Signed-off-by: Egbert Eich <eich@freedesktop.org>
4716
4717commit 44f84223f5e2dd46883fcbd352af2798bfa9aeb6
4718Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4719Date:   Mon Jul 29 21:29:49 2013 -0700
4720
4721    libX11 1.6.1
4722    
4723    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4724
4725commit d19cfaca15826943d3c637ef7fa5db0a23d5feed
4726Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4727Date:   Sat Jul 27 12:19:00 2013 -0700
4728
4729    Fix undefined XCMSDIR error when building lint library
4730    
4731    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4732
4733commit 3083cd43d7dcd59da587975e7cadda681cd8a103
4734Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4735Date:   Sat Jul 27 00:36:08 2013 -0700
4736
4737    Add ku_TR.UTF-8 (Kurdish language, Turkey region) to compose/locale.dir
4738    
4739    Upstreaming from changes originally integrated into OpenSolaris
4740    under Sun bug id 6882572.
4741    
4742    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4743    Reviewed-by: Thomas Klausner <wiz@NetBSD.org>
4744
4745commit 208e586c808e88a2ee819e4450dc27f557afc2bf
4746Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4747Date:   Sat Jul 27 01:03:18 2013 -0700
4748
4749    omGeneric: remove space between struct name & member name
4750    
4751    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4752
4753commit 7db74514e454d3fc4ff70aa08ddac66bfffda4dd
4754Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4755Date:   Tue Jul 23 22:18:46 2013 -0700
4756
4757    Refactor common code from XAddHost & XRemoveHost into single function
4758    
4759    On the Xlib side, the only real difference is the mode flag we send
4760    to the server with the address, so just make that an argument to the
4761    function with the common code for packing the address into the request.
4762    
4763    (Aside from labels, gcc 4.7.2 generates identical code before & after
4764     this change due to inlining, verified via diff of gcc -S output.)
4765    
4766    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4767
4768commit 3292195a64a9ce4f0d27134cd544651ec647e728
4769Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4770Date:   Tue Jul 23 22:11:34 2013 -0700
4771
4772    XSetModifierMapping: Use Data instead of GetReqExtra
4773    
4774    Handle arbitrary length data in the same fashion as other calls,
4775    avoiding need to ensure it fits all in the request buffer.
4776    
4777    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4778
4779commit feb131b18aee31c2c125dc3275b0260940245882
4780Author: Kees Cook <kees@outflux.net>
4781Date:   Sun Jun 9 11:13:43 2013 -0700
4782
4783    libX11: check "req" when calling GetReqExtra
4784    
4785    This fixes the two callers of GetReqExtra to check that "req" is non-NULL
4786    to avoid crashing now that GetReqExtra does internal bounds-checking on
4787    the resulting buffer sizes.
4788    
4789    Additionally updates comment describing return values to use names
4790    instead of only literal values.
4791    
4792    Signed-off-by: Kees Cook <kees@outflux.net>
4793    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4794    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4795
4796commit 54540d7cba0c2bfe9176221c7bca910058d304df
4797Author: Kees Cook <kees@outflux.net>
4798Date:   Sun Jun 9 11:13:42 2013 -0700
4799
4800    libX11: check size of GetReqExtra after XFlush
4801    
4802    Two users of GetReqExtra pass arbitrarily sized allocations from the
4803    caller (ModMap and Host). Adjust _XGetRequest() (called by the GetReqExtra
4804    macro) to double-check the requested length and invalidate "req" when
4805    this happens. Users of GetReqExtra passing lengths greater than the Xlib
4806    buffer size (normally 16K) must check "req" and fail gracefully instead
4807    of crashing.
4808    
4809    Any callers of GetReqExtra that do not check "req" for NULL
4810    will experience this change, in the pathological case, as a NULL
4811    dereference instead of a buffer overflow. This is an improvement, but
4812    the documentation for GetReqExtra has been updated to reflect the need
4813    to check the value of "req" after the call.
4814    
4815    Bug that manifested the problem:
4816    https://bugs.launchpad.net/ubuntu/+source/x11-xserver-utils/+bug/792628
4817    
4818    Signed-off-by: Kees Cook <kees@outflux.net>
4819    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4820    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4821
4822commit 24d3ee0d08f24e23c91d55702f010f73d7b908e5
4823Author: Thomas Klausner <wiz@NetBSD.org>
4824Date:   Tue Jun 25 22:35:29 2013 +0200
4825
4826    Tighten out-of-range comparisons.
4827    
4828    [For all of these, LONG_MAX was the correct value to prevent overflows
4829     for the recent CVEs.   Lowering to INT_MAX catches buggy replies from
4830     the server that 32-bit clients would reject but 64-bit would accept,
4831     so we catch bugs sooner, and really, no sane & working server should
4832     ever report more than 2gb of extension names, font path entries,
4833     key modifier maps, etc.  -alan- ]
4834    
4835    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4836    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4837
4838commit 6d926088d80a08e13e6d6c4ff207b81ad52e667f
4839Author: Thomas Klausner <wiz@NetBSD.org>
4840Date:   Tue Jun 25 18:34:32 2013 +0200
4841
4842    Fix out-of-range comparison in _XF86BigfontQueryFont
4843    
4844    clang complained (correctly):
4845    warning: comparison of constant 768614336404564650 with expression
4846    of type 'CARD32' (aka 'unsigned int') is always true
4847    [-Wtautological-constant-out-of-range-compare]
4848    
4849    [While LONG_MAX is correct, since it's used in size_t math, the
4850     numbers have to be limited to 32-bit range to be usable by 32-bit
4851     clients, and values beyond that range are far more likely to be
4852     bugs in the data from the server than valid numbers of characters
4853     in a font.   -alan- ]
4854    
4855    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4856    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4857
4858commit 383e2b0d029482a0f4c39fe00e15397538576fc1
4859Author: Thomas Klausner <wiz@NetBSD.org>
4860Date:   Tue Jun 25 18:33:56 2013 +0200
4861
4862    Check for symbol existence with #ifdef, not #if
4863    
4864    Reviewed-by: Jamey Sharp <jamey@minilop.net>
4865    
4866    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4867
4868commit 9955d1c8de994a90fe7f2e3187e7362611d7d265
4869Author: Thomas Klausner <wiz@NetBSD.org>
4870Date:   Tue Jun 25 18:33:07 2013 +0200
4871
4872    Use newer callback-based API for XIM.
4873    
4874    Let libX11 load and make available the newer (X11R6) callback-based
4875    API for XIM (expected by emacs).
4876    
4877    This patch updates the files to match the other nls/ files.
4878    
4879    Patch from Ian D. Leroux <idleroux@fastmail.fm> on pkgsrc-users@NetBSD.org
4880    following a hint by Nhat Minh Lê <nhat.minh.le@gmail.com>.
4881    
4882    Reviewed-by: James Cloos <cloos@jhcloos.com>
4883    
4884    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4885
4886commit a17ceb7100bd36c2db210473ee701deb5d515731
4887Author: Thomas Klausner <wiz@NetBSD.org>
4888Date:   Tue Jun 25 18:31:32 2013 +0200
4889
4890    Stop truncating source to destination length if it is larger.
4891    
4892    It seems useless to do that since the code tests for both source
4893    length and destination to be non-zero. This fixes a cut'n'paste
4894    problem in xterm where the paste length was limited to 1024 (BUFSIZ)
4895    in button.c.
4896    
4897    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4898
4899commit a336db9a0add3ae0783dda6e52459236622a12af
4900Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4901Date:   Mon Jun 24 23:02:05 2013 -0700
4902
4903    Require ANSI C89 pre-processor, drop pre-C89 token pasting support
4904    
4905    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4906
4907commit 9dfb0f3c0a761590bcdc1f3396b1e064da4e18e8
4908Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4909Date:   Fri Jun 7 11:30:11 2013 -0700
4910
4911    troff macro expansion in specs/libX11
4912    
4913    Many of the custom nroff macros (.ds <macro> <contents>) were left
4914    unsubstituted in the nroff->docbook conversion.   This substitution
4915    is now performed, via the following perl script:
4916    
4917    #! /usr/bin/perl -w -i
4918    
4919    use Text::Wrap;
4920    
4921    while ($_ = <>) {
4922        while ($_ =~ m/\((\w+)\b/g) {
4923            my $m = $1;
4924            if (exists $macro{$m}) {
4925                $_ =~ s/\($m/$macro{$m}/;
4926                $_ = wrap('', '', $_);
4927                $_ =~ s/[ \t]+$//;
4928            }
4929        }
4930    
4931        if ($_ =~ /\<!-- .ds (\w+) (.*) -->/) {
4932            my ($m, $s) = ($1, $2);
4933            $macro{$m} = $s;
4934            while ($macro{$m} =~ /\\\s*$/) {
4935                $macro{$m} =~ s/\\\s*$//ms;
4936                $macro{$m} .= <>;
4937                chomp($macro{$m});
4938            }
4939            $macro{$m} =~ s/\\ / /g;
4940        } else {
4941            print $_;
4942        }
4943    }
4944    
4945    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4946
4947commit 20c17bd9ebf767a24643279e45866dddcb57b5ce
4948Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4949Date:   Fri Jun 7 09:27:26 2013 -0700
4950
4951    specs/libX11: correct prototype for XListPixmapFormats/XImageByteOrder
4952    
4953    The XListPixmapFormats arguments was being shown with XImageByteOrder's
4954    name and return types.   Appears to have been a glitch in the nroff ->
4955    docbook conversion.
4956    
4957    Reported-by: ZHANG Zhaolong <zhangzl2013@126.com>
4958    Reviewed-by: Jamey Sharp <jamey@minilop.net>
4959    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4960
4961commit ed3d830243c8a0eefaf24e15b11823272ffe5049
4962Author: Thomas Klausner <wiz@NetBSD.org>
4963Date:   Sun Jun 2 20:49:55 2013 +0200
4964
4965    Deal with the limited range of VAX floating point numbers when compiling for VAX.
4966    
4967    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4968
4969commit 0a48235d63639fb917c44d27c86e928e79fbac66
4970Author: Eric S. Raymond <esr@thyrsus.com>
4971Date:   Thu Jun 6 16:43:56 2013 -0400
4972
4973    Remove call to undefined macro.
4974
4975commit 9e4719b9b719f2f8d255f6778e2e8c1809e32599
4976Author: Eric S. Raymond <esr@thyrsus.com>
4977Date:   Thu Jun 6 16:42:20 2013 -0400
4978
4979    Remove call to undefined macro.
4980
4981commit 8496122eb00ce6cd5d2308ee54f64b68c378e455
4982Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4983Date:   Mon Jun 3 20:06:43 2013 -0700
4984
4985    Update README to reflect where to find the Xlib specs now
4986    
4987    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4988
4989commit 655d631e86c95b14888758b27ed2836ca3e3ce86
4990Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4991Date:   Mon Jun 3 19:21:06 2013 -0700
4992
4993    libX11 1.6.0
4994    
4995    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4996
4997commit 4a89b7ea908554628f374537a79931c8006a2de3
4998Author: Thomas Klausner <wiz@NetBSD.org>
4999Date:   Sun Jun 2 11:49:54 2013 -0700
5000
5001    cmsMath.c: Add missing stdio header for printf(3) in DEBUG build.
5002    
5003    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5004
5005commit 96dcf747f13b26b8e4d17b1bc8605d933c3e1dc6
5006Author: Thomas Klausner <wiz@NetBSD.org>
5007Date:   Sun Jun 2 20:49:48 2013 +0200
5008
5009    XCreateGC man page: Avoid .TS H and .TH macros
5010    
5011    Avoid .TS H and .TH for now as it doesn't alter the output in this case,
5012    and improve the output with mandoc(1).
5013    
5014    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5015
5016commit 95a388158c9d73df7d24016d6a3d61506d7d53a4
5017Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5018Date:   Thu May 23 19:43:35 2013 -0700
5019
5020    libX11 1.5.99.902 (1.6 RC2)
5021    
5022    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5023
5024commit a3bdd2b090915fe0163b062f0e6576fe05dd332e
5025Author: Julien Cristau <jcristau@debian.org>
5026Date:   Thu May 23 20:39:46 2013 +0200
5027
5028    xkb: fix off-by-one in _XkbReadGetNamesReply and _XkbReadVirtualModMap
5029    
5030    The size of the arrays is max_key_code + 1.  This makes these functions
5031    consistent with the other checks added for CVE-2013-1997.
5032    
5033    Also check the XkbGetNames reply when names->keys was just allocated.
5034    
5035    Signed-off-by: Julien Cristau <jcristau@debian.org>
5036    Tested-by: Colin Walters <walters@verbum.org>
5037    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5038
5039commit 7e30056e78e4b7979ff47f102e00327617266019
5040Author: Niveditha Rau <Niveditha.Rau@Oracle.COM>
5041Date:   Fri May 17 15:26:21 2013 -0700
5042
5043    Make sure internal headers include required headers
5044    
5045    Fixes builds with Solaris Studio 12.3 when lint is enabled, since it no
5046    longer ignores *.h files, but complains when they reference undefined
5047    typedefs or macros.
5048    
5049    Signed-off-by: Niveditha Rau <Niveditha.Rau@Oracle.COM>
5050    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5051
5052commit 2820100bf8ba130b94253f415e7fa5ac28bb2037
5053Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5054Date:   Thu May 16 23:05:36 2013 -0700
5055
5056    Free fs->properties in _XF86BigfontQueryFont overflow error path
5057    
5058    Fixes small memory leak introduced in commit 5669a22081
5059    
5060    Reported-by: Julien Cristau <jcristau@debian.org>
5061    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5062
5063commit 3131740513133a9ff7cb12123d29ceb18584fc38
5064Author: Matthieu Herrb <matthieu.herrb@laas.fr>
5065Date:   Wed May 8 19:33:09 2013 +0200
5066
5067    XListFontsWithInfo: Re-decrement flist[0] before calling free() on it.
5068    
5069    Freeing a pointer that wasn't returned by malloc() is undefined
5070    behavior and produces an error with OpenBSD's implementation.
5071    
5072    Signed-off-by: Matthieu Herrb <matthieu.herrb@laas.fr>
5073    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5074    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5075
5076commit 3fe4bea086149f06a142a8f1d575f627ec1e22c7
5077Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5078Date:   Fri Apr 19 14:30:40 2013 -0700
5079
5080    Give GNU & Solaris Studio compilers hints about XEatData branches
5081    
5082    Try to offset the cost of all the recent checks we've added by giving
5083    the compiler a hint that the branches that involve us eating data
5084    are less likely to be used than the ones that process it.
5085    
5086    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5087
5088commit e1b457beb8d4e831ef44279dada6c475cb955738
5089Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5090Date:   Sun Mar 31 12:22:35 2013 -0700
5091
5092    _XkbReadGetMapReply: reject maxKeyCodes smaller than the minKeyCode
5093    
5094    Various other bounds checks in the code assume this is true, so
5095    enforce it when we first get the data from the X server.
5096    
5097    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5098
5099commit 12ad4c6432496897ff000eb7cfecd0fb4b290331
5100Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5101Date:   Sat Mar 16 10:03:13 2013 -0700
5102
5103    Use calloc in XOpenDisplay to initialize structs containing pointers
5104    
5105    Prevents trying to free uninitialized pointers if we have to bail out
5106    partway through setup, such as if we receive a corrupted or incomplete
5107    connection setup block from the server.
5108    
5109    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5110
5111commit d38527e25f8b6e2f1174ecc21260c5c5416f972e
5112Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5113Date:   Thu Mar 7 23:46:05 2013 -0800
5114
5115    Remove more unnecessary casts from Xmalloc/calloc calls
5116    
5117    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5118
5119commit b2c86b582c58f50c7b14da01cf7ebd20ef12a6b2
5120Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5121Date:   Sat Mar 2 16:56:16 2013 -0800
5122
5123    Convert more _XEatData callers to _XEatDataWords
5124    
5125    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5126    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
5127
5128commit 192bbb9e2fc45df4e17b35b6d14ea0eb418dbd39
5129Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5130Date:   Sat Mar 9 11:04:37 2013 -0800
5131
5132    Make XGetWindowProperty() always initialize returned values
5133    
5134    Avoids memory corruption and other errors when callers access them
5135    without checking to see if XGetWindowProperty() returned an error value.
5136    
5137    Callers are still required to check for errors, this just reduces the
5138    damage when they don't.
5139    
5140    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
5141    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5142    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
5143
5144commit db1b1c871da29aa0545182bf888df81627f165a5
5145Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5146Date:   Sat Mar 2 15:08:21 2013 -0800
5147
5148    Avoid overflows in XListExtensions() [CVE-2013-1997 15/15]
5149    
5150    Ensure that when breaking the returned list into individual strings,
5151    we don't walk past the end of allocated memory to write the '\0' bytes
5152    
5153    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5154    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
5155
5156commit 8d5936594993921acdfec778dd8f41b555e2543a
5157Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5158Date:   Sat Mar 2 15:08:21 2013 -0800
5159
5160    Avoid overflows in XGetFontPath() [CVE-2013-1997 14/15]
5161    
5162    Ensure that when breaking the returned list into individual strings,
5163    we don't walk past the end of allocated memory to write the '\0' bytes
5164    
5165    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5166    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
5167
5168commit 0c404db6a92dc2c198328bf586c02d8abbe02013
5169Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5170Date:   Sat Mar 2 15:08:21 2013 -0800
5171
5172    Avoid overflows in XListFonts() [CVE-2013-1997 13/15]
5173    
5174    Ensure that when breaking the returned list into individual strings,
5175    we don't walk past the end of allocated memory to write the '\0' bytes
5176    
5177    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5178    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
5179
5180commit 0b0f5d4358c3de7563d6af03f0d2ce454702a06a
5181Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5182Date:   Sat Mar 2 15:08:21 2013 -0800
5183
5184    integer overflow in XGetModifierMapping() [CVE-2013-1981 13/13]
5185    
5186    Ensure that we don't underallocate when the server claims a very large reply
5187    
5188    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5189    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
5190
5191commit a351b8103b2ba78882e1c309e85893ca3abe2073
5192Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5193Date:   Sat Mar 2 15:08:21 2013 -0800
5194
5195    integer overflow in XGetPointerMapping() & XGetKeyboardMapping() [CVE-2013-1981 12/13]
5196    
5197    Ensure that we don't underallocate when the server claims a very large reply
5198    
5199    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5200    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
5201
5202commit 833f6b70bc789d33607f6dbfee9e0a4178ec4b59
5203Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5204Date:   Sat Mar 2 15:08:21 2013 -0800
5205
5206    integer overflow in XGetImage() [CVE-2013-1981 11/13]
5207    
5208    Ensure that we don't underallocate when the server claims to have sent a
5209    very large reply.
5210    
5211    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5212    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
5213
5214commit 79d8dc08eb98842173ce239b9dd60df0e9e9ae72
5215Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5216Date:   Fri Mar 8 22:25:35 2013 -0800
5217
5218    integer overflow in XGetWindowProperty() [CVE-2013-1981 10/13]
5219    
5220    If the reported number of properties is too large, the calculations
5221    to allocate memory for them may overflow, leaving us returning less
5222    memory to the caller than implied by the value written to *nitems.
5223    
5224    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
5225    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5226    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
5227
5228commit 164bf4dfe839b1cc75cdeee378a243d04a8200e4
5229Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5230Date:   Sat Mar 2 13:18:48 2013 -0800
5231
5232    integer overflows in TransFileName() [CVE-2013-1981 9/13]
5233    
5234    When trying to process file paths the tokens %H, %L, & %S are expanded
5235    to $HOME, the standard compose file path & the xlocaledir path.
5236    If enough of these tokens are repeated and values like $HOME are set to
5237    very large values, the calculation of the total string size required to
5238    hold the expanded path can overflow, resulting in allocating a smaller
5239    string than the amount of data we'll write to it.
5240    
5241    Simply restrict all of these values, and the total path size to PATH_MAX,
5242    because really, that's all you should need for a filename path.
5243    
5244    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
5245    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5246    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
5247
5248commit 460e8a223b87d4fa0ea1e97823e998a770e0f2a2
5249Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5250Date:   Fri Mar 1 18:37:37 2013 -0800
5251
5252    integer truncation in _XimParseStringFile() [CVE-2013-1981 8/13]
5253    
5254    Called from _XimCreateDefaultTree() which uses getenv("XCOMPOSEFILE")
5255    to specify filename.
5256    
5257    If the size of off_t is larger than the size of unsigned long (as in
5258    32-bit builds with large file flags), a file larger than 4 gigs could
5259    have its size truncated, leading to data from that file being written
5260    past the end of the undersized buffer allocated for it.
5261    
5262    While configure.ac does not use AC_SYS_LARGEFILE to set large file mode,
5263    builders may have added the large file compilation flags to CFLAGS on
5264    their own.
5265    
5266    size is left limited to an int, because if your Xim file is
5267    larger than 2gb, you're doing it wrong.
5268    
5269    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
5270    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5271    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
5272
5273commit 226622349a4b1e16064649d4444a34fb4be4f464
5274Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5275Date:   Sat Mar 2 12:39:58 2013 -0800
5276
5277    Unbounded recursion in _XimParseStringFile() when parsing include files [CVE-2013-2004 2/2]
5278    
5279    parseline() can call _XimParseStringFile() which can call parseline()
5280    which can call _XimParseStringFile() which can call parseline() ....
5281    eventually causing recursive stack overflow and crash.
5282    
5283    Limit is set to a include depth of 100 files, which should be enough
5284    for all known use cases, but could be adjusted later if necessary.
5285    
5286    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
5287    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5288    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
5289
5290commit 236b603d235dc264d1c6250dca09c745458a9088
5291Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5292Date:   Sat Mar 2 12:01:39 2013 -0800
5293
5294    Unbounded recursion in GetDatabase() when parsing include files [CVE-2013-2004 1/2]
5295    
5296    GetIncludeFile() can call GetDatabase() which can call GetIncludeFile()
5297    which can call GetDatabase() which can call GetIncludeFile() ....
5298    eventually causing recursive stack overflow and crash.
5299    
5300    Easily reproduced with a resource file that #includes itself.
5301    
5302    Limit is set to a include depth of 100 files, which should be enough
5303    for all known use cases, but could be adjusted later if necessary.
5304    
5305    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
5306    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5307    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
5308
5309commit 076428918e6c35f66b9b55c3fa097ff06496d155
5310Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5311Date:   Fri Mar 1 18:37:37 2013 -0800
5312
5313    integer overflow in ReadInFile() in Xrm.c [CVE-2013-1981 7/13]
5314    
5315    Called from XrmGetFileDatabase() which gets called from InitDefaults()
5316    which gets the filename from getenv ("XENVIRONMENT")
5317    
5318    If file is exactly 0xffffffff bytes long (or longer and truncates to
5319    0xffffffff, on implementations where off_t is larger than an int),
5320    then size may be set to a value which overflows causing less memory
5321    to be allocated than is written to by the following read() call.
5322    
5323    size is left limited to an int, because if your Xresources file is
5324    larger than 2gb, you're very definitely doing it wrong.
5325    
5326    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
5327    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5328    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
5329
5330commit 90fd5abac2faca86f9f100353a3c9c7b89f31484
5331Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5332Date:   Sat Mar 2 11:44:19 2013 -0800
5333
5334    Integer overflows in stringSectionSize() cause buffer overflow in ReadColornameDB() [CVE-2013-1981 6/13]
5335    
5336    LoadColornameDB() calls stringSectionSize() to do a first pass over the
5337    file (which may be provided by the user via XCMSDB environment variable)
5338    to determine how much memory needs to be allocated to read in the file,
5339    then allocates the returned sizes and calls ReadColornameDB() to load the
5340    data from the file into that newly allocated memory.
5341    
5342    If stringSectionSize() overflows the signed ints used to calculate the
5343    file size (say if you have an xcmsdb with ~4 billion lines in or a
5344    combined string length of ~4 gig - which while it may have been
5345    inconceivable when Xlib was written, is quite possible today), then
5346    LoadColornameDB() may allocate a memory buffer much smaller than the
5347    amount of data ReadColornameDB() will write to it.
5348    
5349    The total size is left limited to an int, because if your xcmsdb file
5350    is larger than 2gb, you're doing it wrong.
5351    
5352    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
5353    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5354    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
5355
5356commit b9ba832401734e1cbd30a930c0d11d850293f3f9
5357Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5358Date:   Sat Mar 2 11:25:25 2013 -0800
5359
5360    unvalidated length in _XimXGetReadData() [CVE-2013-1997 12/15]
5361    
5362    Check the provided buffer size against the amount of data we're going to
5363    write into it, not against the reported length from the ClientMessage.
5364    
5365    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
5366    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5367    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
5368
5369commit de2e6c322c4aca22856b380f67f8e488e7510015
5370Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5371Date:   Sat Mar 2 11:11:08 2013 -0800
5372
5373    unvalidated index/length in _XkbReadGetNamesReply() [CVE-2013-1997 11/15]
5374    
5375    If the X server returns key name indexes outside the range of the number
5376    of keys it told us to allocate, out of bounds memory writes could occur.
5377    
5378    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
5379    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5380    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
5381
5382commit 2df882eeb3a70256170127a746a9ba26376599a1
5383Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5384Date:   Sat Mar 2 11:01:04 2013 -0800
5385
5386    unvalidated index in _XkbReadVirtualModMap() [CVE-2013-1997 10/15]
5387    
5388    If the X server returns modifier map indexes outside the range of the number
5389    of keys it told us to allocate, out of bounds memory writes could occur.
5390    
5391    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
5392    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5393    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
5394
5395commit 4d7c422a37eb9617fb22f8e37527c2b34b105665
5396Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5397Date:   Sat Mar 2 11:04:44 2013 -0800
5398
5399    unvalidated index in _XkbReadExplicitComponents() [CVE-2013-1997 9/15]
5400    
5401    If the X server returns key indexes outside the range of the number of
5402    keys it told us to allocate, out of bounds memory writes could occur.
5403    
5404    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
5405    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5406    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
5407
5408commit e56a2ada719c5cfac5ed61a52a80ade86c0f5957
5409Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5410Date:   Sat Mar 2 10:51:51 2013 -0800
5411
5412    unvalidated index in _XkbReadModifierMap() [CVE-2013-1997 8/15]
5413    
5414    If the X server returns modifier map indexes outside the range of the number
5415    of keys it told us to allocate, out of bounds memory writes could occur.
5416    
5417    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
5418    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5419    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
5420
5421commit 06c086e8a1d8374ea9a95ff989f053c96bb1bdca
5422Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5423Date:   Sat Mar 2 10:39:21 2013 -0800
5424
5425    unvalidated index in _XkbReadKeyBehaviors() [CVE-2013-1997 7/15]
5426    
5427    If the X server returns key behavior indexes outside the range of the number
5428    of keys it told us to allocate, out of bounds memory writes could occur.
5429    
5430    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
5431    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5432    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
5433
5434commit 00626c3830b869259098985afa38933d77ccec72
5435Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5436Date:   Sat Mar 2 09:40:22 2013 -0800
5437
5438    unvalidated index in _XkbReadKeyActions() [CVE-2013-1997 6/15]
5439    
5440    If the X server returns key action indexes outside the range of the number
5441    of keys it told us to allocate, out of bounds memory access could occur.
5442    
5443    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
5444    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5445    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
5446
5447commit fd7d4956bc7a1c4b5c38661b12777ebee4d685d9
5448Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5449Date:   Sat Mar 2 09:28:33 2013 -0800
5450
5451    unvalidated index in _XkbReadKeySyms() [CVE-2013-1997 5/15]
5452    
5453    If the X server returns keymap indexes outside the range of the number of
5454    keys it told us to allocate, out of bounds memory access could occur.
5455    
5456    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
5457    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5458    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
5459
5460commit 59ae16a00d18588e98af57d26e442af8ea42b7aa
5461Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5462Date:   Sat Mar 2 09:18:26 2013 -0800
5463
5464    unvalidated indexes in _XkbReadGetGeometryReply() [CVE-2013-1997 4/15]
5465    
5466    If the X server returns color indexes outside the range of the number of
5467    colors it told us to allocate, out of bounds memory access could occur.
5468    
5469    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
5470    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5471    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
5472
5473commit bff938b9fe1629cbacb726509edfa2a3840b7207
5474Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5475Date:   Sat Mar 2 09:12:47 2013 -0800
5476
5477    unvalidated indexes in _XkbReadGeomShapes() [CVE-2013-1997 3/15]
5478    
5479    If the X server returns shape indexes outside the range of the number
5480    of shapes it told us to allocate, out of bounds memory access could occur.
5481    
5482    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
5483    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5484    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
5485
5486commit f293659d5a4024bda386305bb7ebeb4647c40934
5487Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5488Date:   Fri Mar 1 22:49:01 2013 -0800
5489
5490    unvalidated index in _XkbReadGetDeviceInfoReply() [CVE-2013-1997 2/15]
5491    
5492    If the X server returns more buttons than are allocated in the XKB
5493    device info structures, out of bounds writes could occur.
5494    
5495    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
5496    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5497    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
5498
5499commit cddc4e7e3cb4b9b7ad25f8591971a86901c249f2
5500Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5501Date:   Fri Mar 1 19:30:09 2013 -0800
5502
5503    unvalidated lengths in XAllocColorCells() [CVE-2013-1997 1/15]
5504    
5505    If a broken server returned larger than requested values for nPixels or
5506    nMasks, XAllocColorCells would happily overflow the buffers provided by
5507    the caller to write the results into.
5508    
5509    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
5510    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5511    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
5512
5513commit 2cd62b5eb99ffbb2fce99f3c459455e630b35bf7
5514Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5515Date:   Fri Mar 1 22:49:01 2013 -0800
5516
5517    integer overflow in XListHosts() [CVE-2013-1981 5/13]
5518    
5519    If the reported number of host entries is too large, the calculations
5520    to allocate memory for them may overflow, leaving us writing beyond the
5521    bounds of the allocation.
5522    
5523    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
5524    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5525    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
5526
5527commit 1f6a3dbf699b85c0ea715ef21de7e7095a714e12
5528Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5529Date:   Fri Mar 1 22:49:01 2013 -0800
5530
5531    integer overflow in XGetMotionEvents() [CVE-2013-1981 4/13]
5532    
5533    If the reported number of motion events is too large, the calculations
5534    to allocate memory for them may overflow, leaving us writing beyond the
5535    bounds of the allocation.
5536    
5537    v2: Ensure nEvents is set to 0 when returning NULL events pointer
5538    
5539    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
5540    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5541
5542commit 39515b7c3ba8cae9021bf6695e378ae19487082f
5543Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5544Date:   Fri Mar 1 22:49:01 2013 -0800
5545
5546    integer overflow in XListFontsWithInfo() [CVE-2013-1981 3/13]
5547    
5548    If the reported number of remaining fonts is too large, the calculations
5549    to allocate memory for them may overflow, leaving us writing beyond the
5550    bounds of the allocation.
5551    
5552    v2: Fix reply_left calculations, check calculated sizes fit in reply_left
5553    v3: On error cases, also set values to be returned in pointer args to 0/NULL
5554    
5555    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
5556    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5557
5558commit 5669a220816b7d58fcaf0c302ead16fbe5c87817
5559Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5560Date:   Fri Mar 1 21:05:27 2013 -0800
5561
5562    integer overflow in _XF86BigfontQueryFont() [CVE-2013-1981 2/13]
5563    
5564    Similar to _XQueryFont, but with more ways to go wrong and overflow.
5565    Only compiled if libX11 is built with XF86BigFont support.
5566    
5567    v2: Fix reply_left calculations, check calculated sizes fit in reply_left
5568    
5569    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
5570    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5571
5572commit 6df8a63d34b7514077188e2062a13774f920c085
5573Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5574Date:   Fri Mar 1 21:05:27 2013 -0800
5575
5576    integer overflow in _XQueryFont() on 32-bit platforms [CVE-2013-1981 1/13]
5577    
5578    If the CARD32 reply.nCharInfos * sizeof(XCharStruct) overflows an
5579    unsigned long, then too small of a buffer will be allocated for the
5580    data copied in from the reply.
5581    
5582    v2: Fix reply_left calculations, check calculated sizes fit in reply_left
5583    
5584    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
5585    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5586
5587commit 9f5d83706543696fc944c1835a403938c06f2cc5
5588Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5589Date:   Fri Mar 1 20:54:24 2013 -0800
5590
5591    Add _XEatDataWords to discard a given number of 32-bit words of reply data
5592    
5593    Matches the units of the length field in X protocol replies, and provides
5594    a single implementation of overflow checking to avoid having to replicate
5595    those checks in every caller.
5596    
5597    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5598    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
5599
5600commit d7f04c340ade3834e603c23d543132e1ee4e0c63
5601Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5602Date:   Sat Mar 2 13:03:55 2013 -0800
5603
5604    Move repeated #ifdef magic to find PATH_MAX into a common header
5605    
5606    Lets stop duplicating the mess all over
5607    
5608    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5609    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
5610
5611commit f3a553a4e4a55d9d19deda1ea01883e1d5d682b1
5612Author: Pander <pander@users.sourceforge.net>
5613Date:   Tue May 7 18:38:14 2013 -0400
5614
5615    Add compose sequences for J́ and j́.
5616    
5617    The resulting sequences are:
5618    
5619      U+004A LATIN CAPITAL LETTER J  U+0301 COMBINING ACUTE ACCENT
5620      U+006A LATIN SMALL LETTER J    U+0301 COMBINING ACUTE ACCENT
5621    
5622    Used in Dutch, per:
5623    
5624      http://lists.x.org/archives/xorg-devel/2013-February/035514.html
5625      https://nl.wikipedia.org/wiki/Accenttekens_in_de_Nederlandse_spelling
5626    
5627    Signed-off-by: Pander <pander@users.sourceforge.net>
5628    Signed-off-by: James Cloos <cloos@jhcloos.com>
5629
5630commit f49bb2dd6d4ea45c55bd21acc0efe2b764441020
5631Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5632Date:   Sat Mar 16 18:30:56 2013 -0700
5633
5634    Move big request comment in XOpenDisplay to the right place
5635    
5636    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5637
5638commit 3996543c1b2919e97d61a5d70fe1ebd7cd76fc83
5639Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5640Date:   Sat Mar 9 19:16:03 2013 -0800
5641
5642    libX11 1.5.99.901 (1.6 RC1)
5643    
5644    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5645
5646commit f9cd175a471116a616e681fb0ca1a61b3d84a6a0
5647Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5648Date:   Fri Mar 8 22:33:28 2013 -0800
5649
5650    Fix very weird indenting in src/GetFProp.c
5651    
5652    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5653
5654commit e9bd757630368afb374c5d1bcc5d4d85ad3c6c4c
5655Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5656Date:   Fri Mar 8 15:37:33 2013 -0800
5657
5658    XAllocClassHint: Assume calloc sets pointers in allocated memory to NULL
5659    
5660    While the C standard technically allows for the compiler to translate
5661    pointer = 0 or pointer = NULL into something other than filling the
5662    pointer address with 0 bytes, the rest of the Xlib code already assumes
5663    that calloc initializes any pointers in the struct to NULL, and there
5664    are no known systems supported by X.Org where this is not true.
5665    
5666    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5667
5668commit 39547d600a13713e15429f49768e54c3173c828d
5669Author: Karl Tomlinson <xmail@karlt.net>
5670Date:   Mon Feb 18 01:25:34 2013 +0000
5671
5672    MakeBigReq: don't move the last word, already handled by Data32
5673    
5674    MakeBigReq inserts a length field after the first 4 bytes of the request
5675    (after req->length), pushing everything else back by 4 bytes.
5676    
5677    The current memmove moves everything but the first 4 bytes back.
5678    If a request aligns to the end of the buffer pointer when MakeBigReq is
5679    invoked for that request, this runs over the buffer.
5680    Instead, we need to memmove minus the first 4 bytes (which aren't moved),
5681    minus the last 4 bytes (so we still align to the previous tail).
5682    
5683    The 4 bytes that fell out are already handled with Data32, which will
5684    handle the buffermax correctly.
5685    
5686    The case where req->length = 1 was already not functional.
5687    
5688    Reported by Abhishek Arya <inferno@chromium.org>.
5689    
5690    https://bugzilla.mozilla.org/show_bug.cgi?id=803762
5691    
5692    Reviewed-by: Jeff Muizelaar <jmuizelaar@mozilla.com>
5693    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
5694    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5695
5696commit 3cdb6c3a1646f670afa03d424ec12ac418181d1e
5697Author: Quentin Glidic <sardemff7+git@sardemff7.net>
5698Date:   Tue Jan 15 21:07:17 2013 +0000
5699
5700    nls/Makefile.am: Use LOG_COMPILER
5701    
5702    TESTS_ENVIRONMENT is deprecated
5703    
5704    Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>
5705    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5706
5707commit df66d7a98e2bc7f44fb5583b645df87d525f07f1
5708Author: Quentin Glidic <sardemff7+git@sardemff7.net>
5709Date:   Tue Jan 15 21:07:16 2013 +0000
5710
5711    nls/Makefile.am: Remove unneeded $(srcdir)
5712    
5713    Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>
5714    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
5715    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5716
5717commit 3facbe5c0df1b5597571b7b00d5f7bdbc92fb278
5718Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5719Date:   Sat Mar 2 12:01:39 2013 -0800
5720
5721    Add <X11/Xresource.h> hint to all Xrm* man pages
5722    
5723    Help users figure out which header file they need to #include
5724    
5725    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5726
5727commit 466404007f2c8f7166e4faddfea1454c5bfe1e9a
5728Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5729Date:   Fri Mar 8 17:13:09 2013 -0800
5730
5731    _xudc_code_to_glyph: check for NULL pointer *before* writing to it, not after
5732    
5733    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5734
5735commit 47d2eff64d167b3245d346d7f38ca703be645e26
5736Author: Ken Moffat <ken@linuxfromscratch.org>
5737Date:   Thu Mar 7 18:27:54 2013 -0500
5738
5739    dead_double_grave and dead_inverted_breve should only have one underscore.
5740    
5741    Correct instances of dead_double_grave and dead_inverted_breve to
5742    dead_doublegrave and dead_invertedbreve.
5743    
5744    Signed-off-by: Ken Moffat <ken@linuxfromscratch.org>
5745    Signed-off-by: James Cloos <cloos@jhcloos.com>
5746
5747commit c23d61d1b84dca3740bf4786978c7908d0065fb9
5748Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5749Date:   Fri Mar 1 18:10:27 2013 -0800
5750
5751    Assume size_t is always available, since it was defined in C89
5752    
5753    Don't provide a fallback definition #ifdef X_NOT_POSIX anymore.
5754    We already use size_t throughout the rest of Xlib, just had this
5755    one instance left in XKBGAlloc.c of a fallback definition.
5756    
5757    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5758
5759commit 9bcfd84aa1410387bc8cf002a5f90f44705aa0d1
5760Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5761Date:   Fri Mar 1 18:09:07 2013 -0800
5762
5763    unifdef XKB_IN_SERVER
5764    
5765    Leftovers from XKB files that were previously shared between the client
5766    and server code, but aren't any more.
5767    
5768    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5769    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
5770
5771commit 769a0efa2298040fe8316a89fc9e75fb61e288e5
5772Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5773Date:   Thu Feb 28 20:04:25 2013 -0800
5774
5775    unifdef CRAY & _CRAY
5776    
5777    (mostly performed with unifdef, followed by some manual cleanup of
5778     the remaining code)
5779    
5780    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5781    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
5782
5783commit ca106eb03e5f5468df8033300c5caae3d3c6936b
5784Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5785Date:   Thu Feb 28 20:04:25 2013 -0800
5786
5787    unifdef WORD64
5788    
5789    WORD64 seems to have only been defined in <X11/Xmd.h> when building for
5790    CRAY, to handle int being a 64-bit value (ILP64, not LP64) and having
5791    64-bit alignment requirements.
5792    
5793    It hadn't been fully supported even before autotooling, as can be
5794    seen by removed code such as:
5795    
5796     #ifdef WORD64
5797     _XkbWriteCopyData32 Not Implemented Yet for sizeof(int)==8
5798     #endif
5799    
5800    (mostly performed with unifdef, followed by some manual cleanup of
5801     the remaining code)
5802    
5803    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5804    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
5805
5806commit 9399caf2c12cbe1ed56f4f6b368c5811cb5d0458
5807Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5808Date:   Thu Feb 28 20:04:25 2013 -0800
5809
5810    unifdef MUSTCOPY
5811    
5812    MUSTCOPY seems to have only been defined in <X11/Xmd.h> when building for
5813    CRAY, to handle missing some sizes of integer type.
5814    
5815    (mostly performed with unifdef, followed by some manual cleanup of
5816     spacing/indenting in the remaining code)
5817    
5818    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5819    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
5820
5821commit b687440c28c7da6ee0ae44514d20248db5161606
5822Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5823Date:   Sat Feb 16 10:42:23 2013 -0800
5824
5825    Convert more sprintf calls to snprintf
5826    
5827    You could analyze most of these and quickly recognize that there was no
5828    chance of buffer overflow already, but why make everyone spend time doing
5829    that when we can just make it obviously safe?
5830    
5831    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5832
5833commit b092dabbd712d7b656abcf572d253b9b206c0237
5834Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5835Date:   Fri Feb 15 23:43:12 2013 -0800
5836
5837    XKeysymToString: move variable declarations to the scope of their usage
5838    
5839    Makes it easier for readers to understand scope of variable usage, and
5840    clears up gcc warning:
5841    
5842    KeysymStr.c: In function 'XKeysymToString':
5843    KeysymStr.c:128:13: warning: declaration of 'i' shadows a previous local [-Wshadow]
5844    KeysymStr.c:73:18: warning: shadowed declaration is here [-Wshadow]
5845    
5846    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5847
5848commit f0b171c8ea7b055ba520272ea9a2604e18841ac7
5849Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5850Date:   Fri Feb 15 23:34:40 2013 -0800
5851
5852    Preserve constness in casting arguments through the Data*() routines
5853    
5854    Casts were annoying gcc by dropping constness when changing types,
5855    when routines simply either copy data into the request buffer or
5856    send it directly to the X server, and never modify the input.
5857    
5858    Fixes gcc warnings including:
5859    ChProp.c: In function 'XChangeProperty':
5860    ChProp.c:65:6: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
5861    ChProp.c:65:6: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
5862    ChProp.c:74:6: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
5863    ChProp.c:74:6: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
5864    ChProp.c:83:6: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
5865    SetHints.c: In function 'XSetStandardProperties':
5866    SetHints.c:262:20: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
5867    SetPntMap.c: In function 'XSetPointerMapping':
5868    SetPntMap.c:46:5: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
5869    SetPntMap.c:46:5: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
5870    StBytes.c: In function 'XStoreBuffer':
5871    StBytes.c:97:33: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
5872    StName.c: In function 'XStoreName':
5873    StName.c:40:27: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
5874    StName.c: In function 'XSetIconName':
5875    StName.c:51:27: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
5876    
5877    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5878
5879commit 6c558ee357292dd9dfc6d9006f4525f625327c52
5880Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5881Date:   Fri Feb 15 22:58:54 2013 -0800
5882
5883    Fix comment typo & confusing indentation levels in Data() macro definition
5884    
5885    The final } matches the one on the #define line, not one that doesn't
5886    appear after the else statement it was lined up with
5887    
5888    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5889
5890commit afd6593da90e51234d59f8921c411317f91ab48b
5891Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5892Date:   Fri Feb 15 23:25:38 2013 -0800
5893
5894    XStringToKeysym: preserve constness when casting off unsignedness for strcmp
5895    
5896    Fixes gcc warning:
5897    StrKeysym.c:97:17: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
5898    
5899    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5900
5901commit 7e3bf4dd83fec22bd568146de75e6d59eff74e21
5902Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5903Date:   Fri Feb 15 23:14:40 2013 -0800
5904
5905    XRebindKeysym: Drop unnecessary const-removing cast
5906    
5907    C89 defines memcpy as taking a const void *, so casting from
5908    const unsigned char * to char * simply angers gcc for no benefit:
5909    
5910    KeyBind.c:1017:24: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
5911    
5912    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5913
5914commit 54527eab93d46055cf11eb6c18abb353a03ae544
5915Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5916Date:   Fri Feb 15 22:45:19 2013 -0800
5917
5918    cmsColNm.c: maintain constness of arguments to qsort helper function
5919    
5920    Fixes gcc warning:
5921    
5922    cmsColNm.c: In function 'FirstCmp':
5923    cmsColNm.c:257:20: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
5924    cmsColNm.c:257:45: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
5925    
5926    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5927
5928commit deedeada53676ee529d700bf96fde0b29a3a1def
5929Author: Nickolai Zeldovich <nickolai@csail.mit.edu>
5930Date:   Tue Jan 22 10:03:00 2013 -0500
5931
5932    XListFontsWithInfo: avoid accessing realloc'ed memory
5933    
5934    If exactly one of the two reallocs in XListFontsWithInfo() fails, the
5935    subsequent code accesses memory freed by the other realloc.
5936    
5937    Signed-off-by: Nickolai Zeldovich <nickolai@csail.mit.edu>
5938    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5939    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5940
5941commit f57fd760cba92ad846917f21e94e73e9c846185f
5942Author: Colin Walters <walters@verbum.org>
5943Date:   Wed Jan 4 17:37:06 2012 -0500
5944
5945    autogen.sh: Implement GNOME Build API
5946    
5947    http://people.gnome.org/~walters/docs/build-api.txt
5948    
5949    Signed-off-by: Adam Jackson <ajax@redhat.com>
5950
5951commit 51c102d39e855cf1704d9eb3afba76a2e73c6b81
5952Author: Adam Jackson <ajax@redhat.com>
5953Date:   Tue Jan 15 14:28:48 2013 -0500
5954
5955    configure: Remove AM_MAINTAINER_MODE
5956    
5957    Signed-off-by: Adam Jackson <ajax@redhat.com>
5958
5959commit 3cd974b1d4d1fa6389d3695fa9fcc0c22a51d50c
5960Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5961Date:   Wed Dec 26 22:57:39 2012 -0800
5962
5963    Remove unused DECnet ("DNETCONN") code from Xlib
5964    
5965    Has never been converted to build in modular builds, so has been unusable
5966    since X11R7.0 release in 2005.  DNETCONN support was removed from xtrans
5967    back in 2008.
5968    
5969    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5970
5971commit a6e5b36a3e6d4a7a9fb4bad905ed127e67b1957e
5972Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5973Date:   Wed Dec 26 22:56:38 2012 -0800
5974
5975    Remove unused TLI ("STREAMSCONN") code from Xlib
5976    
5977    Has never been converted to build in modular builds, so has been unusable
5978    since X11R7.0 release in 2005.  All known platforms with TLI/XTI support
5979    that X11R7 & later releases run on also have (and mostly prefer) BSD
5980    socket support for their networking API.
5981    
5982    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5983
5984commit 59c9ee8cd58857c5769b643611cbe526005a9e45
5985Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5986Date:   Sun Dec 16 17:44:42 2012 -0800
5987
5988    Tell clang not to report -Wpadded warnings on public headers we can't fix
5989    
5990    Better to silence the compiler warning than break ABI.
5991    
5992    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5993
5994commit 0b148750027fd0557c5ed93afda861ddf4b92e0f
5995Author: Jon TURNEY <jon.turney@dronecode.org.uk>
5996Date:   Mon Nov 12 17:27:52 2012 +0000
5997
5998    Fix config check for loadable modules
5999    
6000    The config check of the results of testing for dlfcn.h or dl.h just tests the
6001    value of the ac_cv_ variables, which will be 'yes' or 'no', rather than checking
6002    it is 'yes', so loadable module support would always be detected.
6003    
6004    This is necessary for successful compilation for the MinGW target without the
6005    optional dlfcn-win32 library.
6006    
6007    v2: Also, fixed typoed name of ac_cv_header_dlfcn_h, so check still works
6008    correctly when dlfcn.h is available
6009    
6010    Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
6011    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
6012
6013commit cd25cab4b5b957641183ce72dd1ae0424aff1663
6014Author: Egbert Eich <eich@freedesktop.org>
6015Date:   Fri May 20 18:27:02 2011 +0200
6016
6017    Install Xcms.txt in $(datadir) rather than $(libdir).
6018    
6019    This file is an architecture independent data and should be where
6020    other databases are.
6021    This is the Xlib provided sample file, applications are free to
6022    use a different one specifying its location in the XCMSDB env
6023    variable.
6024    
6025    Signed-off-by: Egbert Eich <eich@freedesktop.org>
6026    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6027
6028commit 51fef7e273b5c6256e4c9604e3e1afe5dc8f6a1a
6029Author: Egbert Eich <eich@freedesktop.org>
6030Date:   Fri May 20 18:25:24 2011 +0200
6031
6032    Don't hard code path to Xcms.txt file.
6033    
6034    The path to this file is configurable at build time. The source
6035    however contains a hard coded path.
6036    
6037    Signed-off-by: Egbert Eich <eich@freedesktop.org>
6038    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6039
6040commit 9833489e6c3829a1e835bc0a11f028fc180809e4
6041Author: Colin Walters <walters@verbum.org>
6042Date:   Fri Dec 7 08:51:21 2012 -0500
6043
6044    Fix build after dropping locales
6045    
6046    They also needed to be removed from configure.ac
6047    
6048    Signed-off-by: Colin Walters <walters@verbum.org>
6049    Signed-off-by: Julien Cristau <jcristau@debian.org>
6050
6051commit 0a740a574aaf0c0eec78859b773a532cff3b74c3
6052Author: Egbert Eich <eich@freedesktop.org>
6053Date:   Fri May 20 13:04:11 2011 +0200
6054
6055    i18n: Uppercased all occurances if 'iso8859' in the full locale name.
6056    
6057    Making all occurances of iso8859 upper case in the full local name
6058    makes the alias entries more consistent and match the entries on
6059    locale.dir.
6060    
6061    Signed-off-by: Egbert Eich <eich@freedesktop.org>
6062    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6063
6064commit 5e7d589697755a70fb22d85c6a1ae82b39843e53
6065Author: Egbert Eich <eich@freedesktop.org>
6066Date:   Fri May 20 17:55:49 2011 +0200
6067
6068    i18n: Remove ja.S90 and ja.U90 locales.
6069    
6070    Both locales carry a copyright notice and a prorietary statement:
6071    
6072    Copyright 1995 by FUJITSU LIMITED
6073    This is source code modified by FUJITSU LIMITED under the Joint
6074    Development Agreement for the CDEnext PST.
6075    This is unpublished proprietary source code of FUJITSU LIMITED
6076    
6077    Signed-off-by: Egbert Eich <eich@freedesktop.org>
6078    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6079
6080commit 99eae3dcb7bf6764e3b243d2a2934a4d1ecce90e
6081Author: Egbert Eich <eich@freedesktop.org>
6082Date:   Fri May 20 16:46:15 2011 +0200
6083
6084    i18n: Bring locale.dir and compose.dir in sync.
6085    
6086    Some entries for locale/encoding combinations were missing from
6087    either file or just misspelled, some entries were wrong or just
6088    aliases.
6089    
6090    Signed-off-by: Egbert Eich <eich@freedesktop.org>
6091    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6092
6093commit d1e6baa4e290b758e430077cb74e7c03ad850771
6094Author: Egbert Eich <eich@freedesktop.org>
6095Date:   Fri May 20 14:02:39 2011 +0200
6096
6097    i18n: Treat 'a3_AZ' as an alias for 'az_AZ'.
6098    
6099    locale.alias contains a comment:
6100    XCOMM a3 is not an ISO 639 language code, but in Cyrillic, "Z" looks like "3".
6101    Thus lets treat 'a3' as an alias for 'az'.
6102    
6103    Signed-off-by: Egbert Eich <eich@freedesktop.org>
6104    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6105    Reviewed-by: Magnus Kessler <Magnus.Kessler@gmx.net>
6106
6107commit fa2aab0bea18efa26a56977d3166277582ab7b07
6108Author: Egbert Eich <eich@freedesktop.org>
6109Date:   Fri May 20 13:09:38 2011 +0200
6110
6111    i18n: Fixed typos in full locale names.
6112    
6113    Fixing those typos those names actually match entries in
6114    locale.dir.
6115    
6116    Signed-off-by: Egbert Eich <eich@freedesktop.org>
6117    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6118
6119commit b88dd95005dce4c40f9b4d5f938f945e7955fd04
6120Author: Egbert Eich <eich@freedesktop.org>
6121Date:   Sat May 21 07:29:38 2011 +0200
6122
6123    i18n: Remove duplicates and aliases to oneself.
6124    
6125    Aliases to itself don't make much sense.
6126    This changes occurances of:
6127    xy_UV.UTF-8:                    xy_UV.UTF-8
6128    to
6129    xy_UV:                  xy_UV.UTF-8
6130    where applicable.
6131    
6132    Signed-off-by: Egbert Eich <eich@freedesktop.org>
6133    Reviewed-by: James Cloos <cloos@jhcloos.com>
6134
6135commit f198c6aa98f88ff285d903175a3c4c0fd33a4575
6136Author: Jens Herden <jens.herden@email.de>
6137Date:   Fri May 20 17:29:03 2011 +0200
6138
6139    i18n: Add support for Khmer locale and compose table.
6140    
6141    Signed-off-by: Egbert Eich <eich@freedesktop.org>
6142    Reviewed-by: James Cloos <cloos@jhcloos.com>
6143
6144commit 40761898692e5063957bfa2518cca3d35b2e354a
6145Author: Kalman Kemenczy <kkemenczy@novell.com>
6146Date:   Fri May 20 17:03:24 2011 +0200
6147
6148    i18n: Add support for Serbian specific compose table entries.
6149    
6150    Signed-off-by: Egbert Eich <eich@freedesktop.org>
6151    Reviewed-by: James Cloos <cloos@jhcloos.com>
6152
6153commit 7c14aacc9f01d7a975f8d9d033b9b13cbd777a61
6154Author: Egbert Eich <eich@freedesktop.org>
6155Date:   Fri May 20 14:00:35 2011 +0200
6156
6157    i18n: Adding and removing comments.
6158    
6159    Signed-off-by: Egbert Eich <eich@freedesktop.org>
6160    Reviewed-by: James Cloos <cloos@jhcloos.com>
6161
6162commit 7754d68976106183751243c2c35a84134be17b34
6163Author: Egbert Eich <eich@freedesktop.org>
6164Date:   Fri May 20 13:45:31 2011 +0200
6165
6166    i18n: Add missing locales which existed in locale.alias.
6167    
6168    Signed-off-by: Egbert Eich <eich@freedesktop.org>
6169    Reviewed-by: James Cloos <cloos@jhcloos.com>
6170
6171commit 952eccd0d25ba66023acfd31873eee2e71c38c42
6172Author: Egbert Eich <eich@freedesktop.org>
6173Date:   Fri May 20 10:57:57 2011 +0200
6174
6175    i18n: Consolidate compose handling for locales with UTF-8 encoding.
6176    
6177    - add an entry to include the default en_US compose file
6178      for the ja_JP, ko_KR, th_TH, zh_CN, zh_HK and zh_TW locales.
6179    - add missing entries for zh_CN. and zh_HK and am_ET.
6180    - change entries for the UTF-8 encoding for ru_RU, ja_JP,
6181      ko_KR, th_TH and zh_TW to point to their native directory
6182      entries.
6183    
6184    Signed-off-by: Egbert Eich <eich@freedesktop.org>
6185    Reviewed-by: James Cloos <cloos@jhcloos.com>
6186
6187commit d14b6a250f004fa405179db7020f6953001d17b9
6188Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
6189Date:   Mon Oct 22 13:54:11 2012 -0500
6190
6191    XIM: remove Private and Public macros
6192    
6193    Private is a struct member name in mingw-w64 <winioctl.h>, causing this
6194    useless define in a private header to break the build.
6195    
6196    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
6197    Reviewed-by: Jon TURNEY <jon.turney@dronecode.org.uk>
6198
6199commit f2a8def423a46d52e834cf7ea49fa0079427663a
6200Author: Adam Jackson <ajax@redhat.com>
6201Date:   Wed Oct 17 14:40:43 2012 -0400
6202
6203    XErrorDB: Add GLXBadProfileARB
6204    
6205    Signed-off-by: Adam Jackson <ajax@redhat.com>
6206
6207commit d45b3fc19fbe95c41afc4e51d768df6d42332010
6208Author: Ross Burton <ross.burton@intel.com>
6209Date:   Wed Sep 12 14:39:40 2012 +0100
6210
6211    Allow overriding location of keysymdef.h
6212    
6213    Currently keysymdef.h is found by using the includedir of xproto.  This doesn't
6214    work when cross-compiling with a sysroot as that ends up being /usr/include/X11,
6215    not a path into the cross-build environment.
6216    
6217    So, add an option to allow explicitly specifying the location of keysymdef.h,
6218    and verify that the specified or found path exists.
6219    
6220    (original patch by Martin Jansa <martin.jansa@gmail.com>, revised by myself)
6221    
6222    Signed-off-by: Ross Burton <ross.burton@intel.com>
6223    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
6224    Reviewed-by: Daniel Stone <daniel@fooishbar.org>
6225
6226commit 44cdc0dc2c68d67654023ec707b807145d3a38c0
6227Author: Eric S. Raymond <esr@thyrsus.com>
6228Date:   Thu Aug 23 19:15:07 2012 -0400
6229
6230    Renove some unnecessary low-level markup.
6231    
6232    Also, SYNTAX -> SYNOPSIS so function prototypes get parsed by doclifter.
6233    This appears to have been somebody's thinko, it's only in a few of the files.
6234    
6235    Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
6236
6237commit b686600ab5ca93b5750f827786e79c329ab2db4d
6238Author: Eric S. Raymond <esr@thyrsus.com>
6239Date:   Thu Aug 23 10:53:33 2012 -0400
6240
6241    The .NT/.NE macro pair is no longer used.  Remove it.
6242    
6243    Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
6244
6245commit b83f2898528c5dd683acd2a2143879a760a8dad5
6246Author: Eric S. Raymond <esr@thyrsus.com>
6247Date:   Thu Aug 23 10:42:46 2012 -0400
6248
6249    Remove the one and only use of the .NT/.NE pair.
6250    
6251    The problem with these macros is that they rely on being able to
6252    center the note label.  That doesn't play well with modern HTML,
6253    not anyway without coomplications like CSS.  This use was just a cute
6254    trick, not adding enough value to be kept.
6255
6256commit e9509fa6745d25eee01ec6f1c34edf8a806d66b3
6257Author: Eric S. Raymond <esr@thyrsus.com>
6258Date:   Thu Aug 23 10:23:45 2012 -0400
6259
6260    The .C{ and .C} macros are never used.  Remove them.
6261    
6262    Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
6263
6264commit 6b2f7ddeea6c87dbec4ddfc19b1fed33f1bb8575
6265Author: Eric S. Raymond <esr@thyrsus.com>
6266Date:   Thu Aug 23 10:08:08 2012 -0400
6267
6268    The .FN macro, paired with .FD, is also never used. Remove it.
6269    
6270    Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
6271
6272commit cac6572701c976542da562b2b277b07ffb892a6f
6273Author: Eric S. Raymond <esr@thyrsus.com>
6274Date:   Thu Aug 23 10:03:00 2012 -0400
6275
6276    The ".FD" macro is never used.  Remove it.
6277    
6278    It was a temptation to presentation-level klugery and is best gone.
6279    
6280    Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
6281
6282commit 6e27a828f39f7028bc7f4a8736e7262fca250632
6283Author: Eric S. Raymond <esr@thyrsus.com>
6284Date:   Thu Aug 23 09:54:25 2012 -0400
6285
6286    Clean up, my last commit missed four cases.
6287    
6288    Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
6289
6290commit a7fb575957ff4d9dd3671994a005ac3be8bb10fe
6291Author: Eric S. Raymond <esr@thyrsus.com>
6292Date:   Thu Aug 23 08:24:17 2012 -0400
6293
6294    Eliminate all uses of tab stops in the libX11 man pages.
6295    
6296    Two steps: First, expand tabs to 8 spaces in code and structure
6297    listings.  Second, make the .Ds used to wrap code listings switch to
6298    constant-width font (CW) rather than numeric font position 1, which
6299    maps to R on most systems.
6300    
6301    It is possible some archaic systems won't know what CW is, but the
6302    only risk is that code listings won't look quite right on troff
6303    devices; the PostScript and DVI drivers definitely grok it, so those
6304    important cases are OK.
6305    
6306    The purpose of these changes is to get rid of presentation-level
6307    markup so these pages will lift clean to DocBook.
6308    
6309    Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
6310
6311commit 8042f88ace33573f9d0dfaa21ed54ac7cef266d5
6312Author: Will Thompson <will@willthompson.co.uk>
6313Date:   Mon Jul 9 18:00:27 2012 +0100
6314
6315    Add compose sequences for "therefore" and "because".
6316    
6317    These sequences look sensible to me. I added them to the APL-related
6318    section of Mathematical Operators—they're in that section of Unicode
6319    anyway.
6320    
6321    https://bugs.freedesktop.org/show_bug.cgi?id=51922
6322    
6323    Signed-off-by: Will Thompson <will@willthompson.co.uk>
6324    Reviewed-by: Daniel Stone <daniel@fooishbar.org>
6325
6326commit 65358ea5079236b2508f787ac2fb2024a477e36d
6327Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6328Date:   Fri Jun 29 23:08:04 2012 -0700
6329
6330    Convert XCreate{Pix,Bit}map...Data to use C99 designated initializers
6331    
6332    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6333
6334commit 0dc93f7e43deb102b1f8fb7c4c4844cdce7ffd1e
6335Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6336Date:   Fri Jun 29 22:57:13 2012 -0700
6337
6338    XCreate{Pix,Bit}map...Data: Free pixmap in error path if XCreateGC fails
6339    
6340    Fixes leaks in error paths found by Parfait 1.0.0:
6341    
6342    Error: X Resource Leak
6343       Leaked X Resource pix
6344            at line 62 of CrBFData.c in function 'XCreateBitmapFromData'.
6345              pix initialized at line 60 with XCreatePixmap
6346    Error: X Resource Leak
6347       Leaked X Resource pix
6348            at line 70 of CrPFBData.c in function 'XCreatePixmapFromBitmapData'.
6349              pix initialized at line 66 with XCreatePixmap
6350    
6351    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6352    Reviewed-by: Aaron Plattner <aplattner@nvidia.com>
6353
6354commit dce84b8c39ad5a8908c29bb6de25b6c3004c1ab7
6355Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6356Date:   Wed Jun 6 13:31:16 2012 -0700
6357
6358    libX11 spec: Correct prototype for XConvertSelection
6359    
6360    selection & target parameters were accidentally run together
6361    
6362    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6363
6364commit 6c5cb2a90a6479f56855e5167039c37c234cdfe7
6365Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6366Date:   Fri Jun 1 23:37:09 2012 -0700
6367
6368    libX11 1.5.0
6369    
6370    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6371
6372commit 05c587ec3be880721131a17c1dd4366e458fdd8b
6373Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6374Date:   Sat May 26 14:37:28 2012 -0700
6375
6376    libX11 1.4.99.902 (1.5 RC2)
6377    
6378    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6379
6380commit d817834d9772e3500d5102e2eae868b04a33c31f
6381Author: Pander <pander@users.sourceforge.net>
6382Date:   Sat May 5 19:02:10 2012 +0200
6383
6384    Compose: Reassigned squences with minus and a or o
6385    
6386    Reassigned squences with minus and a or o (vice versa and lower and
6387    upper case) to conform existing series and not resulting in tilde.
6388    Also added noe missing underscore sequence.
6389    
6390    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6391
6392commit 6bfd1dca6e7cb2046ee6bf9dbbddc0af5ef7cc00
6393Author: Pander <pander@users.sourceforge.net>
6394Date:   Sat May 5 16:56:05 2012 +0200
6395
6396    Compose: Removed <slash> <U> and vice versa
6397    
6398    Combination with lower case u suffices
6399    
6400    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6401
6402commit 3a8b1637132d1e36eb5e11f52dfb284081772d14
6403Author: Pander <pander@users.sourceforge.net>
6404Date:   Sat May 5 16:44:31 2012 +0200
6405
6406    Compose: Removed <n> <minus> for n with tilde, also vice versa & for upper case
6407    
6408    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6409
6410commit fd514d7a35119dd4413b51c84f2a536f2ca501a6
6411Author: Pander <pander@users.sourceforge.net>
6412Date:   Sat May 5 16:40:20 2012 +0200
6413
6414    Compose: Removed <S> in combination with a numeral for superscript
6415    
6416    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6417
6418commit 1b5cad3ca54410c4edbca79c23c463e9e088bc0d
6419Author: Pander <pander@users.sourceforge.net>
6420Date:   Sat May 5 16:28:01 2012 +0200
6421
6422    Compose: Reassigned <o> <apostrophe> to oacute, also for upper case.
6423    
6424    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6425
6426commit 0bbc0d5e605e2a4a3eb00a229b651d4546e8aef4
6427Author: James Cloos <cloos@jhcloos.com>
6428Date:   Thu May 10 12:27:28 2012 -0400
6429
6430    Remove duplicate compose sequences from commit e51e37c118ae.
6431    
6432    The compose-check script only handles compiled Compose files, not
6433    the Compose.pre files.  One must remember to use:
6434    
6435        ./autogen.sh; make; make check
6436    
6437    when reviewing patches to the Compose.pre files....
6438    
6439    Signed-off-by: James Cloos <cloos@jhcloos.com>
6440
6441commit e51e37c118ae6cb9ced8244ce1c410677e0279ce
6442Author: Geoff Streeter <geoff@dyalog.com>
6443Date:   Thu Mar 22 15:02:00 2012 +0000
6444
6445    Add APL support to compose
6446    
6447    Signed-off-by: Geoff Streeter <geoff@dyalog.com>
6448    Signed-off-by: James Cloos <cloos@jhcloos.com>
6449
6450commit dac90324cee224df977a428afe80d960dceca769
6451Author: Julien Cristau <jcristau@debian.org>
6452Date:   Sat May 5 16:05:07 2012 +0200
6453
6454    configure: make previous change work with older autoconf
6455    
6456    autoconf 2.63 doesn't seem to like the nested AC_CHECK_DECL/FUNC.  So do
6457    the tests separately.
6458    
6459    Reported-by: Dave Airlie
6460    Signed-off-by: Julien Cristau <jcristau@debian.org>
6461
6462commit f5b50af4324186962e258ffe9be78d5ee4681982
6463Author: Julien Cristau <jcristau@debian.org>
6464Date:   Sun Apr 29 16:43:09 2012 +0200
6465
6466    configure: check if issetugid is declared
6467    
6468    GNU/kFreeBSD has issetugid in libc (for legacy apps?), but doesn't
6469    declare it anywhere, causing gcc to error out with
6470    -Werror=implicit-function-declaration.  Use AC_CHECK_DECL in addition to
6471    AC_CHECK_FUNC so we disable this code instead of failing to build it.
6472    
6473    Debian bug#669670 <http://bugs.debian.org/669670>
6474    
6475    Signed-off-by: Julien Cristau <jcristau@debian.org>
6476    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6477    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6478
6479commit 52e1b5cc3b6de76ccf4285b55652474a522ed9a8
6480Author: Peter Hutterer <peter.hutterer@who-t.net>
6481Date:   Mon Apr 30 16:36:47 2012 +1000
6482
6483    Typo fix
6484    
6485    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
6486
6487commit b64969f0e510d5d3300cf968741a3726a6409577
6488Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6489Date:   Tue Apr 17 18:12:02 2012 -0700
6490
6491    Add X11R7 sections to the libX11 & XKBlib credits to cover Docbook conversion
6492    
6493    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6494
6495commit 9ea611696f317ac3b3fb67893f1d6d87d49e3b5e
6496Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6497Date:   Tue Apr 17 18:01:36 2012 -0700
6498
6499    Add olinks from libX11 & localedb specs to ICCCM spec
6500    
6501    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6502
6503commit b3c1b8cdab7d14220426c9b997ac362dc16318fc
6504Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6505Date:   Tue Apr 17 17:49:44 2012 -0700
6506
6507    Add olinks from libX11 spec to ICCCM spec
6508    
6509    Also convert ICCCM title mentions from <emphasis> to <citetitle>
6510    
6511    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6512
6513commit ebebb65e753007ad01966dccc90bd6ca9a826488
6514Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6515Date:   Sat Apr 14 23:40:01 2012 -0700
6516
6517    libX11 AppC: Fix section headers that didn't translate from nroff properly
6518    
6519    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6520    Acked-by: Peter Hutterer <peter.hutterer@who-t.net>
6521
6522commit d5ab4ae0e74ae1fb30fb72add0751effe2759bf2
6523Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6524Date:   Sat Apr 14 23:13:05 2012 -0700
6525
6526    Add olinks from libX11 spec to x11protocol spec
6527    
6528    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6529    Acked-by: Peter Hutterer <peter.hutterer@who-t.net>
6530
6531commit 83878a0e34fffd255597300dd3e6cd43fcd645b0
6532Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6533Date:   Sat Apr 14 22:28:53 2012 -0700
6534
6535    libX11 spec: Remove .br nroff macro left behind in XGetWindowProperty prototype
6536    
6537    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6538
6539commit abc523fce31fcf2687229697a8eb656e343ecb0c
6540Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6541Date:   Thu Mar 15 22:14:45 2012 -0700
6542
6543    libX11 1.4.99.901 (1.5 RC1)
6544    
6545    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6546
6547commit b2cc5905a4a6d519957223e8ba2caef71520040c
6548Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6549Date:   Thu Mar 15 22:03:21 2012 -0700
6550
6551    Remove "register" qualifier that annoys Solaris Studio compiler
6552    
6553    Fixes warning:
6554    "Xrm.c", line 1094: warning: storage class after type is obsolescent
6555    
6556    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6557
6558commit 62d42953893f93a98db0504eaf06d650ceaf5811
6559Author: James Cloos <cloos@jhcloos.com>
6560Date:   Wed Mar 14 17:25:46 2012 -0400
6561
6562    Fix the gtk+ additions
6563    
6564    (Some of) the Dstroke and dstroke entries already were present as U011[01],
6565    even though XK_Dstroke and XK_dstroke are part of the latin2 set in keysymdef.h.
6566    
6567    The addition of <Multi_key> <o> <apostrophe> as a postfix version of
6568    <Multi_key> <apostrophe> <o> blocks the existing entries for ǻ and Ǻ.
6569    That prevents its and <Multi_key> <O> <apostrophe>’s addition.
6570    
6571    Signed-off-by: James Cloos <cloos@jhcloos.com>
6572
6573commit 91bcce48d94792f78333d2aea73961cc2e739d2e
6574Author: Pander <pander@users.sourceforge.net>
6575Date:   Wed Mar 14 12:54:53 2012 -0400
6576
6577    Complete compose key sequences for musical symbols
6578    
6579    Signed-off-by: Pander <pander@users.sourceforge.net>
6580    Signed-off-by: James Cloos <cloos@jhcloos.com>
6581
6582commit cf040016d455bc37f7665d6714337c5eafd8ea94
6583Author: Pander <pander@users.sourceforge.net>
6584Date:   Wed Mar 14 12:46:25 2012 -0400
6585
6586    Add compose sequences from gtk+ to X.Org
6587    
6588    Signed-off-by: Pander <pander@users.sourceforge.net>
6589    Signed-off-by: James Cloos <cloos@jhcloos.com>
6590
6591commit a4c591ced5cac9301b9abfa0e521be2d0b267882
6592Author: Keith Packard <keithp@keithp.com>
6593Date:   Sun Mar 4 02:00:13 2012 -0800
6594
6595    Block for other threads in _XUserLockDisplay
6596    
6597    Wait for all other threads to release the user-level lock when
6598    acquiring it. This ensures that only one thread at a time holds the
6599    user-level lock, necessary as it is a nesting lock and a single
6600    variable is used to determine when the lock is nesting and when it is
6601    contended.
6602    
6603    Signed-off-by: Keith Packard <keithp@keithp.com>
6604    Reviewed-by: Jamey Sharp <jamey@minilop.net>
6605
6606commit ed00b460acb08787b695f27b864e96102dfd4867
6607Author: Jon TURNEY <jon.turney@dronecode.org.uk>
6608Date:   Fri Oct 28 11:09:20 2011 -0500
6609
6610    Don't use caddr_t casts
6611    
6612    (caddr_t) isn't used anywhere else in xcb or libX11.
6613    Cast to (char *) for consistency.
6614    
6615    Removing this cast allows building for MinGW without patching.
6616    
6617    v2: Cast to (char *) rather than just dropping the cast
6618    
6619    Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
6620    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6621
6622commit 20adca02c2a1d0b7c95ecbe387d68f881fd57754
6623Author: Julien Cristau <jcristau@debian.org>
6624Date:   Sun Feb 19 13:27:38 2012 +0100
6625
6626    Revert "xcb: Add TCP fallback"
6627    
6628    This reverts commit f09c5299a381e2729e800a0ac43f1c0e371f65f6.
6629    
6630    The TCP fallback ended up falling back to UNIX socket connection if
6631    $DISPLAY was set to e.g. some.host:0 and the initial attempt failed.
6632    
6633    Debian bug#659558 <http://bugs.debian.org/659558>
6634    
6635    Signed-off-by: Julien Cristau <jcristau@debian.org>
6636    
6637    Conflicts:
6638    
6639            src/OpenDis.c
6640
6641commit f4378193619baa9bb973c1b5b718721bbcbe92c7
6642Author: James Cloos <cloos@jhcloos.com>
6643Date:   Wed Feb 22 14:13:20 2012 -0500
6644
6645    Make the compose sequence for ẞ work.
6646    
6647    There is no XK_Ssharp symbol for U+1E9E LATIN CAPITAL LETTER SHARP S,
6648    so use the U1e9e symbol in the Compose sequence.
6649    
6650    (Compose sequences do not work when the target symbol is unknown.)
6651    
6652    Signed-off-by: James Cloos <cloos@jhcloos.com>
6653
6654commit 2ca641c3a506dcbee97e279b67990d5387389f36
6655Author: Marko Myllynen <myllynen@redhat.com>
6656Date:   Mon Feb 20 17:04:59 2012 +0200
6657
6658    Use ezh/EZH in compose maps
6659    
6660    Related: https://bugs.freedesktop.org/show_bug.cgi?id=19687
6661    
6662    Signed-off-by: Marko Myllynen <myllynen@redhat.com>
6663    Reviewed-by: Matt Dew <marcoz@osource.org>
6664    Signed-off-by: James Cloos <cloos@jhcloos.com>
6665
6666commit 61725822f20f47684a545c1797183ee7075243ac
6667Author: Marko Myllynen <myllynen@redhat.com>
6668Date:   Sun Feb 20 17:09:43 2011 +0200
6669
6670    Provide translation from XK_permille (ad5) to Unicode (U2030)
6671    
6672    https://bugs.freedesktop.org/show_bug.cgi?id=19687
6673    
6674    Signed-off-by: Marko Myllynen <myllynen@redhat.com>
6675    Reviewed-by: Matt Dew <marcoz@osource.org>
6676    Signed-off-by: James Cloos <cloos@jhcloos.com>
6677
6678commit d2cce0abba0fa0143f49026442c8cab5ed721625
6679Author: Jeremy Huddleston <jeremyhu@apple.com>
6680Date:   Sun Feb 12 19:01:43 2012 -0800
6681
6682    nls: Use LC_CTYPE=C for sed magic
6683    
6684    Stricter versions of sed can trip up if the input does not match
6685    LC_CTYPE
6686    
6687    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
6688
6689commit f180e043f55531933bedfa6e0ff36a00a9ec07f3
6690Author: Frédéric Boiteux <fboiteux@calistel.com>
6691Date:   Wed Nov 30 12:47:31 2011 +0000
6692
6693    Compositions with the dead greek symbol
6694    
6695    FreeDesktop Bug 21475 <https://bugs.freedesktop.org/show_bug.cgi?id=21475>
6696    
6697    Signed-off-by: Frédéric Boiteux <fboiteux@calistel.com>
6698    Signed-off-by: James Cloos <cloos@jhcloos.com>
6699
6700commit d58e8f8e27790017fcfdeca0843b7318d541c189
6701Author: Ryan Pavlik <rpavlik@iastate.edu>
6702Date:   Sun Jan 1 21:04:52 2012 +0000
6703
6704    Use pthreads on MinGW also
6705    
6706    Use pthreads (provided by the pthreads-win32 compatability library which implements
6707    them using native Win32 threading) on MinGW
6708    
6709    Reviewed-by: Jon TURNEY <jon.turney@dronecode.org.uk>
6710
6711commit bf15ccb6821664746ec23d769d757edf8059007e
6712Author: Ryan Pavlik <rpavlik@iastate.edu>
6713Date:   Mon Jan 23 14:18:02 2012 +0000
6714
6715    Add XWindows.h include to Xxcbint.h
6716    
6717    This avoids some conflicting type re-definition errors which occur if
6718    we attempt to include Windows headers after Xmd.h
6719    
6720    Reviewed-by: Jon TURNEY <jon.turney@dronecode.org.uk>
6721
6722commit cadcbd376f0a5d17a71a2fe2f8ced5d93232921a
6723Author: Matt Dew <marcoz@osource.org>
6724Date:   Sat Jan 21 17:59:51 2012 -0700
6725
6726    informaltable & table cleanup
6727    
6728    On certain tables, add top and bottom borders to table header
6729    and a bottom border to the table. This matches what those
6730    tables in the old pdfs looked like.
6731    
6732    the <?dbfo keep-together='always'> prevents tables from
6733    splitting across pages. Useful for tiny tables.
6734    
6735    Converting the colwidth to a floating point, IE, 1* -> 1.0*
6736    cleans up these build errors:
6737    WARNING: table-layout="fixed" and column-width unspecified =>
6738    falling back to proportional-column-width(1)
6739    
6740    Signed-off-by: Matt Dew <marcoz@osource.org>
6741
6742commit bb551f654df8f647c867f79252241964521e689e
6743Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6744Date:   Wed Dec 28 21:22:41 2011 -0800
6745
6746    Add more Xkb man pages to the See Also lists for core keyboard functions
6747    
6748    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6749    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
6750
6751commit b7bb23fe7c8b8a17128e5bc98a05f68595190438
6752Author: Gaetan Nadon <nadon@memsize.(none)>
6753Date:   Fri Dec 30 17:08:14 2011 -0500
6754
6755    docbook.am: embed css styles inside the HTML HEAD element
6756    
6757    Rather than referring to the external xorg.css stylesheet, embed the content
6758    of the file in the html output produced. This is accomplished by using
6759    version 1.10 of xorg-xhtml.xsl.
6760    
6761    This makes the whole html docs tree much more relocatable.
6762    In addition, it eliminates xorg.css as a runtime file which makes
6763    xorg-sgml-doctools a build time only package.
6764    
6765    Signed-off-by: Gaetan Nadon <nadon@memsize.(none)>
6766
6767commit 70505468b7c4a7068cc39be42e421dcee34ec595
6768Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6769Date:   Tue Dec 13 19:58:30 2011 -0800
6770
6771    makekeys: move buf declaration from global to main to silence gcc -Wshadow
6772    
6773    The global was only referenced in the main() function, which passes it
6774    as an argument of the same name to the parse_line() function, leading
6775    to gcc -Wshadow warnings:
6776    
6777    makekeys.c: In function ‘parse_line’:
6778    makekeys.c:58:24: warning: declaration of ‘buf’ shadows a global declaration
6779    makekeys.c:54:13: warning: shadowed declaration is here
6780    
6781    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6782
6783commit 87e10a7b9a97c951ab4d477f61177779ac0a6a66
6784Author: Kusanagi Kouichi <slash@ac.auone-net.jp>
6785Date:   Wed Dec 14 02:17:55 2011 -0500
6786
6787    XQueryColors: Split a request into multiple requests if necessary
6788    
6789    https://bugs.freedesktop.org/show_bug.cgi?id=9160
6790    
6791    Signed-off-by: Kusanagi Kouichi <slash@ac.auone-net.jp>
6792    Signed-off-by: James Cloos <cloos@jhcloos.com>
6793
6794commit d3b3570592e9b9e57f270a0bd86762fd205a2833
6795Author: Andreas Wettstein <wettstein509@solnet.ch>
6796Date:   Tue Nov 8 20:18:09 2011 +0000
6797
6798    XIM: Allow modifier releases in compose sequences (#26705)
6799    
6800    Currently, only non-modifier keys (actually, keysyms) can be part of a compose
6801    sequence, and they are matched against the defined compose sequences at the
6802    time the key is pressed.  The patch allows to use modifier keys an well, but
6803    matches them on key release, and only if no other key has been pressed after
6804    the modifier.
6805    
6806    Releasing a non-matched modifier during an ongoing compose sequence only aborts
6807    the sequence if any modifier release would have matched.  In particular, if no
6808    compose sequences with modifiers are specified, the compose mechanism works
6809    exactly as without this patch.
6810    
6811    Even if modifiers are part of a compose sequence, they are not filtered.  This
6812    is because modifiers affect the keyboard state no matter what we do here and,
6813    therefore, filtering them only could confuse clients.
6814    
6815    The purpose is this extension to the compose mechanism is to allow to make
6816    better use of keys in convenient reach for touch typing.
6817    
6818    Signed-off-by: Andreas Wettstein <wettstein509@solnet.ch>
6819    Signed-off-by: James Cloos <cloos@jhcloos.com>
6820
6821commit 56448a626fc90bcf75a1fa2f4c294b0eb1f23bd6
6822Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6823Date:   Tue Nov 29 23:56:57 2011 -0800
6824
6825    Reject negative string counts in copy_string_list
6826    
6827    Silences parfait warning of a potential memory leak:
6828       Memory leak of pointer 'dst' allocated with malloc(length)
6829            at line 160 of FSWrap.c in function 'copy_string_list'.
6830              'dst' allocated at line 145 with malloc(length).
6831              dst leaks when count <= 0 at line 154.
6832    
6833    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6834
6835commit bf2d7c8c6d70539c72560b1921e18df2610acf29
6836Author: Peter Hutterer <peter.hutterer@who-t.net>
6837Date:   Fri Nov 11 14:56:36 2011 +1000
6838
6839    libX11 1.4.99.1
6840    
6841    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
6842
6843commit 24283d40b1e4314c6647dda49d2a159833341a8b
6844Author: Derek Buitenhuis <derek.buitenhuis@gmail.com>
6845Date:   Thu Sep 22 18:44:13 2011 -0400
6846
6847    makekeys: Fix build/target word size mismatch when cross-compiling
6848    
6849    Since makekeys is built using build environment's gcc and
6850    runs natively, we have to make sure that the size of the
6851    Signature type is the same on both the native environment
6852    and the target, otherwise we get mismatches upon running X,
6853    and some LSB test failures (xts5).
6854    
6855    Use an unsigned 32-bit integer on all platforms. Also,
6856    eliminate the redundant multiple typedefs for the
6857    Signature type.
6858    
6859    Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
6860    Reviewed-by: Daniel Stone <daniel@fooishbar.org>
6861
6862commit 1c41f3b9b86b5eeedfa3bff92e519d45aa097587
6863Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6864Date:   Wed Nov 9 21:00:36 2011 -0800
6865
6866    XlcSL.c: convert old-style function definitions to ANSI C89 style
6867    
6868    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6869
6870commit f6dad6aaa384bf836baa28ccb72b476a85c40eff
6871Author: Peter Hutterer <peter.hutterer@who-t.net>
6872Date:   Thu Oct 27 13:53:22 2011 +1000
6873
6874    Use GetReqSized for GetReq and GetReqExtra
6875    
6876    GetEmptyReq and GetResReq cannot do this due to the final typecast -
6877    typically requests that need either of those do not have their own typedef
6878    in the protocol headers.
6879    
6880    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
6881    Reviewed-by: Jamey Sharp <jamey@minilop.net>
6882
6883commit c9c99058b9d98789c0b2d7e78a23443c2b57a047
6884Author: Peter Hutterer <peter.hutterer@who-t.net>
6885Date:   Fri Oct 14 14:51:06 2011 +1000
6886
6887    include: Add GetReqSized() for request buffers of specific size
6888    
6889    Some XI2 requests change in size over different versions and libXi would
6890    need to hack around GetReq and GetReqExtra. Add a new GetReqSized so the
6891    library can explicitly specify the size of the request in 4-byte units.
6892    
6893    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
6894    Reviewed-by: Jamey Sharp <jamey@minilop.net>
6895
6896commit ba8a7a19165e30d14bc165f43f67c19b6a115585
6897Author: Peter Hutterer <peter.hutterer@who-t.net>
6898Date:   Thu Oct 27 13:24:10 2011 +1000
6899
6900    Switch GetEmptyReq and GetResReq to call _XGetRequest
6901    
6902    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
6903    Reviewed-by: Jamey Sharp <jamey@minilop.net>
6904
6905commit 4a060f993bf676cf21ad9784e010f54134da7b40
6906Author: Peter Hutterer <peter.hutterer@who-t.net>
6907Date:   Mon Oct 17 09:45:15 2011 +1000
6908
6909    Add _XGetRequest as substitute for GetReq/GetReqExtra
6910    
6911    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
6912    Reviewed-by: Jamey Sharp <jamey@minilop.net>
6913
6914commit d8956520deb79c1cbb5e974c175bf8493859b22b
6915Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6916Date:   Fri Oct 14 17:53:00 2011 -0700
6917
6918    Fix "nomal" -> "normal" typo in several comments
6919    
6920    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6921
6922commit 002b36e308a26a152504f9b40aa08a0dce9a7991
6923Author: Xue Wei <Wei.Xue@Sun.COM>
6924Date:   Fri Oct 14 17:39:21 2011 -0700
6925
6926    mbtocs should not truncate input
6927    
6928    Fixes pasting more than 1024 bytes into xterm, as described in
6929    https://bugs.freedesktop.org/show_bug.cgi?id=25209
6930    
6931    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6932
6933commit 9b8d8c9e5b27273e8856a3851ba9b68022bed3cd
6934Author: Marko Myllynen <myllynen@redhat.com>
6935Date:   Mon Oct 10 09:41:13 2011 +0300
6936
6937    Add new compose sequences
6938    
6939    This patch adds few new compose sequences to the en_US map, ligatures
6940    common in typesetting and sequences already in use in the fi_FI map.
6941    
6942    https://bugs.freedesktop.org/show_bug.cgi?id=30621
6943    https://bugs.freedesktop.org/show_bug.cgi?id=34523
6944    
6945    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
6946
6947commit 738f7b867341c1da87ee667d48815822715c3e75
6948Author: Choe Hwanjin <choe.hwanjin@gmail.com>
6949Date:   Thu Oct 13 07:58:02 2011 +0900
6950
6951    XIM: Make Xim handle NEED_SYNC_REPLY flag
6952    
6953    NEED_SYNC_REPLY flag should be in Xim not in Xic.
6954    Because the focused Xic can be changed before sending sync reply.
6955    After focused Xic changed, the new Xic doesn't have NEED_SYNC_REPLY
6956    flag enabled, so libX11 doesn't send XIM_SYNC_REPLY packet.
6957    
6958    This patch adds sync reply flag to Xim and removes sync reply
6959    from Xic.
6960    
6961    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=7869
6962    
6963    Signed-off-by: Choe Hwanjin <choe.hwanjin@gmail.com>
6964    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
6965
6966commit 50e15379331c436851abb194251cde96999e67b3
6967Author: Bodo Graumann <mail@bodograumann.de>
6968Date:   Mon Oct 10 16:40:52 2011 +0200
6969
6970    libX11: Fixing modifier key range in Xutil.h (Bug #21910)
6971    
6972    IsModifierKey, defined in include/X11/Xutil.h, is a macro determining,
6973    which keys are regarded as modifiers. The constants ISO_Level5_Shift,
6974    ISO_Level5_Latch and ISO_Level5_Lock where excluded previously, leaving
6975    some Neo2 modifiers functionless in combination with compose.
6976    This patch adjusts the range to include the correct, full range of
6977    modifier constants.
6978    
6979    Neo2 Bug 277 <http://wiki.neo-layout.org/ticket/277>
6980    
6981    X.Org Bug 21910 <http://bugs.freedesktop.org/show_bug.cgi?id=21910>
6982    
6983    Signed-off-by: Bodo Graumann <mail@bodograumann.de>
6984    Reviewed-by: Daniel Stone <daniel@fooishbar.org>
6985
6986commit b5a108624331fabf393223c0891914cc54d4caf4
6987Author: Yann Droneaud <yann@droneaud.fr>
6988Date:   Tue Oct 11 17:27:59 2011 +0200
6989
6990    Return name instead of False in XSetICValues()
6991    
6992    In case of error, XSetICValues() must return the first argument
6993    that failed to be set.
6994    
6995    But in some error paths, it returns False, which is converted to NULL,
6996    so the function returns OK in case of error.
6997    
6998    Signed-off-by: Yann Droneaud <yann@droneaud.fr>
6999    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
7000
7001commit 10992cb8dc5e4d938e7e5a633b68a81b5875f3ba
7002Author: Yann Droneaud <yann@droneaud.fr>
7003Date:   Sun Oct 9 17:56:45 2011 +0200
7004
7005    Return name instead of value in XGetIMValues() and XSetIMValues()
7006    
7007    As stated in man page (XOpenIM) and Xlib documentation (chapter 13.5.3),
7008    XGetIMValues() and XSetImValues() "returns the name of the first argument
7009    that could not be obtained."
7010    
7011    But currently,
7012    
7013      err = XGetIMValues(im, "invalid", &arg, NULL);
7014    
7015    returns &arg instead of "invalid".
7016    
7017    This patch fixes https://bugs.freedesktop.org/show_bug.cgi?id=12897
7018    
7019    Signed-off-by: Yann Droneaud <yann@droneaud.fr>
7020    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
7021
7022commit f2651e03f3295a453a2965c3749bc8b6e66f1c09
7023Author: Jeremy Huddleston <jeremyhu@apple.com>
7024Date:   Mon Oct 10 14:09:17 2011 -0700
7025
7026    Mark XKeycodeToKeysym as _X_DEPRECATED
7027    
7028    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
7029
7030commit 25d7bb9c705623ebbb3afba3b86d0ded5b6bb4fb
7031Author: Jeremy Huddleston <jeremyhu@apple.com>
7032Date:   Sun Oct 9 02:38:28 2011 -0700
7033
7034    Fix nobreakspace for pt_BR.UTF-8
7035    
7036    https://bugs.freedesktop.org/show_bug.cgi?id=31334
7037    
7038    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
7039
7040commit 913603660c17ec59a4d39d3e3b9d60469ee5c060
7041Author: Jeremy Huddleston <jeremyhu@apple.com>
7042Date:   Sun Oct 9 02:26:45 2011 -0700
7043
7044    Fix potential uninitialized variable access in _XimMakeICAttrIDList
7045    
7046    Found by clang static analysis
7047    
7048    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
7049
7050commit 566ceaf5a92c721ac7155528e4d0d2e5cbef023f
7051Author: Jeremy Huddleston <jeremyhu@apple.com>
7052Date:   Sun Oct 9 02:25:50 2011 -0700
7053
7054    Remove self-resolving aliases
7055    
7056    https://bugs.freedesktop.org/show_bug.cgi?id=30112
7057    
7058    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
7059
7060commit 22ba43d198dcca86c88eb15a56fc7d8fc47c422e
7061Author: Matt Dew <marcoz@osource.org>
7062Date:   Fri Oct 7 22:52:30 2011 -0600
7063
7064    Cleanup IDs and links in doc
7065    
7066    1 - fix the capitalization of the ID attributes to match either the
7067         <title> or <funcdef> string it goes with.
7068    2 - fix any <linkend>'s that were affected by 1.
7069    3 - any <function> in the docs that has an actual funcdef,
7070    will become an olink.
7071    
7072    Signed-off-by: Matt Dew <marcoz@osource.org>
7073
7074commit f858f3326adbc0c5711669b92a64a84a9083a055
7075Author: James Cloos <cloos@jhcloos.com>
7076Date:   Tue Oct 4 17:11:11 2011 -0400
7077
7078    [nls] Fix typo/synco.
7079    
7080    The iso8859-1 Compose table includes an optional section which uses
7081    Ctrl<T> as a substitute for <Multi_key>.  In that section the sequence
7082    to generate an @ (at) either was incorrectly copied from the Multi_key
7083    section or was not kept in sync with the Multi_key section.
7084    
7085    Fixing this eliminates the warning from compose-check.pl:
7086    
7087    ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
7088    ┃ Clash with existing sequence in iso8859-1/Compose.pre
7089    ┃  on line 661: Ctrl<T> <A> <A>
7090    ┃    line #661: Ctrl<T> <A> <A>         : "\305"        Aring
7091    ┃    line #480: Ctrl<T> <A> <A>         : "@"   at
7092    ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
7093    
7094    Signed-off-by: James Cloos <cloos@jhcloos.com>
7095
7096commit 7f35f7efc23234b3f8529fee31a802c21846d9ab
7097Author: Jeremy Huddleston <jeremyhu@apple.com>
7098Date:   Mon Sep 26 11:32:56 2011 -0700
7099
7100    Remove conflicting compose sequences for cent and colon
7101    
7102    Regression from 4d78ad4bf6dcabca9bb5f84c770abfbb02d3f7a4
7103    Found by tinderbox
7104    
7105    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
7106
7107commit 4d78ad4bf6dcabca9bb5f84c770abfbb02d3f7a4
7108Author: Jeremy Huddleston <jeremyhu@apple.com>
7109Date:   Sun Sep 25 16:29:17 2011 -0700
7110
7111    Add additional compose sequences for pound sterling, yen, and cent (mixed case)
7112    
7113    https://bugs.freedesktop.org/show_bug.cgi?id=1013
7114    
7115    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
7116    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
7117
7118commit 0ca4153a373e2af7a9eb3cef003393ab332bc79e
7119Author: Jeremy Huddleston <jeremyhu@apple.com>
7120Date:   Sat Sep 24 16:44:04 2011 -0700
7121
7122    Use a configure check for seteuid
7123    
7124    HP-UX doesn't have seteuid
7125    
7126    https://bugs.freedesktop.org/show_bug.cgi?id=1497
7127    
7128    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
7129
7130commit 79594b4d66344f248eb4314ecb78eb81f632c3ab
7131Author: Gaetan Nadon <memsize@videotron.ca>
7132Date:   Tue Sep 20 16:06:10 2011 -0400
7133
7134    localedb specs: use <copyright> for first holder of multi license
7135    
7136    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
7137
7138commit 154430268cf004b06920edde2f1812dc16d71fae
7139Author: Gaetan Nadon <memsize@videotron.ca>
7140Date:   Tue Sep 20 16:01:52 2011 -0400
7141
7142    libX11 specs: use <copyright> for first holder of multi license
7143    
7144    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
7145
7146commit 66e621f58dee804acb795ff2c79ce6dd38b34a3f
7147Author: Tollef Fog Heen <tfheen@err.no>
7148Date:   Tue Sep 20 13:07:37 2011 -0400
7149
7150    NLS: Add more vulgar fractions
7151    
7152    Add 1/7, 1/9, 1/10 and 0/3 vulgar fractions.
7153    
7154    Signed-off-by: Tollef Fog Heen <tfheen@err.no>
7155    Signed-off-by: James Cloos <cloos@jhcloos.com>
7156
7157commit e37a6da814b5653be46000a9a76902729660a2e6
7158Author: Alexander Polakov <polachok@gmail.com>
7159Date:   Sat Sep 17 20:54:58 2011 +0400
7160
7161    XGrabKey manual page: change XAllowAccess to XAllowEvents in See Also
7162    
7163    There is no XAllowAccess man page to see.
7164    
7165    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7166    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7167
7168commit a23f3323f269b33a43d16dce01395cd28bc41b45
7169Author: Gaetan Nadon <memsize@videotron.ca>
7170Date:   Mon Sep 19 15:27:44 2011 -0400
7171
7172    XKB: provide adequate quotes for the license text
7173    
7174    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
7175
7176commit a9c7a5cad91d968f5536ef8fc735036e921832a3
7177Author: Gaetan Nadon <memsize@videotron.ca>
7178Date:   Mon Sep 19 15:18:53 2011 -0400
7179
7180    XIM: refactor the multi licensing legal text
7181    
7182    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
7183
7184commit c46f934ed89e7de79746a0387c9f998d91994ea6
7185Author: Gaetan Nadon <memsize@videotron.ca>
7186Date:   Mon Sep 19 10:33:30 2011 -0400
7187
7188    xim trans: restore Fujitsu copyright legal text
7189    
7190    Somehow lost during docbook conversion. text from x.org ftp R7.5.
7191    
7192    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
7193
7194commit 3d75f993382bfdc89d31668d7dfc71c91222e0d7
7195Author: Gaetan Nadon <memsize@videotron.ca>
7196Date:   Mon Sep 19 10:11:46 2011 -0400
7197
7198    xtrans: restore X Consortium original legal text
7199    
7200    Asking X Consortium permission to use The Open Group name makes no sense.
7201    Even more so in 1994 before X Window System was passed on to the Open Group.
7202    
7203    Using original text from xorg-docs/general/License
7204    
7205    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
7206
7207commit 136a381585a4a9686c11bad1a6130837978e677f
7208Author: Gaetan Nadon <memsize@videotron.ca>
7209Date:   Mon Sep 19 10:03:21 2011 -0400
7210
7211    Framework: restore X Consortium copyright
7212    
7213    Somewhat dammaged during docbook conversion.
7214    Also restore pasrt of the original license text
7215    
7216    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
7217
7218commit 33f346878406762704a0c13cdc018111c666f3c1
7219Author: Gaetan Nadon <memsize@videotron.ca>
7220Date:   Mon Sep 19 09:50:00 2011 -0400
7221
7222    localedb: restore X Consortium original legal text
7223    
7224    Asking X Consortium permission to use The Open Group name makes no sense.
7225    Even more so in 1994 before X Window System was passed on to the Open Group.
7226    
7227    Using original text from xorg-docs/general/License
7228    
7229    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
7230
7231commit e99c9338e413efca026210b9d830efb5c74d34e5
7232Author: Gaetan Nadon <memsize@videotron.ca>
7233Date:   Mon Sep 19 08:23:18 2011 -0400
7234
7235    specs: support multi licensed copyright notice and license text
7236    
7237    For documentation having multiple licenses, the copyright and legalnotice
7238    elements sequence cannot instantiated multiple times.
7239    The copyright notice and license text are therefore coded inside a
7240    legalnotice element. The role attribute on the paragraph is used to allow
7241    styling of the copyright notice text which should not be italicized.
7242    
7243    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
7244
7245commit b9dedc757e667333ce899115d618f25cdaa4dd5e
7246Author: Gaetan Nadon <memsize@videotron.ca>
7247Date:   Mon Sep 19 08:17:50 2011 -0400
7248
7249    localedb: add release info to spec
7250    
7251    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
7252
7253commit 4519c89a87ddce01e599542737a27c26030fe4ff
7254Author: Gaetan Nadon <memsize@videotron.ca>
7255Date:   Mon Sep 19 08:05:32 2011 -0400
7256
7257    specs: fix The Open Group license text
7258    
7259    The warranty referred to the X Consortium
7260    
7261    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
7262
7263commit 08ac378423e7be72e340197ba5559a1a36f1783c
7264Author: Gaetan Nadon <memsize@videotron.ca>
7265Date:   Mon Sep 19 08:03:39 2011 -0400
7266
7267    specs: The strandard name is still "X Consortium Standard"
7268    
7269    This spec, and fsproto spec, are the only two docs with a different
7270    standard name.
7271    
7272    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
7273
7274commit 8dfbeb1b1b1e8aa17f69d0a373155419a5f6a172
7275Author: Gaetan Nadon <memsize@videotron.ca>
7276Date:   Sun Sep 18 13:22:34 2011 -0400
7277
7278    specs: support multi licensed copyright notice and license text
7279    
7280    For documentation having multiple licenses, the copyright and legalnotice
7281    elements sequence cannot instantiated multiple times.
7282    The copyright notice and license text are therefore coded inside a legalnotice
7283    element. The role attribute on the paragraph is used to allow styling of the
7284    copyright notice text which should not be italicized.
7285    
7286    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
7287
7288commit 278ca8947c1dabb2b819527dca0fa6190c034f67
7289Author: Gaetan Nadon <memsize@videotron.ca>
7290Date:   Fri Sep 16 11:45:56 2011 -0400
7291
7292    docs: merge copyright holder under the same copyright notice
7293    
7294    As per the docbook markup dtd.
7295    
7296    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
7297
7298commit 7ff012bb433109a622ac122ade71669e842ebdcf
7299Author: Gaetan Nadon <memsize@videotron.ca>
7300Date:   Fri Sep 16 10:09:57 2011 -0400
7301
7302    specs: handle multiple sets of copyright notice/license/warranty
7303    
7304    Docbook groups all the <copyright> elements together and all the
7305    <legalnotice> elements together.
7306    
7307    We cannot have a sequence:
7308    <copyright> <legalnotice> <copyright> <legalnotice> [...]
7309    
7310    A workaround, which was done in some documents, is to put the copyright
7311    notice inside the legalnotice in plain text without the <copyright> element.
7312    A formal paragraph title is added here which makes the copyright notice bold,
7313    and makes it much easier to locate.
7314    
7315    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7316    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
7317
7318commit 4a550c71b8221c37b1a9378d5a170da9eaa03405
7319Author: Gaetan Nadon <memsize@videotron.ca>
7320Date:   Wed Sep 14 15:55:42 2011 -0400
7321
7322    specs: remove orphan affiliation.
7323    
7324    Authors affiliation are correct.
7325    
7326    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
7327
7328commit 0cc02a6df65214560b7575e89cebee741d6d2469
7329Author: Gaetan Nadon <memsize@videotron.ca>
7330Date:   Tue Sep 13 17:39:02 2011 -0400
7331
7332    specs: use appropriate markup for Copyright statements
7333    
7334    Also move <releaseinfo> to match order of appearance
7335    
7336    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
7337
7338commit afe13e19ebf0fc4e3460644164433af016f0add7
7339Author: Gaetan Nadon <memsize@videotron.ca>
7340Date:   Mon Sep 12 16:54:45 2011 -0400
7341
7342    docs: use the &fullrelvers; entity to set X11 release information
7343    
7344    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
7345
7346commit 22a2153282db13e9d94881022b8c979539841a2c
7347Author: Gaetan Nadon <memsize@videotron.ca>
7348Date:   Sun Sep 11 19:49:53 2011 -0400
7349
7350    docs: remove <productnumber> which is not used by default
7351    
7352    This element is not rendered by default on the title. A template
7353    customization is required to display it.
7354    X Window System does not have a product number.
7355    
7356    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
7357
7358commit 719f16570d9fcfd15247813ee51fa51ac8a6ff4c
7359Author: Gaetan Nadon <memsize@videotron.ca>
7360Date:   Sun Sep 11 17:40:21 2011 -0400
7361
7362    docs: use the &fullrelvers; entity to set X11 release information
7363    
7364    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
7365
7366commit a6b2992f50b571d612ea9ade631c432c3099bc12
7367Author: Gaetan Nadon <memsize@videotron.ca>
7368Date:   Sun Sep 11 17:38:42 2011 -0400
7369
7370    docs: remove orphan <affiliation>
7371    
7372    Somehow created during the conversion from roff. Unable to locate
7373    the author to which it belongs.
7374    
7375    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
7376
7377commit c7420060b6e47b8467ba50c796ec3c1bab090bc7
7378Author: Gaetan Nadon <memsize@videotron.ca>
7379Date:   Sun Sep 11 17:38:05 2011 -0400
7380
7381    docs: remove <productnumber> which is not used by default
7382    
7383    This element is not rendered by default on the title. A template
7384    customization is required to display it.
7385    X Window System does not have a product number.
7386    
7387    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
7388
7389commit 7d5b718c1edbc43c54b7001be548e515a49540ea
7390Author: Gaetan Nadon <memsize@videotron.ca>
7391Date:   Fri Sep 9 14:46:39 2011 -0400
7392
7393    docbook.am: embed css styles inside the HTML HEAD element
7394    
7395    Rather than referring to the external xorg.css stylesheet, embed the content
7396    of the file in the html output produced. This is accomplished by using
7397    version 1.10 of xorg-xhtml.xsl.
7398    
7399    This makes the whole html docs tree much more relocatable.
7400    In addition, it eliminates xorg.css as a runtime file which makes
7401    xorg-sgml-doctools a build time only package.
7402    
7403    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
7404
7405commit 24632d280491c465dfe208ef788815890892e326
7406Author: Gaetan Nadon <memsize@videotron.ca>
7407Date:   Mon Sep 5 12:53:12 2011 -0400
7408
7409    compose: upgrade makefile to support olinking on chunked html
7410    
7411    The essential differences over the regular docbook.am are:
7412    Adding root.filename parameter for naming of chapters html files.
7413    Using xhtml xmlto format and xorg-chunk.xsl stylesheet
7414    Set olink.base.uri for pdf but not for chunked html
7415    Olink is not applicable to ps and txt formats.
7416    
7417    Html chapters are added to shelf_DATA as they are also installed.
7418    The xml is generated from a perl script and not distributed.
7419    
7420    Requires version 1.10 of xorg-sgml-doctools.
7421    
7422    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
7423
7424commit 93ab0a1c9a4f9094cf0c8e1c686130673e681798
7425Author: Gaetan Nadon <memsize@videotron.ca>
7426Date:   Wed Aug 31 19:46:20 2011 -0400
7427
7428    docbook.am: refactor common flags for xmlto and xsltproc
7429    
7430    Maximize reuse and reduce risk of setting the wrong flag
7431    at the wrong place.
7432    
7433    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
7434
7435commit 85b725aa9ef76aeb5e94d42e0cd60f896da7ab97
7436Author: Gaetan Nadon <memsize@videotron.ca>
7437Date:   Wed Aug 31 10:46:59 2011 -0400
7438
7439    docbook.am: add search path for local entities
7440    
7441    Currently, only $(XORG_SGML_PATH)/X11 is searched for xml entities.
7442    A module may want to add entities that apply only to itself and
7443    not to all modules, like the xserver does.
7444    
7445    This feature may or may not be used in this module, but all modules
7446    share a copy of docbook.am.
7447    
7448    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
7449
7450commit b5ed2d368d47f244d43d2513329fa2758bc4ef54
7451Author: Gaetan Nadon <memsize@videotron.ca>
7452Date:   Thu Aug 25 14:39:20 2011 -0400
7453
7454    docbook.am: explicitly list xmlto flags for each target
7455    
7456    Normal evolution of make targets make it impractical to factor out
7457    common command flags for xmlto.
7458    
7459    The targets now list each command option as its presence or absence
7460    needs to be justified.
7461    
7462    xorg.ss is only needed by xmlto for html.
7463    masterdb is only needed by xmlto.
7464    img.src.path must not be used by html.
7465    xsltproc need to use customization layer xorg-*.xsl.
7466    txt format is not required to search masterdb.
7467    
7468    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
7469
7470commit d5b3605f3b0639452e892e9ff3afb18bb7442069
7471Author: Gaetan Nadon <memsize@videotron.ca>
7472Date:   Thu Aug 25 13:12:49 2011 -0400
7473
7474    docbook.am: do not generate docs if docbook customization layer is missing
7475    
7476    The stylesheets used to be only about style, fonts or colors.
7477    Complex features are now used like olink and chunked html which
7478    may cause a build break when stylesheets are missing or lead to hard
7479    to find problem.
7480    
7481    Some modules may be built when stylesheets are present while others
7482    are built without. There is no requirement to build crippled docs.
7483    
7484    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
7485
7486commit 7f23c72c94d9d14122426b0d8c66054f1402769a
7487Author: Gaetan Nadon <memsize@videotron.ca>
7488Date:   Fri Aug 5 14:33:32 2011 -0400
7489
7490    libX11 specs: review doclifter generated tables
7491    
7492    Many tables had a questionnable layout and some had information dropped.
7493    Each table was cross-referenced with a pre-docbook version
7494    to ensure semantic integrity.
7495    
7496    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
7497
7498commit 1efdbeb8cd08f443188ac783cbab6ba0654a66d6
7499Author: Gaetan Nadon <memsize@videotron.ca>
7500Date:   Wed Jul 20 15:28:47 2011 -0400
7501
7502    credits.xml: remove toc from Acknowledgments
7503    
7504    There should be no toc for a simple preface with only one
7505    Acknowledgments section.
7506    
7507    Use <simplesect> markup rather than sect1.
7508    
7509    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
7510
7511commit 77cc17ed0817c1df3ac5feb9dc83a5ba5d021a4b
7512Author: Gaetan Nadon <memsize@videotron.ca>
7513Date:   Thu Aug 4 19:59:37 2011 -0400
7514
7515    libX11 specs: move </para> above <varaiablelist>
7516    
7517    Many, but not all, function synopsis have a paragraph that
7518    nests the variable list. The code was generated by doclifter
7519    and there is no apprent reasons as to why it was done this way.
7520    Found while investigating a spacing issue.
7521    
7522    Before the patch:
7523    <para>Some blurb about the function
7524    <funcsynopsis>
7525    </funcsynopsis>
7526    <variablelist>
7527    </variablelist>
7528    </para>
7529    
7530    After the patch:
7531    <para>Some blurb about the function</para>
7532    <funcsynopsis>
7533    </funcsynopsis>
7534    <variablelist>
7535    </variablelist>
7536    
7537    There are no noticable differences when reading the doc
7538    other than than the removed few pixels of spacing between
7539    the function sysnopsis and the variable list block.
7540    
7541    In some cases, there are no "blurb about the fucntion"
7542    and the empty paragraph is removed.
7543    
7544    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
7545
7546commit 18595f0d8f95ff1c12e7b9f73bd4b30dda5c7168
7547Author: Gaetan Nadon <memsize@videotron.ca>
7548Date:   Thu Jul 28 19:46:14 2011 -0400
7549
7550    compose specs: generate chunked html
7551    
7552    For large 600 page documents such as this one, chunked html
7553    provide faster browser load time and better navigation.
7554    
7555    Simply click on the locale of your choice in the toc and
7556    the browser loads just that one file. Being a DocBook,
7557    it benefits from all of the usual features and can be
7558    integrated with the rest of the documentation.
7559    
7560    Acked-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7561    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
7562
7563commit 5cc8815b8a117cf0b6af37e7d55c5a420d9fff57
7564Author: Gaetan Nadon <memsize@videotron.ca>
7565Date:   Thu Jun 23 15:16:47 2011 -0400
7566
7567    specs: build compose keys tables in specs/i18n/compose
7568    
7569    Build the tables article together with the rest of the specs.
7570    Make it transparent that the source in generated in nls.
7571    Reuse docbook.am and get all the features such as olink.
7572    
7573    The docbook article file stem and id must be the same. The new name
7574    for the main article is libX11-keys. The new installation location
7575    is $docdir/libX11/i18n/compose.
7576    
7577    The nls dir retains the role of generating the DocBook/XML source
7578    but does not build neither installs output formats or generated source.
7579    
7580    The tables article now has to specify that each included locale
7581    section is a dependency. It did not matter before as they were web links.
7582    
7583    The xorg-sgml-doctools masterdb shall be updated to include this new doc.
7584    Install location moved from doc/libX11/Compose to doc/libX11/i18n/compose.
7585    
7586    Acked-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7587    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
7588
7589commit adebbe3856b4aee39c0c7af902c1dea847dd6d7c
7590Author: Gaetan Nadon <memsize@videotron.ca>
7591Date:   Thu Jun 23 14:43:31 2011 -0400
7592
7593    nls: restructure charts as a single article with sections
7594    
7595    Looks more like a real article with a toc rather than individual
7596    web pages. Looks nicer in pdf.
7597    
7598    Each locale is a "section" rather than an "article".
7599    Using XInclude to aggregate xml source files gets you the toc for free.
7600    
7601    The single document is over 600 pages while there were 62 separate
7602    documents previously. FOP version 1.0 is required to handle missing
7603    character like capital sharp s.
7604    
7605    Acked-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7606    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
7607
7608commit fc74dc12b1ff3c43e240e1a713316ce1bf525d61
7609Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7610Date:   Thu Jul 28 19:32:40 2011 -0700
7611
7612    libX11 1.4.4
7613    
7614    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7615
7616commit ab1f30231755d99ed123af6873b981834640f01d
7617Author: Matt Dew <marcoz@osource.org>
7618Date:   Wed Jul 13 12:33:40 2011 -0600
7619
7620    Add id attributes to error codes to allow linking from other docs.
7621    
7622    Signed-off-by: Matt Dew <marcoz@osource.org>
7623    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7624    Acked-by: Gaetan Nadon <memsize@videotron.ca>
7625
7626commit 5c831fef402914ccf2ec14005c25be48852f119b
7627Author: David Coppa <dcoppa@gmail.com>
7628Date:   Tue Jul 12 10:05:47 2011 +0200
7629
7630    Fix libpthread linkage on OpenBSD.
7631    
7632    OpenBSD prefers to use the -pthread to fetch pthread libs when needed.
7633    
7634    Signed-off-by: Matthieu Herrb <matthieu.herrb@laas.fr>
7635    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7636
7637commit 445b0b3efc04a74fc77cd3e483b25cfb5da82f12
7638Author: Gaetan Nadon <memsize@videotron.ca>
7639Date:   Wed Jun 22 20:46:26 2011 -0400
7640
7641    config: use XORG_WITH_PERL macro to replace custom program check
7642    
7643    New in version util-macros 1.15, the macro does the usual checking
7644    for program path and provides an interface for makefile variables.
7645    
7646    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7647    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
7648
7649commit 47d99a324db9232029a22dd523e3bc3ed0936aca
7650Author: Gaetan Nadon <memsize@videotron.ca>
7651Date:   Wed Jun 22 20:41:18 2011 -0400
7652
7653    config: update XORG_WITH_FOP macro usage
7654    
7655    A new feature to test for a minimum version has been added.
7656    
7657    The parameter position changed. Due to limited usage
7658    and requiring 1.15, it turns out to be backward compatible.
7659    
7660    There is no functional change to how docs are build.
7661    
7662    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
7663
7664commit e659683ad51ecc26c989fbdefdfe20f83af2c5a5
7665Author: Gaetan Nadon <memsize@videotron.ca>
7666Date:   Wed Jun 22 11:48:49 2011 -0400
7667
7668    Remove unused xmlrules.in in specs, now in /nls
7669    
7670    The specs dir has been converted to docbook.am
7671    
7672    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
7673
7674commit 9992092609bd83a0db778e9a9ac1e879d445e637
7675Author: Gaetan Nadon <memsize@videotron.ca>
7676Date:   Thu Mar 31 10:23:22 2011 -0400
7677
7678    nls: move xmlrules.in from specs to nls
7679    
7680    It is no longer used in the specs dir.
7681    Remove html from CLEANFILES as it breaks. Make do not clean directories
7682    Remove SUFFIXES as pattern rules are used rather than suffix rules.
7683    
7684    Other improvements are possible, the first priority is to move it out
7685    of the specs dir.
7686    
7687    Acked-by: Peter Hutterer <peter.hutterer@who-t.net>
7688    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
7689
7690commit b370eeb0191b0e2a8bde2f03a442a8ca62e35d58
7691Author: Gaetan Nadon <memsize@videotron.ca>
7692Date:   Sun Jun 5 16:27:36 2011 -0400
7693
7694    Install target dbs alongside generated documents
7695    
7696    This matches a change in xorg-sgml-docs whereby the masterdb will look for
7697    the target dbs into the same location as the generated documents.
7698    
7699    The target dbs are now installed alongside the generated documents.
7700    Previously they are installed in $prefix/sgml/X11/dbs alongside masterdb which
7701    has the potential of installing outside the package prefix and cause
7702    distcheck to fail when user does not have write permission in this package.
7703    
7704    Requires XORG_CHECK_SGML_DOCTOOLS(1.8) which was released 2011-06-11
7705
7706commit 4e741654b7e0a283779b8b4af5bb32e05b7fc678
7707Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7708Date:   Tue Jun 7 18:41:30 2011 -0700
7709
7710    specs/libX11: Turn appendix references into links
7711    
7712    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7713
7714commit a3d1152bc4b300f59ea2f08925739aab1ebfbc4e
7715Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7716Date:   Tue Jun 7 18:37:41 2011 -0700
7717
7718    specs/libX11: Turn chapter references into links
7719    
7720    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7721
7722commit d0cc949dfe44a41a71f19e4fe6c7547bb3d9bdbe
7723Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7724Date:   Tue Jun 7 00:52:32 2011 -0700
7725
7726    specs/libX11: Turn many "see section ..." into links
7727    
7728    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7729
7730commit 02d4c08dead2f266809b3f93ec72377783423ac7
7731Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7732Date:   Sun Jun 5 22:50:37 2011 -0700
7733
7734    specs/libX11: Convert some header filenames to filename tags
7735    
7736    perl -i -p -e 's{^&lt;(.*\.h)&gt;\ *}{<filename class="headerfile">&lt;\1&gt;</filename>}' *.xml
7737    
7738    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7739
7740commit c51a011329afa6e5b9d2b285349c132683ecf9fb
7741Author: Matt Dew <marcoz@osource.org>
7742Date:   Tue May 31 20:03:23 2011 -0600
7743
7744    Add id attributes to funcsynopsis to allow other docs to olink to them.
7745    
7746    Signed-off-by: Matt Dew <marcoz@osource.org>
7747    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7748    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
7749
7750commit 6841260c8bb15404a0b4805bee3b0bdfec7176b3
7751Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7752Date:   Fri May 27 20:14:36 2011 -0700
7753
7754    Bug 37624 - parameter x is missing from synopsis of XDrawString in libX11.html
7755    
7756    https://bugs.freedesktop.org/show_bug.cgi?id=37624
7757    
7758    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7759
7760commit 205af6a4e557c62a6395feadc1c89f4a9fe1713b
7761Author: Matt Dew <marcoz@osource.org>
7762Date:   Sat May 21 00:23:06 2011 -0600
7763
7764    Add id's to functions, to make clickable links.
7765    
7766    Signed-off-by: Matt Dew <marcoz@osource.org>
7767    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
7768
7769commit 5c06bc594473f6ab234724cd90db32e7b57fe811
7770Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7771Date:   Fri May 20 15:38:08 2011 -0700
7772
7773    libX11 spec: fix monospaced column alignment after deligaturization
7774    
7775    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7776
7777commit ef0019c714c273cb9b4ad3eba52d0b905109826b
7778Author: James Cloos <cloos@jhcloos.com>
7779Date:   Fri May 20 15:51:46 2011 -0400
7780
7781    Expand latin ligatures out to their NFKC equivalents.
7782    
7783    Ligatures should be done by the typesetting system.
7784    Manuscripts should not bother with them.
7785    
7786    Signed-off-by: James Cloos <cloos@jhcloos.com>
7787    Reviewed-by: Keith Packard <keithp@keithp.com>
7788
7789commit 761b8aa0c9b3c58c478ac5ea1b3aaafadcfc1325
7790Author: Daniel Stone <daniel@fooishbar.org>
7791Date:   Thu May 12 16:21:50 2011 +0200
7792
7793    XCB: Add more friendly error messages for common asserts
7794    
7795    This patch adds more friendly error messages for three common classes of
7796    assertion:
7797        - missed sequence numbers due to being griefed by another thread
7798        - unknown requests in queue due to being griefed by another thread
7799        - extensions dequeuing too much or too little reply data
7800    
7801    It adds error messages offering advice (e.g. call XInitThreads() first)
7802    on stderr, but still generates actual assertions.  Hopefully this means
7803    it's a little more Googleable and a little less frightening.
7804    
7805    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
7806    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
7807
7808commit 159bf292477048b9a2f074735afc516f52c93d80
7809Author: Gaetan Nadon <memsize@videotron.ca>
7810Date:   Thu May 19 20:22:11 2011 -0400
7811
7812    Remove misplaced hyphens in libX11 DocBook/XML #37364
7813    
7814    Reported-by: Christopher Yeleighton <giecrilj@stegny.2a.pl>
7815    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
7816    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7817    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
7818
7819commit 0ee6d8247d397500ae183ef180b6ff21bceefa1c
7820Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7821Date:   Tue May 17 20:49:59 2011 -0700
7822
7823    Fix man page and comment references to use XFreeModifiermap (lowercase map)
7824    
7825    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7826
7827commit 3275ec4ca8790d571b6a1902367ca5f68a2dc5fd
7828Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7829Date:   Tue May 17 20:30:54 2011 -0700
7830
7831    XKB man pages: Fix coordinantes typo in multiple pages
7832    
7833    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7834
7835commit ca33a80606cd68e4572fa49ed6aaa1d1fc31a47f
7836Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7837Date:   Tue May 17 16:27:32 2011 -0700
7838
7839    DisplayOfCCC.man: Fix typo "ClientWhitePointOfCC" -> "ClientWhitePointOfCCC"
7840    
7841    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7842
7843commit ae39d82b01359b07dd1fe092d867f79ea95a5438
7844Author: Jeremy Huddleston <jeremyhu@apple.com>
7845Date:   Sun May 8 09:08:07 2011 -0700
7846
7847    Silence clang static analysis warnings for SetReqLen
7848    
7849    This provides a simplified version of the SetReqLen macro when using clang for
7850    static analysis.  Prior to this change, we would see many Idempotent operation
7851    warnings inside this macro due to the common case of calling with arg2 and
7852    arg3 being the same variable.  This has no effect on code produced during
7853    compilation, but it silences a number of false positives in static analysis.
7854    
7855    XIPassiveGrab.c:170:5: warning: Assigned value is always the same as the existing value
7856        SetReqLen(req, num_modifiers, num_modifiers);
7857        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
7858    In file included from XIPassiveGrab.c:26:
7859    .../include/X11/Xlibint.h:580:8: note: instantiated from:
7860                n = badlen; \
7861                  ^
7862    
7863    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
7864
7865commit 130af2bc02090ee2526adb2f9803fc07019b8f1f
7866Author: Jeremy Huddleston <jeremyhu@apple.com>
7867Date:   Wed May 4 15:34:31 2011 -0700
7868
7869    XKB: XkbComputeSectionBounds: Check correct bounds in default switch-case
7870    
7871    XKBGeom.c:191:25: warning: Access to field 'x1' results in a dereference of a null pointer (loaded from variable 'rbounds')
7872            _XkbCheckBounds(bounds,rbounds->x1,rbounds->y1);
7873                                   ^~~~~~~
7874    
7875    Found-by: clang static analyzer
7876    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
7877    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
7878
7879commit c987ef04bea345d5810e60cf6c53b747ddbe910e
7880Author: Jeremy Huddleston <jeremyhu@apple.com>
7881Date:   Wed May 4 15:31:17 2011 -0700
7882
7883    Revert "XKB: Avoid a possible NULL dereference"
7884    
7885    Sorry for the noise.  I accidentally pushed and didn't mean to. =(
7886    
7887    This reverts commit 4024091678ea07e0d898b798df9b29f3bf68eb08.
7888
7889commit 46d04bc4e7ff6c86385002c929d8eb0310f737a8
7890Author: Jeremy Huddleston <jeremyhu@apple.com>
7891Date:   Wed May 4 11:35:31 2011 -0700
7892
7893    Dead code removal
7894    
7895    XKBGeom.c:118:27: warning: Assigned value is always the same as the existing value
7896        for (key=row->keys,pos=k=0;k<row->num_keys;k++,key++) {
7897                           ~~~^~~~
7898    XKBGeom.c:115:5: warning: Value stored to 'pos' is never read
7899        pos= 0;
7900        ^    ~
7901    
7902    Found-by: clang static analyzer
7903    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
7904
7905commit 4024091678ea07e0d898b798df9b29f3bf68eb08
7906Author: Jeremy Huddleston <jeremyhu@apple.com>
7907Date:   Wed May 4 11:34:53 2011 -0700
7908
7909    XKB: Avoid a possible NULL dereference
7910    
7911    XKBGeom.c:191:25: warning: Access to field 'x1' results in a dereference of a null pointer (loaded from variable 'rbounds')
7912            _XkbCheckBounds(bounds,rbounds->x1,rbounds->y1);
7913                                   ^~~~~~~
7914    
7915    Found-by: clang static analyzer
7916    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
7917
7918commit 626e5e34be55b7cf734d745bd40a7ee3359029f8
7919Author: Jeremy Huddleston <jeremyhu@apple.com>
7920Date:   Wed May 4 11:21:41 2011 -0700
7921
7922    Annotate _XIOError as _X_NORETURN
7923    
7924    Found-by: clang static analyzer
7925    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
7926
7927commit d3d7896408b435ab42656398839ff4351a37724d
7928Author: Jeremy Huddleston <jeremyhu@apple.com>
7929Date:   Tue May 3 09:32:53 2011 -0700
7930
7931    clang analyzer: Don't warn about Xmalloc(0)
7932    
7933    This will prevent a number of false positives in where clang's
7934    static analysis reports about calls to malloc(0).
7935    
7936    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
7937
7938commit 393921cf2188b2b0713cc157effaf17d0abab783
7939Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7940Date:   Thu Apr 21 16:21:04 2011 -0700
7941
7942    Delete special case code to append "/sparcv9" to i18n module path
7943    
7944    Was triggered by defined(__sparcv9) so only built on Solaris SPARC 64-bit.
7945    Inconsistent with all other platforms, and a bit overcomplicated.
7946    
7947    Should anyone need to continue using that path, simply build with
7948    a #define POSTLOCALELIBDIR "sparcv9" to get the same result.
7949    
7950    Fixes Solaris bug 7038737:
7951     sparcv9 Xlib looking in wrong path for i18n loadable modules
7952    
7953    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7954    Reviewed-by: Daniel Stone <daniel@fooishbar.org>
7955
7956commit b9ff9cfd5c56ae6d52c6503f7019756d9de29557
7957Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7958Date:   Thu Apr 14 13:47:12 2011 -0700
7959
7960    specs/libX11: Fix XOpenDisplay() prototype in chapter 2 [bug 36244]
7961    
7962    Was incorrectly showing AllPlanes() instead when describing XOpenDisplay()
7963    
7964    https://bugs.freedesktop.org/show_bug.cgi?id=36244
7965    
7966    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7967
7968commit b850adbdebcf500c659f85285d4d7374e15857f5
7969Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7970Date:   Tue Apr 12 22:30:45 2011 -0700
7971
7972    Convert malloc(strlen()); strcpy() sets to strdup
7973    
7974    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7975    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
7976
7977commit 09194042d3dc44a463add1f7c122a68ffd5ef0bf
7978Author: Alan Coopersmith <alan.coopersmith@oracle.com>
7979Date:   Tue Apr 12 21:27:45 2011 -0700
7980
7981    Replace Xmalloc+bzero pairs with Xcalloc calls
7982    
7983    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7984    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
7985
7986commit ac1e2bff7121987fd768500a11d428d9fb9447c5
7987Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7988Date:   Fri Mar 25 14:47:35 2011 +0200
7989
7990    om: Fix memory leaks on get_font_name error paths.
7991    
7992    While at it, remove unneeded check for NULL before Xfree.
7993    
7994    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7995    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7996
7997commit 7c362e275c93c92b4e68fe862e73ee36665de703
7998Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
7999Date:   Wed Mar 30 15:06:10 2011 +0300
8000
8001    xcms: Fix memory leaks on LINEAR_RGB_InitSCCData error path.
8002    
8003    pScreenData is replaced when building per visual intensity tables. If
8004    malloc failed the old value of pScreenData (stored also in
8005    pScreenDefaultData) was being leaked. Also, property_return wasn't
8006    free'd in that case.
8007    
8008    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8009    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8010
8011commit 5c810e2ac233e00f361549bafb9b59e8a9e05eff
8012Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8013Date:   Wed Mar 30 15:19:28 2011 +0300
8014
8015    xcms: Fix error on LINEAR_RGB_InitSCCData error path.
8016    
8017    Due to what looks like a copy & paste error, pScreenData->pBlueTbl would
8018    be accessed after being free'd.
8019    
8020    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8021    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8022
8023commit d749948f9492fd9b61c74655a08e32c595e0e3a5
8024Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8025Date:   Fri Mar 25 16:06:15 2011 +0200
8026
8027    om: Fix potential memory leak in init_om.
8028    
8029    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8030    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8031
8032commit d0749d6abdf0fd4d8b4e59b02dad8ccda3f10995
8033Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8034Date:   Thu Mar 24 20:40:41 2011 +0200
8035
8036    om: Fix memory leak on read_EncodingInfo error path.
8037    
8038    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8039    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8040
8041commit 4b2e8d00f5b6969c14003ee8eb258b9f0e4dd7c3
8042Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8043Date:   Thu Mar 24 19:55:33 2011 +0200
8044
8045    Fix memory leaks on _XimCbDispatch error path.
8046    
8047    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8048    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8049
8050commit 46e6c78b1a89e4774e0f7e0f4d6d0fd060c3897e
8051Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8052Date:   Thu Mar 24 19:52:05 2011 +0200
8053
8054    Fix memory leak on _XimCommitRecv error path.
8055    
8056    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8057    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8058
8059commit 0ace642a2d47265f01450bfa2b2fd48eb6956a83
8060Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8061Date:   Thu Mar 24 19:48:44 2011 +0200
8062
8063    Fix memory leaks on _XimWriteCachedDefaultTree error paths.
8064    
8065    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8066    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8067
8068commit e29be94edbb58b3b8dab545377a710d1f73b61e0
8069Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8070Date:   Thu Mar 24 19:42:36 2011 +0200
8071
8072    Fix memory leaks on _XimGetAttributeID error paths.
8073    
8074    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8075    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8076
8077commit d144a50512466766f55ce61e3884925334b08f0d
8078Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8079Date:   Thu Mar 24 19:36:56 2011 +0200
8080
8081    Fix memory leaks on _XimProtoCreateIC error paths.
8082    
8083    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8084    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8085
8086commit 6a452f7a98499508f753cb8a7c3f08bcbec736b9
8087Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8088Date:   Thu Mar 24 16:24:29 2011 +0200
8089
8090    Fix leaks in _XimEncodingNegotiation error paths.
8091    
8092    name_ptr and detail_ptr weren't free'd in some cases before returning
8093    False.
8094    
8095    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8096    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8097
8098commit 396e5a452a59c1f121220ba72167b720a863b30f
8099Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8100Date:   Thu Mar 24 14:17:44 2011 +0200
8101
8102    FSWrap: fix potential leak in copy_string_list
8103    
8104    If list_count is 0, dst would be allocated and leaked.
8105    
8106    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8107    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8108
8109commit 1a944260182bb552b954d69f6355c2760d4415df
8110Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8111Date:   Wed Mar 23 14:36:22 2011 +0200
8112
8113    Fix memory leak with broken bitmap files in XReadBitmapFileData
8114    
8115    Bitmap file data is read looping through the lines in the input file. If
8116    there is extra data after the bitmap, these lines will be processed and
8117    if this data represents another bitmap it will replace the one read
8118    before causing the memory allocated for bits to leak.
8119    
8120    This changes the code to stop processing the file once a bitmap was
8121    read.
8122    
8123    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8124    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8125
8126commit c1c91e9a221a0e762d96cc12a3f189d6e59f4865
8127Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8128Date:   Tue Apr 12 20:50:42 2011 -0700
8129
8130    Fix "attrinute" typo in comments in ximcp
8131    
8132    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8133
8134commit 7103b83a88edb9c93acfa68f3b556595b087baff
8135Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8136Date:   Fri Apr 8 21:36:11 2011 -0700
8137
8138    Make doc install subdirectories more like the pre-docbook.am paths
8139    
8140    Haven't restored the "specs" path in the install path, but have restored
8141    libX11 & i18n subdirectories in the path for better logical grouping.
8142    
8143    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8144    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
8145
8146commit 9a1ae7a90f815a737a942e42d5eb1ffff400977b
8147Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8148Date:   Fri Apr 8 13:24:28 2011 -0700
8149
8150    Install xml versions of specs even if HAVE_XMLTO is false
8151    
8152    Moves HAVE_XMLTO check into docbook.am, more closely matches behaviour
8153    from before docbook.am changes (commit e8c76407d2f6e3)
8154    
8155    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8156    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
8157
8158commit a0ad0d5c99023bb9a8ce3944dbc3267f5265721e
8159Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8160Date:   Tue Apr 5 13:29:04 2011 -0700
8161
8162    libX11 1.4.3
8163    
8164    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8165
8166commit e8c76407d2f6e3b11babdb84426e43e780c859c3
8167Author: Gaetan Nadon <memsize@videotron.ca>
8168Date:   Fri Feb 25 09:23:54 2011 -0500
8169
8170    Documentation: add Docbook external references support
8171    
8172    When writing technical documentation, it is often necessary to cross
8173    reference to other information. When that other information is not in the
8174    current document, additional support is needed, namely <olink>.
8175    
8176    A new feature with version 1.7 of xorg-sgml-doctools adds references to
8177    other documents within or outside this package.
8178    
8179    This patch adds technical support for this feature but does not change
8180    the content of the documentation as seen by the end user.
8181    
8182    Each book or article must generate a database containing the href
8183    of sections that can be referred to from another document. This database
8184    is installed in DATAROOTDIR/sgml/X11/dbs. There is a requirement that
8185    the value of DATAROOTDIR for xorg-sgml-doctools and for the package
8186    documentation is the same. This forms a virtual document tree.
8187    
8188    This database is consulted by other documents while they are being generated
8189    in order to fulfill the missing information for linking.
8190    Refer to the xorg-sgml-doctools for further technical information.
8191    
8192    Co-authored-by: Matt Dew <marcoz@osource.org>
8193    
8194    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
8195
8196commit 25eb76b3d2726f2f1de759901971ae53b2539dc4
8197Author: Harshula Jayasuriya <harshula@gmail.com>
8198Date:   Mon Mar 21 14:49:37 2011 +0000
8199
8200    Add #define XK_SINHALA
8201    
8202    Add #define XK_SINHALA so that the Sinhala keysyms can be used by
8203    the lk xkb keymap.
8204    
8205    Signed-off-by: Harshula Jayasuriya <harshula@gmail.com>
8206    Reviewed-by: Daniel Stone <daniel@fooishbar.org>
8207
8208commit db8b20b789112717ac0590b40f0b4dc2171797d0
8209Author: Jeremy Huddleston <jeremyhu@apple.com>
8210Date:   Thu Mar 17 16:15:00 2011 -0700
8211
8212    configure.ac: Bump version to 1.4.2
8213    
8214    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
8215
8216commit 83e1ba59c48c79f8b0a7e7aa0b9c9cfd84fa403d
8217Author: Jamey Sharp <jamey@minilop.net>
8218Date:   Tue Mar 15 16:48:07 2011 -0700
8219
8220    Call _XErrorFunction without holding the Display lock.
8221    
8222    Historically, Xlib dropped the Display lock around the upcall to any
8223    user-supplied _XErrorFunction, but somewhere along the way I quit doing
8224    that if you built with XCB. The reasons are lost somewhere in the
8225    pre-git history of Xlib/XCB, and I can't now see any reason to hold the
8226    lock.
8227    
8228    The documentation for XSetErrorHandler still applies though:
8229    
8230        Because this condition is not assumed to be fatal, it is acceptable
8231        for your error handler to return; the returned value is ignored.
8232        However, the error handler should not call any functions (directly
8233        or indirectly) on the display that will generate protocol requests
8234        or that will look for input events.
8235    
8236    So while you are now once again permitted to re-enter Xlib from the
8237    error handler, you're only allowed to call non-protocol functions.
8238    
8239    Signed-off-by: Jamey Sharp <jamey@minilop.net>
8240
8241commit fd85aca7a616c595fc17b2520f84316a11e8906f
8242Author: Jamey Sharp <jamey@minilop.net>
8243Date:   Mon Mar 14 14:45:35 2011 -0700
8244
8245    Ignore user locks after sleeping in _XReply and _XReadEvents.
8246    
8247    This bug appears as a hang in applications that wait for replies from
8248    multiple threads, where one such thread has taken a user lock using
8249    XLockDisplay.
8250    
8251    Prior to this fix, the code could deadlock in this way: If thread 1 goes
8252    to sleep waiting for a reply, and then thread 2 takes a user lock and
8253    waits for a reply, then thread 2 will wait for thread 1 to process its
8254    reply (because responses must be processed in order), but thread 1 will
8255    wait for thread 2 to drop its user lock.
8256    
8257    Fixed by making thread 1 not wait for thread 2 to drop its user lock.
8258    This makes the semantics of user locks hard to define, but they were
8259    already hard to define. The new behavior appears to be consistent with
8260    the way Xlib worked historically, anyway.
8261    
8262    Fixes: http://lists.freedesktop.org/archives/xcb/2011-March/006802.html
8263    
8264    There was a similar potential for deadlock in _XReadEvents, fixed the
8265    same way, with the same caveats about user-lock semantics.
8266    
8267    Signed-off-by: Jamey Sharp <jamey@minilop.net>
8268
8269commit 690f8bffd48a4e7e74298360ddd0431dc95dcd3f
8270Author: Erkki Seppälä <erkki.seppala@vincit.fi>
8271Date:   Tue Jan 18 15:58:20 2011 +0200
8272
8273    xkb: XkbPropertyPtr determined allocation success from wrong variables
8274    
8275    Cannot reach dead statement "return NULL;"
8276    
8277    Check for the NULLness of prop->name and prop->value instead of
8278    name and value, which was checked earlier anyway. Decided against
8279    using strdup due to curious memory allocation functions and the
8280    rest of the xkb not using it either.
8281    
8282    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
8283    Reviewed-by: Alan Coopersmith <alan.coopersmith at oracle.com>
8284
8285commit 6a4d027284e7bb5dd458157947bbb1ff580ad071
8286Author: Erkki Seppälä <erkki.seppala@vincit.fi>
8287Date:   Mon Jan 10 16:37:22 2011 +0200
8288
8289    keyBind: Use Xcalloc to initialize allocated _XKeytrans
8290    
8291    Using uninitialized value "p->modifiers"
8292    
8293    Small fix by using Xcalloc instead of Xmalloc
8294    
8295    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
8296    Reviewed-by: Alan Coopersmith <alan.coopersmith at oracle.com>
8297
8298commit b993d73bb3214ecc24646f5427c8003b816c6921
8299Author: Erkki Seppälä <erkki.seppala@vincit.fi>
8300Date:   Mon Jan 10 16:22:45 2011 +0200
8301
8302    im/ximcp: release modifiermap before returning
8303    
8304    Variable "map" goes out of scope
8305    
8306    Release modifiermap before returning. Reordered code to call
8307    XGetModifierMapping after the first return from the function.
8308    
8309    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
8310    Reviewed-by: Dirk Wallenstein <halsmit@t-online.de>
8311
8312commit 807a7fc0354f2212dfa5ff1f9e4ede56d8e69ef4
8313Author: Gaetan Nadon <memsize@videotron.ca>
8314Date:   Fri Feb 25 09:23:54 2011 -0500
8315
8316    Docbook: change the book id to match the xml file basename
8317    
8318    This is required for the up-coming external references support.
8319    
8320    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
8321
8322commit 40812b53ff5fe548f6eaf43ba4c8781cb43dab43
8323Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
8324Date:   Mon Feb 21 21:54:17 2011 +0100
8325
8326    Make the Local XIM request key releases for braille
8327    
8328    Braille chords management needs key release events. We need to explicitly
8329    request then, else GTK would not pass them throught XFilterEvent and braille
8330    wouldn't work.
8331    
8332    Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
8333
8334commit c97c42c49cd5095462abecdf908b416fb0b540b6
8335Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
8336Date:   Mon Feb 21 17:27:38 2011 +0100
8337
8338    Match braille patterns with compose tree
8339    
8340    Braille patterns should also be usable in Compose.  This combines the
8341    implementation of braille chords and compose tree: only emit the braille
8342    pattern if it can not be found in the compose tree, if any.
8343    
8344    Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
8345
8346commit 0c6ca565d7c8a47ef3ea823569a9ca5298a5307d
8347Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
8348Date:   Mon Feb 21 15:56:54 2011 +0100
8349
8350    Fix status reporting for braille patterns
8351    
8352    _XimLocalMbLookupString can return a braille keysym even if _Xlcwctomb can't
8353    convert to the current MB charset.
8354    _XimLocalUtf8LookupString needs to set the braille keysym and status too.
8355    
8356    Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
8357
8358commit 993abe751f4141f54d8d28b8b73588a1c9085970
8359Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8360Date:   Fri Feb 11 14:49:17 2011 -0800
8361
8362    Clean up memory when first XCreateRegion succeeds and second fails
8363    
8364    Error: Memory leak (CWE 401)
8365       Memory leak of pointer 's' allocated with XCreateRegion()
8366            at line 387 of /export/alanc/X.Org/sx86-gcc/lib/libX11/src/Region.c in function 'XShrinkRegion'.
8367              's' allocated at line 387 with XCreateRegion().
8368              s leaks when s != 0 at line 387.
8369    Error: Memory leak (CWE 401)
8370       Memory leak of pointer 'tra' allocated with XCreateRegion()
8371            at line 1452 of /export/alanc/X.Org/sx86-gcc/lib/libX11/src/Region.c in function 'XXorRegion'.
8372              'tra' allocated at line 1451 with XCreateRegion().
8373              tra leaks when tra != 0 at line 1451.
8374    
8375    [ This bug was found by the Parfait 0.3.6 bug checking tool.
8376      For more information see http://labs.oracle.com/projects/parfait/ ]
8377    
8378    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8379
8380commit 6ac417cea1136a3617f5e40f4b106aaa3f48d6c2
8381Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8382Date:   Fri Feb 11 14:20:24 2011 -0800
8383
8384    ximcp: Prevent memory leak & double free if multiple %L in string
8385    
8386    In the highly unlikely event that TransFileName was passed a path
8387    containing multiple %L entries, for each entry it would call
8388    _XlcFileName, leaking the previous results, and then for each entry it
8389    would copy from that pointer and free it, resulting in invalid pointers
8390    & possible double frees for each use after the first one freed it.
8391    
8392    Error: Use after free (CWE 416)
8393       Use after free of pointer 'lcCompose'
8394            at line 358 of modules/im/ximcp/imLcPrs.c in function 'TransFileName'.
8395              Previously freed at line 360 with free.
8396    Error: Use after free (CWE 416)
8397       Use after free of pointer 'lcCompose'
8398            at line 359 of modules/im/ximcp/imLcPrs.c in function 'TransFileName'.
8399              Previously freed at line 360 with free.
8400    Error: Double free (CWE 415)
8401       Double free of pointer 'lcCompose'
8402            at line 360 of modules/im/ximcp/imLcPrs.c in function 'TransFileName'.
8403              Previously freed at line 360 with free.
8404    
8405    [ This bug was found by the Parfait 0.3.6 bug checking tool.
8406      For more information see http://labs.oracle.com/projects/parfait/ ]
8407    
8408    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8409
8410commit 502d414118c97d35a44f8e295709682022876331
8411Author: Erkki Seppälä <erkki.seppala@vincit.fi>
8412Date:   Thu Feb 3 17:08:57 2011 +0200
8413
8414    xcms/cmsProp: don't deal with uninitialized values, fail instead
8415    
8416    Properly handle the return value of XGetWindowProperty by considering
8417    if after the loop as well.
8418    
8419    Using freed pointer "prop_ret"
8420    
8421    There were numerous things wrong in how this function interacted with
8422    XGetWindowProperty.
8423    
8424    None of the local variables were initialized and remained that way if
8425    the call to XGetWindowProperty returned 1 (not Succeed). That doesn't
8426    result in after_ret being initialized in which case if it happens to
8427    be 0, the loop was exited. In that case format_ret and nitems_ret were
8428    uninitialized and the function might return with success (but with
8429    uninitialized pointer in prop_ret) or XcmsFailure.
8430    
8431    As the buffer enlarging code was called only when XGetWindowProperty
8432    failed (returned not Success), after_ret would not have been
8433    initialized. It would have been initialized only if the
8434    XGetWindowProperty has returned Success earlier, but in that case the
8435    code fragment would not have been reached.
8436    
8437    This patch alters the function to return XcmsFailure if the call to
8438    XGetWindowProperty fails.
8439    
8440    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8441    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8442    Reviewed-by: Rami Ylimäki <rami.ylimaki@vincit.fi>
8443    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
8444
8445commit c37e278993b9e5b3d7025ef4c434373a011996ec
8446Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8447Date:   Mon Jan 31 14:02:07 2011 +0200
8448
8449    xcms/LRGB: don't double-free property_return
8450    
8451    property_return was free'd before and in the case the conditional is true,
8452    the call to XcmsGetProperty failed which means that property_return wasn't
8453    set so there is no need to free it again.
8454    
8455    Double free of pointer "property_return" in call to "free"
8456    
8457    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8458    Reviewed-by: Erkki Seppälä <erkki.seppala@vincit.fi>
8459    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8460
8461commit 50f4107811249806718a100f9d34f996c58e5e25
8462Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8463Date:   Wed Feb 2 08:58:45 2011 -0800
8464
8465    Xrm.c: ReadInFile: refactor fstat error handling
8466    
8467    We can simplify the fstat failure case now that the GetFileSize macro
8468    has been expanded inline.
8469    
8470    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8471    Reviewed-by: Julien Cristau <jcristau@debian.org>
8472
8473commit 5e9c40fcb5da43c9fdacf12967d090bf202daf2a
8474Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8475Date:   Wed Feb 2 08:56:00 2011 -0800
8476
8477    Expand GetSizeOfFile() macro at the one place it's called
8478    
8479    Removes XrmI.h header that only contained this single macro
8480    
8481    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8482    Reviewed-by: Julien Cristau <jcristau@debian.org>
8483
8484commit 450e17422c0e374d25c643f343ea268cec68da38
8485Author: Erkki Seppälä <erkki.seppala@vincit.fi>
8486Date:   Mon Jan 31 14:01:57 2011 +0200
8487
8488    XlibInt: Use strncpy+zero termination instead of strcpy to enforce buffer size
8489    
8490    Possible overrun of 8192 byte fixed size buffer "buffer" by copying
8491    "ext->name" without length checking
8492    
8493    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8494    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8495    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
8496    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8497
8498commit e2566e43b02d2d7b7c1c3bb7db7c5ae81c1245fa
8499Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8500Date:   Mon Jan 31 14:02:13 2011 +0200
8501
8502    lc/def/lcDefConv: Use Xcalloc to avoid use of uninitialized memory
8503    
8504    Fixed by zero'ing conv on allocation with Xcalloc. Then
8505    close_converter works properly.
8506    
8507    Using uninitialized value "conv->state" in call to function "close_converter"
8508    
8509    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8510    Reviewed-by: Erkki Seppälä <erkki.seppala@vincit.fi>
8511    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8512    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8513
8514commit 03f81ad8fb9783986cf9b17661dd31e95c396681
8515Author: Erkki Seppälä <erkki.seppala@vincit.fi>
8516Date:   Mon Jan 31 14:02:16 2011 +0200
8517
8518    xlibi18n/lcFile: Removed superfluous check for NULL target_dir
8519    
8520    The situation is already handled before this code.
8521    
8522    Cannot reach dead expression "0U" inside statement "if (1U + (target_dir ? strl..."
8523    
8524    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8525    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8526    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
8527    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8528
8529commit 1346b9ea3b3882201ff8c3ee462ff4b0d4edf639
8530Author: Erkki Seppälä <erkki.seppala@vincit.fi>
8531Date:   Mon Jan 31 14:02:15 2011 +0200
8532
8533    ximcp/imLckup: Handle negative return value from _Xlcwctomb
8534    
8535    Fixed by negative value to memcpy by checking for the negative return
8536    value of _Xlcwctomb and returning 0/XLookupNone in that case.
8537    
8538    a negative value was passed to memcpy
8539    
8540    Unfortunately the other return values for *status don't fit into the
8541    error (which appears to indicate some internal error or running out of
8542    memory). The other valid status codes are XBufferOverflow,
8543    XLookupNone, XLookupChars, XLookupKeySym, and XLookupBoth. Each of
8544    these has a specific meaning attached.
8545    
8546    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8547    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
8548    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8549
8550commit 79a5c86e020f08cc108184298a72e2777036de39
8551Author: Erkki Seppälä <erkki.seppala@vincit.fi>
8552Date:   Mon Jan 31 14:02:14 2011 +0200
8553
8554    ximcp/imTrX: Handle failing XGetWindowProperty
8555    
8556    Checked return value of XGetWindowProperty and return false if it fails.
8557    
8558    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
8559    
8560    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8561    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
8562    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8563
8564commit 2ace8d5c89c8f6d9f42b4068f4b508ca28f0ced1
8565Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8566Date:   Mon Jan 31 14:02:12 2011 +0200
8567
8568    XlibInt: info_list->watch_data was reallocated, but result was discarded
8569    
8570    info_list->watch_data was being reallocated, but the return value of
8571    the reallocation was stored only into a local variable. This might
8572    cause some funky behavior and crashes.
8573    
8574    Variable "wd_array" goes out of scope
8575    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)))"
8576    
8577    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8578    Reviewed-by: Erkki Seppälä <erkki.seppala@vincit.fi>
8579    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8580    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8581
8582commit 2b16a7e683e355c9746290b2cee2fd0dd2bf342a
8583Author: Erkki Seppälä <erkki.seppala@vincit.fi>
8584Date:   Mon Jan 31 14:02:10 2011 +0200
8585
8586    GetProp: Zero-initialized error so its resourceID field is initialized
8587    
8588    Using uninitialized value "error.resourceID" in call to function "_XError"
8589    
8590    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8591    Reviewed-by: Erkki Seppälä <erkki.seppala@vincit.fi>
8592    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8593    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8594
8595commit 85e9f38e016137f0ff2791eb0d092ab027382d2c
8596Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8597Date:   Tue Feb 1 11:07:25 2011 +0200
8598
8599    xcms/LRGB: Add a label for freeing property_return.
8600    
8601    The rest of the code uses goto's to free memory allocated later
8602    and prevent memory leaks, but there were several paths were
8603    property_return was free'd just before a goto.
8604    
8605    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8606    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8607    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
8608    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8609
8610commit 3161dc57d4e9b70f852f05e5e474455e121b06ab
8611Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8612Date:   Mon Jan 31 14:02:08 2011 +0200
8613
8614    xcms/LRGB: Fix potential resource leak.
8615    
8616    property_return was not free'd if the allocation of pRedTbl failed.
8617    
8618    Reviewed-by: Erkki Seppälä <erkki.seppala@vincit.fi>
8619    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8620    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8621
8622commit be3e6c205d94dedc1cdebf5d17b987f0f828377a
8623Author: Erkki Seppälä <erkki.seppala@vincit.fi>
8624Date:   Mon Jan 31 14:02:06 2011 +0200
8625
8626    Xrm: Handle the extremely unlikely situation of fstat failing
8627    
8628    Tracked variable "size" was passed to a negative sink.
8629    
8630    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8631    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8632    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
8633    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8634
8635commit 3fae16c64d6ef76fd4a25a54c7f7de76596457db
8636Author: Erkki Seppälä <erkki.seppala@vincit.fi>
8637Date:   Mon Jan 31 14:02:05 2011 +0200
8638
8639    Xrm: NEWTABLE had a memory leak after a memory allocation error
8640    
8641    The NEWTABLE macro missed freeing its allocated memory on subsequent
8642    memory allocation errors. Added call to Xfree.
8643    
8644    Variable "table" goes out of scope
8645    
8646    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8647    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8648    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
8649    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8650
8651commit 7110ac653349a23c80c365f11f6270dc27c8975a
8652Author: Erkki Seppälä <erkki.seppala@vincit.fi>
8653Date:   Mon Jan 31 14:02:03 2011 +0200
8654
8655    ImUtil: Handle a memory leak in one early return branch
8656    
8657    Fixed memory leak by adding Xfree for image
8658    
8659    Variable "image" goes out of scope
8660    
8661    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8662    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8663    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
8664    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8665
8666commit d695f5da9f5b778e54b6987d9177048e32818c4d
8667Author: Erkki Seppälä <erkki.seppala@vincit.fi>
8668Date:   Mon Jan 31 14:02:01 2011 +0200
8669
8670    ximcp/imRm: Handle leaking colormap_ret
8671    
8672    Fixed memory leak by adding Xfree for colormap_ret
8673    
8674    Variable "colormap_ret" goes out of scope
8675    
8676    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8677    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8678    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
8679    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8680
8681commit f9eda19d08c1ea0973dfe0bc10a2519d6fd26cc7
8682Author: Erkki Seppälä <erkki.seppala@vincit.fi>
8683Date:   Mon Jan 31 14:01:59 2011 +0200
8684
8685    ximcp/imRmAttr: Handle leaking missing_list
8686    
8687    Fixed memory leak by adding Xfree and initializing missing_list with NULL
8688    
8689    Variable "missing_list" goes out of scope
8690    
8691    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8692    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8693    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
8694    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8695
8696commit 3183269e0979c9dbce9d55d9e03937897dc9fb3b
8697Author: Erkki Seppälä <erkki.seppala@vincit.fi>
8698Date:   Mon Jan 31 14:01:58 2011 +0200
8699
8700    ximcp/imRmAttr: Handle leaking colormap_ret
8701    
8702    XFree colormap_ret and initialize it when appropriate.
8703    
8704    Variable "colormap_ret" goes out of scope
8705    
8706    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8707    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
8708    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8709
8710commit f66a032a937030f2d9baa81744d36dc585bb085c
8711Author: Erkki Seppälä <erkki.seppala@vincit.fi>
8712Date:   Mon Jan 31 14:01:56 2011 +0200
8713
8714    xlibi18n/lcGeneric: Initialize uninitialized local variable
8715    
8716    Using uninitialized value "new"
8717    
8718    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8719    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8720    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
8721    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8722
8723commit d0266e06d38110ec908ca28379014eff743630b7
8724Author: Erkki Seppälä <erkki.seppala@vincit.fi>
8725Date:   Mon Jan 31 14:01:54 2011 +0200
8726
8727    xcmx/cmxColNm: Removed unused assignments to pBuf (in two functions)
8728    
8729    Pointer "pBuf" returned from "fgets(buf, 256, stream)" is never used
8730    
8731    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8732    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8733    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
8734    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8735
8736commit cc686655d7bfdeab8b67e01a24bd452a2e9e3fcf
8737Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8738Date:   Tue Feb 1 12:30:56 2011 +0200
8739
8740    XDefaultOMIF.c: Fix memory leaks in get_font_name
8741    
8742    Instead of copying the value returned by get_prop_name and then releasing it,
8743    directly use the return value of get_prop_name, which allocates memory for the
8744    name.
8745    
8746    If get_prop_name returns NULL, continue on to XFreeFont to release the font
8747    before returning the NULL via the normal function return.
8748    
8749    Reviewed-by: Erkki Seppälä <erkki.seppala@vincit.fi>
8750    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8751
8752commit 95796351435d81eaef8166d49ba3a6e7b633d70a
8753Author: Gaetan Nadon <memsize@videotron.ca>
8754Date:   Mon Jan 31 14:50:19 2011 -0500
8755
8756    config: comment, minor upgrade, quote and layout configure.ac
8757    
8758    Group statements per section as per Autoconf standard layout
8759    Quote statements where appropriate.
8760    Autoconf recommends not using dnl instead of # for comments
8761    
8762    Use AC_CONFIG_FILES to replace the deprecated AC_OUTPUT with parameters.
8763    Remove redundant AC_CANONICAL_HOST included in XORG_DEFAULT_OPTIONS
8764    
8765    This helps automated maintenance and release activities.
8766    Details can be found in http://wiki.x.org/wiki/NewModuleGuidelines
8767    
8768    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
8769
8770commit e994ab227ed28655565c3193e63733630105e7f9
8771Author: Erkki Seppälä <erkki.seppala@vincit.fi>
8772Date:   Tue Jan 18 12:49:48 2011 +0200
8773
8774    Comparing array against NULL is not useful "&xkb->server->vmods != NULL"
8775    
8776    Removed superfluous comparison.
8777    
8778    Reviewed-by: Dirk Wallenstein <halsmit@t-online.de>
8779    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
8780
8781commit 4115f051e62f9b098efce691e070d44f09f30f1c
8782Author: Erkki Seppälä <erkki.seppala@vincit.fi>
8783Date:   Wed Jan 12 15:51:11 2011 +0200
8784
8785    Variable "entry" tracked as NULL was dereferenced.
8786    
8787    Check entry for non-nullness before dereferencing it
8788    
8789    Reviewed-by: Dirk Wallenstein <halsmit@t-online.de>
8790    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8791    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
8792
8793commit 0edb76d1d5fdca5a2543332699be2e72386dab24
8794Author: Erkki Seppälä <erkki.seppala@vincit.fi>
8795Date:   Thu Jan 27 09:54:00 2011 +0200
8796
8797    Dereferencing possibly NULL "str" in call to function "memcpy" (Deref assumed on the basis of 'nonnull' parameter attribute.)
8798    
8799    If _XkbGetReadBufferPtr returns NULL, goto BAILOUT
8800    
8801    Reviewed-by: Dirk Wallenstein <halsmit@t-online.de>
8802    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8803    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
8804
8805commit 59da8a211ef723909d0530c0331d541db8e63378
8806Author: Erkki Seppälä <erkki.seppala@vincit.fi>
8807Date:   Mon Jan 10 16:17:47 2011 +0200
8808
8809    Using freed pointer "e"
8810    
8811    Reordered code to first to do the comparison and then to release data
8812    
8813    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8814    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
8815    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
8816
8817commit 0f11c229f7099f7c5aeed4691b358dca151dac7d
8818Author: Matt Dew <marcoz@osource.org>
8819Date:   Thu Jan 27 00:31:23 2011 -0700
8820
8821    Remove <literal> tags from compose-chart.pl so pdf building doesn't die on soft-hyphens.
8822    
8823    Signed-off-by: Matt Dew <marcoz@osource.org>
8824    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8825
8826commit ca00bb202f3afcdbbcb8c4cb50308c5dd03f2322
8827Author: Gaetan Nadon <memsize@videotron.ca>
8828Date:   Fri Jan 28 16:07:07 2011 -0500
8829
8830    config: replace deprecated AC_HELP_STRING with AS_HELP_STRING
8831    
8832    This silences an Automake warning.
8833    
8834    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
8835
8836commit 8dac08c7515cb6f8a8f4d0a721713697eae755d8
8837Author: Gaetan Nadon <memsize@videotron.ca>
8838Date:   Fri Jan 28 14:59:04 2011 -0500
8839
8840    config: remove unrequired AC_HEADER_STDC
8841    
8842    Autoconf says:
8843    "This macro is obsolescent, as current systems have conforming
8844    header files. New programs need not use this macro".
8845
8846commit d4483375e37a72631d5821413cb75a423e990ffe
8847Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8848Date:   Tue Jan 18 19:37:02 2011 -0800
8849
8850    config: Use correct AC_CONFIG_HEADERS macro
8851    
8852    Replaces obsolete AM_CONFIG_HEADER and undocumented AC_CONFIG_HEADER
8853    
8854    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8855    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
8856    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
8857
8858commit c6405fe931f313a0d159bdad00244fc8aae12468
8859Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8860Date:   Sun Jan 16 11:55:23 2011 -0800
8861
8862    config: remove AC_PROG_CC as it overrides AC_PROG_C_C99
8863    
8864    XORG_STRICT_OPTION from XORG_DEFAULT_OPTIONS calls
8865    AC_PROG_C_C99. This sets gcc with -std=gnu99.
8866    If AC_PROG_CC macro is called afterwards, it resets CC to gcc.
8867    
8868    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8869    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
8870
8871commit 17aa1f2305da0952ad594c7329d08aba21f13ac8
8872Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8873Date:   Sun Jan 16 11:40:59 2011 -0800
8874
8875    Update to xf86bigfontproto >= 1.2.0 header name
8876    
8877    Clears compile-time warning of:
8878    "X11/extensions/xf86bigfstr.h", line 1: #warning: "xf86bigfstr.h is obsolete and may be removed in the future."
8879    "X11/extensions/xf86bigfstr.h", line 2: #warning: "include <X11/extensions/xf86bigfproto.h> for the protocol defines."
8880    
8881    Requires xf86bigfontproto >= 1.2.0 if --disable-xf86bigfont is not
8882    passed to configure.
8883    
8884    Also removes unnecessary AC_SUBST of BIGFONT_CFLAGS & BIGFONT_LIBS
8885    that PKG_CHECK_MODULES does automatically
8886    
8887    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8888    Reviewed-by: Julien Cristau <jcristau@debian.org>
8889
8890commit a9228fcc676aacf9a760dd94891c89f9bc82b20d
8891Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8892Date:   Tue Jan 11 17:55:22 2011 -0800
8893
8894    libX11 1.4.1
8895    
8896    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8897
8898commit 92fa96451af37a7a0f2592de07643fdaed7a9efd
8899Author: Pauli Nieminen <ext-pauli.nieminen@nokia.com>
8900Date:   Mon Jan 3 12:25:28 2011 -0500
8901
8902    Initialize event type
8903    
8904    If we receive unsupported event closing connection triggers valgrind
8905    error.
8906    
8907    ==12017== Conditional jump or move depends on uninitialised value(s)
8908    ==12017==    at 0x487D454: _XFreeDisplayStructure (OpenDis.c:607)
8909    ==12017==    by 0x486857B: XCloseDisplay (ClDisplay.c:72)
8910    *snip*
8911    ==12017==  Uninitialised value was created by a heap allocation
8912    ==12017==    at 0x4834C48: malloc (vg_replace_malloc.c:236)
8913    ==12017==    by 0x4894147: _XEnq (XlibInt.c:877)
8914    ==12017==    by 0x4891BF3: handle_response (xcb_io.c:335)
8915    ==12017==    by 0x4892263: _XReply (xcb_io.c:626)
8916    *snip*
8917    
8918    Problem is that XFreeDisplaySturture is checking for qelt->event.type ==
8919    GenericEvent while _XUnknownWireEvent doesn't store the type.
8920    
8921    Reviewed-by: Adam Jackson <ajax@redhat.com>
8922    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
8923    Signed-off-by: Pauli Nieminen <ext-pauli.nieminen@nokia.com>
8924
8925commit fa9747b9d4443eef9b1687b8b1208801f5c585da
8926Author: Fernando Carrijo <fcarrijo.lists@gmail.com>
8927Date:   Tue Dec 28 16:18:57 2010 -0500
8928
8929    specs: convert images from gif to svg format.
8930    
8931    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
8932
8933commit 0012e2a4eaddc0840617b4758931ad976ca2eb7c
8934Author: Philipp Reh <sefi@s-e-f-i.de>
8935Date:   Wed Dec 22 15:14:05 2010 +0000
8936
8937    Events: Store event cookie when dequeuing event
8938    
8939    When we dequeue an event in XCheckTypedEvent or XCheckTypedWindowEvent,
8940    make sure to store the corresponding cookie too.
8941    
8942    Signed-off-by: Philipp Reh <sefi@s-e-f-i.de>
8943    Reviewed-by: Daniel Stone <daniel@fooishbar.org>
8944
8945commit d2714d65e85b44abedf5f82e1a31506dba397ef2
8946Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8947Date:   Tue Dec 21 18:47:16 2010 -0800
8948
8949    Revert "Mark atom names argument to XInternAtoms as const"
8950    
8951    This reverts commit c8701115462b482d99ecff24d9de0f2806084ba5.
8952    
8953    The constification of a pointer to a pointer caused unexpected issues,
8954    and xorg-devel was unable to come up with a clean, safe, reasonable way
8955    to handle them, so we're chalking this up for now as yet another mistake
8956    in the Xlib API definition we'll be living with.
8957    
8958    See https://bugs.freedesktop.org/show_bug.cgi?id=32098 for details.
8959    
8960    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8961
8962commit 6459f9a48a82de3bc0235bd36acab2df11e436d5
8963Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8964Date:   Mon Dec 20 20:54:07 2010 -0800
8965
8966    specs/XKB: make acknowlegement section <preface> instead of <chapter>
8967    
8968    Fixes numbering of actual chapters to match their filenames and to
8969    make the table/figure numbering match the references in the text.
8970    
8971    Reported-by: jelmd on freenode irc
8972    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8973
8974commit 42c653d5413fc5870486a9cf51dd28d1e88f7c69
8975Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8976Date:   Sun Dec 19 23:53:02 2010 -0800
8977
8978    Add XKBlib spec images to dist_spec_DATA for distribution & installation
8979    
8980    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8981    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
8982
8983commit 8f8a3c8c42af82976d261ac2447cfbb0f90fa77d
8984Author: Matt Dew <matt@osource.org>
8985Date:   Tue Nov 30 10:52:07 2010 -0500
8986
8987    specs: convert XKBlib spec from Framemaker to DocBook.xml
8988    
8989    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
8990
8991commit c8701115462b482d99ecff24d9de0f2806084ba5
8992Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8993Date:   Sun Nov 21 20:49:05 2010 -0800
8994
8995    Mark atom names argument to XInternAtoms as const
8996    
8997    Updates code & docs for XInternAtoms.
8998    
8999    The single atom name argument to XInternAtom was already const char *
9000    in the code, but not the docs, so updated it in the docs too.
9001    
9002    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9003    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
9004
9005commit 24db5b5ff0d51b0ed9d9701a792c5f14f23b638d
9006Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9007Date:   Sun Nov 21 14:04:32 2010 -0800
9008
9009    libX11 1.4.0
9010    
9011    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9012
9013commit 18d3c3e9de19e936281b111d5a82acfb3a3f552e
9014Author: Dan Nicholson <dbn.lists@gmail.com>
9015Date:   Sat Nov 6 21:58:10 2010 +0000
9016
9017    config: Check host string when deciding architecture to build for
9018    
9019    When checking for the OS/2 platform, $target_os is used. However, unless
9020    building a cross compiler, the $host* strings contain the platform
9021    details for the build system. See:
9022    
9023    http://www.gnu.org/software/automake/manual/automake.html#Cross_002dCompilation
9024    
9025    $host_os is already being used to determine the transport and threading
9026    options.
9027    
9028    Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
9029    Reviewed-by: Julien Cristau <jcristau@debian.org>
9030    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9031
9032commit affc2488a7f2660a74dc8354fc3e0bff2c4f879c
9033Author: Dan Nicholson <dbn.lists@gmail.com>
9034Date:   Sat Nov 6 21:58:09 2010 +0000
9035
9036    config: Fix architecture check for OS/2 to skip nios2 cpu
9037    
9038    The OS/2 platform requires some utility functions as well as having a
9039    non-32 bit wchar_t. Fix the configure check so that it doesn't also
9040    affect the nios2 cpu, which wouldn't influence these operating system
9041    issues.
9042    
9043    Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
9044    Tested-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
9045    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9046    Reviewed-by: Julien Cristau <jcristau@debian.org>
9047    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9048
9049commit 8cbca8a10761d1ea75a75bafa647632d6c0dac71
9050Author: Gaetan Nadon <memsize@videotron.ca>
9051Date:   Tue Nov 9 13:04:44 2010 -0500
9052
9053    config: HTML file generation: use the installed copy of xorg.css
9054    
9055    Currenlty the xorg.css file is copied in each location
9056    where a DocBook/XML file resides. This produces about
9057    70 copies in the $(docdir) install tree.
9058    
9059    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9060
9061commit 3e8907305e1818369aef5a5c0da61f09e20de4f8
9062Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9063Date:   Fri Oct 29 22:02:10 2010 -0700
9064
9065    libX11 1.3.99.903 (1.4.0 RC3)
9066    
9067    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9068
9069commit 5d245d8013289b13e0c42100951b26166c7fada4
9070Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9071Date:   Fri Oct 29 22:01:39 2010 -0700
9072
9073    Require xorg-macros 1.11 now that it is released
9074    
9075    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9076
9077commit 1ec89689fc771f116a6165226b9e076f54254a40
9078Author: Dan Nicholson <dbn.lists@gmail.com>
9079Date:   Fri Oct 22 19:09:07 2010 -0700
9080
9081    docs: Disable fop documentation by default
9082    
9083    fop is used to generate the pdf and ps formats of the documentation.
9084    This can significantly slow down the build, especially when creating all
9085    the compose key charts. Since few people probably want the full set of
9086    doc formats, set the default to 'no'.
9087    
9088    The default parameter for XORG_WITH_FOP is only available in recent
9089    macros. Users generating configure from older macros will just get
9090    'auto' as the default.
9091    
9092    Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
9093    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
9094    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9095    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9096
9097commit 03877bda911b72ac60a7144d6eced7d5be4b4d72
9098Author: Jon TURNEY <jon.turney@dronecode.org.uk>
9099Date:   Wed Apr 14 13:38:18 2010 +0100
9100
9101    Add C.UTF-8 and C.ASCII locale aliases
9102    
9103    Add C.UTF-8 locale as an alias for en_US.UTF-8
9104    Add C.ASCII locale as an alias for C
9105    
9106    (C.UTF-8 is the default locale for cygwin.  It also exists in debian,
9107    although I don't think it's intended for use by humans.)
9108    
9109    Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
9110    Acked-by: Julien Cristau <jcristau@debian.org>
9111    Reviewed-by: James Cloos <cloos@jhcloos.com>
9112
9113commit 81d1d9a6bdca779a44f931730b866eea75777c00
9114Author: Dan Nicholson <dbn.lists@gmail.com>
9115Date:   Sat Oct 9 16:00:47 2010 -0700
9116
9117    docs: Remove directory prerequisites from make rules
9118    
9119    Make expects prerequisites to be files with valid timestamps, and
9120    directories are treated as always being out of date. Thus, any targets
9121    depending on directories will always be rebuilt.
9122    
9123    Instead, the doc rules are changed to always create the target's leading
9124    directory. This should prevent the documentation from being rebuilt when
9125    "make install" is run.
9126    
9127    Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
9128    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
9129    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9130
9131commit d0cbf388919364fe6b5b9127f36426eb744090a0
9132Author: Jeremy Huddleston <jeremyhu@apple.com>
9133Date:   Sun Sep 26 21:21:16 2010 -0700
9134
9135    Add an "X11_" string to header guards to avoid possible collision
9136    
9137    This addresses a build failure which can result from <X11/Xlocale.h> and
9138    <xlocale.h> being included in the same code since they both used the same
9139    _XLOCALE_H_ protection.
9140    
9141    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
9142
9143commit b51ac675f44f5ce1a28c5734bf3c26983f8b4192
9144Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9145Date:   Tue Sep 21 19:53:03 2010 -0700
9146
9147    libX11 1.3.99.902 (1.4.0 RC2)
9148    
9149    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9150
9151commit 986bb6d1d54368fe91e3ea24f518d43ce6179782
9152Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9153Date:   Tue Sep 14 00:10:31 2010 -0700
9154
9155    Bug 19379 - Provide docs with overview of all compose key combinations
9156    
9157    Adds compose-chart.pl to generate DocBook/XML documents listing compose
9158    keys, and Makefile rules to generate HTML & PDF output from them if xmlto
9159    is present.
9160    
9161    https://bugs.freedesktop.org/show_bug.cgi?id=19379
9162    
9163    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9164    Reviewed-by: Mikhail Gusarov <dottedmag@dottedmag.net>
9165    Reviewed-by: James Cloos <cloos@jhcloos.com>
9166    Tested-by: Gaetan Nadon <memsize@videotron.ca>
9167
9168commit 3eb064071695ebf0f371163ed818a428dfeba8e6
9169Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9170Date:   Sat Sep 11 00:49:21 2010 -0700
9171
9172    Make locale data build non-recursive / parallelizable
9173    
9174    On a 4 core CPU with gmake -j 16 the nls subdir builds in half the time,
9175    plus this simplifies the next set of changes.
9176    
9177    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9178    Reviewed-by: Mikhail Gusarov <dottedmag@dottedmag.net>
9179    Reviewed-by: James Cloos <cloos@jhcloos.com>
9180    Tested-by: Gaetan Nadon <memsize@videotron.ca>
9181
9182commit a3fc78ac352e5a70a958996ef6aec50f653974d1
9183Author: Gaetan Nadon <memsize@videotron.ca>
9184Date:   Fri Sep 17 17:38:11 2010 -0400
9185
9186    config: remove man page suffix from bottom summary
9187    
9188    The man page suffix is the same for all libraries on a given
9189    platform and is not configurable. It should have been removed
9190    in commit 09edc6de6.
9191    
9192    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9193
9194commit a52b0068f36c739eb7e426214cd72a8d9bb776ca
9195Author: Gaetan Nadon <memsize@videotron.ca>
9196Date:   Fri Sep 17 17:29:30 2010 -0400
9197
9198    config: remove unhelpful comment in .gitignore
9199    
9200    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9201
9202commit 10dd881e7818be9074da4ab3a68577adcdaf71d2
9203Author: Adam Jackson <ajax@redhat.com>
9204Date:   Wed Sep 8 10:44:23 2010 -0400
9205
9206    Zero buffer data in BufAlloc()
9207    
9208    Inspired by a pattern in NoMachine's NX.  Consistently zeroed buffers
9209    compress better with ssh and friends.  Note that you'll need to rebuild
9210    all your protocol libraries to take advantage of this.
9211    
9212    Signed-off-by: Adam Jackson <ajax@redhat.com>
9213    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
9214    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9215
9216commit da099f0d2015831ea5f4a5d0740ed962aa4d5d8b
9217Author: James Cloos <cloos@jhcloos.com>
9218Date:   Sun Sep 12 17:00:54 2010 -0400
9219
9220    Revert “Dolt-ify"
9221    
9222    Libtool’s is now sufficiently fast that DOLT is no longer
9223    worth the bother, even on those few systems where is works.
9224    
9225    This reverts commit 3e9afd501e40d76040635bd9a3045bcaf5a03b60
9226    and part of commit d31e644c65c52828ea3e7abd94a8cf9aee12265c.
9227    
9228    It conflicted with commit f6a4fd0c7615684d08e848245849dea4017a5214
9229    which moved dolt from configure.ac to m4/dolt.m4.
9230    
9231    And it addresses: http://bugs.freedesktop.org/show_bug.cgi?id=28188
9232    
9233    Signed-off-by: James Cloos <cloos@jhcloos.com>
9234
9235commit 2661fbe6b809c937a60c2c1ca5ddb8280e399bd8
9236Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9237Date:   Thu Sep 9 19:24:29 2010 -0700
9238
9239    XIM spec title page minor formatting cleanup
9240    
9241    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9242
9243commit f99f1380bbf7bb2a0c491acad4a3d8db44bfd752
9244Author: Jens Petersen <petersen@redhat.com>
9245Date:   Mon Aug 23 18:08:10 2010 -0700
9246
9247    Bug 29773: aliases for nb_NO.utf8 and nn_NO.utf8
9248    
9249    <https://bugs.freedesktop.org/show_bug.cgi?id=29773>
9250    
9251    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9252
9253commit b15b8a558ec64c834cc8f6a52d7f3c4f530c8c4b
9254Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9255Date:   Fri Sep 3 23:11:53 2010 -0700
9256
9257    Sun's copyrights are now owned by Oracle
9258    
9259    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9260
9261commit 7742bf62b1fa652da4270587e280249945367cae
9262Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9263Date:   Fri Sep 3 18:31:44 2010 -0700
9264
9265    libX11 1.3.99.901 (1.4.0 RC1)
9266    
9267    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9268
9269commit 5a02d6d74b5451d48d8f55709dfd4ecd3c068586
9270Author: Jeroen Hoek <mail@jeroenhoek.nl>
9271Date:   Sun Aug 29 09:47:06 2010 -0400
9272
9273    libX11/nls compose tables, add LATIN CAPITAL LETTER SHARP S
9274    
9275    Add LATIN CAPITAL LETTER SHARP S
9276    (See https://bugs.freedesktop.org/show_bug.cgi?id=29448 for rationale)
9277    
9278    Signed-off-by: James Cloos <cloos@jhcloos.com>
9279
9280commit 09edc6de6619a2eabda3b808ebff4165550664f1
9281Author: Gaetan Nadon <memsize@videotron.ca>
9282Date:   Fri Aug 13 14:21:08 2010 -0400
9283
9284    config: remove man-pages configuration option
9285    
9286    This option was added in commit 6e752ea120 with no explanation.
9287    The section number is provoded by XORG_MANPAGE_SECTIONS
9288    There is no case where libX11 should be different than other libs
9289    The option was also used to disable building of the man pages,
9290    which build in 14 secs. No indication this is required.
9291    
9292    If there is a requirement from system builders to disable building
9293    of man pages, it could be done consistently for all modules.
9294    
9295    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9296
9297commit f92e754297ec5fdb81068b56a4435026666224fa
9298Author: Aaron Plattner <aplattner@nvidia.com>
9299Date:   Sun Aug 15 21:51:38 2010 -0700
9300
9301    XOpenDisplay: save the correct display_name value
9302    
9303    The X Test Suite's XDisplayString test checks the invariant
9304    XDisplayString(XOpenDisplay(str)) == str.  The Xlib XOpenDisplay violates this
9305    invariant by expanding str to the canonical form "host:display.scrn" (unless
9306    HAVE_LAUNCHD is set and it starts with "/tmp/launch").  E.g., this expands ":1"
9307    to ":1.0":
9308    
9309      400|26 1 1 19:26:41|IC Start
9310      200|26 1 19:26:41|TP Start
9311      520|26 1 00032625 1 1|VSW5TESTSUITE PURPOSE 1
9312      520|26 1 00032625 1 2|Assertion XDisplayString-1.(A)
9313      520|26 1 00032625 1 3|A call to XDisplayString returns the string that was used
9314      520|26 1 00032625 1 4|as the argument to the XOpenDisplay call that returned the
9315      520|26 1 00032625 1 5|value used as the display argument.
9316      520|26 1 00032625 1 6|METH: Open a connection using XOpenDisplay.
9317      520|26 1 00032625 1 7|METH: Obtain the display string using XDisplayString.
9318      520|26 1 00032625 1 8|METH: Verify that the value of the string is the parameter used in XOpenDisplay.
9319      520|26 1 00032625 1 9|METH: Close the display using XCloseDisplay.
9320      520|26 1 00032625 1 10|REPORT: XDisplayString() returned ":1.0" instead of ":1".
9321      220|26 1 1 19:26:41|FAIL
9322      410|26 1 1 19:26:41|IC End
9323    
9324    Fix this by deleting all of the code to construct the canonical path and just
9325    stashing a copy of the original display_name in dpy->display_name.
9326    
9327    Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
9328    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
9329
9330commit 1dc401f678469d0235e6d0b28eb4356f03327c9f
9331Author: Gaetan Nadon <memsize@videotron.ca>
9332Date:   Fri Aug 13 13:06:51 2010 -0400
9333
9334    man: xkb: remove unused variable LIB_MAN_DIR_SUFFIX
9335    
9336    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9337
9338commit cbe9eebd11e5ebab4280d25b57b4cd4001241619
9339Author: Gaetan Nadon <memsize@videotron.ca>
9340Date:   Fri Aug 13 11:42:29 2010 -0400
9341
9342    man: simplify building of shadow man pages
9343    
9344    Store the shadow files in git as any other man page.
9345    Move man pages to man dir and use the common makefile
9346    
9347    Local fix in CVS for bug 5628 is not required
9348    as the problem has been fixed in
9349    util-macros d9062e4077ebfd0985baf8418f3d0f111b9ddbba
9350    
9351    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9352
9353commit bfd899c9af2318ecbe84cb69007dba4223fdb502
9354Author: Gaetan Nadon <memsize@videotron.ca>
9355Date:   Mon Aug 9 09:39:26 2010 -0400
9356
9357    config: reinstate XORG_PROG_RAWCPP erroneoulsy removed
9358    
9359    in commit 76e07ef6911734eac418e399b114f1b544512736.
9360    
9361    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9362
9363commit 76e07ef6911734eac418e399b114f1b544512736
9364Author: Gaetan Nadon <memsize@videotron.ca>
9365Date:   Fri Aug 6 14:01:51 2010 -0400
9366
9367     man: using the C preprocessor is not required for man pages.
9368    
9369    There were no special symbols needing cpp.
9370    Everything can be handled by the default MAN_SUBSTS in util-macros.
9371    
9372    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9373
9374commit 4b8ff7db39f2fe7ef12968d462aaf3f9054b6c18
9375Author: Jamey Sharp <jamey@minilop.net>
9376Date:   Fri Aug 6 15:51:56 2010 -0700
9377
9378    Fix use-after-free in _XReply on X errors.
9379    
9380    _XReply would always call dequeue_pending_request on errors.  When it
9381    got an error for the current request, it would call dequeue, then break
9382    out of the loop; then, if it had an error in the event queue, it would
9383    compare it with the sequence number of the now-freed pending request.
9384    _XReply already stored that sequence number in dpy->last_request_read
9385    before freeing it, so look at that instead.
9386    
9387    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=29412
9388    
9389    Signed-off-by: Jamey Sharp <jamey@minilop.net>
9390    Signed-off-by: Josh Triplett <josh@joshtriplett.org>
9391
9392commit 9fa146b30046396b70d64986e50d6617b3a8ac48
9393Author: Gaetan Nadon <memsize@videotron.ca>
9394Date:   Sat Jul 31 16:15:35 2010 -0400
9395
9396    specs: xsl stylesheet requires abs path to images
9397    
9398    Using abs_builddir requires automake 1.10 or later.
9399    
9400    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9401
9402commit a8727d4bc39015e303b4128d0ad8aaf6d5fc9f0a
9403Author: Gaetan Nadon <memsize@videotron.ca>
9404Date:   Sun Aug 1 14:13:07 2010 -0400
9405
9406    specs: update .gitignore now that all groff generated files are gone
9407    
9408    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9409
9410commit f70527f05677aaf6a493ba42d2d95f738aaebafa
9411Author: Adam Jackson <ajax@redhat.com>
9412Date:   Thu Jul 29 11:11:21 2010 -0400
9413
9414    nls: Switch one of the interrobang sequences to gnaborretni
9415    
9416    Since gnaborretni is primarily used in LTR locales, the ? part of the
9417    sequence reflects the position of the bulge in the ?.  When scanning an
9418    inverted interrobang left-to-right, you see the bulge first, so the
9419    compose sequence ?! is used; upright interrobang shows the bulge
9420    last, so it's !?.
9421    
9422    This is a change in behaviour, but I was unable to come up with anything
9423    better.  ??!! or !!?? would match the patterns for ¿ and ¡, but they
9424    would delay evaluation of them; "¿Qué?" wouldn't show the ¿ until you hit
9425    Q.  Likewise ?!?! and !?!? would delay showing the interrobang itself.
9426    ~!? and ~?! were considered but are arguably less intuitive.
9427    
9428    Reviewed-by: James Cloos <cloos@jhcloos.com>
9429    Signed-off-by: Adam Jackson <ajax@redhat.com>
9430
9431commit 511c4f6d29b2da4f71093feabcbb3913cb5d12a7
9432Author: Gaetan Nadon <memsize@videotron.ca>
9433Date:   Wed Jul 28 10:27:39 2010 -0400
9434
9435    specs: move indexterm from glossdef to glossterm
9436    
9437    This move fixes a Java class cast exception in the glossary.
9438    The problem was introduced in commit
9439    26f4f0d50840fe5ba4c46aae0a8e68db0059434b
9440    
9441    It may not happen on all versions of the doc toolchain.
9442    There is no reason why indexterm cannot appear in glossdef,
9443    this is a workaround to an implementation problem found by
9444    trial and error.
9445    
9446    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9447    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9448    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9449
9450commit 87a108f3aa565aa803dacb3a53b811f45025b609
9451Author: Matt Dew <matt@osource.org>
9452Date:   Sat Jul 24 14:46:57 2010 -0400
9453
9454    specs: replace troff source with docbook-xml source
9455    
9456    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9457
9458commit 8e603413586ff42b1351688f6f99318cbe243bca
9459Author: Julien Cristau <jcristau@debian.org>
9460Date:   Sat Jul 24 22:13:07 2010 +0200
9461
9462    Compose.man: default user compose file is .XCompose, not .Xcompose
9463    
9464    The path was correct in the DESCRIPTION section, but not in FILES.
9465    
9466    Signed-off-by: Julien Cristau <jcristau@debian.org>
9467
9468commit 554da76ece85d0fc0cada45a86860e69c2107e9a
9469Author: Daniel Stone <daniel@fooishbar.org>
9470Date:   Tue Jul 20 12:34:48 2010 +0100
9471
9472    NLS: Add \o/ Compose sequence
9473    
9474    Unicode is even more pointlessly awesome! Add a binding for Compose-\o/
9475    to U+1F64C PERSON RAISING BOTH HANDS IN CELEBRATION.
9476    
9477    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
9478
9479commit 2e7a18b6a617b9b4bfcea2d36f2bd2d7e0c4a3dd
9480Author: Daniel Stone <daniel@fooishbar.org>
9481Date:   Fri Jul 9 18:13:13 2010 +0100
9482
9483    XStringToKeysym: Cope with 0x1234cafe-style input
9484    
9485    If we get input in the style of 0xdeadbeef, just return that exact
9486    keysym.  Introduces a dependency on strtoul, which I'm told is OK on all
9487    the systems we care about.
9488    
9489    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
9490
9491commit 3df45ed0c29b98ff468a0ff0ba24830bb664fd5a
9492Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9493Date:   Mon Jul 19 17:58:27 2010 -0700
9494
9495    specs/libX11: Fix column count of Gravity Attributes table
9496    
9497    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9498
9499commit 53bcba0d1d2dc3fd5e0de4bae3da30a1aa31a0c4
9500Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9501Date:   Mon Jul 19 14:43:38 2010 -0700
9502
9503    specs/libX11: Convert \- to &minus; and \^ to either &hairsp; or removed
9504    
9505    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9506
9507commit 5a0b45275638281e1bb2ae7d3e16b98e6470dae9
9508Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9509Date:   Mon Jul 19 11:28:50 2010 -0700
9510
9511    specs/libX11: Manual cleanup pass over Ch. 1
9512    
9513    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9514
9515commit 21567992958a6f12b3d0186f2f27a5b2a41b8448
9516Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9517Date:   Mon Jul 19 14:51:10 2010 -0700
9518
9519    specs/libX11: make sure all files have DOCTYPEs so standard entities work
9520    
9521    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9522
9523commit c944a8521f5760b485192658b921145159cdb439
9524Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9525Date:   Sun Jul 18 13:12:20 2010 -0700
9526
9527    specs/libX11: Fix up list of header files in Ch.1 & add index entries
9528    
9529    Combination of manual editing and automatic substitution via:
9530    
9531    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
9532    
9533    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9534
9535commit bb66e8f1ce330043278d3e8cbc7d5d3bc56ee030
9536Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9537Date:   Sun Jul 18 12:47:27 2010 -0700
9538
9539    specs/libX11: Add indexterms for headerfiles that .hN used to provide
9540    
9541    Automatic substitution performed via:
9542    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
9543    
9544    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9545
9546commit d0b0d215cb85da48b323b1392149ce181e7ef5ec
9547Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9548Date:   Fri Jul 16 21:15:13 2010 -0700
9549
9550    specs/libX11: convert multicolumn lists from tables to <simplelist>
9551    
9552    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9553
9554commit e679f80c6210c0aefe3669f8f536353619097a4b
9555Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9556Date:   Fri Jul 16 20:51:52 2010 -0700
9557
9558    specs/libX11: Tag WM_* as <property>
9559    
9560    Mass substitution done by:
9561     perl -i -p -e 'if ($_ !~ m{^\<}) { $_ =~ s{(WM_\w+)}{<property>$1</property>}g; }' *.xml
9562    
9563    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9564
9565commit c7b7e59b3b22221d0be6286c540001c360308f69
9566Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9567Date:   Fri Jul 16 20:41:33 2010 -0700
9568
9569    specs/libX11: Convert simpler eqn markup to docbook tags
9570    
9571    Mostly "sup" to <superscript>
9572    
9573    There's several more complicated equations that will probably need
9574    MathML or SVG to solve.
9575    
9576    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9577
9578commit 897486c54c6a54771867d667441aaf9a4b9c35ca
9579Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9580Date:   Fri Jul 16 00:50:39 2010 -0700
9581
9582    specs/libX11: App. D: convert literallayouts to synopsis or programlisting
9583    
9584    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9585
9586commit 692906c3b3d8aa8b8927fbc230c3050d633785d2
9587Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9588Date:   Fri Jul 16 00:36:43 2010 -0700
9589
9590    specs/libX11: Fix section headers in Appendix D
9591    
9592    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9593
9594commit bcc41baa02e137884d847aec0f3ff8ca5c85c32f
9595Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9596Date:   Wed Jul 14 07:22:26 2010 -0700
9597
9598    specs/libX11: Explicitly tag document as English
9599    
9600    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9601
9602commit 6783544706ff370e900c137f951e90230586d6dc
9603Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9604Date:   Mon Jul 12 22:03:18 2010 -0700
9605
9606    specs/libX11: Appendix C: convert literallayouts to synopsis or programlisting
9607    
9608    Fixes display of a bunch of function prototypes and sample code
9609    
9610    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9611
9612commit 8834cd9285e6aaf437aee56292c508d99a090fa9
9613Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9614Date:   Mon Jul 12 18:37:16 2010 -0700
9615
9616    xmlrules.in: Add chunked-html rule to manually generate smaller files
9617    
9618    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9619
9620commit 53f78680c34ebc94ce26b5e14c2a0003435cf10d
9621Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9622Date:   Mon Jul 12 18:35:59 2010 -0700
9623
9624    specs/libX11: Convert Appendix A tables to real tables
9625    
9626    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9627
9628commit 705a1257a8a47f4a1f94979aee09a837500ede7d
9629Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9630Date:   Mon Jul 12 18:38:09 2010 -0700
9631
9632    specs/libX11: Fix out-of-place text in Chapter 1
9633    
9634    DTD violation error introduced in 89cc2e02e7c29ef9a02f0cfdf2090a2934f539e4
9635    
9636    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9637
9638commit a151346a2b7810e988f1de4b1e00b37672dc587a
9639Author: Jeremy Huddleston <jeremyhu@apple.com>
9640Date:   Mon Jul 12 16:52:12 2010 -0700
9641
9642    launchd: Explicitly search /sbin
9643    
9644    Previously, launchd wasn't found if /sbin wasn't in the user's PATH.
9645    https://bugs.freedesktop.org/show_bug.cgi?id=29028
9646    
9647    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
9648
9649commit 89cc2e02e7c29ef9a02f0cfdf2090a2934f539e4
9650Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9651Date:   Mon Jul 12 13:38:04 2010 -0700
9652
9653    Replace untranslated .hN macros with <filename> tags to show header names
9654    
9655    Translation performed by:
9656     perl -i -p -e 's{\<\!-- .hN (\S+) (\S+)?\s*-->}
9657                     {&lt;<filename class="headerfile">$1</filename>&gt;$2}' *.xml
9658    
9659    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9660
9661commit 75480440946603b8efdbbf78b88d59c641b6d2c8
9662Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9663Date:   Sat Jul 10 00:06:13 2010 -0700
9664
9665    specs/libX11: Mass substitution of <function> tags with more specific tags
9666    
9667    Matched names from X headers & "nm libX11.so" output to names in spec to
9668    map to more specific tags.   Tags used:
9669    
9670                        <code>   code fragments
9671                    <constant>   enum values
9672                   <errorname>   X protocol errors
9673                    <filename>   filenames
9674                    <function>   functions
9675                    <function>   function-like macros (#define foo(a,b)...)
9676                 <returnvalue>   function return codes
9677                 <structfield>   struct members
9678                  <structname>   struct names (even when typedefed)
9679                      <symbol>   simple value #defines (#define NAME value)
9680                  <systemitem>   X protocol requests
9681    <systemitem class="event">   X protocol events
9682                        <type>   non-struct typedefs
9683                     <varname>   global variables
9684    
9685    (Also fixed a couple typos detected by failures of this matching, such as
9686     XESSetPrintErrorValues -> XESetPrintErrorValues.)
9687    
9688    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9689
9690commit 26f4f0d50840fe5ba4c46aae0a8e68db0059434b
9691Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9692Date:   Fri Jul 9 00:37:23 2010 -0700
9693
9694    specs/libX11: Glossary cross-reference links
9695    
9696    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9697
9698commit 930b52d84031de0e15e0a11cf4ecfd3b2f59e073
9699Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9700Date:   Thu Jul 8 21:19:08 2010 -0700
9701
9702    specs/libX11: Make whitespace around <function> tags more uniform
9703    
9704    Simplifies regular expressions for further mass substitutions.
9705    
9706    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9707
9708commit 730ce6b8aca77b77385aa894d234cbde5fcbce37
9709Author: Gaetan Nadon <memsize@videotron.ca>
9710Date:   Fri Jul 9 20:10:37 2010 -0400
9711
9712    specs: use pattern rules rather than suffix rules
9713    
9714    This allows target to rebuild when included .xml files are changed.
9715    
9716    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9717
9718commit 5527b4bc8ce7de60123eb28789ddef54aa48a378
9719Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9720Date:   Thu Jul 8 20:56:41 2010 -0700
9721
9722    specs/libX11: Move punctuation outside of the <function> tags
9723    
9724    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9725
9726commit d66d2134dfc38cd866c7c2d9ea45ed4b4dad23f0
9727Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9728Date:   Thu Jul 8 20:42:50 2010 -0700
9729
9730    specs/libX11: Mark a number of <acronym>s
9731    
9732    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9733
9734commit d5bbb12f55ac9f691eab6242cedc53207275131b
9735Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9736Date:   Thu Jul 8 19:31:36 2010 -0700
9737
9738    specs/libX11: Glossary terms should not be marked as functions
9739    
9740    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9741
9742commit 5decf7bc5dae0ae0c45c47eaaa9c4fdf9515ca1c
9743Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9744Date:   Thu Jul 8 19:28:18 2010 -0700
9745
9746    specs/libX11: Clean up author list & acknowledgements a little
9747    
9748    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9749
9750commit 0cd29bdb332c333e5123dce65b25ad1d97fbdae3
9751Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9752Date:   Thu Jul 8 17:30:34 2010 -0700
9753
9754    specs/libX11: Convert troff .IN macros to docbook <indexterm> tags
9755    
9756    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9757
9758commit a67d99ccbe22c8ce5f7a12f13b8991d9e0cf4491
9759Author: Gaetan Nadon <memsize@videotron.ca>
9760Date:   Thu Jul 8 17:29:21 2010 -0400
9761
9762    specs: specdir is required to install xml files
9763    
9764    The source is installed as well as the targets.
9765    This failed when configuring with --without-xmlto
9766    
9767    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9768
9769commit e14273f44c1501ab51db4adcb83b18a1073787d8
9770Author: Matt Dew <matt@osource.org>
9771Date:   Thu Jul 8 14:42:32 2010 -0400
9772
9773    specs: replace troff source with docbook-xml source
9774    
9775    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
9776
9777commit bea0873caf50e9ed1b89255775d9ab912cbecd45
9778Author: Daniel Stone <daniel@fooishbar.org>
9779Date:   Thu Jul 8 16:49:51 2010 +0100
9780
9781    XStringToKeysym: Check strdup() return value
9782    
9783    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
9784    Reviewed-by: Keith Packard <keithp@keithp.com>
9785
9786commit cffa71b4a5743e2b6675b9a917d15aef4177d513
9787Author: Marko Myllynen <myllynen@redhat.com>
9788Date:   Mon Jun 28 15:08:05 2010 +0300
9789
9790    Fix two typos in SFS 5966 Annex 3
9791    
9792    X.Org bug#28792 <https://bugs.freedesktop.org/show_bug.cgi?id=28792>
9793    
9794    Signed-off-by: Julien Cristau <jcristau@debian.org>
9795
9796commit eb023c0f8919e809b8b609e1467b14d20a290aa7
9797Author: Daniel Stone <daniel@fooishbar.org>
9798Date:   Tue Jun 15 18:49:43 2010 +0100
9799
9800    Delete now-redundant XKeysymDB
9801    
9802    Since XStringToKeysym now supports all the vendor keysyms, just delete
9803    our XKeysymDB, which was incomplete at best, misleading at worst, and
9804    always an annoyance.
9805    
9806    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
9807    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9808
9809commit 00175397480b76d32bf82b0c7c94c91a2a95954e
9810Author: Daniel Stone <daniel@fooishbar.org>
9811Date:   Tue Jun 15 18:48:48 2010 +0100
9812
9813    makekeys: Scan vendor keysyms as well as core
9814    
9815    Since we can't really live without vendor keysyms, scan them all in to
9816    generate ks_tables.h, rather than only doing the core ones, and leaving
9817    the vendor syms to be manually synchronised with XKeysymDB.
9818    
9819    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
9820    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9821
9822commit ebd6ef0a4db0ddef0ae17ad14571518ccdeea5ba
9823Author: Daniel Stone <daniel@fooishbar.org>
9824Date:   Tue Jun 15 18:47:37 2010 +0100
9825
9826    XStringToKeysym: Special case for XF86 keysyms
9827    
9828    Some XFree86 keysyms were in XKeysymDB as XF86_foo, despite really being
9829    XF86foo.  So, if we get to the bottom of XStringToKeysym and haven't
9830    found our XF86_foo, try it again as XF86foo.
9831    
9832    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
9833    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9834
9835commit 8c2ffce9e5c6eef8a04f7e2732db46b3b62e13bb
9836Author: Daniel Stone <daniel@fooishbar.org>
9837Date:   Tue Jun 15 17:20:48 2010 +0100
9838
9839    configure.ac: Change from deprecated AC_DEFINE_DIR to AX_
9840    
9841    AC_DEFINE_DIR is deprecated as it's squatting on the autoconf-builtin
9842    namespace, so start using the more proper AX_DEFINE_DIR instead.
9843    
9844    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
9845    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
9846    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9847
9848commit 6de368c9aa7ccd2fcd62fca5a2b278913db4d03d
9849Author: Fernando Carrijo <fcarrijo@yahoo.com.br>
9850Date:   Thu Jul 1 06:50:47 2010 -0300
9851
9852    Purge macros NEED_EVENTS and NEED_REPLIES
9853    
9854    Signed-off-by: Fernando Carrijo <fcarrijo@yahoo.com.br>
9855    Acked-by: Tiago Vignatti <tiago.vignatti@nokia.com>
9856    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9857
9858commit 0b724231be17f19538ee115a03b82b221b1f83c0
9859Author: Adam Jackson <ajax@redhat.com>
9860Date:   Wed Jun 30 16:30:49 2010 -0400
9861
9862    Use -version-number consistently instead of -version-info
9863    
9864    The latter is libtool braindamage.
9865    
9866    Signed-off-by: Adam Jackson <ajax@redhat.com>
9867
9868commit 241a990afcf9c967c587ad6fd245df21b68b1ad9
9869Author: Juliusz Chroboczek <jch@pps.jussieu.fr>
9870Date:   Tue Jun 29 18:32:42 2010 +0200
9871
9872    Make Compose-comma map to ogonek for I and U in UTF-8 locales.
9873    
9874    With the preceding patch, it makes the UTF-8 compose map consistent with
9875    the ISO 8859-4 and -13 maps.
9876
9877commit af55e582f485a668c2bf43129be972bc65f03c60
9878Author: Juliusz Chroboczek <jch@pps.jussieu.fr>
9879Date:   Tue Jun 29 18:20:18 2010 +0200
9880
9881    Make Compose-comma map to Ogonek for A and E in UTF-8 locales.
9882    
9883    This makes the UTF-8 compose file consistent with the ISO 8859-2 compose file
9884    as far as Polish is concerned.  We only sacrifice one pair of characters,
9885    e-cedilla, which is not used in any language.
9886
9887commit d6ba13009fc9ef876a104b907ffef73c6e405d4b
9888Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9889Date:   Thu Jun 24 13:13:11 2010 -0700
9890
9891    Define FILE_MAN_DIR_SUFFIX so XCompose shadow page has correct path
9892    
9893    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9894
9895commit 978c7238789037de917b9423ea9adfb006da1260
9896Author: Jamey Sharp <jamey@minilop.net>
9897Date:   Sat Jun 19 10:44:55 2010 -0700
9898
9899    poll_for_response: Really handle xcb_poll_for_reply getting a reply.
9900    
9901    Don't lose async replies. That's bad.
9902    
9903    `xlsfonts -l`, which uses XListFontsWithInfo, worked fine, because the
9904    _XReply path worked; that path waited for replies, rather than polling.
9905    
9906    However, XRecordProcessReplies, which does nothing but call XPending,
9907    relied on the event-handling path to process async replies, and that was
9908    busted.
9909    
9910    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=28595
9911    
9912    Signed-off-by: Jamey Sharp <jamey@minilop.net>
9913
9914commit ef67486c5a8aada24fd95b2991a3c4979f53805f
9915Author: Jamey Sharp <jamey@minilop.net>
9916Date:   Mon Jun 21 13:34:15 2010 -0700
9917
9918    Revert "xcb_io.c: poll_for_response doesn't guarantee there's a pending request."
9919    
9920    This reverts commit 4a8b6528ff69f6feb8c0e119939b4ce6c088f29e, because as
9921    a matter of fact, if poll_for_response returns NULL when we know
9922    dpy->xcb->next_event is non-NULL, there *is* guaranteed to be a pending
9923    request.
9924
9925commit 301ec5b41e9d253a446db656e1789ac7345dc433
9926Author: Jamey Sharp <jamey@minilop.net>
9927Date:   Mon Jun 21 13:24:24 2010 -0700
9928
9929    Revert "poll_for_response: Really handle xcb_poll_for_reply getting a reply."
9930    
9931    This reverts commit c115095d7f2bc4f5a4fb26380e3698fefdad7611. We *do*
9932    need to check poll_for_event every time through the loop in
9933    poll_for_response, so the commit did too much.
9934
9935commit 4a8b6528ff69f6feb8c0e119939b4ce6c088f29e
9936Author: Jamey Sharp <jamey@minilop.net>
9937Date:   Mon Jun 21 10:54:02 2010 -0700
9938
9939    xcb_io.c: poll_for_response doesn't guarantee there's a pending request.
9940    
9941    Fixes the second bug reported in:
9942    https://bugs.freedesktop.org/show_bug.cgi?id=28595
9943    
9944    Signed-off-by: Jamey Sharp <jamey@minilop.net>
9945
9946commit c115095d7f2bc4f5a4fb26380e3698fefdad7611
9947Author: Jamey Sharp <jamey@minilop.net>
9948Date:   Sat Jun 19 10:44:55 2010 -0700
9949
9950    poll_for_response: Really handle xcb_poll_for_reply getting a reply.
9951    
9952    Don't lose async replies. That's bad.
9953    
9954    `xlsfonts -l`, which uses XListFontsWithInfo, worked fine, because the
9955    _XReply path worked; that path waited for replies, rather than polling.
9956    
9957    However, XRecordProcessReplies, which does nothing but call XPending,
9958    relied on the event-handling path to process async replies, and that was
9959    busted.
9960    
9961    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=28595
9962    
9963    Signed-off-by: Jamey Sharp <jamey@minilop.net>
9964    Signed-off-by: Josh Triplett <josh@joshtriplett.org>
9965
9966commit a25ae169862ab9b76daf259613b37c6b07bc2ef2
9967Author: Marko Myllynen <myllynen@redhat.com>
9968Date:   Sun Jun 13 19:23:05 2010 +0300
9969
9970    Implement SFS 5966 Annex 4 for Finland
9971    
9972    This patch adds Annex 4 of SFS 5966 for Finland and fixes two typos in
9973    Annex 3 (which were actually copied verbatim from the standard text).
9974    
9975    The implementation of the standard is now complete.
9976    
9977    X.Org bug#28498 <https://bugs.freedesktop.org/show_bug.cgi?id=28498>
9978    
9979    Signed-off-by: Julien Cristau <jcristau@debian.org>
9980
9981commit 47b04195d8a31c8f9e6dd804196162c6cfca3ac6
9982Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9983Date:   Fri Jun 4 13:20:17 2010 -0700
9984
9985    LINEAR_RGB_InitSCCData: When malloc fails, don't try to free unallocated bits
9986    
9987    One of the malloc failure checks had a goto to the wrong spot in the
9988    list of cleanup free() calls to unwind at the end, and was freeing
9989    bits that hadn't been initialized/allocated yet, since they would be
9990    stored in the struct that just failed to be allocated.
9991    
9992    Error: Null pointer dereference (CWE 476)
9993       Read from pointer that could be constant 'NULL'
9994            at line 805 of /export/alanc/X.Org/sx86/lib/libX11/src/xcms/LRGB.c in function 'LINEAR_RGB_InitSCCData'.
9995              Pointer checked against constant 'NULL' at line 754 but does not protect the dereference.
9996    
9997    [ This bug was found by the Parfait bug checking tool.
9998      For more information see http://research.sun.com/projects/parfait ]
9999    
10000    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10001
10002commit aebbf3623888119b43893b253195d93b613a6e1e
10003Author: Josh Triplett <josh@joshtriplett.org>
10004Date:   Sun Jun 6 19:11:55 2010 -0700
10005
10006    Mark the rest of Xprivate.h as _X_HIDDEN.
10007    
10008    None of the functions in Xprivate.h should have any callers outside of
10009    Xlib, by definition.
10010    
10011    Signed-off-by: Josh Triplett <josh@joshtriplett.org>
10012    Suggested-by: Jamey Sharp <jamey@minilop.net>
10013    Reviewed-by: Jamey Sharp <jamey@minilop.net>
10014
10015commit abcd1b67c8135ad652833e5a60d818837c39fce1
10016Author: Julien Cristau <jcristau@debian.org>
10017Date:   Fri Jun 4 13:57:45 2010 +0200
10018
10019    Hide _XSeqSyncFunction
10020    
10021    Commit a6d974dc59f2722b36e2df9d4f07aeee4f83ce43 made _XSeqSyncFunction
10022    non-static, but we don't need to export it.
10023    
10024    Signed-off-by: Julien Cristau <jcristau@debian.org>
10025    Reviewed-by: Adam Jackson <ajax@redhat.com>
10026    Reviewed-by: Jamey Sharp <jamey@minilop.net>
10027
10028commit 15e5eaf62897b3179d1fbe457cb19f886f0449f8
10029Author: Josh Triplett <josh@joshtriplett.org>
10030Date:   Thu Jun 3 09:41:01 2010 -0700
10031
10032    Remove support for building without XCB
10033    
10034    And there was much rejoicing.
10035    
10036    Signed-off-by: Josh Triplett <josh@joshtriplett.org>
10037    Reviewed-by: Jamey Sharp <jamey@minilop.net>
10038    
10039    Consensus on #xorg-devel agrees with removing --without-xcb; in
10040    particular, acks from Adam Jackson, Daniel Stone, Kristian Høgsberg,
10041    Julien Cristau, and Rémi Cardona.
10042
10043commit fb19eb767a32fd4ff74021c51bc6f60eb8bdff74
10044Author: Alan Coopersmith <alan.coopersmith@oracle.com>
10045Date:   Thu Jun 3 15:21:40 2010 -0700
10046
10047    libX11 1.3.4
10048    
10049    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10050
10051commit 8f3db40ca5108a919244f3fff7466d01a14b3ce2
10052Author: Alan Coopersmith <alan.coopersmith@oracle.com>
10053Date:   Thu Jun 3 13:08:17 2010 -0700
10054
10055    Workaround bug in groff flag processing that breaks distcheck
10056    
10057    At least with the groff 1.19.2 package I have installed, groff passes
10058    on the -I flags for the include path to grohtml, which if they come
10059    after the -P-I... flag we pass to grohtml to specify the image file
10060    name pattern cause it to override that flag and put the images in
10061    the wrong place, breaking "make distcheck" - changing the flag order
10062    works around this.
10063    
10064    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10065
10066commit bdb31a1fb707cebccc9efbbf68cb55c10fa4ea3e
10067Author: Alan Coopersmith <alan.coopersmith@oracle.com>
10068Date:   Thu Jun 3 11:25:33 2010 -0700
10069
10070    Fix typo that made configure always report "none" for man page suffix
10071    
10072    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10073
10074commit 6bb7d2d21d6b58019fb37b724b59c9744f30b9ce
10075Author: Paul Bender <pebender@gmail.com>
10076Date:   Thu Jun 3 11:20:26 2010 -0700
10077
10078    Bug 22591 - configure does not obey the --enable-*-transport options
10079    
10080    https://bugs.freedesktop.org/show_bug.cgi?id=22591
10081    
10082    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10083
10084commit d7f35946d673bb00f2768e025b6e1017422b2174
10085Author: Paul Bender <pebender@gmail.com>
10086Date:   Thu Jun 3 11:17:45 2010 -0700
10087
10088    Bug 22590 - libX11 1.2.1 has broken abstract namespace support
10089    
10090    https://bugs.freedesktop.org/show_bug.cgi?id=22590
10091    
10092    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10093
10094commit b2487d07f7b355f230a56e32c763acd08862735c
10095Author: Alan Coopersmith <alan.coopersmith@oracle.com>
10096Date:   Thu Jun 3 11:06:15 2010 -0700
10097
10098    Bug 22584 - libX11 does not cross compile
10099    
10100    Adaptation of patch submitted by Paul Bender in attachment 27301 to
10101    https://bugs.freedesktop.org/show_bug.cgi?id=22584
10102    
10103    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10104    Reviewed-by: Mikhail Gusarov <dottedmag@dottedmag.net>
10105    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
10106
10107commit 4378219ff8c1418418c70086085358b69d574e74
10108Author: Alan Coopersmith <alan.coopersmith@oracle.com>
10109Date:   Tue Jun 1 18:55:48 2010 -0700
10110
10111    Clarify requirements in XRestackWindows man page
10112    
10113    The required common parent window is not specified in the arguments,
10114    just implied as the parent of the first window in the list.
10115    
10116    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10117
10118commit f09c5299a381e2729e800a0ac43f1c0e371f65f6
10119Author: Jeremy Huddleston <jeremyhu@apple.com>
10120Date:   Wed May 12 16:42:18 2010 -0700
10121
10122    xcb: Add TCP fallback
10123    
10124    If we fail to connect to a UNIX socket and the transport isn't specified,
10125    fallback on TCP.  This matches behavior with the xtrans codepath and the
10126    Xlib spec.
10127    
10128    http://lists.x.org/archives/xorg-devel/2010-April/007915.html
10129    
10130    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
10131    Reviewed-by: Jamey Sharp <jamey@minilop.net>
10132
10133commit fd82552d5c0ce1931f29006a0c36f5e03cf8577e
10134Merge: aae2a4a7 933aee1d
10135Author: Jamey Sharp <jamey@minilop.net>
10136Date:   Mon May 10 16:51:24 2010 -0700
10137
10138    Merge branch 'xlib-xcb-thread-fixes'
10139
10140commit aae2a4a7aab26de3fa715d6ecd0a0e0926b37fc9
10141Author: Jeremy Huddleston <jeremyhu@apple.com>
10142Date:   Fri Apr 23 21:50:29 2010 -0700
10143
10144    Don't append the screen number when using a launchd socket
10145    
10146    ssh gets confused by this.  XQuartz is the only DDX using this
10147    functionality, and it doesn't support different screens, so
10148    let's just not include this until most ssh know how to handle
10149    this.
10150    
10151    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
10152
10153commit adcd0ec209abf832a769d52db660fb37eaad6e0c
10154Author: Jeremy Huddleston <jeremyhu@apple.com>
10155Date:   Fri Apr 23 16:33:44 2010 -0700
10156
10157    Remove launchd logic from _XConnectXCB as it's handled in XCB
10158    
10159    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
10160
10161commit d232b259c36fdde1f4179822809fec1480867dc5
10162Author: Jeremy Huddleston <jeremyhu@apple.com>
10163Date:   Tue Feb 2 17:01:28 2010 -0800
10164
10165    Fix various build warnings
10166    
10167    imLcIm.c: In function '_XimCachedFileName':
10168    imLcIm.c:361: warning: format '%03x' expects type 'unsigned int', but argument 8 has type 'long unsigned int'
10169    imLcIm.c:364: warning: format '%03x' expects type 'unsigned int', but argument 8 has type 'long unsigned int'
10170    
10171    imRm.c: In function '_XimDefaultArea':
10172    imRm.c:597: warning: cast from pointer to integer of different size
10173    imRm.c: In function '_XimDefaultColormap':
10174    imRm.c:626: warning: cast from pointer to integer of different size
10175    
10176    lcFile.c:224: warning: no previous prototype for 'xlocaledir'
10177    
10178    lcUTF8.c: In function 'iconv_cstombs':
10179    lcUTF8.c:1841: warning: assignment discards qualifiers from pointer target type
10180    lcUTF8.c:1869: warning: pointer targets in passing argument 1 of 'wctomb' differ in signedness
10181    lcUTF8.c:1873: warning: pointer targets in passing argument 1 of 'wctomb' differ in signedness
10182    lcUTF8.c: In function 'iconv_mbstocs':
10183    lcUTF8.c:1935: warning: pointer targets in passing argument 2 of 'mbtowc' differ in signedness
10184    lcUTF8.c: In function 'iconv_mbtocs':
10185    lcUTF8.c:2031: warning: pointer targets in passing argument 2 of 'mbtowc' differ in signedness
10186    lcUTF8.c: In function 'iconv_mbstostr':
10187    lcUTF8.c:2121: warning: pointer targets in passing argument 2 of 'mbtowc' differ in signedness
10188    lcUTF8.c: In function 'iconv_strtombs':
10189    lcUTF8.c:2180: warning: pointer targets in passing argument 1 of 'wctomb' differ in signedness
10190    lcUTF8.c: In function '_XlcAddGB18030LocaleConverters':
10191    lcUTF8.c:2367: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type
10192    lcUTF8.c:2368: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type
10193    lcUTF8.c:2373: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type
10194    lcUTF8.c:2374: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type
10195    lcUTF8.c:2375: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type
10196    lcUTF8.c:2376: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type
10197    lcUTF8.c:2377: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type
10198    
10199    XlibInt.c: In function '_XGetHostname':
10200    XlibInt.c:3441: warning: implicit declaration of function 'gethostname'
10201    XlibInt.c:3441: warning: nested extern declaration of 'gethostname'
10202    
10203    ConnDis.c: In function '_XDisconnectDisplay':
10204    ConnDis.c:540: warning: old-style function definition
10205    ConnDis.c: In function '_XSendClientPrefix':
10206    ConnDis.c:554: warning: old-style function definition
10207    ConnDis.c: In function 'XSetAuthorization':
10208    ConnDis.c:677: warning: old-style function definition
10209    
10210    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
10211
10212commit 3e11c73187acb2e2be9a812840bbbea947527ccb
10213Author: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
10214Date:   Fri Apr 23 00:01:54 2010 +0200
10215
10216    Allow X11 users to compose anarchism
10217    
10218    I can easily compose the hammer and sickle (the symbol representative
10219    of communism) by pressing the key sequence:
10220    
10221      <Compose> <C> <C> <C> <P> -> ☭
10222    
10223    But i can't easily make the circled A (the symbol representative of
10224    anarchism).
10225    
10226    I'd like to be able to use <Compose> <O> <A> (this is a
10227    currently unused key sequence) to generate the symbol:  Ⓐ
10228    
10229    Debian bug#555938 <http://bugs.debian.org/555938>
10230    
10231    Signed-off-by: Julien Cristau <jcristau@debian.org>
10232
10233commit 933aee1d5c53b0cc7d608011a29188b594c8d70b
10234Author: Jamey Sharp <jamey@minilop.net>
10235Date:   Fri Apr 16 20:18:28 2010 -0700
10236
10237    Fix Xlib/XCB for multi-threaded applications (with caveats).
10238    
10239    Rather than trying to group all response processing in one monolithic
10240    process_responses function, let _XEventsQueued, _XReadEvents, and
10241    _XReply each do their own thing with a minimum of code that can all be
10242    reasoned about independently.
10243    
10244    Tested with `ico -threads 20`, which seems to be able to make many
10245    icosahedrons dance at once quite nicely now.
10246    
10247    Caveats:
10248    
10249    - Anything that was not thread-safe in Xlib before XCB probably still
10250      isn't. XListFontsWithInfo, for instance.
10251    
10252    - If one thread is waiting for events and another thread tries to read a
10253      reply, both will hang until an event arrives. Previously, if this
10254      happened it might work sometimes, but otherwise would trigger either
10255      an assertion failure or a permanent hang.
10256    
10257    - Versions of libxcb up to and including 1.6 have a bug that can cause
10258      xcb_wait_for_event or xcb_wait_for_reply to hang if they run
10259      concurrently with xcb_writev or other writers. So you'll want that fix
10260      as well.
10261    
10262    Signed-off-by: Jamey Sharp <jamey@minilop.net>
10263    Reviewed-by: Josh Triplett <josh@freedesktop.org>
10264
10265commit aab43278ae619eb57d2dd9c7396f460f078588fc
10266Author: Jamey Sharp <jamey@minilop.net>
10267Date:   Fri Apr 16 22:24:16 2010 -0700
10268
10269    Use InternalLockDisplay on code paths called from LockDisplay.
10270    
10271    It's easier to reason about the code when we can't re-enter the
10272    Xlib-private sync-handlers while they're already running.
10273    
10274    Signed-off-by: Jamey Sharp <jamey@minilop.net>
10275    Reviewed-by: Josh Triplett <josh@freedesktop.org>
10276
10277commit 660b7d05f4ca4ab4661c9fe7ce655a4909b4e556
10278Author: Jamey Sharp <jamey@minilop.net>
10279Date:   Fri Apr 16 19:45:11 2010 -0700
10280
10281    Fix _XSend to enqueue the right range of pending requests.
10282    
10283    _XSend was off-by-one on both ends. It should not re-enqueue the last
10284    request that was already flushed, but it should enqueue the last request
10285    currently being flushed.
10286    
10287    Signed-off-by: Jamey Sharp <jamey@minilop.net>
10288    Reviewed-by: Josh Triplett <josh@freedesktop.org>
10289
10290commit f2735889908d6e5a7f8dbee42f00c54a52665191
10291Author: Jamey Sharp <jamey@minilop.net>
10292Date:   Fri Apr 16 19:45:11 2010 -0700
10293
10294    Pending requests are always added in-order.
10295    
10296    Replace insert_pending_request, which did an in-order search of the
10297    queue to find the right insertion point, with a simpler
10298    append_pending_request, and use that in _XSend as well.
10299    
10300    Includes assertions to check that the list of pending requests is in
10301    order by sequence number and does not have duplicates.
10302    
10303    Signed-off-by: Jamey Sharp <jamey@minilop.net>
10304    Reviewed-by: Josh Triplett <josh@freedesktop.org>
10305
10306commit d9cf5885b0f97942fbbd2a7cc50118132ece50f6
10307Author: Markus Duft <markus.duft@salomon.at>
10308Date:   Fri Apr 16 08:39:34 2010 -0700
10309
10310    Bug 26839: Fix build problem on Interix (POSIX layer on Windows)
10311    
10312    https://bugs.freedesktop.org/show_bug.cgi?id=26839
10313    
10314    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10315
10316commit a3f5f1b90936d23e9894e3261b2d77fb7b32a51a
10317Author: Josh Triplett <josh@freedesktop.org>
10318Date:   Thu Apr 15 14:24:21 2010 -0700
10319
10320    Stop returning an int from _XIDHandler and _XSeqSyncFunction
10321    
10322    _XIDHandler and _XSeqSyncFunction originally ran from dpy->synchandler, and
10323    thus had to return an int.  Now, they only run from _XPrivSyncHandler or
10324    LockDisplay, neither of which needs to check their return value since they
10325    always returned 0.  Make them both void.
10326    
10327    Signed-off-by: Josh Triplett <josh@freedesktop.org>
10328    Signed-off-by: Jamey Sharp <jamey@minilop.net>
10329
10330commit a6d974dc59f2722b36e2df9d4f07aeee4f83ce43
10331Author: Jamey Sharp <jamey@minilop.net>
10332Date:   Thu Apr 15 13:05:08 2010 -0700
10333
10334    Move XID and sync handling from SyncHandle to LockDisplay to fix races.
10335    
10336    XID and sync handling happened via _XPrivSyncHandler, assigned to
10337    dpy->synchandler and called from SyncHandle.  _XPrivSyncHandler thus ran
10338    without the Display lock, so manipulating the Display caused races, and
10339    these races led to assertions in multithreaded code (demonstrated via
10340    ico).
10341    
10342    In the XTHREADS case, after you've called XInitThreads, we can hook
10343    LockDisplay and UnlockDisplay.  Use that to run _XIDHandler and
10344    _XSeqSyncHandler from LockDisplay rather than SyncHandle; we then know
10345    that we hold the lock, and thus we can avoid races.  We think it makes
10346    sense to do these both from LockDisplay rather than UnlockDisplay, so
10347    that you know you have valid sync and a valid XID before you start
10348    setting up the request you locked to prepare.
10349    
10350    In the !XTHREADS case, or if you haven't called XInitThreads, you don't
10351    get to use Xlib from multiple threads, so we can use the logic we have
10352    now (with synchandler and savedsynchandler) without any concern about
10353    races.
10354    
10355    This approach gets a bit exciting when the XID and sequence sync
10356    handlers drop and re-acquire the Display lock. Reacquisition will re-run
10357    the handlers, but they return immediately unless they have work to do,
10358    so they can't recurse more than once.  In the worst case, if both of
10359    them have work to do, we can nest the Display lock three deep.  In the
10360    case of the _XIDHandler, we drop the lock to call xcb_generate_id, which
10361    takes the socket back if it needs to request more XIDs, and taking the
10362    socket back will reacquire the lock; we take care to avoid letting
10363    _XIDHandler run again and re-enter XCB from the return_socket callback
10364    (which causes Very Bad Things, and is Not Allowed).
10365    
10366    Tested with ico (with 1 and 20 threads), and with several test programs
10367    for XID and sequence sync.  Tested with and without XInitThreads(), and
10368    with and without XCB.
10369    
10370    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=23192
10371    
10372    Signed-off-by: Jamey Sharp <jamey@minilop.net>
10373    Signed-off-by: Josh Triplett <josh@freedesktop.org>
10374
10375commit b089b53b697c2851db2985d32af3b29f1da5e31e
10376Author: Jamey Sharp <jamey@minilop.net>
10377Date:   Wed Apr 14 12:59:11 2010 -0700
10378
10379    Honest. Extensions get to filter async errors too.
10380    
10381    Under some circumstances, errors are picked up by calling
10382    xcb_poll_for_reply, rather than xcb_poll_for_event, because Xlib issued
10383    the requests with the XCB_REQUEST_CHECKED flag. That happens when either
10384    an async handler is queued at the time the requests are flushed, or when
10385    XSetEventQueueOwner has been used to prevent Xlib from processing XCB's
10386    event queue.
10387    
10388    This bugfix extends 405132dab64bf2375f8e57d02b1b53da2311933a to cover
10389    those cases.
10390    
10391    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=26545
10392    
10393    Signed-off-by: Jamey Sharp <jamey@minilop.net>
10394
10395commit a15c31274650e391bc6de5d0951eb4464c228139
10396Author: Jamey Sharp <jamey@minilop.net>
10397Date:   Wed Apr 14 12:10:34 2010 -0700
10398
10399    _XError already runs async handlers; only call them directly for replies.
10400    
10401    The previous behavior probably would have triggered bug reports someday.
10402    
10403    Signed-off-by: Jamey Sharp <jamey@minilop.net>
10404
10405commit 405132dab64bf2375f8e57d02b1b53da2311933a
10406Author: Jamey Sharp <jamey@minilop.net>
10407Date:   Tue Apr 13 12:12:36 2010 -0700
10408
10409    Extensions get to filter async errors too.
10410    
10411    Apparently I misread XlibInt.c:_XReply and thought that handlers set
10412    with XESetError should be consulted only for the sequence number that
10413    _XReply is currently looking for. In fact, the error handlers are also
10414    consulted when an error arrives for a request that was not expected to
10415    have a reply.
10416    
10417    However, in an odd twist, the error handlers are *not* consulted outside
10418    of _XReply--that is, when looking for events, or waiting to be able to
10419    flush the output queue. So this patch takes some small pains to preserve
10420    that behavior, though it seems likely to have been unintentional.
10421    
10422    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=26545
10423    
10424    Signed-off-by: Jamey Sharp <jamey@minilop.net>
10425
10426commit d3eab4a38f3e53ef21eb3b6fa66ead7afecf6227
10427Author: Jamey Sharp <jamey@minilop.net>
10428Date:   Tue Apr 13 12:49:59 2010 -0700
10429
10430    Prefer the xcb_generic_error_t we already have over casting to xEvent.
10431    
10432    Just a minor cleanup.
10433    
10434    Signed-off-by: Jamey Sharp <jamey@minilop.net>
10435
10436commit 75ea8c37935ccc911557d16a303ba595b8ab106b
10437Author: Jamey Sharp <jamey@minilop.net>
10438Date:   Mon Apr 12 11:30:20 2010 -0700
10439
10440    Run the user's synchandler as well as any internal synchandlers.
10441    
10442    Fixes https://bugs.freedesktop.org/show_bug.cgi?id=27595
10443    
10444    Signed-off-by: Jamey Sharp <jamey@minilop.net>
10445
10446commit c3f3e4a9e531d010312c97e753d6e543e607094d
10447Author: Kusanagi Kouichi <slash@ac.auone-net.jp>
10448Date:   Fri Feb 12 17:16:10 2010 +0900
10449
10450    Fix manual typos.
10451    
10452    Signed-off-by: Kusanagi Kouichi <slash@ac.auone-net.jp>
10453    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10454
10455commit 75c6c5595408caba9ef8233839d77021d02f86f2
10456Author: Dirk Wallenstein <dirkwallenstein@t-online.de>
10457Date:   Fri Feb 5 20:42:46 2010 +0100
10458
10459    man: Correct the XkbAllAccessXEventsMask mask name
10460    
10461    This mask has probably been renamed but not been updated in the manuals.
10462    
10463    Signed-off-by: Dirk Wallenstein <dirkwallenstein@t-online.de>
10464    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10465
10466commit 9262aceaff24c954cab8c252690032bc2ec25e7d
10467Author: Dirk Wallenstein <dirkwallenstein@t-online.de>
10468Date:   Fri Feb 5 20:42:45 2010 +0100
10469
10470    man: Add missing geometry component flag
10471    
10472    Signed-off-by: Dirk Wallenstein <dirkwallenstein@t-online.de>
10473    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10474
10475commit 50cf134465f6fd263f37acecac94518468ef1c6d
10476Author: Dirk Wallenstein <halsmit@t-online.de>
10477Date:   Tue Feb 2 21:24:32 2010 +0100
10478
10479    man: Return value of XkbGetState is Status and not Bool
10480    
10481    Signed-off-by: Dirk Wallenstein <halsmit@t-online.de>
10482    Reviewed-by: Julien Cristau <jcristau@debian.org>
10483    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10484
10485commit 7a93ae2bb5292a97fdd27ed818bc81248b37f641
10486Author: Dirk Wallenstein <halsmit@t-online.de>
10487Date:   Tue Feb 2 21:24:30 2010 +0100
10488
10489    man: Fix return value specification of XkbKeyActionEntry
10490    
10491    The XkbKeyActionEntry macro expands to a pointer.
10492    
10493    Signed-off-by: Dirk Wallenstein <halsmit@t-online.de>
10494    Reviewed-by: Julien Cristau <jcristau@debian.org>
10495    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10496
10497commit e9884d4a05a5661ec343ea8a2aa0562b6419e086
10498Author: Dirk Wallenstein <halsmit@t-online.de>
10499Date:   Tue Feb 2 21:24:29 2010 +0100
10500
10501    man: Redirect users from XKeycodeToKeysym to XkbKeycodeToKeysym #25732
10502    
10503    XKeycodeToKeysym keeps compatibility with pre-XKB and thus only sees 2
10504    groups with 2 levels each. It wraps the index into the next group.
10505    This behavior confuses the unaware user, and therefore this will add a
10506    reference to XkbKeycodeToKeysym in the corresponding man paragraph.
10507    
10508    Another bug had that issue, too. #5349
10509    
10510    Signed-off-by: Dirk Wallenstein <halsmit@t-online.de>
10511    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10512
10513commit 6474cdf97cd648afaeaa872155f3fa21cfb43f80
10514Author: Alan Coopersmith <alan.coopersmith@oracle.com>
10515Date:   Thu Apr 8 19:59:55 2010 -0700
10516
10517    Fix typo in new fi_FI.UTF-8 that was reported by "make check"
10518    
10519    Unrecognized pattern in Compose on line #154:
10520      <dead_diaeresis> <space>                " "¨"
10521    
10522    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
10523
10524commit 91bd5e7af2d3a9526aefb73dc10f417896f0e4dd
10525Author: Marko Myllynen <myllynen@redhat.com>
10526Date:   Thu Apr 8 19:52:42 2010 -0700
10527
10528    Bug 27465 - Rewritten fi_FI.UTF-8 Compose file
10529    
10530    I've rewritten the fi_FI.UTF-8 Compose file so that it
10531    
10532    - includes en_US.UTF-8/Compose for base compose definitions (and thus gets any
10533    possible additions to en_US.UTF-8/Compose automatically included)
10534    - overrides any en_US.UTF-8/Compose definitions with fi_FI.UTF-8/Compose
10535    definitions (thus making it safe to include en_US.UTF-8/Compose)
10536    - lists all the definitions specified in the SFS 5966 standard (thus making it
10537    easy to verify that the implementation is valid and complete)
10538    - adds a header about the file itself as required by the standard
10539    
10540    The rewritten version is ~320 lines compared to over 5000 lines of the previous
10541    version.
10542    
10543    https://bugs.freedesktop.org/show_bug.cgi?id=27465
10544
10545commit f6a4fd0c7615684d08e848245849dea4017a5214
10546Author: Gaetan Nadon <memsize@videotron.ca>
10547Date:   Thu Apr 1 21:46:12 2010 -0400
10548
10549    config: update and relocate AC_DEFINE_DIR macro
10550    
10551    Remove deprecated acinclude.m4 macro container file
10552    Use separate macro files as per autoconf recommendation
10553    Use the latest macro from GNU (ax) which replaces
10554    the non-gnu version (ac)
10555    This preserves the Autoconf macro AC namespace.
10556    
10557    Also moved out of acinclude.m4 is the DOLT macro
10558    
10559    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
10560
10561commit 61d5231db418cec51bd718633c3bba39b18689d6
10562Author: Gaetan Nadon <memsize@videotron.ca>
10563Date:   Mon Mar 29 14:53:48 2010 -0400
10564
10565    config: remove the pkgconfig pc.in file from EXTRA_DIST
10566    
10567    Automake always includes it in the tarball.
10568    
10569    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
10570
10571commit 69fc76a0321c6b25cc4286173c53435c69ab8e0e
10572Author: Fernando Carrijo <fcarrijo@yahoo.com.br>
10573Date:   Wed Mar 17 23:53:16 2010 -0300
10574
10575    No need for req->firstKeyCode to be set twice.
10576    
10577    There is no reason to set req->firstKeyCode twice when a client, wishful
10578    for changing keyboard mappings, calls XChangeKeyboardMapping. This patch
10579    fixes the mistake by making no functional changes to libX11 whatsoever.
10580    
10581    Signed-off-by: Fernando Carrijo <fcarrijo@yahoo.com.br>
10582    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
10583
10584commit b5797597f83ee62228abfb88f026ef92163e07a5
10585Author: Gaetan Nadon <memsize@videotron.ca>
10586Date:   Tue Feb 16 10:37:21 2010 -0500
10587
10588    config: move CWARNFLAGS from configure.ac to Makefile.am
10589    
10590    Compiler warning flags should be explicitly set in the makefile
10591    rather than being merged with other packages compiler flags.
10592    
10593    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
10594    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
10595
10596commit 052c4d7995b0e52a038933beb85cd544571c6b7e
10597Author: Gaetan Nadon <memsize@videotron.ca>
10598Date:   Tue Feb 16 14:28:21 2010 -0500
10599
10600    specs: change install cmd due to automake 1.11
10601    
10602    specData_INSTALL is defined in 1.9 and 1.10 but not 1.11
10603    
10604    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
10605
10606commit 7277a18cda9f5a6807d11cf4ceb9449b1c302c18
10607Author: Gaetan Nadon <memsize@videotron.ca>
10608Date:   Tue Feb 9 17:27:08 2010 -0500
10609
10610    doc: use $(mkdir_p) rather than $(MKDIR_P) due to automake 1.9.6
10611    
10612    $(MKDIR_P) is not defined in automake 1.9.
10613    
10614    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
10615
10616commit e66eda95b520727969d721416d4ea49b54ef2b03
10617Author: Gaetan Nadon <memsize@videotron.ca>
10618Date:   Tue Feb 2 16:29:26 2010 -0500
10619
10620    specs: install html images in $docdir with html files
10621    
10622    The images required by the html files have been omitted.
10623    
10624    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
10625
10626commit 137d1ff6be99d040e77c8c4c52029c5bdf1f4808
10627Author: Gaetan Nadon <memsize@videotron.ca>
10628Date:   Sun Jan 31 14:16:20 2010 -0500
10629
10630    doc: use new macros to control doc generation
10631    
10632    Namely XORG_WITH_GROFF for the groff generation tool
10633    XORG_WITH_PS2PDF for the conversion of PS docs to PDF
10634    XORG_ENABLE_SPECS for the generation of specs
10635    
10636    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
10637
10638commit 9ca583c5d6fcf9cd8151ee7b019630b141d32fab
10639Author: Gaetan Nadon <memsize@videotron.ca>
10640Date:   Tue Jan 26 19:41:08 2010 -0500
10641
10642    doc: clean-up generated html images
10643    
10644    Generate images in /images as is the convention
10645    Provide a base file name for images rather than process ID
10646    Remove images directory when running make clean
10647    
10648    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
10649
10650commit eb289b34bfc9978eef724e0f268975938334c06c
10651Author: Kristian Høgsberg <krh@bitplanet.net>
10652Date:   Thu Jan 21 13:39:17 2010 -0500
10653
10654    XErrorDB: Add new DRI2 request names
10655
10656commit 6babf2123d05adb9349394c49cc2d81d1f66cf9e
10657Author: Julien Cristau <jcristau@debian.org>
10658Date:   Sat Jan 16 22:47:03 2010 +0000
10659
10660    man: Fix typo in Makefile
10661    
10662    Missing line continuation was preventing the XCompose alias from being
10663    generated.
10664    
10665    Signed-off-by: Julien Cristau <jcristau@debian.org>
10666    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10667
10668commit 68530599e61cf9fef3fcc91650e7cef21837fce7
10669Author: Alan Coopersmith <alan.coopersmith@sun.com>
10670Date:   Sat Jan 16 11:41:32 2010 -0800
10671
10672    libX11 1.3.3
10673    
10674    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10675
10676commit 1e5af224b9fbdb154620f898558704f2bc4bf4e9
10677Author: Alan Coopersmith <alan.coopersmith@sun.com>
10678Date:   Thu Jan 14 18:33:39 2010 -0800
10679
10680    Update COPYING file with actual licenses from libX11 code & docs
10681    
10682    COPYING was previously a years out-of-date copy of the LICENSES
10683    doc summarizing all licenses for all XFree86 components, many of
10684    which did not apply to libX11.
10685    
10686    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10687
10688commit ddb1786720d6136b1b28be599c75c10ad1b76a2a
10689Author: Alan Coopersmith <alan.coopersmith@sun.com>
10690Date:   Thu Jan 14 17:38:26 2010 -0800
10691
10692    Purge CVS/RCS id tags
10693    
10694    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10695
10696commit c1db9ddcfa7091f173478dca45bf720badedfca4
10697Author: Alan Coopersmith <alan.coopersmith@sun.com>
10698Date:   Thu Jan 14 15:39:14 2010 -0800
10699
10700    Update Sun license notices to current X.Org standard form
10701    
10702    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10703
10704commit 1aaa7c0358c5c035b99625f5715cb722bc2d2a2f
10705Author: Alan Coopersmith <alan.coopersmith@sun.com>
10706Date:   Thu Jan 14 08:28:22 2010 -0800
10707
10708    Add %S substitutions to Compose man page
10709    
10710    Commit 9df349a7894725f9469b106af645f57f7f3f9af3 added support for %S
10711    in Compose file include statements - this documents it in the Compose
10712    file man page.
10713    
10714    Also changes the existing substitution documentation to list format
10715    instead of a paragraph format to allow easier adding of %S.
10716    
10717    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10718
10719commit 94b45db93058cffa25598fe27dd3e385ace9d305
10720Author: Richard Purdie <rpurdie@linux.intel.com>
10721Date:   Thu Jan 14 08:04:28 2010 -0800
10722
10723    Fix configure.ac PKG_ macro calls
10724    
10725    If the first call to PKG_CHECK_MODULES() may not be called during execution
10726    which is the case here since its inside a case statement, call
10727    PKG_PROG_PKG_CONFIG() to ensure things worked correctly.
10728    
10729    Fixes a configure failure introduced by commit
10730    87529c039050ce3336ff9ce00f1b5a21d15690da when xcb is enabled.
10731    
10732    http://bugs.freedesktop.org/show_bug.cgi?id=26041
10733    
10734    Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
10735    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10736
10737commit df559d8bc2238a2c369152fcb06e5b5ab132a5dc
10738Author: Alan Coopersmith <alan.coopersmith@sun.com>
10739Date:   Tue Jan 12 09:18:15 2010 -0800
10740
10741    Raise xorg-macros requirement to 1.4
10742    
10743    Needed since the changes in 464390f16d7ed4aa5bf80f89863ba92273075ec2
10744    depend on the INSTALL file delivered in xorg-macros 1.4
10745    
10746    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10747
10748commit 9df349a7894725f9469b106af645f57f7f3f9af3
10749Author: James Cloos <cloos@jhcloos.com>
10750Date:   Wed Jan 13 11:04:38 2010 -0500
10751
10752    Allow inclusion of system level compose files.
10753    
10754    With the release of XFree86 4.4 an inclusion system of compose files was
10755    added to Xlib to allow inclusion of the default compose file (with %L),
10756    any compose files from user’s home directory (with %H), or a compose
10757    file with a hard coded path¹. However, even today including system level
10758    compose files is not possible in a platform independent manner although
10759    the machinery for including compose files and overriding previously
10760    defined compositions is already in place.
10761    
10762    With the ability to include system level compose files one could greatly
10763    reduce the need for compose file rule duplication and the work needed to
10764    propagate changes in one compose file to others. For example, currently
10765    the Finnish compose file fi_FI.UTF-8 weights over 5000 lines² but it
10766    is almost identical with en_US.UTF-8 except for perhaps half a dozen
10767    compositions.
10768    
10769    This commit allows one to include system level compose files with the
10770    following kind of syntax:
10771    
10772    include "%S/en_US.UTF-8/Compose"
10773    
10774    1] http://www.xfree86.org/4.4.0/RELNOTES5.html#42
10775    2] http://cgit.freedesktop.org/xorg/lib/libX11/tree/nls/fi_FI.UTF-8/Compose.pre
10776    
10777    Signed-off-by: Marko Myllynen <myllynen@redhat.com>
10778    Signed-off-by: James Cloos <cloos@jhcloos.com>
10779
10780commit ccf21a8877f40136e25f2f62d0668b0c76b3cfbd
10781Author: Thien-Thi Nguyen <ttn@gnuvola.org>
10782Date:   Tue Dec 1 10:31:47 2009 +0100
10783
10784    libX11: Fix comment: Invert polarity (direction) of reformat description.
10785    
10786    Signed-off-by: Thien-Thi Nguyen <ttn@gnuvola.org>
10787    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10788
10789commit 4d4676c0d6324d2ff9d00d15ab485fa5d848a369
10790Author: Osamu Sayama <osamu.sayama@sun.com>
10791Date:   Tue Jan 5 17:26:40 2010 -0800
10792
10793    set_fontset_extents crash after get_rotate_fontname fix in 2bef065b70f7
10794    
10795    - In set_fontset_extents, check font_data is not NULL before running
10796      loop that may increment it to a non-NULL invalid pointer.
10797    - Make sure get_rotate_fontname counts the final field
10798    
10799    Fixes OpenSolaris bug 6913809: X application dumps core in ja_JP.UTF-8 locale
10800    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6913809>
10801    
10802    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10803    Reviewed-by: Adam Jackson <ajax@redhat.com>
10804
10805commit 87529c039050ce3336ff9ce00f1b5a21d15690da
10806Author: Alan Coopersmith <alan.coopersmith@sun.com>
10807Date:   Tue Jan 5 18:02:37 2010 -0800
10808
10809    Merge X11, XKBPROTO, & XPROTO pkg-config lists
10810    
10811    Since the XPROTO_CFLAGS & XKBPROTO_CFLAGS are just merged into X11_CFLAGS
10812    in configure.ac anyway, might as well combine the lists passed to
10813    PKG_CHECK_MODULES to reduce duplication in the flags.
10814    
10815    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10816    Reviewed-by: Rémi Cardona <remi@gentoo.org>
10817    Acked-by: Peter Hutterer <peter.hutterer@who-t.net>
10818
10819commit 2dd053667b44c55e2bf601aec7b75fc6fee1cf44
10820Author: Alan Coopersmith <alan.coopersmith@sun.com>
10821Date:   Tue Jan 5 17:56:58 2010 -0800
10822
10823    Add XCompose man page shadow for Compose man page
10824    
10825    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10826
10827commit 02543bba816e065c02cd36e0c9e21519a9ee9c96
10828Author: Alan Coopersmith <alan.coopersmith@sun.com>
10829Date:   Tue Jan 5 17:47:44 2010 -0800
10830
10831    Add $(AM_V_GEN) to silence lint rules too
10832    
10833    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10834
10835commit db7c6fdeeaef9475458498e4cf09d6b1329e9aa3
10836Author: Alan Coopersmith <alan.coopersmith@sun.com>
10837Date:   Tue Jan 5 17:42:42 2010 -0800
10838
10839    Remove GCC_WARNINGS now that XORG_CWARNFLAGS sets them for us
10840    
10841    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10842
10843commit 6b4e526e7ba105622f6b143e8e2639b44cb6cc19
10844Author: Gaetan Nadon <memsize@videotron.ca>
10845Date:   Sun Nov 29 10:44:24 2009 -0500
10846
10847    configure.ac: restore correct order for XORG_DEFAULT_OPTIONS
10848    
10849    It must be following AC_USE_SYSTEM_EXTENSION
10850
10851commit 3dbaa11d1c8705e1b309c6686f354766b651ad20
10852Author: Gaetan Nadon <memsize@videotron.ca>
10853Date:   Sun Nov 29 10:01:44 2009 -0500
10854
10855    Add .gitignore in /specs for generated files
10856    
10857    Being in /specs, it will apply for all 3 subdirs
10858
10859commit f45d39d37aab04742e44cd8c3c993aad7587e40c
10860Author: Gaetan Nadon <memsize@videotron.ca>
10861Date:   Fri Nov 27 20:56:03 2009 -0500
10862
10863    Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
10864    
10865    Now that the INSTALL file is generated.
10866    Allows running make maintainer-clean.
10867
10868commit 464390f16d7ed4aa5bf80f89863ba92273075ec2
10869Author: Gaetan Nadon <memsize@videotron.ca>
10870Date:   Wed Oct 28 14:09:10 2009 -0400
10871
10872    INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
10873    
10874    Add missing INSTALL file. Use standard GNU file on building tarball
10875    README may have been updated
10876    Remove AUTHORS file as it is empty and no content available yet.
10877    Remove NEWS file as it is empty and no content available yet.
10878
10879commit 6360e7f0ce6a75da2bed33ede7fea783a1fb80e1
10880Author: Gaetan Nadon <memsize@videotron.ca>
10881Date:   Tue Oct 27 15:07:25 2009 -0400
10882
10883    Deploy the new XORG_DEFAULT_OPTIONS #24242
10884    
10885    This macro aggregate a number of existing macros that sets commmon
10886    X.Org components configuration options. It shields the configuration file from
10887    future changes.
10888
10889commit d02f943c98fde2f14319bc57fd9ad77eb9a2a572
10890Author: Gaetan Nadon <memsize@videotron.ca>
10891Date:   Mon Oct 26 22:08:42 2009 -0400
10892
10893    Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
10894    
10895    ChangeLog filename is known to Automake and requires no further
10896    coding in the makefile.
10897
10898commit f77c89c751a6a63c8ef11ecdddca2aed11ff6e29
10899Author: Gaetan Nadon <memsize@videotron.ca>
10900Date:   Thu Oct 22 12:34:19 2009 -0400
10901
10902    .gitignore: use common defaults with custom section # 24239
10903    
10904    Using common defaults will reduce errors and maintenance.
10905    Only the very small or inexistent custom section need periodic maintenance
10906    when the structure of the component changes. Do not edit defaults.
10907
10908commit 46c7b0e9d0d85cf5ccc0d40d19821fcc3335503b
10909Author: Alan Coopersmith <alan.coopersmith@sun.com>
10910Date:   Thu Nov 12 23:05:40 2009 -0800
10911
10912    Add compose-check.pl to EXTRA_DIST
10913    
10914    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10915
10916commit 54c64267cc8bc98641cc39a22cb7bd71673e89e0
10917Author: Julien Cristau <jcristau@debian.org>
10918Date:   Thu Oct 29 17:17:24 2009 +0100
10919
10920    man: fix XCopyGC argument order
10921    
10922    Ubuntu bug#408337
10923
10924commit aad10032651cdc2a53b359035954454a28d6db67
10925Author: Alan Coopersmith <alan.coopersmith@sun.com>
10926Date:   Fri Oct 23 13:55:14 2009 -0700
10927
10928    libX11 1.3.2
10929    
10930    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10931
10932commit 6303ada89cb228c0f9656036f798703afb42fc29
10933Author: Peter Hutterer <peter.hutterer@who-t.net>
10934Date:   Wed Oct 21 12:42:07 2009 +1000
10935
10936    Add smiley faces to compose sequences.
10937    
10938    I wonder how we could have lasted that long without them.
10939    
10940    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
10941    Acked-by: Daniel Stone <daniel@fooishbar.org>
10942    Acked-By: James Cloos <cloos@jhcloos.com>
10943
10944commit 0e104ebd8628803c27e36b16922ad1edd891325a
10945Author: Alan Coopersmith <alan.coopersmith@sun.com>
10946Date:   Thu Oct 22 23:12:30 2009 -0700
10947
10948    Add man page for Compose file format
10949    
10950    Based on grammar description in modules/im/ximcp/imLcPrs.c and
10951    note on XFree86 changes formerly found in xorg-docs RELNOTES.sgml
10952    
10953    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10954
10955commit 9c95f2af7c442b3a59b1a30cf804f1ef4e7fc5b5
10956Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
10957Date:   Tue Oct 20 12:46:03 2009 -0700
10958
10959    Add extra configuration and sanity checks for groff and ps2pdf
10960    
10961    1) Add AC_ARG_VAR for GROFF and PS2PDF to inform users of these
10962       environment variables.
10963    2) Check that groff -ms works
10964    
10965    Some distributions ship the ms macros as a separate package which may
10966    not be installed together with groff, so we need to make sure that groff
10967    works and the required macros are actually installed before attempting
10968    to build the specs.
10969    
10970    Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
10971    Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
10972    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
10973
10974commit d3f801fd2f9198eaad6797414dba652f9c006c6d
10975Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
10976Date:   Sun Oct 18 17:34:53 2009 -0500
10977
10978    Fix VPATH build of libX11 specs
10979    
10980    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
10981
10982commit ad15e1a89d30ccc11d80745897b83def1448e8c0
10983Author: Alan Coopersmith <alan.coopersmith@sun.com>
10984Date:   Sat Oct 17 16:14:34 2009 -0700
10985
10986    libX11 1.3.1
10987    
10988    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10989
10990commit 0cbf98c17a7484bb58b2464b98d63bb3b4ea2594
10991Author: Alan Coopersmith <alan.coopersmith@sun.com>
10992Date:   Sat Oct 17 16:28:25 2009 -0700
10993
10994    Fix make distcheck
10995    
10996    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
10997
10998commit 082e62ad268ef16a3bebc5a3c9fa008dbdc483ed
10999Author: Alan Coopersmith <alan.coopersmith@sun.com>
11000Date:   Fri Oct 16 19:25:35 2009 -0700
11001
11002    Use $(AM_V_GEN) to silence echo commands for generating shadow man pages
11003    
11004    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11005
11006commit 4e66da0783b2e5e3b288aaecd3c89396ed425c20
11007Author: Alan Coopersmith <alan.coopersmith@sun.com>
11008Date:   Wed Oct 14 16:18:24 2009 -0700
11009
11010    Move libX11 & XIM/locale specs from xorg-docs
11011    
11012    If groff is found, and --disable-specs is not passed to configure,
11013    specs will be converted to text, html and ps (or pdf if ps2pdf is
11014    found) and installed to $(docdir)
11015    
11016    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11017
11018commit 5d3d817a42ddcc8d0c6efd33efd1442fe14f5c6b
11019Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
11020Date:   Tue Oct 13 19:15:51 2009 -0500
11021
11022    Provide _Xsetlocale compat wrappers on Cygwin
11023    
11024    Previous versions of Cygwin did not have proper locale support, so Cygwin/X
11025    defined X_LOCALE, using _Xsetlocale instead.  Cygwin 1.7 has added locale
11026    support, but we can't remove the _Xsetlocale entry point without breaking
11027    ABI.
11028    
11029    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
11030
11031commit 2c8b3a877a713bb66a6316a7051b43c46af6e1a0
11032Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
11033Date:   Tue Oct 13 19:15:49 2009 -0500
11034
11035    dolt: add Cygwin to supported platforms
11036    
11037    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
11038
11039commit a2c8e3e34b15b57ff881a52101fc961a602f35e4
11040Author: Alan Coopersmith <alan.coopersmith@sun.com>
11041Date:   Wed Oct 14 13:23:30 2009 -0700
11042
11043    Recognize XSUNBUFFERSIZE alias for XLIBBUFFERSIZE on Solaris
11044    
11045    Also fix indenting of the XLIBBUFFERSIZE code to match surrounding code
11046    
11047    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11048
11049commit 34ddfca7b7d58240b0fe74bec6b2e0652d15c051
11050Author: Jon TURNEY <jon.turney@dronecode.org.uk>
11051Date:   Tue Feb 10 17:47:25 2009 +0000
11052
11053    Include sys/select.h for select() and struct timeval, if it exists
11054    
11055    This is a cygwin build fix
11056
11057commit 383165916ddac91740d4c780174d4c0d07cdb994
11058Author: Xake <xake@rymdraket.net>
11059Date:   Sun Sep 27 11:16:36 2009 +0200
11060
11061    Use AM_V_GEN instead of customized macros for AM_SILENT_RULES
11062    
11063    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11064
11065commit 854269d55cdda8caf425515bfed2855e211a5ada
11066Author: Julien Cristau <jcristau@debian.org>
11067Date:   Tue Oct 6 16:11:24 2009 +0200
11068
11069    configure: quote argument to m4_pattern_forbid
11070    
11071    Without this, configure spits out
11072    ../configure: line 12364: ac_fn_c_check_member: command not found
11073    ../configure: line 12378: ac_fn_c_check_type: command not found
11074    
11075    Also anchor the pattern to make it stricter.
11076    
11077    Signed-off-by: Julien Cristau <jcristau@debian.org>
11078
11079commit 3bb020587ce74e0737ec7aceb20041f1e77d3b87
11080Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
11081Date:   Thu Oct 1 22:20:38 2009 -0700
11082
11083    Split CFLAGS into CPPFLAGS and CFLAGS
11084    
11085    On some build systems, CPPFLAGS is set to "-I/some/prefix/include".  If older
11086    X11 headers are in /some/prefix/include, they will be preferred over the
11087    shipped headers.  This corrects that problem.
11088
11089commit d54caf1c9c55af8247621b7ba6afb20b23699839
11090Author: Peter Hutterer <peter.hutterer@who-t.net>
11091Date:   Fri Oct 2 10:59:08 2009 +1000
11092
11093    libX11 1.3
11094    
11095    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
11096
11097commit dd201bcf9e7f8863b7ef32273a5ef021678133c1
11098Author: Peter Hutterer <peter.hutterer@who-t.net>
11099Date:   Fri Oct 2 12:10:29 2009 +1000
11100
11101    nls: remove duplicate Compose sequences from pt_BR.UTF-8
11102    
11103    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
11104
11105commit a293ae9e83739067fc92db1a39c262857bc2283e
11106Author: Peter Hutterer <peter.hutterer@who-t.net>
11107Date:   Fri Sep 25 11:19:41 2009 +1000
11108
11109    Add XF86TouchpadToggle to XKeysymDB
11110    
11111    Lenovo laptops provide a key to enable or disable the touchpad and the
11112    trackstick. This key is usually located on Fn + F8.
11113    
11114    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
11115    Acked-by: Adam Jackson <ajax@redhat.com>
11116
11117commit 69839f8903a24eab08f17a781b3797fb64dce9cf
11118Author: Alan Coopersmith <alan.coopersmith@sun.com>
11119Date:   Sun Sep 27 10:34:16 2009 -0700
11120
11121    Bug 24173: libX11 from git fails to build with automake older then 1.11
11122    
11123    AM_CONDITIONAL must come *before* the AC_OUTPUT that creates the
11124    Makefiles, instead of after.
11125    <http://bugs.freedesktop.org/show_bug.cgi?id=24173>
11126    
11127    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11128
11129commit f5effd041f58ef07703cca2b4f396758811e1eec
11130Author: Alan Coopersmith <alan.coopersmith@sun.com>
11131Date:   Wed Apr 15 10:59:23 2009 -0700
11132
11133    Resolve conflicting Compose sequences in iso8859-2, el_GR.UTF-8 & pt_BR.UTF-8
11134    
11135    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11136
11137commit 3843778358d3a0cd6a2d07dba5dd061248053ac9
11138Author: Alan Coopersmith <alan.coopersmith@sun.com>
11139Date:   Wed Apr 15 10:56:09 2009 -0700
11140
11141    Add perl script to check for duplicate or conflicting compose file entries
11142    
11143    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11144
11145commit 19cc5e1fa17a285045662820a8b4de2a0f9a194d
11146Author: Alan Coopersmith <alan.coopersmith@sun.com>
11147Date:   Fri Sep 18 17:10:04 2009 -0700
11148
11149    Use make rules instead of shell for loops to generate shadow man pages
11150    
11151    Allows parallel make and simpler build logs/error reporting
11152    
11153    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11154
11155commit 7dabcac973d0b6692a3cd62bd6d8e0467b24200b
11156Author: Alan Coopersmith <alan.coopersmith@sun.com>
11157Date:   Fri Sep 18 16:58:53 2009 -0700
11158
11159    Add AM_SILENT_RULES support for cpp rules for man & nls files
11160    
11161    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11162
11163commit bfa19cddd8546b4930a773f3bbd81137c362d82b
11164Author: Alan Coopersmith <alan.coopersmith@sun.com>
11165Date:   Fri Sep 18 16:58:16 2009 -0700
11166
11167    Update to using xorg-macros 1.3 & XORG_DEFAULT_OPTIONS
11168    
11169    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11170
11171commit 51396066c8003a96a6399c9a4bed2a81e512b582
11172Author: Mikko Niskanen <mikko.niskanen@iki.fi>
11173Date:   Fri Sep 4 10:11:15 2009 +1000
11174
11175    Fix wrong typedef on HP-UX (#18998)
11176    
11177    shl_dt doesn't exist, the type is shl_t.
11178    
11179    X.Org Bug 18998 <http://bugs.freedesktop.org/show_bug.cgi?id=18998>
11180    
11181    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
11182
11183commit 615220a312b9430a580fe6dcf51703c6ef244f66
11184Author: Paul Bender <pebender@gmail.com>
11185Date:   Fri Sep 4 09:57:10 2009 +1000
11186
11187    Don't require xdmcp in configure.ac (#22583)
11188    
11189    X.Org Bug 22583 <http://bugs.freedesktop.org/show_bug.cgi?id=22583>
11190    
11191    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
11192
11193commit 20f9ecd86ad2a9ac6966f7eee32234cb5ef77c29
11194Author: Peter Hutterer <peter.hutterer@who-t.net>
11195Date:   Thu Sep 3 14:02:44 2009 +1000
11196
11197    man: fix parameters to XkbAllocGeomOverlay{Rows|Keys} (#23499)
11198    
11199    X.Org Bug 23499 <http://bugs.freedesktop.org/show_bug.cgi?id=23499>
11200    
11201    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
11202
11203commit c2814a614dc4d9409bfa0f44c18bfd69ad7f7b85
11204Author: Peter Hutterer <peter.hutterer@who-t.net>
11205Date:   Thu Sep 3 12:05:25 2009 +1000
11206
11207    man: XQueryTree may return BadWindow. (#23416)
11208    
11209    X.Org Bug 23416 <http://bugs.freedesktop.org/show_bug.cgi?id=XXX>
11210    
11211    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
11212
11213commit dbe98d456ccc6eeca9fa3e241a3db0a4d83c5a65
11214Author: Alan Coopersmith <alan.coopersmith@sun.com>
11215Date:   Fri Aug 28 23:07:58 2009 +0800
11216
11217    Fix version tag in .TH line of several XKB man pages
11218    
11219    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11220
11221commit bf24400936c10af6f5aa0c75cfe2207ab9b680b4
11222Author: Alan Coopersmith <alan.coopersmith@sun.com>
11223Date:   Fri Aug 28 23:04:38 2009 +0800
11224
11225    XkbSetDeviceButtonActions.man: remove non-existent actions argument
11226    
11227    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11228
11229commit 53affa9335116f2d367f041e6502a411d4619e47
11230Author: Alan Coopersmith <alan.coopersmith@sun.com>
11231Date:   Fri Aug 28 23:00:17 2009 +0800
11232
11233    XkbQueryExtension.man: Arguments should be pointers
11234    
11235    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11236
11237commit 6233948885acc5873a5abddfff235afec555f3c2
11238Author: Alan Coopersmith <alan.coopersmith@sun.com>
11239Date:   Fri Aug 28 22:53:03 2009 +0800
11240
11241    XkbSAActionSetCtrls.man: Fix typo in formatting macro
11242    
11243    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11244
11245commit 28a9ca57cdec4aa9ca92322f963b01f0c2daf47a
11246Author: Alan Coopersmith <alan.coopersmith@sun.com>
11247Date:   Fri Aug 28 22:49:31 2009 +0800
11248
11249    Convert Xkb API man pages to ANSI prototypes
11250    
11251    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11252
11253commit fa2eecca85baab9616f7143cc1a853a594b4a90c
11254Author: James Cloos <cloos@jhcloos.com>
11255Date:   Mon Aug 24 06:35:17 2009 -0400
11256
11257    Add some (Serbian) Cyrillic NFD sequences.
11258    
11259    A number of characters in use in the various countries which use the
11260    Cyrillic script do not appear as pre-composed characters in The UCS
11261    or Unicode; they are only available as combining-character sequences.
11262    
11263    This commit adds support for using (prefix) dead keys and Multi_key-
11264    initiated sequences to enter a number of these combining-character
11265    sequences.  This ensures that users can enter these scripts even
11266    when using the current Cyrillic keymaps, which lack support for
11267    the combining characters.
11268    
11269    Please see the discussions on the xkb mailing list.
11270    
11271    Signed-off-by: James Cloos <cloos@jhcloos.com>
11272
11273commit d1bdc909f9246119696c8b0d9afb7bd8afb71b60
11274Author: Julien Cristau <jcristau@debian.org>
11275Date:   Wed Aug 5 18:14:23 2009 +0200
11276
11277    man/xkb: delete spurious newline in .TH headers
11278
11279commit ee723b83b24682db833a2f0abd96cd319b8a62af
11280Author: Julien Cristau <jcristau@debian.org>
11281Date:   Wed Aug 5 16:45:19 2009 +0200
11282
11283    man: use __libmansuffix__ instead of 3X11 for references to other pages
11284
11285commit 595e204feb82c798a92eea41fea03be6476ac181
11286Author: Julien Cristau <jcristau@debian.org>
11287Date:   Wed Aug 5 16:43:36 2009 +0200
11288
11289    man/xkb: use __libmansuffix__ instead of hardcoding 3Xkb for manpage sections
11290
11291commit 9da7e230d5320e1556ad2084fcd06ee7994385ea
11292Author: Peter Hutterer <peter.hutterer@who-t.net>
11293Date:   Wed Aug 5 14:15:02 2009 +1000
11294
11295    Bump to 1.2.99.901 (1.3 RC1)
11296    
11297    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
11298
11299commit 8f78c7b4e3570cd46c5a220982963c17fe2157b8
11300Author: Filippo Giunchedi <filippo@debian.org>
11301Date:   Sat Jun 6 16:56:54 2009 +0200
11302
11303    nls: add {left,right}wards arrow to compose table
11304    
11305    Debian bug#532117 <http://bugs.debian.org/532117>
11306    
11307    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
11308
11309commit 7949bfa00390241d994f32463e50d4bd78920568
11310Author: Julien Cristau <jcristau@debian.org>
11311Date:   Fri Jul 31 13:33:52 2009 +0200
11312
11313    Update library version for new symbols
11314    
11315    Commit 554f755e5545f63d3c8f299297927238da155773 added generic event
11316    cookie handling.  Bump libX11 version number accordingly.
11317    
11318    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
11319
11320commit 640fec5f4feacd01a00eea3dcd4edb220907d3dc
11321Author: Julien Cristau <jcristau@debian.org>
11322Date:   Sun Aug 2 17:18:31 2009 +0200
11323
11324    Add _XFUNCPROTOBEGIN/END to Xlib-xcb.h
11325    
11326    X.Org bug#22252 <https://bugs.freedesktop.org/show_bug.cgi?id=22252>
11327    
11328    Reported-by: Riku Salminen <rsalmin2@cc.hut.fi>
11329    Signed-off-by: Julien Cristau <jcristau@debian.org>
11330
11331commit bc06d49e9dac1836d6824769ddb2ac5ba9f14df7
11332Author: Peter Hutterer <peter.hutterer@who-t.net>
11333Date:   Wed Jul 29 08:44:09 2009 +1000
11334
11335    Fix compiler warning 'unused variable qelt'
11336    
11337    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
11338
11339commit 03f4907e14f5755e72309f08742977b871e81e33
11340Author: Peter Hutterer <peter.hutterer@who-t.net>
11341Date:   Wed Jul 29 08:34:57 2009 +1000
11342
11343    Add utlist.h to the Makefile.am
11344    
11345    utlist.h contains the linked list macros, it was added with the recent
11346    addition of event cookies but utlist.h wasn't added to the Makefile.am. As a
11347    result, make dist failed.
11348    
11349    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
11350
11351commit 554f755e5545f63d3c8f299297927238da155773
11352Author: Peter Hutterer <peter.hutterer@who-t.net>
11353Date:   Fri Jun 26 11:27:43 2009 +1000
11354
11355    Add generic event cookie handling to libX11.
11356    
11357    Generic events require more bytes than Xlib provides in the standard XEvent.
11358    Memory allocated by the extension and stored as pointers inside the event is
11359    prone to leak by simple 'while (1) { XNextEvent(...); }' loops.
11360    
11361    This patch adds cookie handling for generic events. Extensions may register
11362    a cookie handler in addition to the normal event vectors. If an extension
11363    has registered a cookie handler, _all_ generic events for this extensions
11364    must be handled through cookies. Otherwise, the default event handler is
11365    used.
11366    
11367    The cookie handler must return an XGenericEventCookie with a pointer to the
11368    data.The rest of the event (type, serialNumber, etc.) are to be filled as
11369    normal. When a client retrieves such a cookie event, the data is stored in
11370    an internal queue (the 'cookiejar'). This data is freed on the next call to
11371    XNextEvent().
11372    
11373    New extension interfaces:
11374        XESetWireToEventCookie(display, extension_number, cookie_handler)
11375    
11376    Where cookie_handler must set cookie->data. The data pointer is of arbitray
11377    size and type but must be a single memory block. This memory block
11378    represents the actual extension's event.
11379    
11380    New client interfaces:
11381        XGetEventData(display, *cookie);
11382        XFreeEventData(display, *cookie);
11383    
11384    If the client needs the actual event data, it must call XGetEventData() with
11385    the cookie. This returns the data pointer (and removes it from the cookie
11386    jar) and the client is then responsible for freeing the event with
11387    XFreeEventData(). It is safe to call either function with a non-cookie
11388    event. Events unclaimed or not handled by the XGetEventData() are cleaned up
11389    automatically.
11390    
11391    Example client code:
11392        XEvent event;
11393        XGenericEventCookie *cookie = &ev;
11394    
11395        XNextEvent(display, &event);
11396        if (XGetEventData(display, cookie)) {
11397            XIEvent *xievent = cookie->data;
11398            ...
11399        } else if (cookie->type == GenericEvent) {
11400            /* handle generic event */
11401        } else {
11402            /* handle extension/core event */
11403        }
11404        XFreeEventData(display, cookie);
11405    
11406    Cookies are not multi-threading safe. Clients that use XGetEventData() must
11407    lock between XNextEvent and XGetEventData to avoid other threads freeing
11408    cookies.
11409    
11410    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
11411
11412commit d7675cb8fa7155e7aff1459636a117a97aa1bf28
11413Author: Peter Hutterer <peter.hutterer@who-t.net>
11414Date:   Mon Jul 6 13:17:35 2009 +1000
11415
11416    Bump to 1.2.99.1
11417    
11418    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
11419
11420commit 75fe48e7a42a685d7098e8d7108b9b956c471563
11421Author: Peter Hutterer <peter.hutterer@who-t.net>
11422Date:   Fri Jul 10 14:07:34 2009 +1000
11423
11424    Bump to 1.2.2
11425    
11426    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
11427
11428commit 5d0fe0e0e92759af5667c5dca2eacb1b6f2d66ea
11429Author: Peter Hutterer <peter.hutterer@who-t.net>
11430Date:   Thu Jul 2 09:10:25 2009 +1000
11431
11432    XMaskEvent/XCheckMaskedEvents must not check for GenericEvents.
11433    
11434    GenericEvent cannot be selected for in the core event masks and they must
11435    thus be treated like extension events.
11436    
11437    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
11438
11439commit c1bf65b89f4e361f6178a73dd5334c8f2bd95732
11440Author: Peter Hutterer <peter.hutterer@who-t.net>
11441Date:   Thu Jul 2 09:06:05 2009 +1000
11442
11443    XWindowEvent/XCheckWindowEvent must not return GenericEvents.
11444    
11445    GenericEvents have no fixed position for the window, so they must be treated
11446    like extension events.
11447    
11448    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
11449
11450commit 38f9054554d63525d2dd51aafb5eb57821158ab9
11451Author: Alan Coopersmith <alan.coopersmith@sun.com>
11452Date:   Mon Jun 15 19:00:43 2009 -0700
11453
11454    Drop ancient USG SysV #ifdefs
11455    
11456    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11457
11458commit 7bfe1323f16a1a69cc474659f7ac0c2570b1cf42
11459Author: Adam Jackson <ajax@redhat.com>
11460Date:   Fri Jun 12 12:44:01 2009 -0400
11461
11462    Remove X_NOT_STDC_ENV usage. (#6527)
11463
11464commit 6dd74d7fb414ca1e99bae5c13e333961f396eb36
11465Author: Julien Cristau <jcristau@debian.org>
11466Date:   Fri May 29 11:18:11 2009 +0200
11467
11468    nls: remove more duplicated aliases
11469    
11470    Signed-off-by: Julien Cristau <jcristau@debian.org>
11471
11472commit e4b0899f516da224010e68bd2d953d5293d94993
11473Author: parag <parag@rawhideTM.pnq.redhat.com>
11474Date:   Thu May 28 11:29:35 2009 +0530
11475
11476    nls: Add pa_PK locale information and make pa_IN as default for pa.
11477    
11478    X.Org bug#21954 <http://bugs.freedesktop.org/show_bug.cgi?id=21954>
11479    
11480    [jcristau: removed the pa_PK.UTF-8 alias to itself]
11481    
11482    Signed-off-by: parag <pnemade@redhat.com>
11483    Signed-off-by: Julien Cristau <jcristau@debian.org>
11484
11485commit f0ea1f6d51145592f8617854f9320ec5dbff3299
11486Author: Julien Cristau <jcristau@debian.org>
11487Date:   Fri May 29 10:58:20 2009 +0200
11488
11489    nls: remove broken sd_IN.UTF-8 alias
11490    
11491    Signed-off-by: Julien Cristau <jcristau@debian.org>
11492
11493commit e29e010dabdb17d6498f2ef1786f69b8830c18ca
11494Author: Julien Cristau <jcristau@debian.org>
11495Date:   Fri May 29 10:57:43 2009 +0200
11496
11497    nls: remove duplicated en_US* aliases
11498    
11499    Signed-off-by: Julien Cristau <jcristau@debian.org>
11500
11501commit a89a300d87852c84389ad97db66dcb8930cb45dd
11502Author: Caolan McNamara <caolanm@redhat.com>
11503Date:   Thu May 21 18:41:05 2009 +0200
11504
11505    man: missing space in XAllocColor man page
11506    
11507    X.Org bug#21854 <http://bugs.freedesktop.org/show_bug.cgi?id=21854>
11508
11509commit c1c001e36504fd304f76f69bf6af3643225c49ea
11510Author: James Cloos <cloos@jhcloos.com>
11511Date:   Wed May 13 13:03:54 2009 -0400
11512
11513    [nls] Replace remaining UCS Combining Characters in Compose sequences.
11514    
11515    The replaces the instances of keysyms which match <U03[0-6][0-9A-Fa-f]>,
11516    where the keysym is used as a dead_key, with an actual dead_key symbol.
11517    
11518    The only remaining instances of UCS combining characters in the
11519    compose sequences are of U0338 COMBINING LONG SOLIDUS OVERLAY
11520    used as a suffix in Multi_key-initiated sequences to create
11521    mathematics characters such as ∉ U+2209 NOT AN ELEMENT OF
11522    from ∈ U+2208 ELEMENT OF.
11523
11524commit e2b0bad3d3b9e9ca781fc264eb7584afbe2a1a4f
11525Author: James Cloos <cloos@jhcloos.com>
11526Date:   Wed May 13 09:58:59 2009 -0400
11527
11528    [nls] Remove extraneous instances of UCS Combining Characters in Compose sequences.
11529    
11530    This removes those instances of keysyms which match <U03[0-6][0-9A-Fa-f]>,
11531    where the matching keysym is used as a dead_key, and for which alternative
11532    compose sequences exist.
11533
11534commit 79f47e6dff2f0a0b673bbfecc47528edca814baa
11535Author: James Cloos <cloos@jhcloos.com>
11536Date:   Fri May 8 20:11:54 2009 -0400
11537
11538    [nls] Remove combining_ keysyms from the Compose files
11539    
11540    Some of the UTF-8 Compose tables included combining_ keysyms in
11541    the compose sequences as though they were dead symbols.  This
11542    is contrary to how combining characters are used in the UCS.
11543    Therefore, those lines have been removed from the Compose tables.
11544    
11545    There were also some combining_ keysyms as targets.  As those
11546    are not included in x11proto’s keysymdef.h, and as those do
11547    exist there as Uxxxx keysyms, they are replaced with the Uxxxx
11548    keysym names.
11549    
11550    This addresses http://bugzilla.freedesktop.org/show_bug.cgi?id=5107
11551    and is based on attachment 25644 by samuel.thibault@ens-lyon.org.
11552    
11553    Signed-off-by: James Cloos <cloos@jhcloos.com>
11554
11555commit 4a08a3dfbda497b2be46e3e5fe6b777815ea27f9
11556Author: parag <pnemade@redhat.com>
11557Date:   Tue May 5 16:50:47 2009 +0530
11558
11559    libX11: Add new Indic language information to nls directory files. #21560
11560    
11561    Signed-off-by: parag <pnemade@redhat.com>
11562
11563commit aaf81096eb44b4c2812108721ba02738391884da
11564Author: Alan Coopersmith <alan.coopersmith@sun.com>
11565Date:   Sat May 2 01:38:14 2009 -0700
11566
11567    Correct return type in XkbGetKeyboard man page
11568    
11569    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11570
11571commit 2bef065b70f70af520b5de8fb23529254d15f003
11572Author: Christoph Pfister <christophpfister@gmail.com>
11573Date:   Mon Apr 27 22:32:57 2009 -0700
11574
11575    X.Org Bug #21117: crash in get_rotate_fontname (omGeneric.c)
11576    
11577    http://bugs.freedesktop.org/show_bug.cgi?id=21117
11578    
11579    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11580
11581commit 5c1cde105db10df24d3c532f032cbc59050c7313
11582Author: Alan Coopersmith <alan.coopersmith@sun.com>
11583Date:   Fri Apr 17 22:14:47 2009 -0700
11584
11585    Use AC_USE_SYSTEM_EXTENSIONS instead of hand-rolled check for _GNU_SOURCE
11586    
11587    Raises minimum autoconf version required to 2.60
11588    
11589    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11590
11591commit 84b7a91ef84f345384e4b0e13907385ca3ca3255
11592Author: Julien Cristau <jcristau@debian.org>
11593Date:   Tue Apr 14 15:59:57 2009 +0100
11594
11595    Fix fi_FI.UTF-8, again
11596    
11597    Commit 97fc6babd4ccaf300e25708868aa2a738893dc30 "NLS: Add UTF-8 compose
11598    file for Finnish" made fi_FI.UTF-8 use a broken empty XLC_LOCALE file.
11599    This reverts it back to using the en_US.UTF-8 one.
11600
11601commit 128daff4422f973ea40dd1e31b2db230e643549e
11602Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
11603Date:   Thu Apr 9 12:01:07 2009 +0700
11604
11605    Thai XIM not retrieve MB surrounding on UTF-8 LC
11606    
11607    On th_TH.UTF-8 locale, Thai XIM rejects all combining characters for GTK+ apps
11608    that use X Input Method.
11609    
11610    This is because GTK+ imxim immodule passes surrounding text in locale encoding,
11611    which is UTF-8 for UTF-8 locales. But current Thai XIM in Xlib assumes the
11612    multi-byte StringConversionText response for the StringConversionCallback to
11613    always be TIS-620, by retrieving a single byte and using it as-is.
11614    
11615    If the Thai XIM tries to convert the multi-byte text based on locale codeset
11616    before using it, it will work again.
11617    
11618    X.Org But 12759 <http://bugs.freedesktop.org/show_bug.cgi?id=12759>
11619    
11620    Signed-off-by: Theppitak Karoonboonyanan <thep@linux.thai.net>
11621    Signed-off-by: Julien Cristau <jcristau@debian.org>
11622
11623commit e09f0d227fbf95b6252759af9d426efd57686f9f
11624Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
11625Date:   Thu Apr 9 11:47:55 2009 +0700
11626
11627    Thai XIM not filters when NumLock or CapsLock is on
11628    
11629    The Thai XIM component in libx11 activated on 'th*' locales normally filters
11630    input sequence according to orthographic rules. However, when NumLock/CapsLock
11631    is on, this stops working. All sequences are passed through.
11632    
11633    This is caused by missing masks in _XimThaiFilter(), which normally screens out
11634    certain special keys from entering orthographic rules. Unfortunately, this
11635    included events with NumLock/CapsLock on. Negating the masks from the check
11636    allows the events to be tested by the rules.
11637    
11638    X.Org Bug 12517 <http://bugs.freedesktop.org/show_bug.cgi?id=12517>
11639    
11640    Signed-off-by: Theppitak Karoonboonyanan <thep@linux.thai.net>
11641    Signed-off-by: Julien Cristau <jcristau@debian.org>
11642
11643commit d108d3c706af3502820b5202564488ea19908b77
11644Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
11645Date:   Thu Apr 9 11:25:25 2009 +0700
11646
11647    CharSet-to-CompoundText Conversion Failed for Thai Locales
11648    
11649    SCIM fails to commit Thai input characters on Thai locales, because it commits
11650    string in compound text form, which was converted via
11651    XwcTextListToTextProperty(). But the XLC_LOCALE for th_TH and th_TH.UTF-8
11652    declares cs1's ct_encoding as TIS620-0:GR, which was commented out in
11653    src/xlibi18n/lcCT.c default_ct_data, in favor of ISO8859-11 ESC sequence.
11654    So, declaring cs1 as ISO8859-11:GR instead makes it work.
11655    
11656    Besides, for th_TH.UTF-8, adding cs2 class with ISO10646-1 encoding also adds
11657    support for UTF-8 input.
11658    
11659    And, along discussion in the bug, a similar problem was found for fontset, too,
11660    by causing delays on X apps startups on systems without tis620-0 fonts. This
11661    is normally the case, as mkfontdir and mkfontscale generate iso8859-11 entries
11662    by default for Thai X fonts. So, Thai fontset charset is also patched.
11663    
11664    X.Org Bug 16475 <http://bugs.freedesktop.org/show_bug.cgi?id=16475>
11665    
11666    Signed-off-by: Theppitak Karoonboonyanan <thep@linux.thai.net>
11667    Signed-off-by: Julien Cristau <jcristau@debian.org>
11668
11669commit fd62d3318c846cd43d66a505946e94704d7d83dc
11670Author: Alan Coopersmith <alan.coopersmith@sun.com>
11671Date:   Wed Apr 8 19:42:25 2009 -0700
11672
11673    Revert "Change masculine to ordmasculine in Compose file comments"
11674    
11675    This reverts commit 892b401d5acc055803a20e349ede0d64490f2230.
11676    
11677    As Julien Cristau correctly points out, I misread the Compose file grammar
11678    in modules/im/ximcp/imLcPrs.c, and those are keysyms, not comments, and
11679    the keysym is named XK_masculine in keysymdef.h.   This change is thus a
11680    bug in the Solaris compose tables to be fixed, not an improvement to bring
11681    upstream.
11682
11683commit eac57c77afdf44f50692225b8b0345a7c927bc84
11684Author: Alan Coopersmith <alan.coopersmith@sun.com>
11685Date:   Tue Apr 7 15:38:45 2009 -0700
11686
11687    Version bump: 1.2.1
11688    
11689    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11690
11691commit bfbec08baec33c5024510b0bcbbee6e4a8473e79
11692Author: Yaakov Selkowitz (Cygwin Ports maintainer) <yselkowitz@users.sourceforge.net>
11693Date:   Tue Apr 7 13:46:57 2009 -0700
11694
11695    Bug 20773: Xcursor dynamic loading on Cygwin
11696    
11697    X.Org Bug #20773 <http://bugs.freedesktop.org/show_bug.cgi?id=20773>
11698    Patch #24096 <http://bugs.freedesktop.org/attachment.cgi?id=24096>
11699    
11700    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11701
11702commit c8c41614911be4fa222fa22478677d263b41c751
11703Author: Alan Coopersmith <alan.coopersmith@sun.com>
11704Date:   Mon Apr 6 16:52:46 2009 -0700
11705
11706    Fix a several sparse warnings: Using plain integer as NULL pointer
11707    
11708    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11709
11710commit b336c3d0cc2aefc8926500cff5f76b5a3e803886
11711Author: Alan Coopersmith <alan.coopersmith@sun.com>
11712Date:   Mon Apr 6 16:32:05 2009 -0700
11713
11714    Further ansify prototypes & reduce #ifdefs in locking.c
11715    
11716    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11717
11718commit 892b401d5acc055803a20e349ede0d64490f2230
11719Author: Alan Coopersmith <alan.coopersmith@sun.com>
11720Date:   Mon Apr 6 10:50:09 2009 -0700
11721
11722    Change masculine to ordmasculine in Compose file comments
11723    
11724    Matches the ordfeminine name used for the matching character,
11725    and the ordmasculine name used in many font descriptions of the glyph.
11726    
11727    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11728
11729commit e3198b55dc16ec57346cc28aa8d34165ce8cde96
11730Author: Julien Cristau <jcristau@debian.org>
11731Date:   Fri Mar 13 13:52:33 2009 +0100
11732
11733    Add a ru_RU.UTF-8 locale
11734    
11735    Based on patch by Eugene Konev <ejka@imfi.kspu.ru> for X.Org 6.9.0.
11736    
11737    Debian bug#330144 <http://bugs.debian.org/330144>
11738    X.Org bug#15887 <http://bugs.freedesktop.org/show_bug.cgi?id=15887>
11739
11740commit d239de9452691d6f875e6e5ace3d499ec3bf14d9
11741Author: Alan Coopersmith <alan.coopersmith@sun.com>
11742Date:   Wed Mar 25 17:59:09 2009 -0700
11743
11744    Delete some unused "#ifdef notdef" static functions
11745    
11746    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11747
11748commit 4281892e31058ef3aecc96a5767824b34d88d415
11749Author: Alan Coopersmith <alan.coopersmith@sun.com>
11750Date:   Wed Mar 25 17:52:48 2009 -0700
11751
11752    Remove _XP_PRINT_SERVER_ #ifdefs from Xrm.c
11753    
11754    This copy of Xrm.c is never compiled into the Xprint server any more, so
11755    this old code-sharing #ifdef from the monolith tree isn't needed.
11756    
11757    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11758
11759commit 27a2e16e8ea11c1604e28645fae4d6ba4371d513
11760Author: Alan Coopersmith <alan.coopersmith@sun.com>
11761Date:   Tue Mar 17 18:38:58 2009 -0700
11762
11763    makekeys: combine malloc(strlen)+strcpy into strdup
11764    
11765    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11766
11767commit 78a894231ae8ec4959007b6d9b8d2a15d6333a1e
11768Author: Alan Coopersmith <alan.coopersmith@sun.com>
11769Date:   Tue Mar 17 15:42:19 2009 -0700
11770
11771    When makekeys fails to find a good hash, print error instead of divide-by-zero
11772    
11773    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11774
11775commit c9f84af591d15fbc3fa890bcd955d94f1ff82a0b
11776Author: Alan Coopersmith <alan.coopersmith@sun.com>
11777Date:   Tue Mar 17 14:59:16 2009 -0700
11778
11779    Remove ifdef checks for macII left over from ancient A/UX 3.0 support
11780    
11781    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11782
11783commit 4b90da0ffb32b791d915ecae11996cc2f2cac9a7
11784Author: Alan Coopersmith <alan.coopersmith@sun.com>
11785Date:   Mon Mar 16 18:37:49 2009 -0700
11786
11787    XErrorDB additions for DRI2 requests
11788    
11789    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11790
11791commit 273f45af1441be9d2135e4cac8c46ceb33470236
11792Author: Alan Coopersmith <alan.coopersmith@sun.com>
11793Date:   Mon Mar 16 18:35:44 2009 -0700
11794
11795    XErrorDB additions for XInput errors and new XInput 1.5 requests
11796    
11797    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11798
11799commit 90ef36f6336068183bf9d13ca972202db35b1202
11800Author: Alan Coopersmith <alan.coopersmith@sun.com>
11801Date:   Mon Mar 16 18:23:05 2009 -0700
11802
11803    XErrorDB additions for RANDR 1.3
11804    
11805    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11806
11807commit 124a4efaccf329f1a44f6b824e70278bdd1cad83
11808Author: Lubos Lunak <l.lunak@suse.cz>
11809Date:   Mon Mar 16 18:03:36 2009 -0700
11810
11811    XErrorDB updates for XTEST, RANDR, DAMAGE extensions
11812    
11813    From http://lists.freedesktop.org/archives/xorg/2008-January/031937.html
11814    
11815    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11816
11817commit 80811846e37b805fddb37c71589fd5f6f6037b3f
11818Author: Lubos Lunak <l.lunak@suse.cz>
11819Date:   Mon Mar 16 17:57:52 2009 -0700
11820
11821    XGetErrorText() fails for extension error codes equal to the error base
11822    
11823    From http://lists.freedesktop.org/archives/xorg/2008-January/031937.html
11824    
11825    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11826
11827commit da95ecbbdcacc483cd0b5fd7db1fb2e2543341bd
11828Author: Milos Komarcevic <miloskomarcevic@netscape.net>
11829Date:   Mon Mar 16 17:43:26 2009 -0700
11830
11831    Bug 11456: Serbian locale updates (sr_RS and sr_ME)
11832    
11833    X.Org Bug #11456 <http://bugs.freedesktop.org/show_bug.cgi?id=11456>
11834    Patch #23937 <http://bugs.freedesktop.org/attachment.cgi?id=23937>
11835    
11836    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11837
11838commit 934a6c0519a9e32505beee55b004f36c2a710217
11839Author: Alan Coopersmith <alan.coopersmith@sun.com>
11840Date:   Mon Mar 16 14:55:22 2009 -0700
11841
11842    Bug 10082: Compose entries for some standard mathematical operators
11843    
11844    X.Org Bug #10082 <http://bugs.freedesktop.org/show_bug.cgi?id=10082>
11845    
11846    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11847
11848commit abf4da1ed0f735ca7ce471dc13a0ec3677391486
11849Author: Alan Coopersmith <alan.coopersmith@sun.com>
11850Date:   Mon Mar 16 14:27:46 2009 -0700
11851
11852    Bug 14651: We need to add new locale specification for Belarusian Latin locale
11853    
11854    X.Org Bug #14651 <http://bugs.freedesktop.org/show_bug.cgi?id=14651>
11855    
11856    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11857
11858commit 837703c8651e1321a50147a8311c56e4758ce08a
11859Author: Caolan McNamara <caolanm@redhat.com>
11860Date:   Mon Mar 16 14:15:50 2009 -0700
11861
11862    Bug 20575: man page for XCreatePixmapFromBitmapData doesn't match signature
11863    
11864    X.Org Bug #20575 <http://bugs.freedesktop.org/show_bug.cgi?id=20575>
11865    Patch #23717 <http://bugs.freedesktop.org/attachment.cgi?id=23717>
11866    
11867    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11868
11869commit 22199018879055d8653e59d8236bef57164fac66
11870Author: Alan Coopersmith <alan.coopersmith@sun.com>
11871Date:   Mon Mar 16 13:28:18 2009 -0700
11872
11873    Correct locale alias for sh_BA.ISO8859-2@bosnia (should be sr, not nr)
11874    
11875    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11876
11877commit 4c63c27eab2b88f5556dbf72c36321f50f6de35e
11878Author: Alan Coopersmith <alan.coopersmith@sun.com>
11879Date:   Thu Mar 12 18:57:20 2009 -0700
11880
11881    Bug 9953: Please provide locale alias hu_HU.utf8
11882    
11883    X.Org Bug #9953 <http://bugs.freedesktop.org/show_bug.cgi?id=9953>
11884    Debian Bug #407573 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=407573>
11885    
11886    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11887
11888commit 501f4e0ada1690783ada05ad412e4b191ad55336
11889Author: Alan Coopersmith <alan.coopersmith@sun.com>
11890Date:   Thu Mar 12 17:38:21 2009 -0700
11891
11892    Bug 6820: Xlib shouldn't handle EAGAIN as a fatal IO error
11893    
11894    X.Org Bug #6820 <http://bugs.freedesktop.org/show_bug.cgi?id=6820>
11895    Patch #17637 <http://bugs.freedesktop.org/attachment.cgi?id=17637>
11896    
11897    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11898
11899commit 7b9c543e7210c7da204871c31a160e79d3a949b6
11900Author: Paul Bender <pebender@gmail.com>
11901Date:   Thu Mar 12 17:11:42 2009 -0700
11902
11903    Bug 15664: xau & xdmcp not needed in x11.pc dependencies when built with xcb
11904    
11905    X.Org bug #15664 <https://bugs.freedesktop.org/show_bug.cgi?id=15664>
11906    Patch #16128 <https://bugs.freedesktop.org/attachment.cgi?id=16128>
11907    
11908    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11909
11910commit fd2cf1ef66c2aff3dc758956c9e9e567b9892c06
11911Author: Xue Wei <Wei.Xue@Sun.COM>
11912Date:   Wed Mar 4 19:32:29 2009 -0800
11913
11914    Add UTF-8 locale entries for es_US, kk_KZ, mt_MT, and sh_BA
11915    
11916    Sun bug 6809309 Add new utf8 locales supported by Xlib
11917    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6809309>
11918    
11919    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11920
11921commit cb70c9bc43267577859a3674ca9de9be396ba69e
11922Author: Alan Coopersmith <alan.coopersmith@sun.com>
11923Date:   Mon Feb 23 19:29:15 2009 -0800
11924
11925    Add --with-locale-lib-dir configure option to set locale lib install dir
11926    
11927    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11928
11929commit ccd3584f0330db8dac90b9313c33ab8b5b2ec6af
11930Author: Alan Coopersmith <alan.coopersmith@sun.com>
11931Date:   Mon Feb 23 18:33:51 2009 -0800
11932
11933    Incorporate more locale names/aliases from Solaris libX11
11934    
11935    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11936
11937commit 83ce4daefdf544f801c7d666c89162690a36ce41
11938Author: Alan Coopersmith <alan.coopersmith@sun.com>
11939Date:   Mon Feb 23 18:32:34 2009 -0800
11940
11941    Incorporate char range comments from Solaris version of ksc5601.h
11942    
11943    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11944
11945commit ee279c84e34f1ebb8a6ff17d54ee146d11e29764
11946Author: Chris Ball <cjb@laptop.org>
11947Date:   Sat Feb 21 14:48:42 2009 -0500
11948
11949    Fix fi_FI locale install directory.
11950    
11951    fi_FI was setting "x11thislocaledir" to en_US, with the result that its
11952    locale data was written in that locale dir.
11953    
11954    Signed-off-by: Chris Ball <cjb@laptop.org>
11955
11956commit da6bbca07c796c69172a649405474f03bee66754
11957Author: Emilio Jesús Gallego Arias <egallego@babel.ls.fi.upm.es>
11958Date:   Sat Feb 21 20:17:23 2009 +0100
11959
11960    xcb_io: Avoid datatype overflow on AMD64 and friends.
11961
11962commit 4ef6491afa69e8441caee7bbebc583e6e796275e
11963Author: Chris Ball <cjb@laptop.org>
11964Date:   Sat Feb 21 12:51:03 2009 -0500
11965
11966    Build fix for fi_FI.
11967    
11968    Commit 642c4e928e770e0.. instructs make to enter nls/fi_FI, but no
11969    Makefile is written there by configure.
11970    
11971    Signed-off-by: Chris Ball <cjb@laptop.org>
11972
11973commit 642c4e928e770e012379539a6ce09e11c02f09a6
11974Author: Julien Cristau <jcristau@debian.org>
11975Date:   Sat Feb 21 03:12:05 2009 +0100
11976
11977    nls: actually use the fi_FI.UTF-8 files
11978    
11979    The subdir wasn't added to nls/Makefile.am
11980
11981commit 9bad8309ef289bb943651abf6967b24fa2252aac
11982Author: Alan Coopersmith <alan.coopersmith@sun.com>
11983Date:   Fri Feb 20 14:45:54 2009 -0800
11984
11985    flags member of Display structure needs to be marked volatile
11986    
11987    Since the Xlib multithreaded code checks the flags variable in _XFlushInt
11988    to see if the other threads are done yet, it has to be marked volatile so
11989    the compiler doesn't optimize out re-loading it on each trip through the
11990    while loop and end up in an impossible-to-exit infinite loop of CPU chewing.
11991    
11992    Part of fix for Sun bug 6409332: infinite loop in XFlushInt() on x86/32-bit
11993    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6409332>
11994    
11995    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
11996
11997commit ef5c446395aa30d7b1096a112e241a81c5b358e7
11998Author: Xue Wei <Wei.Xue@Sun.COM>
11999Date:   Fri Feb 20 15:12:35 2009 -0800
12000
12001    Add nn_NO.UTF-8 to compose.dir.pre for Norwegian Nynorsk
12002    
12003    Sun bug 6691236: Swing applications dump core when locale is nn_NO.UTF-8
12004    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6691236>
12005    
12006    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
12007
12008commit 3822f2654e9630167f0c6cae317b472c09771672
12009Author: Xue Wei <Wei.Xue@Sun.COM>
12010Date:   Fri Feb 20 15:03:51 2009 -0800
12011
12012    Add locale aliases for no_NO & sh_BA locale variants
12013    
12014    Fixes Sun bug id 6691219: xterm refuses to start in some locales
12015    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6691219>
12016    
12017    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
12018
12019commit 63b6b5b5f522c0a606b32163c643edb64ca91d54
12020Author: Xue Wei <Wei.Xue@Sun.COM>
12021Date:   Fri Feb 20 14:23:11 2009 -0800
12022
12023    Add kk_KZ.UTF-8 to locale.dir.pre for Kazakhstan
12024    
12025    Fixes Sun bug id 6737254 ("kk_KZ.UTF-8 locale: In Java applications
12026     changing keyboard layout with gimlet does not work")
12027    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6737254>
12028    
12029    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
12030
12031commit d497301707962f3b94542e999a36abffcfbd303d
12032Author: Julien Cristau <jcristau@debian.org>
12033Date:   Tue Feb 17 16:09:41 2009 +0100
12034
12035    Bump to 1.2
12036
12037commit 990e71361d1d7b79bf07b1dc93e4e905d4f1bdaf
12038Author: Julien Cristau <jcristau@debian.org>
12039Date:   Tue Feb 17 15:23:40 2009 +0100
12040
12041    Check Xmalloc return value in _XConnectXCB
12042    
12043    X.Org bug#19137 <http://bugs.freedesktop.org/show_bug.cgi?id=19137>
12044    
12045    Signed-off-by: Julien Cristau <jcristau@debian.org>
12046
12047commit b4b5893f69419ff577bbaa4d18f78e4ffd729a0c
12048Author: James Cloos <cloos@jhcloos.com>
12049Date:   Sat Feb 14 12:35:56 2009 -0500
12050
12051    dolt: allow older versions of bash to compile the library
12052    
12053    Cf xserver commit 7be6520d and bugzilla #19031.
12054
12055commit 20982d6866e24453642b0b592fa0f13a88aa747c
12056Author: Will Thompson <will@willthompson.co.uk>
12057Date:   Thu Feb 5 02:53:06 2009 +1100
12058
12059    NLS: Compose: Non-aliasing CCCP
12060    
12061    Oops, cccp aliased cc for question mark.  Upper-case it to avoid fail.
12062    
12063    Signed-off-by: Will Thompson <will@willthompson.co.uk>
12064    Signed-off-by: Daniel Stone <daniel@fooishbar.org> (sorry)
12065
12066commit f052665394f3f0319e93a98f1d5d4ea287e1dd07
12067Author: Will Thompson <will@willthompson.co.uk>
12068Date:   Wed Feb 4 14:51:11 2009 +0000
12069
12070    Add two essential compose sequences
12071    
12072    Signed-off-by: Will Thompson <will@willthompson.co.uk>
12073    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
12074
12075commit d7bea6fa909bf34c43efe0ca8239ab0f9f3a415f
12076Author: Alan Coopersmith <alan.coopersmith@sun.com>
12077Date:   Mon Feb 2 20:34:31 2009 -0800
12078
12079    Add README with pointers to mailing list, bugzilla & git repos
12080    
12081    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
12082
12083commit f682c27e93512773122887d2cbabb1657af45d2e
12084Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
12085Date:   Mon Feb 2 16:36:39 2009 -0200
12086
12087    Check if a function argument is NULL.
12088    
12089      This was an addition to patch (also by me)
12090    https://bugs.freedesktop.org/attachment.cgi?id=14660
12091    that was not added when rediscovering/correcting the problem.
12092
12093commit 427e9d45d424b84efd9fc499aebf8d72392844c5
12094Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
12095Date:   Thu Feb 28 15:58:12 2008 -0300
12096
12097    Allow multiple inclusions of cursorfont.h, cosmetic patch.
12098
12099commit b91524a53e691f6a5d278fd8972b48a14ebeedeb
12100Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
12101Date:   Thu Feb 28 15:54:43 2008 -0300
12102
12103    Don't add prototypes for functions that don't exist.
12104    
12105    Note that a full review was not done, only for functions that receive
12106    char/short arguments, or one of it's parameters is a function pointer
12107    that requires char/short arguments.
12108
12109commit 537eb52fe266ac439c4b383bb04a70017b709911
12110Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
12111Date:   Thu Feb 28 15:50:27 2008 -0300
12112
12113    WORD64 compile fix. This bug catched on a overview of the code.
12114    
12115    The code is wrong since the first git revision, so it seens that it has
12116    not been compiled with WORD64 for quite some time, there is also another
12117    interesting code in xkb/XKBRdBuf.c:
12118      <hash>ifdef WORD64
12119      _XkbWriteCopyData32 Not Implemented Yet for sizeof(int)==8
12120      <hash>endif
12121    and possibly there are other similar problems.
12122
12123commit ffd0300fb74c6183208ae599133f2ded09e08d97
12124Author: Brian Rogers <brian@xyzw.org>
12125Date:   Sat Jan 31 10:37:51 2009 -0800
12126
12127    Initialize event_notify after allocating the memory for it.
12128    
12129    An uninitialized or otherwise invalid condition variable can apparently
12130    cause a hang in pthread_cond_broadcast. Ekiga, openoffice, and xine
12131    at least are freezing as a result of event_notify never being initialized.
12132    
12133    Signed-off-by: Brian Rogers <brian@xyzw.org>
12134    Signed-off-by: Bart Massey <bart@cs.pdx.edu>
12135
12136commit 97fc6babd4ccaf300e25708868aa2a738893dc30
12137Author: James Cloos <cloos@jhcloos.com>
12138Date:   Thu Jan 29 20:10:41 2009 -0500
12139
12140    NLS: Add UTF-8 compose file for Finnish
12141    
12142    From bug report:
12143    
12144      https://bugs.freedesktop.org/show_bug.cgi?id=18747
12145
12146commit 1bd2966ed88f83479a066c6ca7da23a515979550
12147Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
12148Date:   Thu Jan 29 20:25:15 2009 -0200
12149
12150    patches to avoid gcc warnings for libX11 (#4)
12151    
12152    Author is Peter Breitenlohner <peb@mppmu.mpg.de>
12153    Bug #17946, attachment #19443
12154    
12155    This patch avoids the gcc warning
12156            ../../../../libX11-1.1.5/modules/im/ximcp/imDefLkup.c:223: warning: passing arg 1 of `_XimProcSyncReply' from incompatible pointer type
12157    (same as already done at other places)
12158    
12159    BTW: what is the difference between XIM (the type of ic->core.im)
12160    and Xim ?
12161
12162commit f16dd6af3eb17a25b8ee03d6617a7acc6e919fb0
12163Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
12164Date:   Thu Jan 29 20:22:21 2009 -0200
12165
12166    patches to avoid gcc warnings for libX11 (#3)
12167    
12168    Author is Peter Breitenlohner <peb@mppmu.mpg.de>
12169    Bug #17946, attachment #19441
12170    
12171    This patch avoids the two gcc warnings
12172            ../../../../libX11-1.1.5/modules/im/ximcp/imRm.c:413: warning: assignment discards qualifiers from pointer target type
12173            ../../../../libX11-1.1.5/modules/im/ximcp/imRm.c:450: warning: assignment discards qualifiers from pointer target type
12174    
12175    Note, that this as a rather crude fix of the problem (and it is really a
12176    shame to cast name_table to non-const).
12177    
12178    The right solution would be to declare XIMValuesList.supported_values
12179    (in include/X11/Xlib.h) as 'const char **' (or '_Xconst char **').
12180    This will, however, require extensive modifications in various places.
12181
12182commit cce75c5dce73fe1f8626ed9e6798138ada09a860
12183Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
12184Date:   Thu Jan 29 20:20:18 2009 -0200
12185
12186    patches to avoid gcc warnings for libX11 (#2)
12187    
12188    Author is Peter Breitenlohner <peb@mppmu.mpg.de>
12189    Bug #17946, attachment #19440
12190    
12191    Avoid a preprocessor message
12192            <stdin>:194: warning: no newline at end of file
12193    
12194    Two more such warnings (in XkbSAGroup.man and XkbSASetGroup.man)
12195    seem to be caused by a truncated (or otherwise incomplete)
12196    manpage.
12197
12198commit 692baebcc50f1e952800bfe4e2e6bc42f54e62fe
12199Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
12200Date:   Thu Jan 29 20:12:24 2009 -0200
12201
12202    patches to avoid gcc warnings for libX11 (#1)
12203    
12204    Author is Peter Breitenlohner <peb@mppmu.mpg.de>
12205    Bug #17946, attachment #19439
12206    
12207    Define as 1 (one) as done by autoconf and the command line
12208    option, e.g. -DX11_t, not as empty.
12209    
12210    This avoids the gcc (3.4.6) warnings:
12211            ../../libX11-1.1.5/src/x11_trans.c:27:1: warning: "X11_t" redefined
12212            <command line>:7:1: warning: this is the location of the previous definition
12213            ../../libX11-1.1.5/src/x11_trans.c:28:1: warning: "TRANS_CLIENT" redefined
12214            <command line>:8:1: warning: this is the location of the previous definition
12215    
12216    Similarly, follow the autoconf convention to define XTHREADS
12217    and XUSE_MTSAFE_API as one.
12218    
12219    This avoids analogous warnings when compiling libXcomposite,
12220    libXcursor, and libXdamage.
12221    
12222    No reason to AC_SUBST XTHREADS and XUSE_MTSAFE_API (unused).
12223
12224commit a1977883c9f5ef0e515569d6e2ebccb07411f98c
12225Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
12226Date:   Thu Jan 29 15:01:06 2009 -0200
12227
12228    Janitor: Correct some gcc/sparse warnings.
12229    
12230      Most remaining warnings are about XIM/Xim to/from conversion
12231    and discarding const from pointers.
12232
12233commit 8ba0ca32a63c532f128bdca7f1bf982cab8e12be
12234Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
12235Date:   Wed Jan 28 20:31:42 2009 -0200
12236
12237    Janitor: ansification, make distcheck, compiler warnings.
12238    
12239      Only convert to use "ansi prototypes" the functions warned from
12240    compilation with "./autogen.sh --prefix=/usr", on a Linux computer.
12241    
12242      Also, only address "trivial" compiler warning fixes in this commit.
12243    
12244      The new .gitignore is the output of a command like:
12245    % find . -name .gitignore -exec cat {} \; | sort | uniq
12246    and only the toplevel .gitignore file was kept.
12247
12248commit 091c1624fd2f9d933329d6152e4ecd865aa7903a
12249Author: Peter Hutterer <peter.hutterer@who-t.net>
12250Date:   Tue Jan 13 12:05:54 2009 +1000
12251
12252    Fix wrong implies symbol.
12253    
12254    Quote Simos Xenitellis:
12255    > I checked the gtk+ commit logs that go back to 2000, and I see that still it
12256    > was
12257    >
12258    >   { 0x08ce, 0x21d2 }, /*                     implies ⇒ RIGHTWARDS
12259    > DOUBLE ARROW */
12260    >
12261    > In XFree86, it appears there was an error when they converted the
12262    > original table to
12263    > http://cvsweb.xfree86.org/cvsweb/xc/lib/X11/imKStoUCS.c?rev=1.1&content-type=text/vnd.viewcvs-markup
12264    > and the problem still shows up there (November 2000).
12265    
12266    http://lists.freedesktop.org/archives/xorg/2008-October/039743.html
12267    
12268    Reported by Erik Streb del Toro.
12269
12270commit e32521f19e0b07649b7e3a03d56a2bd556b138fb
12271Author: James Cloos <cloos@jhcloos.com>
12272Date:   Sun Dec 7 04:13:34 2008 -0500
12273
12274    [i18n] s/U00DC/Udiaeresis/g
12275    
12276    The xkeyboard-config keyboards generate the symbol Udiaeresis, not
12277    U00DC.  Make sure the relevant Compose sequences expect the symbol
12278    which the keyboards actually send.
12279
12280commit b7502abfe22f8dc009b21cda1172af221d8f9f32
12281Author: James Cloos <cloos@jhcloos.com>
12282Date:   Sun Dec 7 04:09:46 2008 -0500
12283
12284    Revert "For nls/*.pre, allow people to comment lines by starting them with '##'."
12285    
12286    As of commit c9d20e3 the initial double-hashes are replaced with proper C comments.
12287    
12288    This reverts commit a225a0be48770beb689d5ac5da97073634f7deab.
12289
12290commit c9d20e3f697c9cfae5511412023362c1db7449b1
12291Author: James Cloos <cloos@jhcloos.com>
12292Date:   Sun Dec 7 04:08:23 2008 -0500
12293
12294    Use C comments rather than initial doubled hashes to exclude lines from .pre files
12295
12296commit c34ce54d9eac2d8052dc5f205a2ab09866ef5d25
12297Author: vehemens <vehemens@verizon.net>
12298Date:   Sun Dec 7 01:18:26 2008 -0500
12299
12300    [i18n] Distribute new headers which were added for gb18030 support.
12301    
12302    big5hkscs.h and gbk.h, added in 67e34d7a, need to be in SOURCES to
12303    make it into the tar.
12304    
12305    Completes 67e34d7a82ccd31f1208c0c43a6d58c3c05bf51.
12306    
12307    Signed-off-by: James Cloos <cloos@jhcloos.com>
12308
12309commit 418819558d2c60e58b4e3022ce0fadf2143488ac
12310Author: Stefan Dirsch <sndirsch@suse.de>
12311Date:   Sat Nov 22 22:01:07 2008 +0100
12312
12313    Fixed strange font mixups, when fontsets are still used (#2676, Novell #74299).
12314
12315commit 67e34d7a82ccd31f1208c0c43a6d58c3c05bf51a
12316Author: Stefan Dirsch <sndirsch@suse.de>
12317Date:   Sat Nov 22 19:40:54 2008 +0100
12318
12319    Added remaining xlib patch required for gb18030 support (#1573).
12320
12321commit 55782a0a1fe1560f1a9c0ed78bc7f2575c15abcf
12322Author: Stefan Dirsch <sndirsch@suse.de>
12323Date:   Sat Nov 22 17:53:06 2008 +0100
12324
12325    Added remaining hunk of Egbert's patch to prevent XIM deadlocks (#1182).
12326
12327commit c859446c500c883a67f7a86cab1a44844e24dade
12328Author: Ken Thomases <ken@codeweavers.com>
12329Date:   Fri Nov 21 13:58:10 2008 -0500
12330
12331    [i18n] Provide translation from XK_partialderivative (8ef) to Unicode (U2202)
12332    
12333    Signed-off-by: James Cloos <cloos@jhcloos.com>
12334
12335commit 5e68e94d852c730ef9264fc0d8ca61a2ffe98b53
12336Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
12337Date:   Mon Nov 17 20:47:26 2008 -0800
12338
12339    Force local transport when using the launchd socket.
12340    
12341    Fixes a regression due to
12342    bf53987eaf0fbd7f7627783fc39e7ee99e8361ba
12343
12344commit 7aca689ce14d314b5c8c72c8df76f53f76ab467c
12345Author: Peter Hutterer <peter.hutterer@redhat.com>
12346Date:   Fri Nov 14 10:32:50 2008 +1000
12347
12348    Add XF86Suspend, XF86Hibernate to KeysymDB.
12349
12350commit d16b11f25f8265e651def8d80bcd430c0448e664
12351Author: James Cloos <cloos@jhcloos.com>
12352Date:   Tue Nov 11 19:43:39 2008 -0500
12353
12354    [nls] Annotate the Bépo compose sequences
12355    
12356    Add comments with the UCS names.
12357    Add utf-8 strings for each result.
12358    Format for easy reading.
12359
12360commit 730298464240be6f65b32416b3f9b20062c61825
12361Author: James Cloos <cloos@jhcloos.com>
12362Date:   Tue Nov 11 16:41:34 2008 -0500
12363
12364    [nls]  Add some UTF-8 Compose sequences
12365    
12366    As requested for the Bépo keyboard layout (http://clavier-dvorak.org/wiki/).
12367    
12368    Cf. bugs:
12369    
12370      https://bugs.freedesktop.org/show_bug.cgi?id=17821
12371      https://bugs.freedesktop.org/show_bug.cgi?id=17822
12372
12373commit ad6008a0c92733826983eb93f063d3d6276007d8
12374Author: Colin Harrison <colin.harrison@virgin.net>
12375Date:   Thu Nov 6 17:48:21 2008 -0500
12376
12377    Fix copy/paste typo in imLcPrs
12378    
12379    Signed-off-by: James Cloos <cloos@jhcloos.com>
12380
12381commit 0f0168ad18f8a280fc5a689eb02cfaa62d022ea6
12382Author: Adam Jackson <ajax@redhat.com>
12383Date:   Thu Nov 6 14:54:13 2008 -0500
12384
12385    Fix leak in _XimXGetReadData
12386    
12387    Spotted by Denis Dzyubenko
12388
12389commit ae23c25b9349ab1d7ff81f3075c000cf35fc442b
12390Author: Julien Cristau <jcristau@debian.org>
12391Date:   Wed Nov 5 22:09:37 2008 +0100
12392
12393    Bump to 1.1.99.2
12394
12395commit d31e644c65c52828ea3e7abd94a8cf9aee12265c
12396Author: Julien Cristau <jcristau@debian.org>
12397Date:   Wed Nov 5 21:33:13 2008 +0100
12398
12399    Fix distcheck
12400
12401commit e6a7b70cdb2ae8b713012839a0a0bbb93817b8ef
12402Author: Jamey Sharp <jamey@minilop.net>
12403Date:   Wed Oct 29 14:00:33 2008 -0700
12404
12405    Support multiple independent internal sync handlers
12406    
12407    Xlib has several independent tasks that need to be performed with the
12408    display unlocked. It does this by replacing the existing sync handler with
12409    one of a variety of internal sync handlers. However, if multiple internal
12410    sync handlers need to run, then the last one registering wins and
12411    previously registered internal sync handlers are never invoked. This
12412    manifested as a bug with DRI applications on Xlib/XCB as that requires
12413    both an XID handler after every XID allocation, and the periodic sequence
12414    number handler. The XID handler would win, and the sequence number handler
12415    would never be invoked.
12416    
12417    Fix this by unifying the internal sync handler mechanism into a single
12418    function that calls all of the known internal sync handlers. They all need
12419    to deal with being called when not strictly necessary now.
12420    
12421    Signed-off-by: Keith Packard <keithp@keithp.com>
12422    Signed-off-by: Jamey Sharp <jamey@minilop.net>
12423    Signed-off-by: Josh Triplett <josh@freedesktop.org>
12424
12425commit 2dbaaab9c4e3894b33dcae850551dee5473431d5
12426Author: Keith Packard <keithp@keithp.com>
12427Date:   Sat Oct 11 21:44:21 2008 -0700
12428
12429    Ensure that _XReadEvents always leaves an event in the queue on return
12430    
12431    XNextEvent assumes that the event queue will be non-empty on return from
12432    _XReadEvents, but with multiple event readers running, the previous change
12433    could leave the queue empty on return from process_responses. Re-invoke
12434    process_responses until the queue is non-empty.
12435    
12436    Signed-off-by: Keith Packard <keithp@keithp.com>
12437
12438commit bedfe68259037c5564fe52758c92b9c97729640a
12439Author: Keith Packard <keithp@keithp.com>
12440Date:   Sat Oct 11 21:10:23 2008 -0700
12441
12442    Permit only one Xlib thread to block waiting for events
12443    
12444    As Xlib queues events internally, we must prevent multiple Xlib threads from
12445    entering XCB to wait for an event in case the queued event is to be
12446    delivered to the thread which didn't manage to read it. In other words, let
12447    only one Xlib thread into xcb_wait_for_event at a time.
12448    
12449    Jamey Sharp looked over my shoulder while making this fix and, while hating
12450    my whitespace conventions, appears happy enough with the actual code.
12451    
12452    Signed-off-by: Keith Packard <keithp@keithp.com>
12453
12454commit cc19618d2eb3ed92a0b574aee26a7da8b4aed5d2
12455Author: Jamey Sharp <jamey@minilop.net>
12456Date:   Sun Mar 23 16:33:50 2008 -0700
12457
12458    Fix XAllocID race: hold the user display lock until we have a new XID.
12459    
12460    Xlib built --without-xcb is also vulnerable to this race, and a similar
12461    fix might work there too.
12462    
12463    Also, use an XID that's truly invalid while waiting for the next XID to be
12464    requested.
12465
12466commit 54e5c0941b0ded1628d559a9f0a3451ea96c299b
12467Author: Josh Triplett <josh@freedesktop.org>
12468Date:   Sat Mar 15 17:22:23 2008 -0700
12469
12470    Use XCB's new socket handoff mechanism rather than the old XCB Xlib lock.
12471    
12472    Previously, Xlib/XCB used XCB's Xlib lock to prevent XCB from sending
12473    requests between calls to Xlib's LockDisplay and UnlockDisplay macros.
12474    Xlib/XCB then sent all of its requests using XCB's xcb_send_request, and
12475    had to flush its requests when unlocking the display.
12476    
12477    XCB 1.2 adds a new socket handoff mechanism, xcb_take_socket.  Replace
12478    much of the existing Xlib/XCB implementation with the use of
12479    xcb_take_socket to take ownership of the write side of the X connection
12480    socket, and a return_socket callback which writes any outstanding requests
12481    with xcb_writev.  This approach allows Xlib/XCB to use the same buffering
12482    as traditional Xlib did.  In particular, programs which use Xlib/XCB and
12483    never make XCB calls will never need to hand the socket back to XCB, and
12484    vice versa.
12485    
12486    This allows us to discard large quantities of synchronization code from
12487    Xlib/XCB, together with the synchronization bugs present in that code.
12488    Several test cases which previously failed now work perfectly, including
12489    multi-threaded ico.  In addition, the infamous locking correctness
12490    assertions, triggered when double-locking or when unlocking without a
12491    previous lock, no longer exist, because Xlib/XCB no longer has any reason
12492    to care more about application locking than traditional Xlib does.
12493    
12494    Furthermore, the handoff approach provides great improvements to
12495    performance.  Results from x11perf's XNoOp test, which represented the
12496    worst case for the lock-based Xlib/XCB:
12497    
12498    Traditional Xlib:       average 19100000/sec
12499    Lock-based Xlib/XCB:    average  3350000/sec
12500    Handoff-based Xlib/XCB: average 17400000/sec
12501    
12502    Thus, for no-ops, the handoff mechanism provides more than a 4x speedup to
12503    Xlib/XCB, bringing Xlib/XCB within 9% of traditional Xlib no-op
12504    performance.  Of course, real-world workloads do not use no-op, so your
12505    mileage may vary.  In particular, since no-ops represent the worst case,
12506    we expect real workloads to more closely match the performance of
12507    traditional Xlib.
12508    
12509    While removing synchronization code, we changed _XReply to not drop any
12510    locks when calling xcb_wait_for_reply; previously, we had to carefully
12511    avoid a deadlock between the Display lock and the XCB Xlib lock. Holding
12512    the locks reduces implementation complexity and should not impact
12513    applications.
12514    
12515    Commit by Jamey Sharp and Josh Triplett.
12516    XCB's handoff mechanism inspired by Keith Packard.
12517
12518commit 5a19ac473f7a8046b0421fbd5d53da160c22ed75
12519Author: Chris Ball <cjb@laptop.org>
12520Date:   Mon Nov 3 22:57:29 2008 -0500
12521
12522    Remove configure check for xcb-xlib.
12523    
12524    xcb-xlib has been intentionally removed from libxcb; stop checking for
12525    it at configure-time.
12526
12527commit 34b35dda0bb7f3cf0ad9ab95ad7953d35d24f71b
12528Author: Josh Triplett <josh@freedesktop.org>
12529Date:   Wed Oct 29 14:37:44 2008 -0700
12530
12531    .gitignore: Add dolt files
12532
12533commit 1290cccf2d90083eba852f5f413f7e3dff48ccd2
12534Author: Peter Hutterer <peter.hutterer@redhat.com>
12535Date:   Tue Oct 28 11:56:55 2008 +1030
12536
12537    man: fix formatting error in XkbGetIndicatorState man page.
12538
12539commit b1022fa6d7e97640049e93ffa108083fc8d71b05
12540Author: James Cloos <cloos@jhcloos.com>
12541Date:   Sat Oct 25 09:13:08 2008 -0400
12542
12543    Increase size of working arrays in the makekeys utility program.
12544    
12545    Makekeys is used to create an optimal hash of the keysyms defined
12546    in x11proto’s keysymdef.h.
12547    
12548    The recent addition of new keysyms there has triggered a bug in
12549    makekeys where it tries to use a zero on the rhs of the % (mod)
12550    operator (resulting in a divide by zero error) whenever it fails
12551    to find a solution within its constraints.
12552    
12553    Increasing the size of the arrays allows it to find a solution for
12554    the current set of keysyms.
12555    
12556    Makekeys is only run durring the build process, so this has no impact
12557    on users of libX11, only on the amount of VM needed to build it.
12558    
12559    It still needs a more complete fix, but this allows compiles to
12560    progress until that is completed.
12561
12562commit 3e9afd501e40d76040635bd9a3045bcaf5a03b60
12563Author: James Cloos <cloos@jhcloos.com>
12564Date:   Sat Oct 11 01:03:14 2008 -0400
12565
12566    Dolt-ify
12567    
12568    Add dolt to acinclude.m4 and call it it configure.ac to speed compiles.
12569
12570commit 39c0b266cac8cbc15bf501d7869186862f01d823
12571Author: Peter Hutterer <peter.hutterer@redhat.com>
12572Date:   Wed Oct 15 14:30:20 2008 +1030
12573
12574    Add more keysyms for PS3 BD remotes, Ericsson Phones #16519
12575    
12576    X.Org Bug 16519 <https://bugs.freedesktop.org/show_bug.cgi?id=16519>
12577
12578commit d23aad31338e7d869d878d5aa1b6b91d20287005
12579Author: Peter Hutterer <peter.hutterer@redhat.com>
12580Date:   Mon Oct 13 09:41:59 2008 +1030
12581
12582    Add XF86Battery, XF86Bluetooth, XF86WLAN, XF86UWB to keysymdb.
12583
12584commit 214ea6f5fd6aeaa7303ea4a69f9aedabf219ec4c
12585Author: Peter Hutterer <peter.hutterer@who-t.net>
12586Date:   Thu Jul 24 15:44:26 2008 +0930
12587
12588    xkb: fix out-by-1 error in _XkbWriteKeyExplicit.
12589    
12590    Thanks to Michael Meeks, Novell Bug 369263.
12591    https://bugzilla.novell.com/show_bug.cgi?id=369263
12592
12593commit e7ece39afc8e0adc3b6b1e70b337b98376754462
12594Author: Alan Coopersmith <alan.coopersmith@sun.com>
12595Date:   Tue Oct 7 15:41:38 2008 -0700
12596
12597    Sun bug #6739431: double free in _X11TransConnectDisplay()
12598    
12599    Double free() introduced in bf53987eaf0fbd7f7627783fc39e7ee99e8361ba
12600    After copying original_hostname to phostname, set original_hostname
12601    to NULL, so we don't free the same pointer twice when we free both
12602    original_hostname and phostname.
12603    
12604    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6739431>
12605
12606commit 0877bc916afbd1ff8f1833edc930b765ea783576
12607Author: Daniel Stone <daniel@fooishbar.org>
12608Date:   Tue Sep 23 19:02:02 2008 +0300
12609
12610    configure.ac: Fix CC_FOR_BUILD logic error
12611    
12612    Turns out we were accidentally smashing it so that you couldn't set it
12613    externally at all.  Oops.
12614
12615commit 58bf3aa746908f01c37be7045699e43a4e270944
12616Author: John Tapsell <johnflux@gmail.com>
12617Date:   Tue Sep 23 17:30:13 2008 +0300
12618
12619    Build: Use native compiler for makekeys
12620    
12621    makekeys needs to be run during the build process, as opposed to on the
12622    target, so build it with either of gcc or cc to fix cross-compiling.
12623    This can be overridden by setting $CC_FOR_BUILD.
12624
12625commit 340422a5c7a413faef18666cada27cee14615250
12626Author: Adam Jackson <ajax@redhat.com>
12627Date:   Wed Sep 17 12:54:34 2008 -0400
12628
12629    Fix the previous patch for the BadFont case.
12630
12631commit 2335eafe4b53c27f6f9ee1bab3e1f5842f896428
12632Author: Matthias Clasen <mclasen@redhat.com>
12633Date:   Wed Sep 17 10:43:52 2008 -0400
12634
12635    Bug #17616: Fix an XCB leak when the client has a non-fatal error handler.
12636
12637commit db0b85db29699be6bf7e78dede655d59ba926dfc
12638Author: Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
12639Date:   Sun Sep 14 19:15:26 2008 -0400
12640
12641    Fix problem with <dead_acute> <c> in pt_BR.UTF-8
12642    
12643    The <dead_acute> <C> and <dead_acute> <c> lines in the pt_BR UTF-8
12644    Compose file show "Ç" and "ç" (c with cedilla accent) (akin to the
12645    ISO 8859 pt_BR Compose file) as the string but specify the keysym
12646    and comment for Ć and ć (c with acute accent).
12647    
12648    This commit normalizes those two lines to match the specified string.
12649    
12650    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=4671
12651    
12652    Signed-off-by: James Cloos <cloos@jhcloos.com>
12653
12654commit b065c011baa69b69e3ea77c30d5e153c0d103e2d
12655Author: Michael Verret <michael.verret@gmail.com>
12656Date:   Mon Sep 8 16:33:35 2008 -0400
12657
12658    Fix documentation typo
12659    
12660    Signed-off-by: James Cloos <cloos@jhcloos.com>
12661
12662commit 4213ea95185377bdd1b51e82933f331fc0f52e5b
12663Author: James Cloos <cloos@jhcloos.com>
12664Date:   Sat Sep 6 04:19:19 2008 -0400
12665
12666    Remove extraneous <angle brackets> from the Ethiopic Compose file.
12667    
12668    The am_ET.UTF-8 Compose file submitted in:
12669    
12670    https://bugs.freedesktop.org/show_bug.cgi?id=11307
12671    
12672    for the OLCP project used incorrect syntax.  (It has angle brackets around the
12673    Uxxxx symbols on the right hand side rather than only on the left hand side).
12674    
12675    This bug is noted in OLPC’s ticket:
12676    
12677    http://dev.laptop.org/ticket/7474
12678    http://dev.laptop.org/attachment/ticket/7474/olpc_7474_dead_vowels_libX11.patch
12679
12680commit 9df84b513dd2b6e65e6d528cfac6d4cc3ea46918
12681Author: James Cloos <cloos@jhcloos.com>
12682Date:   Mon Sep 1 17:49:33 2008 -0400
12683
12684    Complete the set of vulgar fractions
12685    
12686    Unicode 1.1 added thirds, fifths, sixths and eights;
12687    we might as well catch up.
12688    
12689    (Unicode and ISO 10646 have 1/7 (U2150), 1/9 (U2151), 1/10 (U2152)
12690    and 0/3 (U2189) in their pipelines, but those four can be added
12691    here after they are published.)
12692
12693commit a788792e9de95f8db0639557859722a35087481d
12694Author: James Cloos <cloos@jhcloos.com>
12695Date:   Wed Aug 20 15:28:07 2008 -0400
12696
12697    nls (en_US) Re-remove long compositions that override shorter
12698    
12699    As reported in <https://bugs.freedesktop.org/show_bug.cgi?id=17228>:
12700    
12701      Commit a6f4bbf7
12702        nls (en_US): remove long compositions that override shorter [...]
12703        removed some longer compose sequences because there are shorter
12704        ones which take preference over the longer. For example the
12705        sequences:
12706    
12707          <Multi_key> <apostrophe> <comma> <c>   : U1E09 # ḉ
12708          <Multi_key> <apostrophe> <comma> <C>   : U1E08 # Ḉ
12709    
12710        were removed becase there already was:
12711    
12712          <Multi_key> <apostrophe> <comma>       : U201A # ‚
12713    
12714      Then commit 4ba09125
12715        Work on making the en_US and pt_BR UTF-8 Compose as similar as
12716        possible added exactly the same key sequences again. Obviusly
12717        they won't work.
12718
12719commit 55248e5c84c3fd8c349a3bb4cb15a1ec86989d74
12720Author: James Cloos <cloos@jhcloos.com>
12721Date:   Thu Jul 17 21:01:42 2008 -0400
12722
12723    Add more <Multi_key> <cedilla> Compose tuples
12724    
12725    The last commit missed the el_GR UTF-8 Compose.pre as well as
12726    the various ISO 8859 locales which have compose sequences
12727    generating ‘WITH CEDILLA’ characters.
12728    
12729    (Interestingly, some of the 8859 locales already supported
12730    <Multi_key> <cedilla> for some CEDILLA characters, but not
12731    for Ç or ç.)
12732    
12733    This is further work on bug 10397.
12734
12735commit 4ba091255bb953d53078ba5619d6751052c739f7
12736Author: James Cloos <cloos@jhcloos.com>
12737Date:   Thu Jul 17 17:16:50 2008 -0400
12738
12739    Work on making the en_US and pt_BR UTF-8 Compose as similar as possible.
12740    
12741    The eventual goal here is to have a single primary UTF-8 Compose
12742    file which the locale-specific UTF-8 Compose.pre files can #include.
12743
12744commit 254522d3c24e0590732fc03cdd61ff4564819d94
12745Author: James Cloos <cloos@jhcloos.com>
12746Date:   Thu Jul 17 17:13:36 2008 -0400
12747
12748    Add <Multi_key> <cedilla> Compose tuples
12749    
12750    The en_US and pt_BR UTF-8 Compose tables had support for using <comma>
12751    with <Multi_key> to enter CEDILLA characters.  Bug 10397 requests
12752    support for using <cedilla> instead of <comma> in said sequences.
12753    
12754    This commit makes both styles work.
12755
12756commit 7dc907f6032e1d5cbe4da0e414bdf2c569c04b44
12757Author: James Cloos <cloos@jhcloos.com>
12758Date:   Sat Jun 28 15:25:23 2008 -0400
12759
12760    Fix commit 21e464ec682ab23ba20ddf6bd72c6db214cfbe01
12761    
12762    The new block was added twice to the en_US.UTF-8 Compose.pre;
12763    delete the duplicate.
12764
12765commit 596e081b7457dcd1c4ad555ac140e6999239bc0d
12766Author: Peter Hutterer <peter@cs.unisa.edu.au>
12767Date:   Sat Jun 28 20:14:05 2008 +0930
12768
12769    Fix unbalanced parenthesis in XKBlib.h # 16551
12770    
12771    X.Org Bug 16551 <http://bugs.freedesktop.org/show_bug.cgi?id=16551>
12772
12773commit f6af6dd2f76c12b56ec166bb771457b9f08fe246
12774Author: Adam Jackson <ajax@redhat.com>
12775Date:   Tue Jun 24 13:16:53 2008 -0400
12776
12777    Bug #14898: Don't abuse the sprintf() implementation.
12778    
12779    The thing you're printing into should not itself appear in the list of
12780    things to print from, that's bad juju.  Just use strcat().
12781
12782commit 21e464ec682ab23ba20ddf6bd72c6db214cfbe01
12783Author: Khaled Hosny <khaledhosny@eglug.org>
12784Date:   Thu Jun 19 18:26:11 2008 -0400
12785
12786    NLS: Add Arabic Lam-Alef ligature compose sequences (bug #16426)
12787    
12788    Add some Arabic digraphs to utf-8 locales with a Compose.pre
12789    
12790    Signed-off-by: James Cloos <cloos@jhcloos.com>
12791
12792commit bf53987eaf0fbd7f7627783fc39e7ee99e8361ba
12793Author: Alan Coopersmith <alan.coopersmith@sun.com>
12794Date:   Wed Jun 18 20:00:25 2008 -0700
12795
12796    Rework code to choose local connection types and fallback to others
12797    
12798    Adds --with-local-transport-order configure flag if you don't like the
12799    default ordering (which is platform dependent)
12800    
12801    Includes fixes for these Sun/Solaris bug ids:
12802    6678250 X Commands returning incorrect display value unix:0.0 not <system>:0.0
12803    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6678250>
12804    6716481 libX11 should prefer Unix domain sockets over named pipes on Solaris
12805    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6716481>
12806
12807commit cf49e537014c3cb5aaee07e57400933e0bb72b6b
12808Author: Alan Coopersmith <alan.coopersmith@sun.com>
12809Date:   Tue Jun 17 14:41:17 2008 -0700
12810
12811    Strip whitespace from end of lines in source files
12812
12813commit f76fd81dfbbd5cfae75c87ce0511e88e08529cf3
12814Author: Jeff Smith <whydoubt@yahoo.com>
12815Date:   Sun Jun 15 23:52:20 2008 -0500
12816
12817    Fix memory leak in XOpenDisplay
12818    
12819    Signed-off-by: Peter Hutterer <peter@cs.unisa.edu.au>
12820
12821commit fca0b0ba3f72b7284601d4690bba99fc80a92614
12822Author: Jens Herden <jens@khmeros.info>
12823Date:   Tue Jun 10 20:07:30 2008 +0300
12824
12825    NLS: Add Khmer compose sequences (bug #5706)
12826    
12827    Add some Khmer digraphs to all locales with a Compose.pre.
12828
12829commit e54cffb649b1622c17457e470cfab8cc56d38c97
12830Merge: 19802ccd 721b574d
12831Author: Daniel Stone <daniel@fooishbar.org>
12832Date:   Tue Jun 10 20:04:30 2008 +0300
12833
12834    Merge branch 'master' of ssh://git.freedesktop.org/git/xorg/lib/libX11
12835
12836commit 721b574d36f1884c3f1bf7bd933646e2ed6680b5
12837Author: Peter Hutterer <peter@cs.unisa.edu.au>
12838Date:   Thu May 29 10:57:21 2008 +0930
12839
12840    Bump to 1.1.99.1
12841
12842commit 631d32d13247d1cf52c0833d438c5b38b01b17a4
12843Author: Peter Hutterer <peter@cs.unisa.edu.au>
12844Date:   Wed May 28 17:31:59 2008 +0930
12845
12846    Require xproto 7.0.13 and libxcb 1.1.90 (for GenericEvents)
12847
12848commit e9195db7257e418f83707233baeeb84b225caf4f
12849Merge: c34f76f4 a7f85567
12850Author: Peter Hutterer <peter@cs.unisa.edu.au>
12851Date:   Thu May 22 12:14:28 2008 +0930
12852
12853    Merge branch 'master' into xge
12854
12855commit 19802ccd3909145e3ba2f6c073271cb5f3701685
12856Author: Daniel Stone <daniel@fooishbar.org>
12857Date:   Mon May 19 19:22:31 2008 +0300
12858
12859    gitignore: Update with loads more bits from server
12860
12861commit a7f85567a3e850fba0c44571453d2852ab1a09be
12862Author: Adam Jackson <ajax@redhat.com>
12863Date:   Tue May 13 10:28:39 2008 -0400
12864
12865    Bug #15884: Remove useless sleep()'s from the connection code.
12866    
12867    For network transports, there's enough delay in the network layer
12868    already without adding more.  For local transports, just hurry up
12869    and fail if the server isn't there.
12870
12871commit c34f76f475bc632490122e67b5a82575d69d5569
12872Author: Peter Hutterer <peter@cs.unisa.edu.au>
12873Date:   Mon May 12 21:46:24 2008 +0930
12874
12875    Pull down extra bytes when reading a GenericEvent (non-xcb).
12876    
12877    I refuse to take any responsibily for this code. It works, I guess.
12878    But - all the flushing is done somewhere before that, so we might need to
12879    flush here. Under some circumstances anyway. Don't ask me, I'm an optical
12880    illusion.
12881    
12882    Build with xcb as transport layer highly recommended.
12883
12884commit c9b2ff1e6a607463993afa4a8d085857d97cc2f3
12885Merge: 17d7dcbf 9129057b
12886Author: Peter Hutterer <peter@cs.unisa.edu.au>
12887Date:   Mon May 12 17:58:37 2008 +0930
12888
12889    Merge branch 'master' into xge
12890
12891commit 9129057bdbff0ec9cd8bb780cf7f85f134a291eb
12892Author: Teemu Likonen <tlikonen@iki.fi>
12893Date:   Wed May 7 21:44:22 2008 +0300
12894
12895    Change <dead_belowdot> to <dead_belowring> for U+1E00 and U+U1E01
12896    
12897    Commit 6b6caeea830a977bdb54688cfb648d879821e752 added <dead_belowdot>
12898    <A> and <dead_belowdot> <a> compose sequences for letters U+1E00 and
12899    U+U1E01 (LATIN CAPITAL/SMALL LETTER A WITH RING BELOW). This caused
12900    duplicate compose sequences since these have already been defined. Also,
12901    using <dead_belowring> is more logical since the diacritic is indeed
12902    a "RING BELOW".
12903
12904commit 01a9cb58888d290cc3d319feec4ee4a0297a844c
12905Author: Daniel Stone <daniel@fooishbar.org>
12906Date:   Wed May 7 20:04:44 2008 +0300
12907
12908    NLS: Make UTF-8 the default for Russian
12909    
12910    No-one uses 8859-5 anymore, so make the default for Russian UTF-8; the
12911    only other possible answer would be KOI8-R.
12912    
12913    Signed-off-by: Sergey V. Udaltsov <sergey.udaltsov@gmail.com>
12914
12915commit 407b81bfbbabf6feb565d6da22f9ef9a69016ab8
12916Author: Ross Burton <ross@burtonini.com>
12917Date:   Tue Apr 29 13:38:10 2008 +0300
12918
12919    NLS: Add interrobang to UTF-8 compose tables (bug #15653)
12920    
12921    It is what it says on the box.
12922
12923commit 0b6682303e9c61fefc3818acfda616b1e3691abf
12924Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
12925Date:   Mon Apr 28 11:51:25 2008 +0300
12926
12927    IM: Respect XMODIFIERS for Thai locale (bug #15719)
12928    
12929    When looking at Thai input methods, make sure XMODIFIERS is checked
12930    before jumping straight into built-in Thai processing, so external XIM
12931    servers such as SCIM can be used with Thai.
12932
12933commit c13aded1b2f830ba5004abb0ec5518f9ea16087e
12934Author: Colin Harrison <colin.harrison-at-virgin.net>
12935Date:   Sat Apr 26 18:56:05 2008 +0100
12936
12937    Fix missing error condition
12938
12939commit f5c5ffc175cb383c92ea0fa8c08cfb087c5f3083
12940Author: Colin Harrison <colin.harrison-at-virgin.net>
12941Date:   Mon Apr 21 17:24:33 2008 +0100
12942
12943    Xlib warning fixes
12944
12945commit 6b6caeea830a977bdb54688cfb648d879821e752
12946Author: James Cloos <cloos@jhcloos.com>
12947Date:   Fri Apr 18 02:50:55 2008 -0400
12948
12949    Add some dead_key sequences to en_US.UTF-8 Compose table
12950    
12951    Make use of the new dead key symbols added to x11proto’s
12952    commit 44e24a27bca023cf7b799f191fe6d52e12efbe5f (which
12953    was in responce to bug #15446).
12954
12955commit 8f9b039580deaf658e464b7d6254064fcf183df6
12956Author: Alan Coopersmith <alan.coopersmith@sun.com>
12957Date:   Mon Apr 14 19:09:42 2008 -0700
12958
12959    Update ac_define_dir macro in acinclude.m4 to 2008-04-12 version
12960
12961commit 9f5e96eb91ab55dd441c3e94b75caf48c588778f
12962Author: Alan Coopersmith <alan.coopersmith@sun.com>
12963Date:   Mon Apr 14 18:21:14 2008 -0700
12964
12965    Fix mismatched brace indenting
12966
12967commit a19f9c65ee9e5e5d783feaa84998c36439b0288b
12968Author: Bart Massey <bart@cs.pdx.edu>
12969Date:   Fri Apr 4 18:58:45 2008 -0700
12970
12971    added error check in Xcms color file parser; closes bug #15305
12972
12973commit 12e8d0d01dd72ce98e7683ddb1bde181b7ed246f
12974Author: Christian Weisgerber <naddy@mips.inka.de>
12975Date:   Tue Mar 18 07:30:05 2008 +0100
12976
12977    ConnDis: properly cast 'addr' before accessing it as a byte array.
12978    
12979    If you use XDM-AUTHORIZATION-1 authorization keys for remote X11
12980    clients over IPv6, the clients are liable to segfaults.
12981
12982commit 64325f38bab082a8e0e9ce779a8e582de5c8588e
12983Author: Josh Triplett <josh@freedesktop.org>
12984Date:   Sat Mar 15 12:29:33 2008 -0700
12985
12986    Fix fd.o bug 15023: make Xlib sync correctly given many void requests
12987    
12988    If given many requests without replies, Xlib may not sync until it flushes
12989    the output buffer.  Thus, if Xlib can fit enough requests in the buffer to
12990    pass by the number of requests it would normally sync after (65536 -
12991    BUFSIZE/sizeof(xReq)), it will sync too late.  The test case in bug 15023
12992    demonstrated this by issuing a request with a reply (ListExtensions) at
12993    just the right time to get confused with the GetInputFocus reply issued in
12994    response to the sync 65,536 requests later; the test case used an async
12995    handler to watch the replies, since otherwise it could not issue a request
12996    without waiting for the response.  When the test case failed, Xlib's sync
12997    handler would eat the ListExtensions reply, and the test case's async
12998    handler would see the GetInputFocus reply.
12999    
13000    Fix this by replacing SEQLIMIT with a function sync_hazard() that uses the
13001    buffer size to figure out when the sequence numbers could potentially wrap
13002    before the next flush.
13003    
13004    With this commit, the test case consistently passed, and the async reply
13005    handler always saw the ListExtensions reply.
13006    
13007    Commit by Jamey Sharp and Josh Triplett.
13008
13009commit a5395563bbee15fabe1e8fd7aa86f9f314d8d30e
13010Author: Colin Harrison <colin.harrison@virgin.net>
13011Date:   Sat Mar 15 13:39:13 2008 -0400
13012
13013    Fix typo
13014    
13015    Signed-off-by: James Cloos <cloos@jhcloos.com>
13016
13017commit f07585ca27a8487bc66dfe41486c823f0fdcea7d
13018Author: Daniel Stone <daniel@fooishbar.org>
13019Date:   Sat Mar 15 17:32:57 2008 +0200
13020
13021    configure.ac: Don't search for legacy X11 headers
13022    
13023    This can actually break cross-compiles, so don't do it anymore.
13024
13025commit bf69541238c7df6606340c0f389e5c47149b29c7
13026Author: Matthieu Herrb <matthieu.herrb@laas.fr>
13027Date:   Sun Mar 9 09:08:07 2008 +0100
13028
13029    nuke RCS Ids
13030
13031commit 5e98aed13e529638df744e45893c471d5f2014fb
13032Author: Adam Jackson <ajax@redhat.com>
13033Date:   Thu Mar 6 16:10:33 2008 -0500
13034
13035    libX11 1.1.4
13036
13037commit 8e085971dc661da9f80ff6b67747459c0fb15c08
13038Author: Alan Coopersmith <alan.coopersmith@sun.com>
13039Date:   Thu Feb 28 20:17:41 2008 -0800
13040
13041    Man page typo fixes
13042
13043commit 1a1a42a3ca1dfaf42f1094936b71c140fc030fcb
13044Author: Søren Sandmann Pedersen <sandmann@redhat.com>
13045Date:   Sun Feb 24 20:03:35 2008 -0500
13046
13047    XIM: Fix a hand when switching input context.
13048    
13049    Red Hat bug #201284.
13050
13051commit e02e4ccafcaf3eb8993152dfcbfbee0240ea2db2
13052Author: Adam Jackson <ajax@redhat.com>
13053Date:   Sun Feb 24 20:00:43 2008 -0500
13054
13055    Bug #14029: Don't LockDisplay() recursively.
13056    
13057    See also Red Hat bugzilla #326461.
13058
13059commit e5892467ae3308c8651be76e06db322dcbc08522
13060Author: Alan Coopersmith <alan.coopersmith@sun.com>
13061Date:   Fri Feb 15 17:27:53 2008 -0800
13062
13063    Add support for building lint library with --enable-lint-library
13064
13065commit e3eb83ec6a9bffa63cdffd94f077c12f85ad7240
13066Author: Alan Coopersmith <alan.coopersmith@sun.com>
13067Date:   Mon Feb 11 20:11:43 2008 -0800
13068
13069    Spell out number in XkbGetKeyVirtualModMap man page to avoid cpp errors from #
13070
13071commit d5ceed7a73a6b61758ddb6ff4e194955fbd5c185
13072Author: Alan Coopersmith <alan.coopersmith@sun.com>
13073Date:   Fri Feb 8 16:46:46 2008 -0800
13074
13075    Add WM_LOCALE_NAME to list of properties set in XSetWMProperties comment
13076
13077commit 416a812200f24d19149dcc497e5c51a0608120f6
13078Author: Alan Coopersmith <alan.coopersmith@sun.com>
13079Date:   Fri Feb 8 15:31:31 2008 -0800
13080
13081    XErrorDB updates for Render 0.9 & XFixes 4.0
13082
13083commit 16a76091cd632e5a3708e235ff864b58f3e4613e
13084Author: Kim Woelders <kim@woelders.dk>
13085Date:   Sat Dec 22 21:45:23 2007 +0100
13086
13087    Fix bs_BA entries in locale.dir.pre
13088    
13089    X.Org bug#13786 <http://bugs.freedesktop.org/show_bug.cgi?id=13786>
13090
13091commit 32115c563b87d2f37e3f9de70fbd0f4d9e424aea
13092Merge: 8f0bd3f4 e8d4cefa
13093Author: James Cloos <cloos@jhcloos.com>
13094Date:   Fri Dec 14 22:43:47 2007 -0500
13095
13096    Merge branch 'master' of ssh://git.freedesktop.org/git/xorg/lib/libX11
13097
13098commit 8f0bd3f445cbdcc67650f6e8e3baf2ed89cb3695
13099Author: James Cloos <cloos@jhcloos.com>
13100Date:   Fri Dec 14 22:42:59 2007 -0500
13101
13102    add a comment to en_US.UTF-8/Compose
13103
13104commit 4d6c45e60ed13d3b0fea10413873d6a74f9d6a3b
13105Author: James Cloos <cloos@jhcloos.com>
13106Date:   Fri Dec 14 22:40:13 2007 -0500
13107
13108    Add <dead_stroke> compose sequences
13109    
13110    The added sequences match the existing <Multi_key> <slash> sequences.
13111    
13112    This is related to bug #12765¹.
13113    
13114    1] https://bugs.freedesktop.org/show_bug.cgi?id=12765
13115
13116commit e8d4cefa0837afa149a10e981528b368485a9e38
13117Author: Jeremy Huddleston <jeremy@yuffie.local>
13118Date:   Mon Dec 10 23:00:44 2007 -0800
13119
13120    Added launchd support.
13121
13122commit 17d7dcbfced4a9417b33507bd3fd9b7dd8268242
13123Merge: 5dfefd38 13ac8046
13124Author: Peter Hutterer <peter@cs.unisa.edu.au>
13125Date:   Thu Dec 6 14:08:29 2007 +1030
13126
13127    Merge branch 'master' into xge
13128
13129commit 5dfefd3829d3ba7e41d5db0ad28e9dfee92fadd5
13130Merge: a68a1cd7 eff33ae5
13131Author: Peter Hutterer <peter@cs.unisa.edu.au>
13132Date:   Thu Dec 6 13:57:09 2007 +1030
13133
13134    Merge branch 'master' into xge
13135    
13136    Conflicts:
13137    
13138            src/xcb_io.c
13139
13140commit 13ac80469f6958cabac596834e203bd9cb6d4c94
13141Author: James Cloos <cloos@jhcloos.com>
13142Date:   Wed Dec 5 20:14:03 2007 -0500
13143
13144    Update the currency symbols block of en_US.UTF-8/Compose.pre
13145    Add XCOMM lines a la the existing NEW SHEQEL SIGN entry for
13146    the KIP, TUGRIK, DRACHMA. GERMAN PENNY, PESO, GUARANI,
13147    AUSTRAL, HRYVNIA and CEDI SIGNs.
13148
13149commit b0a8f2ec4ba698841683f8ce389f9d72e6bce53e
13150Author: Anton Zinoviev <anton@lml.bas.bg>
13151Date:   Wed Dec 5 19:56:03 2007 -0500
13152
13153    Additions to the Compose file for UTF-8
13154    From bug #5371¹
13155    
13156    Commit 5cf5bc76642bfece7cb5b76faf414bf445f14489 left out this change
13157    from those in attachment #4122².  The post³ on xorg resulted in only
13158    a positive reply⁴ from Daniel, so this block is now also commited.
13159    
13160    1] https://bugs.freedesktop.org/show_bug.cgi?id=5371
13161    2] https://bugs.freedesktop.org/attachment.cgi?id=4122
13162    3] http://article.gmane.org/gmane.comp.freedesktop.xorg/20628
13163    4] http://article.gmane.org/gmane.comp.freedesktop.xorg/23966
13164    
13165    Signed-off-by: James Cloos <cloos@jhcloos.com>
13166    Acked-by:  Daniel Stone <daniel@fooishbar.org>
13167
13168commit 438d02ebc08ee171cf1d3936f4c81050d428ab92
13169Author: James Cloos <cloos@jhcloos.com>
13170Date:   Tue Dec 4 17:25:39 2007 -0500
13171
13172    Fix the <U\x+> keysyms in the en_US.UTF-8 Compose file
13173    
13174    Based on src/KeysymStr.c and src/StrKeysym.c and comments in
13175    bugs #11930¹ and #5129² it is clear that <U100XXXXX> is invalid;
13176    those should be in the form U plus the hex of the UCS Code Point.
13177    
13178    The 0x01000000 is ORed in by the code.
13179    
13180    This update fixes all of those.
13181    
13182    1] https://bugs.freedesktop.org/show_bug.cgi?id=11930
13183    2] https://bugs.freedesktop.org/show_bug.cgi?id=5129
13184
13185commit 02e04059c89e175f51647e3b031344f743286b34
13186Merge: 1254c57d b57129ef
13187Author: James Cloos <cloos@jhcloos.com>
13188Date:   Tue Dec 4 06:55:04 2007 -0500
13189
13190    Merge branch 'master' of ssh://git.freedesktop.org/git/xorg/lib/libX11
13191
13192commit 1254c57dd3a8d6ea87041b2f63024f99094f290f
13193Author: James Cloos <cloos@jhcloos.com>
13194Date:   Tue Dec 4 06:53:55 2007 -0500
13195
13196    Use the new dead_psili and dead_dasia keysyms added to proto/x11proto 7.0.11
13197    Inspired by bug 11930¹:
13198    
13199    Commit 40ed4eef92e31fcf7ea0a436e1a00cdf49484c1b to x11proto added dead_psili
13200    and dead_dasia keysyms.  Make use of them in the en_US.UTF-8 and el_GR.UTF-8
13201    Compose files.
13202    
13203    This was done with a pair of perl scripts based on the one quoted in the
13204    log for commit c76d30253f1483ac8200ad5c032a818907e65030.
13205    
13206    1] https://bugs.freedesktop.org/show_bug.cgi?id=11930
13207
13208commit b57129ef324c73ee91c2a796b800c4b45f4d4855
13209Author: Jeremy Huddleston <jeremy@yuffie.local>
13210Date:   Mon Dec 3 20:04:19 2007 -0800
13211
13212    Use __APPLE__ instead of __DARWIN__
13213
13214commit b9c032e1d5ed08510863dfb91b8bda588e6c8c9e
13215Author: Jeremy Huddleston <jeremy@yuffie.local>
13216Date:   Wed Nov 28 16:43:49 2007 -0800
13217
13218    Define __DARWIN__ when host_os == darwin* as needed in SetLocale.c
13219
13220commit 4b91ed099554626f1ec17d5bdf7bd77ce1a70037
13221Author: Alan Coopersmith <alan.coopersmith@sun.com>
13222Date:   Wed Nov 21 16:50:04 2007 -0800
13223
13224    X.Org Bug #4312: incorrect comment asterisk in XAnyEvent.3x man page
13225    
13226    X.Org Bugzilla #4312 <http://bugs.freedesktop.org/show_bug.cgi?id=4312>
13227    
13228    Protect /* sequences from cpp pre-processor removal without transforming
13229    to Unicode mathematical asterisk character
13230
13231commit 2af660c2fcd15c86c66459bfc074c190ea1462e6
13232Author: Jamey Sharp <jamey@minilop.net>
13233Date:   Mon Oct 29 10:46:20 2007 -0700
13234
13235    Two threads can request sequence sync and XID fetch simultaneously.
13236    
13237    So don't assert that they can't.
13238    
13239    This makes the Xlib/XCB implementation of _XAllocID more closely
13240    resemble the traditional Xlib version.
13241
13242commit 6e5485e0a5e3ab738becad12193e760c5fee83a4
13243Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
13244Date:   Sun Oct 28 04:44:00 2007 -0800
13245
13246    X.Org Bug #12983: Typos in ./man/XChangeKeyboardControl.man
13247    
13248    <http://bugs.freedesktop.org/show_bug.cgi?id=12983>
13249
13250commit 24527c92fd1f433ea135e85ec876a94a529fe500
13251Author: Yann Droneaud <ydroneaud@mandriva.com>
13252Date:   Wed Oct 24 19:26:07 2007 +0300
13253
13254    XIM: Properly initialise client event
13255    
13256    Make sure all ClientMessage fields are initialised to 0 before we send it.
13257
13258commit e41477f37b0d9b74a056d22dbf0073a94eecb9d6
13259Author: Daniel Stone <daniel@fooishbar.org>
13260Date:   Wed Oct 24 19:22:22 2007 +0300
13261
13262    Colours: Fix --disable-xcms
13263    
13264    Disable large tracts of colour management code when passing
13265    --disable-xcms.
13266
13267commit 11ea09745efa8de7dc82fe30ebd2393f08390957
13268Author: Eric Anholt <eric@anholt.net>
13269Date:   Fri Aug 31 17:30:33 2007 -0700
13270
13271    Bug #2081: Note the range limitation of XSetScreenSaver arguments.
13272
13273commit 31540f1438ec63faf37044f2fd654b335ddf80f0
13274Author: Kristian Høgsberg <krh@redhat.com>
13275Date:   Wed Aug 29 19:50:57 2007 -0400
13276
13277    Add GLX 1.4 requests and errors.
13278
13279commit 7c996f78914c77fe17e9f4feede980d895d9df51
13280Author: Eric Anholt <eric@anholt.net>
13281Date:   Tue Aug 28 15:15:11 2007 -0700
13282
13283    Add XF86 keyboard/monitor brightness keysyms to the keysymbdb.
13284
13285commit fa4effe82759f864a22a2dc6c920fa72ddb175a8
13286Author: Eric S. Raymond <esr@thyrsus.com>
13287Date:   Sun Jan 14 10:48:00 2007 -0800
13288
13289    Bug #9658: Bad markup on XIfEvent.3x
13290    
13291    X.Org Bugzilla #9658 <https://bugs.freedesktop.org/show_bug.cgi?id=9658>
13292
13293commit 74cba78daa738ef4d92096107d95c1a585933666
13294Author: Eric S. Raymond <esr@thyrsus.com>
13295Date:   Sun Jan 14 10:43:00 2007 -0800
13296
13297    Bug #9655: Bad markup in XrmUniqueQuark.3x
13298    
13299    X.Org Bugzilla #9655 <https://bugs.freedesktop.org/show_bug.cgi?id=9655>
13300
13301commit 4341d1a34b2a2e460b58131b6fd81935f3355bbc
13302Author: Eric S. Raymond <esr@thyrsus.com>
13303Date:   Sun Jan 14 10:43:00 2007 -0800
13304
13305    Bug #9654: Bad markup in XrmGetFileDatabase.3x
13306    
13307    X.Org Bugzilla #9654 <https://bugs.freedesktop.org/show_bug.cgi?id=9654>
13308
13309commit 2db713252090cae08f0200fecad4fc25fb64c8b1
13310Author: Eric S. Raymond <esr@thyrsus.com>
13311Date:   Sun Jan 14 10:40:00 2007 -0800
13312
13313    Bug #9653: Bad markup in XQueryColor.3x
13314    
13315    X.Org Bugzilla #9653 <https://bugs.freedesktop.org/show_bug.cgi?id=9653>
13316
13317commit 9d3ceea4b902e0471824c1e07ad64342b9a1114e
13318Author: Eric S. Raymond <esr@thyrsus.com>
13319Date:   Sun Jan 14 10:40:00 2007 -0800
13320
13321    Bug #9652: Bad markup in XDrawArc.3x
13322    
13323    X.Org Bugzilla #9652 <https://bugs.freedesktop.org/show_bug.cgi?id=9652>
13324
13325commit 2e7e0748d353d7f53bbd65ec6bf0df8758528ddc
13326Author: Eric S. Raymond <esr@thyrsus.com>
13327Date:   Sun Jan 14 10:39:00 2007 -0800
13328
13329    Bug #9651: Bad markup in XcmsColor.3x
13330    
13331    X.Org Bugzilla #9651 <https://bugs.freedesktop.org/show_bug.cgi?id=9651>
13332
13333commit c316aaf0aab06951db9dc5c9c1148bfea835d885
13334Author: Eric S. Raymond <esr@thyrsus.com>
13335Date:   Sun Jan 14 10:38:00 2007 -0800
13336
13337    Bug #9650: Bad markup in XLoadFont.3x manual page
13338    
13339    X.Org Bugzilla #9650 <https://bugs.freedesktop.org/show_bug.cgi?id=9650>
13340
13341commit ca5d9a625ea0965853fa9e74a448b8c29c78ec95
13342Author: Eric S. Raymond <esr@thyrsus.com>
13343Date:   Tue Jan 2 10:18:00 2007 -0800
13344
13345    Bug 9523: Markup problems in XQueryExtension.3x
13346    
13347    X.Org Bugzilla #9523 <https://bugs.freedesktop.org/show_bug.cgi?id=9523>
13348
13349commit fe713c616e29ba19c179b43c18eca1035079ce18
13350Author: Ian Romanick <idr@us.ibm.com>
13351Date:   Tue Aug 21 14:56:33 2007 -0700
13352
13353    Make sure nls/am_ET.UTF-8/Makefile is created by configure.
13354
13355commit e3430616f26b68e1439143cbe10732f3fc329d20
13356Author: Eric S. Raymond <esr@thyrsus.com>
13357Date:   Tue Jan 2 08:40:00 2007 -0800
13358
13359    Bug #9516: Markup error in XAllocWMHints.3x
13360    
13361    X.Org Bugzilla #9516 <https://bugs.freedesktop.org/show_bug.cgi?id=9516>
13362
13363commit d8fe979fc929833e8c754aed32641786d5a0622b
13364Merge: 21ca9533 4ec1723f
13365Author: James Cloos <cloos@jhcloos.com>
13366Date:   Mon Aug 20 15:34:50 2007 -0400
13367
13368    Merge branch 'master' of ssh://git.freedesktop.org/git/xorg/lib/libX11
13369
13370commit 21ca953337fb221b85345bf35ce1a98a0dcb2bf2
13371Author: James Cloos <cloos@jhcloos.com>
13372Date:   Mon Aug 20 15:34:03 2007 -0400
13373
13374    Fix typo
13375    The code <U1000000D> was used where <U10000DC> was obviously intended.
13376    
13377    It is possible that <Udiaeresis> should be used instead, if that will
13378    not break anyone’s setup.
13379
13380commit 4ec1723fff729440cd3349c1f95d87d2a6ba89cf
13381Author: James Cloos <cloos@jhcloos.com>
13382Date:   Mon Aug 20 15:25:48 2007 -0400
13383
13384    Add compose file for Ethiopic to match new keyboard in xkeyboard-config
13385    From bug report:
13386    
13387      https://bugs.freedesktop.org/show_bug.cgi?id=11307
13388
13389commit eff33ae525337ce2026be135a26464c7b1237113
13390Author: James Cloos <cloos@jhcloos.com>
13391Date:   Sat Aug 18 17:58:23 2007 -0400
13392
13393    Patch for Catalan locales
13394    From bugzilla bug 10943¹:
13395    
13396      There are several Catalan locale codes which presently can
13397      be used in X11 systems; especially after they were accepted
13398      in belocs-locale-data².
13399    
13400      In the following patches, I³ add ca_AD, ca_FR and ca_IT Catalan
13401      locale codes.  For instance, without this, using ca_AD (actually
13402      a quite used locale⁴) some applications (eg. Emacs or Skype)
13403      cannot display Catalan diacritic marks as you type them.
13404    
13405    1] https://bugs.freedesktop.org/show_bug.cgi?id=10943
13406    2] http://lists.debian.org/debian-devel-changes/2005/07/msg01429.html
13407    3] Toni Hermoso Pulido <toniher@softcatala.org>
13408    4] https://launchpad.net/~ubuntu.cat/+members
13409
13410commit 1f980cb7d022f53d0aee9e793b08203fb888e86e
13411Author: James Cloos <cloos@jhcloos.com>
13412Date:   Sat Aug 18 17:47:04 2007 -0400
13413
13414    Add additional Euro signs to compose
13415    Inspired by bug 7419¹ make all of:
13416    
13417        C=, =C, c=, =c, E=, =E, e=, E=
13418    
13419    after <Multi_key> generate € U+20AC EURO SIGN.
13420    
13421    1] https://bugs.freedesktop.org/show_bug.cgi?id=7419
13422
13423commit 4b0a14521449dfce8b4347bd17243efd1d3eae2d
13424Author: James Cloos <cloos@jhcloos.com>
13425Date:   Sat Aug 18 17:29:08 2007 -0400
13426
13427    Compose fix for Latin-1 (from Debian)
13428    The description from bugzilla bug 7417¹ is:
13429    
13430      We've been shipping this patch for some time in Debian now. The
13431      problem description from the patch header is reproduced below. You
13432      may want to note the licensing issue mentioned below, but we've been
13433      shipping it because the method by which this particular patch was
13434      generated and updated was also given below.
13435    
13436      This patch by Denis Barbier.
13437    
13438      The X11 protocol states that Unicode keysyms are in the range
13439      0x01000100 - 0x0110FFFF.  If the result of composing characters is a
13440      Unicode codepoint, X returns the corresponding Unicode keysym, which
13441      is its Unicode codepoint augmented by 0x01000000.  Latin-1
13442      characters must not appear with their Unicode codepoints in compose
13443      files, otherwise the returned composed character lies in the range
13444      0x01000000 - 0x010000FF which is not valid.
13445    
13446      There are two solutions: either fix composing routines to return
13447      0xZZ instead of 0x010000ZZ (where Z is an hexadecimal digit), or
13448      replace U00ZZ by their corresponding keysyms in compose files.  The
13449      latter is more logical and less error prone, so compose files will
13450      be patched.  Many applications accept these invalid Unicode keysyms,
13451      but few of them don't, most notably xemacs.  Only UTF-8 locales are
13452      affected.
13453    
13454      This has been fixed very recently in XFree86 CVS (but not xorg), but
13455      for licensing reasons, this patch is not grabbed.  Instead automatic
13456      conversion is performed by:
13457    
13458        sed -e '/XK_LATIN1/,/XK_LATIN1/!d' /usr/include/X11/keysymdef.h \
13459        | grep -v deprecated | grep 0x0 \
13460        | sed -e 's/0x0/U0/' -e 's/XK_//' \
13461        | awk '{ printf "s/\\b%s\\b/%s/ig\n", $3, $2; }' > sedfile
13462        for f in nls/*.UTF-8/Compose.pre
13463        do
13464          sed -f sedfile $f > $f.tmp && mv $f.tmp $f
13465        done
13466    
13467    [I edited the quoted script to update it for the current location of
13468    the installed keysymdef.h and the current layout of the libX11
13469    repo. -JimC]
13470    
13471    I applied the script, not the patch attached to the bugreport.
13472    
13473    1] https://bugs.freedesktop.org/show_bug.cgi?id=7417
13474
13475commit 5cf5bc76642bfece7cb5b76faf414bf445f14489
13476Author: James Cloos <cloos@jhcloos.com>
13477Date:   Sat Aug 18 17:13:41 2007 -0400
13478
13479    Add some compose sequences
13480    
13481    Add some compose sequences from the patch in bug 5371 (attachment 4122).
13482    
13483    Cf:
13484    
13485    https://bugs.freedesktop.org/show_bug.cgi?id=5371
13486    https://bugs.freedesktop.org/attachment.cgi?id=4122
13487
13488commit d4002e389dd69780dfc7c2f7bd3cb0c57f05d4f8
13489Author: James Cloos <cloos@jhcloos.com>
13490Date:   Sat Aug 18 13:57:31 2007 -0400
13491
13492    Fix SMP Compose targets
13493    The compose targets from the SMP (plane 1) were incorrect.
13494    
13495    At some point the 0x10000 bit had been lost.
13496
13497commit f1ed3da9a30a1f0264fdc7d1c6466f27fe2a3d7d
13498Author: Jeremy C. Reed <reed@glacier.reedmedia.net>
13499Date:   Thu Aug 16 17:37:22 2007 -0500
13500
13501    Fix a mutex reference-counting bug.
13502    
13503    I was told that some systems have a much more permissive libpthread.
13504    I was asked to commit this. This is from NetBSD's X source.
13505    (I didn't receive any feedback on xorg list for over two weeks
13506    about this.)
13507
13508commit ac00a44b4875de70382da5a40dd87f976e5b9327
13509Author: Tilman Sauerbeck <tilman@code-monkey.de>
13510Date:   Wed Aug 1 20:36:03 2007 +0200
13511
13512    Bumped version to 1.1.3.
13513
13514commit 76fae9cba1e9bdf7f0eb2ff2b90153d622136cf0
13515Author: Joerg Sonnenberger <joerg@netbsd.org>
13516Date:   Fri Jul 27 11:15:47 2007 -0700
13517
13518    Fail properly on errors in recursive make.
13519
13520commit 1a18319b3bde08dd9ef69c7cd735a76000cf3177
13521Author: Brice Goglin <Brice.Goglin@ens-lyon.org>
13522Date:   Thu Jul 26 23:31:15 2007 +0200
13523
13524    Add missing override parameter in XrmCombineDatabase prototype in the manpage
13525    
13526    Reported by Arnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
13527    in http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=393434
13528    and https://bugs.freedesktop.org/show_bug.cgi?id=9948
13529    
13530    Also add the type of the second argument in XrmMergeDatabases.
13531
13532commit 6f0764d4b56f64786b4980839ca262f10a51af6f
13533Author: Brice Goglin <Brice.Goglin@ens-lyon.org>
13534Date:   Thu Jul 26 22:53:52 2007 +0200
13535
13536    Clarify return value of XGetCommand in case of error in the manpage
13537    
13538    Reported by Sean Perry <shalehperry@attbi.com>
13539    in http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=133348
13540    and https://bugs.freedesktop.org/show_bug.cgi?id=9828
13541
13542commit b8bef57342632cc2d25580bb7daa3839bae04d89
13543Author: Alan Coopersmith <alan.coopersmith@sun.com>
13544Date:   Wed Jul 25 17:44:06 2007 -0700
13545
13546    Include comment/copyright/license for AC_DEFINE_DIR in acinclude.m4
13547
13548commit 590cde811a79375231c59ed8583e02b111ed567c
13549Author: Kean Johnston <kean@armory.com>
13550Date:   Thu Jul 19 16:44:20 2007 -0700
13551
13552    Reset hostname when falling back from :0 to hostname/localhost:0 as well
13553
13554commit d334665e619e9db657a2ea2764a8b852401d4a3f
13555Author: Kean Johnston <kean@armory.com>
13556Date:   Tue Jul 17 16:34:30 2007 -0700
13557
13558    LOCALCONN fallback changes DisplayString() output, breaks KDE
13559    
13560    See <http://lists.freedesktop.org/archives/xorg/2007-July/026443.html>
13561
13562commit 8e76bcf3cafda85058ce5f35f1f81929f4772f72
13563Author: Olivier Blin <blino@mandriva.org>
13564Date:   Mon Jun 11 18:32:09 2007 +1000
13565
13566    fix XGetMotionEvents arguments order - Fixes bug 11222
13567
13568commit c2f88cdf5cd9c94b77e5bfdac572b5ac06ab4aa8
13569Author: Jamey Sharp <jamey@minilop.net>
13570Date:   Sun Jun 10 16:19:59 2007 -0700
13571
13572    Fix locking in _XimGetWindowEventmask.
13573    
13574    Now that XFilterEvent drops the Display lock before invoking callback
13575    functions, _XimGetWindowEventmask is called without the lock held. So
13576    when it called _XGetWindowAttributes, a variant of XGetWindowAttributes
13577    that does not lock the Display, Xlib/XCB would assert:
13578    
13579    xcb_xlib.c:50: xcb_xlib_unlock: Assertion `c->xlib.lock' failed.
13580    
13581    Should fix Gentoo #156367, Ubuntu #87947, Debian #427296. And others?
13582
13583commit 65f0ab5d46d80d55fc04d4eb14fa05f130eb8b9c
13584Author: Jamey Sharp <jamey@minilop.net>
13585Date:   Sun Jun 3 21:41:47 2007 -0700
13586
13587    Move security fixes to the top of NEWS, and fix spacing.
13588    
13589    Commit by Josh Triplett and Jamey Sharp.
13590
13591commit a549a258b8fcb1ba9d0c1b01b72967e385f67cab
13592Author: Jamey Sharp <jamey@minilop.net>
13593Date:   Sun Jun 3 21:29:40 2007 -0700
13594
13595    Add NEWS item for bugfix in commit e2c1d788d1fe7bd2d34756493951552441e59b8c.
13596    
13597    Commit by Josh Triplett and Jamey Sharp
13598
13599commit 5123b77a3d32d3ad479462f319762c328278aed9
13600Author: Jamey Sharp <jamey@minilop.net>
13601Date:   Sun Jun 3 21:24:54 2007 -0700
13602
13603    Xlib/XCB: Inline and simplify handle_event, since only process_responses calls it now.
13604    
13605    Commit by Josh Triplett and Jamey Sharp.
13606
13607commit 582ca690ea4f3ffd2b94826c4db97229bd3c7238
13608Author: Jamey Sharp <jamey@minilop.net>
13609Date:   Sun Jun 3 20:59:12 2007 -0700
13610
13611    Xlib/XCB: Fix _XReadEvents to always enqueue a new event, even if an error occurs
13612    
13613    Commit c337f9de7cfd89f983f83956b7457a274dd412f3 broke the invariant that
13614    _XReadEvents always enqueues at least one event even if an error occurred,
13615    because the one call to xcb_wait_for_event would then return an error, not an
13616    event, and nothing else ensured that process_responses would obtain an event.
13617    Fix this by reverting most of c337f9de7cfd89f983f83956b7457a274dd412f3 and
13618    f417570735aac865eb6b576d1ea76b5bfcd8573b and implementing the correct fix.  In
13619    process_responses, wait_for_first_event now serves as a flag, cleared when
13620    actually handling an event.
13621    
13622    Commit by Josh Triplett and Jamey Sharp.
13623
13624commit e2c1d788d1fe7bd2d34756493951552441e59b8c
13625Author: Jamey Sharp <jamey@minilop.net>
13626Date:   Sun Jun 3 17:33:23 2007 -0700
13627
13628    Xlib/XCB: Only remove pending_requests when there are provably no more responses.
13629
13630commit 7a6dbd4b07ca0a49c30ca7a1d2437eafb2e15eab
13631Author: Josh Triplett <josh@freedesktop.org>
13632Date:   Sun Jun 3 15:39:39 2007 -0700
13633
13634    Bump version number to 1.1.2, and add NEWS entry for 1.1.2
13635    
13636    Signed-off-by: Josh Triplett <josh@freedesktop.org>
13637
13638commit 416f38f2e67ee1979b3d2feac6f06b3670238804
13639Author: Josh Triplett <josh@freedesktop.org>
13640Date:   Sun Jun 3 12:13:44 2007 -0700
13641
13642    Revert "Revert "include: don't distribute XlibConf.h""
13643    
13644    This reverts commit 79fa3d8070d95b960ba486f2439225872471dadd.
13645    
13646    Re-revert the XlibConf.h change, which prevented distribution, not
13647    installation.
13648
13649commit 79fa3d8070d95b960ba486f2439225872471dadd
13650Author: Josh Triplett <josh@freedesktop.org>
13651Date:   Sat Jun 2 22:05:16 2007 -0700
13652
13653    Revert "include: don't distribute XlibConf.h"
13654    
13655    This reverts commit c9e28e05ae01ce8a29bea09df759b6271865b44c.
13656    
13657    The installed XlibInt.h includes XlibConf.h , so libX11 should ship
13658    XlibConf.h.  (Commit c9e28e05ae01ce8a29bea09df759b6271865b44c didn't actually
13659    prevent automake from shipping XlibConf.h, because it used
13660    nodist_x11include_HEADERS rather than nodist_HEADERS.)
13661
13662commit f417570735aac865eb6b576d1ea76b5bfcd8573b
13663Author: Jamey Sharp <jamey@minilop.net>
13664Date:   Sat Jun 2 17:59:15 2007 -0700
13665
13666    Xlib/XCB: inline wait_or_poll_for_event, which now had only one caller.
13667    
13668    Commit by Josh Triplett and Jamey Sharp.
13669
13670commit c337f9de7cfd89f983f83956b7457a274dd412f3
13671Author: Jamey Sharp <jamey@minilop.net>
13672Date:   Sat Jun 2 17:46:41 2007 -0700
13673
13674    Xlib/XCB: Ensure _XReadEvents reads at least one new event and blocks for exactly one event.
13675    
13676    Commit by Jamey Sharp and Josh Triplett.
13677
13678commit 7f66c897f04806b75e574b55b48921b48045e3f9
13679Author: Jamey Sharp <jamey@minilop.net>
13680Date:   Sat Jun 2 16:43:39 2007 -0700
13681
13682    Update _XReply's copy of _XCBUnlockDisplay's guts.
13683    
13684    We introduced this bug in 6b81cbbedfb521ce046b77ee3cc54e884a1dc0c5.
13685    
13686    Also add a comment in _XCBUnlockDisplay to discourage this problem from
13687    respawning.
13688    
13689    Commit by Josh Triplett and Jamey Sharp.
13690
13691commit 740ead23512f8d2eaafaa69e514f1ebafad475b9
13692Author: Jamey Sharp <jamey@minilop.net>
13693Date:   Sat Jun 2 16:01:01 2007 -0700
13694
13695    Xlib/XCB: Avoid re-crashing after _XIOError.
13696    
13697    Commit by Josh Triplett and Jamey Sharp.
13698
13699commit 6b81cbbedfb521ce046b77ee3cc54e884a1dc0c5
13700Author: Jamey Sharp <jamey@minilop.net>
13701Date:   Sat Jun 2 12:30:30 2007 -0700
13702
13703    Hold XCB's Xlib lock even when only the user lock (XLockDisplay) is held.
13704    
13705    An Xlib client can query Display state, such as with NextRequest, while
13706    it holds only the Xlib user lock (between XLockDisplay and
13707    XUnlockDisplay), so XCB requests in other threads should be blocked when
13708    the Xlib user lock is held.
13709    
13710    We acquire the lock even when XInitThreads was not called, so that pure
13711    XCB code can use multiple threads even in an otherwise single-threaded
13712    Xlib application.
13713    
13714    Commit by Josh Triplett and Jamey Sharp.
13715
13716commit 95523387d619af5b400748898d722e080b5ce1a6
13717Author: Jamey Sharp <jamey@minilop.net>
13718Date:   Sat Jun 2 11:57:39 2007 -0700
13719
13720    Allow re-entrant Xlib calls from _XIOError.
13721    
13722    Some libraries try to clean up X resources from atexit handlers, _fini,
13723    or C++ destructors. To make these work, the Display lock should be
13724    downgraded to a user lock (as in XLockDisplay) before calling exit(3).
13725    This blocks Xlib calls from threads other than the one calling exit(3)
13726    while still allowing the exit handlers to call Xlib.
13727    
13728    This assumes that the thread calling exit will call any atexit handlers.
13729    If this does not hold, then an alternate solution would involve
13730    registering an atexit handler to take over the lock, which would only
13731    assume that the same thread calls all the atexit handlers.
13732    
13733    Commit by Josh Triplett and Jamey Sharp.
13734
13735commit 91b02b8064f4e0bcc56019f0722914850008a597
13736Author: Tilman Sauerbeck <tilman@code-monkey.de>
13737Date:   Thu May 17 19:07:34 2007 +0200
13738
13739    More constification.
13740
13741commit a4f3841940158351f9424c3f59b305cce877177d
13742Author: Tilman Sauerbeck <tilman@code-monkey.de>
13743Date:   Thu May 17 00:29:43 2007 +0200
13744
13745    Constified composite text charset table.
13746
13747commit 0581c0aa6039e6b2abb9f7b0a4f9904d8e01f00e
13748Author: Tilman Sauerbeck <tilman@code-monkey.de>
13749Date:   Wed May 16 23:19:22 2007 +0200
13750
13751    Have the compiler fill in hexTable so we don't have to do it at runtime.
13752
13753commit 0e8d9ca47dab0d069e305d5784d05f2ade04f0a8
13754Author: Tilman Sauerbeck <tilman@code-monkey.de>
13755Date:   Wed May 16 19:36:23 2007 +0200
13756
13757    More constification.
13758
13759commit 6d2bed8f04942b4de086a519ac693e729c9fdeea
13760Author: Tilman Sauerbeck <tilman@code-monkey.de>
13761Date:   Wed May 16 19:18:20 2007 +0200
13762
13763    Constify and clean up token table.
13764
13765commit 6c508eab5df5d517f7e4cbe6087308cd53a564b2
13766Author: Tilman Sauerbeck <tilman@code-monkey.de>
13767Date:   Wed May 16 18:24:42 2007 +0200
13768
13769    Constified more tables.
13770
13771commit e699c4231c205ef00d687b6412308d031b99806b
13772Author: Tilman Sauerbeck <tilman@code-monkey.de>
13773Date:   Wed May 16 18:01:23 2007 +0200
13774
13775    Constified error list.
13776
13777commit a68a1cd7cb990ba276fbc36a7591044d78b3d3c1
13778Author: Peter Hutterer <peter@cs.unisa.edu.au>
13779Date:   Tue May 15 16:54:01 2007 +0930
13780
13781    Add XGenericEvent definition and handling for long events.
13782
13783commit c76d30253f1483ac8200ad5c032a818907e65030
13784Author: Jan Willem Stumpel <jstumpel@planet.nl>
13785Date:   Fri May 4 12:00:49 2007 -0700
13786
13787    Update el_GR.UTF-8/Compose.pre to match changes in xkeyboard-config cvs
13788    
13789    Cf:
13790    
13791      https://bugs.freedesktop.org/show_bug.cgi?id=10851
13792      https://bugs.freedesktop.org/show_bug.cgi?id=10824
13793      http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=386385
13794    
13795    The greek keyboard definition was changed to replace dead_horn and
13796    dead_ogonek with U0313 COMBINING COMMA ABOVE (aka Psili) and U0314
13797    COMBINING REVERSED COMMA ABOVE (aka Dasia).
13798    
13799    This patch modifies the Greek Compose.pre to match.
13800    
13801    It is generated by the script Jan Willem Stumpel <jstumpel@planet.nl>
13802    posted to 386385@bugs.debian.org:
13803    
13804    #!/usr/bin/perl
13805    while (<>) {
13806      print $_;
13807      if (/dead_horn/) {
13808        s/dead_horn/U0313/;
13809        print $_;
13810      }
13811      elsif (/dead_ogonek/) {
13812        s/dead_ogonek/U0314/;
13813        print $_;
13814      }
13815    }
13816
13817commit a48386ce6b5f8fd2d9dc11a966c9bf5da59f3831
13818Author: Magnus Kessler <Magnus.Kessler@gmx.net>
13819Date:   Tue May 1 15:20:08 2007 +0200
13820
13821    Switched function definitions from K&R to ANSI style.
13822
13823commit 605d357074d556a05a3fba2e85cbea36a3204248
13824Author: Tilman Sauerbeck <tilman@code-monkey.de>
13825Date:   Tue May 1 14:47:03 2007 +0200
13826
13827    Tweaked configure output about the man pages suffix.
13828
13829commit 9824b40d2af4ca2376512c1be7743da0d5065900
13830Author: Alan Coopersmith <alan.coopersmith@sun.com>
13831Date:   Sat Apr 28 00:42:18 2007 -0700
13832
13833    Fix typo in nroff macro in XkbAddGeomOverlayKey.man
13834
13835commit f93849dcc68bd5042ea0884e5190dc7c35b31d68
13836Author: Alan Coopersmith <alan.coopersmith@sun.com>
13837Date:   Sat Apr 28 00:30:55 2007 -0700
13838
13839    Protect C comments and #defines in XKB man pages from being mangled by cpp
13840
13841commit f2f27d4763c7665e422fab10b96b4cf5ad6c0a6f
13842Author: Alan Coopersmith <alan.coopersmith@sun.com>
13843Date:   Sat Apr 28 00:14:50 2007 -0700
13844
13845    Add Makefile to process/install XKB man pages
13846
13847commit d9954c6f6f3a8c406b946acd0d034ff83c656156
13848Author: Dennis Arellano <Dennis.Arellano@Sun.COM>
13849Date:   Thu Aug 19 00:00:00 1999 -0700
13850
13851    Add man pages for XKB API's
13852    
13853    Man pages originally written for X11R6.4 integration to Solaris 7 11/99
13854    Sun bug id 4258344: Add new XKB API manpages for 6.4 upgrade
13855    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=4258344>
13856    
13857    (Volunteer needed to convert prototypes in man pages to ANSI C style...)
13858
13859commit f640a49b5e2ebf29f9d655df544c63bf826f619a
13860Author: Tilman Sauerbeck <tilman@code-monkey.de>
13861Date:   Fri Apr 20 18:39:59 2007 +0200
13862
13863    Markup tweak for XOpenIM.
13864
13865commit e972b0bb255af4f3258217852542faf5afa60b28
13866Author: Julien Cristau <jcristau@debian.org>
13867Date:   Fri Apr 20 18:35:09 2007 +0200
13868
13869    Bug #9695: Fixed a few argument types in the XOpenIM manpage.
13870
13871commit b4e2276f329fa42397cb8609cfcd34ebafd3d96b
13872Author: Julien Cristau <jcristau@debian.org>
13873Date:   Fri Apr 20 18:28:52 2007 +0200
13874
13875    Bug #9697: Fixed documentation of XVisualInfo struct.
13876    
13877    The "depth" member was said to be unsigned int, but it's signed.
13878
13879commit 4068f3dae01c630f825002673b1d3a047ad61863
13880Author: Julien Cristau <jcristau@debian.org>
13881Date:   Fri Apr 20 16:41:21 2007 +0200
13882
13883    Bug #9696: refer to XDefineCursor() instead of XDefineCusor().
13884
13885commit 603c2f88d4e57ce1a3c16e8b6246866e6edd8fa8
13886Author: Tilman Sauerbeck <tilman@code-monkey.de>
13887Date:   Sat Apr 7 14:42:55 2007 +0200
13888
13889    Use unistd.h to get getresuid() and friends.
13890    
13891    This works since we now have _GNU_SOURCE defined.
13892
13893commit 0300f295bbd3a0c7c46baac8e0a27aeaf53c9d9b
13894Author: Tilman Sauerbeck <tilman@code-monkey.de>
13895Date:   Sat Apr 7 14:27:12 2007 +0200
13896
13897    Bug #10562: Define _GNU_SOURCE on glibc systems.
13898
13899commit a225a0be48770beb689d5ac5da97073634f7deab
13900Author: Tilman Sauerbeck <tilman@code-monkey.de>
13901Date:   Fri Apr 6 12:46:25 2007 +0200
13902
13903    For nls/*.pre, allow people to comment lines by starting them with '##'.
13904    
13905    This fixes a bunch of cpp warnings from nls/en_US.UTF-8/Compose.pre.
13906    Fixing that file would have been a larger diff, and using ## may be
13907    nicer to use anyway.
13908
13909commit 1c75a9479011e5f1ad01c950628d0ef5a302d8b6
13910Author: Tilman Sauerbeck <tilman@code-monkey.de>
13911Date:   Fri Apr 6 11:59:31 2007 +0200
13912
13913    Bug #10475: Fixed lots of char*/const char* mixups.
13914    
13915    I didn't fix all of them, as that would require touching
13916    public headers.
13917
13918commit 680dd50193b5b3fcabdd3f1fcbd6a889d5a95c54
13919Author: Matthias Hopf <mhopf@suse.de>
13920Date:   Thu Apr 5 11:53:18 2007 +0200
13921
13922    Fix 64bit issues with reallocation.
13923
13924commit 4d38aeaca42d0bdfe34a833a142ee4d895de03bf
13925Author: Tilman Sauerbeck <tilman@code-monkey.de>
13926Date:   Wed Apr 4 18:41:18 2007 +0200
13927
13928    Fixed a few warnings.
13929
13930commit 7dc7ef398b6ad90ccd1680ed9cd1cfdd47312f5a
13931Author: Matthieu Herrb <matthieu@roadrock.(none)>
13932Date:   Tue Apr 3 15:39:52 2007 +0200
13933
13934    Multiple integer overflows in the XGetPixel() and XInitImage functions
13935    
13936    CVE-2007-1667
13937
13938commit 0284b144340a455a4b5b5011d81ac5a610372291
13939Author: David Baron <dbaron@dbaron.org>
13940Date:   Fri Mar 30 17:07:46 2007 +0200
13941
13942    Bug #7703: Fixed XSetSizeHints() et al wrt use of uninitialized data.
13943    
13944    Now only those fields of the respective hint struct are set that
13945    are actually valid in the input data.
13946    The changed functions are:
13947    XSetSizeHints(), XSetWMHints() and XSetWMSizeHints().
13948
13949commit 0994faa0c76c45b106442db461b8a30a3e1c9395
13950Author: Tilman Sauerbeck <tilman@code-monkey.de>
13951Date:   Thu Mar 29 17:31:25 2007 +0200
13952
13953    Fixed the change from the previous SendEvent commit.
13954    
13955    Testing a different patch than the one you commit is bad, right?
13956
13957commit 398d75528a84f4b8414eb0e363cf53b1b16f6fdf
13958Author: Tilman Sauerbeck <tilman@code-monkey.de>
13959Date:   Wed Mar 28 22:23:44 2007 +0200
13960
13961    Bug #10292: Fixed a memory leak related to XOpenDisplay() in the XCB code.
13962
13963commit ab0bcd07957cecc8e7c0e75d5160a625e91264fe
13964Author: David Baron <dbaron@dbaron.org>
13965Date:   Wed Mar 28 22:21:40 2007 +0200
13966
13967    Bug #7713: Initialize all of the event's fields before sending it.
13968
13969commit bc80f9fe3ccce40ee41246b97470c4f0519756ad
13970Author: Julien Cristau <jcristau@debian.org>
13971Date:   Sun Mar 18 13:14:48 2007 +0100
13972
13973    Bug #9279: Fixed a file descriptor leak.
13974
13975commit c9e28e05ae01ce8a29bea09df759b6271865b44c
13976Author: Daniel Stone <daniel@fooishbar.org>
13977Date:   Sat Dec 16 00:45:19 2006 +0200
13978
13979    include: don't distribute XlibConf.h
13980    
13981    Since XlibConf.h is built by configure, don't distribute it.
13982
13983commit dd1705ced2cac6b4b6b21e79272fcf9bed4bf376
13984Merge: 129bbb9f 769b9854
13985Author: Jeremy C. Reed <reed@glacier.reedmedia.net>
13986Date:   Thu Dec 14 14:23:20 2006 -0600
13987
13988    Merge branch 'master' of git+ssh://git.freedesktop.org/git/xorg/lib/libX11
13989
13990commit 129bbb9f9114a571556fa3a24f15ba58a5cdb2de
13991Author: Jeremy C. Reed <reed@glacier.reedmedia.net>
13992Date:   Thu Dec 14 14:21:19 2006 -0600
13993
13994    For NetBSD, define the XTHREADLIB and XTHREAD_CFLAGS.
13995
13996commit 769b9854f7eb1d6d20dd0b4a1c1215ad8e1b77b6
13997Author: Daniel Stone <daniel@fooishbar.org>
13998Date:   Wed Dec 6 18:53:00 2006 +0200
13999
14000    Makefile.am: make ChangeLog hook safer
14001    
14002    Make ChangeLog hook as safe as possible.
14003    (cherry picked from f5d6a3d24095c7ffed86705995d0874c885e7676 commit)
14004
14005commit 8a8185a649e93b90ffa820387ffdca831227f5a9
14006Author: Josh Triplett <josh@freedesktop.org>
14007Date:   Thu Nov 30 18:33:13 2006 -0800
14008
14009    Add autogen.sh to EXTRA_DIST.
14010
14011commit efe817f95ef8d05e863c83147e903140bc860de4
14012Author: Jamey Sharp <jamey@minilop.net>
14013Date:   Thu Nov 30 17:58:35 2006 -0800
14014
14015    Release libX11 1.1.1.
14016
14017commit f637a5b03164263a3af2e644cf655e52b015f1bb
14018Author: Ross Combs <rocombs@cs.nmsu.edu>
14019Date:   Sat Nov 25 14:45:17 2006 -0800
14020
14021    Debian bug #354315: Clarify return value in XGetWindowAttributes man page
14022    
14023    This man page does not discuss the actual return values of the
14024    function, but says they are of type "Status".  One might assume
14025    that this means you could compare it with the "Success" macro.
14026    One would be wrong.
14027    
14028    The X functions seem to have two three types representing status.
14029    If it is an "int" there are a number of error codes or "Success"
14030    which can be compared against.  If it is a bool, the result can be
14031    compared with "True" or "False".  If the return type is "Status" it
14032    appears that the return type is either 0 or 1.  Unfortunately the
14033    value for Success is zero, so it is important to distinguish
14034    between the first two types of return values and the third;
14035    otherwise the conditional will be inverted.
14036    
14037    XGetWindowAttributes() is one of the functions which returns zero
14038    for failure.  The man page should make this clear.
14039
14040commit c6a0b0f18ed1242eeb908f5cf767ab8381edd456
14041Author: Jamey Sharp <jamey@minilop.net>
14042Date:   Sat Nov 25 14:23:45 2006 -0800
14043
14044    Bug #9154: Always process an event for _XReadEvents, even if an error occurs
14045    
14046    Previously, process_responses (in the wait_for_first_event case called
14047    from _XReadEvents) considered any return from xcb_wait_for_event
14048    sufficient to think it had processed an event. If xcb_wait_for_event
14049    returned an error, and no more events occurred before process_responses
14050    called xcb_poll_for_event, process_responses would try to return with
14051    dpy->head NULL, and would fail an assertion for the _XReadEvents
14052    postcondition. Now, process_responses continues using xcb_wait_for_event
14053    until it gets an event.
14054
14055commit d56e78acce9b2aa1dd1bf172afedaa3bccd5e1c8
14056Author: Tilman Sauerbeck <tilman@code-monkey.de>
14057Date:   Sat Nov 25 05:29:31 2006 -0800
14058
14059    Bug #9153: Fix access to freed memory.
14060    
14061    The fix for bug #8622 introduced a smaller bug where _XReply would
14062    read memory shortly after freeing it. This patch caches the needed
14063    value in a stack-allocated variable before the heap-allocated memory
14064    is freed.
14065
14066commit 934ca763bbc0dd7ae460469bfc000ba101602bcc
14067Author: Josh Triplett <josh@freedesktop.org>
14068Date:   Fri Nov 24 19:57:58 2006 -0800
14069
14070    libx11 doesn't use inputproto in public headers; don't require it in x11.pc
14071    
14072    Based on a Debian patch.
14073
14074commit 4255997ef2d92740d51f6e63e9eabcfa089683f0
14075Author: Josh Triplett <josh@freedesktop.org>
14076Date:   Thu Nov 23 07:19:32 2006 -0800
14077
14078    Release libX11 1.1
14079
14080commit a1168e11ec9377307c51a7271faec3bf88a63a66
14081Author: Jamey Sharp <jamey@minilop.net>
14082Date:   Tue Nov 21 17:52:34 2006 -0800
14083
14084    Add note in man-page that XListFontsWithInfo is not thread-safe.
14085    
14086    _XReply drops the Display lock, so the value of dpy->request may change
14087    before _XReply is called again.
14088    
14089    I discovered this by inspection a year or two ago. I'm pretty confident
14090    in the claim, and nobody has come up with an argument for why it's safe
14091    despite appearances.
14092
14093commit 67abe024268c6b1fdee516e5d3a046ccffd7e80a
14094Author: Jamey Sharp <jamey@minilop.net>
14095Date:   Sat Nov 18 15:39:26 2006 -0800
14096
14097    Bug #8622: Fix response processing order for threaded apps
14098    
14099    Previously, process_responses (the common code for _XReply,
14100    _XReadEvents, and _XEventsQueued) took the current request sequence
14101    number as an argument, and did some highly complicated processing to
14102    attempt to process responses in order across threads.  This didn't
14103    actually work.
14104    
14105    Now, process_responses handles responses in order, by adding condition
14106    variables to the list of outstanding requests in
14107    dpy->xcb->pending_requests, and blocking on them when those requests
14108    should get processed to allow _XReply to process them; if actually
14109    called from _XReply, it returns when _XReply's request should get
14110    processed.  _XReply broadcasts on the condition variable after it has
14111    read its reply and re-acquired the display lock.
14112    
14113    Another great commit brought to you by Jamey Sharp, Josh Triplett, the
14114    Gobby collaborative text editor, conspy, and ridiculous amounts of SSH
14115    forwarding.
14116    
14117    Signed-off-by: Josh Triplett <josh@freedesktop.org>
14118    Signed-off-by: Jamey Sharp <jamey@minilop.net>
14119
14120commit 941f02ede63baa46f93ed8abccebe76fb29c0789
14121Author: Lars Knoll <lars@trolltech.com>
14122Date:   Wed Nov 8 12:17:41 2006 -0800
14123
14124    Don't hold the display lock around callbacks to the application.
14125    
14126    This fixes an XCB locking assertion failure, particularly with emacs.
14127
14128commit e494ecaac1ec8a22bd9a85f800fca74d02e9d358
14129Author: Diego 'Flameeyes' Pettenò <flameeyes@gentoo.org>
14130Date:   Tue Nov 7 09:32:00 2006 -0800
14131
14132    Add xcb-xlib dependency to x11.pc when built against XCB.
14133
14134commit 2302008a3793eb4df8ede777d54fe06505c47eaf
14135Author: Eric Anholt <eric@anholt.net>
14136Date:   Mon Nov 6 17:11:42 2006 -0800
14137
14138    XCB: Allocate the right amount of memory for dpy->lock_fns.
14139    
14140    Fixes a crash I was experiencing on startup of anything using gdk.
14141
14142commit 5f860655be88108b03ccd97470a0814819254bf0
14143Author: Jamey Sharp <jamey@minilop.net>
14144Date:   Thu Nov 2 17:55:31 2006 -0800
14145
14146    Release libX11 1.1 RC2 (1.0.99.2).
14147
14148commit a6f4bbf7b1d725b0f04bd660f57b861a76b19831
14149Author: Benno Schulenberg <bensberg@justemail.net>
14150Date:   Sun Oct 29 03:10:30 2006 +0300
14151
14152    nls (en_US): remove long compositions that override shorter (bug #2286)
14153    Remove long compositions that override (or get overriden by) later shorter
14154    compositions, e.g. a four-key compose sequence that gets overriden by a
14155    later three-key compose sequence.
14156
14157commit 0280bf11ef88673a9b5bba3a91a599260f1f0949
14158Author: Benno Schulenberg <bensberg@justemail.net>
14159Date:   Sun Oct 29 03:08:36 2006 +0300
14160
14161    nls: remove shadowed compose entries (bug #2286)
14162    Remove compose entries shadowed by others later on.
14163
14164commit d118f2b1ef10997194b281524177dea7396da7dd
14165Author: Benno Schulenberg <bensberg@justemail.net>
14166Date:   Sun Oct 29 03:07:15 2006 +0300
14167
14168    nls: remove duplicate compose entries (bug #2286)
14169    Remove a bunch of duplicate entries from various Compose files.
14170
14171commit 5e1cc2fe20e5904ca1e05a4cb7be13d450a593bb
14172Author: Caolan McNamara <caolanm@redhat.com>
14173Date:   Sun Oct 29 02:46:15 2006 +0300
14174
14175    XKB geometry: fix leaks in GetKeyboardByName (bug #8099)
14176    Don't leak the name and value of every property we parse, as well as the
14177    name of every colour.
14178
14179commit 686bb8b35acf6cecae80fe89b2b5853f5816ce19
14180Author: Matthias Hopf <mhopf@suse.de>
14181Date:   Wed Oct 18 14:25:04 2006 +0200
14182
14183    Fix double open of compose file.
14184    
14185    Issue found by Kees Cook <kees@canonical.com>.
14186
14187commit d3e65cb8cddf08913d83c9df2bb9b1517f2ad3a8
14188Author: Jamey Sharp <jamey@minilop.net>
14189Date:   Sat Oct 14 21:25:10 2006 -0700
14190
14191    XCB: check for and handle I/O errors in _XGetXCBBuffer.
14192
14193commit 256eba6b40c5f811a03b04abf5f85f728ee3ab5d
14194Author: Jamey Sharp <jamey@minilop.net>
14195Date:   Wed Oct 11 00:06:50 2006 -0700
14196
14197    XKB bugfix: SyncHandle must be called after UnlockDisplay, not before.
14198
14199commit 1eedf1bd033e496843cfde42ae4ae5a119298605
14200Author: Jamey Sharp <jamey@minilop.net>
14201Date:   Tue Oct 10 23:03:28 2006 -0700
14202
14203    Add correct Display locking to XKB functions.
14204    
14205    Some XKB functions didn't correctly call LockDisplay or UnlockDisplay.
14206    This patch fixes at least some instances of that problem.
14207    
14208    Thanks to Magnus Kessler <Magnus.Kessler@gmx.net> for finding these bugs
14209    and proposing a fix, which this patch is based on.
14210
14211commit e17c2cbe9fbaa1600d4b9463ec800a874b0d87cd
14212Author: David Nusinow <dnusinow@debian.org>
14213Date:   Tue Oct 10 22:11:05 2006 -0400
14214
14215    Dynamically generate internal manpage section using __libmanpagesuffix__ so that it actually matches the section if you don't use 3X11
14216
14217commit e53557da969b706dbc843f6fde3db31ffe382e0f
14218Author: Jamey Sharp <jamey@minilop.net>
14219Date:   Sat Oct 7 21:00:36 2006 -0700
14220
14221    Release libX11 1.1 RC1 (1.0.99.1).
14222
14223commit bf237409c5fce32c557d298f62f44d456c2b5bc8
14224Merge: ba477191 2d426d1f
14225Author: Jamey Sharp <jamey@minilop.net>
14226Date:   Sat Oct 7 21:07:16 2006 -0700
14227
14228    As XCB support is about to be released in libX11, stable is now subsumed by master.
14229
14230commit ba477191c67ce93e61423cc1abe35275704cce50
14231Author: Jamey Sharp <jamey@minilop.net>
14232Date:   Sat Oct 7 03:48:13 2006 -0700
14233
14234    XCB: Don't rely on having the definition of struct xcb_setup_t available.
14235
14236commit 117b55cbd0b0ce51362df88363ed83d44a493ac7
14237Author: Jamey Sharp <jamey@minilop.net>
14238Date:   Fri Oct 6 16:27:31 2006 -0700
14239
14240    xcb_poll_for_event no longer takes an 'int *error' out-parameter.
14241
14242commit caaa8e8a55e837b3585c1dee7bef194fc4c79d16
14243Author: Josh Triplett <josh@freedesktop.org>
14244Date:   Fri Oct 6 16:26:11 2006 -0700
14245
14246    Actually ship Xxcbint.h
14247
14248commit 7b027e53b5e393082f4f515c8ba18077eb97163f
14249Author: Josh Triplett <josh@freedesktop.org>
14250Date:   Fri Oct 6 16:25:50 2006 -0700
14251
14252    Clean ChangeLog only in "make maintainer-clean", not "make clean"
14253    
14254    ChangeLog requires a git repo to generate; make clean and make distclean
14255    shouldn't get rid of it.
14256
14257commit cab22e02e78b3e5b8a73d1cd55cf6686426b47e0
14258Author: Josh Triplett <josh@freedesktop.org>
14259Date:   Fri Oct 6 16:24:58 2006 -0700
14260
14261    Add ChangeLog and "make dist"-generated files to .gitignore
14262
14263commit e4c7cfdee4a40e466c0c6b370cabd432e9e855a0
14264Author: Josh Triplett <josh@freedesktop.org>
14265Date:   Fri Oct 6 15:53:27 2006 -0700
14266
14267    Add manual pages for XGetXCBConnection and XSetEventQueueOwner
14268
14269commit 688224cea95e453f94c5a602dc6fce84bc93dfc0
14270Author: Josh Triplett <josh@freedesktop.org>
14271Date:   Fri Oct 6 13:41:16 2006 -0700
14272
14273    Remove unnecessary prototype for _XFreeDisplayStructure in xcb_disp.c
14274
14275commit ab728ca372288d0db1b486c265e34c1376f29104
14276Author: Josh Triplett <josh@freedesktop.org>
14277Date:   Fri Oct 6 12:36:39 2006 -0700
14278
14279    XCL is dead; long live Xlib/XCB
14280    
14281    Rename all instances of "XCL" to Xlib/XCB-derived names.
14282    
14283    The only user-visible change: rename the include file <X11/xcl.h> to
14284    <X11/Xlib-xcb.h>; programs will need to change their #include lines to match.
14285    
14286    Remove the XCL cast inlines from Xlib-xcb.h.
14287
14288commit 5b73093203039d307eb7ab3845c3ced207e9e26c
14289Author: Josh Triplett <josh@freedesktop.org>
14290Date:   Fri Oct 6 11:33:49 2006 -0700
14291
14292    Add XCB developers to AUTHORS
14293
14294commit 1cb71ff139276a0a58c60ea5f261f64b94706b9b
14295Author: Josh Triplett <josh@freedesktop.org>
14296Date:   Fri Oct 6 11:21:28 2006 -0700
14297
14298    Fix email addresses in README
14299
14300commit 12f038669278019594ca0ed53dadcf4e84092422
14301Author: Jamey Sharp <jamey@minilop.net>
14302Date:   Fri Oct 6 02:13:05 2006 -0700
14303
14304    XCB: Handle all responses in order of monotonically increasing sequence number.
14305
14306commit f392680273278b43079302206897f794e60f3c70
14307Author: Josh Triplett <josh@freedesktop.org>
14308Date:   Fri Oct 6 01:11:08 2006 -0700
14309
14310    Actually install x11-xcb.pc, and ship x11-xcb.pc.in
14311
14312commit f1fcad2e3fd17aaf1294f1d8e9f406fd5b32a863
14313Author: Jamey Sharp <jamey@minilop.net>
14314Date:   Thu Oct 5 18:32:29 2006 -0700
14315
14316    XCB: correctly handle failure to connect to X server.
14317
14318commit e754b3b078d556c7861da56aad47d244e9199e06
14319Author: Josh Triplett <josh@freedesktop.org>
14320Date:   Thu Oct 5 17:44:22 2006 -0700
14321
14322    Split public Xlib/XCB functions into libX11-xcb
14323    
14324    We can never change the libX11 soname, and we don't want to commit to never
14325    changing the public Xlib/XCB functions, so split them into a separate library
14326    libX11-xcb.  This also means that a program linked solely against libX11
14327    should work with either Xlib or Xlib/XCB, which will make life easier for
14328    package maintainers.
14329    
14330    Signed-off-by: Josh Triplett <josh@freedesktop.org>
14331    Acked-by: Jamey Sharp <jamey@minilop.net>
14332
14333commit ffd367f708b295abaedf3a23a1bfd4710d171d6f
14334Author: Jamey Sharp <jamey@minilop.net>
14335Date:   Wed Oct 4 17:16:46 2006 -0700
14336
14337    No longer #include Xmd from xcl.h: we do not need it.
14338
14339commit 3aff149d42ba8ed620091971b3766bdf96c62aaf
14340Author: Jamey Sharp <jamey@minilop.net>
14341Date:   Wed Oct 4 16:58:32 2006 -0700
14342
14343    XCB: Revert locking to simple wrapper around libX11's normal locks.
14344    
14345    No more recursive mutexes, no more banging XCB's I/O lock in-place, and
14346    reduces the differences between the previous stable release and an
14347    XCB-enabled one. Sadly, Xlib's pluggable thread functions work again
14348    too, now. I apologize to the world.
14349
14350commit 8ff122fb529bdb1c2b9a86b12d06b6da1b35d708
14351Author: Jamey Sharp <jamey@minilop.net>
14352Date:   Mon Sep 25 04:54:52 2006 -0700
14353
14354    Link explicitly against XCB's Xlib compatibility functions.
14355
14356commit bde3cd123d65a2f36ee0c417f5f231b7e01d0671
14357Author: Jamey Sharp <jamey@minilop.net>
14358Date:   Mon Sep 25 04:13:20 2006 -0700
14359
14360    libxcb now installs header files in <xcb>, not <X11/XCB>.
14361
14362commit 87d00207f5a1f25a45a153618739cd6481814f89
14363Author: Ian Osgood <iano@quirkster.com>
14364Date:   Sun Sep 24 23:39:01 2006 -0700
14365
14366    Track XCB's "Great Renaming".
14367
14368commit 85a5e98dff9b7752fae157fad9b8c9825cb0efab
14369Author: Jamey Sharp <jamey@minilop.net>
14370Date:   Tue Sep 12 23:02:42 2006 -0700
14371
14372    Quit using XCBGetQueuedRequestRead.
14373
14374commit a61936fc4e9bd93b108764bbacd5b8f786e51915
14375Author: Tollef Fog Heen <tfheen@err.no>
14376Date:   Wed Aug 30 00:05:54 2006 +0300
14377
14378    nls: use _XlcUtf8Loader for en_US (bug #7982)
14379    Use _XlcUtf8Loader instead of _XlcUnicodeLoade,r bringing it into line with
14380    every other locale.
14381
14382commit abcc7e1865cdfbd591f6520cfe4257f0b0b1c03e
14383Author: Alan Coopersmith <alan.coopersmith@sun.com>
14384Date:   Wed Aug 23 18:49:30 2006 -0700
14385
14386    When opening display, if LOCALCONN fails, fall back to UNIXCONN, then TCPCONN
14387    
14388    Port to X11R7 of Sun bug fix 4061225 by Alex Chen for X11R6 - when failing to
14389    connect on a named pipe, try a Unix socket first, to better support people who
14390    replace their X servers with ones that don't support named pipe transport.
14391    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=4061225>
14392
14393commit 1ddc44c1cada7e926bd4787406444ce7c36b61e1
14394Author: Mark Brown <mark.brown@sun.com>
14395Date:   Thu Jul 27 19:17:10 2006 -0700
14396
14397    Sun bug 1149809: Document event delivery when grab is terminated.
14398
14399commit 171107b03ac89d94f9006c7cda242aeefb9ecd16
14400Author: Dennis Arellano <Dennis.Arellano@Sun.COM>
14401Date:   Thu Jul 27 18:47:06 2006 -0700
14402
14403    Sun bug 4091271: XGetWindowProperty is missing a crucial prop_return description
14404    
14405    Document that 32-bit format properties are always returned in arrays of type
14406    long, even on systems where long is 64-bits.
14407    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=4091271>
14408
14409commit 8309efe6550877cd0bf22979904b3f6bd3e6cffa
14410Author: Alan Coopersmith <alan.coopersmith@sun.com>
14411Date:   Mon Jul 24 15:52:00 2006 -0700
14412
14413    Add support for "make lint" to check code with lint/sparse/etc.
14414
14415commit 931e02fbd1acd09aae2b0954c34342c86c72dff6
14416Author: Alan Coopersmith <alan.coopersmith@sun.com>
14417Date:   Mon Jul 24 15:50:52 2006 -0700
14418
14419    ANSIfy some static function definitions
14420
14421commit 20b7abcaac324d90454de63f32f4a2b398e69e63
14422Author: Alan Coopersmith <alan.coopersmith@sun.com>
14423Date:   Mon Jul 24 15:01:40 2006 -0700
14424
14425    Fix sparse warning: Using plain integer as NULL pointer
14426
14427commit d158ab29930513c4097f5b67e7bea08ed2bfd62c
14428Author: Alan Coopersmith <alan.coopersmith@sun.com>
14429Date:   Mon Jul 24 14:00:24 2006 -0700
14430
14431    Remove unused variable
14432
14433commit 30377000375bdb958042dcb1f38503c94ef21eaf
14434Author: Eric Anholt <anholt@FreeBSD.org>
14435Date:   Fri Jul 21 18:55:36 2006 -0400
14436
14437    Bug #7188: Fix the documentation of XUrgencyHint (not UrgencyHint).
14438
14439commit 4eba45879aea4e415ab550ee56b900d060099110
14440Author: Matthieu Herrb <matthieu.herrb@laas.fr>
14441Date:   Sun Jul 16 10:55:39 2006 +0200
14442
14443    set GIT_DIR=${srcdir}/.git for git-log
14444
14445commit 2d426d1f2608fedb77bd7d010dabece76b8d4a60
14446Author: Aaron Plattner <aplattner@nvidia.com>
14447Date:   Tue Jul 11 13:27:49 2006 -0700
14448
14449    Add a .PHONY to ensure the ChangeLog isn't stale.
14450    
14451    Setting the ChangeLog rule as phony forces it to be re-run even when the
14452    ChangeLog file already exists. Research indicates .PHONY is portable to BSD and
14453    Solaris make.
14454    (cherry picked from b8a98809ed81e1226775e6447ef219ffc01334b5 commit)
14455
14456commit b8a98809ed81e1226775e6447ef219ffc01334b5
14457Author: Aaron Plattner <aplattner@nvidia.com>
14458Date:   Tue Jul 11 13:27:49 2006 -0700
14459
14460    Add a .PHONY to ensure the ChangeLog isn't stale.
14461    
14462    Setting the ChangeLog rule as phony forces it to be re-run even when the
14463    ChangeLog file already exists. Research indicates .PHONY is portable to BSD and
14464    Solaris make.
14465
14466commit 8f2be66089b88e4ed6acb0211ea107f4bb910bd3
14467Author: Mayank Jain <majain@redhat.com>
14468Date:   Tue Jul 11 19:42:47 2006 +0100
14469
14470    add Indian language locales
14471    Add as, kn, ml, or, ur, and te locales.
14472
14473commit a92eb6785699bbc9c6c3813f6af3bb9431a3f6b0
14474Author: Matthias Hopf <mhopf@suse.de>
14475Date:   Tue Jul 4 12:16:30 2006 +0200
14476
14477    Fix for autoconf 2.60 issue.
14478    
14479    Updated AC_DEFINE_DIR.
14480    Reverted datarootdir change.
14481
14482commit 644f4828b15bce42b597eb123ba0bbc372c46c03
14483Author: Keith Packard <keithp@neko.keithp.com>
14484Date:   Sat Jul 1 21:31:23 2006 -0700
14485
14486    Work around recent autoconf (2.59?) changes in directory expansion.
14487    
14488    Recent autoconf versions have changed how directory names are managed in the
14489    configure.ac script; automatic 'eval' invocations now occur as a part of the
14490    AC_DEFINE_DIR macro which make it imperative that AC_DEFINE_DIR be executed
14491    before the variables are used in further macro definitions. Also, ${datadir}
14492    is apparantly an old name for ${datarootdir} as ${datadir} doesn't get
14493    expanded correctly by AC_DEFINE_DIR. This looks like an autoconf bug, but it
14494    is easy to work around by just using ${datarootdir} instead of ${datadir}.
14495
14496commit be70a31229aa106aff0a09d78c00812682cd3475
14497Author: Keith Packard <keithp@neko.keithp.com>
14498Date:   Sat Jul 1 01:56:05 2006 -0700
14499
14500    Xlib/XCB: handle 32-bit sequence wrap.
14501    
14502    Replace broken sequence compares with XCB_SEQUENCE_COMPARE (copied from
14503    XCB).
14504    Account for XCB sequence 0 handling.
14505
14506commit 99c711707ad08e1396e123b1c7df687c560a489a
14507Author: Donnie Berkholz <spyderous@gentoo.org>
14508Date:   Thu Jun 29 19:43:20 2006 -0700
14509
14510    Bump version to 1.0.3.
14511
14512commit cde3c0dd72af2b490e80cffca962e3487dd31be4
14513Author: Donnie Berkholz <spyderous@gentoo.org>
14514Date:   Thu Jun 29 19:39:36 2006 -0700
14515
14516    Bug #7349: Missed one of the setuid fixes.
14517    (cherry picked from e9614c963b532f46a7932c2305a4b177a996a222 commit)
14518
14519commit df3fef8983d96c59d481c4cdaf1f271d54a116d2
14520Author: Matthias Hopf <mhopf@suse.de>
14521Date:   Thu Jun 29 18:59:57 2006 +0200
14522
14523    Update to final Compose cache directory location.
14524    (cherry picked from abda4d223e9cce9ac6e7b5d82a5680d9a502e52a commit)
14525
14526commit 912ef198292d3053daa810f842510e5d62ded0f0
14527Author: Matthias Hopf <mhopf@suse.de>
14528Date:   Thu Jun 29 17:41:41 2006 +0200
14529
14530    Fix alignment of trees and wide chars in the cache.
14531    (cherry picked from 40a64c61f8bc33d497e1224e02c41dea2d424d97 commit)
14532
14533commit 2ece832118b3ee5d8ed19f1ee9b1c822b70ec6e9
14534Author: Matthias Hopf <mhopf@suse.de>
14535Date:   Wed Jun 28 19:17:03 2006 +0200
14536
14537    First (dummy) entry of compose caches was not initialized and thus contained varying garbage.
14538    (cherry picked from f442dcaa56f8ecb7443e8e51c88ed97e10dbdba3 commit)
14539
14540commit e9614c963b532f46a7932c2305a4b177a996a222
14541Author: Donnie Berkholz <spyderous@gentoo.org>
14542Date:   Thu Jun 29 19:39:36 2006 -0700
14543
14544    Bug #7349: Missed one of the setuid fixes.
14545
14546commit abda4d223e9cce9ac6e7b5d82a5680d9a502e52a
14547Author: Matthias Hopf <mhopf@suse.de>
14548Date:   Thu Jun 29 18:59:57 2006 +0200
14549
14550    Update to final Compose cache directory location.
14551
14552commit 40a64c61f8bc33d497e1224e02c41dea2d424d97
14553Author: Matthias Hopf <mhopf@suse.de>
14554Date:   Thu Jun 29 17:41:41 2006 +0200
14555
14556    Fix alignment of trees and wide chars in the cache.
14557
14558commit f442dcaa56f8ecb7443e8e51c88ed97e10dbdba3
14559Author: Matthias Hopf <mhopf@suse.de>
14560Date:   Wed Jun 28 19:17:03 2006 +0200
14561
14562    First (dummy) entry of compose caches was not initialized and thus contained varying garbage.
14563
14564commit bdbe464d774e01d317f67c63ebbda2fd0edbbdd1
14565Author: Donnie Berkholz <spyderous@gentoo.org>
14566Date:   Thu Jun 22 23:59:03 2006 -0700
14567
14568    Delete ChangeLog, and add a rule to autogenerate it for distribution. Also
14569    add 'foreign' to AM_INIT_AUTOMAKE to make autotools happy with not having a
14570    ChangeLog.
14571    (cherry picked from b0edfb8df16ab8c9959b83a4c966d55a59c4e295 commit)
14572
14573commit b0edfb8df16ab8c9959b83a4c966d55a59c4e295
14574Author: Donnie Berkholz <donnie@comet.(none)>
14575Date:   Thu Jun 22 23:47:38 2006 -0700
14576
14577    Delete ChangeLog, and add a rule to autogenerate it for distribution. Also
14578    add 'foreign' to AM_INIT_AUTOMAKE to make autotools happy with not having a
14579    ChangeLog.
14580
14581commit dd54981aa76e9dfdc4c3302d6105b4b229447c84
14582Author: Donnie Berkholz <donnie@comet.(none)>
14583Date:   Thu Jun 22 15:47:38 2006 -0700
14584
14585    Bump version to 1.0.2.
14586
14587commit c93539d974a67f596a5eb5b65042d26602546c72
14588Author: Matthieu Herrb <matthieu@deville.herrb.com>
14589Date:   Tue Jun 20 21:04:03 2006 +0200
14590
14591    Check setuid() return value.
14592    (cherry picked from 5169d0e08ff6acb350a6ea768623f5ff0b85b05f commit)
14593
14594commit 605533f814ab7892991578706a6458f61a89ca4d
14595Author: Derek Wang <derek.wang@sun.com>
14596Date:   Mon Jun 19 11:05:37 2006 -0700
14597
14598    Sun bug 6209243: XExtentsOfFontSet causes segfault when font set not loaded
14599    (cherry picked from eff50c94a07194297e705da53d9fbb3a40fb9ad4 commit)
14600
14601commit 5bbd0822c5a926de0ed293437fb9f2b75cf3c4f4
14602Author: Scott Revelt <scott.revelt@sun.com>
14603Date:   Fri Jun 16 19:11:13 2006 -0700
14604
14605    Sun bug 4022903: Xcms routines may fail if sscanf() is looking for separators
14606    based on locale that doesn't match those used in the Xcms.txt
14607    (cherry picked from 94f3213fc4bd6ec49bfb68e8b4a4fddea2bf3baa commit)
14608
14609commit 0b05cd4da6134df527fb010384a9fd569bd5d6a3
14610Author: Alan Coopersmith <alanc@alf.(none)>
14611Date:   Fri Jun 16 18:53:33 2006 -0700
14612
14613    Add *~ to ignore emacs droppings
14614    (cherry picked from c33d7b8282ac196b36229be26442296768c16f3e commit)
14615
14616commit 214658b76b56768f69c3959a11525aae7813f448
14617Author: Matthias Hopf <mhopf@suse.de>
14618Date:   Fri Jun 16 15:36:40 2006 +0200
14619
14620    Bug #3104: Compose table cache for faster X11 application starts.
14621    (cherry picked from 1f4c9893ade08bad30c9bd12a36bee57d30b001e commit)
14622
14623commit 13968a23aaea838ba4b69e42e8900f803499e091
14624Author: Matthias Hopf <mhopf@suse.de>
14625Date:   Tue Jun 13 20:23:46 2006 +0200
14626
14627    Bug #3104: Compose table cache for faster X11 application starts.
14628    (cherry picked from 4fe22647e6010a2886c2f3a7093adeaeb6678faa commit)
14629
14630commit e7f8bca08f5476d0ca262097639ac7d424bb4d10
14631Author: Lubos Lunak <llunak@suse.de>
14632Date:   Mon Jun 12 18:48:08 2006 +0200
14633
14634    Bug #3104: Compose table cache for faster X11 application starts.
14635    (cherry picked from 1d28a655629a11ea7fd1e5df4c7b77dd4b63e3be commit)
14636
14637commit f506aaf8ac9aae1ee8daaef6cde34ee85aecd641
14638Author: Matthias Hopf <mhopf@suse.de>
14639Date:   Fri Jun 9 18:24:02 2006 +0200
14640
14641    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.
14642    (cherry picked from 9354351fcb8baeaab85250d14409cfb4fa50f3e9 commit)
14643
14644commit 0e6d5e979aacb0c295ce79369ecc5f22ffa7922c
14645Author: Jamey Sharp <jamey@minilop.net>
14646Date:   Wed Jun 7 20:29:05 2006 -0700
14647
14648    Fix bug #7035: unnecessary memmove in XOpenDisplay.
14649    Using memmove on the connection setup data causes a problem for XCB, but making
14650    Xlib stop doing that should be harmless for non-XCB as well.
14651    (cherry picked from b18713ec3f36a10b3cdb1e16f9550e1d2e05dff0 commit)
14652
14653commit cd7328c46ae72903ed02832828891b2dab4d5ee0
14654Author: Daniel Stone <daniels@preemptive.fooishbar.org>
14655Date:   Sat Jun 3 13:51:51 2006 +0300
14656
14657    Fix threading support on GNU/kFreeBSD systems.  (Robert Millan)
14658    (cherry picked from e3acee88cfcc4ef0fa8a7db39763a5ebe2e985cb commit)
14659
14660commit c336eb6b80a6f91da1d0b3d28634a2cfde324670
14661Merge: 33556ca8 ad9ebbd2
14662Author: Donnie Berkholz <donnie@comet.(none)>
14663Date:   Thu Jun 22 14:25:35 2006 -0700
14664
14665    Merge branch 'stable' of http://people.freedesktop.org/~jamey/libX11 into stable
14666
14667commit 213dacad21740466e7ab31b01d3fc513fe4b3e74
14668Author: Daniel Stone <daniel@fooishbar.org>
14669Date:   Thu Jun 22 17:20:59 2006 +0300
14670
14671    Bump to 1.0.99.0 to avoid confusion.
14672
14673commit efedfd68e31bcee2d21ac340be8dc9e1825ec890
14674Merge: e3acee88 4b8eb5d4
14675Author: Daniel Stone <daniel@fooishbar.org>
14676Date:   Thu Jun 22 16:53:45 2006 +0300
14677
14678    Merge branch 'master' of git+ssh://git.freedesktop.org/srv/git.freedesktop.org/git/xorg/lib/libX11
14679
14680commit 4b8eb5d4a1da73a94b5a6ab12e34784aae4c79c5
14681Merge: 5169d0e0 eff50c94
14682Author: Matthieu Herrb <matthieu@deville.herrb.com>
14683Date:   Tue Jun 20 21:05:15 2006 +0200
14684
14685    Merge branch 'master' of git+ssh://herrb@git.freedesktop.org/git/xorg/lib/libX11
14686
14687commit 5169d0e08ff6acb350a6ea768623f5ff0b85b05f
14688Author: Matthieu Herrb <matthieu@deville.herrb.com>
14689Date:   Tue Jun 20 21:04:03 2006 +0200
14690
14691    Check setuid() return value.
14692
14693commit eff50c94a07194297e705da53d9fbb3a40fb9ad4
14694Author: Derek Wang <derek.wang@sun.com>
14695Date:   Mon Jun 19 11:05:37 2006 -0700
14696
14697    Sun bug 6209243: XExtentsOfFontSet causes segfault when font set not loaded
14698
14699commit 94f3213fc4bd6ec49bfb68e8b4a4fddea2bf3baa
14700Author: Scott Revelt <scott.revelt@sun.com>
14701Date:   Fri Jun 16 19:11:13 2006 -0700
14702
14703    Sun bug 4022903: Xcms routines may fail if sscanf() is looking for separators
14704    based on locale that doesn't match those used in the Xcms.txt
14705
14706commit c33d7b8282ac196b36229be26442296768c16f3e
14707Author: Alan Coopersmith <alanc@alf.(none)>
14708Date:   Fri Jun 16 18:53:33 2006 -0700
14709
14710    Add *~ to ignore emacs droppings
14711
14712commit 1f4c9893ade08bad30c9bd12a36bee57d30b001e
14713Author: Matthias Hopf <mhopf@suse.de>
14714Date:   Fri Jun 16 15:36:40 2006 +0200
14715
14716    Bug #3104: Compose table cache for faster X11 application starts.
14717
14718commit 4fe22647e6010a2886c2f3a7093adeaeb6678faa
14719Author: Matthias Hopf <mhopf@suse.de>
14720Date:   Tue Jun 13 20:23:46 2006 +0200
14721
14722    Bug #3104: Compose table cache for faster X11 application starts.
14723
14724commit 1d28a655629a11ea7fd1e5df4c7b77dd4b63e3be
14725Author: Lubos Lunak <llunak@suse.de>
14726Date:   Mon Jun 12 18:48:08 2006 +0200
14727
14728    Bug #3104: Compose table cache for faster X11 application starts.
14729
14730commit 9354351fcb8baeaab85250d14409cfb4fa50f3e9
14731Author: Matthias Hopf <mhopf@suse.de>
14732Date:   Fri Jun 9 18:24:02 2006 +0200
14733
14734    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.
14735
14736commit b18713ec3f36a10b3cdb1e16f9550e1d2e05dff0
14737Author: Jamey Sharp <jamey@minilop.net>
14738Date:   Wed Jun 7 20:29:05 2006 -0700
14739
14740    Fix bug #7035: unnecessary memmove in XOpenDisplay.
14741    Using memmove on the connection setup data causes a problem for XCB, but making
14742    Xlib stop doing that should be harmless for non-XCB as well.
14743
14744commit ad9ebbd2424bc2699944ffdf4e19e13f9dd8ab84
14745Author: Daniel Stone <daniels@preemptive.fooishbar.org>
14746Date:   Sat Jun 3 12:57:55 2006 +0300
14747
14748    Bug #2186: Add cs_CZ.iso8859-2 alias.
14749
14750commit 9e7765e0b1cbaae6643072d91066ba1201b36227
14751Author: Daniel Stone <daniel@fooishbar.org>
14752Date:   Fri Jun 2 02:46:29 2006 +0300
14753
14754    nls: Serbian (sr_CS) update (#5575)
14755    
14756    Bug #5575: 'Yugoslavia' has changed to Serbia & Montenegro, along with a
14757    corresponding locale change.  Update compose.dir.pre, locale.alias.pre,
14758    and locale.dir.pre.  (Milos Komarcevic)
14759
14760commit a4ac2242b588da23044a20aa999ae84d4de7b2d8
14761Author: Daniel Stone <daniel@fooishbar.org>
14762Date:   Fri Jun 2 02:24:25 2006 +0300
14763
14764    im: add Braille input method (#6296)
14765    
14766    Bug #6296: Add a Braille input method.  (Samuel Thibault)
14767
14768commit 90de1e2e141ec591048a76cb695579ef809a28d3
14769Author: Daniel Stone <daniel@fooishbar.org>
14770Date:   Fri Jun 2 02:22:17 2006 +0300
14771
14772    xkb support: small typo
14773
14774commit 4c3e34bece7402f08139d34d1ef5834e3cf533c7
14775Author: Daniel Stone <daniel@fooishbar.org>
14776Date:   Fri Jun 2 01:50:24 2006 +0300
14777
14778    en_US.UTF-8 Compose.pre: updates from Simos (#5129)
14779    
14780    Bug #5129: Numerous updates from Simos Xenitellis, fixing Unicode keysyms,
14781    adding Unicode character names, removing duplicate entries, et al.
14782
14783commit 0c6473dd329c7334ae511884bcb6e73e632c784f
14784Author: Daniel Stone <daniel@fooishbar.org>
14785Date:   Fri Jun 2 01:44:53 2006 +0300
14786
14787    nls: fix use of non-keysym dead_space (#5107)
14788    
14789    Bug #5107: Change users of dead_space to space.
14790
14791commit 6f99f6349de5120f1cb7e02fbc97849341bc48e8
14792Author: Daniel Stone <daniel@fooishbar.org>
14793Date:   Fri Jun 2 01:41:18 2006 +0300
14794
14795    optional XKB support fix
14796    
14797    Fix compilation with --disable-xkb.
14798
14799commit 217d43ed44ced901122093af3ef1294e1736bb77
14800Author: Daniel Stone <daniel@fooishbar.org>
14801Date:   Fri Jun 2 01:39:12 2006 +0300
14802
14803    i18n: separate data and lib directories
14804    
14805    Break out locale data into separate data and library directories, under
14806    $(datadir) and $(libdir), respectively, by default.
14807
14808commit 92fa7fcde8df22830fca7c0275ab201033f7909c
14809Author: Adam Jackson <ajax@benzedrine.nwnk.net>
14810Date:   Thu May 11 14:04:48 2006 -0400
14811
14812    libXcursor.so.1, not libXcursor.so
14813
14814commit 135b4df13ed7c35dbae8975f302fc1fb8412d7c0
14815Author: Daniel Stone <daniels@preemptive.fooishbar.org>
14816Date:   Wed May 10 18:06:03 2006 +0300
14817
14818    XKBMisc.c: use Xfree, not xfree
14819    
14820    Use Xfree() instead of xfree() when freeing interps.
14821
14822commit 3518d772b08e3433bc28b4d8d293fa53ca25f0ee
14823Author: Daniel Stone <daniels@preemptive.fooishbar.org>
14824Date:   Wed May 10 14:51:37 2006 +0300
14825
14826    locale.alias.pre: bg_BG typo fix
14827    
14828    Fix typo (be_BG.UTF-8 rather than bg_BG.UTF-8) in locale.alias.pre.
14829
14830commit cc533db60cb64dc163c66451933a9bf77c519062
14831Author: Daniel Stone <daniels@endtroducing.localdomain>
14832Date:   Sun Apr 9 22:22:03 2006 +0300
14833
14834    Coverity #203, #204: Fix potential NULL dereferences.
14835
14836commit b83adf7dfd6157694fe4f232012fef36cd9666da
14837Author: Daniel Stone <daniels@endtroducing.localdomain>
14838Date:   Sun Apr 9 22:20:25 2006 +0300
14839
14840    Coverity #205: Fix potential NULL dereference.
14841
14842commit 2d0cd10ad907864d0136739eaac459779c9a5332
14843Author: Daniel Stone <daniels@endtroducing.localdomain>
14844Date:   Sun Apr 9 22:18:20 2006 +0300
14845
14846    Coverity #209: Fix potential NULL dereference. (Alan Coopersmith)
14847
14848commit dc2f3966068d66a564aa452cab9f0c26657fa1df
14849Author: Daniel Stone <daniels@preemptive.research.nokia.com>
14850Date:   Fri Apr 7 18:11:52 2006 +0300
14851
14852    Coverity #826: Fix potential memory leak.
14853
14854commit 23df609ec451a01c77e8f31ecc85c5af7c62efed
14855Author: Daniel Stone <daniels@preemptive.research.nokia.com>
14856Date:   Fri Apr 7 17:49:41 2006 +0300
14857
14858    Bug #1625: Include keysym.h from Xutil.h.
14859
14860commit 5262a1945c543a3419ed626e1deb09ef5b4584c1
14861Author: Eric Anholt <anholt@leguin.anholt.net>
14862Date:   Wed Apr 5 17:12:15 2006 -0700
14863
14864    Check if visualList == NULL, not nVisualsMatched == 0. NULL happens in more
14865    
14866    cases (allocation failure) than nVisualsMatched == 0.  Noticed from inspection
14867    of Coverity #599, #600.
14868
14869commit 8b42635f577468bb143ca593cdd9fb3450ad712c
14870Author: Eric Anholt <anholt@leguin.anholt.net>
14871Date:   Wed Apr 5 16:42:26 2006 -0700
14872
14873    Coverity #558: Free newly-allocated Database in error path.
14874
14875commit 6d06e41d1f431b3f1a1fcf69161e0af411325e9f
14876Author: Eric Anholt <anholt@leguin.anholt.net>
14877Date:   Wed Apr 5 16:38:52 2006 -0700
14878
14879    Coverity #582: Free newly-allocated region in error path.
14880
14881commit 5fd8f79ad3e38df74d9a6cb573617542c101df1a
14882Author: Daniel Stone <daniels@preemptive.research.nokia.com>
14883Date:   Fri Mar 17 15:58:39 2006 +0200
14884
14885    Properly clip bounds when only one point is defining an outline.
14886
14887commit 1e1572eb7f8394ce152e99d96f711ccf9083baf9
14888Author: Matthieu Herrb <matthieu@bluenote.herrb.com>
14889Date:   Sat Mar 11 15:39:15 2006 +0100
14890
14891    Fix prototype of XConfigureWindow(). Bugzilla #6023.
14892
14893commit 1da8bd904f1fc79d63d368473531b438d08bfe37
14894Author: Jeremy C. Reed <reed@reedmedia.net>
14895Date:   Tue Feb 21 14:10:22 2006 -0800
14896
14897    Set XTHREADLIB correctly for dragonfly platforms.
14898
14899commit c9768133e3f65ac4bb64e3941e2d6ae36897ec9c
14900Author: Jamey Sharp <jamey@minilop.net>
14901Date:   Sun Feb 19 12:29:27 2006 -0800
14902
14903    Update .gitignores for *.o and nls/locale.dir*.
14904
14905commit efcbde6ba0b770bb0d4c7818e307712161011f10
14906Author: Jamey Sharp <jamey@minilop.net>
14907Date:   Sun Feb 19 12:28:41 2006 -0800
14908
14909    Move .cvsignore to .gitignore.
14910
14911commit e3acee88cfcc4ef0fa8a7db39763a5ebe2e985cb
14912Author: Daniel Stone <daniels@preemptive.fooishbar.org>
14913Date:   Sat Jun 3 13:51:51 2006 +0300
14914
14915    Fix threading support on GNU/kFreeBSD systems.  (Robert Millan)
14916
14917commit f1bd3152359ddfadd0d043006036c239f3e2907b
14918Author: Daniel Stone <daniels@preemptive.fooishbar.org>
14919Date:   Sat Jun 3 12:57:55 2006 +0300
14920
14921    Bug #2186: Add cs_CZ.iso8859-2 alias.
14922
14923commit 2b1b79d90db1d7f0472718b8c010c36275994195
14924Author: Daniel Stone <daniel@fooishbar.org>
14925Date:   Fri Jun 2 02:46:29 2006 +0300
14926
14927    nls: Serbian (sr_CS) update (#5575)
14928    Bug #5575: 'Yugoslavia' has changed to Serbia & Montenegro, along with a
14929    corresponding locale change.  Update compose.dir.pre, locale.alias.pre,
14930    and locale.dir.pre.  (Milos Komarcevic)
14931
14932commit d6fba1f44d404362d3be1b421f57d7ccc3c8cdac
14933Author: Daniel Stone <daniel@fooishbar.org>
14934Date:   Fri Jun 2 02:24:25 2006 +0300
14935
14936    im: add Braille input method (#6296)
14937    Bug #6296: Add a Braille input method.  (Samuel Thibault)
14938
14939commit 0fed7d3185addd610e917dcdaa0676f0256c0ec5
14940Author: Daniel Stone <daniel@fooishbar.org>
14941Date:   Fri Jun 2 02:22:17 2006 +0300
14942
14943    xkb support: small typo
14944
14945commit cf7d9f9e46f3ce01ac04a95978918d5c0f3f3cf9
14946Author: Daniel Stone <daniel@fooishbar.org>
14947Date:   Fri Jun 2 01:50:24 2006 +0300
14948
14949    en_US.UTF-8 Compose.pre: updates from Simos (#5129)
14950    Bug #5129: Numerous updates from Simos Xenitellis, fixing Unicode keysyms,
14951    adding Unicode character names, removing duplicate entries, et al.
14952
14953commit 332d45fce9fdbf59168d90a133af1f580a589e54
14954Author: Daniel Stone <daniel@fooishbar.org>
14955Date:   Fri Jun 2 01:44:53 2006 +0300
14956
14957    nls: fix use of non-keysym dead_space (#5107)
14958    Bug #5107: Change users of dead_space to space.
14959
14960commit 34f59ce3d1e2eb2971b732d11871c6fff8a1c75b
14961Author: Daniel Stone <daniel@fooishbar.org>
14962Date:   Fri Jun 2 01:41:18 2006 +0300
14963
14964    optional XKB support fix
14965    Fix compilation with --disable-xkb.
14966
14967commit c5940a0b85edec4003f91a59fc3c44f538accfe1
14968Author: Daniel Stone <daniel@fooishbar.org>
14969Date:   Fri Jun 2 01:39:12 2006 +0300
14970
14971    i18n: separate data and lib directories
14972    Break out locale data into separate data and library directories, under
14973    $(datadir) and $(libdir), respectively, by default.
14974
14975commit 33556ca81db2419b9d2a37664c4cea2069414b37
14976Author: Adam Jackson <ajax@benzedrine.nwnk.net>
14977Date:   Fri May 12 14:49:17 2006 -0400
14978
14979    Bump to 1.0.1
14980
14981commit 80d88557626fae9debc404de33d7fb5d69a6049d
14982Author: Adam Jackson <ajax@benzedrine.nwnk.net>
14983Date:   Thu May 11 14:06:28 2006 -0400
14984
14985    libXcursor.so.1, not libXcursor.so
14986
14987commit 5384f27dfe3c94c462c137ab3540eaa5646ca4c6
14988Author: Adam Jackson <ajax@benzedrine.nwnk.net>
14989Date:   Thu May 11 14:04:48 2006 -0400
14990
14991    libXcursor.so.1, not libXcursor.so
14992
14993commit 01f4d433eed6b70c6e9636157acac022054fdeb6
14994Author: Jamey Sharp <jamey@minilop.net>
14995Date:   Wed May 10 17:02:52 2006 -0700
14996
14997    Count any partial request towards the current Xlib sequence number.
14998
14999commit 770cfbd1fcc80a83a9be0c4f68727b8af2c8f4a4
15000Author: Daniel Stone <daniels@preemptive.fooishbar.org>
15001Date:   Wed May 10 18:06:03 2006 +0300
15002
15003    XKBMisc.c: use Xfree, not xfree
15004    Use Xfree() instead of xfree() when freeing interps.
15005
15006commit 22a5255b80b80772612279bc840a953edd0e3442
15007Author: Daniel Stone <daniels@preemptive.fooishbar.org>
15008Date:   Wed May 10 14:51:37 2006 +0300
15009
15010    locale.alias.pre: bg_BG typo fix
15011    Fix typo (be_BG.UTF-8 rather than bg_BG.UTF-8) in locale.alias.pre.
15012
15013commit 9cac8c9824874ca7d835f001a4efa910b7fdd822
15014Merge: 19b8840a e514bc87
15015Author: Daniel Stone <daniels@preemptive.fooishbar.org>
15016Date:   Wed May 10 14:50:37 2006 +0300
15017
15018    Merge branch 'master' of git+ssh://git.freedesktop.org/srv/git.freedesktop.org/git/xorg/lib/libX11
15019
15020commit e514bc875f27f4bf197b06b8315eeca526195915
15021Author: Jamey Sharp <jamey@minilop.net>
15022Date:   Tue May 9 12:41:59 2006 -0700
15023
15024    Assert that dpy->request does not go backwards. Catches #5839 earlier.
15025
15026commit fc1159137365a599bf611ee001f439416952c4e0
15027Author: Jamey Sharp <jamey@minilop.net>
15028Date:   Sun May 7 17:40:01 2006 -0700
15029
15030    In _XPutXCBBuffer, set aside any trailing partial request until the last byte is available.
15031
15032commit c394480a4247213239822808e3f6e7c6cd6decd9
15033Author: Jamey Sharp <jamey@minilop.net>
15034Date:   Sun May 7 16:58:13 2006 -0700
15035
15036    Update for XCB ConnSetupSuccessRep name change.
15037
15038commit 7672bf93bc1200905461aeb0a2dc2c2696410b93
15039Author: Daniel Stone <daniels@endtroducing.localdomain>
15040Date:   Sun Apr 9 22:22:03 2006 +0300
15041
15042    Coverity #203, #204: Fix potential NULL dereferences.
15043
15044commit cfcafbe48d22d9a0cd50eb9454ce0ff88f0129d3
15045Author: Daniel Stone <daniels@endtroducing.localdomain>
15046Date:   Sun Apr 9 22:20:25 2006 +0300
15047
15048    Coverity #205: Fix potential NULL dereference.
15049
15050commit b6771501feea98d037032f82117b6d4f15779f07
15051Author: Daniel Stone <daniels@endtroducing.localdomain>
15052Date:   Sun Apr 9 22:18:20 2006 +0300
15053
15054    Coverity #209: Fix potential NULL dereference.  (Alan Coopersmith)
15055
15056commit 19b8840af241087bb17b1edabcaa9b28fdd0a1dc
15057Author: Daniel Stone <daniels@preemptive.research.nokia.com>
15058Date:   Fri Apr 7 18:11:52 2006 +0300
15059
15060    Coverity #826: Fix potential memory leak.
15061
15062commit 3a16f262abe48b44ed641525e894bc22e13bf72a
15063Author: Daniel Stone <daniels@preemptive.research.nokia.com>
15064Date:   Fri Apr 7 17:49:41 2006 +0300
15065
15066    Bug #1625: Include keysym.h from Xutil.h.
15067
15068commit 2481b767ae96e2f2503c0390545932c8397b090f
15069Author: Eric Anholt <anholt@leguin.anholt.net>
15070Date:   Wed Apr 5 17:12:15 2006 -0700
15071
15072    Check if visualList == NULL, not nVisualsMatched == 0.  NULL happens in more
15073    cases (allocation failure) than nVisualsMatched == 0.  Noticed from inspection
15074    of Coverity #599, #600.
15075
15076commit 152b17e47d878c2d928eb74581aa69d925a29123
15077Author: Eric Anholt <anholt@leguin.anholt.net>
15078Date:   Wed Apr 5 16:42:26 2006 -0700
15079
15080    Coverity #558: Free newly-allocated Database in error path.
15081
15082commit bc62b99ef36edb34035911c42104be7f6f9d2333
15083Author: Eric Anholt <anholt@leguin.anholt.net>
15084Date:   Wed Apr 5 16:38:52 2006 -0700
15085
15086    Coverity #582: Free newly-allocated region in error path.
15087
15088commit d47f0b3cec1388f7ce60ab2af91df0dea0f221c5
15089Author: Jamey Sharp <jamey@minilop.net>
15090Date:   Fri Mar 31 22:53:07 2006 -0800
15091
15092    Fix buggy interaction with XCB when running out of XIDs.
15093
15094commit e3f452571824d6a875bbf582946de185de9e01e9
15095Author: Jamey Sharp <jamey@minilop.net>
15096Date:   Fri Mar 31 22:52:14 2006 -0800
15097
15098    Add explicit include of Xmd.h to work around bug including both xcb.h and Xmd.h simultaneously.
15099
15100commit 2363b74ca795c1b3a73c9e572532ba5191adec5b
15101Author: Daniel Stone <daniels@preemptive.research.nokia.com>
15102Date:   Fri Mar 17 15:58:39 2006 +0200
15103
15104    Properly clip bounds when only one point is defining an outline.
15105
15106commit e876efb8aa410f2f5c87aaaa7042f847c4ff96f7
15107Merge: be266b20 f71ea0bc
15108Author: Matthieu Herrb <matthieu@bluenote.herrb.com>
15109Date:   Sat Mar 11 15:40:35 2006 +0100
15110
15111    Merge branch 'master' of git+ssh://herrb@git.freedesktop.org/git/xorg/lib/libX11
15112
15113commit be266b201dc13530a302a7572283ccd3f32aad87
15114Author: Matthieu Herrb <matthieu@bluenote.herrb.com>
15115Date:   Sat Mar 11 15:39:15 2006 +0100
15116
15117    Fix prototype of XConfigureWindow(). Bugzilla #6023.
15118
15119commit f71ea0bc737c5a42e9e022b86e7ec3b4f846d31c
15120Author: Jamey Sharp <jamey@minilop.net>
15121Date:   Fri Mar 3 11:08:41 2006 -0800
15122
15123    Update for XCBSendRequest sequence number API changes.
15124
15125commit a11d1b0ae674320cf9897f6a83ec08c65eca8d9b
15126Author: Jamey Sharp <jamey@minilop.net>
15127Date:   Fri Mar 3 01:42:49 2006 -0800
15128
15129    Use the full_sequence from XCBGenericError/Event for setting last_request_read, and quit replacing _XSetLastRequestRead with an XCB-specific version.
15130
15131commit d8ba4ae7045b227f8b675628b9094dded02f1c08
15132Author: Jamey Sharp <jamey@minilop.net>
15133Date:   Thu Mar 2 23:43:26 2006 -0800
15134
15135    Bugfix: Rely on XCBSendRequest to leave iov in a well-defined state, and place the spare iovecs at the beginning of the array.
15136
15137commit f9afb5a54435c30961306080e9358d4240ecb844
15138Author: Jamey Sharp <jamey@minilop.net>
15139Date:   Thu Mar 2 23:34:19 2006 -0800
15140
15141    assert() that we will not infinite loop or read uninitialized memory.
15142
15143commit d3512ef3aae5b036a8ce6579318108f1ec20ee22
15144Author: Jamey Sharp <jamey@minilop.net>
15145Date:   Thu Mar 2 15:58:52 2006 -0800
15146
15147    Quit relying on XCBSendRequest to pad to 4-byte boundaries and do it ourselves.
15148
15149commit fb590c15a740264ee867d15a2547072e43b21eed
15150Author: Jamey Sharp <jamey@minilop.net>
15151Date:   Thu Mar 2 12:06:04 2006 -0800
15152
15153    Handle errors correctly when Xlib owns the event queue and XCB has the checked error feature.
15154
15155commit 8356ba37d307a9eda895a6bf41ef727bbfc9a695
15156Author: Jamey Sharp <jamey@minilop.net>
15157Date:   Mon Feb 27 11:51:47 2006 -0800
15158
15159    Use the new XCBSendRequest flag, XCB_REQUEST_RAW, to hand a bag-o-bytes down uninterpreted.
15160
15161commit 07bdf1fbbf2418f866df1a2140d514dd3f035139
15162Author: Jamey Sharp <jamey@minilop.net>
15163Date:   Sun Feb 26 15:46:01 2006 -0800
15164
15165    Update for new XCBSendRequest API.
15166
15167commit 409a08cff8347d39e0e6c53c9f380d21f221f5ac
15168Author: Jamey Sharp <jamey@minilop.net>
15169Date:   Thu Feb 23 18:12:31 2006 -0800
15170
15171    Performance fix: Replace calls to XCBGetRequestRead with the new XCBGetQueuedRequestRead. Cuts a lot of syscalls.
15172
15173commit ec30a27341b97620b07dd886f98d1d7664a67685
15174Author: Jamey Sharp <jamey@minilop.net>
15175Date:   Thu Feb 23 18:01:46 2006 -0800
15176
15177    Minor performance fix: Access dpy->xcl->connection directly instead of calling XCBConnectionOfDisplay. It happens a lot.
15178
15179commit 53c471c6a835d5cedeca99f2c97058d196a3fd7e
15180Author: Jamey Sharp <jamey@minilop.net>
15181Date:   Thu Feb 23 11:46:09 2006 -0800
15182
15183    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.
15184
15185commit 41c0121a8718b530feaf7fe315b673d9b8defce2
15186Author: Jamey Sharp <jamey@minilop.net>
15187Date:   Tue Feb 21 21:25:41 2006 -0800
15188
15189    Refactor the code that passes requests down to XCB into a separate issue_complete_request function.
15190
15191commit 67d06e0fe468dca22847aa14d3f917128f89f9cf
15192Author: Jamey Sharp <jamey@minilop.net>
15193Date:   Tue Feb 21 15:33:05 2006 -0800
15194
15195    If we have not actually put the buffer back, deferred invariants may not hold. This is OK.
15196
15197commit 434bf80b4053ff1ba82adf65de1f76b4d3731bf1
15198Author: Jeremy C. Reed <reed@reedmedia.net>
15199Date:   Tue Feb 21 14:10:22 2006 -0800
15200
15201    Set XTHREADLIB correctly for dragonfly platforms.
15202
15203commit b24834762e975bd319f9ab5c7cf790b2a02a9474
15204Author: Jamey Sharp <jamey@minilop.net>
15205Date:   Tue Feb 21 14:03:26 2006 -0800
15206
15207    Sometimes functions other than _XUnlockDisplay call _XPutXCBBuffer. Some invariants appropriate for Unlock are not appropriate otherwise: move them to _XUnlockDisplay.
15208
15209commit 99b8defd0d5e6993071e21638128c9de2574b37d
15210Author: Jamey Sharp <jamey@minilop.net>
15211Date:   Tue Feb 21 13:04:21 2006 -0800
15212
15213    Execute BeforeFlush hooks on complete buffers, not request-at-a-time.
15214    Traditional Xlib worked this way; I dunno why I changed it.
15215
15216commit 9b01e7849775749182052fe324df9d8e6ceeee99
15217Author: Jamey Sharp <jamey@minilop.net>
15218Date:   Tue Feb 21 12:51:44 2006 -0800
15219
15220    Factor the XCBSendRequest call out of the conditional in _XPutXCBBuffer.
15221
15222commit 7ce7ac882de128955751a5307889db9d712d8a72
15223Author: Jamey Sharp <jamey@minilop.net>
15224Date:   Tue Feb 21 12:44:30 2006 -0800
15225
15226    Quit using a triple-pointer. Almost as if I were a sensible person.
15227
15228commit 35a858be218cdbfa4593d44a67663d5c25297016
15229Author: Jamey Sharp <jamey@minilop.net>
15230Date:   Tue Feb 21 12:21:01 2006 -0800
15231
15232    Remove the XCL_PAD macro.
15233
15234commit e741b70ed2542c5463c57dac44bc37328616733b
15235Author: Jamey Sharp <jamey@minilop.net>
15236Date:   Sun Feb 19 12:29:27 2006 -0800
15237
15238    Update .gitignores for *.o and nls/locale.dir*.
15239
15240commit f25b4b00e1683b0d97dba46dac46d65a9c2270a6
15241Author: Jamey Sharp <jamey@minilop.net>
15242Date:   Sun Feb 19 12:28:41 2006 -0800
15243
15244    Move .cvsignore to .gitignore.
15245
15246commit c7cda56eebaf6ab11403363be14d4948d7d8be38
15247Author: Jamey Sharp <jamey@minilop.net>
15248Date:   Sun Feb 19 11:49:15 2006 -0800
15249
15250    Land XCB support on X.org HEAD.
15251
15252commit 881467b3032261791ef5ec61b3879bb68d0a3d8c
15253Author: Jamey Sharp <jamey@minilop.net>
15254Date:   Sun Feb 19 02:14:11 2006 +0000
15255
15256    Merge the X11 and BIGREQS package sets: they were used in exactly the same places.
15257
15258commit 6b0158dfad714db5b89c04dbea3aedeafa0fb146
15259Author: Jamey Sharp <jamey@minilop.net>
15260Date:   Tue Feb 14 19:37:36 2006 +0000
15261
15262    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.
15263
15264commit 010c3acbb3a6993d39274f42d88c00849acb0fb0
15265Author: Alan Coopersmith <alan.coopersmith@sun.com>
15266Date:   Sun Feb 12 18:19:17 2006 +0000
15267
15268    Bug #5628 <https://bugs.freedesktop.org/show_bug.cgi?id=5628> Shadow pages not created correctly when MANDIR & MANSUFFIX don't match.
15269
15270commit fe8c01c80263457f01b70dc1511b2bd9466b7c96
15271Author: Alan Coopersmith <alan.coopersmith@sun.com>
15272Date:   Fri Feb 3 23:34:43 2006 +0000
15273
15274    Fix typo in .TH line
15275
15276commit b091c217f3c3f60dde78b09a95c150df6c83d7ba
15277Author: Kevin E Martin <kem@kem.org>
15278Date:   Thu Dec 15 00:24:28 2005 +0000
15279
15280    Update package version number for final X11R7 release candidate.
15281
15282commit e7c04e0e65a2a0c70c6ad29ec2d6f4350fd81c2a
15283Author: Kevin E Martin <kem@kem.org>
15284Date:   Tue Dec 6 22:48:41 2005 +0000
15285
15286    Change *man_SOURCES ==> *man_PRE to fix autotools warnings.
15287
15288commit b5c495854d5270e64e6d588388ffa906bfcaac22
15289Author: Kevin E Martin <kem@kem.org>
15290Date:   Sat Dec 3 05:49:42 2005 +0000
15291
15292    Update package version number for X11R7 RC3 release.
15293
15294commit 9e96dbc343c7f27ff47607acd75378ab23903e2a
15295Author: Kevin E Martin <kem@kem.org>
15296Date:   Sat Dec 3 04:41:47 2005 +0000
15297
15298    Add check and cflags for malloc(0) returning NULL.
15299
15300commit 649c37b47909620ccafde3e983de8321cddd74ce
15301Author: Alan Coopersmith <alan.coopersmith@sun.com>
15302Date:   Mon Nov 28 22:03:04 2005 +0000
15303
15304    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)
15305
15306commit 8d1500df66d796ebff2b0d8c02205e5fa6796d4a
15307Author: Alan Coopersmith <alan.coopersmith@sun.com>
15308Date:   Wed Nov 23 22:33:06 2005 +0000
15309
15310    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
15311
15312commit 93cf3747f9ae8d30bd485b41c5ff10397f68f078
15313Author: Eric Anholt <anholt@freebsd.org>
15314Date:   Sun Nov 20 23:17:39 2005 +0000
15315
15316    Add/improve libs .cvsignores.
15317
15318commit fa1f4a08112bfa14d3758f4702733dd3892966c3
15319Author: Kevin E Martin <kem@kem.org>
15320Date:   Sat Nov 19 07:15:39 2005 +0000
15321
15322    Update pkgconfig files to separate library build-time dependencies from application build-time dependencies, and update package deps to work with separate build roots.
15323
15324commit 7012f9b56c594cf40855ba0dbf93af1263417a8c
15325Author: Kevin E Martin <kem@kem.org>
15326Date:   Mon Nov 14 21:51:07 2005 +0000
15327
15328    Fix xf86bigfont pkgconfig dep typo.
15329
15330commit 60a72f47951f46b4e0505d9903a94af3b6bed8ca
15331Author: Kevin E Martin <kem@kem.org>
15332Date:   Wed Nov 9 21:19:12 2005 +0000
15333
15334    Update package version number for X11R7 RC2 release.
15335
15336commit 6bb0c3796b6e1beddc376a896e865704886e1462
15337Author: Kean Johnson <kean@armory.com>
15338Date:   Tue Nov 8 06:33:25 2005 +0000
15339
15340    See ChangeLog entry 2005-11-07 for details.
15341
15342commit 14be0098ad90c3e68bd2d21b00ffabb76f1fd780
15343Author: Kevin E Martin <kem@kem.org>
15344Date:   Tue Nov 1 15:11:50 2005 +0000
15345
15346    Update pkgcheck dependencies to work with separate build roots.
15347
15348commit 1bf71462a972e0fc56de63f5c7fd613b37fc70f1
15349Author: Donnie Berkholz <spyderous@gentoo.org>
15350Date:   Fri Oct 28 10:44:03 2005 +0000
15351
15352    Revert that, it's redundant. But it is worth noting that --disable-xkb is broken, if anyone cares.
15353
15354commit be627a39fe373e2e81fdc263780e70a271d9e0c5
15355Author: Donnie Berkholz <spyderous@gentoo.org>
15356Date:   Fri Oct 28 08:28:08 2005 +0000
15357
15358    Add dependency on inputproto for XI.h.
15359
15360commit 5fae4cb456cb03fb70cd065dbc2ca94c8ed99082
15361Author: Adam Jackson <ajax@nwnk.net>
15362Date:   Fri Oct 21 18:44:24 2005 +0000
15363
15364    Bug #4736: Error decoding for Damage extension. (Jonathan Lennox)
15365
15366commit 1171fa9dc77413f0e90933a565ec07068052afb4
15367Author: Kevin E Martin <kem@kem.org>
15368Date:   Wed Oct 19 02:48:08 2005 +0000
15369
15370    Update package version number for RC1 release.
15371
15372commit 2a2d905706308b9d5a1c16af1067fb390f43850c
15373Author: Alan Coopersmith <alan.coopersmith@sun.com>
15374Date:   Tue Oct 18 00:00:08 2005 +0000
15375
15376    Use @LIB_MAN_SUFFIX@ instead of $(LIB_MAN_SUFFIX) in macro substitutions to work better with BSD make
15377
15378commit 66d35b6971fb26762392a2a8e2c47db46c11116a
15379Author: Alan Coopersmith <alan.coopersmith@sun.com>
15380Date:   Mon Oct 17 21:13:15 2005 +0000
15381
15382    Rename .shadows.DONE to shadows.DONE to avoid some make's thinking it's a suffix rule (reported by Matthieu Herrb)
15383
15384commit a316995a17c084e98ef1b7f25d287c2c08b6d749
15385Author: Donnie Berkholz <spyderous@gentoo.org>
15386Date:   Sun Oct 16 03:03:35 2005 +0000
15387
15388    Change '==' to portable '='.
15389
15390commit b76a072530e884bcbea6ed8fed5aef39361dcfc0
15391Author: Alan Coopersmith <alan.coopersmith@sun.com>
15392Date:   Wed Oct 12 00:04:50 2005 +0000
15393
15394    configure.ac Use XORG_MAN_SECTIONS instead of custom man section configuration. Add shadow man pages for man pages that document multiple functions.
15395
15396commit 8ee5c1429af98206e05a0536f87c0f21a529cdf0
15397Author: Eric Anholt <anholt@freebsd.org>
15398Date:   Tue Oct 11 02:18:36 2005 +0000
15399
15400    Add appropriate pthread libs/flags for FreeBSD, fixing the build of ico and probably others.
15401
15402commit 41ff3b9d1f194a7b56437b650d5f589225c078c6
15403Author: Alan Coopersmith <alan.coopersmith@sun.com>
15404Date:   Sun Oct 9 22:28:39 2005 +0000
15405
15406    Bug #3021 <https://bugs.freedesktop.org/show_bug.cgi?id=3021> Requests and Errors for XFixes are not in XErrorDB (Jonathan Lennox)
15407
15408commit 91ed79852e790049ab54e68f288afb3c953194c9
15409Author: Kevin E Martin <kem@kem.org>
15410Date:   Fri Oct 7 15:00:00 2005 +0000
15411
15412    Clean up generated files
15413    Add missing dist tarball files
15414
15415commit 440399b470c97b159a530602fff11c315aca8d97
15416Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
15417Date:   Wed Oct 5 18:27:10 2005 +0000
15418
15419    Add el_GR.UTF-8 compose file
15420
15421commit 010f0647e25ac617d0f92c8d2b8dda684da545db
15422Author: Daniel Stone <daniel@fooishbar.org>
15423Date:   Fri Sep 30 07:52:46 2005 +0000
15424
15425    Bug #2609: Add Kyrgyz locale (Ilyas Bakirov).
15426
15427commit 3ef2fb67bd8905b208ad7eb790c3843e14cea7ed
15428Author: Daniel Stone <daniel@fooishbar.org>
15429Date:   Fri Sep 30 07:47:55 2005 +0000
15430
15431    Bug #1640: Kinyarwanda locale support. (Steve Murphy)
15432
15433commit 4ae0decabe0960870df0ec165f495166c10a053c
15434Author: Daniel Stone <daniel@fooishbar.org>
15435Date:   Fri Sep 30 07:40:03 2005 +0000
15436
15437    Bug #2268: Add South African locales (Dwayne Bailey). Some whitespace cleanups, as the parser is a little touchy.
15438
15439commit 3f79eb4c99844f618f1889741d1631c2ffe5385f
15440Author: Daniel Stone <daniel@fooishbar.org>
15441Date:   Fri Sep 30 07:11:19 2005 +0000
15442
15443    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.
15444
15445commit d1237d1483ff972c76a0ac344ec97d5280db0007
15446Author: Alan Coopersmith <alan.coopersmith@sun.com>
15447Date:   Thu Sep 29 21:27:12 2005 +0000
15448
15449    Add Xcms.txt to lib/X11
15450
15451commit 4a86f299693f7376cbe98175f0b0c44d691802b3
15452Author: Alan Coopersmith <alan.coopersmith@sun.com>
15453Date:   Sat Sep 24 20:11:06 2005 +0000
15454
15455    Add XQueryExtension.man
15456
15457commit a057a66e2041d45198a13a4ece7c07068f76f21b
15458Author: Alan Coopersmith <alan.coopersmith@sun.com>
15459Date:   Sat Sep 24 00:16:32 2005 +0000
15460
15461    Add XTHREAD_CFLAGS for platforms that need special defines like
15462    -D_REENTRANT or -D_POSIX_whatever to get re-entrant function definitions. Set XDMCP_LIBS correctly for later libXdmcp tests.
15463
15464commit 3e920a65a7c376ad63eae2240fd06904d25d18bf
15465Author: Alan Coopersmith <alan.coopersmith@sun.com>
15466Date:   Fri Sep 2 23:00:30 2005 +0000
15467
15468    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
15469
15470commit 3eb9f2d693af89d04e2fd92492c8205dce332c9c
15471Author: Kristian Høgsberg <krh@redhat.com>
15472Date:   Thu Sep 1 19:24:13 2005 +0000
15473
15474    Use $(X11_LOCALEDATADIR) instead of @X11_LOCALEDATADIR@ so this install destination can be overridden at make install time.
15475
15476commit 7afa64325183b78d2d6a4862821f8b3e9866105c
15477Author: Matthieu Herrb <matthieu.herrb@laas.fr>
15478Date:   Sun Aug 28 19:45:48 2005 +0000
15479
15480    OpenBSD needs -lpthread for threaded applications too.
15481
15482commit 2b2f3d3877cb7927f196d01a5df6a27bf8d0518a
15483Author: Daniel Stone <daniel@fooishbar.org>
15484Date:   Fri Aug 26 05:16:46 2005 +0000
15485
15486    Define ERRORDB/KEYSYMDB to XERRORDB/XKEYSYMDB if the former is undefined but the latter is. (Gerte Hoogewerf)
15487
15488commit 07066da0902df91c71f2adb81d1a17ec29165553
15489Author: Matthieu Herrb <matthieu.herrb@laas.fr>
15490Date:   Sun Aug 21 15:45:04 2005 +0000
15491
15492    update
15493
15494commit de44d8b111f57bd2f015e085fd8298c5f2a15ef3
15495Author: Matthieu Herrb <matthieu.herrb@laas.fr>
15496Date:   Sun Aug 21 15:38:39 2005 +0000
15497
15498    Threads support for BSD systems:
15499    - need to check for gewtpwuid_r to define mtsafeapi
15500    - build UIThrstubs if needed.
15501
15502commit 60217fdb918bafb2082519efe5cba3b13ad3082a
15503Author: Adam Jackson <ajax@nwnk.net>
15504Date:   Wed Aug 17 19:46:08 2005 +0000
15505
15506    Add xthreadlib variable to x11.pc. Bump to 0.99.1.
15507
15508commit e1f4c6f5e36c1511f66fa1fac76520fd97eecbad
15509Author: Alan Coopersmith <alan.coopersmith@sun.com>
15510Date:   Wed Aug 17 01:27:08 2005 +0000
15511
15512    Fix more broken multi-line .ds macros. Remove extraneous ;'s .
15513
15514commit 1909786f4a7d686369edcfc05a938df115fab37c
15515Author: Alan Coopersmith <alan.coopersmith@sun.com>
15516Date:   Tue Aug 16 19:23:15 2005 +0000
15517
15518    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)
15519
15520commit 83406d69c62070d2eeef23eb47f1ca887f711ee5
15521Author: Alan Coopersmith <alan.coopersmith@sun.com>
15522Date:   Mon Aug 15 19:53:37 2005 +0000
15523
15524    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
15525
15526commit 5bb43de17de8e71d967488a713bf2b3448533444
15527Author: Alan Coopersmith <alan.coopersmith@sun.com>
15528Date:   Sat Aug 6 18:59:49 2005 +0000
15529
15530    Typo fix in output message
15531
15532commit afe34b95862bb3c06cdbe724cb5ec3001a4a5215
15533Author: Alan Coopersmith <alan.coopersmith@sun.com>
15534Date:   Thu Aug 4 02:55:49 2005 +0000
15535
15536    //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)
15537
15538commit 3979a0b88edf6475ce5cfaa386e18ef980bda13c
15539Author: Alan Coopersmith <alan.coopersmith@sun.com>
15540Date:   Thu Aug 4 02:51:30 2005 +0000
15541
15542    //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)
15543
15544commit 34b454df192f4563499c453ccdb8c079f4a20cbe
15545Author: Alan Coopersmith <alan.coopersmith@sun.com>
15546Date:   Sat Jul 30 20:30:46 2005 +0000
15547
15548    Include config.h so Xtrans knows which transport types to build code for
15549
15550commit cd9c9936b49c125eda779b99887d7e6ae4cf56cd
15551Author: Alan Coopersmith <alan.coopersmith@sun.com>
15552Date:   Sat Jul 30 19:15:16 2005 +0000
15553
15554    Add -D flags to clear various warnings (Stefan Dirsch)
15555
15556commit e7fef67b4531faddd805d8f2157903006d3117ed
15557Author: Kevin E Martin <kem@kem.org>
15558Date:   Fri Jul 29 21:22:50 2005 +0000
15559
15560    Various changes preparing packages for RC0:
15561    - Verify and update package version numbers as needed
15562    - Implement versioning scheme
15563    - Change bug address to point to bugzilla bug entry form
15564    - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to reenable it)
15565    - Fix makedepend to use pkgconfig and pass distcheck
15566    - Update build script to build macros first
15567    - Update modular Xorg version
15568
15569commit 2ebb00244928237088e68325b1032b3550455ce9
15570Author: Matthieu Herrb <matthieu.herrb@laas.fr>
15571Date:   Sat Jul 23 20:19:31 2005 +0000
15572
15573    remove orphan TAB at begin of line
15574
15575commit dd7a9cdecda73e024ca84c5b9a22b18688038d94
15576Author: Kevin E Martin <kem@kem.org>
15577Date:   Sat Jul 23 18:09:39 2005 +0000
15578
15579    Modify modular libs to use Xregion.h instead of region.h
15580
15581commit 6d635a88d91647b1b63611c3591f74916f88cd1c
15582Author: Kevin E Martin <kem@kem.org>
15583Date:   Sat Jul 23 18:06:16 2005 +0000
15584
15585    lib/Xrender/Picture.c Change region.h to Xregion.h and modify internal references to include <X11/Xregion.h>.
15586
15587commit 36283f50fd9748733ae84cb7fb52ca8d9e661c15
15588Author: Daniel Stone <daniel@fooishbar.org>
15589Date:   Sat Jul 16 06:25:35 2005 +0000
15590
15591    Set soversion to 6.2.0.
15592
15593commit 75fd5ae6e4683b9b9dcc13bc2f0faf223610a74f
15594Author: Keith Packard <keithp@keithp.com>
15595Date:   Fri Jul 15 04:27:32 2005 +0000
15596
15597    Add missing Makefile.am to lib/X11/modules
15598
15599commit 6d84a8b1329af1fcfe86b198f1a6e7dd6ff616c3
15600Author: Keith Packard <keithp@keithp.com>
15601Date:   Fri Jul 15 04:08:51 2005 +0000
15602
15603    Move i18n modules to top-level so they can be built in the right order (before xlib for non-loadable, after xlib for loadable).
15604    Link i18n modules against xlib to resolve Xlib symbols used by them.
15605
15606commit 45f40126a73295345bb5eb187b1167874842ab6e
15607Author: Alexander Gottwald <ago@freedesktop.org>
15608Date:   Thu Jul 14 19:50:00 2005 +0000
15609
15610    Add $(top_srcdir)/src to include list
15611
15612commit 0aed7d91f5928d09d541617aad03709b5090658d
15613Author: Matthieu Herrb <matthieu.herrb@laas.fr>
15614Date:   Thu Jul 14 17:04:49 2005 +0000
15615
15616    Build fix for non-GNU make.
15617
15618commit b79422ccb02ab44548d1038956ab0cd4e2638645
15619Author: Adam Jackson <ajax@nwnk.net>
15620Date:   Thu Jul 14 15:12:44 2005 +0000
15621
15622    typo fixes (Matthieu Herrb)
15623
15624commit 419304cde2fda19457c667870edefc0b227651b3
15625Author: Alan Coopersmith <alan.coopersmith@sun.com>
15626Date:   Wed Jul 13 02:41:36 2005 +0000
15627
15628    Add missing backslashes to xlocale_la_SOURCES
15629
15630commit d14cc5c8964c4539b57c6cb51ef653292e410b79
15631Author: Keith Packard <keithp@keithp.com>
15632Date:   Mon Jul 11 20:32:55 2005 +0000
15633
15634    Ammend AM_CFLAGS with all needed includes; cannot figure out an easy way to automate this.
15635
15636commit 424c2d8905eb2ad0a2df15b1da2f96140bfbcffb
15637Author: Lars Knoll <lars@trolltech.com>
15638Date:   Mon Jul 11 15:24:32 2005 +0000
15639
15640    compile
15641
15642commit de9784eb1bde46efc316da279e3da27c6cc288a7
15643Author: Keith Packard <keithp@keithp.com>
15644Date:   Mon Jul 11 09:26:40 2005 +0000
15645
15646    Ignore built man page files
15647
15648commit 0c258c36d1523113790c599b16d2947d7aa6469a
15649Author: Keith Packard <keithp@keithp.com>
15650Date:   Mon Jul 11 09:18:31 2005 +0000
15651
15652    Minor changes to help modular Xlib build i18n modules
15653
15654commit 6e752ea1203b786423e40f43340bce15ca3de0f0
15655Author: Keith Packard <keithp@keithp.com>
15656Date:   Mon Jul 11 08:29:18 2005 +0000
15657
15658    Enable loadable i18n modules, making them configurable on the configure command line.
15659    Clean up conditionals for XKB, XCMS, XLOCALEDIR
15660    Create new lib directory for locale modules in ${X11_LIBDIR}/locale/lib. Add this to the default XLOCALEDIR search path.
15661    Create separate X11_LOCALEDATADIR variable pointing at ${datadir}/X11/locale for installing locale data.
15662    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.
15663    Display message at end of configure script with selected options.
15664    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.
15665
15666commit b46cf0d879f1dbf92dcf5a0305d18986c766ed84
15667Author: Daniel Stone <daniel@fooishbar.org>
15668Date:   Sun Jul 10 22:37:33 2005 +0000
15669
15670    Fix segfault when _XimProtoCreateIC() fails to create a context; Debian #239991. (Chung-chieh Shan)
15671
15672commit 6f2132b18e61ca9755e4b45550f3f5097dd1fbb7
15673Author: Alan Coopersmith <alan.coopersmith@sun.com>
15674Date:   Sat Jul 9 20:06:04 2005 +0000
15675
15676    Set __libmansuffix__ & __xorgversion__ correctly when cpp processing man pages
15677
15678commit 3939ac4410446b46071c9d714f4270c12bf904fe
15679Author: Alan Coopersmith <alan.coopersmith@sun.com>
15680Date:   Sat Jul 9 18:44:14 2005 +0000
15681
15682    - 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
15683    - Don't assume $(CPP) can take gcc-only -traditional flag
15684    - CPP process man pages as is done in the monolithic tree
15685
15686commit 19ba9d0df86c688319377467254b9ea9c4b0eccc
15687Author: Keith Packard <keithp@keithp.com>
15688Date:   Sat Jul 9 06:01:49 2005 +0000
15689
15690    Clean up .cvsignore files
15691
15692commit f4bba6fa9b9ce637be7662754750054567e9250a
15693Author: Adam Jackson <ajax@nwnk.net>
15694Date:   Sat Jul 9 02:53:29 2005 +0000
15695
15696    typo fix. i suck.
15697
15698commit 3305da61a61695e24c1ea11d3f59dddb52873d47
15699Author: Adam Jackson <ajax@nwnk.net>
15700Date:   Sat Jul 9 02:41:18 2005 +0000
15701
15702    Check for bigfont proto headers via pkgconfig (Arwed von Merkatz)
15703
15704commit afdae2e8ccb93de2987b5a5e850695af15ece7e0
15705Author: Keith Packard <keithp@keithp.com>
15706Date:   Fri Jul 8 07:11:56 2005 +0000
15707
15708    Create and use XlibConf.h to match modular build which needs XTHREADS defined when building extensions
15709
15710commit 86fa88dc594ca2093030acf5c84973ee2b33eb4c
15711Author: Keith Packard <keithp@keithp.com>
15712Date:   Fri Jul 8 06:57:06 2005 +0000
15713
15714    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.
15715    Add a bunch of .cvsignore files
15716
15717commit 30f6ffedeaf899e699f0c6b14c9471ce9bcc430c
15718Author: Chris Less <clee@c133.org>
15719Date:   Mon Jul 4 23:01:48 2005 +0000
15720
15721    Fixing bug #380 - add a man page for XQueryExtension, XListExtensions, and XFreeExtensionList.
15722
15723commit 55328bb6caabd37885cd19d7a5821ed425daf321
15724Author: Eric Anholt <anholt@freebsd.org>
15725Date:   Sun Jul 3 10:17:38 2005 +0000
15726
15727    Avoid a gmake-specific construct, and instead just write the name of the current directory into each Makefile.am.
15728
15729commit 726538ba21b631bfb0b8094a5546acdaf57379ff
15730Author: Daniel Stone <daniel@fooishbar.org>
15731Date:   Sun Jul 3 07:37:33 2005 +0000
15732
15733    Fix more include paths; add dix-config.h to XKB code.
15734
15735commit 8c7677138e70e14eca0255f2168583f0ecc21994
15736Author: Daniel Stone <daniel@fooishbar.org>
15737Date:   Sun Jul 3 07:00:55 2005 +0000
15738
15739    Add Xtrans definitions (FONT_t, TRANS_CLIENT) to clean up warnings.
15740    Add XSERV_t, TRANS_SERVER, TRANS_REOPEN to quash warnings.
15741    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>.
15742
15743commit 197697c92a63091a4cc3cc04dcb7fa29d2655758
15744Author: Daniel Stone <daniel@fooishbar.org>
15745Date:   Fri Jul 1 22:13:35 2005 +0000
15746
15747    Fix objdir != srcdir, as well as make distcheck.
15748    Don't attempt to create Compose.pre files; formatting fixes.
15749    Added if not already present.
15750
15751commit c162d60ad8f124563f94a2a266de59373936266c
15752Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
15753Date:   Wed Jun 22 22:46:31 2005 +0000
15754
15755    Apply these patches from Theo van Klaveren:
15756    lib-dmx.patch lib-FS.patch lib-X11.patch lib-XRes.patch lib-XScrnSaver.patch lib-xtrans.patch
15757    to make the libraries distcheck.
15758
15759commit 9ee8abdab03ea605a6327118ab7dacab6adf8876
15760Author: Alan Coopersmith <alan.coopersmith@sun.com>
15761Date:   Sat Jun 18 07:48:43 2005 +0000
15762
15763    Move Secure RPC flags from X11/configure.ac to xtrans/xtrans.m4 since multiple modules will need them
15764
15765commit 12afc57b7d455781eee305e9ed6a899ceec8729e
15766Author: Daniel Stone <daniel@fooishbar.org>
15767Date:   Wed Jun 15 16:50:47 2005 +0000
15768
15769    Typo fix to locale/error/keysym location declarations.
15770
15771commit 9a895777e30762f61b98d25be3b5d8b1169baa17
15772Author: Daniel Stone <daniel@fooishbar.org>
15773Date:   Wed Jun 15 13:37:43 2005 +0000
15774
15775    Typo in ImUtil.h commit -- I AM CAPTAIN SKILL.
15776
15777commit add49285663684875ab7a5c58ec7a2cf8b775f67
15778Author: Daniel Stone <daniel@fooishbar.org>
15779Date:   Wed Jun 15 13:32:35 2005 +0000
15780
15781    Define locations for XErrorDB, XKeysymDB, and locale data in configure.ac. Add AC_DEFINE_DIR macro from autoconf-archive.cryp.to towards this end.
15782    Move ImUtil.h from src/ to include/X11/.
15783
15784commit 845dfc6b42b950890866ee4df27761e086f50dca
15785Author: Daniel Stone <daniel@fooishbar.org>
15786Date:   Wed Jun 15 13:27:48 2005 +0000
15787
15788    Move ImUtil.h from src/ to include/X11/. Additionally, copy Cmap.h as a distribution file.
15789
15790commit bba117f0d98f62cfb060d0fab97b407a3a0bfda9
15791Author: Daniel Stone <daniel@fooishbar.org>
15792Date:   Fri Jun 10 14:11:36 2005 +0000
15793
15794    Remove pointless include of Xlib.h.
15795    Fix #include path to bigreqstr.h.
15796
15797commit 1a0de49da1274882bab05b0f7240936b37955e5c
15798Author: Alexander Gottwald <ago@freedesktop.org>
15799Date:   Thu Jun 9 21:30:15 2005 +0000
15800
15801    Use $(srcdir) for Compose.pre and XLC_LOCALE.pre
15802
15803commit af4f0f302644ebfbb0ca9f4016a4aee85c973d37
15804Author: Alexander Gottwald <ago@freedesktop.org>
15805Date:   Thu Jun 9 15:55:33 2005 +0000
15806
15807    Replace <X11/transport.c> with <X11/Xtrans/transport.c>
15808
15809commit fd5f58e0baf692e34b9b622286f18762cc2500d3
15810Author: Alexander Gottwald <ago@freedesktop.org>
15811Date:   Thu Jun 9 15:52:02 2005 +0000
15812
15813    Replace <X11/Xtrans.h> with <X11/Xtrans/Xtrans.h>
15814    Copy Xtrans.h to exports/include/X11/Xtrans only
15815
15816commit 44538f9940f969d46c0e5e4b201c684cde2ba611
15817Author: Alan Coopersmith <alan.coopersmith@sun.com>
15818Date:   Sun Jun 5 03:29:33 2005 +0000
15819
15820    Port Imake flags to autoconf tests & --enable-* flags: HASSETUGID, HASGETRESUID, NO_XLOCALEDIR, HAS_SHM and XF86BIGFONT
15821
15822commit 588e30e9ec65fa6205a34be650b79d5e2243edec
15823Author: Alan Coopersmith <alan.coopersmith@sun.com>
15824Date:   Sat Jun 4 22:53:21 2005 +0000
15825
15826    Add --enable-secure-rpc flag and checks for needed functions for Secure RPC ("SUN-DES-1") authentication method
15827
15828commit a547afee2ef49cc41bbb67f9cff5a52a283c0854
15829Author: Alan Coopersmith <alan.coopersmith@sun.com>
15830Date:   Sat Jun 4 21:20:20 2005 +0000
15831
15832    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)
15833
15834commit ca93c761559ae464189c7ea7cf11c6a6679f2431
15835Author: Matthieu Herrb <matthieu.herrb@laas.fr>
15836Date:   Sat May 28 01:02:32 2005 +0000
15837
15838    Don't use $< in explicit rules. This only works with GNU make. <https://bugs.freedesktop.org/show_bug.cgi?id=3383>
15839
15840commit 09ebb349359e3dd9131fa2fa8b07559faa173654
15841Author: Alan Coopersmith <alan.coopersmith@sun.com>
15842Date:   Sun May 22 19:05:11 2005 +0000
15843
15844    Convert man pages to long file names in lib/X11, lib/Xt, & lib/Xext
15845
15846commit 761219b1ef9befc350c8a35b6f96d047e5f008cc
15847Author: Alan Coopersmith <alan.coopersmith@sun.com>
15848Date:   Sat May 21 23:07:48 2005 +0000
15849
15850    xtrans:
15851    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
15852    ICE:
15853    Add ICE_t #define required by Xtrans headers. Replace static defines of LOCALCONN & UNIXCONN with new XTRANS_CONNECTION_FLAGS macro.
15854    X11:
15855    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.
15856
15857commit 4b1ba6eb975b547b808f4d5c8825a3261de5e02a
15858Author: Alan Coopersmith <alan.coopersmith@sun.com>
15859Date:   Sat May 21 04:26:12 2005 +0000
15860
15861    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)
15862    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).
15863
15864commit 1d425d5e2092dd18a7dd599b37ed9af61cf59819
15865Author: Adam Jackson <ajax@nwnk.net>
15866Date:   Thu May 19 00:22:32 2005 +0000
15867
15868    revert last change, didn't do right thing at all, sorry for the noise
15869
15870commit 1b0c46c1ae61d751dd3ca96de8e2c3fe21c5f4f2
15871Author: Adam Jackson <ajax@nwnk.net>
15872Date:   Thu May 19 00:10:07 2005 +0000
15873
15874    Require automake 1.7 in AM_INIT_AUTOMAKE
15875
15876commit cd4657c175dbab6aaca36f18a0ca92c95b5567dd
15877Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
15878Date:   Tue May 17 22:32:09 2005 +0000
15879
15880    - Check for xproto as its CFLAGS are needed in the .pc file
15881
15882commit 46e8d8a65430dd87c10b066b5cff99a689c22241
15883Author: Egbert Eich <eich-at-freedesktop-dot-org>
15884Date:   Tue May 17 08:10:10 2005 +0000
15885
15886    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).
15887
15888commit 23198d2bfbf0049b2630235cd4d4a4ffba7ec6c1
15889Author:  <ssp@aware-of-vacuity.boston.redhat.com>
15890Date:   Mon May 16 22:35:27 2005 +0000
15891
15892    Make Xdmcp unconditionally required, require various protocol modules.
15893    Mon May 16 17:48:03 2005 Søren Sandmann <sandmann@redhat.com>
15894    Check for kbproto if using XKB.
15895    Require xextproto rather than xextensions
15896    Remove the entries from the xlibs tree, as they are not relevant here.
15897
15898commit 8bd3aea84ce54b8b76a898f3ae00e2b499c14a5e
15899Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
15900Date:   Mon May 16 21:48:36 2005 +0000
15901
15902    Mon May 16 17:48:03 2005 Søren Sandmann <sandmann@redhat.com>
15903    Check for kbproto if using XKB.
15904
15905commit 9b1fa9ca3ed852ed40860f137511683f4bdae6fa
15906Author:  <ssp@aware-of-vacuity.boston.redhat.com>
15907Date:   Mon May 16 21:27:35 2005 +0000
15908
15909    Require xextproto rather than xextensions
15910    Remove the entries from the xlibs tree, as they are not relevant here.
15911
15912commit 7eee605e3aeed549d1053325a03027c5e8cbf71b
15913Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
15914Date:   Fri May 13 22:53:36 2005 +0000
15915
15916    - For now put xtrans in X11/Xtrans/X11, since libX11 is looking for it in <X11/...>
15917    - For Xcomposite and Xdamage, don't link the build system out of the xc tree
15918    - Link the public X11 headers into their own directory
15919    - Add links to XKeysymDB and XErrorDB
15920    - Add links to all the Xlib man pages
15921    - Add links to the lcUniConv subdirectory
15922    - Conditionally include config.h in Xlib source
15923
15924commit 6769ccda88caf27d1441d335ef2b318a047a612b
15925Author: Alan Coopersmith <alan.coopersmith@sun.com>
15926Date:   Mon Mar 21 04:58:21 2005 +0000
15927
15928    xc/lib/X11/ErrDes.c
15929    //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>
15930
15931commit 3b9e8ece93b916c55a82df53e85f097418edf471
15932Author: Roland Mainz <roland.mainz@nrubsig.org>
15933Date:   Sat Mar 19 22:04:55 2005 +0000
15934
15935    xc/nls/Compose/iso8859-2
15936    xc/nls/Compose/iso8859-3
15937    xc/nls/Compose/iso8859-9
15938    //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>.
15939
15940commit 0ce5950a08b9ab23ca8a32effdd40c421e92df84
15941Author: Alan Coopersmith <alan.coopersmith@sun.com>
15942Date:   Tue Mar 8 02:53:36 2005 +0000
15943
15944    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>.
15945
15946commit df341cd2f2f263f13323e8c0936ea8aa0d7fbba1
15947Author: Roland Mainz <roland.mainz@nrubsig.org>
15948Date:   Tue Feb 1 03:12:28 2005 +0000
15949
15950    xc/nls/Compose/pt_BR.UTF-8
15951    //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>.
15952
15953commit 483d3973f56dda51f9251d3ea808aaf7f3b48c10
15954Author: Markus Kuhn <Markus.Kuhn@cl.cam.ac.uk>
15955Date:   Fri Jan 28 18:31:31 2005 +0000
15956
15957    cleaned up boundary-case handling for Uxxxx Unicode keysym notation
15958
15959commit f234188a4c1e6b655aef0e3957ccad20d4c5847f
15960Author: Roland Mainz <roland.mainz@nrubsig.org>
15961Date:   Wed Jan 19 01:53:55 2005 +0000
15962
15963    xc/nls/compose.dir
15964    xc/nls/locale.dir
15965    xc/nls/Compose/Imakefile
15966    xc/nls/Compose/pt_BR.UTF-8
15967    xc/nls/XI18N_OBJS/Imakefile
15968    xc/nls/XI18N_OBJS/pt_BR.UTF-8
15969    xc/nls/XLC_LOCALE/Imakefile
15970    xc/nls/XLC_LOCALE/pt_BR.UTF-8
15971    //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.
15972
15973commit 7448ea7ef425d35cfc31eb41d46f4d879774f376
15974Author: Egbert Eich <eich-at-freedesktop-dot-org>
15975Date:   Fri Jan 14 18:03:09 2005 +0000
15976
15977    Made some security enhancements:
15978    - no writing past end of buffer caused by bogus locale.
15979    - explicitely add a \0 character at end of string. (Bugzilla #2262)
15980
15981commit 5557d47fcf22a6f3adf327691158f2270e3d5094
15982Author: Roland Mainz <roland.mainz@nrubsig.org>
15983Date:   Fri Jan 14 04:59:05 2005 +0000
15984
15985    xc/nls/compose.dir
15986    xc/nls/locale.alias
15987    xc/nls/locale.dir
15988    //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>.
15989
15990commit 1fa3737f042f798fa11a9ff5b03f3b3ba3529824
15991Author: Egbert Eich <eich-at-freedesktop-dot-org>
15992Date:   Tue Jan 11 17:37:57 2005 +0000
15993
15994    '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.
15995
15996commit 642cd269f94a234aa470a1d43385bd42625d89a1
15997Author: Egbert Eich <eich-at-freedesktop-dot-org>
15998Date:   Tue Dec 14 08:59:20 2004 +0000
15999
16000    Removed #ifdef'ed out code together with the comment explaining why it was #ifdef'ed out.
16001    Fixed typo.
16002    Added comment to a changed that's been committed with one of the previous commits.
16003
16004commit a07ccae36e629741d2e48de7730114d30a975a41
16005Author: Matthieu Herrb <matthieu.herrb@laas.fr>
16006Date:   Sun Dec 12 08:42:50 2004 +0000
16007
16008    Fix missing XChangeProperty() prototype missing in synopsis section.
16009
16010commit c73adb1c8ad806c2f9f0ba32f4b449e7a871501c
16011Author: Alexander Gottwald <ago at freedesktop dot org>
16012Date:   Wed Dec 8 13:42:01 2004 +0000
16013
16014    Bugzilla #1980 (https://bugs.freedesktop.org/show_bug.cgi?id=1980) Handle XERRORDB only on WIN32 platform
16015
16016commit d5e7ab194103e22fd6c5094aaa107d90210bb600
16017Author: Jim Gettys <jg@freedesktop.org>
16018Date:   Thu Dec 2 16:18:16 2004 +0000
16019
16020    fix comment to indicate additional possible mode. i bug 1756 reported by Owen Taylor.
16021
16022commit 03940d7330cb1bbf93d49c650aefb19de457da7c
16023Author: Alexander Gottwald <ago at freedesktop dot org>
16024Date:   Wed Dec 1 13:06:55 2004 +0000
16025
16026    Bugzilla #1980, https://bugs.freedesktop.org/show_bug.cgi?id=1980 Make location of XErrorDB configurable
16027
16028commit 11a03ab908bfcfab8a3492684e8e9320e492d552
16029Author: Alexander Gottwald <ago at freedesktop dot org>
16030Date:   Wed Dec 1 12:42:17 2004 +0000
16031
16032    Bugzilla #1864, http://freedesktop.org/bugzilla/show_bug.cgi?id=1864 Initialize pointer to NULL to avoid freeing random memory
16033
16034commit f3d83ee153f42e8899b844377e6b842d93411e62
16035Author: Alexander Gottwald <ago@freedesktop.org>
16036Date:   Mon Nov 15 15:06:54 2004 +0000
16037
16038    Bufzilla #1802, http://freedesktop.org/bugzilla/show_bug.cgi?id=1802 Added mingw (Win32) port
16039
16040commit b798ea11911ac58a8e6e7d15a2a643b023859749
16041Author: Alexander Gottwald <ago at freedesktop dot org>
16042Date:   Mon Nov 15 13:29:56 2004 +0000
16043
16044    Bugzilla #1864, http://freedesktop.org/bugzilla/show_bug.cgi?id=1864 Initialize pointer to NULL to avoid freeing random memory
16045
16046commit 436108cd6c84053698e5ca629096f59b34f50c2a
16047Author: Kristian Høgsberg <krh@redhat.com>
16048Date:   Thu Nov 11 15:37:01 2004 +0000
16049
16050    Fix #1818
16051
16052commit bf2e6ef66ba55f90efa4a4ba8c8b6d3ec0d1531c
16053Author: Roland Mainz <roland.mainz@nrubsig.org>
16054Date:   Tue Nov 9 00:56:56 2004 +0000
16055
16056    xc/nls/compose.dir
16057    xc/nls/locale.alias
16058    xc/nls/locale.dir
16059    //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>.
16060
16061commit 443890ceefbd6dafe68e30d103ec4f9d316ed655
16062Author: Roland Mainz <roland.mainz@nrubsig.org>
16063Date:   Fri Nov 5 00:58:49 2004 +0000
16064
16065    xc/nls/compose.dir
16066    xc/nls/locale.alias
16067    xc/nls/locale.dir
16068    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>.
16069
16070commit af7467ec734321f127b957921cce7792902b6794
16071Author: Egbert Eich <eich-at-freedesktop-dot-org>
16072Date:   Mon Oct 18 17:29:03 2004 +0000
16073
16074    Correcting font encodings for GB18030, GBK and BIG5-HKSCS. Adding nls support for those encodings (Bugzilla 1573, James Su).
16075
16076commit 1b900b59cb24fe8be3db0d434b04d462c0eeb206
16077Author: Egbert Eich <eich-at-freedesktop-dot-xorg>
16078Date:   Mon Oct 18 14:21:45 2004 +0000
16079
16080    Made handling of DevelDrivers for x86-64 more conformant to other platforms.
16081    Compress all font encodings (Stefan Dirsch).
16082    Fixed warnings.
16083    Turn on forwarding XNSpotLocation event to XIM server in OffTheSpot and Root mode (bugzilla #1580, James Su).
16084    Added another compose key combination for the Euro symbol (Stefan Dirsch).
16085    Added support for UTF-8 in ja_JP, ko_KR and zh_TW locales (Mike Fabian).
16086    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.
16087    Added explanation for DESTDIR to install to a different directory than /.
16088    Added some early bailouts to atiprobe if PCI structure pointer is NULL to prevent sig11.
16089    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.
16090    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().
16091    Use /dev/xconsole (named pipe) or devpts for system logger (Werner Fink).
16092    Create missing links for backward compatibility to XFree86 (Stefan Dirsch).
16093    Changed comment to mention xorg.
16094    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).
16095    Added 'pic' to the man page rendering command pipeline (Werner Fink).
16096    Added missing return value (Stefan Dirsch, Roland Mainz)
16097
16098commit 1ba103c3cad2329db3a31f88d7798b913affc570
16099Author: Eric Anholt <anholt@freebsd.org>
16100Date:   Wed Oct 13 07:38:00 2004 +0000
16101
16102    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>)
16103
16104commit d80237db627bf71ad5615ff4ba05e6ab436aa740
16105Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
16106Date:   Fri Oct 8 22:57:56 2004 +0000
16107
16108    Fri Oct 8 18:53:11 2004 Soeren Sandmann <sandmann@redhat.com>
16109    Move iso10646 last so the "fallback" fonts will actually be used if they are better matches.
16110
16111commit d1f76d17ecf418396627b1a58319f2b9b255548a
16112Author: Markus Kuhn <Markus.Kuhn@cl.cam.ac.uk>
16113Date:   Sun Sep 26 22:54:57 2004 +0000
16114
16115    bug fix for previous patch
16116
16117commit 48932d9b71d10e15812f47d5b842ab6aa8dac625
16118Author: Markus Kuhn <Markus.Kuhn@cl.cam.ac.uk>
16119Date:   Sun Sep 26 20:46:17 2004 +0000
16120
16121    The big keysym cleanup, to bring implementation in line with the recent revision of Appendix A of the protocol spec. (Markus Kuhn)
16122
16123commit 2e02a95dcc43dd3ec7bbaf4675ffb94f5074f543
16124Author: Egbert Eich <eich@freedesktop.org>
16125Date:   Wed Sep 15 09:05:22 2004 +0000
16126
16127    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).
16128    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).
16129
16130commit 2d3afb68a104a80a21ee622b9abb9c95e83505d3
16131Author: Egbert Eich <eich@freedesktop.org>
16132Date:   Tue Aug 31 11:37:03 2004 +0000
16133
16134    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).
16135
16136commit e689746c8d0e21e9011e8b91a3071d235d3a2a74
16137Author: Kevin E Martin <kem@kem.org>
16138Date:   Thu Aug 19 06:48:06 2004 +0000
16139
16140    Fix header file to #ifdef the XKB keysyms when they are used. This fixes the X test suite build failure.
16141
16142commit d558a53a6f57eecfcaadce5141fe3a08860defcb
16143Author: Keith Packard <keithp@keithp.com>
16144Date:   Sat Aug 14 07:12:36 2004 +0000
16145
16146    Use XLIB_SKIP_ARGB_VISUALS environment variable to disable all depth 32 visuals. Necessary to keep Flash from crashing.
16147    Must call ValidateGC/ValidatePicture on "real" GC/Picture to ensure pCompositeClip is set correctly.
16148    Need to take the composite clip from the "real" GC/Picture and turn it into the clientClip for the backing version.
16149    Adjust pixmap screen origin to account for drawable->x/y Change debugging output a bit (disabled by default)
16150
16151commit 85c2d81f299ed3444658011b7d6fb0a7ab8a6f55
16152Author: Alexander Gottwald <ago@freedesktop.org>
16153Date:   Fri Aug 13 16:28:19 2004 +0000
16154
16155    Set most significant bit to be a one. (Bug #1024, Kensuke Matsuzaki)
16156    Fix conversion from sjis and euc. (Bug #1024, Toshio Takabe)
16157
16158commit c4d56e4e288d4e48b84b021a61638f46e9a45e27
16159Author: Adam Jackson <ajax@nwnk.net>
16160Date:   Wed Aug 11 05:25:13 2004 +0000
16161
16162    Bug #372: Prevent a crash in XPolygonRegion when called with a bogus point count. Reported by Andreas Luik.
16163
16164commit 92487437173f600f208d825f65756d3ad14a4f7e
16165Author: Kevin E Martin <kem@kem.org>
16166Date:   Mon Aug 9 22:37:22 2004 +0000
16167
16168    Fix install problem on platforms not using xorg.cf/xfree86.cf (Bug #339, Harold L. Hunt II, Alexander Gottwald).
16169    Fix crash when using X core font in zh_CN.UTF-8 locale (Bug #368, Yu Shao, David Dawes).
16170    Fix glXMakeCurrent(Dpy, None, NULL) crash (Bug #719, Adam Jackson).
16171    HP-PA build fix (Bug #828, Guy Martin, Paul Anderson).
16172    Fix SDK build for GATOS and Wacom driver (Bug #829, Bryan Stine).
16173    Fix attempt to read video ROM before enabling it (Bug #843, Ivan Kokshaysky, Mike A. Harris).
16174    Fix detection of primary adapter (Bug #843, Ivan Kokshaysky, Mike A. Harris).
16175    Clarify xset man page description of how to use the keyboard repeat rate settings (Bug #846, Mike A. Harris).
16176    Fix problem where print-screen key would get remapped to sys-req in certain keymaps, which broke GNOME printscreen functionality (Bug #847, Owen Taylor).
16177    Fix several render problems:
16178    - MMIO mode support
16179    - Hang on IGP chips
16180    - VT switching hang
16181    - 3D render corruption (Bug #922, Hui Yu).
16182
16183commit 55c2ee568e7d3903258286a13bdf96ce5348ffda
16184Author: Matthieu Herrb <matthieu.herrb@laas.fr>
16185Date:   Tue Jul 27 06:06:05 2004 +0000
16186
16187    - remove remaining AMOEBA references.
16188    - remove unused file.
16189
16190commit 6e884b12911eedfb003e90a3829ce66f7fc9cf2d
16191Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
16192Date:   Tue Jul 20 17:48:09 2004 +0000
16193
16194    Tue Jul 20 19:38:06 2004 Soeren Sandmann <sandmann@daimi.au.dk>
16195    Set font_data->xlfd_data to NULL after XFree(). (#837, patch from Bastien Nocera).
16196    Tue Jul 20 18:23:32 2004 Soeren Sandmann <sandmann@daimi.au.dk>
16197    Use /dev/urandom on Linux.(#761).
16198
16199commit 6f0bc97aa4e6de5a4b001f40ac10795cfdf09fc1
16200Author: Eric Anholt <anholt@freebsd.org>
16201Date:   Fri May 28 23:26:44 2004 +0000
16202
16203    Forced commit to note repocopy from xc/lib/XThrStub, will be connected to the build after this.
16204
16205commit aa7010c43ae9f39fb84b5ff155f76117c9e527a0
16206Author: Egbert Eich <eich@pdx.freedesktop.org>
16207Date:   Mon May 24 19:02:11 2004 +0000
16208
16209    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.
16210
16211commit 720702da29769d80ad1254d92edbad5b30f8a8da
16212Author: Alan Coopersmith <alan.coopersmith@sun.com>
16213Date:   Sat May 22 03:47:42 2004 +0000
16214
16215    Bugzilla #658: XStringToKeysym fails for Greek_IOTAdiaeresis (Fixes VSW5 testcase XStringToKeysym-7 failure)
16216
16217commit 3aed873292424b497d9a7dcee2975b95bf5ac966
16218Author: Alan Coopersmith <alan.coopersmith@sun.com>
16219Date:   Sat Apr 24 23:39:25 2004 +0000
16220
16221    XOpenDisplay should try tcp connection if local connections fail (aka Sun bug id #4624183).
16222    Also includes fix from NetBSD Problem Report #25098 (Michael van Elst) (Xlib segfaults with IPv6 if compiled with HASXDMAUTH).
16223    xc/config/cf/sunLib.tmpl
16224    xc/lib/FS/Imakefile Add missing shared library dependencies for Solaris
16225
16226commit c6349f43193b74a3c09945f3093a871b0157ba47
16227Author: Egbert Eich <eich@freedesktop.org>
16228Date:   Fri Apr 23 18:42:09 2004 +0000
16229
16230    Merging XORG-CURRENT into trunk
16231
16232commit c3c4ddc682950a01b80825021f3e2503ab01ea7f
16233Author: Kaleb Keithley <kaleb@freedesktop.org>
16234Date:   Tue Nov 25 19:28:07 2003 +0000
16235
16236    Initial revision
16237
16238commit dc4268a7dadc8da0d561757a68461246728613d3
16239Author: Kaleb Keithley <kaleb@freedesktop.org>
16240Date:   Fri Nov 14 16:48:47 2003 +0000
16241
16242    Initial revision
16243
16244commit deae12c6b683898f5213992d561a59d4ea889cca
16245Author: Kaleb Keithley <kaleb@freedesktop.org>
16246Date:   Fri Nov 14 15:54:30 2003 +0000
16247
16248    R6.6 is the Xorg base-line
16249