ChangeLog revision 818534a1
1commit cb107760df33ffc8630677e66e2e50aa37950a5c
2Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3Date:   Sun Sep 8 18:37:01 2013 -0700
4
5    libX11 1.6.2
6
7commit 215ce6a67863de7acfd6dd3562b4fd97ef87b411
8Author: Benno Schulenberg <bensberg@justemail.net>
9Date:   Sun Sep 1 12:38:30 2013 +0200
10
11    nls: Adding more accessible compose sequences for J́ and j́.
12    
13    Few keyboards have an <acute> key, so this adds the much more
14    accessible and usual compose sequences with <apostrophe>, ánd
15    the most comfortable ones with <dead_acute>.
16    
17    Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
18    Signed-off-by: James Cloos <cloos@jhcloos.com>
19
20commit e9b14d10d0258bfcc273ff8bc84cd349dccda62c
21Author: Alan Coopersmith <alan.coopersmith@oracle.com>
22Date:   Sat Aug 24 17:27:43 2013 -0700
23
24    Bug 68413 - [Bisected]Error in `xterm': realloc(): invalid next size
25    
26    Pass *new* size to realloc, not old size.
27    
28    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
29
30commit c2b8e30790c21d6386767265263b3294ce1b1f9a
31Author: Alan Coopersmith <alan.coopersmith@oracle.com>
32Date:   Fri Aug 16 21:04:02 2013 -0700
33
34    Stop checking for HAVE_DIX_CONFIG_H on the client side
35    
36    Leftover from when these XKB files were shared with the server sources
37    and could be compiled in either the client or server, with the different
38    autoconf config files in each.
39    
40    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
41
42commit 84276609b2f0aec74fb464c428c7db5714b0fcfc
43Author: Alan Coopersmith <alan.coopersmith@oracle.com>
44Date:   Fri Aug 16 18:27:28 2013 -0700
45
46    Rearrange some variable declarations & initializations in XKB
47    
48    Little things noticed during XKB restyling that seemed to make the
49    code easier to read.
50    
51    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
52
53commit b90b7e859cf45ec76921fa21bbfc1f3840d6e8d1
54Author: Alan Coopersmith <alan.coopersmith@oracle.com>
55Date:   Sun Aug 11 13:29:33 2013 -0700
56
57    Reindent XKB code to X.Org standard style
58    
59    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
60
61commit c0a0f78eb49c2e4ad956209de77475c85b9314ea
62Author: Alan Coopersmith <alan.coopersmith@oracle.com>
63Date:   Fri Aug 16 18:14:14 2013 -0700
64
65    Fix overflow checks in _XkbReadKeySyms when key_sym_map is already created
66    
67    We were checking to make sure that the largest keysym value was within
68    the range of the allocated buffer, but checking against different limits
69    in the not-yet-allocated vs. the already-allocated branches.
70    
71    The check should be the same in both, and reflect the size used for the
72    allocation, which is based on the maximum key code value, so we move it
73    to be a common check, before we branch, instead of duplicating in each
74    branch.
75    
76    map->key_sym_map is an array of XkbSymMapRec structs, [0..max_key_code]
77    map->syms is the array for which num_syms is recorded, hence is not the
78    right value to check for ensuring our key_sym_map accesses are in range.
79    
80    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
81    Reported-by: Barry Kauler <bkauler@gmail.com>
82    Tested-by: Barry Kauler <bkauler@gmail.com>
83
84commit bea6cbd027973142fc64532274e1d16861b47190
85Author: Alan Coopersmith <alan.coopersmith@oracle.com>
86Date:   Sun Aug 11 17:02:21 2013 -0700
87
88    Remove long unused src/udcInf.c
89    
90    I can find no record of what this file was for.  Neither the X11R6.8.2
91    monolith Imakefile nor any modular release Makefile.am have ever built
92    it and nothing else references it.
93    
94    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
95
96commit bf3501e0395abe890acfea98fdd9f50a6966f118
97Author: Alan Coopersmith <alan.coopersmith@oracle.com>
98Date:   Sun Aug 11 00:07:33 2013 -0700
99
100    Remove unnecessary casts of pointers to (char *) in calls to Xfree()
101    
102    Left one cast behind that is necessary to change from const char *
103    to char * in src/xlibi18n/lcCharSet.c.
104    
105    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
106
107commit 6ead9dd92ab90aabd9f0e328d59597e6b5bc09d3
108Author: Alan Coopersmith <alan.coopersmith@oracle.com>
109Date:   Sat Aug 10 23:57:55 2013 -0700
110
111    Don't cast sizeof() results to unsigned when passing to Xmalloc/Xcalloc
112    
113    sizeof() returns size_t, malloc() & calloc() expect sizes in size_t,
114    don't strip down to unsigned int and re-expand unnecessarily.
115    
116    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
117
118commit 25a7a329def672fc8d26078538173777850c6390
119Author: Alan Coopersmith <alan.coopersmith@oracle.com>
120Date:   Sat Aug 10 23:51:08 2013 -0700
121
122    Remove even more casts of return values from Xmalloc/Xrealloc
123    
124    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
125
126commit f8fa16092a148b74ca35b4beb182053352606f2f
127Author: Alan Coopersmith <alan.coopersmith@oracle.com>
128Date:   Sat Aug 10 23:05:13 2013 -0700
129
130    xlibi18n: fix argsize argument to _XlcParsePath
131    
132    The array is defined as having NUM_LOCALEDIR entries, so use that
133    instead of hardcoded 256 value (the other two calls already did this).
134    
135    Reported by parfait:
136       Buffer overflow (CWE 120): In pointer dereference of argv[argc] with index argc
137          Pointer size is 64 elements (of 8 bytes each), index is 255
138            at line 82 of src/xlibi18n/lcFile.c in function 'parse_line'.
139            called at line 178 in function '_XlcParsePath' with argv = argv.
140            called at line 722 in function '_XlcLocaleLibDirName' with argv = args, argsize = 256.
141            at line 82 of src/xlibi18n/lcFile.c in function 'parse_line'.
142            called at line 178 in function '_XlcParsePath' with argv = argv.
143            called at line 638 in function '_XlcLocaleDirName' with argv = args, argsize = 256.
144    
145    [ This bug was found by the Parfait 1.2.0 bug checking tool.
146      http://labs.oracle.com/pls/apex/f?p=labs:49:::::P49_PROJECT_ID:13 ]
147    
148    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
149
150commit e7d46c6452c0b90fd66ae9f538546b968e0dd608
151Author: Alan Coopersmith <alan.coopersmith@oracle.com>
152Date:   Sat Aug 10 22:32:42 2013 -0700
153
154    i18n modules: Fix some const cast warnings
155    
156    imRm.c: In function '_XimSetICMode':
157    imRm.c:2419:37: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
158    imRm.c:2420:30: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
159    
160    lcGenConv.c: In function 'byteM_parse_codeset':
161    lcGenConv.c:345:13: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
162    
163    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
164
165commit cbd86eccf175dc82a5cbcea54c8bd21ce18b70c0
166Author: Alan Coopersmith <alan.coopersmith@oracle.com>
167Date:   Sat Aug 10 22:21:54 2013 -0700
168
169    xlibi18n: Fix a bunch of const cast warnings
170    
171    Add const qualifiers to casts where needed, remove other casts that
172    are no longer needed.
173    
174    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
175
176commit eb3676113fc2dd0f34d92b89beb81b3f61569aa1
177Author: Alan Coopersmith <alan.coopersmith@oracle.com>
178Date:   Sat Aug 10 22:18:00 2013 -0700
179
180    Fix const handling in XSetLocaleModifiers
181    
182    Instead of reusing the input parameter to store the output, make a
183    result variable instead, so that there's less const confusion.
184    
185    Fixes gcc warnings:
186    lcWrap.c: In function 'XSetLocaleModifiers':
187    lcWrap.c:87:18: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
188    lcWrap.c:91:25: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
189    lcWrap.c:93:12: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
190    
191    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
192
193commit 8ebbffa98563960910152e4f2e31cb032375d871
194Author: Alan Coopersmith <alan.coopersmith@oracle.com>
195Date:   Sat Aug 10 21:46:37 2013 -0700
196
197    Constify lc_name argument to _XlcLocaleDirName() & _XlcLocaleLibDirName()
198    
199    Makes code considerably less crufty and clears gcc warnings:
200    XlcDL.c: In function '_XlcDynamicLoad':
201    XlcDL.c:384:44: warning: cast discards '__attribute__((const))' qualifier
202     from pointer target type [-Wcast-qual]
203    XlcDL.c:386:51: warning: cast discards '__attribute__((const))' qualifier
204     from pointer target type [-Wcast-qual]
205    
206    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
207
208commit 07e4e864107b38c2f393564fdacc90f4e858f23f
209Author: Alan Coopersmith <alan.coopersmith@oracle.com>
210Date:   Sat Aug 10 13:37:53 2013 -0700
211
212    init_om: remove unneeded extra copy of string to local buffer
213    
214    Strings from the supported_charset_list[] were being copied one by
215    one to a stack buffer, and then strdup called on that buffer.
216    
217    Instead, just strdup the original string, without the local copy,
218    and use a more traditional for loop, so it's easier to figure out
219    what the code is doing (cleaning up a gcc const-cast warning in
220    the process).
221    
222    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
223    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
224
225commit 1cec14dad904ba21a861f4af131be5982ecb83dd
226Author: Alan Coopersmith <alan.coopersmith@oracle.com>
227Date:   Sat Aug 10 12:34:53 2013 -0700
228
229    Delete unused XKB_INSURE_SIZE macro from XKBlibint.h
230    
231    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
232    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
233
234commit 5f32182c7c4045540ff3833c48ee24a3a25726e2
235Author: Alan Coopersmith <alan.coopersmith@oracle.com>
236Date:   Sat Aug 10 12:19:17 2013 -0700
237
238    miRegionOp(): ensure region size is not updated if realloc fails
239    
240    This function performs operations on a region, and when finished,
241    checks to see if it should compact the rectangle list.  If the
242    number of rectangles for which memory is allocated in the list is
243    more than twice the number used, it tries to shrink.   realloc()
244    should not fail in this case, but if it does, might as well keep
245    the correct value for the number of allocated rectangles, so we
246    don't try to grow it unnecessarily later if adding to the region.
247    
248    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
249
250commit bd2a0b5a187798bb2e2f05dc5062ca79e37075dd
251Author: Alan Coopersmith <alan.coopersmith@oracle.com>
252Date:   Sat Aug 10 12:19:17 2013 -0700
253
254    miRegionCopy(): handle realloc failure better
255    
256    Zero out the region size when freeing the region so callers don't think
257    there's anything there.   (Pointer is already set to NULL from the realloc
258    result itself.)  Return 0 to the callers, and have them cascade that back
259    to their callers to indicate failure, instead of their usual return value
260    of 1 on success.
261    
262    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
263
264commit 5dc8b5385d513bbda88697c2372db750d23f46d4
265Author: Alan Coopersmith <alan.coopersmith@oracle.com>
266Date:   Sat Aug 10 11:27:22 2013 -0700
267
268    Avoid memory leak/corruption if realloc fails in Xregion.h:MEMCHECK macro
269    
270    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
271
272commit 453c4ee436ef32d91501d7736d7a91c1aeafc565
273Author: Alan Coopersmith <alan.coopersmith@oracle.com>
274Date:   Sat Aug 10 12:07:51 2013 -0700
275
276    Avoid memory leak/corruption if realloc fails in imLcPrs.c:parseline()
277    
278    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
279
280commit b3fea74ec5b7d4f83755a52a8d49c564b71c6d12
281Author: Alan Coopersmith <alan.coopersmith@oracle.com>
282Date:   Sat Aug 10 12:30:39 2013 -0700
283
284    lcDB.c: ensure buffer size is updated correctly if realloc fails
285    
286    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
287
288commit 43bb822c714a73c3b2d15e621ffb3333cd10da8c
289Author: Alan Coopersmith <alan.coopersmith@oracle.com>
290Date:   Sat Aug 10 11:07:47 2013 -0700
291
292    Avoid memory leak/corruption if realloc fails in XlcDL.c:resolve_object()
293    
294    Previously, if realloc failed to increase the size, we'd still
295    record that we had allocated the larger size, but the pointer
296    to it would be NULL, causing future calls to be broken, and the
297    previous allocation to be lost/leaked.
298    
299    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
300    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
301
302commit 5d47a39978e92bb34ec928b1b15d71c0c2434870
303Author: Alan Coopersmith <alan.coopersmith@oracle.com>
304Date:   Fri Aug 9 23:33:03 2013 -0700
305
306    omGeneric.c: convert sprintf calls to snprintf
307    
308    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
309    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
310
311commit 88a27a2aa9b7d35cb79b16334ea3413e572b724a
312Author: Alan Coopersmith <alan.coopersmith@oracle.com>
313Date:   Fri Aug 9 23:30:30 2013 -0700
314
315    ximcp/imRm.c: convert sprintf calls to snprintf
316    
317    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
318    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
319
320commit 4fadae243fb485628c9a137f5da3489ed6214b21
321Author: Alan Coopersmith <alan.coopersmith@oracle.com>
322Date:   Fri Aug 9 23:02:12 2013 -0700
323
324    xlibi18n: convert sprintf calls to snprintf
325    
326    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
327    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
328
329commit 36a7edf0e5edfc5ef4ff2c3a8b4fa3dc4796e854
330Author: Alan Coopersmith <alan.coopersmith@oracle.com>
331Date:   Fri Aug 9 23:02:12 2013 -0700
332
333    lcfile: skip over any null entries in args list
334    
335    Previous code seemed to assume that printf("%s", NULL) would result
336    in a 0-length string, not "(null)" or similar, but since there's no
337    point looking for files in "(null)/filepath...", instead we just
338    skip over NULL entries in search paths when generating file names.
339    
340    In the *DirName() functions, this effectively just moves the "bail on
341    NULL in arg[i]" check up from the later code that assigned it to targetdir
342    and then bailed if that was NULL.
343    
344    Not sure how there ever could be a NULL in arg[i], given the current
345    implementation of XlcParsePath, but it's easy enough to check once and
346    reject up front instead of on every reference.
347    
348    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
349
350commit ee0824f24392d5ca3d5fd5f5ed8d78c0d892f7c0
351Author: Alan Coopersmith <alan.coopersmith@oracle.com>
352Date:   Fri Aug 9 22:00:09 2013 -0700
353
354    Fix file leak on malloc error in XlcDL.c:resolve_object()
355    
356    File Leak: Leaked File fp
357       at line 219 of lib/libX11/src/xlibi18n/XlcDL.c in function 'resolve_object'.
358          fp initialized at line 198 with fopen
359    
360    [ This bug was found by the Parfait 1.2.0 bug checking tool.
361      http://labs.oracle.com/pls/apex/f?p=labs:49:::::P49_PROJECT_ID:13 ]
362    
363    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
364    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
365
366commit 9b291044a240e5b9b031ed814e0c84e53a1c3084
367Author: Julien Cristau <jcristau@debian.org>
368Date:   Sat Jun 15 18:02:21 2013 +0200
369
370    Add missing locales to configure.ac
371    
372    Commits 40761898692e5063957bfa2518cca3d35b2e354a and
373    f198c6aa98f88ff285d903175a3c4c0fd33a4575 added two new locales
374    (sr_CS.UTF-8 and km_KH.UTF-8), but didn't list them in configure.ac,
375    meaning they're not included in tarballs.
376    
377    Signed-off-by: Julien Cristau <jcristau@debian.org>
378    Reviewed-by: James Cloos <cloos@jhcloos.com>
379
380commit 8f58e54a5f46c3cd4897a23b89950f4800ae38d4
381Author: ISHIKAWA,chiaki <ishikawa@yk.rim.or.jp>
382Date:   Tue Dec 18 15:28:05 2012 +0000
383
384    Fix bogus timestamp generated by XIM
385    
386    Fix bogus timestamp generted by XIM due to uninitialized
387    data field. Also set appropriate serial, too.
388    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=39367
389    
390    Signed-off-by: Chiaki ISHIKAWA <ishikawa@yk.rim.or.jp>
391    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
392
393commit e7fd6f0eda57300df4d6b695b7064610ca5dec57
394Author: Egbert Eich <eich@freedesktop.org>
395Date:   Thu Jun 16 18:47:49 2011 +0200
396
397    XIM: Fix sync problem on focus change.
398    
399    XSetICFocus() and XUnsetICFocus() are both asynchronous events.
400    This is a pretty stupid idea: those functions may undo certain
401    settings on the client side for which requests from the server
402    may still be in the queue unprocessed. Thus things may be set
403    in the wrong order ie instead of set -> unest it will be unset -> set.
404    Moreover there is no way for either the client or the server to
405    cause the event queue to be flushed - which is pretty bad as
406    XIM is bidirectional.
407    The scenario is as follows:
408    Two ICs are created:
409            ic1 = XCreateIC(im,
410                XNInputStyle, XIMPreeditCallbacks | XIMStatusCallbacks,
411                XNClientWindow, window,
412                XNPreeditAttributes, preedit_attr,
413                XNStatusAttributes, status_attr,
414                NULL);
415            ic2 = XCreateIC(im, XNInputStyle,
416                           XIMPreeditNothing | XIMStatusNothing,
417                           XNClientWindow, window, NULL);
418    Then the focus is removed from ic2:
419            XUnsetICFocus(ic2);
420    If SCIM is used as the input server it will send a bunch of requests
421    following an XCreateIC(). One of the requests registers a key release
422    filter. XUnsetICFocus() unsets both key press and release filters.
423    Since it is asynchronous, the input server requests to register key
424    press and release filters may not have been processed, when XUnsetICFocus()
425    is called. Since there is no explicite way for client programs to enforce
426    the request queue to be flushed explicitely before an X[Set/Unset]ICFocus()
427    call it would be safest to make those two calls synchronous in the sense
428    that they ensure the request queue has been handled before they execute.
429    The easiest way to do this from Xlib is thru a call to XGetICValues()
430    which sends a request to the server and subsequently reads the queue
431    from the server to the client. This will cause all outstanding requests
432    in the queue to be read and handled.
433    This is an ugly hack and this could be fixed directly in the client,
434    however it seems to be easier to fix Xlib than to fix numerous clients.
435    This problem arose since there is no well documented way how to handle
436    and synchronize XIM requests and not all input servers send requests
437    when an IC is created.
438    This has been discussed extensively in:
439     https://bugzilla.novell.com/show_bug.cgi?id=221326
440    
441    Signed-off-by: Egbert Eich <eich@freedesktop.org>
442
443commit 26ec7d3821bc19debc73c8c3e42e6e33ef6f856e
444Author: Egbert Eich <eich@freedesktop.org>
445Date:   Thu Jun 16 17:28:39 2011 +0200
446
447    XIM: Fix race on focus change: set 'FABRICATED' only when keyev filters in place.
448    
449    When synthesized key events are sent on commit XIM sets the 'fabricated'
450    flag so that the keypress handler knows that these were not real events.
451    This also happens when committing due to the loss of focus. However in this
452    case the keypress/release filters which consume and unset this flag are no
453    longer in the filter chain.
454    So the flag is erronously set when a real keyboard event is received after
455    focus has been regained. So the first event is wrongly treated as a
456    fabricated key in the keypress handler which will at the same time reset
457    the flag so the second key event is treated correctly.
458    This fix only sets the flag when at least one of the keyboard filters is in
459    place.
460    How to reproduce this bug: run scim, choose a Japanese input method start
461    two instances of xterm: start typing in one xterm (this should pop up an
462    IM window). Without comitting (hitting 'enter') move focus to the other
463    xterm, then move focus back. Start typing again. The first character will
464    be committed immediately without popping up an input window.
465    With this fix this behavior is gone.
466    
467    See also: https://bugzilla.novell.com/show_bug.cgi?id=239698
468    
469    Signed-off-by: Egbert Eich <eich@freedesktop.org>
470
471commit 44f84223f5e2dd46883fcbd352af2798bfa9aeb6
472Author: Alan Coopersmith <alan.coopersmith@oracle.com>
473Date:   Mon Jul 29 21:29:49 2013 -0700
474
475    libX11 1.6.1
476    
477    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
478
479commit d19cfaca15826943d3c637ef7fa5db0a23d5feed
480Author: Alan Coopersmith <alan.coopersmith@oracle.com>
481Date:   Sat Jul 27 12:19:00 2013 -0700
482
483    Fix undefined XCMSDIR error when building lint library
484    
485    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
486
487commit 3083cd43d7dcd59da587975e7cadda681cd8a103
488Author: Alan Coopersmith <alan.coopersmith@oracle.com>
489Date:   Sat Jul 27 00:36:08 2013 -0700
490
491    Add ku_TR.UTF-8 (Kurdish language, Turkey region) to compose/locale.dir
492    
493    Upstreaming from changes originally integrated into OpenSolaris
494    under Sun bug id 6882572.
495    
496    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
497    Reviewed-by: Thomas Klausner <wiz@NetBSD.org>
498
499commit 208e586c808e88a2ee819e4450dc27f557afc2bf
500Author: Alan Coopersmith <alan.coopersmith@oracle.com>
501Date:   Sat Jul 27 01:03:18 2013 -0700
502
503    omGeneric: remove space between struct name & member name
504    
505    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
506
507commit 7db74514e454d3fc4ff70aa08ddac66bfffda4dd
508Author: Alan Coopersmith <alan.coopersmith@oracle.com>
509Date:   Tue Jul 23 22:18:46 2013 -0700
510
511    Refactor common code from XAddHost & XRemoveHost into single function
512    
513    On the Xlib side, the only real difference is the mode flag we send
514    to the server with the address, so just make that an argument to the
515    function with the common code for packing the address into the request.
516    
517    (Aside from labels, gcc 4.7.2 generates identical code before & after
518     this change due to inlining, verified via diff of gcc -S output.)
519    
520    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
521
522commit 3292195a64a9ce4f0d27134cd544651ec647e728
523Author: Alan Coopersmith <alan.coopersmith@oracle.com>
524Date:   Tue Jul 23 22:11:34 2013 -0700
525
526    XSetModifierMapping: Use Data instead of GetReqExtra
527    
528    Handle arbitrary length data in the same fashion as other calls,
529    avoiding need to ensure it fits all in the request buffer.
530    
531    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
532
533commit feb131b18aee31c2c125dc3275b0260940245882
534Author: Kees Cook <kees@outflux.net>
535Date:   Sun Jun 9 11:13:43 2013 -0700
536
537    libX11: check "req" when calling GetReqExtra
538    
539    This fixes the two callers of GetReqExtra to check that "req" is non-NULL
540    to avoid crashing now that GetReqExtra does internal bounds-checking on
541    the resulting buffer sizes.
542    
543    Additionally updates comment describing return values to use names
544    instead of only literal values.
545    
546    Signed-off-by: Kees Cook <kees@outflux.net>
547    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
548    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
549
550commit 54540d7cba0c2bfe9176221c7bca910058d304df
551Author: Kees Cook <kees@outflux.net>
552Date:   Sun Jun 9 11:13:42 2013 -0700
553
554    libX11: check size of GetReqExtra after XFlush
555    
556    Two users of GetReqExtra pass arbitrarily sized allocations from the
557    caller (ModMap and Host). Adjust _XGetRequest() (called by the GetReqExtra
558    macro) to double-check the requested length and invalidate "req" when
559    this happens. Users of GetReqExtra passing lengths greater than the Xlib
560    buffer size (normally 16K) must check "req" and fail gracefully instead
561    of crashing.
562    
563    Any callers of GetReqExtra that do not check "req" for NULL
564    will experience this change, in the pathological case, as a NULL
565    dereference instead of a buffer overflow. This is an improvement, but
566    the documentation for GetReqExtra has been updated to reflect the need
567    to check the value of "req" after the call.
568    
569    Bug that manifested the problem:
570    https://bugs.launchpad.net/ubuntu/+source/x11-xserver-utils/+bug/792628
571    
572    Signed-off-by: Kees Cook <kees@outflux.net>
573    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
574    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
575
576commit 24d3ee0d08f24e23c91d55702f010f73d7b908e5
577Author: Thomas Klausner <wiz@NetBSD.org>
578Date:   Tue Jun 25 22:35:29 2013 +0200
579
580    Tighten out-of-range comparisons.
581    
582    [For all of these, LONG_MAX was the correct value to prevent overflows
583     for the recent CVEs.   Lowering to INT_MAX catches buggy replies from
584     the server that 32-bit clients would reject but 64-bit would accept,
585     so we catch bugs sooner, and really, no sane & working server should
586     ever report more than 2gb of extension names, font path entries,
587     key modifier maps, etc.  -alan- ]
588    
589    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
590    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
591
592commit 6d926088d80a08e13e6d6c4ff207b81ad52e667f
593Author: Thomas Klausner <wiz@NetBSD.org>
594Date:   Tue Jun 25 18:34:32 2013 +0200
595
596    Fix out-of-range comparison in _XF86BigfontQueryFont
597    
598    clang complained (correctly):
599    warning: comparison of constant 768614336404564650 with expression
600    of type 'CARD32' (aka 'unsigned int') is always true
601    [-Wtautological-constant-out-of-range-compare]
602    
603    [While LONG_MAX is correct, since it's used in size_t math, the
604     numbers have to be limited to 32-bit range to be usable by 32-bit
605     clients, and values beyond that range are far more likely to be
606     bugs in the data from the server than valid numbers of characters
607     in a font.   -alan- ]
608    
609    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
610    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
611
612commit 383e2b0d029482a0f4c39fe00e15397538576fc1
613Author: Thomas Klausner <wiz@NetBSD.org>
614Date:   Tue Jun 25 18:33:56 2013 +0200
615
616    Check for symbol existence with #ifdef, not #if
617    
618    Reviewed-by: Jamey Sharp <jamey@minilop.net>
619    
620    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
621
622commit 9955d1c8de994a90fe7f2e3187e7362611d7d265
623Author: Thomas Klausner <wiz@NetBSD.org>
624Date:   Tue Jun 25 18:33:07 2013 +0200
625
626    Use newer callback-based API for XIM.
627    
628    Let libX11 load and make available the newer (X11R6) callback-based
629    API for XIM (expected by emacs).
630    
631    This patch updates the files to match the other nls/ files.
632    
633    Patch from Ian D. Leroux <idleroux@fastmail.fm> on pkgsrc-users@NetBSD.org
634    following a hint by Nhat Minh Lê <nhat.minh.le@gmail.com>.
635    
636    Reviewed-by: James Cloos <cloos@jhcloos.com>
637    
638    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
639
640commit a17ceb7100bd36c2db210473ee701deb5d515731
641Author: Thomas Klausner <wiz@NetBSD.org>
642Date:   Tue Jun 25 18:31:32 2013 +0200
643
644    Stop truncating source to destination length if it is larger.
645    
646    It seems useless to do that since the code tests for both source
647    length and destination to be non-zero. This fixes a cut'n'paste
648    problem in xterm where the paste length was limited to 1024 (BUFSIZ)
649    in button.c.
650    
651    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
652
653commit a336db9a0add3ae0783dda6e52459236622a12af
654Author: Alan Coopersmith <alan.coopersmith@oracle.com>
655Date:   Mon Jun 24 23:02:05 2013 -0700
656
657    Require ANSI C89 pre-processor, drop pre-C89 token pasting support
658    
659    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
660
661commit 9dfb0f3c0a761590bcdc1f3396b1e064da4e18e8
662Author: Alan Coopersmith <alan.coopersmith@oracle.com>
663Date:   Fri Jun 7 11:30:11 2013 -0700
664
665    troff macro expansion in specs/libX11
666    
667    Many of the custom nroff macros (.ds <macro> <contents>) were left
668    unsubstituted in the nroff->docbook conversion.   This substitution
669    is now performed, via the following perl script:
670    
671    #! /usr/bin/perl -w -i
672    
673    use Text::Wrap;
674    
675    while ($_ = <>) {
676        while ($_ =~ m/\((\w+)\b/g) {
677            my $m = $1;
678            if (exists $macro{$m}) {
679                $_ =~ s/\($m/$macro{$m}/;
680                $_ = wrap('', '', $_);
681                $_ =~ s/[ \t]+$//;
682            }
683        }
684    
685        if ($_ =~ /\<!-- .ds (\w+) (.*) -->/) {
686            my ($m, $s) = ($1, $2);
687            $macro{$m} = $s;
688            while ($macro{$m} =~ /\\\s*$/) {
689                $macro{$m} =~ s/\\\s*$//ms;
690                $macro{$m} .= <>;
691                chomp($macro{$m});
692            }
693            $macro{$m} =~ s/\\ / /g;
694        } else {
695            print $_;
696        }
697    }
698    
699    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
700
701commit 20c17bd9ebf767a24643279e45866dddcb57b5ce
702Author: Alan Coopersmith <alan.coopersmith@oracle.com>
703Date:   Fri Jun 7 09:27:26 2013 -0700
704
705    specs/libX11: correct prototype for XListPixmapFormats/XImageByteOrder
706    
707    The XListPixmapFormats arguments was being shown with XImageByteOrder's
708    name and return types.   Appears to have been a glitch in the nroff ->
709    docbook conversion.
710    
711    Reported-by: ZHANG Zhaolong <zhangzl2013@126.com>
712    Reviewed-by: Jamey Sharp <jamey@minilop.net>
713    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
714
715commit ed3d830243c8a0eefaf24e15b11823272ffe5049
716Author: Thomas Klausner <wiz@NetBSD.org>
717Date:   Sun Jun 2 20:49:55 2013 +0200
718
719    Deal with the limited range of VAX floating point numbers when compiling for VAX.
720    
721    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
722
723commit 0a48235d63639fb917c44d27c86e928e79fbac66
724Author: Eric S. Raymond <esr@thyrsus.com>
725Date:   Thu Jun 6 16:43:56 2013 -0400
726
727    Remove call to undefined macro.
728
729commit 9e4719b9b719f2f8d255f6778e2e8c1809e32599
730Author: Eric S. Raymond <esr@thyrsus.com>
731Date:   Thu Jun 6 16:42:20 2013 -0400
732
733    Remove call to undefined macro.
734
735commit 8496122eb00ce6cd5d2308ee54f64b68c378e455
736Author: Alan Coopersmith <alan.coopersmith@oracle.com>
737Date:   Mon Jun 3 20:06:43 2013 -0700
738
739    Update README to reflect where to find the Xlib specs now
740    
741    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
742
743commit 655d631e86c95b14888758b27ed2836ca3e3ce86
744Author: Alan Coopersmith <alan.coopersmith@oracle.com>
745Date:   Mon Jun 3 19:21:06 2013 -0700
746
747    libX11 1.6.0
748    
749    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
750
751commit 4a89b7ea908554628f374537a79931c8006a2de3
752Author: Thomas Klausner <wiz@NetBSD.org>
753Date:   Sun Jun 2 11:49:54 2013 -0700
754
755    cmsMath.c: Add missing stdio header for printf(3) in DEBUG build.
756    
757    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
758
759commit 96dcf747f13b26b8e4d17b1bc8605d933c3e1dc6
760Author: Thomas Klausner <wiz@NetBSD.org>
761Date:   Sun Jun 2 20:49:48 2013 +0200
762
763    XCreateGC man page: Avoid .TS H and .TH macros
764    
765    Avoid .TS H and .TH for now as it doesn't alter the output in this case,
766    and improve the output with mandoc(1).
767    
768    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
769
770commit 95a388158c9d73df7d24016d6a3d61506d7d53a4
771Author: Alan Coopersmith <alan.coopersmith@oracle.com>
772Date:   Thu May 23 19:43:35 2013 -0700
773
774    libX11 1.5.99.902 (1.6 RC2)
775    
776    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
777
778commit a3bdd2b090915fe0163b062f0e6576fe05dd332e
779Author: Julien Cristau <jcristau@debian.org>
780Date:   Thu May 23 20:39:46 2013 +0200
781
782    xkb: fix off-by-one in _XkbReadGetNamesReply and _XkbReadVirtualModMap
783    
784    The size of the arrays is max_key_code + 1.  This makes these functions
785    consistent with the other checks added for CVE-2013-1997.
786    
787    Also check the XkbGetNames reply when names->keys was just allocated.
788    
789    Signed-off-by: Julien Cristau <jcristau@debian.org>
790    Tested-by: Colin Walters <walters@verbum.org>
791    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
792
793commit 7e30056e78e4b7979ff47f102e00327617266019
794Author: Niveditha Rau <Niveditha.Rau@Oracle.COM>
795Date:   Fri May 17 15:26:21 2013 -0700
796
797    Make sure internal headers include required headers
798    
799    Fixes builds with Solaris Studio 12.3 when lint is enabled, since it no
800    longer ignores *.h files, but complains when they reference undefined
801    typedefs or macros.
802    
803    Signed-off-by: Niveditha Rau <Niveditha.Rau@Oracle.COM>
804    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
805
806commit 2820100bf8ba130b94253f415e7fa5ac28bb2037
807Author: Alan Coopersmith <alan.coopersmith@oracle.com>
808Date:   Thu May 16 23:05:36 2013 -0700
809
810    Free fs->properties in _XF86BigfontQueryFont overflow error path
811    
812    Fixes small memory leak introduced in commit 5669a22081
813    
814    Reported-by: Julien Cristau <jcristau@debian.org>
815    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
816
817commit 3131740513133a9ff7cb12123d29ceb18584fc38
818Author: Matthieu Herrb <matthieu.herrb@laas.fr>
819Date:   Wed May 8 19:33:09 2013 +0200
820
821    XListFontsWithInfo: Re-decrement flist[0] before calling free() on it.
822    
823    Freeing a pointer that wasn't returned by malloc() is undefined
824    behavior and produces an error with OpenBSD's implementation.
825    
826    Signed-off-by: Matthieu Herrb <matthieu.herrb@laas.fr>
827    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
828    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
829
830commit 3fe4bea086149f06a142a8f1d575f627ec1e22c7
831Author: Alan Coopersmith <alan.coopersmith@oracle.com>
832Date:   Fri Apr 19 14:30:40 2013 -0700
833
834    Give GNU & Solaris Studio compilers hints about XEatData branches
835    
836    Try to offset the cost of all the recent checks we've added by giving
837    the compiler a hint that the branches that involve us eating data
838    are less likely to be used than the ones that process it.
839    
840    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
841
842commit e1b457beb8d4e831ef44279dada6c475cb955738
843Author: Alan Coopersmith <alan.coopersmith@oracle.com>
844Date:   Sun Mar 31 12:22:35 2013 -0700
845
846    _XkbReadGetMapReply: reject maxKeyCodes smaller than the minKeyCode
847    
848    Various other bounds checks in the code assume this is true, so
849    enforce it when we first get the data from the X server.
850    
851    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
852
853commit 12ad4c6432496897ff000eb7cfecd0fb4b290331
854Author: Alan Coopersmith <alan.coopersmith@oracle.com>
855Date:   Sat Mar 16 10:03:13 2013 -0700
856
857    Use calloc in XOpenDisplay to initialize structs containing pointers
858    
859    Prevents trying to free uninitialized pointers if we have to bail out
860    partway through setup, such as if we receive a corrupted or incomplete
861    connection setup block from the server.
862    
863    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
864
865commit d38527e25f8b6e2f1174ecc21260c5c5416f972e
866Author: Alan Coopersmith <alan.coopersmith@oracle.com>
867Date:   Thu Mar 7 23:46:05 2013 -0800
868
869    Remove more unnecessary casts from Xmalloc/calloc calls
870    
871    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
872
873commit b2c86b582c58f50c7b14da01cf7ebd20ef12a6b2
874Author: Alan Coopersmith <alan.coopersmith@oracle.com>
875Date:   Sat Mar 2 16:56:16 2013 -0800
876
877    Convert more _XEatData callers to _XEatDataWords
878    
879    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
880    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
881
882commit 192bbb9e2fc45df4e17b35b6d14ea0eb418dbd39
883Author: Alan Coopersmith <alan.coopersmith@oracle.com>
884Date:   Sat Mar 9 11:04:37 2013 -0800
885
886    Make XGetWindowProperty() always initialize returned values
887    
888    Avoids memory corruption and other errors when callers access them
889    without checking to see if XGetWindowProperty() returned an error value.
890    
891    Callers are still required to check for errors, this just reduces the
892    damage when they don't.
893    
894    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
895    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
896    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
897
898commit db1b1c871da29aa0545182bf888df81627f165a5
899Author: Alan Coopersmith <alan.coopersmith@oracle.com>
900Date:   Sat Mar 2 15:08:21 2013 -0800
901
902    Avoid overflows in XListExtensions() [CVE-2013-1997 15/15]
903    
904    Ensure that when breaking the returned list into individual strings,
905    we don't walk past the end of allocated memory to write the '\0' bytes
906    
907    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
908    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
909
910commit 8d5936594993921acdfec778dd8f41b555e2543a
911Author: Alan Coopersmith <alan.coopersmith@oracle.com>
912Date:   Sat Mar 2 15:08:21 2013 -0800
913
914    Avoid overflows in XGetFontPath() [CVE-2013-1997 14/15]
915    
916    Ensure that when breaking the returned list into individual strings,
917    we don't walk past the end of allocated memory to write the '\0' bytes
918    
919    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
920    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
921
922commit 0c404db6a92dc2c198328bf586c02d8abbe02013
923Author: Alan Coopersmith <alan.coopersmith@oracle.com>
924Date:   Sat Mar 2 15:08:21 2013 -0800
925
926    Avoid overflows in XListFonts() [CVE-2013-1997 13/15]
927    
928    Ensure that when breaking the returned list into individual strings,
929    we don't walk past the end of allocated memory to write the '\0' bytes
930    
931    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
932    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
933
934commit 0b0f5d4358c3de7563d6af03f0d2ce454702a06a
935Author: Alan Coopersmith <alan.coopersmith@oracle.com>
936Date:   Sat Mar 2 15:08:21 2013 -0800
937
938    integer overflow in XGetModifierMapping() [CVE-2013-1981 13/13]
939    
940    Ensure that we don't underallocate when the server claims a very large reply
941    
942    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
943    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
944
945commit a351b8103b2ba78882e1c309e85893ca3abe2073
946Author: Alan Coopersmith <alan.coopersmith@oracle.com>
947Date:   Sat Mar 2 15:08:21 2013 -0800
948
949    integer overflow in XGetPointerMapping() & XGetKeyboardMapping() [CVE-2013-1981 12/13]
950    
951    Ensure that we don't underallocate when the server claims a very large reply
952    
953    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
954    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
955
956commit 833f6b70bc789d33607f6dbfee9e0a4178ec4b59
957Author: Alan Coopersmith <alan.coopersmith@oracle.com>
958Date:   Sat Mar 2 15:08:21 2013 -0800
959
960    integer overflow in XGetImage() [CVE-2013-1981 11/13]
961    
962    Ensure that we don't underallocate when the server claims to have sent a
963    very large reply.
964    
965    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
966    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
967
968commit 79d8dc08eb98842173ce239b9dd60df0e9e9ae72
969Author: Alan Coopersmith <alan.coopersmith@oracle.com>
970Date:   Fri Mar 8 22:25:35 2013 -0800
971
972    integer overflow in XGetWindowProperty() [CVE-2013-1981 10/13]
973    
974    If the reported number of properties is too large, the calculations
975    to allocate memory for them may overflow, leaving us returning less
976    memory to the caller than implied by the value written to *nitems.
977    
978    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
979    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
980    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
981
982commit 164bf4dfe839b1cc75cdeee378a243d04a8200e4
983Author: Alan Coopersmith <alan.coopersmith@oracle.com>
984Date:   Sat Mar 2 13:18:48 2013 -0800
985
986    integer overflows in TransFileName() [CVE-2013-1981 9/13]
987    
988    When trying to process file paths the tokens %H, %L, & %S are expanded
989    to $HOME, the standard compose file path & the xlocaledir path.
990    If enough of these tokens are repeated and values like $HOME are set to
991    very large values, the calculation of the total string size required to
992    hold the expanded path can overflow, resulting in allocating a smaller
993    string than the amount of data we'll write to it.
994    
995    Simply restrict all of these values, and the total path size to PATH_MAX,
996    because really, that's all you should need for a filename path.
997    
998    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
999    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1000    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
1001
1002commit 460e8a223b87d4fa0ea1e97823e998a770e0f2a2
1003Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1004Date:   Fri Mar 1 18:37:37 2013 -0800
1005
1006    integer truncation in _XimParseStringFile() [CVE-2013-1981 8/13]
1007    
1008    Called from _XimCreateDefaultTree() which uses getenv("XCOMPOSEFILE")
1009    to specify filename.
1010    
1011    If the size of off_t is larger than the size of unsigned long (as in
1012    32-bit builds with large file flags), a file larger than 4 gigs could
1013    have its size truncated, leading to data from that file being written
1014    past the end of the undersized buffer allocated for it.
1015    
1016    While configure.ac does not use AC_SYS_LARGEFILE to set large file mode,
1017    builders may have added the large file compilation flags to CFLAGS on
1018    their own.
1019    
1020    size is left limited to an int, because if your Xim file is
1021    larger than 2gb, you're doing it wrong.
1022    
1023    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
1024    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1025    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
1026
1027commit 226622349a4b1e16064649d4444a34fb4be4f464
1028Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1029Date:   Sat Mar 2 12:39:58 2013 -0800
1030
1031    Unbounded recursion in _XimParseStringFile() when parsing include files [CVE-2013-2004 2/2]
1032    
1033    parseline() can call _XimParseStringFile() which can call parseline()
1034    which can call _XimParseStringFile() which can call parseline() ....
1035    eventually causing recursive stack overflow and crash.
1036    
1037    Limit is set to a include depth of 100 files, which should be enough
1038    for all known use cases, but could be adjusted later if necessary.
1039    
1040    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
1041    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1042    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
1043
1044commit 236b603d235dc264d1c6250dca09c745458a9088
1045Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1046Date:   Sat Mar 2 12:01:39 2013 -0800
1047
1048    Unbounded recursion in GetDatabase() when parsing include files [CVE-2013-2004 1/2]
1049    
1050    GetIncludeFile() can call GetDatabase() which can call GetIncludeFile()
1051    which can call GetDatabase() which can call GetIncludeFile() ....
1052    eventually causing recursive stack overflow and crash.
1053    
1054    Easily reproduced with a resource file that #includes itself.
1055    
1056    Limit is set to a include depth of 100 files, which should be enough
1057    for all known use cases, but could be adjusted later if necessary.
1058    
1059    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
1060    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1061    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
1062
1063commit 076428918e6c35f66b9b55c3fa097ff06496d155
1064Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1065Date:   Fri Mar 1 18:37:37 2013 -0800
1066
1067    integer overflow in ReadInFile() in Xrm.c [CVE-2013-1981 7/13]
1068    
1069    Called from XrmGetFileDatabase() which gets called from InitDefaults()
1070    which gets the filename from getenv ("XENVIRONMENT")
1071    
1072    If file is exactly 0xffffffff bytes long (or longer and truncates to
1073    0xffffffff, on implementations where off_t is larger than an int),
1074    then size may be set to a value which overflows causing less memory
1075    to be allocated than is written to by the following read() call.
1076    
1077    size is left limited to an int, because if your Xresources file is
1078    larger than 2gb, you're very definitely doing it wrong.
1079    
1080    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
1081    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1082    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
1083
1084commit 90fd5abac2faca86f9f100353a3c9c7b89f31484
1085Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1086Date:   Sat Mar 2 11:44:19 2013 -0800
1087
1088    Integer overflows in stringSectionSize() cause buffer overflow in ReadColornameDB() [CVE-2013-1981 6/13]
1089    
1090    LoadColornameDB() calls stringSectionSize() to do a first pass over the
1091    file (which may be provided by the user via XCMSDB environment variable)
1092    to determine how much memory needs to be allocated to read in the file,
1093    then allocates the returned sizes and calls ReadColornameDB() to load the
1094    data from the file into that newly allocated memory.
1095    
1096    If stringSectionSize() overflows the signed ints used to calculate the
1097    file size (say if you have an xcmsdb with ~4 billion lines in or a
1098    combined string length of ~4 gig - which while it may have been
1099    inconceivable when Xlib was written, is quite possible today), then
1100    LoadColornameDB() may allocate a memory buffer much smaller than the
1101    amount of data ReadColornameDB() will write to it.
1102    
1103    The total size is left limited to an int, because if your xcmsdb file
1104    is larger than 2gb, you're doing it wrong.
1105    
1106    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
1107    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1108    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
1109
1110commit b9ba832401734e1cbd30a930c0d11d850293f3f9
1111Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1112Date:   Sat Mar 2 11:25:25 2013 -0800
1113
1114    unvalidated length in _XimXGetReadData() [CVE-2013-1997 12/15]
1115    
1116    Check the provided buffer size against the amount of data we're going to
1117    write into it, not against the reported length from the ClientMessage.
1118    
1119    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
1120    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1121    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
1122
1123commit de2e6c322c4aca22856b380f67f8e488e7510015
1124Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1125Date:   Sat Mar 2 11:11:08 2013 -0800
1126
1127    unvalidated index/length in _XkbReadGetNamesReply() [CVE-2013-1997 11/15]
1128    
1129    If the X server returns key name indexes outside the range of the number
1130    of keys it told us to allocate, out of bounds memory writes could occur.
1131    
1132    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
1133    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1134    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
1135
1136commit 2df882eeb3a70256170127a746a9ba26376599a1
1137Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1138Date:   Sat Mar 2 11:01:04 2013 -0800
1139
1140    unvalidated index in _XkbReadVirtualModMap() [CVE-2013-1997 10/15]
1141    
1142    If the X server returns modifier map indexes outside the range of the number
1143    of keys it told us to allocate, out of bounds memory writes could occur.
1144    
1145    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
1146    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1147    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
1148
1149commit 4d7c422a37eb9617fb22f8e37527c2b34b105665
1150Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1151Date:   Sat Mar 2 11:04:44 2013 -0800
1152
1153    unvalidated index in _XkbReadExplicitComponents() [CVE-2013-1997 9/15]
1154    
1155    If the X server returns key indexes outside the range of the number of
1156    keys it told us to allocate, out of bounds memory writes could occur.
1157    
1158    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
1159    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1160    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
1161
1162commit e56a2ada719c5cfac5ed61a52a80ade86c0f5957
1163Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1164Date:   Sat Mar 2 10:51:51 2013 -0800
1165
1166    unvalidated index in _XkbReadModifierMap() [CVE-2013-1997 8/15]
1167    
1168    If the X server returns modifier map indexes outside the range of the number
1169    of keys it told us to allocate, out of bounds memory writes could occur.
1170    
1171    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
1172    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1173    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
1174
1175commit 06c086e8a1d8374ea9a95ff989f053c96bb1bdca
1176Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1177Date:   Sat Mar 2 10:39:21 2013 -0800
1178
1179    unvalidated index in _XkbReadKeyBehaviors() [CVE-2013-1997 7/15]
1180    
1181    If the X server returns key behavior indexes outside the range of the number
1182    of keys it told us to allocate, out of bounds memory writes could occur.
1183    
1184    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
1185    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1186    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
1187
1188commit 00626c3830b869259098985afa38933d77ccec72
1189Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1190Date:   Sat Mar 2 09:40:22 2013 -0800
1191
1192    unvalidated index in _XkbReadKeyActions() [CVE-2013-1997 6/15]
1193    
1194    If the X server returns key action indexes outside the range of the number
1195    of keys it told us to allocate, out of bounds memory access could occur.
1196    
1197    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
1198    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1199    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
1200
1201commit fd7d4956bc7a1c4b5c38661b12777ebee4d685d9
1202Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1203Date:   Sat Mar 2 09:28:33 2013 -0800
1204
1205    unvalidated index in _XkbReadKeySyms() [CVE-2013-1997 5/15]
1206    
1207    If the X server returns keymap indexes outside the range of the number of
1208    keys it told us to allocate, out of bounds memory access could occur.
1209    
1210    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
1211    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1212    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
1213
1214commit 59ae16a00d18588e98af57d26e442af8ea42b7aa
1215Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1216Date:   Sat Mar 2 09:18:26 2013 -0800
1217
1218    unvalidated indexes in _XkbReadGetGeometryReply() [CVE-2013-1997 4/15]
1219    
1220    If the X server returns color indexes outside the range of the number of
1221    colors it told us to allocate, out of bounds memory access could occur.
1222    
1223    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
1224    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1225    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
1226
1227commit bff938b9fe1629cbacb726509edfa2a3840b7207
1228Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1229Date:   Sat Mar 2 09:12:47 2013 -0800
1230
1231    unvalidated indexes in _XkbReadGeomShapes() [CVE-2013-1997 3/15]
1232    
1233    If the X server returns shape indexes outside the range of the number
1234    of shapes it told us to allocate, out of bounds memory access could occur.
1235    
1236    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
1237    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1238    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
1239
1240commit f293659d5a4024bda386305bb7ebeb4647c40934
1241Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1242Date:   Fri Mar 1 22:49:01 2013 -0800
1243
1244    unvalidated index in _XkbReadGetDeviceInfoReply() [CVE-2013-1997 2/15]
1245    
1246    If the X server returns more buttons than are allocated in the XKB
1247    device info structures, out of bounds writes could occur.
1248    
1249    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
1250    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1251    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
1252
1253commit cddc4e7e3cb4b9b7ad25f8591971a86901c249f2
1254Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1255Date:   Fri Mar 1 19:30:09 2013 -0800
1256
1257    unvalidated lengths in XAllocColorCells() [CVE-2013-1997 1/15]
1258    
1259    If a broken server returned larger than requested values for nPixels or
1260    nMasks, XAllocColorCells would happily overflow the buffers provided by
1261    the caller to write the results into.
1262    
1263    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
1264    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1265    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
1266
1267commit 2cd62b5eb99ffbb2fce99f3c459455e630b35bf7
1268Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1269Date:   Fri Mar 1 22:49:01 2013 -0800
1270
1271    integer overflow in XListHosts() [CVE-2013-1981 5/13]
1272    
1273    If the reported number of host entries is too large, the calculations
1274    to allocate memory for them may overflow, leaving us writing beyond the
1275    bounds of the allocation.
1276    
1277    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
1278    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1279    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
1280
1281commit 1f6a3dbf699b85c0ea715ef21de7e7095a714e12
1282Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1283Date:   Fri Mar 1 22:49:01 2013 -0800
1284
1285    integer overflow in XGetMotionEvents() [CVE-2013-1981 4/13]
1286    
1287    If the reported number of motion events is too large, the calculations
1288    to allocate memory for them may overflow, leaving us writing beyond the
1289    bounds of the allocation.
1290    
1291    v2: Ensure nEvents is set to 0 when returning NULL events pointer
1292    
1293    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
1294    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1295
1296commit 39515b7c3ba8cae9021bf6695e378ae19487082f
1297Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1298Date:   Fri Mar 1 22:49:01 2013 -0800
1299
1300    integer overflow in XListFontsWithInfo() [CVE-2013-1981 3/13]
1301    
1302    If the reported number of remaining fonts is too large, the calculations
1303    to allocate memory for them may overflow, leaving us writing beyond the
1304    bounds of the allocation.
1305    
1306    v2: Fix reply_left calculations, check calculated sizes fit in reply_left
1307    v3: On error cases, also set values to be returned in pointer args to 0/NULL
1308    
1309    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
1310    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1311
1312commit 5669a220816b7d58fcaf0c302ead16fbe5c87817
1313Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1314Date:   Fri Mar 1 21:05:27 2013 -0800
1315
1316    integer overflow in _XF86BigfontQueryFont() [CVE-2013-1981 2/13]
1317    
1318    Similar to _XQueryFont, but with more ways to go wrong and overflow.
1319    Only compiled if libX11 is built with XF86BigFont support.
1320    
1321    v2: Fix reply_left calculations, check calculated sizes fit in reply_left
1322    
1323    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
1324    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1325
1326commit 6df8a63d34b7514077188e2062a13774f920c085
1327Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1328Date:   Fri Mar 1 21:05:27 2013 -0800
1329
1330    integer overflow in _XQueryFont() on 32-bit platforms [CVE-2013-1981 1/13]
1331    
1332    If the CARD32 reply.nCharInfos * sizeof(XCharStruct) overflows an
1333    unsigned long, then too small of a buffer will be allocated for the
1334    data copied in from the reply.
1335    
1336    v2: Fix reply_left calculations, check calculated sizes fit in reply_left
1337    
1338    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
1339    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1340
1341commit 9f5d83706543696fc944c1835a403938c06f2cc5
1342Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1343Date:   Fri Mar 1 20:54:24 2013 -0800
1344
1345    Add _XEatDataWords to discard a given number of 32-bit words of reply data
1346    
1347    Matches the units of the length field in X protocol replies, and provides
1348    a single implementation of overflow checking to avoid having to replicate
1349    those checks in every caller.
1350    
1351    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1352    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
1353
1354commit d7f04c340ade3834e603c23d543132e1ee4e0c63
1355Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1356Date:   Sat Mar 2 13:03:55 2013 -0800
1357
1358    Move repeated #ifdef magic to find PATH_MAX into a common header
1359    
1360    Lets stop duplicating the mess all over
1361    
1362    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1363    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
1364
1365commit f3a553a4e4a55d9d19deda1ea01883e1d5d682b1
1366Author: Pander <pander@users.sourceforge.net>
1367Date:   Tue May 7 18:38:14 2013 -0400
1368
1369    Add compose sequences for J́ and j́.
1370    
1371    The resulting sequences are:
1372    
1373      U+004A LATIN CAPITAL LETTER J  U+0301 COMBINING ACUTE ACCENT
1374      U+006A LATIN SMALL LETTER J    U+0301 COMBINING ACUTE ACCENT
1375    
1376    Used in Dutch, per:
1377    
1378      http://lists.x.org/archives/xorg-devel/2013-February/035514.html
1379      https://nl.wikipedia.org/wiki/Accenttekens_in_de_Nederlandse_spelling
1380    
1381    Signed-off-by: Pander <pander@users.sourceforge.net>
1382    Signed-off-by: James Cloos <cloos@jhcloos.com>
1383
1384commit f49bb2dd6d4ea45c55bd21acc0efe2b764441020
1385Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1386Date:   Sat Mar 16 18:30:56 2013 -0700
1387
1388    Move big request comment in XOpenDisplay to the right place
1389    
1390    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1391
1392commit 3996543c1b2919e97d61a5d70fe1ebd7cd76fc83
1393Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1394Date:   Sat Mar 9 19:16:03 2013 -0800
1395
1396    libX11 1.5.99.901 (1.6 RC1)
1397    
1398    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1399
1400commit f9cd175a471116a616e681fb0ca1a61b3d84a6a0
1401Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1402Date:   Fri Mar 8 22:33:28 2013 -0800
1403
1404    Fix very weird indenting in src/GetFProp.c
1405    
1406    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1407
1408commit e9bd757630368afb374c5d1bcc5d4d85ad3c6c4c
1409Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1410Date:   Fri Mar 8 15:37:33 2013 -0800
1411
1412    XAllocClassHint: Assume calloc sets pointers in allocated memory to NULL
1413    
1414    While the C standard technically allows for the compiler to translate
1415    pointer = 0 or pointer = NULL into something other than filling the
1416    pointer address with 0 bytes, the rest of the Xlib code already assumes
1417    that calloc initializes any pointers in the struct to NULL, and there
1418    are no known systems supported by X.Org where this is not true.
1419    
1420    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1421
1422commit 39547d600a13713e15429f49768e54c3173c828d
1423Author: Karl Tomlinson <xmail@karlt.net>
1424Date:   Mon Feb 18 01:25:34 2013 +0000
1425
1426    MakeBigReq: don't move the last word, already handled by Data32
1427    
1428    MakeBigReq inserts a length field after the first 4 bytes of the request
1429    (after req->length), pushing everything else back by 4 bytes.
1430    
1431    The current memmove moves everything but the first 4 bytes back.
1432    If a request aligns to the end of the buffer pointer when MakeBigReq is
1433    invoked for that request, this runs over the buffer.
1434    Instead, we need to memmove minus the first 4 bytes (which aren't moved),
1435    minus the last 4 bytes (so we still align to the previous tail).
1436    
1437    The 4 bytes that fell out are already handled with Data32, which will
1438    handle the buffermax correctly.
1439    
1440    The case where req->length = 1 was already not functional.
1441    
1442    Reported by Abhishek Arya <inferno@chromium.org>.
1443    
1444    https://bugzilla.mozilla.org/show_bug.cgi?id=803762
1445    
1446    Reviewed-by: Jeff Muizelaar <jmuizelaar@mozilla.com>
1447    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
1448    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1449
1450commit 3cdb6c3a1646f670afa03d424ec12ac418181d1e
1451Author: Quentin Glidic <sardemff7+git@sardemff7.net>
1452Date:   Tue Jan 15 21:07:17 2013 +0000
1453
1454    nls/Makefile.am: Use LOG_COMPILER
1455    
1456    TESTS_ENVIRONMENT is deprecated
1457    
1458    Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>
1459    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1460
1461commit df66d7a98e2bc7f44fb5583b645df87d525f07f1
1462Author: Quentin Glidic <sardemff7+git@sardemff7.net>
1463Date:   Tue Jan 15 21:07:16 2013 +0000
1464
1465    nls/Makefile.am: Remove unneeded $(srcdir)
1466    
1467    Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>
1468    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
1469    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1470
1471commit 3facbe5c0df1b5597571b7b00d5f7bdbc92fb278
1472Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1473Date:   Sat Mar 2 12:01:39 2013 -0800
1474
1475    Add <X11/Xresource.h> hint to all Xrm* man pages
1476    
1477    Help users figure out which header file they need to #include
1478    
1479    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1480
1481commit 466404007f2c8f7166e4faddfea1454c5bfe1e9a
1482Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1483Date:   Fri Mar 8 17:13:09 2013 -0800
1484
1485    _xudc_code_to_glyph: check for NULL pointer *before* writing to it, not after
1486    
1487    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1488
1489commit 47d2eff64d167b3245d346d7f38ca703be645e26
1490Author: Ken Moffat <ken@linuxfromscratch.org>
1491Date:   Thu Mar 7 18:27:54 2013 -0500
1492
1493    dead_double_grave and dead_inverted_breve should only have one underscore.
1494    
1495    Correct instances of dead_double_grave and dead_inverted_breve to
1496    dead_doublegrave and dead_invertedbreve.
1497    
1498    Signed-off-by: Ken Moffat <ken@linuxfromscratch.org>
1499    Signed-off-by: James Cloos <cloos@jhcloos.com>
1500
1501commit c23d61d1b84dca3740bf4786978c7908d0065fb9
1502Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1503Date:   Fri Mar 1 18:10:27 2013 -0800
1504
1505    Assume size_t is always available, since it was defined in C89
1506    
1507    Don't provide a fallback definition #ifdef X_NOT_POSIX anymore.
1508    We already use size_t throughout the rest of Xlib, just had this
1509    one instance left in XKBGAlloc.c of a fallback definition.
1510    
1511    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1512
1513commit 9bcfd84aa1410387bc8cf002a5f90f44705aa0d1
1514Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1515Date:   Fri Mar 1 18:09:07 2013 -0800
1516
1517    unifdef XKB_IN_SERVER
1518    
1519    Leftovers from XKB files that were previously shared between the client
1520    and server code, but aren't any more.
1521    
1522    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1523    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
1524
1525commit 769a0efa2298040fe8316a89fc9e75fb61e288e5
1526Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1527Date:   Thu Feb 28 20:04:25 2013 -0800
1528
1529    unifdef CRAY & _CRAY
1530    
1531    (mostly performed with unifdef, followed by some manual cleanup of
1532     the remaining code)
1533    
1534    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1535    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
1536
1537commit ca106eb03e5f5468df8033300c5caae3d3c6936b
1538Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1539Date:   Thu Feb 28 20:04:25 2013 -0800
1540
1541    unifdef WORD64
1542    
1543    WORD64 seems to have only been defined in <X11/Xmd.h> when building for
1544    CRAY, to handle int being a 64-bit value (ILP64, not LP64) and having
1545    64-bit alignment requirements.
1546    
1547    It hadn't been fully supported even before autotooling, as can be
1548    seen by removed code such as:
1549    
1550     #ifdef WORD64
1551     _XkbWriteCopyData32 Not Implemented Yet for sizeof(int)==8
1552     #endif
1553    
1554    (mostly performed with unifdef, followed by some manual cleanup of
1555     the remaining code)
1556    
1557    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1558    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
1559
1560commit 9399caf2c12cbe1ed56f4f6b368c5811cb5d0458
1561Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1562Date:   Thu Feb 28 20:04:25 2013 -0800
1563
1564    unifdef MUSTCOPY
1565    
1566    MUSTCOPY seems to have only been defined in <X11/Xmd.h> when building for
1567    CRAY, to handle missing some sizes of integer type.
1568    
1569    (mostly performed with unifdef, followed by some manual cleanup of
1570     spacing/indenting in the remaining code)
1571    
1572    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1573    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
1574
1575commit b687440c28c7da6ee0ae44514d20248db5161606
1576Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1577Date:   Sat Feb 16 10:42:23 2013 -0800
1578
1579    Convert more sprintf calls to snprintf
1580    
1581    You could analyze most of these and quickly recognize that there was no
1582    chance of buffer overflow already, but why make everyone spend time doing
1583    that when we can just make it obviously safe?
1584    
1585    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1586
1587commit b092dabbd712d7b656abcf572d253b9b206c0237
1588Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1589Date:   Fri Feb 15 23:43:12 2013 -0800
1590
1591    XKeysymToString: move variable declarations to the scope of their usage
1592    
1593    Makes it easier for readers to understand scope of variable usage, and
1594    clears up gcc warning:
1595    
1596    KeysymStr.c: In function 'XKeysymToString':
1597    KeysymStr.c:128:13: warning: declaration of 'i' shadows a previous local [-Wshadow]
1598    KeysymStr.c:73:18: warning: shadowed declaration is here [-Wshadow]
1599    
1600    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1601
1602commit f0b171c8ea7b055ba520272ea9a2604e18841ac7
1603Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1604Date:   Fri Feb 15 23:34:40 2013 -0800
1605
1606    Preserve constness in casting arguments through the Data*() routines
1607    
1608    Casts were annoying gcc by dropping constness when changing types,
1609    when routines simply either copy data into the request buffer or
1610    send it directly to the X server, and never modify the input.
1611    
1612    Fixes gcc warnings including:
1613    ChProp.c: In function 'XChangeProperty':
1614    ChProp.c:65:6: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
1615    ChProp.c:65:6: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
1616    ChProp.c:74:6: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
1617    ChProp.c:74:6: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
1618    ChProp.c:83:6: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
1619    SetHints.c: In function 'XSetStandardProperties':
1620    SetHints.c:262:20: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
1621    SetPntMap.c: In function 'XSetPointerMapping':
1622    SetPntMap.c:46:5: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
1623    SetPntMap.c:46:5: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
1624    StBytes.c: In function 'XStoreBuffer':
1625    StBytes.c:97:33: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
1626    StName.c: In function 'XStoreName':
1627    StName.c:40:27: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
1628    StName.c: In function 'XSetIconName':
1629    StName.c:51:27: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
1630    
1631    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1632
1633commit 6c558ee357292dd9dfc6d9006f4525f625327c52
1634Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1635Date:   Fri Feb 15 22:58:54 2013 -0800
1636
1637    Fix comment typo & confusing indentation levels in Data() macro definition
1638    
1639    The final } matches the one on the #define line, not one that doesn't
1640    appear after the else statement it was lined up with
1641    
1642    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1643
1644commit afd6593da90e51234d59f8921c411317f91ab48b
1645Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1646Date:   Fri Feb 15 23:25:38 2013 -0800
1647
1648    XStringToKeysym: preserve constness when casting off unsignedness for strcmp
1649    
1650    Fixes gcc warning:
1651    StrKeysym.c:97:17: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
1652    
1653    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1654
1655commit 7e3bf4dd83fec22bd568146de75e6d59eff74e21
1656Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1657Date:   Fri Feb 15 23:14:40 2013 -0800
1658
1659    XRebindKeysym: Drop unnecessary const-removing cast
1660    
1661    C89 defines memcpy as taking a const void *, so casting from
1662    const unsigned char * to char * simply angers gcc for no benefit:
1663    
1664    KeyBind.c:1017:24: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
1665    
1666    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1667
1668commit 54527eab93d46055cf11eb6c18abb353a03ae544
1669Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1670Date:   Fri Feb 15 22:45:19 2013 -0800
1671
1672    cmsColNm.c: maintain constness of arguments to qsort helper function
1673    
1674    Fixes gcc warning:
1675    
1676    cmsColNm.c: In function 'FirstCmp':
1677    cmsColNm.c:257:20: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
1678    cmsColNm.c:257:45: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
1679    
1680    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1681
1682commit deedeada53676ee529d700bf96fde0b29a3a1def
1683Author: Nickolai Zeldovich <nickolai@csail.mit.edu>
1684Date:   Tue Jan 22 10:03:00 2013 -0500
1685
1686    XListFontsWithInfo: avoid accessing realloc'ed memory
1687    
1688    If exactly one of the two reallocs in XListFontsWithInfo() fails, the
1689    subsequent code accesses memory freed by the other realloc.
1690    
1691    Signed-off-by: Nickolai Zeldovich <nickolai@csail.mit.edu>
1692    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1693    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1694
1695commit f57fd760cba92ad846917f21e94e73e9c846185f
1696Author: Colin Walters <walters@verbum.org>
1697Date:   Wed Jan 4 17:37:06 2012 -0500
1698
1699    autogen.sh: Implement GNOME Build API
1700    
1701    http://people.gnome.org/~walters/docs/build-api.txt
1702    
1703    Signed-off-by: Adam Jackson <ajax@redhat.com>
1704
1705commit 51c102d39e855cf1704d9eb3afba76a2e73c6b81
1706Author: Adam Jackson <ajax@redhat.com>
1707Date:   Tue Jan 15 14:28:48 2013 -0500
1708
1709    configure: Remove AM_MAINTAINER_MODE
1710    
1711    Signed-off-by: Adam Jackson <ajax@redhat.com>
1712
1713commit 3cd974b1d4d1fa6389d3695fa9fcc0c22a51d50c
1714Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1715Date:   Wed Dec 26 22:57:39 2012 -0800
1716
1717    Remove unused DECnet ("DNETCONN") code from Xlib
1718    
1719    Has never been converted to build in modular builds, so has been unusable
1720    since X11R7.0 release in 2005.  DNETCONN support was removed from xtrans
1721    back in 2008.
1722    
1723    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1724
1725commit a6e5b36a3e6d4a7a9fb4bad905ed127e67b1957e
1726Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1727Date:   Wed Dec 26 22:56:38 2012 -0800
1728
1729    Remove unused TLI ("STREAMSCONN") code from Xlib
1730    
1731    Has never been converted to build in modular builds, so has been unusable
1732    since X11R7.0 release in 2005.  All known platforms with TLI/XTI support
1733    that X11R7 & later releases run on also have (and mostly prefer) BSD
1734    socket support for their networking API.
1735    
1736    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1737
1738commit 59c9ee8cd58857c5769b643611cbe526005a9e45
1739Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1740Date:   Sun Dec 16 17:44:42 2012 -0800
1741
1742    Tell clang not to report -Wpadded warnings on public headers we can't fix
1743    
1744    Better to silence the compiler warning than break ABI.
1745    
1746    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1747
1748commit 0b148750027fd0557c5ed93afda861ddf4b92e0f
1749Author: Jon TURNEY <jon.turney@dronecode.org.uk>
1750Date:   Mon Nov 12 17:27:52 2012 +0000
1751
1752    Fix config check for loadable modules
1753    
1754    The config check of the results of testing for dlfcn.h or dl.h just tests the
1755    value of the ac_cv_ variables, which will be 'yes' or 'no', rather than checking
1756    it is 'yes', so loadable module support would always be detected.
1757    
1758    This is necessary for successful compilation for the MinGW target without the
1759    optional dlfcn-win32 library.
1760    
1761    v2: Also, fixed typoed name of ac_cv_header_dlfcn_h, so check still works
1762    correctly when dlfcn.h is available
1763    
1764    Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
1765    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
1766
1767commit cd25cab4b5b957641183ce72dd1ae0424aff1663
1768Author: Egbert Eich <eich@freedesktop.org>
1769Date:   Fri May 20 18:27:02 2011 +0200
1770
1771    Install Xcms.txt in $(datadir) rather than $(libdir).
1772    
1773    This file is an architecture independent data and should be where
1774    other databases are.
1775    This is the Xlib provided sample file, applications are free to
1776    use a different one specifying its location in the XCMSDB env
1777    variable.
1778    
1779    Signed-off-by: Egbert Eich <eich@freedesktop.org>
1780    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1781
1782commit 51fef7e273b5c6256e4c9604e3e1afe5dc8f6a1a
1783Author: Egbert Eich <eich@freedesktop.org>
1784Date:   Fri May 20 18:25:24 2011 +0200
1785
1786    Don't hard code path to Xcms.txt file.
1787    
1788    The path to this file is configurable at build time. The source
1789    however contains a hard coded path.
1790    
1791    Signed-off-by: Egbert Eich <eich@freedesktop.org>
1792    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1793
1794commit 9833489e6c3829a1e835bc0a11f028fc180809e4
1795Author: Colin Walters <walters@verbum.org>
1796Date:   Fri Dec 7 08:51:21 2012 -0500
1797
1798    Fix build after dropping locales
1799    
1800    They also needed to be removed from configure.ac
1801    
1802    Signed-off-by: Colin Walters <walters@verbum.org>
1803    Signed-off-by: Julien Cristau <jcristau@debian.org>
1804
1805commit 0a740a574aaf0c0eec78859b773a532cff3b74c3
1806Author: Egbert Eich <eich@freedesktop.org>
1807Date:   Fri May 20 13:04:11 2011 +0200
1808
1809    i18n: Uppercased all occurances if 'iso8859' in the full locale name.
1810    
1811    Making all occurances of iso8859 upper case in the full local name
1812    makes the alias entries more consistent and match the entries on
1813    locale.dir.
1814    
1815    Signed-off-by: Egbert Eich <eich@freedesktop.org>
1816    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1817
1818commit 5e7d589697755a70fb22d85c6a1ae82b39843e53
1819Author: Egbert Eich <eich@freedesktop.org>
1820Date:   Fri May 20 17:55:49 2011 +0200
1821
1822    i18n: Remove ja.S90 and ja.U90 locales.
1823    
1824    Both locales carry a copyright notice and a prorietary statement:
1825    
1826    Copyright 1995 by FUJITSU LIMITED
1827    This is source code modified by FUJITSU LIMITED under the Joint
1828    Development Agreement for the CDEnext PST.
1829    This is unpublished proprietary source code of FUJITSU LIMITED
1830    
1831    Signed-off-by: Egbert Eich <eich@freedesktop.org>
1832    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1833
1834commit 99eae3dcb7bf6764e3b243d2a2934a4d1ecce90e
1835Author: Egbert Eich <eich@freedesktop.org>
1836Date:   Fri May 20 16:46:15 2011 +0200
1837
1838    i18n: Bring locale.dir and compose.dir in sync.
1839    
1840    Some entries for locale/encoding combinations were missing from
1841    either file or just misspelled, some entries were wrong or just
1842    aliases.
1843    
1844    Signed-off-by: Egbert Eich <eich@freedesktop.org>
1845    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1846
1847commit d1e6baa4e290b758e430077cb74e7c03ad850771
1848Author: Egbert Eich <eich@freedesktop.org>
1849Date:   Fri May 20 14:02:39 2011 +0200
1850
1851    i18n: Treat 'a3_AZ' as an alias for 'az_AZ'.
1852    
1853    locale.alias contains a comment:
1854    XCOMM a3 is not an ISO 639 language code, but in Cyrillic, "Z" looks like "3".
1855    Thus lets treat 'a3' as an alias for 'az'.
1856    
1857    Signed-off-by: Egbert Eich <eich@freedesktop.org>
1858    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1859    Reviewed-by: Magnus Kessler <Magnus.Kessler@gmx.net>
1860
1861commit fa2aab0bea18efa26a56977d3166277582ab7b07
1862Author: Egbert Eich <eich@freedesktop.org>
1863Date:   Fri May 20 13:09:38 2011 +0200
1864
1865    i18n: Fixed typos in full locale names.
1866    
1867    Fixing those typos those names actually match entries in
1868    locale.dir.
1869    
1870    Signed-off-by: Egbert Eich <eich@freedesktop.org>
1871    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1872
1873commit b88dd95005dce4c40f9b4d5f938f945e7955fd04
1874Author: Egbert Eich <eich@freedesktop.org>
1875Date:   Sat May 21 07:29:38 2011 +0200
1876
1877    i18n: Remove duplicates and aliases to oneself.
1878    
1879    Aliases to itself don't make much sense.
1880    This changes occurances of:
1881    xy_UV.UTF-8:			xy_UV.UTF-8
1882    to
1883    xy_UV:			xy_UV.UTF-8
1884    where applicable.
1885    
1886    Signed-off-by: Egbert Eich <eich@freedesktop.org>
1887    Reviewed-by: James Cloos <cloos@jhcloos.com>
1888
1889commit f198c6aa98f88ff285d903175a3c4c0fd33a4575
1890Author: Jens Herden <jens.herden@email.de>
1891Date:   Fri May 20 17:29:03 2011 +0200
1892
1893    i18n: Add support for Khmer locale and compose table.
1894    
1895    Signed-off-by: Egbert Eich <eich@freedesktop.org>
1896    Reviewed-by: James Cloos <cloos@jhcloos.com>
1897
1898commit 40761898692e5063957bfa2518cca3d35b2e354a
1899Author: Kalman Kemenczy <kkemenczy@novell.com>
1900Date:   Fri May 20 17:03:24 2011 +0200
1901
1902    i18n: Add support for Serbian specific compose table entries.
1903    
1904    Signed-off-by: Egbert Eich <eich@freedesktop.org>
1905    Reviewed-by: James Cloos <cloos@jhcloos.com>
1906
1907commit 7c14aacc9f01d7a975f8d9d033b9b13cbd777a61
1908Author: Egbert Eich <eich@freedesktop.org>
1909Date:   Fri May 20 14:00:35 2011 +0200
1910
1911    i18n: Adding and removing comments.
1912    
1913    Signed-off-by: Egbert Eich <eich@freedesktop.org>
1914    Reviewed-by: James Cloos <cloos@jhcloos.com>
1915
1916commit 7754d68976106183751243c2c35a84134be17b34
1917Author: Egbert Eich <eich@freedesktop.org>
1918Date:   Fri May 20 13:45:31 2011 +0200
1919
1920    i18n: Add missing locales which existed in locale.alias.
1921    
1922    Signed-off-by: Egbert Eich <eich@freedesktop.org>
1923    Reviewed-by: James Cloos <cloos@jhcloos.com>
1924
1925commit 952eccd0d25ba66023acfd31873eee2e71c38c42
1926Author: Egbert Eich <eich@freedesktop.org>
1927Date:   Fri May 20 10:57:57 2011 +0200
1928
1929    i18n: Consolidate compose handling for locales with UTF-8 encoding.
1930    
1931    - add an entry to include the default en_US compose file
1932      for the ja_JP, ko_KR, th_TH, zh_CN, zh_HK and zh_TW locales.
1933    - add missing entries for zh_CN. and zh_HK and am_ET.
1934    - change entries for the UTF-8 encoding for ru_RU, ja_JP,
1935      ko_KR, th_TH and zh_TW to point to their native directory
1936      entries.
1937    
1938    Signed-off-by: Egbert Eich <eich@freedesktop.org>
1939    Reviewed-by: James Cloos <cloos@jhcloos.com>
1940
1941commit d14b6a250f004fa405179db7020f6953001d17b9
1942Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
1943Date:   Mon Oct 22 13:54:11 2012 -0500
1944
1945    XIM: remove Private and Public macros
1946    
1947    Private is a struct member name in mingw-w64 <winioctl.h>, causing this
1948    useless define in a private header to break the build.
1949    
1950    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
1951    Reviewed-by: Jon TURNEY <jon.turney@dronecode.org.uk>
1952
1953commit f2a8def423a46d52e834cf7ea49fa0079427663a
1954Author: Adam Jackson <ajax@redhat.com>
1955Date:   Wed Oct 17 14:40:43 2012 -0400
1956
1957    XErrorDB: Add GLXBadProfileARB
1958    
1959    Signed-off-by: Adam Jackson <ajax@redhat.com>
1960
1961commit d45b3fc19fbe95c41afc4e51d768df6d42332010
1962Author: Ross Burton <ross.burton@intel.com>
1963Date:   Wed Sep 12 14:39:40 2012 +0100
1964
1965    Allow overriding location of keysymdef.h
1966    
1967    Currently keysymdef.h is found by using the includedir of xproto.  This doesn't
1968    work when cross-compiling with a sysroot as that ends up being /usr/include/X11,
1969    not a path into the cross-build environment.
1970    
1971    So, add an option to allow explicitly specifying the location of keysymdef.h,
1972    and verify that the specified or found path exists.
1973    
1974    (original patch by Martin Jansa <martin.jansa@gmail.com>, revised by myself)
1975    
1976    Signed-off-by: Ross Burton <ross.burton@intel.com>
1977    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
1978    Reviewed-by: Daniel Stone <daniel@fooishbar.org>
1979
1980commit 44cdc0dc2c68d67654023ec707b807145d3a38c0
1981Author: Eric S. Raymond <esr@thyrsus.com>
1982Date:   Thu Aug 23 19:15:07 2012 -0400
1983
1984    Renove some unnecessary low-level markup.
1985    
1986    Also, SYNTAX -> SYNOPSIS so function prototypes get parsed by doclifter.
1987    This appears to have been somebody's thinko, it's only in a few of the files.
1988    
1989    Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
1990
1991commit b686600ab5ca93b5750f827786e79c329ab2db4d
1992Author: Eric S. Raymond <esr@thyrsus.com>
1993Date:   Thu Aug 23 10:53:33 2012 -0400
1994
1995    The .NT/.NE macro pair is no longer used.  Remove it.
1996    
1997    Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
1998
1999commit b83f2898528c5dd683acd2a2143879a760a8dad5
2000Author: Eric S. Raymond <esr@thyrsus.com>
2001Date:   Thu Aug 23 10:42:46 2012 -0400
2002
2003    Remove the one and only use of the .NT/.NE pair.
2004    
2005    The problem with these macros is that they rely on being able to
2006    center the note label.  That doesn't play well with modern HTML,
2007    not anyway without coomplications like CSS.  This use was just a cute
2008    trick, not adding enough value to be kept.
2009
2010commit e9509fa6745d25eee01ec6f1c34edf8a806d66b3
2011Author: Eric S. Raymond <esr@thyrsus.com>
2012Date:   Thu Aug 23 10:23:45 2012 -0400
2013
2014    The .C{ and .C} macros are never used.  Remove them.
2015    
2016    Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
2017
2018commit 6b2f7ddeea6c87dbec4ddfc19b1fed33f1bb8575
2019Author: Eric S. Raymond <esr@thyrsus.com>
2020Date:   Thu Aug 23 10:08:08 2012 -0400
2021
2022    The .FN macro, paired with .FD, is also never used. Remove it.
2023    
2024    Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
2025
2026commit cac6572701c976542da562b2b277b07ffb892a6f
2027Author: Eric S. Raymond <esr@thyrsus.com>
2028Date:   Thu Aug 23 10:03:00 2012 -0400
2029
2030    The ".FD" macro is never used.  Remove it.
2031    
2032    It was a temptation to presentation-level klugery and is best gone.
2033    
2034    Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
2035
2036commit 6e27a828f39f7028bc7f4a8736e7262fca250632
2037Author: Eric S. Raymond <esr@thyrsus.com>
2038Date:   Thu Aug 23 09:54:25 2012 -0400
2039
2040    Clean up, my last commit missed four cases.
2041    
2042    Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
2043
2044commit a7fb575957ff4d9dd3671994a005ac3be8bb10fe
2045Author: Eric S. Raymond <esr@thyrsus.com>
2046Date:   Thu Aug 23 08:24:17 2012 -0400
2047
2048    Eliminate all uses of tab stops in the libX11 man pages.
2049    
2050    Two steps: First, expand tabs to 8 spaces in code and structure
2051    listings.  Second, make the .Ds used to wrap code listings switch to
2052    constant-width font (CW) rather than numeric font position 1, which
2053    maps to R on most systems.
2054    
2055    It is possible some archaic systems won't know what CW is, but the
2056    only risk is that code listings won't look quite right on troff
2057    devices; the PostScript and DVI drivers definitely grok it, so those
2058    important cases are OK.
2059    
2060    The purpose of these changes is to get rid of presentation-level
2061    markup so these pages will lift clean to DocBook.
2062    
2063    Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
2064
2065commit 8042f88ace33573f9d0dfaa21ed54ac7cef266d5
2066Author: Will Thompson <will@willthompson.co.uk>
2067Date:   Mon Jul 9 18:00:27 2012 +0100
2068
2069    Add compose sequences for "therefore" and "because".
2070    
2071    These sequences look sensible to me. I added them to the APL-related
2072    section of Mathematical Operators—they're in that section of Unicode
2073    anyway.
2074    
2075    https://bugs.freedesktop.org/show_bug.cgi?id=51922
2076    
2077    Signed-off-by: Will Thompson <will@willthompson.co.uk>
2078    Reviewed-by: Daniel Stone <daniel@fooishbar.org>
2079
2080commit 65358ea5079236b2508f787ac2fb2024a477e36d
2081Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2082Date:   Fri Jun 29 23:08:04 2012 -0700
2083
2084    Convert XCreate{Pix,Bit}map...Data to use C99 designated initializers
2085    
2086    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2087
2088commit 0dc93f7e43deb102b1f8fb7c4c4844cdce7ffd1e
2089Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2090Date:   Fri Jun 29 22:57:13 2012 -0700
2091
2092    XCreate{Pix,Bit}map...Data: Free pixmap in error path if XCreateGC fails
2093    
2094    Fixes leaks in error paths found by Parfait 1.0.0:
2095    
2096    Error: X Resource Leak
2097       Leaked X Resource pix
2098            at line 62 of CrBFData.c in function 'XCreateBitmapFromData'.
2099              pix initialized at line 60 with XCreatePixmap
2100    Error: X Resource Leak
2101       Leaked X Resource pix
2102            at line 70 of CrPFBData.c in function 'XCreatePixmapFromBitmapData'.
2103              pix initialized at line 66 with XCreatePixmap
2104    
2105    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2106    Reviewed-by: Aaron Plattner <aplattner@nvidia.com>
2107
2108commit dce84b8c39ad5a8908c29bb6de25b6c3004c1ab7
2109Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2110Date:   Wed Jun 6 13:31:16 2012 -0700
2111
2112    libX11 spec: Correct prototype for XConvertSelection
2113    
2114    selection & target parameters were accidentally run together
2115    
2116    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2117
2118commit 6c5cb2a90a6479f56855e5167039c37c234cdfe7
2119Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2120Date:   Fri Jun 1 23:37:09 2012 -0700
2121
2122    libX11 1.5.0
2123    
2124    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2125
2126commit 05c587ec3be880721131a17c1dd4366e458fdd8b
2127Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2128Date:   Sat May 26 14:37:28 2012 -0700
2129
2130    libX11 1.4.99.902 (1.5 RC2)
2131    
2132    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2133
2134commit d817834d9772e3500d5102e2eae868b04a33c31f
2135Author: Pander <pander@users.sourceforge.net>
2136Date:   Sat May 5 19:02:10 2012 +0200
2137
2138    Compose: Reassigned squences with minus and a or o
2139    
2140    Reassigned squences with minus and a or o (vice versa and lower and
2141    upper case) to conform existing series and not resulting in tilde.
2142    Also added noe missing underscore sequence.
2143    
2144    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2145
2146commit 6bfd1dca6e7cb2046ee6bf9dbbddc0af5ef7cc00
2147Author: Pander <pander@users.sourceforge.net>
2148Date:   Sat May 5 16:56:05 2012 +0200
2149
2150    Compose: Removed <slash> <U> and vice versa
2151    
2152    Combination with lower case u suffices
2153    
2154    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2155
2156commit 3a8b1637132d1e36eb5e11f52dfb284081772d14
2157Author: Pander <pander@users.sourceforge.net>
2158Date:   Sat May 5 16:44:31 2012 +0200
2159
2160    Compose: Removed <n> <minus> for n with tilde, also vice versa & for upper case
2161    
2162    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2163
2164commit fd514d7a35119dd4413b51c84f2a536f2ca501a6
2165Author: Pander <pander@users.sourceforge.net>
2166Date:   Sat May 5 16:40:20 2012 +0200
2167
2168    Compose: Removed <S> in combination with a numeral for superscript
2169    
2170    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2171
2172commit 1b5cad3ca54410c4edbca79c23c463e9e088bc0d
2173Author: Pander <pander@users.sourceforge.net>
2174Date:   Sat May 5 16:28:01 2012 +0200
2175
2176    Compose: Reassigned <o> <apostrophe> to oacute, also for upper case.
2177    
2178    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2179
2180commit 0bbc0d5e605e2a4a3eb00a229b651d4546e8aef4
2181Author: James Cloos <cloos@jhcloos.com>
2182Date:   Thu May 10 12:27:28 2012 -0400
2183
2184    Remove duplicate compose sequences from commit e51e37c118ae.
2185    
2186    The compose-check script only handles compiled Compose files, not
2187    the Compose.pre files.  One must remember to use:
2188    
2189        ./autogen.sh; make; make check
2190    
2191    when reviewing patches to the Compose.pre files....
2192    
2193    Signed-off-by: James Cloos <cloos@jhcloos.com>
2194
2195commit e51e37c118ae6cb9ced8244ce1c410677e0279ce
2196Author: Geoff Streeter <geoff@dyalog.com>
2197Date:   Thu Mar 22 15:02:00 2012 +0000
2198
2199    Add APL support to compose
2200    
2201    Signed-off-by: Geoff Streeter <geoff@dyalog.com>
2202    Signed-off-by: James Cloos <cloos@jhcloos.com>
2203
2204commit dac90324cee224df977a428afe80d960dceca769
2205Author: Julien Cristau <jcristau@debian.org>
2206Date:   Sat May 5 16:05:07 2012 +0200
2207
2208    configure: make previous change work with older autoconf
2209    
2210    autoconf 2.63 doesn't seem to like the nested AC_CHECK_DECL/FUNC.  So do
2211    the tests separately.
2212    
2213    Reported-by: Dave Airlie
2214    Signed-off-by: Julien Cristau <jcristau@debian.org>
2215
2216commit f5b50af4324186962e258ffe9be78d5ee4681982
2217Author: Julien Cristau <jcristau@debian.org>
2218Date:   Sun Apr 29 16:43:09 2012 +0200
2219
2220    configure: check if issetugid is declared
2221    
2222    GNU/kFreeBSD has issetugid in libc (for legacy apps?), but doesn't
2223    declare it anywhere, causing gcc to error out with
2224    -Werror=implicit-function-declaration.  Use AC_CHECK_DECL in addition to
2225    AC_CHECK_FUNC so we disable this code instead of failing to build it.
2226    
2227    Debian bug#669670 <http://bugs.debian.org/669670>
2228    
2229    Signed-off-by: Julien Cristau <jcristau@debian.org>
2230    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2231    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2232
2233commit 52e1b5cc3b6de76ccf4285b55652474a522ed9a8
2234Author: Peter Hutterer <peter.hutterer@who-t.net>
2235Date:   Mon Apr 30 16:36:47 2012 +1000
2236
2237    Typo fix
2238    
2239    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2240
2241commit b64969f0e510d5d3300cf968741a3726a6409577
2242Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2243Date:   Tue Apr 17 18:12:02 2012 -0700
2244
2245    Add X11R7 sections to the libX11 & XKBlib credits to cover Docbook conversion
2246    
2247    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2248
2249commit 9ea611696f317ac3b3fb67893f1d6d87d49e3b5e
2250Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2251Date:   Tue Apr 17 18:01:36 2012 -0700
2252
2253    Add olinks from libX11 & localedb specs to ICCCM spec
2254    
2255    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2256
2257commit b3c1b8cdab7d14220426c9b997ac362dc16318fc
2258Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2259Date:   Tue Apr 17 17:49:44 2012 -0700
2260
2261    Add olinks from libX11 spec to ICCCM spec
2262    
2263    Also convert ICCCM title mentions from <emphasis> to <citetitle>
2264    
2265    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2266
2267commit ebebb65e753007ad01966dccc90bd6ca9a826488
2268Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2269Date:   Sat Apr 14 23:40:01 2012 -0700
2270
2271    libX11 AppC: Fix section headers that didn't translate from nroff properly
2272    
2273    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2274    Acked-by: Peter Hutterer <peter.hutterer@who-t.net>
2275
2276commit d5ab4ae0e74ae1fb30fb72add0751effe2759bf2
2277Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2278Date:   Sat Apr 14 23:13:05 2012 -0700
2279
2280    Add olinks from libX11 spec to x11protocol spec
2281    
2282    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2283    Acked-by: Peter Hutterer <peter.hutterer@who-t.net>
2284
2285commit 83878a0e34fffd255597300dd3e6cd43fcd645b0
2286Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2287Date:   Sat Apr 14 22:28:53 2012 -0700
2288
2289    libX11 spec: Remove .br nroff macro left behind in XGetWindowProperty prototype
2290    
2291    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2292
2293commit abc523fce31fcf2687229697a8eb656e343ecb0c
2294Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2295Date:   Thu Mar 15 22:14:45 2012 -0700
2296
2297    libX11 1.4.99.901 (1.5 RC1)
2298    
2299    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2300
2301commit b2cc5905a4a6d519957223e8ba2caef71520040c
2302Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2303Date:   Thu Mar 15 22:03:21 2012 -0700
2304
2305    Remove "register" qualifier that annoys Solaris Studio compiler
2306    
2307    Fixes warning:
2308    "Xrm.c", line 1094: warning: storage class after type is obsolescent
2309    
2310    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2311
2312commit 62d42953893f93a98db0504eaf06d650ceaf5811
2313Author: James Cloos <cloos@jhcloos.com>
2314Date:   Wed Mar 14 17:25:46 2012 -0400
2315
2316    Fix the gtk+ additions
2317    
2318    (Some of) the Dstroke and dstroke entries already were present as U011[01],
2319    even though XK_Dstroke and XK_dstroke are part of the latin2 set in keysymdef.h.
2320    
2321    The addition of <Multi_key> <o> <apostrophe> as a postfix version of
2322    <Multi_key> <apostrophe> <o> blocks the existing entries for ǻ and Ǻ.
2323    That prevents its and <Multi_key> <O> <apostrophe>’s addition.
2324    
2325    Signed-off-by: James Cloos <cloos@jhcloos.com>
2326
2327commit 91bcce48d94792f78333d2aea73961cc2e739d2e
2328Author: Pander <pander@users.sourceforge.net>
2329Date:   Wed Mar 14 12:54:53 2012 -0400
2330
2331    Complete compose key sequences for musical symbols
2332    
2333    Signed-off-by: Pander <pander@users.sourceforge.net>
2334    Signed-off-by: James Cloos <cloos@jhcloos.com>
2335
2336commit cf040016d455bc37f7665d6714337c5eafd8ea94
2337Author: Pander <pander@users.sourceforge.net>
2338Date:   Wed Mar 14 12:46:25 2012 -0400
2339
2340    Add compose sequences from gtk+ to X.Org
2341    
2342    Signed-off-by: Pander <pander@users.sourceforge.net>
2343    Signed-off-by: James Cloos <cloos@jhcloos.com>
2344
2345commit a4c591ced5cac9301b9abfa0e521be2d0b267882
2346Author: Keith Packard <keithp@keithp.com>
2347Date:   Sun Mar 4 02:00:13 2012 -0800
2348
2349    Block for other threads in _XUserLockDisplay
2350    
2351    Wait for all other threads to release the user-level lock when
2352    acquiring it. This ensures that only one thread at a time holds the
2353    user-level lock, necessary as it is a nesting lock and a single
2354    variable is used to determine when the lock is nesting and when it is
2355    contended.
2356    
2357    Signed-off-by: Keith Packard <keithp@keithp.com>
2358    Reviewed-by: Jamey Sharp <jamey@minilop.net>
2359
2360commit ed00b460acb08787b695f27b864e96102dfd4867
2361Author: Jon TURNEY <jon.turney@dronecode.org.uk>
2362Date:   Fri Oct 28 11:09:20 2011 -0500
2363
2364    Don't use caddr_t casts
2365    
2366    (caddr_t) isn't used anywhere else in xcb or libX11.
2367    Cast to (char *) for consistency.
2368    
2369    Removing this cast allows building for MinGW without patching.
2370    
2371    v2: Cast to (char *) rather than just dropping the cast
2372    
2373    Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
2374    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2375
2376commit 20adca02c2a1d0b7c95ecbe387d68f881fd57754
2377Author: Julien Cristau <jcristau@debian.org>
2378Date:   Sun Feb 19 13:27:38 2012 +0100
2379
2380    Revert "xcb: Add TCP fallback"
2381    
2382    This reverts commit f09c5299a381e2729e800a0ac43f1c0e371f65f6.
2383    
2384    The TCP fallback ended up falling back to UNIX socket connection if
2385    $DISPLAY was set to e.g. some.host:0 and the initial attempt failed.
2386    
2387    Debian bug#659558 <http://bugs.debian.org/659558>
2388    
2389    Signed-off-by: Julien Cristau <jcristau@debian.org>
2390    
2391    Conflicts:
2392    
2393    	src/OpenDis.c
2394
2395commit f4378193619baa9bb973c1b5b718721bbcbe92c7
2396Author: James Cloos <cloos@jhcloos.com>
2397Date:   Wed Feb 22 14:13:20 2012 -0500
2398
2399    Make the compose sequence for ẞ work.
2400    
2401    There is no XK_Ssharp symbol for U+1E9E LATIN CAPITAL LETTER SHARP S,
2402    so use the U1e9e symbol in the Compose sequence.
2403    
2404    (Compose sequences do not work when the target symbol is unknown.)
2405    
2406    Signed-off-by: James Cloos <cloos@jhcloos.com>
2407
2408commit 2ca641c3a506dcbee97e279b67990d5387389f36
2409Author: Marko Myllynen <myllynen@redhat.com>
2410Date:   Mon Feb 20 17:04:59 2012 +0200
2411
2412    Use ezh/EZH in compose maps
2413    
2414    Related: https://bugs.freedesktop.org/show_bug.cgi?id=19687
2415    
2416    Signed-off-by: Marko Myllynen <myllynen@redhat.com>
2417    Reviewed-by: Matt Dew <marcoz@osource.org>
2418    Signed-off-by: James Cloos <cloos@jhcloos.com>
2419
2420commit 61725822f20f47684a545c1797183ee7075243ac
2421Author: Marko Myllynen <myllynen@redhat.com>
2422Date:   Sun Feb 20 17:09:43 2011 +0200
2423
2424    Provide translation from XK_permille (ad5) to Unicode (U2030)
2425    
2426    https://bugs.freedesktop.org/show_bug.cgi?id=19687
2427    
2428    Signed-off-by: Marko Myllynen <myllynen@redhat.com>
2429    Reviewed-by: Matt Dew <marcoz@osource.org>
2430    Signed-off-by: James Cloos <cloos@jhcloos.com>
2431
2432commit d2cce0abba0fa0143f49026442c8cab5ed721625
2433Author: Jeremy Huddleston <jeremyhu@apple.com>
2434Date:   Sun Feb 12 19:01:43 2012 -0800
2435
2436    nls: Use LC_CTYPE=C for sed magic
2437    
2438    Stricter versions of sed can trip up if the input does not match
2439    LC_CTYPE
2440    
2441    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
2442
2443commit f180e043f55531933bedfa6e0ff36a00a9ec07f3
2444Author: Frédéric Boiteux <fboiteux@calistel.com>
2445Date:   Wed Nov 30 12:47:31 2011 +0000
2446
2447    Compositions with the dead greek symbol
2448    
2449    FreeDesktop Bug 21475 <https://bugs.freedesktop.org/show_bug.cgi?id=21475>
2450    
2451    Signed-off-by: Frédéric Boiteux <fboiteux@calistel.com>
2452    Signed-off-by: James Cloos <cloos@jhcloos.com>
2453
2454commit d58e8f8e27790017fcfdeca0843b7318d541c189
2455Author: Ryan Pavlik <rpavlik@iastate.edu>
2456Date:   Sun Jan 1 21:04:52 2012 +0000
2457
2458    Use pthreads on MinGW also
2459    
2460    Use pthreads (provided by the pthreads-win32 compatability library which implements
2461    them using native Win32 threading) on MinGW
2462    
2463    Reviewed-by: Jon TURNEY <jon.turney@dronecode.org.uk>
2464
2465commit bf15ccb6821664746ec23d769d757edf8059007e
2466Author: Ryan Pavlik <rpavlik@iastate.edu>
2467Date:   Mon Jan 23 14:18:02 2012 +0000
2468
2469    Add XWindows.h include to Xxcbint.h
2470    
2471    This avoids some conflicting type re-definition errors which occur if
2472    we attempt to include Windows headers after Xmd.h
2473    
2474    Reviewed-by: Jon TURNEY <jon.turney@dronecode.org.uk>
2475
2476commit cadcbd376f0a5d17a71a2fe2f8ced5d93232921a
2477Author: Matt Dew <marcoz@osource.org>
2478Date:   Sat Jan 21 17:59:51 2012 -0700
2479
2480    informaltable & table cleanup
2481    
2482    On certain tables, add top and bottom borders to table header
2483    and a bottom border to the table. This matches what those
2484    tables in the old pdfs looked like.
2485    
2486    the <?dbfo keep-together='always'> prevents tables from
2487    splitting across pages. Useful for tiny tables.
2488    
2489    Converting the colwidth to a floating point, IE, 1* -> 1.0*
2490    cleans up these build errors:
2491    WARNING: table-layout="fixed" and column-width unspecified =>
2492    falling back to proportional-column-width(1)
2493    
2494    Signed-off-by: Matt Dew <marcoz@osource.org>
2495
2496commit bb551f654df8f647c867f79252241964521e689e
2497Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2498Date:   Wed Dec 28 21:22:41 2011 -0800
2499
2500    Add more Xkb man pages to the See Also lists for core keyboard functions
2501    
2502    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2503    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
2504
2505commit b7bb23fe7c8b8a17128e5bc98a05f68595190438
2506Author: Gaetan Nadon <nadon@memsize.(none)>
2507Date:   Fri Dec 30 17:08:14 2011 -0500
2508
2509    docbook.am: embed css styles inside the HTML HEAD element
2510    
2511    Rather than referring to the external xorg.css stylesheet, embed the content
2512    of the file in the html output produced. This is accomplished by using
2513    version 1.10 of xorg-xhtml.xsl.
2514    
2515    This makes the whole html docs tree much more relocatable.
2516    In addition, it eliminates xorg.css as a runtime file which makes
2517    xorg-sgml-doctools a build time only package.
2518    
2519    Signed-off-by: Gaetan Nadon <nadon@memsize.(none)>
2520
2521commit 70505468b7c4a7068cc39be42e421dcee34ec595
2522Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2523Date:   Tue Dec 13 19:58:30 2011 -0800
2524
2525    makekeys: move buf declaration from global to main to silence gcc -Wshadow
2526    
2527    The global was only referenced in the main() function, which passes it
2528    as an argument of the same name to the parse_line() function, leading
2529    to gcc -Wshadow warnings:
2530    
2531    makekeys.c: In function ‘parse_line’:
2532    makekeys.c:58:24: warning: declaration of ‘buf’ shadows a global declaration
2533    makekeys.c:54:13: warning: shadowed declaration is here
2534    
2535    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2536
2537commit 87e10a7b9a97c951ab4d477f61177779ac0a6a66
2538Author: Kusanagi Kouichi <slash@ac.auone-net.jp>
2539Date:   Wed Dec 14 02:17:55 2011 -0500
2540
2541    XQueryColors: Split a request into multiple requests if necessary
2542    
2543    https://bugs.freedesktop.org/show_bug.cgi?id=9160
2544    
2545    Signed-off-by: Kusanagi Kouichi <slash@ac.auone-net.jp>
2546    Signed-off-by: James Cloos <cloos@jhcloos.com>
2547
2548commit d3b3570592e9b9e57f270a0bd86762fd205a2833
2549Author: Andreas Wettstein <wettstein509@solnet.ch>
2550Date:   Tue Nov 8 20:18:09 2011 +0000
2551
2552    XIM: Allow modifier releases in compose sequences (#26705)
2553    
2554    Currently, only non-modifier keys (actually, keysyms) can be part of a compose
2555    sequence, and they are matched against the defined compose sequences at the
2556    time the key is pressed.  The patch allows to use modifier keys an well, but
2557    matches them on key release, and only if no other key has been pressed after
2558    the modifier.
2559    
2560    Releasing a non-matched modifier during an ongoing compose sequence only aborts
2561    the sequence if any modifier release would have matched.  In particular, if no
2562    compose sequences with modifiers are specified, the compose mechanism works
2563    exactly as without this patch.
2564    
2565    Even if modifiers are part of a compose sequence, they are not filtered.  This
2566    is because modifiers affect the keyboard state no matter what we do here and,
2567    therefore, filtering them only could confuse clients.
2568    
2569    The purpose is this extension to the compose mechanism is to allow to make
2570    better use of keys in convenient reach for touch typing.
2571    
2572    Signed-off-by: Andreas Wettstein <wettstein509@solnet.ch>
2573    Signed-off-by: James Cloos <cloos@jhcloos.com>
2574
2575commit 56448a626fc90bcf75a1fa2f4c294b0eb1f23bd6
2576Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2577Date:   Tue Nov 29 23:56:57 2011 -0800
2578
2579    Reject negative string counts in copy_string_list
2580    
2581    Silences parfait warning of a potential memory leak:
2582       Memory leak of pointer 'dst' allocated with malloc(length)
2583            at line 160 of FSWrap.c in function 'copy_string_list'.
2584              'dst' allocated at line 145 with malloc(length).
2585              dst leaks when count <= 0 at line 154.
2586    
2587    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2588
2589commit bf2d7c8c6d70539c72560b1921e18df2610acf29
2590Author: Peter Hutterer <peter.hutterer@who-t.net>
2591Date:   Fri Nov 11 14:56:36 2011 +1000
2592
2593    libX11 1.4.99.1
2594    
2595    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2596
2597commit 24283d40b1e4314c6647dda49d2a159833341a8b
2598Author: Derek Buitenhuis <derek.buitenhuis@gmail.com>
2599Date:   Thu Sep 22 18:44:13 2011 -0400
2600
2601    makekeys: Fix build/target word size mismatch when cross-compiling
2602    
2603    Since makekeys is built using build environment's gcc and
2604    runs natively, we have to make sure that the size of the
2605    Signature type is the same on both the native environment
2606    and the target, otherwise we get mismatches upon running X,
2607    and some LSB test failures (xts5).
2608    
2609    Use an unsigned 32-bit integer on all platforms. Also,
2610    eliminate the redundant multiple typedefs for the
2611    Signature type.
2612    
2613    Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
2614    Reviewed-by: Daniel Stone <daniel@fooishbar.org>
2615
2616commit 1c41f3b9b86b5eeedfa3bff92e519d45aa097587
2617Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2618Date:   Wed Nov 9 21:00:36 2011 -0800
2619
2620    XlcSL.c: convert old-style function definitions to ANSI C89 style
2621    
2622    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2623
2624commit f6dad6aaa384bf836baa28ccb72b476a85c40eff
2625Author: Peter Hutterer <peter.hutterer@who-t.net>
2626Date:   Thu Oct 27 13:53:22 2011 +1000
2627
2628    Use GetReqSized for GetReq and GetReqExtra
2629    
2630    GetEmptyReq and GetResReq cannot do this due to the final typecast -
2631    typically requests that need either of those do not have their own typedef
2632    in the protocol headers.
2633    
2634    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2635    Reviewed-by: Jamey Sharp <jamey@minilop.net>
2636
2637commit c9c99058b9d98789c0b2d7e78a23443c2b57a047
2638Author: Peter Hutterer <peter.hutterer@who-t.net>
2639Date:   Fri Oct 14 14:51:06 2011 +1000
2640
2641    include: Add GetReqSized() for request buffers of specific size
2642    
2643    Some XI2 requests change in size over different versions and libXi would
2644    need to hack around GetReq and GetReqExtra. Add a new GetReqSized so the
2645    library can explicitly specify the size of the request in 4-byte units.
2646    
2647    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2648    Reviewed-by: Jamey Sharp <jamey@minilop.net>
2649
2650commit ba8a7a19165e30d14bc165f43f67c19b6a115585
2651Author: Peter Hutterer <peter.hutterer@who-t.net>
2652Date:   Thu Oct 27 13:24:10 2011 +1000
2653
2654    Switch GetEmptyReq and GetResReq to call _XGetRequest
2655    
2656    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2657    Reviewed-by: Jamey Sharp <jamey@minilop.net>
2658
2659commit 4a060f993bf676cf21ad9784e010f54134da7b40
2660Author: Peter Hutterer <peter.hutterer@who-t.net>
2661Date:   Mon Oct 17 09:45:15 2011 +1000
2662
2663    Add _XGetRequest as substitute for GetReq/GetReqExtra
2664    
2665    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2666    Reviewed-by: Jamey Sharp <jamey@minilop.net>
2667
2668commit d8956520deb79c1cbb5e974c175bf8493859b22b
2669Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2670Date:   Fri Oct 14 17:53:00 2011 -0700
2671
2672    Fix "nomal" -> "normal" typo in several comments
2673    
2674    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2675
2676commit 002b36e308a26a152504f9b40aa08a0dce9a7991
2677Author: Xue Wei <Wei.Xue@Sun.COM>
2678Date:   Fri Oct 14 17:39:21 2011 -0700
2679
2680    mbtocs should not truncate input
2681    
2682    Fixes pasting more than 1024 bytes into xterm, as described in
2683    https://bugs.freedesktop.org/show_bug.cgi?id=25209
2684    
2685    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2686
2687commit 9b8d8c9e5b27273e8856a3851ba9b68022bed3cd
2688Author: Marko Myllynen <myllynen@redhat.com>
2689Date:   Mon Oct 10 09:41:13 2011 +0300
2690
2691    Add new compose sequences
2692    
2693    This patch adds few new compose sequences to the en_US map, ligatures
2694    common in typesetting and sequences already in use in the fi_FI map.
2695    
2696    https://bugs.freedesktop.org/show_bug.cgi?id=30621
2697    https://bugs.freedesktop.org/show_bug.cgi?id=34523
2698    
2699    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
2700
2701commit 738f7b867341c1da87ee667d48815822715c3e75
2702Author: Choe Hwanjin <choe.hwanjin@gmail.com>
2703Date:   Thu Oct 13 07:58:02 2011 +0900
2704
2705    XIM: Make Xim handle NEED_SYNC_REPLY flag
2706    
2707    NEED_SYNC_REPLY flag should be in Xim not in Xic.
2708    Because the focused Xic can be changed before sending sync reply.
2709    After focused Xic changed, the new Xic doesn't have NEED_SYNC_REPLY
2710    flag enabled, so libX11 doesn't send XIM_SYNC_REPLY packet.
2711    
2712    This patch adds sync reply flag to Xim and removes sync reply
2713    from Xic.
2714    
2715    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=7869
2716    
2717    Signed-off-by: Choe Hwanjin <choe.hwanjin@gmail.com>
2718    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
2719
2720commit 50e15379331c436851abb194251cde96999e67b3
2721Author: Bodo Graumann <mail@bodograumann.de>
2722Date:   Mon Oct 10 16:40:52 2011 +0200
2723
2724    libX11: Fixing modifier key range in Xutil.h (Bug #21910)
2725    
2726    IsModifierKey, defined in include/X11/Xutil.h, is a macro determining,
2727    which keys are regarded as modifiers. The constants ISO_Level5_Shift,
2728    ISO_Level5_Latch and ISO_Level5_Lock where excluded previously, leaving
2729    some Neo2 modifiers functionless in combination with compose.
2730    This patch adjusts the range to include the correct, full range of
2731    modifier constants.
2732    
2733    Neo2 Bug 277 <http://wiki.neo-layout.org/ticket/277>
2734    
2735    X.Org Bug 21910 <http://bugs.freedesktop.org/show_bug.cgi?id=21910>
2736    
2737    Signed-off-by: Bodo Graumann <mail@bodograumann.de>
2738    Reviewed-by: Daniel Stone <daniel@fooishbar.org>
2739
2740commit b5a108624331fabf393223c0891914cc54d4caf4
2741Author: Yann Droneaud <yann@droneaud.fr>
2742Date:   Tue Oct 11 17:27:59 2011 +0200
2743
2744    Return name instead of False in XSetICValues()
2745    
2746    In case of error, XSetICValues() must return the first argument
2747    that failed to be set.
2748    
2749    But in some error paths, it returns False, which is converted to NULL,
2750    so the function returns OK in case of error.
2751    
2752    Signed-off-by: Yann Droneaud <yann@droneaud.fr>
2753    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
2754
2755commit 10992cb8dc5e4d938e7e5a633b68a81b5875f3ba
2756Author: Yann Droneaud <yann@droneaud.fr>
2757Date:   Sun Oct 9 17:56:45 2011 +0200
2758
2759    Return name instead of value in XGetIMValues() and XSetIMValues()
2760    
2761    As stated in man page (XOpenIM) and Xlib documentation (chapter 13.5.3),
2762    XGetIMValues() and XSetImValues() "returns the name of the first argument
2763    that could not be obtained."
2764    
2765    But currently,
2766    
2767      err = XGetIMValues(im, "invalid", &arg, NULL);
2768    
2769    returns &arg instead of "invalid".
2770    
2771    This patch fixes https://bugs.freedesktop.org/show_bug.cgi?id=12897
2772    
2773    Signed-off-by: Yann Droneaud <yann@droneaud.fr>
2774    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
2775
2776commit f2651e03f3295a453a2965c3749bc8b6e66f1c09
2777Author: Jeremy Huddleston <jeremyhu@apple.com>
2778Date:   Mon Oct 10 14:09:17 2011 -0700
2779
2780    Mark XKeycodeToKeysym as _X_DEPRECATED
2781    
2782    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
2783
2784commit 25d7bb9c705623ebbb3afba3b86d0ded5b6bb4fb
2785Author: Jeremy Huddleston <jeremyhu@apple.com>
2786Date:   Sun Oct 9 02:38:28 2011 -0700
2787
2788    Fix nobreakspace for pt_BR.UTF-8
2789    
2790    https://bugs.freedesktop.org/show_bug.cgi?id=31334
2791    
2792    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
2793
2794commit 913603660c17ec59a4d39d3e3b9d60469ee5c060
2795Author: Jeremy Huddleston <jeremyhu@apple.com>
2796Date:   Sun Oct 9 02:26:45 2011 -0700
2797
2798    Fix potential uninitialized variable access in _XimMakeICAttrIDList
2799    
2800    Found by clang static analysis
2801    
2802    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
2803
2804commit 566ceaf5a92c721ac7155528e4d0d2e5cbef023f
2805Author: Jeremy Huddleston <jeremyhu@apple.com>
2806Date:   Sun Oct 9 02:25:50 2011 -0700
2807
2808    Remove self-resolving aliases
2809    
2810    https://bugs.freedesktop.org/show_bug.cgi?id=30112
2811    
2812    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
2813
2814commit 22ba43d198dcca86c88eb15a56fc7d8fc47c422e
2815Author: Matt Dew <marcoz@osource.org>
2816Date:   Fri Oct 7 22:52:30 2011 -0600
2817
2818    Cleanup IDs and links in doc
2819    
2820    1 - fix the capitalization of the ID attributes to match either the
2821         <title> or <funcdef> string it goes with.
2822    2 - fix any <linkend>'s that were affected by 1.
2823    3 - any <function> in the docs that has an actual funcdef,
2824    will become an olink.
2825    
2826    Signed-off-by: Matt Dew <marcoz@osource.org>
2827
2828commit f858f3326adbc0c5711669b92a64a84a9083a055
2829Author: James Cloos <cloos@jhcloos.com>
2830Date:   Tue Oct 4 17:11:11 2011 -0400
2831
2832    [nls] Fix typo/synco.
2833    
2834    The iso8859-1 Compose table includes an optional section which uses
2835    Ctrl<T> as a substitute for <Multi_key>.  In that section the sequence
2836    to generate an @ (at) either was incorrectly copied from the Multi_key
2837    section or was not kept in sync with the Multi_key section.
2838    
2839    Fixing this eliminates the warning from compose-check.pl:
2840    
2841    ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
2842    ┃ Clash with existing sequence in iso8859-1/Compose.pre
2843    ┃  on line 661: Ctrl<T> <A> <A>
2844    ┃    line #661: Ctrl<T> <A> <A>		: "\305"	Aring
2845    ┃    line #480: Ctrl<T> <A> <A>		: "@"	at
2846    ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
2847    
2848    Signed-off-by: James Cloos <cloos@jhcloos.com>
2849
2850commit 7f35f7efc23234b3f8529fee31a802c21846d9ab
2851Author: Jeremy Huddleston <jeremyhu@apple.com>
2852Date:   Mon Sep 26 11:32:56 2011 -0700
2853
2854    Remove conflicting compose sequences for cent and colon
2855    
2856    Regression from 4d78ad4bf6dcabca9bb5f84c770abfbb02d3f7a4
2857    Found by tinderbox
2858    
2859    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
2860
2861commit 4d78ad4bf6dcabca9bb5f84c770abfbb02d3f7a4
2862Author: Jeremy Huddleston <jeremyhu@apple.com>
2863Date:   Sun Sep 25 16:29:17 2011 -0700
2864
2865    Add additional compose sequences for pound sterling, yen, and cent (mixed case)
2866    
2867    https://bugs.freedesktop.org/show_bug.cgi?id=1013
2868    
2869    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
2870    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
2871
2872commit 0ca4153a373e2af7a9eb3cef003393ab332bc79e
2873Author: Jeremy Huddleston <jeremyhu@apple.com>
2874Date:   Sat Sep 24 16:44:04 2011 -0700
2875
2876    Use a configure check for seteuid
2877    
2878    HP-UX doesn't have seteuid
2879    
2880    https://bugs.freedesktop.org/show_bug.cgi?id=1497
2881    
2882    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
2883
2884commit 79594b4d66344f248eb4314ecb78eb81f632c3ab
2885Author: Gaetan Nadon <memsize@videotron.ca>
2886Date:   Tue Sep 20 16:06:10 2011 -0400
2887
2888    localedb specs: use <copyright> for first holder of multi license
2889    
2890    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2891
2892commit 154430268cf004b06920edde2f1812dc16d71fae
2893Author: Gaetan Nadon <memsize@videotron.ca>
2894Date:   Tue Sep 20 16:01:52 2011 -0400
2895
2896    libX11 specs: use <copyright> for first holder of multi license
2897    
2898    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2899
2900commit 66e621f58dee804acb795ff2c79ce6dd38b34a3f
2901Author: Tollef Fog Heen <tfheen@err.no>
2902Date:   Tue Sep 20 13:07:37 2011 -0400
2903
2904    NLS: Add more vulgar fractions
2905    
2906    Add 1/7, 1/9, 1/10 and 0/3 vulgar fractions.
2907    
2908    Signed-off-by: Tollef Fog Heen <tfheen@err.no>
2909    Signed-off-by: James Cloos <cloos@jhcloos.com>
2910
2911commit e37a6da814b5653be46000a9a76902729660a2e6
2912Author: Alexander Polakov <polachok@gmail.com>
2913Date:   Sat Sep 17 20:54:58 2011 +0400
2914
2915    XGrabKey manual page: change XAllowAccess to XAllowEvents in See Also
2916    
2917    There is no XAllowAccess man page to see.
2918    
2919    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2920    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2921
2922commit a23f3323f269b33a43d16dce01395cd28bc41b45
2923Author: Gaetan Nadon <memsize@videotron.ca>
2924Date:   Mon Sep 19 15:27:44 2011 -0400
2925
2926    XKB: provide adequate quotes for the license text
2927    
2928    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2929
2930commit a9c7a5cad91d968f5536ef8fc735036e921832a3
2931Author: Gaetan Nadon <memsize@videotron.ca>
2932Date:   Mon Sep 19 15:18:53 2011 -0400
2933
2934    XIM: refactor the multi licensing legal text
2935    
2936    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2937
2938commit c46f934ed89e7de79746a0387c9f998d91994ea6
2939Author: Gaetan Nadon <memsize@videotron.ca>
2940Date:   Mon Sep 19 10:33:30 2011 -0400
2941
2942    xim trans: restore Fujitsu copyright legal text
2943    
2944    Somehow lost during docbook conversion. text from x.org ftp R7.5.
2945    
2946    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2947
2948commit 3d75f993382bfdc89d31668d7dfc71c91222e0d7
2949Author: Gaetan Nadon <memsize@videotron.ca>
2950Date:   Mon Sep 19 10:11:46 2011 -0400
2951
2952    xtrans: restore X Consortium original legal text
2953    
2954    Asking X Consortium permission to use The Open Group name makes no sense.
2955    Even more so in 1994 before X Window System was passed on to the Open Group.
2956    
2957    Using original text from xorg-docs/general/License
2958    
2959    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2960
2961commit 136a381585a4a9686c11bad1a6130837978e677f
2962Author: Gaetan Nadon <memsize@videotron.ca>
2963Date:   Mon Sep 19 10:03:21 2011 -0400
2964
2965    Framework: restore X Consortium copyright
2966    
2967    Somewhat dammaged during docbook conversion.
2968    Also restore pasrt of the original license text
2969    
2970    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2971
2972commit 33f346878406762704a0c13cdc018111c666f3c1
2973Author: Gaetan Nadon <memsize@videotron.ca>
2974Date:   Mon Sep 19 09:50:00 2011 -0400
2975
2976    localedb: restore X Consortium original legal text
2977    
2978    Asking X Consortium permission to use The Open Group name makes no sense.
2979    Even more so in 1994 before X Window System was passed on to the Open Group.
2980    
2981    Using original text from xorg-docs/general/License
2982    
2983    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2984
2985commit e99c9338e413efca026210b9d830efb5c74d34e5
2986Author: Gaetan Nadon <memsize@videotron.ca>
2987Date:   Mon Sep 19 08:23:18 2011 -0400
2988
2989    specs: support multi licensed copyright notice and license text
2990    
2991    For documentation having multiple licenses, the copyright and legalnotice
2992    elements sequence cannot instantiated multiple times.
2993    The copyright notice and license text are therefore coded inside a
2994    legalnotice element. The role attribute on the paragraph is used to allow
2995    styling of the copyright notice text which should not be italicized.
2996    
2997    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2998
2999commit b9dedc757e667333ce899115d618f25cdaa4dd5e
3000Author: Gaetan Nadon <memsize@videotron.ca>
3001Date:   Mon Sep 19 08:17:50 2011 -0400
3002
3003    localedb: add release info to spec
3004    
3005    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
3006
3007commit 4519c89a87ddce01e599542737a27c26030fe4ff
3008Author: Gaetan Nadon <memsize@videotron.ca>
3009Date:   Mon Sep 19 08:05:32 2011 -0400
3010
3011    specs: fix The Open Group license text
3012    
3013    The warranty referred to the X Consortium
3014    
3015    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
3016
3017commit 08ac378423e7be72e340197ba5559a1a36f1783c
3018Author: Gaetan Nadon <memsize@videotron.ca>
3019Date:   Mon Sep 19 08:03:39 2011 -0400
3020
3021    specs: The strandard name is still "X Consortium Standard"
3022    
3023    This spec, and fsproto spec, are the only two docs with a different
3024    standard name.
3025    
3026    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
3027
3028commit 8dfbeb1b1b1e8aa17f69d0a373155419a5f6a172
3029Author: Gaetan Nadon <memsize@videotron.ca>
3030Date:   Sun Sep 18 13:22:34 2011 -0400
3031
3032    specs: support multi licensed copyright notice and license text
3033    
3034    For documentation having multiple licenses, the copyright and legalnotice
3035    elements sequence cannot instantiated multiple times.
3036    The copyright notice and license text are therefore coded inside a legalnotice
3037    element. The role attribute on the paragraph is used to allow styling of the
3038    copyright notice text which should not be italicized.
3039    
3040    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
3041
3042commit 278ca8947c1dabb2b819527dca0fa6190c034f67
3043Author: Gaetan Nadon <memsize@videotron.ca>
3044Date:   Fri Sep 16 11:45:56 2011 -0400
3045
3046    docs: merge copyright holder under the same copyright notice
3047    
3048    As per the docbook markup dtd.
3049    
3050    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
3051
3052commit 7ff012bb433109a622ac122ade71669e842ebdcf
3053Author: Gaetan Nadon <memsize@videotron.ca>
3054Date:   Fri Sep 16 10:09:57 2011 -0400
3055
3056    specs: handle multiple sets of copyright notice/license/warranty
3057    
3058    Docbook groups all the <copyright> elements together and all the
3059    <legalnotice> elements together.
3060    
3061    We cannot have a sequence:
3062    <copyright> <legalnotice> <copyright> <legalnotice> [...]
3063    
3064    A workaround, which was done in some documents, is to put the copyright
3065    notice inside the legalnotice in plain text without the <copyright> element.
3066    A formal paragraph title is added here which makes the copyright notice bold,
3067    and makes it much easier to locate.
3068    
3069    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3070    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
3071
3072commit 4a550c71b8221c37b1a9378d5a170da9eaa03405
3073Author: Gaetan Nadon <memsize@videotron.ca>
3074Date:   Wed Sep 14 15:55:42 2011 -0400
3075
3076    specs: remove orphan affiliation.
3077    
3078    Authors affiliation are correct.
3079    
3080    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
3081
3082commit 0cc02a6df65214560b7575e89cebee741d6d2469
3083Author: Gaetan Nadon <memsize@videotron.ca>
3084Date:   Tue Sep 13 17:39:02 2011 -0400
3085
3086    specs: use appropriate markup for Copyright statements
3087    
3088    Also move <releaseinfo> to match order of appearance
3089    
3090    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
3091
3092commit afe13e19ebf0fc4e3460644164433af016f0add7
3093Author: Gaetan Nadon <memsize@videotron.ca>
3094Date:   Mon Sep 12 16:54:45 2011 -0400
3095
3096    docs: use the &fullrelvers; entity to set X11 release information
3097    
3098    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
3099
3100commit 22a2153282db13e9d94881022b8c979539841a2c
3101Author: Gaetan Nadon <memsize@videotron.ca>
3102Date:   Sun Sep 11 19:49:53 2011 -0400
3103
3104    docs: remove <productnumber> which is not used by default
3105    
3106    This element is not rendered by default on the title. A template
3107    customization is required to display it.
3108    X Window System does not have a product number.
3109    
3110    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
3111
3112commit 719f16570d9fcfd15247813ee51fa51ac8a6ff4c
3113Author: Gaetan Nadon <memsize@videotron.ca>
3114Date:   Sun Sep 11 17:40:21 2011 -0400
3115
3116    docs: use the &fullrelvers; entity to set X11 release information
3117    
3118    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
3119
3120commit a6b2992f50b571d612ea9ade631c432c3099bc12
3121Author: Gaetan Nadon <memsize@videotron.ca>
3122Date:   Sun Sep 11 17:38:42 2011 -0400
3123
3124    docs: remove orphan <affiliation>
3125    
3126    Somehow created during the conversion from roff. Unable to locate
3127    the author to which it belongs.
3128    
3129    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
3130
3131commit c7420060b6e47b8467ba50c796ec3c1bab090bc7
3132Author: Gaetan Nadon <memsize@videotron.ca>
3133Date:   Sun Sep 11 17:38:05 2011 -0400
3134
3135    docs: remove <productnumber> which is not used by default
3136    
3137    This element is not rendered by default on the title. A template
3138    customization is required to display it.
3139    X Window System does not have a product number.
3140    
3141    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
3142
3143commit 7d5b718c1edbc43c54b7001be548e515a49540ea
3144Author: Gaetan Nadon <memsize@videotron.ca>
3145Date:   Fri Sep 9 14:46:39 2011 -0400
3146
3147    docbook.am: embed css styles inside the HTML HEAD element
3148    
3149    Rather than referring to the external xorg.css stylesheet, embed the content
3150    of the file in the html output produced. This is accomplished by using
3151    version 1.10 of xorg-xhtml.xsl.
3152    
3153    This makes the whole html docs tree much more relocatable.
3154    In addition, it eliminates xorg.css as a runtime file which makes
3155    xorg-sgml-doctools a build time only package.
3156    
3157    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
3158
3159commit 24632d280491c465dfe208ef788815890892e326
3160Author: Gaetan Nadon <memsize@videotron.ca>
3161Date:   Mon Sep 5 12:53:12 2011 -0400
3162
3163    compose: upgrade makefile to support olinking on chunked html
3164    
3165    The essential differences over the regular docbook.am are:
3166    Adding root.filename parameter for naming of chapters html files.
3167    Using xhtml xmlto format and xorg-chunk.xsl stylesheet
3168    Set olink.base.uri for pdf but not for chunked html
3169    Olink is not applicable to ps and txt formats.
3170    
3171    Html chapters are added to shelf_DATA as they are also installed.
3172    The xml is generated from a perl script and not distributed.
3173    
3174    Requires version 1.10 of xorg-sgml-doctools.
3175    
3176    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
3177
3178commit 93ab0a1c9a4f9094cf0c8e1c686130673e681798
3179Author: Gaetan Nadon <memsize@videotron.ca>
3180Date:   Wed Aug 31 19:46:20 2011 -0400
3181
3182    docbook.am: refactor common flags for xmlto and xsltproc
3183    
3184    Maximize reuse and reduce risk of setting the wrong flag
3185    at the wrong place.
3186    
3187    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
3188
3189commit 85b725aa9ef76aeb5e94d42e0cd60f896da7ab97
3190Author: Gaetan Nadon <memsize@videotron.ca>
3191Date:   Wed Aug 31 10:46:59 2011 -0400
3192
3193    docbook.am: add search path for local entities
3194    
3195    Currently, only $(XORG_SGML_PATH)/X11 is searched for xml entities.
3196    A module may want to add entities that apply only to itself and
3197    not to all modules, like the xserver does.
3198    
3199    This feature may or may not be used in this module, but all modules
3200    share a copy of docbook.am.
3201    
3202    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
3203
3204commit b5ed2d368d47f244d43d2513329fa2758bc4ef54
3205Author: Gaetan Nadon <memsize@videotron.ca>
3206Date:   Thu Aug 25 14:39:20 2011 -0400
3207
3208    docbook.am: explicitly list xmlto flags for each target
3209    
3210    Normal evolution of make targets make it impractical to factor out
3211    common command flags for xmlto.
3212    
3213    The targets now list each command option as its presence or absence
3214    needs to be justified.
3215    
3216    xorg.ss is only needed by xmlto for html.
3217    masterdb is only needed by xmlto.
3218    img.src.path must not be used by html.
3219    xsltproc need to use customization layer xorg-*.xsl.
3220    txt format is not required to search masterdb.
3221    
3222    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
3223
3224commit d5b3605f3b0639452e892e9ff3afb18bb7442069
3225Author: Gaetan Nadon <memsize@videotron.ca>
3226Date:   Thu Aug 25 13:12:49 2011 -0400
3227
3228    docbook.am: do not generate docs if docbook customization layer is missing
3229    
3230    The stylesheets used to be only about style, fonts or colors.
3231    Complex features are now used like olink and chunked html which
3232    may cause a build break when stylesheets are missing or lead to hard
3233    to find problem.
3234    
3235    Some modules may be built when stylesheets are present while others
3236    are built without. There is no requirement to build crippled docs.
3237    
3238    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
3239
3240commit 7f23c72c94d9d14122426b0d8c66054f1402769a
3241Author: Gaetan Nadon <memsize@videotron.ca>
3242Date:   Fri Aug 5 14:33:32 2011 -0400
3243
3244    libX11 specs: review doclifter generated tables
3245    
3246    Many tables had a questionnable layout and some had information dropped.
3247    Each table was cross-referenced with a pre-docbook version
3248    to ensure semantic integrity.
3249    
3250    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
3251
3252commit 1efdbeb8cd08f443188ac783cbab6ba0654a66d6
3253Author: Gaetan Nadon <memsize@videotron.ca>
3254Date:   Wed Jul 20 15:28:47 2011 -0400
3255
3256    credits.xml: remove toc from Acknowledgments
3257    
3258    There should be no toc for a simple preface with only one
3259    Acknowledgments section.
3260    
3261    Use <simplesect> markup rather than sect1.
3262    
3263    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
3264
3265commit 77cc17ed0817c1df3ac5feb9dc83a5ba5d021a4b
3266Author: Gaetan Nadon <memsize@videotron.ca>
3267Date:   Thu Aug 4 19:59:37 2011 -0400
3268
3269    libX11 specs: move </para> above <varaiablelist>
3270    
3271    Many, but not all, function synopsis have a paragraph that
3272    nests the variable list. The code was generated by doclifter
3273    and there is no apprent reasons as to why it was done this way.
3274    Found while investigating a spacing issue.
3275    
3276    Before the patch:
3277    <para>Some blurb about the function
3278    <funcsynopsis>
3279    </funcsynopsis>
3280    <variablelist>
3281    </variablelist>
3282    </para>
3283    
3284    After the patch:
3285    <para>Some blurb about the function</para>
3286    <funcsynopsis>
3287    </funcsynopsis>
3288    <variablelist>
3289    </variablelist>
3290    
3291    There are no noticable differences when reading the doc
3292    other than than the removed few pixels of spacing between
3293    the function sysnopsis and the variable list block.
3294    
3295    In some cases, there are no "blurb about the fucntion"
3296    and the empty paragraph is removed.
3297    
3298    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
3299
3300commit 18595f0d8f95ff1c12e7b9f73bd4b30dda5c7168
3301Author: Gaetan Nadon <memsize@videotron.ca>
3302Date:   Thu Jul 28 19:46:14 2011 -0400
3303
3304    compose specs: generate chunked html
3305    
3306    For large 600 page documents such as this one, chunked html
3307    provide faster browser load time and better navigation.
3308    
3309    Simply click on the locale of your choice in the toc and
3310    the browser loads just that one file. Being a DocBook,
3311    it benefits from all of the usual features and can be
3312    integrated with the rest of the documentation.
3313    
3314    Acked-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3315    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
3316
3317commit 5cc8815b8a117cf0b6af37e7d55c5a420d9fff57
3318Author: Gaetan Nadon <memsize@videotron.ca>
3319Date:   Thu Jun 23 15:16:47 2011 -0400
3320
3321    specs: build compose keys tables in specs/i18n/compose
3322    
3323    Build the tables article together with the rest of the specs.
3324    Make it transparent that the source in generated in nls.
3325    Reuse docbook.am and get all the features such as olink.
3326    
3327    The docbook article file stem and id must be the same. The new name
3328    for the main article is libX11-keys. The new installation location
3329    is $docdir/libX11/i18n/compose.
3330    
3331    The nls dir retains the role of generating the DocBook/XML source
3332    but does not build neither installs output formats or generated source.
3333    
3334    The tables article now has to specify that each included locale
3335    section is a dependency. It did not matter before as they were web links.
3336    
3337    The xorg-sgml-doctools masterdb shall be updated to include this new doc.
3338    Install location moved from doc/libX11/Compose to doc/libX11/i18n/compose.
3339    
3340    Acked-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3341    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
3342
3343commit adebbe3856b4aee39c0c7af902c1dea847dd6d7c
3344Author: Gaetan Nadon <memsize@videotron.ca>
3345Date:   Thu Jun 23 14:43:31 2011 -0400
3346
3347    nls: restructure charts as a single article with sections
3348    
3349    Looks more like a real article with a toc rather than individual
3350    web pages. Looks nicer in pdf.
3351    
3352    Each locale is a "section" rather than an "article".
3353    Using XInclude to aggregate xml source files gets you the toc for free.
3354    
3355    The single document is over 600 pages while there were 62 separate
3356    documents previously. FOP version 1.0 is required to handle missing
3357    character like capital sharp s.
3358    
3359    Acked-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3360    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
3361
3362commit fc74dc12b1ff3c43e240e1a713316ce1bf525d61
3363Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3364Date:   Thu Jul 28 19:32:40 2011 -0700
3365
3366    libX11 1.4.4
3367    
3368    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3369
3370commit ab1f30231755d99ed123af6873b981834640f01d
3371Author: Matt Dew <marcoz@osource.org>
3372Date:   Wed Jul 13 12:33:40 2011 -0600
3373
3374    Add id attributes to error codes to allow linking from other docs.
3375    
3376    Signed-off-by: Matt Dew <marcoz@osource.org>
3377    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3378    Acked-by: Gaetan Nadon <memsize@videotron.ca>
3379
3380commit 5c831fef402914ccf2ec14005c25be48852f119b
3381Author: David Coppa <dcoppa@gmail.com>
3382Date:   Tue Jul 12 10:05:47 2011 +0200
3383
3384    Fix libpthread linkage on OpenBSD.
3385    
3386    OpenBSD prefers to use the -pthread to fetch pthread libs when needed.
3387    
3388    Signed-off-by: Matthieu Herrb <matthieu.herrb@laas.fr>
3389    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3390
3391commit 445b0b3efc04a74fc77cd3e483b25cfb5da82f12
3392Author: Gaetan Nadon <memsize@videotron.ca>
3393Date:   Wed Jun 22 20:46:26 2011 -0400
3394
3395    config: use XORG_WITH_PERL macro to replace custom program check
3396    
3397    New in version util-macros 1.15, the macro does the usual checking
3398    for program path and provides an interface for makefile variables.
3399    
3400    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3401    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
3402
3403commit 47d99a324db9232029a22dd523e3bc3ed0936aca
3404Author: Gaetan Nadon <memsize@videotron.ca>
3405Date:   Wed Jun 22 20:41:18 2011 -0400
3406
3407    config: update XORG_WITH_FOP macro usage
3408    
3409    A new feature to test for a minimum version has been added.
3410    
3411    The parameter position changed. Due to limited usage
3412    and requiring 1.15, it turns out to be backward compatible.
3413    
3414    There is no functional change to how docs are build.
3415    
3416    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
3417
3418commit e659683ad51ecc26c989fbdefdfe20f83af2c5a5
3419Author: Gaetan Nadon <memsize@videotron.ca>
3420Date:   Wed Jun 22 11:48:49 2011 -0400
3421
3422    Remove unused xmlrules.in in specs, now in /nls
3423    
3424    The specs dir has been converted to docbook.am
3425    
3426    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
3427
3428commit 9992092609bd83a0db778e9a9ac1e879d445e637
3429Author: Gaetan Nadon <memsize@videotron.ca>
3430Date:   Thu Mar 31 10:23:22 2011 -0400
3431
3432    nls: move xmlrules.in from specs to nls
3433    
3434    It is no longer used in the specs dir.
3435    Remove html from CLEANFILES as it breaks. Make do not clean directories
3436    Remove SUFFIXES as pattern rules are used rather than suffix rules.
3437    
3438    Other improvements are possible, the first priority is to move it out
3439    of the specs dir.
3440    
3441    Acked-by: Peter Hutterer <peter.hutterer@who-t.net>
3442    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
3443
3444commit b370eeb0191b0e2a8bde2f03a442a8ca62e35d58
3445Author: Gaetan Nadon <memsize@videotron.ca>
3446Date:   Sun Jun 5 16:27:36 2011 -0400
3447
3448    Install target dbs alongside generated documents
3449    
3450    This matches a change in xorg-sgml-docs whereby the masterdb will look for
3451    the target dbs into the same location as the generated documents.
3452    
3453    The target dbs are now installed alongside the generated documents.
3454    Previously they are installed in $prefix/sgml/X11/dbs alongside masterdb which
3455    has the potential of installing outside the package prefix and cause
3456    distcheck to fail when user does not have write permission in this package.
3457    
3458    Requires XORG_CHECK_SGML_DOCTOOLS(1.8) which was released 2011-06-11
3459
3460commit 4e741654b7e0a283779b8b4af5bb32e05b7fc678
3461Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3462Date:   Tue Jun 7 18:41:30 2011 -0700
3463
3464    specs/libX11: Turn appendix references into links
3465    
3466    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3467
3468commit a3d1152bc4b300f59ea2f08925739aab1ebfbc4e
3469Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3470Date:   Tue Jun 7 18:37:41 2011 -0700
3471
3472    specs/libX11: Turn chapter references into links
3473    
3474    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3475
3476commit d0cc949dfe44a41a71f19e4fe6c7547bb3d9bdbe
3477Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3478Date:   Tue Jun 7 00:52:32 2011 -0700
3479
3480    specs/libX11: Turn many "see section ..." into links
3481    
3482    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3483
3484commit 02d4c08dead2f266809b3f93ec72377783423ac7
3485Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3486Date:   Sun Jun 5 22:50:37 2011 -0700
3487
3488    specs/libX11: Convert some header filenames to filename tags
3489    
3490    perl -i -p -e 's{^&lt;(.*\.h)&gt;\ *}{<filename class="headerfile">&lt;\1&gt;</filename>}' *.xml
3491    
3492    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3493
3494commit c51a011329afa6e5b9d2b285349c132683ecf9fb
3495Author: Matt Dew <marcoz@osource.org>
3496Date:   Tue May 31 20:03:23 2011 -0600
3497
3498    Add id attributes to funcsynopsis to allow other docs to olink to them.
3499    
3500    Signed-off-by: Matt Dew <marcoz@osource.org>
3501    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3502    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
3503
3504commit 6841260c8bb15404a0b4805bee3b0bdfec7176b3
3505Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3506Date:   Fri May 27 20:14:36 2011 -0700
3507
3508    Bug 37624 - parameter x is missing from synopsis of XDrawString in libX11.html
3509    
3510    https://bugs.freedesktop.org/show_bug.cgi?id=37624
3511    
3512    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3513
3514commit 205af6a4e557c62a6395feadc1c89f4a9fe1713b
3515Author: Matt Dew <marcoz@osource.org>
3516Date:   Sat May 21 00:23:06 2011 -0600
3517
3518    Add id's to functions, to make clickable links.
3519    
3520    Signed-off-by: Matt Dew <marcoz@osource.org>
3521    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
3522
3523commit 5c06bc594473f6ab234724cd90db32e7b57fe811
3524Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3525Date:   Fri May 20 15:38:08 2011 -0700
3526
3527    libX11 spec: fix monospaced column alignment after deligaturization
3528    
3529    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3530
3531commit ef0019c714c273cb9b4ad3eba52d0b905109826b
3532Author: James Cloos <cloos@jhcloos.com>
3533Date:   Fri May 20 15:51:46 2011 -0400
3534
3535    Expand latin ligatures out to their NFKC equivalents.
3536    
3537    Ligatures should be done by the typesetting system.
3538    Manuscripts should not bother with them.
3539    
3540    Signed-off-by: James Cloos <cloos@jhcloos.com>
3541    Reviewed-by: Keith Packard <keithp@keithp.com>
3542
3543commit 761b8aa0c9b3c58c478ac5ea1b3aaafadcfc1325
3544Author: Daniel Stone <daniel@fooishbar.org>
3545Date:   Thu May 12 16:21:50 2011 +0200
3546
3547    XCB: Add more friendly error messages for common asserts
3548    
3549    This patch adds more friendly error messages for three common classes of
3550    assertion:
3551        - missed sequence numbers due to being griefed by another thread
3552        - unknown requests in queue due to being griefed by another thread
3553        - extensions dequeuing too much or too little reply data
3554    
3555    It adds error messages offering advice (e.g. call XInitThreads() first)
3556    on stderr, but still generates actual assertions.  Hopefully this means
3557    it's a little more Googleable and a little less frightening.
3558    
3559    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
3560    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
3561
3562commit 159bf292477048b9a2f074735afc516f52c93d80
3563Author: Gaetan Nadon <memsize@videotron.ca>
3564Date:   Thu May 19 20:22:11 2011 -0400
3565
3566    Remove misplaced hyphens in libX11 DocBook/XML #37364
3567    
3568    Reported-by: Christopher Yeleighton <giecrilj@stegny.2a.pl>
3569    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
3570    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3571    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
3572
3573commit 0ee6d8247d397500ae183ef180b6ff21bceefa1c
3574Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3575Date:   Tue May 17 20:49:59 2011 -0700
3576
3577    Fix man page and comment references to use XFreeModifiermap (lowercase map)
3578    
3579    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3580
3581commit 3275ec4ca8790d571b6a1902367ca5f68a2dc5fd
3582Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3583Date:   Tue May 17 20:30:54 2011 -0700
3584
3585    XKB man pages: Fix coordinantes typo in multiple pages
3586    
3587    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3588
3589commit ca33a80606cd68e4572fa49ed6aaa1d1fc31a47f
3590Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3591Date:   Tue May 17 16:27:32 2011 -0700
3592
3593    DisplayOfCCC.man: Fix typo "ClientWhitePointOfCC" -> "ClientWhitePointOfCCC"
3594    
3595    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3596
3597commit ae39d82b01359b07dd1fe092d867f79ea95a5438
3598Author: Jeremy Huddleston <jeremyhu@apple.com>
3599Date:   Sun May 8 09:08:07 2011 -0700
3600
3601    Silence clang static analysis warnings for SetReqLen
3602    
3603    This provides a simplified version of the SetReqLen macro when using clang for
3604    static analysis.  Prior to this change, we would see many Idempotent operation
3605    warnings inside this macro due to the common case of calling with arg2 and
3606    arg3 being the same variable.  This has no effect on code produced during
3607    compilation, but it silences a number of false positives in static analysis.
3608    
3609    XIPassiveGrab.c:170:5: warning: Assigned value is always the same as the existing value
3610        SetReqLen(req, num_modifiers, num_modifiers);
3611        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3612    In file included from XIPassiveGrab.c:26:
3613    .../include/X11/Xlibint.h:580:8: note: instantiated from:
3614                n = badlen; \
3615                  ^
3616    
3617    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
3618
3619commit 130af2bc02090ee2526adb2f9803fc07019b8f1f
3620Author: Jeremy Huddleston <jeremyhu@apple.com>
3621Date:   Wed May 4 15:34:31 2011 -0700
3622
3623    XKB: XkbComputeSectionBounds: Check correct bounds in default switch-case
3624    
3625    XKBGeom.c:191:25: warning: Access to field 'x1' results in a dereference of a null pointer (loaded from variable 'rbounds')
3626            _XkbCheckBounds(bounds,rbounds->x1,rbounds->y1);
3627                                   ^~~~~~~
3628    
3629    Found-by: clang static analyzer
3630    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
3631    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
3632
3633commit c987ef04bea345d5810e60cf6c53b747ddbe910e
3634Author: Jeremy Huddleston <jeremyhu@apple.com>
3635Date:   Wed May 4 15:31:17 2011 -0700
3636
3637    Revert "XKB: Avoid a possible NULL dereference"
3638    
3639    Sorry for the noise.  I accidentally pushed and didn't mean to. =(
3640    
3641    This reverts commit 4024091678ea07e0d898b798df9b29f3bf68eb08.
3642
3643commit 46d04bc4e7ff6c86385002c929d8eb0310f737a8
3644Author: Jeremy Huddleston <jeremyhu@apple.com>
3645Date:   Wed May 4 11:35:31 2011 -0700
3646
3647    Dead code removal
3648    
3649    XKBGeom.c:118:27: warning: Assigned value is always the same as the existing value
3650        for (key=row->keys,pos=k=0;k<row->num_keys;k++,key++) {
3651                           ~~~^~~~
3652    XKBGeom.c:115:5: warning: Value stored to 'pos' is never read
3653        pos= 0;
3654        ^    ~
3655    
3656    Found-by: clang static analyzer
3657    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
3658
3659commit 4024091678ea07e0d898b798df9b29f3bf68eb08
3660Author: Jeremy Huddleston <jeremyhu@apple.com>
3661Date:   Wed May 4 11:34:53 2011 -0700
3662
3663    XKB: Avoid a possible NULL dereference
3664    
3665    XKBGeom.c:191:25: warning: Access to field 'x1' results in a dereference of a null pointer (loaded from variable 'rbounds')
3666            _XkbCheckBounds(bounds,rbounds->x1,rbounds->y1);
3667                                   ^~~~~~~
3668    
3669    Found-by: clang static analyzer
3670    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
3671
3672commit 626e5e34be55b7cf734d745bd40a7ee3359029f8
3673Author: Jeremy Huddleston <jeremyhu@apple.com>
3674Date:   Wed May 4 11:21:41 2011 -0700
3675
3676    Annotate _XIOError as _X_NORETURN
3677    
3678    Found-by: clang static analyzer
3679    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
3680
3681commit d3d7896408b435ab42656398839ff4351a37724d
3682Author: Jeremy Huddleston <jeremyhu@apple.com>
3683Date:   Tue May 3 09:32:53 2011 -0700
3684
3685    clang analyzer: Don't warn about Xmalloc(0)
3686    
3687    This will prevent a number of false positives in where clang's
3688    static analysis reports about calls to malloc(0).
3689    
3690    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
3691
3692commit 393921cf2188b2b0713cc157effaf17d0abab783
3693Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3694Date:   Thu Apr 21 16:21:04 2011 -0700
3695
3696    Delete special case code to append "/sparcv9" to i18n module path
3697    
3698    Was triggered by defined(__sparcv9) so only built on Solaris SPARC 64-bit.
3699    Inconsistent with all other platforms, and a bit overcomplicated.
3700    
3701    Should anyone need to continue using that path, simply build with
3702    a #define POSTLOCALELIBDIR "sparcv9" to get the same result.
3703    
3704    Fixes Solaris bug 7038737:
3705     sparcv9 Xlib looking in wrong path for i18n loadable modules
3706    
3707    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3708    Reviewed-by: Daniel Stone <daniel@fooishbar.org>
3709
3710commit b9ff9cfd5c56ae6d52c6503f7019756d9de29557
3711Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3712Date:   Thu Apr 14 13:47:12 2011 -0700
3713
3714    specs/libX11: Fix XOpenDisplay() prototype in chapter 2 [bug 36244]
3715    
3716    Was incorrectly showing AllPlanes() instead when describing XOpenDisplay()
3717    
3718    https://bugs.freedesktop.org/show_bug.cgi?id=36244
3719    
3720    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3721
3722commit b850adbdebcf500c659f85285d4d7374e15857f5
3723Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3724Date:   Tue Apr 12 22:30:45 2011 -0700
3725
3726    Convert malloc(strlen()); strcpy() sets to strdup
3727    
3728    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3729    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
3730
3731commit 09194042d3dc44a463add1f7c122a68ffd5ef0bf
3732Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3733Date:   Tue Apr 12 21:27:45 2011 -0700
3734
3735    Replace Xmalloc+bzero pairs with Xcalloc calls
3736    
3737    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3738    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
3739
3740commit ac1e2bff7121987fd768500a11d428d9fb9447c5
3741Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3742Date:   Fri Mar 25 14:47:35 2011 +0200
3743
3744    om: Fix memory leaks on get_font_name error paths.
3745    
3746    While at it, remove unneeded check for NULL before Xfree.
3747    
3748    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3749    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3750
3751commit 7c362e275c93c92b4e68fe862e73ee36665de703
3752Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3753Date:   Wed Mar 30 15:06:10 2011 +0300
3754
3755    xcms: Fix memory leaks on LINEAR_RGB_InitSCCData error path.
3756    
3757    pScreenData is replaced when building per visual intensity tables. If
3758    malloc failed the old value of pScreenData (stored also in
3759    pScreenDefaultData) was being leaked. Also, property_return wasn't
3760    free'd in that case.
3761    
3762    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3763    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3764
3765commit 5c810e2ac233e00f361549bafb9b59e8a9e05eff
3766Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3767Date:   Wed Mar 30 15:19:28 2011 +0300
3768
3769    xcms: Fix error on LINEAR_RGB_InitSCCData error path.
3770    
3771    Due to what looks like a copy & paste error, pScreenData->pBlueTbl would
3772    be accessed after being free'd.
3773    
3774    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3775    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3776
3777commit d749948f9492fd9b61c74655a08e32c595e0e3a5
3778Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3779Date:   Fri Mar 25 16:06:15 2011 +0200
3780
3781    om: Fix potential memory leak in init_om.
3782    
3783    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3784    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3785
3786commit d0749d6abdf0fd4d8b4e59b02dad8ccda3f10995
3787Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3788Date:   Thu Mar 24 20:40:41 2011 +0200
3789
3790    om: Fix memory leak on read_EncodingInfo error path.
3791    
3792    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3793    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3794
3795commit 4b2e8d00f5b6969c14003ee8eb258b9f0e4dd7c3
3796Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3797Date:   Thu Mar 24 19:55:33 2011 +0200
3798
3799    Fix memory leaks on _XimCbDispatch error path.
3800    
3801    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3802    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3803
3804commit 46e6c78b1a89e4774e0f7e0f4d6d0fd060c3897e
3805Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3806Date:   Thu Mar 24 19:52:05 2011 +0200
3807
3808    Fix memory leak on _XimCommitRecv error path.
3809    
3810    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3811    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3812
3813commit 0ace642a2d47265f01450bfa2b2fd48eb6956a83
3814Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3815Date:   Thu Mar 24 19:48:44 2011 +0200
3816
3817    Fix memory leaks on _XimWriteCachedDefaultTree error paths.
3818    
3819    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3820    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3821
3822commit e29be94edbb58b3b8dab545377a710d1f73b61e0
3823Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3824Date:   Thu Mar 24 19:42:36 2011 +0200
3825
3826    Fix memory leaks on _XimGetAttributeID error paths.
3827    
3828    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3829    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3830
3831commit d144a50512466766f55ce61e3884925334b08f0d
3832Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3833Date:   Thu Mar 24 19:36:56 2011 +0200
3834
3835    Fix memory leaks on _XimProtoCreateIC error paths.
3836    
3837    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3838    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3839
3840commit 6a452f7a98499508f753cb8a7c3f08bcbec736b9
3841Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3842Date:   Thu Mar 24 16:24:29 2011 +0200
3843
3844    Fix leaks in _XimEncodingNegotiation error paths.
3845    
3846    name_ptr and detail_ptr weren't free'd in some cases before returning
3847    False.
3848    
3849    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3850    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3851
3852commit 396e5a452a59c1f121220ba72167b720a863b30f
3853Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3854Date:   Thu Mar 24 14:17:44 2011 +0200
3855
3856    FSWrap: fix potential leak in copy_string_list
3857    
3858    If list_count is 0, dst would be allocated and leaked.
3859    
3860    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3861    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3862
3863commit 1a944260182bb552b954d69f6355c2760d4415df
3864Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3865Date:   Wed Mar 23 14:36:22 2011 +0200
3866
3867    Fix memory leak with broken bitmap files in XReadBitmapFileData
3868    
3869    Bitmap file data is read looping through the lines in the input file. If
3870    there is extra data after the bitmap, these lines will be processed and
3871    if this data represents another bitmap it will replace the one read
3872    before causing the memory allocated for bits to leak.
3873    
3874    This changes the code to stop processing the file once a bitmap was
3875    read.
3876    
3877    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3878    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3879
3880commit c1c91e9a221a0e762d96cc12a3f189d6e59f4865
3881Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3882Date:   Tue Apr 12 20:50:42 2011 -0700
3883
3884    Fix "attrinute" typo in comments in ximcp
3885    
3886    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3887
3888commit 7103b83a88edb9c93acfa68f3b556595b087baff
3889Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3890Date:   Fri Apr 8 21:36:11 2011 -0700
3891
3892    Make doc install subdirectories more like the pre-docbook.am paths
3893    
3894    Haven't restored the "specs" path in the install path, but have restored
3895    libX11 & i18n subdirectories in the path for better logical grouping.
3896    
3897    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3898    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
3899
3900commit 9a1ae7a90f815a737a942e42d5eb1ffff400977b
3901Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3902Date:   Fri Apr 8 13:24:28 2011 -0700
3903
3904    Install xml versions of specs even if HAVE_XMLTO is false
3905    
3906    Moves HAVE_XMLTO check into docbook.am, more closely matches behaviour
3907    from before docbook.am changes (commit e8c76407d2f6e3)
3908    
3909    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3910    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
3911
3912commit a0ad0d5c99023bb9a8ce3944dbc3267f5265721e
3913Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3914Date:   Tue Apr 5 13:29:04 2011 -0700
3915
3916    libX11 1.4.3
3917    
3918    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3919
3920commit e8c76407d2f6e3b11babdb84426e43e780c859c3
3921Author: Gaetan Nadon <memsize@videotron.ca>
3922Date:   Fri Feb 25 09:23:54 2011 -0500
3923
3924    Documentation: add Docbook external references support
3925    
3926    When writing technical documentation, it is often necessary to cross
3927    reference to other information. When that other information is not in the
3928    current document, additional support is needed, namely <olink>.
3929    
3930    A new feature with version 1.7 of xorg-sgml-doctools adds references to
3931    other documents within or outside this package.
3932    
3933    This patch adds technical support for this feature but does not change
3934    the content of the documentation as seen by the end user.
3935    
3936    Each book or article must generate a database containing the href
3937    of sections that can be referred to from another document. This database
3938    is installed in DATAROOTDIR/sgml/X11/dbs. There is a requirement that
3939    the value of DATAROOTDIR for xorg-sgml-doctools and for the package
3940    documentation is the same. This forms a virtual document tree.
3941    
3942    This database is consulted by other documents while they are being generated
3943    in order to fulfill the missing information for linking.
3944    Refer to the xorg-sgml-doctools for further technical information.
3945    
3946    Co-authored-by: Matt Dew <marcoz@osource.org>
3947    
3948    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
3949
3950commit 25eb76b3d2726f2f1de759901971ae53b2539dc4
3951Author: Harshula Jayasuriya <harshula@gmail.com>
3952Date:   Mon Mar 21 14:49:37 2011 +0000
3953
3954    Add #define XK_SINHALA
3955    
3956    Add #define XK_SINHALA so that the Sinhala keysyms can be used by
3957    the lk xkb keymap.
3958    
3959    Signed-off-by: Harshula Jayasuriya <harshula@gmail.com>
3960    Reviewed-by: Daniel Stone <daniel@fooishbar.org>
3961
3962commit db8b20b789112717ac0590b40f0b4dc2171797d0
3963Author: Jeremy Huddleston <jeremyhu@apple.com>
3964Date:   Thu Mar 17 16:15:00 2011 -0700
3965
3966    configure.ac: Bump version to 1.4.2
3967    
3968    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
3969
3970commit 83e1ba59c48c79f8b0a7e7aa0b9c9cfd84fa403d
3971Author: Jamey Sharp <jamey@minilop.net>
3972Date:   Tue Mar 15 16:48:07 2011 -0700
3973
3974    Call _XErrorFunction without holding the Display lock.
3975    
3976    Historically, Xlib dropped the Display lock around the upcall to any
3977    user-supplied _XErrorFunction, but somewhere along the way I quit doing
3978    that if you built with XCB. The reasons are lost somewhere in the
3979    pre-git history of Xlib/XCB, and I can't now see any reason to hold the
3980    lock.
3981    
3982    The documentation for XSetErrorHandler still applies though:
3983    
3984        Because this condition is not assumed to be fatal, it is acceptable
3985        for your error handler to return; the returned value is ignored.
3986        However, the error handler should not call any functions (directly
3987        or indirectly) on the display that will generate protocol requests
3988        or that will look for input events.
3989    
3990    So while you are now once again permitted to re-enter Xlib from the
3991    error handler, you're only allowed to call non-protocol functions.
3992    
3993    Signed-off-by: Jamey Sharp <jamey@minilop.net>
3994
3995commit fd85aca7a616c595fc17b2520f84316a11e8906f
3996Author: Jamey Sharp <jamey@minilop.net>
3997Date:   Mon Mar 14 14:45:35 2011 -0700
3998
3999    Ignore user locks after sleeping in _XReply and _XReadEvents.
4000    
4001    This bug appears as a hang in applications that wait for replies from
4002    multiple threads, where one such thread has taken a user lock using
4003    XLockDisplay.
4004    
4005    Prior to this fix, the code could deadlock in this way: If thread 1 goes
4006    to sleep waiting for a reply, and then thread 2 takes a user lock and
4007    waits for a reply, then thread 2 will wait for thread 1 to process its
4008    reply (because responses must be processed in order), but thread 1 will
4009    wait for thread 2 to drop its user lock.
4010    
4011    Fixed by making thread 1 not wait for thread 2 to drop its user lock.
4012    This makes the semantics of user locks hard to define, but they were
4013    already hard to define. The new behavior appears to be consistent with
4014    the way Xlib worked historically, anyway.
4015    
4016    Fixes: http://lists.freedesktop.org/archives/xcb/2011-March/006802.html
4017    
4018    There was a similar potential for deadlock in _XReadEvents, fixed the
4019    same way, with the same caveats about user-lock semantics.
4020    
4021    Signed-off-by: Jamey Sharp <jamey@minilop.net>
4022
4023commit 690f8bffd48a4e7e74298360ddd0431dc95dcd3f
4024Author: Erkki Seppälä <erkki.seppala@vincit.fi>
4025Date:   Tue Jan 18 15:58:20 2011 +0200
4026
4027    xkb: XkbPropertyPtr determined allocation success from wrong variables
4028    
4029    Cannot reach dead statement "return NULL;"
4030    
4031    Check for the NULLness of prop->name and prop->value instead of
4032    name and value, which was checked earlier anyway. Decided against
4033    using strdup due to curious memory allocation functions and the
4034    rest of the xkb not using it either.
4035    
4036    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
4037    Reviewed-by: Alan Coopersmith <alan.coopersmith at oracle.com>
4038
4039commit 6a4d027284e7bb5dd458157947bbb1ff580ad071
4040Author: Erkki Seppälä <erkki.seppala@vincit.fi>
4041Date:   Mon Jan 10 16:37:22 2011 +0200
4042
4043    keyBind: Use Xcalloc to initialize allocated _XKeytrans
4044    
4045    Using uninitialized value "p->modifiers"
4046    
4047    Small fix by using Xcalloc instead of Xmalloc
4048    
4049    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
4050    Reviewed-by: Alan Coopersmith <alan.coopersmith at oracle.com>
4051
4052commit b993d73bb3214ecc24646f5427c8003b816c6921
4053Author: Erkki Seppälä <erkki.seppala@vincit.fi>
4054Date:   Mon Jan 10 16:22:45 2011 +0200
4055
4056    im/ximcp: release modifiermap before returning
4057    
4058    Variable "map" goes out of scope
4059    
4060    Release modifiermap before returning. Reordered code to call
4061    XGetModifierMapping after the first return from the function.
4062    
4063    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
4064    Reviewed-by: Dirk Wallenstein <halsmit@t-online.de>
4065
4066commit 807a7fc0354f2212dfa5ff1f9e4ede56d8e69ef4
4067Author: Gaetan Nadon <memsize@videotron.ca>
4068Date:   Fri Feb 25 09:23:54 2011 -0500
4069
4070    Docbook: change the book id to match the xml file basename
4071    
4072    This is required for the up-coming external references support.
4073    
4074    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
4075
4076commit 40812b53ff5fe548f6eaf43ba4c8781cb43dab43
4077Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
4078Date:   Mon Feb 21 21:54:17 2011 +0100
4079
4080    Make the Local XIM request key releases for braille
4081    
4082    Braille chords management needs key release events. We need to explicitly
4083    request then, else GTK would not pass them throught XFilterEvent and braille
4084    wouldn't work.
4085    
4086    Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
4087
4088commit c97c42c49cd5095462abecdf908b416fb0b540b6
4089Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
4090Date:   Mon Feb 21 17:27:38 2011 +0100
4091
4092    Match braille patterns with compose tree
4093    
4094    Braille patterns should also be usable in Compose.  This combines the
4095    implementation of braille chords and compose tree: only emit the braille
4096    pattern if it can not be found in the compose tree, if any.
4097    
4098    Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
4099
4100commit 0c6ca565d7c8a47ef3ea823569a9ca5298a5307d
4101Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
4102Date:   Mon Feb 21 15:56:54 2011 +0100
4103
4104    Fix status reporting for braille patterns
4105    
4106    _XimLocalMbLookupString can return a braille keysym even if _Xlcwctomb can't
4107    convert to the current MB charset.
4108    _XimLocalUtf8LookupString needs to set the braille keysym and status too.
4109    
4110    Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
4111
4112commit 993abe751f4141f54d8d28b8b73588a1c9085970
4113Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4114Date:   Fri Feb 11 14:49:17 2011 -0800
4115
4116    Clean up memory when first XCreateRegion succeeds and second fails
4117    
4118    Error: Memory leak (CWE 401)
4119       Memory leak of pointer 's' allocated with XCreateRegion()
4120            at line 387 of /export/alanc/X.Org/sx86-gcc/lib/libX11/src/Region.c in function 'XShrinkRegion'.
4121              's' allocated at line 387 with XCreateRegion().
4122              s leaks when s != 0 at line 387.
4123    Error: Memory leak (CWE 401)
4124       Memory leak of pointer 'tra' allocated with XCreateRegion()
4125            at line 1452 of /export/alanc/X.Org/sx86-gcc/lib/libX11/src/Region.c in function 'XXorRegion'.
4126              'tra' allocated at line 1451 with XCreateRegion().
4127              tra leaks when tra != 0 at line 1451.
4128    
4129    [ This bug was found by the Parfait 0.3.6 bug checking tool.
4130      For more information see http://labs.oracle.com/projects/parfait/ ]
4131    
4132    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4133
4134commit 6ac417cea1136a3617f5e40f4b106aaa3f48d6c2
4135Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4136Date:   Fri Feb 11 14:20:24 2011 -0800
4137
4138    ximcp: Prevent memory leak & double free if multiple %L in string
4139    
4140    In the highly unlikely event that TransFileName was passed a path
4141    containing multiple %L entries, for each entry it would call
4142    _XlcFileName, leaking the previous results, and then for each entry it
4143    would copy from that pointer and free it, resulting in invalid pointers
4144    & possible double frees for each use after the first one freed it.
4145    
4146    Error: Use after free (CWE 416)
4147       Use after free of pointer 'lcCompose'
4148            at line 358 of modules/im/ximcp/imLcPrs.c in function 'TransFileName'.
4149              Previously freed at line 360 with free.
4150    Error: Use after free (CWE 416)
4151       Use after free of pointer 'lcCompose'
4152            at line 359 of modules/im/ximcp/imLcPrs.c in function 'TransFileName'.
4153              Previously freed at line 360 with free.
4154    Error: Double free (CWE 415)
4155       Double free of pointer 'lcCompose'
4156            at line 360 of modules/im/ximcp/imLcPrs.c in function 'TransFileName'.
4157              Previously freed at line 360 with free.
4158    
4159    [ This bug was found by the Parfait 0.3.6 bug checking tool.
4160      For more information see http://labs.oracle.com/projects/parfait/ ]
4161    
4162    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4163
4164commit 502d414118c97d35a44f8e295709682022876331
4165Author: Erkki Seppälä <erkki.seppala@vincit.fi>
4166Date:   Thu Feb 3 17:08:57 2011 +0200
4167
4168    xcms/cmsProp: don't deal with uninitialized values, fail instead
4169    
4170    Properly handle the return value of XGetWindowProperty by considering
4171    if after the loop as well.
4172    
4173    Using freed pointer "prop_ret"
4174    
4175    There were numerous things wrong in how this function interacted with
4176    XGetWindowProperty.
4177    
4178    None of the local variables were initialized and remained that way if
4179    the call to XGetWindowProperty returned 1 (not Succeed). That doesn't
4180    result in after_ret being initialized in which case if it happens to
4181    be 0, the loop was exited. In that case format_ret and nitems_ret were
4182    uninitialized and the function might return with success (but with
4183    uninitialized pointer in prop_ret) or XcmsFailure.
4184    
4185    As the buffer enlarging code was called only when XGetWindowProperty
4186    failed (returned not Success), after_ret would not have been
4187    initialized. It would have been initialized only if the
4188    XGetWindowProperty has returned Success earlier, but in that case the
4189    code fragment would not have been reached.
4190    
4191    This patch alters the function to return XcmsFailure if the call to
4192    XGetWindowProperty fails.
4193    
4194    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4195    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
4196    Reviewed-by: Rami Ylimäki <rami.ylimaki@vincit.fi>
4197    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
4198
4199commit c37e278993b9e5b3d7025ef4c434373a011996ec
4200Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
4201Date:   Mon Jan 31 14:02:07 2011 +0200
4202
4203    xcms/LRGB: don't double-free property_return
4204    
4205    property_return was free'd before and in the case the conditional is true,
4206    the call to XcmsGetProperty failed which means that property_return wasn't
4207    set so there is no need to free it again.
4208    
4209    Double free of pointer "property_return" in call to "free"
4210    
4211    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4212    Reviewed-by: Erkki Seppälä <erkki.seppala@vincit.fi>
4213    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
4214
4215commit 50f4107811249806718a100f9d34f996c58e5e25
4216Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4217Date:   Wed Feb 2 08:58:45 2011 -0800
4218
4219    Xrm.c: ReadInFile: refactor fstat error handling
4220    
4221    We can simplify the fstat failure case now that the GetFileSize macro
4222    has been expanded inline.
4223    
4224    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4225    Reviewed-by: Julien Cristau <jcristau@debian.org>
4226
4227commit 5e9c40fcb5da43c9fdacf12967d090bf202daf2a
4228Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4229Date:   Wed Feb 2 08:56:00 2011 -0800
4230
4231    Expand GetSizeOfFile() macro at the one place it's called
4232    
4233    Removes XrmI.h header that only contained this single macro
4234    
4235    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4236    Reviewed-by: Julien Cristau <jcristau@debian.org>
4237
4238commit 450e17422c0e374d25c643f343ea268cec68da38
4239Author: Erkki Seppälä <erkki.seppala@vincit.fi>
4240Date:   Mon Jan 31 14:01:57 2011 +0200
4241
4242    XlibInt: Use strncpy+zero termination instead of strcpy to enforce buffer size
4243    
4244    Possible overrun of 8192 byte fixed size buffer "buffer" by copying
4245    "ext->name" without length checking
4246    
4247    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4248    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
4249    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
4250    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4251
4252commit e2566e43b02d2d7b7c1c3bb7db7c5ae81c1245fa
4253Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
4254Date:   Mon Jan 31 14:02:13 2011 +0200
4255
4256    lc/def/lcDefConv: Use Xcalloc to avoid use of uninitialized memory
4257    
4258    Fixed by zero'ing conv on allocation with Xcalloc. Then
4259    close_converter works properly.
4260    
4261    Using uninitialized value "conv->state" in call to function "close_converter"
4262    
4263    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4264    Reviewed-by: Erkki Seppälä <erkki.seppala@vincit.fi>
4265    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
4266    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4267
4268commit 03f81ad8fb9783986cf9b17661dd31e95c396681
4269Author: Erkki Seppälä <erkki.seppala@vincit.fi>
4270Date:   Mon Jan 31 14:02:16 2011 +0200
4271
4272    xlibi18n/lcFile: Removed superfluous check for NULL target_dir
4273    
4274    The situation is already handled before this code.
4275    
4276    Cannot reach dead expression "0U" inside statement "if (1U + (target_dir ? strl..."
4277    
4278    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4279    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
4280    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
4281    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4282
4283commit 1346b9ea3b3882201ff8c3ee462ff4b0d4edf639
4284Author: Erkki Seppälä <erkki.seppala@vincit.fi>
4285Date:   Mon Jan 31 14:02:15 2011 +0200
4286
4287    ximcp/imLckup: Handle negative return value from _Xlcwctomb
4288    
4289    Fixed by negative value to memcpy by checking for the negative return
4290    value of _Xlcwctomb and returning 0/XLookupNone in that case.
4291    
4292    a negative value was passed to memcpy
4293    
4294    Unfortunately the other return values for *status don't fit into the
4295    error (which appears to indicate some internal error or running out of
4296    memory). The other valid status codes are XBufferOverflow,
4297    XLookupNone, XLookupChars, XLookupKeySym, and XLookupBoth. Each of
4298    these has a specific meaning attached.
4299    
4300    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
4301    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
4302    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4303
4304commit 79a5c86e020f08cc108184298a72e2777036de39
4305Author: Erkki Seppälä <erkki.seppala@vincit.fi>
4306Date:   Mon Jan 31 14:02:14 2011 +0200
4307
4308    ximcp/imTrX: Handle failing XGetWindowProperty
4309    
4310    Checked return value of XGetWindowProperty and return false if it fails.
4311    
4312    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
4313    
4314    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4315    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
4316    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4317
4318commit 2ace8d5c89c8f6d9f42b4068f4b508ca28f0ced1
4319Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
4320Date:   Mon Jan 31 14:02:12 2011 +0200
4321
4322    XlibInt: info_list->watch_data was reallocated, but result was discarded
4323    
4324    info_list->watch_data was being reallocated, but the return value of
4325    the reallocation was stored only into a local variable. This might
4326    cause some funky behavior and crashes.
4327    
4328    Variable "wd_array" goes out of scope
4329    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)))"
4330    
4331    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4332    Reviewed-by: Erkki Seppälä <erkki.seppala@vincit.fi>
4333    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
4334    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4335
4336commit 2b16a7e683e355c9746290b2cee2fd0dd2bf342a
4337Author: Erkki Seppälä <erkki.seppala@vincit.fi>
4338Date:   Mon Jan 31 14:02:10 2011 +0200
4339
4340    GetProp: Zero-initialized error so its resourceID field is initialized
4341    
4342    Using uninitialized value "error.resourceID" in call to function "_XError"
4343    
4344    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4345    Reviewed-by: Erkki Seppälä <erkki.seppala@vincit.fi>
4346    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
4347    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4348
4349commit 85e9f38e016137f0ff2791eb0d092ab027382d2c
4350Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
4351Date:   Tue Feb 1 11:07:25 2011 +0200
4352
4353    xcms/LRGB: Add a label for freeing property_return.
4354    
4355    The rest of the code uses goto's to free memory allocated later
4356    and prevent memory leaks, but there were several paths were
4357    property_return was free'd just before a goto.
4358    
4359    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4360    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
4361    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
4362    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4363
4364commit 3161dc57d4e9b70f852f05e5e474455e121b06ab
4365Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
4366Date:   Mon Jan 31 14:02:08 2011 +0200
4367
4368    xcms/LRGB: Fix potential resource leak.
4369    
4370    property_return was not free'd if the allocation of pRedTbl failed.
4371    
4372    Reviewed-by: Erkki Seppälä <erkki.seppala@vincit.fi>
4373    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
4374    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4375
4376commit be3e6c205d94dedc1cdebf5d17b987f0f828377a
4377Author: Erkki Seppälä <erkki.seppala@vincit.fi>
4378Date:   Mon Jan 31 14:02:06 2011 +0200
4379
4380    Xrm: Handle the extremely unlikely situation of fstat failing
4381    
4382    Tracked variable "size" was passed to a negative sink.
4383    
4384    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4385    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
4386    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
4387    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4388
4389commit 3fae16c64d6ef76fd4a25a54c7f7de76596457db
4390Author: Erkki Seppälä <erkki.seppala@vincit.fi>
4391Date:   Mon Jan 31 14:02:05 2011 +0200
4392
4393    Xrm: NEWTABLE had a memory leak after a memory allocation error
4394    
4395    The NEWTABLE macro missed freeing its allocated memory on subsequent
4396    memory allocation errors. Added call to Xfree.
4397    
4398    Variable "table" goes out of scope
4399    
4400    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4401    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
4402    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
4403    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4404
4405commit 7110ac653349a23c80c365f11f6270dc27c8975a
4406Author: Erkki Seppälä <erkki.seppala@vincit.fi>
4407Date:   Mon Jan 31 14:02:03 2011 +0200
4408
4409    ImUtil: Handle a memory leak in one early return branch
4410    
4411    Fixed memory leak by adding Xfree for image
4412    
4413    Variable "image" goes out of scope
4414    
4415    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4416    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
4417    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
4418    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4419
4420commit d695f5da9f5b778e54b6987d9177048e32818c4d
4421Author: Erkki Seppälä <erkki.seppala@vincit.fi>
4422Date:   Mon Jan 31 14:02:01 2011 +0200
4423
4424    ximcp/imRm: Handle leaking colormap_ret
4425    
4426    Fixed memory leak by adding Xfree for colormap_ret
4427    
4428    Variable "colormap_ret" goes out of scope
4429    
4430    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4431    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
4432    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
4433    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4434
4435commit f9eda19d08c1ea0973dfe0bc10a2519d6fd26cc7
4436Author: Erkki Seppälä <erkki.seppala@vincit.fi>
4437Date:   Mon Jan 31 14:01:59 2011 +0200
4438
4439    ximcp/imRmAttr: Handle leaking missing_list
4440    
4441    Fixed memory leak by adding Xfree and initializing missing_list with NULL
4442    
4443    Variable "missing_list" goes out of scope
4444    
4445    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4446    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
4447    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
4448    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4449
4450commit 3183269e0979c9dbce9d55d9e03937897dc9fb3b
4451Author: Erkki Seppälä <erkki.seppala@vincit.fi>
4452Date:   Mon Jan 31 14:01:58 2011 +0200
4453
4454    ximcp/imRmAttr: Handle leaking colormap_ret
4455    
4456    XFree colormap_ret and initialize it when appropriate.
4457    
4458    Variable "colormap_ret" goes out of scope
4459    
4460    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4461    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
4462    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4463
4464commit f66a032a937030f2d9baa81744d36dc585bb085c
4465Author: Erkki Seppälä <erkki.seppala@vincit.fi>
4466Date:   Mon Jan 31 14:01:56 2011 +0200
4467
4468    xlibi18n/lcGeneric: Initialize uninitialized local variable
4469    
4470    Using uninitialized value "new"
4471    
4472    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4473    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
4474    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
4475    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4476
4477commit d0266e06d38110ec908ca28379014eff743630b7
4478Author: Erkki Seppälä <erkki.seppala@vincit.fi>
4479Date:   Mon Jan 31 14:01:54 2011 +0200
4480
4481    xcmx/cmxColNm: Removed unused assignments to pBuf (in two functions)
4482    
4483    Pointer "pBuf" returned from "fgets(buf, 256, stream)" is never used
4484    
4485    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4486    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
4487    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
4488    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4489
4490commit cc686655d7bfdeab8b67e01a24bd452a2e9e3fcf
4491Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4492Date:   Tue Feb 1 12:30:56 2011 +0200
4493
4494    XDefaultOMIF.c: Fix memory leaks in get_font_name
4495    
4496    Instead of copying the value returned by get_prop_name and then releasing it,
4497    directly use the return value of get_prop_name, which allocates memory for the
4498    name.
4499    
4500    If get_prop_name returns NULL, continue on to XFreeFont to release the font
4501    before returning the NULL via the normal function return.
4502    
4503    Reviewed-by: Erkki Seppälä <erkki.seppala@vincit.fi>
4504    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4505
4506commit 95796351435d81eaef8166d49ba3a6e7b633d70a
4507Author: Gaetan Nadon <memsize@videotron.ca>
4508Date:   Mon Jan 31 14:50:19 2011 -0500
4509
4510    config: comment, minor upgrade, quote and layout configure.ac
4511    
4512    Group statements per section as per Autoconf standard layout
4513    Quote statements where appropriate.
4514    Autoconf recommends not using dnl instead of # for comments
4515    
4516    Use AC_CONFIG_FILES to replace the deprecated AC_OUTPUT with parameters.
4517    Remove redundant AC_CANONICAL_HOST included in XORG_DEFAULT_OPTIONS
4518    
4519    This helps automated maintenance and release activities.
4520    Details can be found in http://wiki.x.org/wiki/NewModuleGuidelines
4521    
4522    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
4523
4524commit e994ab227ed28655565c3193e63733630105e7f9
4525Author: Erkki Seppälä <erkki.seppala@vincit.fi>
4526Date:   Tue Jan 18 12:49:48 2011 +0200
4527
4528    Comparing array against NULL is not useful "&xkb->server->vmods != NULL"
4529    
4530    Removed superfluous comparison.
4531    
4532    Reviewed-by: Dirk Wallenstein <halsmit@t-online.de>
4533    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
4534
4535commit 4115f051e62f9b098efce691e070d44f09f30f1c
4536Author: Erkki Seppälä <erkki.seppala@vincit.fi>
4537Date:   Wed Jan 12 15:51:11 2011 +0200
4538
4539    Variable "entry" tracked as NULL was dereferenced.
4540    
4541    Check entry for non-nullness before dereferencing it
4542    
4543    Reviewed-by: Dirk Wallenstein <halsmit@t-online.de>
4544    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
4545    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
4546
4547commit 0edb76d1d5fdca5a2543332699be2e72386dab24
4548Author: Erkki Seppälä <erkki.seppala@vincit.fi>
4549Date:   Thu Jan 27 09:54:00 2011 +0200
4550
4551    Dereferencing possibly NULL "str" in call to function "memcpy" (Deref assumed on the basis of 'nonnull' parameter attribute.)
4552    
4553    If _XkbGetReadBufferPtr returns NULL, goto BAILOUT
4554    
4555    Reviewed-by: Dirk Wallenstein <halsmit@t-online.de>
4556    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
4557    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
4558
4559commit 59da8a211ef723909d0530c0331d541db8e63378
4560Author: Erkki Seppälä <erkki.seppala@vincit.fi>
4561Date:   Mon Jan 10 16:17:47 2011 +0200
4562
4563    Using freed pointer "e"
4564    
4565    Reordered code to first to do the comparison and then to release data
4566    
4567    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4568    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
4569    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
4570
4571commit 0f11c229f7099f7c5aeed4691b358dca151dac7d
4572Author: Matt Dew <marcoz@osource.org>
4573Date:   Thu Jan 27 00:31:23 2011 -0700
4574
4575    Remove <literal> tags from compose-chart.pl so pdf building doesn't die on soft-hyphens.
4576    
4577    Signed-off-by: Matt Dew <marcoz@osource.org>
4578    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4579
4580commit ca00bb202f3afcdbbcb8c4cb50308c5dd03f2322
4581Author: Gaetan Nadon <memsize@videotron.ca>
4582Date:   Fri Jan 28 16:07:07 2011 -0500
4583
4584    config: replace deprecated AC_HELP_STRING with AS_HELP_STRING
4585    
4586    This silences an Automake warning.
4587    
4588    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
4589
4590commit 8dac08c7515cb6f8a8f4d0a721713697eae755d8
4591Author: Gaetan Nadon <memsize@videotron.ca>
4592Date:   Fri Jan 28 14:59:04 2011 -0500
4593
4594    config: remove unrequired AC_HEADER_STDC
4595    
4596    Autoconf says:
4597    "This macro is obsolescent, as current systems have conforming
4598    header files. New programs need not use this macro".
4599
4600commit d4483375e37a72631d5821413cb75a423e990ffe
4601Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4602Date:   Tue Jan 18 19:37:02 2011 -0800
4603
4604    config: Use correct AC_CONFIG_HEADERS macro
4605    
4606    Replaces obsolete AM_CONFIG_HEADER and undocumented AC_CONFIG_HEADER
4607    
4608    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4609    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
4610    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
4611
4612commit c6405fe931f313a0d159bdad00244fc8aae12468
4613Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4614Date:   Sun Jan 16 11:55:23 2011 -0800
4615
4616    config: remove AC_PROG_CC as it overrides AC_PROG_C_C99
4617    
4618    XORG_STRICT_OPTION from XORG_DEFAULT_OPTIONS calls
4619    AC_PROG_C_C99. This sets gcc with -std=gnu99.
4620    If AC_PROG_CC macro is called afterwards, it resets CC to gcc.
4621    
4622    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4623    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
4624
4625commit 17aa1f2305da0952ad594c7329d08aba21f13ac8
4626Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4627Date:   Sun Jan 16 11:40:59 2011 -0800
4628
4629    Update to xf86bigfontproto >= 1.2.0 header name
4630    
4631    Clears compile-time warning of:
4632    "X11/extensions/xf86bigfstr.h", line 1: #warning: "xf86bigfstr.h is obsolete and may be removed in the future."
4633    "X11/extensions/xf86bigfstr.h", line 2: #warning: "include <X11/extensions/xf86bigfproto.h> for the protocol defines."
4634    
4635    Requires xf86bigfontproto >= 1.2.0 if --disable-xf86bigfont is not
4636    passed to configure.
4637    
4638    Also removes unnecessary AC_SUBST of BIGFONT_CFLAGS & BIGFONT_LIBS
4639    that PKG_CHECK_MODULES does automatically
4640    
4641    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4642    Reviewed-by: Julien Cristau <jcristau@debian.org>
4643
4644commit a9228fcc676aacf9a760dd94891c89f9bc82b20d
4645Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4646Date:   Tue Jan 11 17:55:22 2011 -0800
4647
4648    libX11 1.4.1
4649    
4650    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4651
4652commit 92fa96451af37a7a0f2592de07643fdaed7a9efd
4653Author: Pauli Nieminen <ext-pauli.nieminen@nokia.com>
4654Date:   Mon Jan 3 12:25:28 2011 -0500
4655
4656    Initialize event type
4657    
4658    If we receive unsupported event closing connection triggers valgrind
4659    error.
4660    
4661    ==12017== Conditional jump or move depends on uninitialised value(s)
4662    ==12017==    at 0x487D454: _XFreeDisplayStructure (OpenDis.c:607)
4663    ==12017==    by 0x486857B: XCloseDisplay (ClDisplay.c:72)
4664    *snip*
4665    ==12017==  Uninitialised value was created by a heap allocation
4666    ==12017==    at 0x4834C48: malloc (vg_replace_malloc.c:236)
4667    ==12017==    by 0x4894147: _XEnq (XlibInt.c:877)
4668    ==12017==    by 0x4891BF3: handle_response (xcb_io.c:335)
4669    ==12017==    by 0x4892263: _XReply (xcb_io.c:626)
4670    *snip*
4671    
4672    Problem is that XFreeDisplaySturture is checking for qelt->event.type ==
4673    GenericEvent while _XUnknownWireEvent doesn't store the type.
4674    
4675    Reviewed-by: Adam Jackson <ajax@redhat.com>
4676    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
4677    Signed-off-by: Pauli Nieminen <ext-pauli.nieminen@nokia.com>
4678
4679commit fa9747b9d4443eef9b1687b8b1208801f5c585da
4680Author: Fernando Carrijo <fcarrijo.lists@gmail.com>
4681Date:   Tue Dec 28 16:18:57 2010 -0500
4682
4683    specs: convert images from gif to svg format.
4684    
4685    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
4686
4687commit 0012e2a4eaddc0840617b4758931ad976ca2eb7c
4688Author: Philipp Reh <sefi@s-e-f-i.de>
4689Date:   Wed Dec 22 15:14:05 2010 +0000
4690
4691    Events: Store event cookie when dequeuing event
4692    
4693    When we dequeue an event in XCheckTypedEvent or XCheckTypedWindowEvent,
4694    make sure to store the corresponding cookie too.
4695    
4696    Signed-off-by: Philipp Reh <sefi@s-e-f-i.de>
4697    Reviewed-by: Daniel Stone <daniel@fooishbar.org>
4698
4699commit d2714d65e85b44abedf5f82e1a31506dba397ef2
4700Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4701Date:   Tue Dec 21 18:47:16 2010 -0800
4702
4703    Revert "Mark atom names argument to XInternAtoms as const"
4704    
4705    This reverts commit c8701115462b482d99ecff24d9de0f2806084ba5.
4706    
4707    The constification of a pointer to a pointer caused unexpected issues,
4708    and xorg-devel was unable to come up with a clean, safe, reasonable way
4709    to handle them, so we're chalking this up for now as yet another mistake
4710    in the Xlib API definition we'll be living with.
4711    
4712    See https://bugs.freedesktop.org/show_bug.cgi?id=32098 for details.
4713    
4714    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4715
4716commit 6459f9a48a82de3bc0235bd36acab2df11e436d5
4717Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4718Date:   Mon Dec 20 20:54:07 2010 -0800
4719
4720    specs/XKB: make acknowlegement section <preface> instead of <chapter>
4721    
4722    Fixes numbering of actual chapters to match their filenames and to
4723    make the table/figure numbering match the references in the text.
4724    
4725    Reported-by: jelmd on freenode irc
4726    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4727
4728commit 42c653d5413fc5870486a9cf51dd28d1e88f7c69
4729Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4730Date:   Sun Dec 19 23:53:02 2010 -0800
4731
4732    Add XKBlib spec images to dist_spec_DATA for distribution & installation
4733    
4734    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4735    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
4736
4737commit 8f8a3c8c42af82976d261ac2447cfbb0f90fa77d
4738Author: Matt Dew <matt@osource.org>
4739Date:   Tue Nov 30 10:52:07 2010 -0500
4740
4741    specs: convert XKBlib spec from Framemaker to DocBook.xml
4742    
4743    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
4744
4745commit c8701115462b482d99ecff24d9de0f2806084ba5
4746Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4747Date:   Sun Nov 21 20:49:05 2010 -0800
4748
4749    Mark atom names argument to XInternAtoms as const
4750    
4751    Updates code & docs for XInternAtoms.
4752    
4753    The single atom name argument to XInternAtom was already const char *
4754    in the code, but not the docs, so updated it in the docs too.
4755    
4756    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4757    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
4758
4759commit 24db5b5ff0d51b0ed9d9701a792c5f14f23b638d
4760Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4761Date:   Sun Nov 21 14:04:32 2010 -0800
4762
4763    libX11 1.4.0
4764    
4765    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4766
4767commit 18d3c3e9de19e936281b111d5a82acfb3a3f552e
4768Author: Dan Nicholson <dbn.lists@gmail.com>
4769Date:   Sat Nov 6 21:58:10 2010 +0000
4770
4771    config: Check host string when deciding architecture to build for
4772    
4773    When checking for the OS/2 platform, $target_os is used. However, unless
4774    building a cross compiler, the $host* strings contain the platform
4775    details for the build system. See:
4776    
4777    http://www.gnu.org/software/automake/manual/automake.html#Cross_002dCompilation
4778    
4779    $host_os is already being used to determine the transport and threading
4780    options.
4781    
4782    Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
4783    Reviewed-by: Julien Cristau <jcristau@debian.org>
4784    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4785
4786commit affc2488a7f2660a74dc8354fc3e0bff2c4f879c
4787Author: Dan Nicholson <dbn.lists@gmail.com>
4788Date:   Sat Nov 6 21:58:09 2010 +0000
4789
4790    config: Fix architecture check for OS/2 to skip nios2 cpu
4791    
4792    The OS/2 platform requires some utility functions as well as having a
4793    non-32 bit wchar_t. Fix the configure check so that it doesn't also
4794    affect the nios2 cpu, which wouldn't influence these operating system
4795    issues.
4796    
4797    Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
4798    Tested-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
4799    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4800    Reviewed-by: Julien Cristau <jcristau@debian.org>
4801    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4802
4803commit 8cbca8a10761d1ea75a75bafa647632d6c0dac71
4804Author: Gaetan Nadon <memsize@videotron.ca>
4805Date:   Tue Nov 9 13:04:44 2010 -0500
4806
4807    config: HTML file generation: use the installed copy of xorg.css
4808    
4809    Currenlty the xorg.css file is copied in each location
4810    where a DocBook/XML file resides. This produces about
4811    70 copies in the $(docdir) install tree.
4812    
4813    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
4814
4815commit 3e8907305e1818369aef5a5c0da61f09e20de4f8
4816Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4817Date:   Fri Oct 29 22:02:10 2010 -0700
4818
4819    libX11 1.3.99.903 (1.4.0 RC3)
4820    
4821    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4822
4823commit 5d245d8013289b13e0c42100951b26166c7fada4
4824Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4825Date:   Fri Oct 29 22:01:39 2010 -0700
4826
4827    Require xorg-macros 1.11 now that it is released
4828    
4829    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4830
4831commit 1ec89689fc771f116a6165226b9e076f54254a40
4832Author: Dan Nicholson <dbn.lists@gmail.com>
4833Date:   Fri Oct 22 19:09:07 2010 -0700
4834
4835    docs: Disable fop documentation by default
4836    
4837    fop is used to generate the pdf and ps formats of the documentation.
4838    This can significantly slow down the build, especially when creating all
4839    the compose key charts. Since few people probably want the full set of
4840    doc formats, set the default to 'no'.
4841    
4842    The default parameter for XORG_WITH_FOP is only available in recent
4843    macros. Users generating configure from older macros will just get
4844    'auto' as the default.
4845    
4846    Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
4847    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
4848    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4849    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4850
4851commit 03877bda911b72ac60a7144d6eced7d5be4b4d72
4852Author: Jon TURNEY <jon.turney@dronecode.org.uk>
4853Date:   Wed Apr 14 13:38:18 2010 +0100
4854
4855    Add C.UTF-8 and C.ASCII locale aliases
4856    
4857    Add C.UTF-8 locale as an alias for en_US.UTF-8
4858    Add C.ASCII locale as an alias for C
4859    
4860    (C.UTF-8 is the default locale for cygwin.  It also exists in debian,
4861    although I don't think it's intended for use by humans.)
4862    
4863    Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
4864    Acked-by: Julien Cristau <jcristau@debian.org>
4865    Reviewed-by: James Cloos <cloos@jhcloos.com>
4866
4867commit 81d1d9a6bdca779a44f931730b866eea75777c00
4868Author: Dan Nicholson <dbn.lists@gmail.com>
4869Date:   Sat Oct 9 16:00:47 2010 -0700
4870
4871    docs: Remove directory prerequisites from make rules
4872    
4873    Make expects prerequisites to be files with valid timestamps, and
4874    directories are treated as always being out of date. Thus, any targets
4875    depending on directories will always be rebuilt.
4876    
4877    Instead, the doc rules are changed to always create the target's leading
4878    directory. This should prevent the documentation from being rebuilt when
4879    "make install" is run.
4880    
4881    Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
4882    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
4883    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4884
4885commit d0cbf388919364fe6b5b9127f36426eb744090a0
4886Author: Jeremy Huddleston <jeremyhu@apple.com>
4887Date:   Sun Sep 26 21:21:16 2010 -0700
4888
4889    Add an "X11_" string to header guards to avoid possible collision
4890    
4891    This addresses a build failure which can result from <X11/Xlocale.h> and
4892    <xlocale.h> being included in the same code since they both used the same
4893    _XLOCALE_H_ protection.
4894    
4895    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
4896
4897commit b51ac675f44f5ce1a28c5734bf3c26983f8b4192
4898Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4899Date:   Tue Sep 21 19:53:03 2010 -0700
4900
4901    libX11 1.3.99.902 (1.4.0 RC2)
4902    
4903    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4904
4905commit 986bb6d1d54368fe91e3ea24f518d43ce6179782
4906Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4907Date:   Tue Sep 14 00:10:31 2010 -0700
4908
4909    Bug 19379 - Provide docs with overview of all compose key combinations
4910    
4911    Adds compose-chart.pl to generate DocBook/XML documents listing compose
4912    keys, and Makefile rules to generate HTML & PDF output from them if xmlto
4913    is present.
4914    
4915    https://bugs.freedesktop.org/show_bug.cgi?id=19379
4916    
4917    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4918    Reviewed-by: Mikhail Gusarov <dottedmag@dottedmag.net>
4919    Reviewed-by: James Cloos <cloos@jhcloos.com>
4920    Tested-by: Gaetan Nadon <memsize@videotron.ca>
4921
4922commit 3eb064071695ebf0f371163ed818a428dfeba8e6
4923Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4924Date:   Sat Sep 11 00:49:21 2010 -0700
4925
4926    Make locale data build non-recursive / parallelizable
4927    
4928    On a 4 core CPU with gmake -j 16 the nls subdir builds in half the time,
4929    plus this simplifies the next set of changes.
4930    
4931    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4932    Reviewed-by: Mikhail Gusarov <dottedmag@dottedmag.net>
4933    Reviewed-by: James Cloos <cloos@jhcloos.com>
4934    Tested-by: Gaetan Nadon <memsize@videotron.ca>
4935
4936commit a3fc78ac352e5a70a958996ef6aec50f653974d1
4937Author: Gaetan Nadon <memsize@videotron.ca>
4938Date:   Fri Sep 17 17:38:11 2010 -0400
4939
4940    config: remove man page suffix from bottom summary
4941    
4942    The man page suffix is the same for all libraries on a given
4943    platform and is not configurable. It should have been removed
4944    in commit 09edc6de6.
4945    
4946    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
4947
4948commit a52b0068f36c739eb7e426214cd72a8d9bb776ca
4949Author: Gaetan Nadon <memsize@videotron.ca>
4950Date:   Fri Sep 17 17:29:30 2010 -0400
4951
4952    config: remove unhelpful comment in .gitignore
4953    
4954    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
4955
4956commit 10dd881e7818be9074da4ab3a68577adcdaf71d2
4957Author: Adam Jackson <ajax@redhat.com>
4958Date:   Wed Sep 8 10:44:23 2010 -0400
4959
4960    Zero buffer data in BufAlloc()
4961    
4962    Inspired by a pattern in NoMachine's NX.  Consistently zeroed buffers
4963    compress better with ssh and friends.  Note that you'll need to rebuild
4964    all your protocol libraries to take advantage of this.
4965    
4966    Signed-off-by: Adam Jackson <ajax@redhat.com>
4967    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
4968    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4969
4970commit da099f0d2015831ea5f4a5d0740ed962aa4d5d8b
4971Author: James Cloos <cloos@jhcloos.com>
4972Date:   Sun Sep 12 17:00:54 2010 -0400
4973
4974    Revert “Dolt-ify"
4975    
4976    Libtool’s is now sufficiently fast that DOLT is no longer
4977    worth the bother, even on those few systems where is works.
4978    
4979    This reverts commit 3e9afd501e40d76040635bd9a3045bcaf5a03b60
4980    and part of commit d31e644c65c52828ea3e7abd94a8cf9aee12265c.
4981    
4982    It conflicted with commit f6a4fd0c7615684d08e848245849dea4017a5214
4983    which moved dolt from configure.ac to m4/dolt.m4.
4984    
4985    And it addresses: http://bugs.freedesktop.org/show_bug.cgi?id=28188
4986    
4987    Signed-off-by: James Cloos <cloos@jhcloos.com>
4988
4989commit 2661fbe6b809c937a60c2c1ca5ddb8280e399bd8
4990Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4991Date:   Thu Sep 9 19:24:29 2010 -0700
4992
4993    XIM spec title page minor formatting cleanup
4994    
4995    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4996
4997commit f99f1380bbf7bb2a0c491acad4a3d8db44bfd752
4998Author: Jens Petersen <petersen@redhat.com>
4999Date:   Mon Aug 23 18:08:10 2010 -0700
5000
5001    Bug 29773: aliases for nb_NO.utf8 and nn_NO.utf8
5002    
5003    <https://bugs.freedesktop.org/show_bug.cgi?id=29773>
5004    
5005    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5006
5007commit b15b8a558ec64c834cc8f6a52d7f3c4f530c8c4b
5008Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5009Date:   Fri Sep 3 23:11:53 2010 -0700
5010
5011    Sun's copyrights are now owned by Oracle
5012    
5013    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5014
5015commit 7742bf62b1fa652da4270587e280249945367cae
5016Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5017Date:   Fri Sep 3 18:31:44 2010 -0700
5018
5019    libX11 1.3.99.901 (1.4.0 RC1)
5020    
5021    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5022
5023commit 5a02d6d74b5451d48d8f55709dfd4ecd3c068586
5024Author: Jeroen Hoek <mail@jeroenhoek.nl>
5025Date:   Sun Aug 29 09:47:06 2010 -0400
5026
5027    libX11/nls compose tables, add LATIN CAPITAL LETTER SHARP S
5028    
5029    Add LATIN CAPITAL LETTER SHARP S
5030    (See https://bugs.freedesktop.org/show_bug.cgi?id=29448 for rationale)
5031    
5032    Signed-off-by: James Cloos <cloos@jhcloos.com>
5033
5034commit 09edc6de6619a2eabda3b808ebff4165550664f1
5035Author: Gaetan Nadon <memsize@videotron.ca>
5036Date:   Fri Aug 13 14:21:08 2010 -0400
5037
5038    config: remove man-pages configuration option
5039    
5040    This option was added in commit 6e752ea120 with no explanation.
5041    The section number is provoded by XORG_MANPAGE_SECTIONS
5042    There is no case where libX11 should be different than other libs
5043    The option was also used to disable building of the man pages,
5044    which build in 14 secs. No indication this is required.
5045    
5046    If there is a requirement from system builders to disable building
5047    of man pages, it could be done consistently for all modules.
5048    
5049    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
5050
5051commit f92e754297ec5fdb81068b56a4435026666224fa
5052Author: Aaron Plattner <aplattner@nvidia.com>
5053Date:   Sun Aug 15 21:51:38 2010 -0700
5054
5055    XOpenDisplay: save the correct display_name value
5056    
5057    The X Test Suite's XDisplayString test checks the invariant
5058    XDisplayString(XOpenDisplay(str)) == str.  The Xlib XOpenDisplay violates this
5059    invariant by expanding str to the canonical form "host:display.scrn" (unless
5060    HAVE_LAUNCHD is set and it starts with "/tmp/launch").  E.g., this expands ":1"
5061    to ":1.0":
5062    
5063      400|26 1 1 19:26:41|IC Start
5064      200|26 1 19:26:41|TP Start
5065      520|26 1 00032625 1 1|VSW5TESTSUITE PURPOSE 1
5066      520|26 1 00032625 1 2|Assertion XDisplayString-1.(A)
5067      520|26 1 00032625 1 3|A call to XDisplayString returns the string that was used
5068      520|26 1 00032625 1 4|as the argument to the XOpenDisplay call that returned the
5069      520|26 1 00032625 1 5|value used as the display argument.
5070      520|26 1 00032625 1 6|METH: Open a connection using XOpenDisplay.
5071      520|26 1 00032625 1 7|METH: Obtain the display string using XDisplayString.
5072      520|26 1 00032625 1 8|METH: Verify that the value of the string is the parameter used in XOpenDisplay.
5073      520|26 1 00032625 1 9|METH: Close the display using XCloseDisplay.
5074      520|26 1 00032625 1 10|REPORT: XDisplayString() returned ":1.0" instead of ":1".
5075      220|26 1 1 19:26:41|FAIL
5076      410|26 1 1 19:26:41|IC End
5077    
5078    Fix this by deleting all of the code to construct the canonical path and just
5079    stashing a copy of the original display_name in dpy->display_name.
5080    
5081    Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
5082    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
5083
5084commit 1dc401f678469d0235e6d0b28eb4356f03327c9f
5085Author: Gaetan Nadon <memsize@videotron.ca>
5086Date:   Fri Aug 13 13:06:51 2010 -0400
5087
5088    man: xkb: remove unused variable LIB_MAN_DIR_SUFFIX
5089    
5090    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
5091
5092commit cbe9eebd11e5ebab4280d25b57b4cd4001241619
5093Author: Gaetan Nadon <memsize@videotron.ca>
5094Date:   Fri Aug 13 11:42:29 2010 -0400
5095
5096    man: simplify building of shadow man pages
5097    
5098    Store the shadow files in git as any other man page.
5099    Move man pages to man dir and use the common makefile
5100    
5101    Local fix in CVS for bug 5628 is not required
5102    as the problem has been fixed in
5103    util-macros d9062e4077ebfd0985baf8418f3d0f111b9ddbba
5104    
5105    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
5106
5107commit bfd899c9af2318ecbe84cb69007dba4223fdb502
5108Author: Gaetan Nadon <memsize@videotron.ca>
5109Date:   Mon Aug 9 09:39:26 2010 -0400
5110
5111    config: reinstate XORG_PROG_RAWCPP erroneoulsy removed
5112    
5113    in commit 76e07ef6911734eac418e399b114f1b544512736.
5114    
5115    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
5116
5117commit 76e07ef6911734eac418e399b114f1b544512736
5118Author: Gaetan Nadon <memsize@videotron.ca>
5119Date:   Fri Aug 6 14:01:51 2010 -0400
5120
5121     man: using the C preprocessor is not required for man pages.
5122    
5123    There were no special symbols needing cpp.
5124    Everything can be handled by the default MAN_SUBSTS in util-macros.
5125    
5126    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
5127
5128commit 4b8ff7db39f2fe7ef12968d462aaf3f9054b6c18
5129Author: Jamey Sharp <jamey@minilop.net>
5130Date:   Fri Aug 6 15:51:56 2010 -0700
5131
5132    Fix use-after-free in _XReply on X errors.
5133    
5134    _XReply would always call dequeue_pending_request on errors.  When it
5135    got an error for the current request, it would call dequeue, then break
5136    out of the loop; then, if it had an error in the event queue, it would
5137    compare it with the sequence number of the now-freed pending request.
5138    _XReply already stored that sequence number in dpy->last_request_read
5139    before freeing it, so look at that instead.
5140    
5141    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=29412
5142    
5143    Signed-off-by: Jamey Sharp <jamey@minilop.net>
5144    Signed-off-by: Josh Triplett <josh@joshtriplett.org>
5145
5146commit 9fa146b30046396b70d64986e50d6617b3a8ac48
5147Author: Gaetan Nadon <memsize@videotron.ca>
5148Date:   Sat Jul 31 16:15:35 2010 -0400
5149
5150    specs: xsl stylesheet requires abs path to images
5151    
5152    Using abs_builddir requires automake 1.10 or later.
5153    
5154    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
5155
5156commit a8727d4bc39015e303b4128d0ad8aaf6d5fc9f0a
5157Author: Gaetan Nadon <memsize@videotron.ca>
5158Date:   Sun Aug 1 14:13:07 2010 -0400
5159
5160    specs: update .gitignore now that all groff generated files are gone
5161    
5162    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
5163
5164commit f70527f05677aaf6a493ba42d2d95f738aaebafa
5165Author: Adam Jackson <ajax@redhat.com>
5166Date:   Thu Jul 29 11:11:21 2010 -0400
5167
5168    nls: Switch one of the interrobang sequences to gnaborretni
5169    
5170    Since gnaborretni is primarily used in LTR locales, the ? part of the
5171    sequence reflects the position of the bulge in the ?.  When scanning an
5172    inverted interrobang left-to-right, you see the bulge first, so the
5173    compose sequence ?! is used; upright interrobang shows the bulge
5174    last, so it's !?.
5175    
5176    This is a change in behaviour, but I was unable to come up with anything
5177    better.  ??!! or !!?? would match the patterns for ¿ and ¡, but they
5178    would delay evaluation of them; "¿Qué?" wouldn't show the ¿ until you hit
5179    Q.  Likewise ?!?! and !?!? would delay showing the interrobang itself.
5180    ~!? and ~?! were considered but are arguably less intuitive.
5181    
5182    Reviewed-by: James Cloos <cloos@jhcloos.com>
5183    Signed-off-by: Adam Jackson <ajax@redhat.com>
5184
5185commit 511c4f6d29b2da4f71093feabcbb3913cb5d12a7
5186Author: Gaetan Nadon <memsize@videotron.ca>
5187Date:   Wed Jul 28 10:27:39 2010 -0400
5188
5189    specs: move indexterm from glossdef to glossterm
5190    
5191    This move fixes a Java class cast exception in the glossary.
5192    The problem was introduced in commit
5193    26f4f0d50840fe5ba4c46aae0a8e68db0059434b
5194    
5195    It may not happen on all versions of the doc toolchain.
5196    There is no reason why indexterm cannot appear in glossdef,
5197    this is a workaround to an implementation problem found by
5198    trial and error.
5199    
5200    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
5201    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5202    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5203
5204commit 87a108f3aa565aa803dacb3a53b811f45025b609
5205Author: Matt Dew <matt@osource.org>
5206Date:   Sat Jul 24 14:46:57 2010 -0400
5207
5208    specs: replace troff source with docbook-xml source
5209    
5210    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
5211
5212commit 8e603413586ff42b1351688f6f99318cbe243bca
5213Author: Julien Cristau <jcristau@debian.org>
5214Date:   Sat Jul 24 22:13:07 2010 +0200
5215
5216    Compose.man: default user compose file is .XCompose, not .Xcompose
5217    
5218    The path was correct in the DESCRIPTION section, but not in FILES.
5219    
5220    Signed-off-by: Julien Cristau <jcristau@debian.org>
5221
5222commit 554da76ece85d0fc0cada45a86860e69c2107e9a
5223Author: Daniel Stone <daniel@fooishbar.org>
5224Date:   Tue Jul 20 12:34:48 2010 +0100
5225
5226    NLS: Add \o/ Compose sequence
5227    
5228    Unicode is even more pointlessly awesome! Add a binding for Compose-\o/
5229    to U+1F64C PERSON RAISING BOTH HANDS IN CELEBRATION.
5230    
5231    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
5232
5233commit 2e7a18b6a617b9b4bfcea2d36f2bd2d7e0c4a3dd
5234Author: Daniel Stone <daniel@fooishbar.org>
5235Date:   Fri Jul 9 18:13:13 2010 +0100
5236
5237    XStringToKeysym: Cope with 0x1234cafe-style input
5238    
5239    If we get input in the style of 0xdeadbeef, just return that exact
5240    keysym.  Introduces a dependency on strtoul, which I'm told is OK on all
5241    the systems we care about.
5242    
5243    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
5244
5245commit 3df45ed0c29b98ff468a0ff0ba24830bb664fd5a
5246Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5247Date:   Mon Jul 19 17:58:27 2010 -0700
5248
5249    specs/libX11: Fix column count of Gravity Attributes table
5250    
5251    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5252
5253commit 53bcba0d1d2dc3fd5e0de4bae3da30a1aa31a0c4
5254Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5255Date:   Mon Jul 19 14:43:38 2010 -0700
5256
5257    specs/libX11: Convert \- to &minus; and \^ to either &hairsp; or removed
5258    
5259    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5260
5261commit 5a0b45275638281e1bb2ae7d3e16b98e6470dae9
5262Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5263Date:   Mon Jul 19 11:28:50 2010 -0700
5264
5265    specs/libX11: Manual cleanup pass over Ch. 1
5266    
5267    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5268
5269commit 21567992958a6f12b3d0186f2f27a5b2a41b8448
5270Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5271Date:   Mon Jul 19 14:51:10 2010 -0700
5272
5273    specs/libX11: make sure all files have DOCTYPEs so standard entities work
5274    
5275    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5276
5277commit c944a8521f5760b485192658b921145159cdb439
5278Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5279Date:   Sun Jul 18 13:12:20 2010 -0700
5280
5281    specs/libX11: Fix up list of header files in Ch.1 & add index entries
5282    
5283    Combination of manual editing and automatic substitution via:
5284    
5285    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
5286    
5287    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5288
5289commit bb66e8f1ce330043278d3e8cbc7d5d3bc56ee030
5290Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5291Date:   Sun Jul 18 12:47:27 2010 -0700
5292
5293    specs/libX11: Add indexterms for headerfiles that .hN used to provide
5294    
5295    Automatic substitution performed via:
5296    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
5297    
5298    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5299
5300commit d0b0d215cb85da48b323b1392149ce181e7ef5ec
5301Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5302Date:   Fri Jul 16 21:15:13 2010 -0700
5303
5304    specs/libX11: convert multicolumn lists from tables to <simplelist>
5305    
5306    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5307
5308commit e679f80c6210c0aefe3669f8f536353619097a4b
5309Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5310Date:   Fri Jul 16 20:51:52 2010 -0700
5311
5312    specs/libX11: Tag WM_* as <property>
5313    
5314    Mass substitution done by:
5315     perl -i -p -e 'if ($_ !~ m{^\<}) { $_ =~ s{(WM_\w+)}{<property>$1</property>}g; }' *.xml
5316    
5317    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5318
5319commit c7b7e59b3b22221d0be6286c540001c360308f69
5320Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5321Date:   Fri Jul 16 20:41:33 2010 -0700
5322
5323    specs/libX11: Convert simpler eqn markup to docbook tags
5324    
5325    Mostly "sup" to <superscript>
5326    
5327    There's several more complicated equations that will probably need
5328    MathML or SVG to solve.
5329    
5330    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5331
5332commit 897486c54c6a54771867d667441aaf9a4b9c35ca
5333Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5334Date:   Fri Jul 16 00:50:39 2010 -0700
5335
5336    specs/libX11: App. D: convert literallayouts to synopsis or programlisting
5337    
5338    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5339
5340commit 692906c3b3d8aa8b8927fbc230c3050d633785d2
5341Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5342Date:   Fri Jul 16 00:36:43 2010 -0700
5343
5344    specs/libX11: Fix section headers in Appendix D
5345    
5346    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5347
5348commit bcc41baa02e137884d847aec0f3ff8ca5c85c32f
5349Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5350Date:   Wed Jul 14 07:22:26 2010 -0700
5351
5352    specs/libX11: Explicitly tag document as English
5353    
5354    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5355
5356commit 6783544706ff370e900c137f951e90230586d6dc
5357Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5358Date:   Mon Jul 12 22:03:18 2010 -0700
5359
5360    specs/libX11: Appendix C: convert literallayouts to synopsis or programlisting
5361    
5362    Fixes display of a bunch of function prototypes and sample code
5363    
5364    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5365
5366commit 8834cd9285e6aaf437aee56292c508d99a090fa9
5367Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5368Date:   Mon Jul 12 18:37:16 2010 -0700
5369
5370    xmlrules.in: Add chunked-html rule to manually generate smaller files
5371    
5372    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5373
5374commit 53f78680c34ebc94ce26b5e14c2a0003435cf10d
5375Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5376Date:   Mon Jul 12 18:35:59 2010 -0700
5377
5378    specs/libX11: Convert Appendix A tables to real tables
5379    
5380    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5381
5382commit 705a1257a8a47f4a1f94979aee09a837500ede7d
5383Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5384Date:   Mon Jul 12 18:38:09 2010 -0700
5385
5386    specs/libX11: Fix out-of-place text in Chapter 1
5387    
5388    DTD violation error introduced in 89cc2e02e7c29ef9a02f0cfdf2090a2934f539e4
5389    
5390    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5391
5392commit a151346a2b7810e988f1de4b1e00b37672dc587a
5393Author: Jeremy Huddleston <jeremyhu@apple.com>
5394Date:   Mon Jul 12 16:52:12 2010 -0700
5395
5396    launchd: Explicitly search /sbin
5397    
5398    Previously, launchd wasn't found if /sbin wasn't in the user's PATH.
5399    https://bugs.freedesktop.org/show_bug.cgi?id=29028
5400    
5401    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
5402
5403commit 89cc2e02e7c29ef9a02f0cfdf2090a2934f539e4
5404Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5405Date:   Mon Jul 12 13:38:04 2010 -0700
5406
5407    Replace untranslated .hN macros with <filename> tags to show header names
5408    
5409    Translation performed by:
5410     perl -i -p -e 's{\<\!-- .hN (\S+) (\S+)?\s*-->}
5411    	         {&lt;<filename class="headerfile">$1</filename>&gt;$2}' *.xml
5412    
5413    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5414
5415commit 75480440946603b8efdbbf78b88d59c641b6d2c8
5416Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5417Date:   Sat Jul 10 00:06:13 2010 -0700
5418
5419    specs/libX11: Mass substitution of <function> tags with more specific tags
5420    
5421    Matched names from X headers & "nm libX11.so" output to names in spec to
5422    map to more specific tags.   Tags used:
5423    
5424                        <code>   code fragments
5425                    <constant>   enum values
5426                   <errorname>   X protocol errors
5427                    <filename>   filenames
5428                    <function>   functions
5429                    <function>   function-like macros (#define foo(a,b)...)
5430                 <returnvalue>   function return codes
5431                 <structfield>   struct members
5432                  <structname>   struct names (even when typedefed)
5433                      <symbol>   simple value #defines (#define NAME value)
5434                  <systemitem>   X protocol requests
5435    <systemitem class="event">   X protocol events
5436                        <type>   non-struct typedefs
5437                     <varname>   global variables
5438    
5439    (Also fixed a couple typos detected by failures of this matching, such as
5440     XESSetPrintErrorValues -> XESetPrintErrorValues.)
5441    
5442    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5443
5444commit 26f4f0d50840fe5ba4c46aae0a8e68db0059434b
5445Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5446Date:   Fri Jul 9 00:37:23 2010 -0700
5447
5448    specs/libX11: Glossary cross-reference links
5449    
5450    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5451
5452commit 930b52d84031de0e15e0a11cf4ecfd3b2f59e073
5453Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5454Date:   Thu Jul 8 21:19:08 2010 -0700
5455
5456    specs/libX11: Make whitespace around <function> tags more uniform
5457    
5458    Simplifies regular expressions for further mass substitutions.
5459    
5460    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5461
5462commit 730ce6b8aca77b77385aa894d234cbde5fcbce37
5463Author: Gaetan Nadon <memsize@videotron.ca>
5464Date:   Fri Jul 9 20:10:37 2010 -0400
5465
5466    specs: use pattern rules rather than suffix rules
5467    
5468    This allows target to rebuild when included .xml files are changed.
5469    
5470    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
5471
5472commit 5527b4bc8ce7de60123eb28789ddef54aa48a378
5473Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5474Date:   Thu Jul 8 20:56:41 2010 -0700
5475
5476    specs/libX11: Move punctuation outside of the <function> tags
5477    
5478    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5479
5480commit d66d2134dfc38cd866c7c2d9ea45ed4b4dad23f0
5481Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5482Date:   Thu Jul 8 20:42:50 2010 -0700
5483
5484    specs/libX11: Mark a number of <acronym>s
5485    
5486    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5487
5488commit d5bbb12f55ac9f691eab6242cedc53207275131b
5489Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5490Date:   Thu Jul 8 19:31:36 2010 -0700
5491
5492    specs/libX11: Glossary terms should not be marked as functions
5493    
5494    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5495
5496commit 5decf7bc5dae0ae0c45c47eaaa9c4fdf9515ca1c
5497Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5498Date:   Thu Jul 8 19:28:18 2010 -0700
5499
5500    specs/libX11: Clean up author list & acknowledgements a little
5501    
5502    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5503
5504commit 0cd29bdb332c333e5123dce65b25ad1d97fbdae3
5505Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5506Date:   Thu Jul 8 17:30:34 2010 -0700
5507
5508    specs/libX11: Convert troff .IN macros to docbook <indexterm> tags
5509    
5510    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5511
5512commit a67d99ccbe22c8ce5f7a12f13b8991d9e0cf4491
5513Author: Gaetan Nadon <memsize@videotron.ca>
5514Date:   Thu Jul 8 17:29:21 2010 -0400
5515
5516    specs: specdir is required to install xml files
5517    
5518    The source is installed as well as the targets.
5519    This failed when configuring with --without-xmlto
5520    
5521    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
5522
5523commit e14273f44c1501ab51db4adcb83b18a1073787d8
5524Author: Matt Dew <matt@osource.org>
5525Date:   Thu Jul 8 14:42:32 2010 -0400
5526
5527    specs: replace troff source with docbook-xml source
5528    
5529    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
5530
5531commit bea0873caf50e9ed1b89255775d9ab912cbecd45
5532Author: Daniel Stone <daniel@fooishbar.org>
5533Date:   Thu Jul 8 16:49:51 2010 +0100
5534
5535    XStringToKeysym: Check strdup() return value
5536    
5537    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
5538    Reviewed-by: Keith Packard <keithp@keithp.com>
5539
5540commit cffa71b4a5743e2b6675b9a917d15aef4177d513
5541Author: Marko Myllynen <myllynen@redhat.com>
5542Date:   Mon Jun 28 15:08:05 2010 +0300
5543
5544    Fix two typos in SFS 5966 Annex 3
5545    
5546    X.Org bug#28792 <https://bugs.freedesktop.org/show_bug.cgi?id=28792>
5547    
5548    Signed-off-by: Julien Cristau <jcristau@debian.org>
5549
5550commit eb023c0f8919e809b8b609e1467b14d20a290aa7
5551Author: Daniel Stone <daniel@fooishbar.org>
5552Date:   Tue Jun 15 18:49:43 2010 +0100
5553
5554    Delete now-redundant XKeysymDB
5555    
5556    Since XStringToKeysym now supports all the vendor keysyms, just delete
5557    our XKeysymDB, which was incomplete at best, misleading at worst, and
5558    always an annoyance.
5559    
5560    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
5561    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5562
5563commit 00175397480b76d32bf82b0c7c94c91a2a95954e
5564Author: Daniel Stone <daniel@fooishbar.org>
5565Date:   Tue Jun 15 18:48:48 2010 +0100
5566
5567    makekeys: Scan vendor keysyms as well as core
5568    
5569    Since we can't really live without vendor keysyms, scan them all in to
5570    generate ks_tables.h, rather than only doing the core ones, and leaving
5571    the vendor syms to be manually synchronised with XKeysymDB.
5572    
5573    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
5574    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5575
5576commit ebd6ef0a4db0ddef0ae17ad14571518ccdeea5ba
5577Author: Daniel Stone <daniel@fooishbar.org>
5578Date:   Tue Jun 15 18:47:37 2010 +0100
5579
5580    XStringToKeysym: Special case for XF86 keysyms
5581    
5582    Some XFree86 keysyms were in XKeysymDB as XF86_foo, despite really being
5583    XF86foo.  So, if we get to the bottom of XStringToKeysym and haven't
5584    found our XF86_foo, try it again as XF86foo.
5585    
5586    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
5587    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5588
5589commit 8c2ffce9e5c6eef8a04f7e2732db46b3b62e13bb
5590Author: Daniel Stone <daniel@fooishbar.org>
5591Date:   Tue Jun 15 17:20:48 2010 +0100
5592
5593    configure.ac: Change from deprecated AC_DEFINE_DIR to AX_
5594    
5595    AC_DEFINE_DIR is deprecated as it's squatting on the autoconf-builtin
5596    namespace, so start using the more proper AX_DEFINE_DIR instead.
5597    
5598    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
5599    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
5600    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5601
5602commit 6de368c9aa7ccd2fcd62fca5a2b278913db4d03d
5603Author: Fernando Carrijo <fcarrijo@yahoo.com.br>
5604Date:   Thu Jul 1 06:50:47 2010 -0300
5605
5606    Purge macros NEED_EVENTS and NEED_REPLIES
5607    
5608    Signed-off-by: Fernando Carrijo <fcarrijo@yahoo.com.br>
5609    Acked-by: Tiago Vignatti <tiago.vignatti@nokia.com>
5610    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5611
5612commit 0b724231be17f19538ee115a03b82b221b1f83c0
5613Author: Adam Jackson <ajax@redhat.com>
5614Date:   Wed Jun 30 16:30:49 2010 -0400
5615
5616    Use -version-number consistently instead of -version-info
5617    
5618    The latter is libtool braindamage.
5619    
5620    Signed-off-by: Adam Jackson <ajax@redhat.com>
5621
5622commit 241a990afcf9c967c587ad6fd245df21b68b1ad9
5623Author: Juliusz Chroboczek <jch@pps.jussieu.fr>
5624Date:   Tue Jun 29 18:32:42 2010 +0200
5625
5626    Make Compose-comma map to ogonek for I and U in UTF-8 locales.
5627    
5628    With the preceding patch, it makes the UTF-8 compose map consistent with
5629    the ISO 8859-4 and -13 maps.
5630
5631commit af55e582f485a668c2bf43129be972bc65f03c60
5632Author: Juliusz Chroboczek <jch@pps.jussieu.fr>
5633Date:   Tue Jun 29 18:20:18 2010 +0200
5634
5635    Make Compose-comma map to Ogonek for A and E in UTF-8 locales.
5636    
5637    This makes the UTF-8 compose file consistent with the ISO 8859-2 compose file
5638    as far as Polish is concerned.  We only sacrifice one pair of characters,
5639    e-cedilla, which is not used in any language.
5640
5641commit d6ba13009fc9ef876a104b907ffef73c6e405d4b
5642Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5643Date:   Thu Jun 24 13:13:11 2010 -0700
5644
5645    Define FILE_MAN_DIR_SUFFIX so XCompose shadow page has correct path
5646    
5647    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5648
5649commit 978c7238789037de917b9423ea9adfb006da1260
5650Author: Jamey Sharp <jamey@minilop.net>
5651Date:   Sat Jun 19 10:44:55 2010 -0700
5652
5653    poll_for_response: Really handle xcb_poll_for_reply getting a reply.
5654    
5655    Don't lose async replies. That's bad.
5656    
5657    `xlsfonts -l`, which uses XListFontsWithInfo, worked fine, because the
5658    _XReply path worked; that path waited for replies, rather than polling.
5659    
5660    However, XRecordProcessReplies, which does nothing but call XPending,
5661    relied on the event-handling path to process async replies, and that was
5662    busted.
5663    
5664    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=28595
5665    
5666    Signed-off-by: Jamey Sharp <jamey@minilop.net>
5667
5668commit ef67486c5a8aada24fd95b2991a3c4979f53805f
5669Author: Jamey Sharp <jamey@minilop.net>
5670Date:   Mon Jun 21 13:34:15 2010 -0700
5671
5672    Revert "xcb_io.c: poll_for_response doesn't guarantee there's a pending request."
5673    
5674    This reverts commit 4a8b6528ff69f6feb8c0e119939b4ce6c088f29e, because as
5675    a matter of fact, if poll_for_response returns NULL when we know
5676    dpy->xcb->next_event is non-NULL, there *is* guaranteed to be a pending
5677    request.
5678
5679commit 301ec5b41e9d253a446db656e1789ac7345dc433
5680Author: Jamey Sharp <jamey@minilop.net>
5681Date:   Mon Jun 21 13:24:24 2010 -0700
5682
5683    Revert "poll_for_response: Really handle xcb_poll_for_reply getting a reply."
5684    
5685    This reverts commit c115095d7f2bc4f5a4fb26380e3698fefdad7611. We *do*
5686    need to check poll_for_event every time through the loop in
5687    poll_for_response, so the commit did too much.
5688
5689commit 4a8b6528ff69f6feb8c0e119939b4ce6c088f29e
5690Author: Jamey Sharp <jamey@minilop.net>
5691Date:   Mon Jun 21 10:54:02 2010 -0700
5692
5693    xcb_io.c: poll_for_response doesn't guarantee there's a pending request.
5694    
5695    Fixes the second bug reported in:
5696    https://bugs.freedesktop.org/show_bug.cgi?id=28595
5697    
5698    Signed-off-by: Jamey Sharp <jamey@minilop.net>
5699
5700commit c115095d7f2bc4f5a4fb26380e3698fefdad7611
5701Author: Jamey Sharp <jamey@minilop.net>
5702Date:   Sat Jun 19 10:44:55 2010 -0700
5703
5704    poll_for_response: Really handle xcb_poll_for_reply getting a reply.
5705    
5706    Don't lose async replies. That's bad.
5707    
5708    `xlsfonts -l`, which uses XListFontsWithInfo, worked fine, because the
5709    _XReply path worked; that path waited for replies, rather than polling.
5710    
5711    However, XRecordProcessReplies, which does nothing but call XPending,
5712    relied on the event-handling path to process async replies, and that was
5713    busted.
5714    
5715    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=28595
5716    
5717    Signed-off-by: Jamey Sharp <jamey@minilop.net>
5718    Signed-off-by: Josh Triplett <josh@joshtriplett.org>
5719
5720commit a25ae169862ab9b76daf259613b37c6b07bc2ef2
5721Author: Marko Myllynen <myllynen@redhat.com>
5722Date:   Sun Jun 13 19:23:05 2010 +0300
5723
5724    Implement SFS 5966 Annex 4 for Finland
5725    
5726    This patch adds Annex 4 of SFS 5966 for Finland and fixes two typos in
5727    Annex 3 (which were actually copied verbatim from the standard text).
5728    
5729    The implementation of the standard is now complete.
5730    
5731    X.Org bug#28498 <https://bugs.freedesktop.org/show_bug.cgi?id=28498>
5732    
5733    Signed-off-by: Julien Cristau <jcristau@debian.org>
5734
5735commit 47b04195d8a31c8f9e6dd804196162c6cfca3ac6
5736Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5737Date:   Fri Jun 4 13:20:17 2010 -0700
5738
5739    LINEAR_RGB_InitSCCData: When malloc fails, don't try to free unallocated bits
5740    
5741    One of the malloc failure checks had a goto to the wrong spot in the
5742    list of cleanup free() calls to unwind at the end, and was freeing
5743    bits that hadn't been initialized/allocated yet, since they would be
5744    stored in the struct that just failed to be allocated.
5745    
5746    Error: Null pointer dereference (CWE 476)
5747       Read from pointer that could be constant 'NULL'
5748            at line 805 of /export/alanc/X.Org/sx86/lib/libX11/src/xcms/LRGB.c in function 'LINEAR_RGB_InitSCCData'.
5749              Pointer checked against constant 'NULL' at line 754 but does not protect the dereference.
5750    
5751    [ This bug was found by the Parfait bug checking tool.
5752      For more information see http://research.sun.com/projects/parfait ]
5753    
5754    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5755
5756commit aebbf3623888119b43893b253195d93b613a6e1e
5757Author: Josh Triplett <josh@joshtriplett.org>
5758Date:   Sun Jun 6 19:11:55 2010 -0700
5759
5760    Mark the rest of Xprivate.h as _X_HIDDEN.
5761    
5762    None of the functions in Xprivate.h should have any callers outside of
5763    Xlib, by definition.
5764    
5765    Signed-off-by: Josh Triplett <josh@joshtriplett.org>
5766    Suggested-by: Jamey Sharp <jamey@minilop.net>
5767    Reviewed-by: Jamey Sharp <jamey@minilop.net>
5768
5769commit abcd1b67c8135ad652833e5a60d818837c39fce1
5770Author: Julien Cristau <jcristau@debian.org>
5771Date:   Fri Jun 4 13:57:45 2010 +0200
5772
5773    Hide _XSeqSyncFunction
5774    
5775    Commit a6d974dc59f2722b36e2df9d4f07aeee4f83ce43 made _XSeqSyncFunction
5776    non-static, but we don't need to export it.
5777    
5778    Signed-off-by: Julien Cristau <jcristau@debian.org>
5779    Reviewed-by: Adam Jackson <ajax@redhat.com>
5780    Reviewed-by: Jamey Sharp <jamey@minilop.net>
5781
5782commit 15e5eaf62897b3179d1fbe457cb19f886f0449f8
5783Author: Josh Triplett <josh@joshtriplett.org>
5784Date:   Thu Jun 3 09:41:01 2010 -0700
5785
5786    Remove support for building without XCB
5787    
5788    And there was much rejoicing.
5789    
5790    Signed-off-by: Josh Triplett <josh@joshtriplett.org>
5791    Reviewed-by: Jamey Sharp <jamey@minilop.net>
5792    
5793    Consensus on #xorg-devel agrees with removing --without-xcb; in
5794    particular, acks from Adam Jackson, Daniel Stone, Kristian Høgsberg,
5795    Julien Cristau, and Rémi Cardona.
5796
5797commit fb19eb767a32fd4ff74021c51bc6f60eb8bdff74
5798Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5799Date:   Thu Jun 3 15:21:40 2010 -0700
5800
5801    libX11 1.3.4
5802    
5803    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5804
5805commit 8f3db40ca5108a919244f3fff7466d01a14b3ce2
5806Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5807Date:   Thu Jun 3 13:08:17 2010 -0700
5808
5809    Workaround bug in groff flag processing that breaks distcheck
5810    
5811    At least with the groff 1.19.2 package I have installed, groff passes
5812    on the -I flags for the include path to grohtml, which if they come
5813    after the -P-I... flag we pass to grohtml to specify the image file
5814    name pattern cause it to override that flag and put the images in
5815    the wrong place, breaking "make distcheck" - changing the flag order
5816    works around this.
5817    
5818    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5819
5820commit bdb31a1fb707cebccc9efbbf68cb55c10fa4ea3e
5821Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5822Date:   Thu Jun 3 11:25:33 2010 -0700
5823
5824    Fix typo that made configure always report "none" for man page suffix
5825    
5826    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5827
5828commit 6bb7d2d21d6b58019fb37b724b59c9744f30b9ce
5829Author: Paul Bender <pebender@gmail.com>
5830Date:   Thu Jun 3 11:20:26 2010 -0700
5831
5832    Bug 22591 - configure does not obey the --enable-*-transport options
5833    
5834    https://bugs.freedesktop.org/show_bug.cgi?id=22591
5835    
5836    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5837
5838commit d7f35946d673bb00f2768e025b6e1017422b2174
5839Author: Paul Bender <pebender@gmail.com>
5840Date:   Thu Jun 3 11:17:45 2010 -0700
5841
5842    Bug 22590 - libX11 1.2.1 has broken abstract namespace support
5843    
5844    https://bugs.freedesktop.org/show_bug.cgi?id=22590
5845    
5846    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5847
5848commit b2487d07f7b355f230a56e32c763acd08862735c
5849Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5850Date:   Thu Jun 3 11:06:15 2010 -0700
5851
5852    Bug 22584 - libX11 does not cross compile
5853    
5854    Adaptation of patch submitted by Paul Bender in attachment 27301 to
5855    https://bugs.freedesktop.org/show_bug.cgi?id=22584
5856    
5857    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5858    Reviewed-by: Mikhail Gusarov <dottedmag@dottedmag.net>
5859    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
5860
5861commit 4378219ff8c1418418c70086085358b69d574e74
5862Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5863Date:   Tue Jun 1 18:55:48 2010 -0700
5864
5865    Clarify requirements in XRestackWindows man page
5866    
5867    The required common parent window is not specified in the arguments,
5868    just implied as the parent of the first window in the list.
5869    
5870    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5871
5872commit f09c5299a381e2729e800a0ac43f1c0e371f65f6
5873Author: Jeremy Huddleston <jeremyhu@apple.com>
5874Date:   Wed May 12 16:42:18 2010 -0700
5875
5876    xcb: Add TCP fallback
5877    
5878    If we fail to connect to a UNIX socket and the transport isn't specified,
5879    fallback on TCP.  This matches behavior with the xtrans codepath and the
5880    Xlib spec.
5881    
5882    http://lists.x.org/archives/xorg-devel/2010-April/007915.html
5883    
5884    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
5885    Reviewed-by: Jamey Sharp <jamey@minilop.net>
5886
5887commit fd82552d5c0ce1931f29006a0c36f5e03cf8577e
5888Merge: aae2a4a 933aee1
5889Author: Jamey Sharp <jamey@minilop.net>
5890Date:   Mon May 10 16:51:24 2010 -0700
5891
5892    Merge branch 'xlib-xcb-thread-fixes'
5893
5894commit aae2a4a7aab26de3fa715d6ecd0a0e0926b37fc9
5895Author: Jeremy Huddleston <jeremyhu@apple.com>
5896Date:   Fri Apr 23 21:50:29 2010 -0700
5897
5898    Don't append the screen number when using a launchd socket
5899    
5900    ssh gets confused by this.  XQuartz is the only DDX using this
5901    functionality, and it doesn't support different screens, so
5902    let's just not include this until most ssh know how to handle
5903    this.
5904    
5905    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
5906
5907commit adcd0ec209abf832a769d52db660fb37eaad6e0c
5908Author: Jeremy Huddleston <jeremyhu@apple.com>
5909Date:   Fri Apr 23 16:33:44 2010 -0700
5910
5911    Remove launchd logic from _XConnectXCB as it's handled in XCB
5912    
5913    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
5914
5915commit d232b259c36fdde1f4179822809fec1480867dc5
5916Author: Jeremy Huddleston <jeremyhu@apple.com>
5917Date:   Tue Feb 2 17:01:28 2010 -0800
5918
5919    Fix various build warnings
5920    
5921    imLcIm.c: In function '_XimCachedFileName':
5922    imLcIm.c:361: warning: format '%03x' expects type 'unsigned int', but argument 8 has type 'long unsigned int'
5923    imLcIm.c:364: warning: format '%03x' expects type 'unsigned int', but argument 8 has type 'long unsigned int'
5924    
5925    imRm.c: In function '_XimDefaultArea':
5926    imRm.c:597: warning: cast from pointer to integer of different size
5927    imRm.c: In function '_XimDefaultColormap':
5928    imRm.c:626: warning: cast from pointer to integer of different size
5929    
5930    lcFile.c:224: warning: no previous prototype for 'xlocaledir'
5931    
5932    lcUTF8.c: In function 'iconv_cstombs':
5933    lcUTF8.c:1841: warning: assignment discards qualifiers from pointer target type
5934    lcUTF8.c:1869: warning: pointer targets in passing argument 1 of 'wctomb' differ in signedness
5935    lcUTF8.c:1873: warning: pointer targets in passing argument 1 of 'wctomb' differ in signedness
5936    lcUTF8.c: In function 'iconv_mbstocs':
5937    lcUTF8.c:1935: warning: pointer targets in passing argument 2 of 'mbtowc' differ in signedness
5938    lcUTF8.c: In function 'iconv_mbtocs':
5939    lcUTF8.c:2031: warning: pointer targets in passing argument 2 of 'mbtowc' differ in signedness
5940    lcUTF8.c: In function 'iconv_mbstostr':
5941    lcUTF8.c:2121: warning: pointer targets in passing argument 2 of 'mbtowc' differ in signedness
5942    lcUTF8.c: In function 'iconv_strtombs':
5943    lcUTF8.c:2180: warning: pointer targets in passing argument 1 of 'wctomb' differ in signedness
5944    lcUTF8.c: In function '_XlcAddGB18030LocaleConverters':
5945    lcUTF8.c:2367: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type
5946    lcUTF8.c:2368: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type
5947    lcUTF8.c:2373: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type
5948    lcUTF8.c:2374: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type
5949    lcUTF8.c:2375: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type
5950    lcUTF8.c:2376: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type
5951    lcUTF8.c:2377: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type
5952    
5953    XlibInt.c: In function '_XGetHostname':
5954    XlibInt.c:3441: warning: implicit declaration of function 'gethostname'
5955    XlibInt.c:3441: warning: nested extern declaration of 'gethostname'
5956    
5957    ConnDis.c: In function '_XDisconnectDisplay':
5958    ConnDis.c:540: warning: old-style function definition
5959    ConnDis.c: In function '_XSendClientPrefix':
5960    ConnDis.c:554: warning: old-style function definition
5961    ConnDis.c: In function 'XSetAuthorization':
5962    ConnDis.c:677: warning: old-style function definition
5963    
5964    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
5965
5966commit 3e11c73187acb2e2be9a812840bbbea947527ccb
5967Author: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
5968Date:   Fri Apr 23 00:01:54 2010 +0200
5969
5970    Allow X11 users to compose anarchism
5971    
5972    I can easily compose the hammer and sickle (the symbol representative
5973    of communism) by pressing the key sequence:
5974    
5975      <Compose> <C> <C> <C> <P> -> ☭
5976    
5977    But i can't easily make the circled A (the symbol representative of
5978    anarchism).
5979    
5980    I'd like to be able to use <Compose> <O> <A> (this is a
5981    currently unused key sequence) to generate the symbol:  Ⓐ
5982    
5983    Debian bug#555938 <http://bugs.debian.org/555938>
5984    
5985    Signed-off-by: Julien Cristau <jcristau@debian.org>
5986
5987commit 933aee1d5c53b0cc7d608011a29188b594c8d70b
5988Author: Jamey Sharp <jamey@minilop.net>
5989Date:   Fri Apr 16 20:18:28 2010 -0700
5990
5991    Fix Xlib/XCB for multi-threaded applications (with caveats).
5992    
5993    Rather than trying to group all response processing in one monolithic
5994    process_responses function, let _XEventsQueued, _XReadEvents, and
5995    _XReply each do their own thing with a minimum of code that can all be
5996    reasoned about independently.
5997    
5998    Tested with `ico -threads 20`, which seems to be able to make many
5999    icosahedrons dance at once quite nicely now.
6000    
6001    Caveats:
6002    
6003    - Anything that was not thread-safe in Xlib before XCB probably still
6004      isn't. XListFontsWithInfo, for instance.
6005    
6006    - If one thread is waiting for events and another thread tries to read a
6007      reply, both will hang until an event arrives. Previously, if this
6008      happened it might work sometimes, but otherwise would trigger either
6009      an assertion failure or a permanent hang.
6010    
6011    - Versions of libxcb up to and including 1.6 have a bug that can cause
6012      xcb_wait_for_event or xcb_wait_for_reply to hang if they run
6013      concurrently with xcb_writev or other writers. So you'll want that fix
6014      as well.
6015    
6016    Signed-off-by: Jamey Sharp <jamey@minilop.net>
6017    Reviewed-by: Josh Triplett <josh@freedesktop.org>
6018
6019commit aab43278ae619eb57d2dd9c7396f460f078588fc
6020Author: Jamey Sharp <jamey@minilop.net>
6021Date:   Fri Apr 16 22:24:16 2010 -0700
6022
6023    Use InternalLockDisplay on code paths called from LockDisplay.
6024    
6025    It's easier to reason about the code when we can't re-enter the
6026    Xlib-private sync-handlers while they're already running.
6027    
6028    Signed-off-by: Jamey Sharp <jamey@minilop.net>
6029    Reviewed-by: Josh Triplett <josh@freedesktop.org>
6030
6031commit 660b7d05f4ca4ab4661c9fe7ce655a4909b4e556
6032Author: Jamey Sharp <jamey@minilop.net>
6033Date:   Fri Apr 16 19:45:11 2010 -0700
6034
6035    Fix _XSend to enqueue the right range of pending requests.
6036    
6037    _XSend was off-by-one on both ends. It should not re-enqueue the last
6038    request that was already flushed, but it should enqueue the last request
6039    currently being flushed.
6040    
6041    Signed-off-by: Jamey Sharp <jamey@minilop.net>
6042    Reviewed-by: Josh Triplett <josh@freedesktop.org>
6043
6044commit f2735889908d6e5a7f8dbee42f00c54a52665191
6045Author: Jamey Sharp <jamey@minilop.net>
6046Date:   Fri Apr 16 19:45:11 2010 -0700
6047
6048    Pending requests are always added in-order.
6049    
6050    Replace insert_pending_request, which did an in-order search of the
6051    queue to find the right insertion point, with a simpler
6052    append_pending_request, and use that in _XSend as well.
6053    
6054    Includes assertions to check that the list of pending requests is in
6055    order by sequence number and does not have duplicates.
6056    
6057    Signed-off-by: Jamey Sharp <jamey@minilop.net>
6058    Reviewed-by: Josh Triplett <josh@freedesktop.org>
6059
6060commit d9cf5885b0f97942fbbd2a7cc50118132ece50f6
6061Author: Markus Duft <markus.duft@salomon.at>
6062Date:   Fri Apr 16 08:39:34 2010 -0700
6063
6064    Bug 26839: Fix build problem on Interix (POSIX layer on Windows)
6065    
6066    https://bugs.freedesktop.org/show_bug.cgi?id=26839
6067    
6068    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6069
6070commit a3f5f1b90936d23e9894e3261b2d77fb7b32a51a
6071Author: Josh Triplett <josh@freedesktop.org>
6072Date:   Thu Apr 15 14:24:21 2010 -0700
6073
6074    Stop returning an int from _XIDHandler and _XSeqSyncFunction
6075    
6076    _XIDHandler and _XSeqSyncFunction originally ran from dpy->synchandler, and
6077    thus had to return an int.  Now, they only run from _XPrivSyncHandler or
6078    LockDisplay, neither of which needs to check their return value since they
6079    always returned 0.  Make them both void.
6080    
6081    Signed-off-by: Josh Triplett <josh@freedesktop.org>
6082    Signed-off-by: Jamey Sharp <jamey@minilop.net>
6083
6084commit a6d974dc59f2722b36e2df9d4f07aeee4f83ce43
6085Author: Jamey Sharp <jamey@minilop.net>
6086Date:   Thu Apr 15 13:05:08 2010 -0700
6087
6088    Move XID and sync handling from SyncHandle to LockDisplay to fix races.
6089    
6090    XID and sync handling happened via _XPrivSyncHandler, assigned to
6091    dpy->synchandler and called from SyncHandle.  _XPrivSyncHandler thus ran
6092    without the Display lock, so manipulating the Display caused races, and
6093    these races led to assertions in multithreaded code (demonstrated via
6094    ico).
6095    
6096    In the XTHREADS case, after you've called XInitThreads, we can hook
6097    LockDisplay and UnlockDisplay.  Use that to run _XIDHandler and
6098    _XSeqSyncHandler from LockDisplay rather than SyncHandle; we then know
6099    that we hold the lock, and thus we can avoid races.  We think it makes
6100    sense to do these both from LockDisplay rather than UnlockDisplay, so
6101    that you know you have valid sync and a valid XID before you start
6102    setting up the request you locked to prepare.
6103    
6104    In the !XTHREADS case, or if you haven't called XInitThreads, you don't
6105    get to use Xlib from multiple threads, so we can use the logic we have
6106    now (with synchandler and savedsynchandler) without any concern about
6107    races.
6108    
6109    This approach gets a bit exciting when the XID and sequence sync
6110    handlers drop and re-acquire the Display lock. Reacquisition will re-run
6111    the handlers, but they return immediately unless they have work to do,
6112    so they can't recurse more than once.  In the worst case, if both of
6113    them have work to do, we can nest the Display lock three deep.  In the
6114    case of the _XIDHandler, we drop the lock to call xcb_generate_id, which
6115    takes the socket back if it needs to request more XIDs, and taking the
6116    socket back will reacquire the lock; we take care to avoid letting
6117    _XIDHandler run again and re-enter XCB from the return_socket callback
6118    (which causes Very Bad Things, and is Not Allowed).
6119    
6120    Tested with ico (with 1 and 20 threads), and with several test programs
6121    for XID and sequence sync.  Tested with and without XInitThreads(), and
6122    with and without XCB.
6123    
6124    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=23192
6125    
6126    Signed-off-by: Jamey Sharp <jamey@minilop.net>
6127    Signed-off-by: Josh Triplett <josh@freedesktop.org>
6128
6129commit b089b53b697c2851db2985d32af3b29f1da5e31e
6130Author: Jamey Sharp <jamey@minilop.net>
6131Date:   Wed Apr 14 12:59:11 2010 -0700
6132
6133    Honest. Extensions get to filter async errors too.
6134    
6135    Under some circumstances, errors are picked up by calling
6136    xcb_poll_for_reply, rather than xcb_poll_for_event, because Xlib issued
6137    the requests with the XCB_REQUEST_CHECKED flag. That happens when either
6138    an async handler is queued at the time the requests are flushed, or when
6139    XSetEventQueueOwner has been used to prevent Xlib from processing XCB's
6140    event queue.
6141    
6142    This bugfix extends 405132dab64bf2375f8e57d02b1b53da2311933a to cover
6143    those cases.
6144    
6145    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=26545
6146    
6147    Signed-off-by: Jamey Sharp <jamey@minilop.net>
6148
6149commit a15c31274650e391bc6de5d0951eb4464c228139
6150Author: Jamey Sharp <jamey@minilop.net>
6151Date:   Wed Apr 14 12:10:34 2010 -0700
6152
6153    _XError already runs async handlers; only call them directly for replies.
6154    
6155    The previous behavior probably would have triggered bug reports someday.
6156    
6157    Signed-off-by: Jamey Sharp <jamey@minilop.net>
6158
6159commit 405132dab64bf2375f8e57d02b1b53da2311933a
6160Author: Jamey Sharp <jamey@minilop.net>
6161Date:   Tue Apr 13 12:12:36 2010 -0700
6162
6163    Extensions get to filter async errors too.
6164    
6165    Apparently I misread XlibInt.c:_XReply and thought that handlers set
6166    with XESetError should be consulted only for the sequence number that
6167    _XReply is currently looking for. In fact, the error handlers are also
6168    consulted when an error arrives for a request that was not expected to
6169    have a reply.
6170    
6171    However, in an odd twist, the error handlers are *not* consulted outside
6172    of _XReply--that is, when looking for events, or waiting to be able to
6173    flush the output queue. So this patch takes some small pains to preserve
6174    that behavior, though it seems likely to have been unintentional.
6175    
6176    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=26545
6177    
6178    Signed-off-by: Jamey Sharp <jamey@minilop.net>
6179
6180commit d3eab4a38f3e53ef21eb3b6fa66ead7afecf6227
6181Author: Jamey Sharp <jamey@minilop.net>
6182Date:   Tue Apr 13 12:49:59 2010 -0700
6183
6184    Prefer the xcb_generic_error_t we already have over casting to xEvent.
6185    
6186    Just a minor cleanup.
6187    
6188    Signed-off-by: Jamey Sharp <jamey@minilop.net>
6189
6190commit 75ea8c37935ccc911557d16a303ba595b8ab106b
6191Author: Jamey Sharp <jamey@minilop.net>
6192Date:   Mon Apr 12 11:30:20 2010 -0700
6193
6194    Run the user's synchandler as well as any internal synchandlers.
6195    
6196    Fixes https://bugs.freedesktop.org/show_bug.cgi?id=27595
6197    
6198    Signed-off-by: Jamey Sharp <jamey@minilop.net>
6199
6200commit c3f3e4a9e531d010312c97e753d6e543e607094d
6201Author: Kusanagi Kouichi <slash@ac.auone-net.jp>
6202Date:   Fri Feb 12 17:16:10 2010 +0900
6203
6204    Fix manual typos.
6205    
6206    Signed-off-by: Kusanagi Kouichi <slash@ac.auone-net.jp>
6207    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6208
6209commit 75c6c5595408caba9ef8233839d77021d02f86f2
6210Author: Dirk Wallenstein <dirkwallenstein@t-online.de>
6211Date:   Fri Feb 5 20:42:46 2010 +0100
6212
6213    man: Correct the XkbAllAccessXEventsMask mask name
6214    
6215    This mask has probably been renamed but not been updated in the manuals.
6216    
6217    Signed-off-by: Dirk Wallenstein <dirkwallenstein@t-online.de>
6218    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6219
6220commit 9262aceaff24c954cab8c252690032bc2ec25e7d
6221Author: Dirk Wallenstein <dirkwallenstein@t-online.de>
6222Date:   Fri Feb 5 20:42:45 2010 +0100
6223
6224    man: Add missing geometry component flag
6225    
6226    Signed-off-by: Dirk Wallenstein <dirkwallenstein@t-online.de>
6227    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6228
6229commit 50cf134465f6fd263f37acecac94518468ef1c6d
6230Author: Dirk Wallenstein <halsmit@t-online.de>
6231Date:   Tue Feb 2 21:24:32 2010 +0100
6232
6233    man: Return value of XkbGetState is Status and not Bool
6234    
6235    Signed-off-by: Dirk Wallenstein <halsmit@t-online.de>
6236    Reviewed-by: Julien Cristau <jcristau@debian.org>
6237    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6238
6239commit 7a93ae2bb5292a97fdd27ed818bc81248b37f641
6240Author: Dirk Wallenstein <halsmit@t-online.de>
6241Date:   Tue Feb 2 21:24:30 2010 +0100
6242
6243    man: Fix return value specification of XkbKeyActionEntry
6244    
6245    The XkbKeyActionEntry macro expands to a pointer.
6246    
6247    Signed-off-by: Dirk Wallenstein <halsmit@t-online.de>
6248    Reviewed-by: Julien Cristau <jcristau@debian.org>
6249    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6250
6251commit e9884d4a05a5661ec343ea8a2aa0562b6419e086
6252Author: Dirk Wallenstein <halsmit@t-online.de>
6253Date:   Tue Feb 2 21:24:29 2010 +0100
6254
6255    man: Redirect users from XKeycodeToKeysym to XkbKeycodeToKeysym #25732
6256    
6257    XKeycodeToKeysym keeps compatibility with pre-XKB and thus only sees 2
6258    groups with 2 levels each. It wraps the index into the next group.
6259    This behavior confuses the unaware user, and therefore this will add a
6260    reference to XkbKeycodeToKeysym in the corresponding man paragraph.
6261    
6262    Another bug had that issue, too. #5349
6263    
6264    Signed-off-by: Dirk Wallenstein <halsmit@t-online.de>
6265    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6266
6267commit 6474cdf97cd648afaeaa872155f3fa21cfb43f80
6268Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6269Date:   Thu Apr 8 19:59:55 2010 -0700
6270
6271    Fix typo in new fi_FI.UTF-8 that was reported by "make check"
6272    
6273    Unrecognized pattern in Compose on line #154:
6274      <dead_diaeresis> <space>                " "¨"
6275    
6276    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6277
6278commit 91bd5e7af2d3a9526aefb73dc10f417896f0e4dd
6279Author: Marko Myllynen <myllynen@redhat.com>
6280Date:   Thu Apr 8 19:52:42 2010 -0700
6281
6282    Bug 27465 - Rewritten fi_FI.UTF-8 Compose file
6283    
6284    I've rewritten the fi_FI.UTF-8 Compose file so that it
6285    
6286    - includes en_US.UTF-8/Compose for base compose definitions (and thus gets any
6287    possible additions to en_US.UTF-8/Compose automatically included)
6288    - overrides any en_US.UTF-8/Compose definitions with fi_FI.UTF-8/Compose
6289    definitions (thus making it safe to include en_US.UTF-8/Compose)
6290    - lists all the definitions specified in the SFS 5966 standard (thus making it
6291    easy to verify that the implementation is valid and complete)
6292    - adds a header about the file itself as required by the standard
6293    
6294    The rewritten version is ~320 lines compared to over 5000 lines of the previous
6295    version.
6296    
6297    https://bugs.freedesktop.org/show_bug.cgi?id=27465
6298
6299commit f6a4fd0c7615684d08e848245849dea4017a5214
6300Author: Gaetan Nadon <memsize@videotron.ca>
6301Date:   Thu Apr 1 21:46:12 2010 -0400
6302
6303    config: update and relocate AC_DEFINE_DIR macro
6304    
6305    Remove deprecated acinclude.m4 macro container file
6306    Use separate macro files as per autoconf recommendation
6307    Use the latest macro from GNU (ax) which replaces
6308    the non-gnu version (ac)
6309    This preserves the Autoconf macro AC namespace.
6310    
6311    Also moved out of acinclude.m4 is the DOLT macro
6312    
6313    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6314
6315commit 61d5231db418cec51bd718633c3bba39b18689d6
6316Author: Gaetan Nadon <memsize@videotron.ca>
6317Date:   Mon Mar 29 14:53:48 2010 -0400
6318
6319    config: remove the pkgconfig pc.in file from EXTRA_DIST
6320    
6321    Automake always includes it in the tarball.
6322    
6323    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6324
6325commit 69fc76a0321c6b25cc4286173c53435c69ab8e0e
6326Author: Fernando Carrijo <fcarrijo@yahoo.com.br>
6327Date:   Wed Mar 17 23:53:16 2010 -0300
6328
6329    No need for req->firstKeyCode to be set twice.
6330    
6331    There is no reason to set req->firstKeyCode twice when a client, wishful
6332    for changing keyboard mappings, calls XChangeKeyboardMapping. This patch
6333    fixes the mistake by making no functional changes to libX11 whatsoever.
6334    
6335    Signed-off-by: Fernando Carrijo <fcarrijo@yahoo.com.br>
6336    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
6337
6338commit b5797597f83ee62228abfb88f026ef92163e07a5
6339Author: Gaetan Nadon <memsize@videotron.ca>
6340Date:   Tue Feb 16 10:37:21 2010 -0500
6341
6342    config: move CWARNFLAGS from configure.ac to Makefile.am
6343    
6344    Compiler warning flags should be explicitly set in the makefile
6345    rather than being merged with other packages compiler flags.
6346    
6347    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
6348    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6349
6350commit 052c4d7995b0e52a038933beb85cd544571c6b7e
6351Author: Gaetan Nadon <memsize@videotron.ca>
6352Date:   Tue Feb 16 14:28:21 2010 -0500
6353
6354    specs: change install cmd due to automake 1.11
6355    
6356    specData_INSTALL is defined in 1.9 and 1.10 but not 1.11
6357    
6358    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6359
6360commit 7277a18cda9f5a6807d11cf4ceb9449b1c302c18
6361Author: Gaetan Nadon <memsize@videotron.ca>
6362Date:   Tue Feb 9 17:27:08 2010 -0500
6363
6364    doc: use $(mkdir_p) rather than $(MKDIR_P) due to automake 1.9.6
6365    
6366    $(MKDIR_P) is not defined in automake 1.9.
6367    
6368    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6369
6370commit e66eda95b520727969d721416d4ea49b54ef2b03
6371Author: Gaetan Nadon <memsize@videotron.ca>
6372Date:   Tue Feb 2 16:29:26 2010 -0500
6373
6374    specs: install html images in $docdir with html files
6375    
6376    The images required by the html files have been omitted.
6377    
6378    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6379
6380commit 137d1ff6be99d040e77c8c4c52029c5bdf1f4808
6381Author: Gaetan Nadon <memsize@videotron.ca>
6382Date:   Sun Jan 31 14:16:20 2010 -0500
6383
6384    doc: use new macros to control doc generation
6385    
6386    Namely XORG_WITH_GROFF for the groff generation tool
6387    XORG_WITH_PS2PDF for the conversion of PS docs to PDF
6388    XORG_ENABLE_SPECS for the generation of specs
6389    
6390    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6391
6392commit 9ca583c5d6fcf9cd8151ee7b019630b141d32fab
6393Author: Gaetan Nadon <memsize@videotron.ca>
6394Date:   Tue Jan 26 19:41:08 2010 -0500
6395
6396    doc: clean-up generated html images
6397    
6398    Generate images in /images as is the convention
6399    Provide a base file name for images rather than process ID
6400    Remove images directory when running make clean
6401    
6402    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
6403
6404commit eb289b34bfc9978eef724e0f268975938334c06c
6405Author: Kristian Høgsberg <krh@bitplanet.net>
6406Date:   Thu Jan 21 13:39:17 2010 -0500
6407
6408    XErrorDB: Add new DRI2 request names
6409
6410commit 6babf2123d05adb9349394c49cc2d81d1f66cf9e
6411Author: Julien Cristau <jcristau@debian.org>
6412Date:   Sat Jan 16 22:47:03 2010 +0000
6413
6414    man: Fix typo in Makefile
6415    
6416    Missing line continuation was preventing the XCompose alias from being
6417    generated.
6418    
6419    Signed-off-by: Julien Cristau <jcristau@debian.org>
6420    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6421
6422commit 68530599e61cf9fef3fcc91650e7cef21837fce7
6423Author: Alan Coopersmith <alan.coopersmith@sun.com>
6424Date:   Sat Jan 16 11:41:32 2010 -0800
6425
6426    libX11 1.3.3
6427    
6428    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6429
6430commit 1e5af224b9fbdb154620f898558704f2bc4bf4e9
6431Author: Alan Coopersmith <alan.coopersmith@sun.com>
6432Date:   Thu Jan 14 18:33:39 2010 -0800
6433
6434    Update COPYING file with actual licenses from libX11 code & docs
6435    
6436    COPYING was previously a years out-of-date copy of the LICENSES
6437    doc summarizing all licenses for all XFree86 components, many of
6438    which did not apply to libX11.
6439    
6440    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6441
6442commit ddb1786720d6136b1b28be599c75c10ad1b76a2a
6443Author: Alan Coopersmith <alan.coopersmith@sun.com>
6444Date:   Thu Jan 14 17:38:26 2010 -0800
6445
6446    Purge CVS/RCS id tags
6447    
6448    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6449
6450commit c1db9ddcfa7091f173478dca45bf720badedfca4
6451Author: Alan Coopersmith <alan.coopersmith@sun.com>
6452Date:   Thu Jan 14 15:39:14 2010 -0800
6453
6454    Update Sun license notices to current X.Org standard form
6455    
6456    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6457
6458commit 1aaa7c0358c5c035b99625f5715cb722bc2d2a2f
6459Author: Alan Coopersmith <alan.coopersmith@sun.com>
6460Date:   Thu Jan 14 08:28:22 2010 -0800
6461
6462    Add %S substitutions to Compose man page
6463    
6464    Commit 9df349a7894725f9469b106af645f57f7f3f9af3 added support for %S
6465    in Compose file include statements - this documents it in the Compose
6466    file man page.
6467    
6468    Also changes the existing substitution documentation to list format
6469    instead of a paragraph format to allow easier adding of %S.
6470    
6471    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6472
6473commit 94b45db93058cffa25598fe27dd3e385ace9d305
6474Author: Richard Purdie <rpurdie@linux.intel.com>
6475Date:   Thu Jan 14 08:04:28 2010 -0800
6476
6477    Fix configure.ac PKG_ macro calls
6478    
6479    If the first call to PKG_CHECK_MODULES() may not be called during execution
6480    which is the case here since its inside a case statement, call
6481    PKG_PROG_PKG_CONFIG() to ensure things worked correctly.
6482    
6483    Fixes a configure failure introduced by commit
6484    87529c039050ce3336ff9ce00f1b5a21d15690da when xcb is enabled.
6485    
6486    http://bugs.freedesktop.org/show_bug.cgi?id=26041
6487    
6488    Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
6489    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6490
6491commit df559d8bc2238a2c369152fcb06e5b5ab132a5dc
6492Author: Alan Coopersmith <alan.coopersmith@sun.com>
6493Date:   Tue Jan 12 09:18:15 2010 -0800
6494
6495    Raise xorg-macros requirement to 1.4
6496    
6497    Needed since the changes in 464390f16d7ed4aa5bf80f89863ba92273075ec2
6498    depend on the INSTALL file delivered in xorg-macros 1.4
6499    
6500    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6501
6502commit 9df349a7894725f9469b106af645f57f7f3f9af3
6503Author: James Cloos <cloos@jhcloos.com>
6504Date:   Wed Jan 13 11:04:38 2010 -0500
6505
6506    Allow inclusion of system level compose files.
6507    
6508    With the release of XFree86 4.4 an inclusion system of compose files was
6509    added to Xlib to allow inclusion of the default compose file (with %L),
6510    any compose files from user’s home directory (with %H), or a compose
6511    file with a hard coded path¹. However, even today including system level
6512    compose files is not possible in a platform independent manner although
6513    the machinery for including compose files and overriding previously
6514    defined compositions is already in place.
6515    
6516    With the ability to include system level compose files one could greatly
6517    reduce the need for compose file rule duplication and the work needed to
6518    propagate changes in one compose file to others. For example, currently
6519    the Finnish compose file fi_FI.UTF-8 weights over 5000 lines² but it
6520    is almost identical with en_US.UTF-8 except for perhaps half a dozen
6521    compositions.
6522    
6523    This commit allows one to include system level compose files with the
6524    following kind of syntax:
6525    
6526    include "%S/en_US.UTF-8/Compose"
6527    
6528    1] http://www.xfree86.org/4.4.0/RELNOTES5.html#42
6529    2] http://cgit.freedesktop.org/xorg/lib/libX11/tree/nls/fi_FI.UTF-8/Compose.pre
6530    
6531    Signed-off-by: Marko Myllynen <myllynen@redhat.com>
6532    Signed-off-by: James Cloos <cloos@jhcloos.com>
6533
6534commit ccf21a8877f40136e25f2f62d0668b0c76b3cfbd
6535Author: Thien-Thi Nguyen <ttn@gnuvola.org>
6536Date:   Tue Dec 1 10:31:47 2009 +0100
6537
6538    libX11: Fix comment: Invert polarity (direction) of reformat description.
6539    
6540    Signed-off-by: Thien-Thi Nguyen <ttn@gnuvola.org>
6541    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6542
6543commit 4d4676c0d6324d2ff9d00d15ab485fa5d848a369
6544Author: Osamu Sayama <osamu.sayama@sun.com>
6545Date:   Tue Jan 5 17:26:40 2010 -0800
6546
6547    set_fontset_extents crash after get_rotate_fontname fix in 2bef065b70f7
6548    
6549    - In set_fontset_extents, check font_data is not NULL before running
6550      loop that may increment it to a non-NULL invalid pointer.
6551    - Make sure get_rotate_fontname counts the final field
6552    
6553    Fixes OpenSolaris bug 6913809: X application dumps core in ja_JP.UTF-8 locale
6554    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6913809>
6555    
6556    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6557    Reviewed-by: Adam Jackson <ajax@redhat.com>
6558
6559commit 87529c039050ce3336ff9ce00f1b5a21d15690da
6560Author: Alan Coopersmith <alan.coopersmith@sun.com>
6561Date:   Tue Jan 5 18:02:37 2010 -0800
6562
6563    Merge X11, XKBPROTO, & XPROTO pkg-config lists
6564    
6565    Since the XPROTO_CFLAGS & XKBPROTO_CFLAGS are just merged into X11_CFLAGS
6566    in configure.ac anyway, might as well combine the lists passed to
6567    PKG_CHECK_MODULES to reduce duplication in the flags.
6568    
6569    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6570    Reviewed-by: Rémi Cardona <remi@gentoo.org>
6571    Acked-by: Peter Hutterer <peter.hutterer@who-t.net>
6572
6573commit 2dd053667b44c55e2bf601aec7b75fc6fee1cf44
6574Author: Alan Coopersmith <alan.coopersmith@sun.com>
6575Date:   Tue Jan 5 17:56:58 2010 -0800
6576
6577    Add XCompose man page shadow for Compose man page
6578    
6579    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6580
6581commit 02543bba816e065c02cd36e0c9e21519a9ee9c96
6582Author: Alan Coopersmith <alan.coopersmith@sun.com>
6583Date:   Tue Jan 5 17:47:44 2010 -0800
6584
6585    Add $(AM_V_GEN) to silence lint rules too
6586    
6587    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6588
6589commit db7c6fdeeaef9475458498e4cf09d6b1329e9aa3
6590Author: Alan Coopersmith <alan.coopersmith@sun.com>
6591Date:   Tue Jan 5 17:42:42 2010 -0800
6592
6593    Remove GCC_WARNINGS now that XORG_CWARNFLAGS sets them for us
6594    
6595    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6596
6597commit 6b4e526e7ba105622f6b143e8e2639b44cb6cc19
6598Author: Gaetan Nadon <memsize@videotron.ca>
6599Date:   Sun Nov 29 10:44:24 2009 -0500
6600
6601    configure.ac: restore correct order for XORG_DEFAULT_OPTIONS
6602    
6603    It must be following AC_USE_SYSTEM_EXTENSION
6604
6605commit 3dbaa11d1c8705e1b309c6686f354766b651ad20
6606Author: Gaetan Nadon <memsize@videotron.ca>
6607Date:   Sun Nov 29 10:01:44 2009 -0500
6608
6609    Add .gitignore in /specs for generated files
6610    
6611    Being in /specs, it will apply for all 3 subdirs
6612
6613commit f45d39d37aab04742e44cd8c3c993aad7587e40c
6614Author: Gaetan Nadon <memsize@videotron.ca>
6615Date:   Fri Nov 27 20:56:03 2009 -0500
6616
6617    Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
6618    
6619    Now that the INSTALL file is generated.
6620    Allows running make maintainer-clean.
6621
6622commit 464390f16d7ed4aa5bf80f89863ba92273075ec2
6623Author: Gaetan Nadon <memsize@videotron.ca>
6624Date:   Wed Oct 28 14:09:10 2009 -0400
6625
6626    INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
6627    
6628    Add missing INSTALL file. Use standard GNU file on building tarball
6629    README may have been updated
6630    Remove AUTHORS file as it is empty and no content available yet.
6631    Remove NEWS file as it is empty and no content available yet.
6632
6633commit 6360e7f0ce6a75da2bed33ede7fea783a1fb80e1
6634Author: Gaetan Nadon <memsize@videotron.ca>
6635Date:   Tue Oct 27 15:07:25 2009 -0400
6636
6637    Deploy the new XORG_DEFAULT_OPTIONS #24242
6638    
6639    This macro aggregate a number of existing macros that sets commmon
6640    X.Org components configuration options. It shields the configuration file from
6641    future changes.
6642
6643commit d02f943c98fde2f14319bc57fd9ad77eb9a2a572
6644Author: Gaetan Nadon <memsize@videotron.ca>
6645Date:   Mon Oct 26 22:08:42 2009 -0400
6646
6647    Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
6648    
6649    ChangeLog filename is known to Automake and requires no further
6650    coding in the makefile.
6651
6652commit f77c89c751a6a63c8ef11ecdddca2aed11ff6e29
6653Author: Gaetan Nadon <memsize@videotron.ca>
6654Date:   Thu Oct 22 12:34:19 2009 -0400
6655
6656    .gitignore: use common defaults with custom section # 24239
6657    
6658    Using common defaults will reduce errors and maintenance.
6659    Only the very small or inexistent custom section need periodic maintenance
6660    when the structure of the component changes. Do not edit defaults.
6661
6662commit 46c7b0e9d0d85cf5ccc0d40d19821fcc3335503b
6663Author: Alan Coopersmith <alan.coopersmith@sun.com>
6664Date:   Thu Nov 12 23:05:40 2009 -0800
6665
6666    Add compose-check.pl to EXTRA_DIST
6667    
6668    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6669
6670commit 54c64267cc8bc98641cc39a22cb7bd71673e89e0
6671Author: Julien Cristau <jcristau@debian.org>
6672Date:   Thu Oct 29 17:17:24 2009 +0100
6673
6674    man: fix XCopyGC argument order
6675    
6676    Ubuntu bug#408337
6677
6678commit aad10032651cdc2a53b359035954454a28d6db67
6679Author: Alan Coopersmith <alan.coopersmith@sun.com>
6680Date:   Fri Oct 23 13:55:14 2009 -0700
6681
6682    libX11 1.3.2
6683    
6684    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6685
6686commit 6303ada89cb228c0f9656036f798703afb42fc29
6687Author: Peter Hutterer <peter.hutterer@who-t.net>
6688Date:   Wed Oct 21 12:42:07 2009 +1000
6689
6690    Add smiley faces to compose sequences.
6691    
6692    I wonder how we could have lasted that long without them.
6693    
6694    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
6695    Acked-by: Daniel Stone <daniel@fooishbar.org>
6696    Acked-By: James Cloos <cloos@jhcloos.com>
6697
6698commit 0e104ebd8628803c27e36b16922ad1edd891325a
6699Author: Alan Coopersmith <alan.coopersmith@sun.com>
6700Date:   Thu Oct 22 23:12:30 2009 -0700
6701
6702    Add man page for Compose file format
6703    
6704    Based on grammar description in modules/im/ximcp/imLcPrs.c and
6705    note on XFree86 changes formerly found in xorg-docs RELNOTES.sgml
6706    
6707    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6708
6709commit 9c95f2af7c442b3a59b1a30cf804f1ef4e7fc5b5
6710Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
6711Date:   Tue Oct 20 12:46:03 2009 -0700
6712
6713    Add extra configuration and sanity checks for groff and ps2pdf
6714    
6715    1) Add AC_ARG_VAR for GROFF and PS2PDF to inform users of these
6716       environment variables.
6717    2) Check that groff -ms works
6718    
6719    Some distributions ship the ms macros as a separate package which may
6720    not be installed together with groff, so we need to make sure that groff
6721    works and the required macros are actually installed before attempting
6722    to build the specs.
6723    
6724    Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
6725    Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
6726    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
6727
6728commit d3f801fd2f9198eaad6797414dba652f9c006c6d
6729Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
6730Date:   Sun Oct 18 17:34:53 2009 -0500
6731
6732    Fix VPATH build of libX11 specs
6733    
6734    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
6735
6736commit ad15e1a89d30ccc11d80745897b83def1448e8c0
6737Author: Alan Coopersmith <alan.coopersmith@sun.com>
6738Date:   Sat Oct 17 16:14:34 2009 -0700
6739
6740    libX11 1.3.1
6741    
6742    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6743
6744commit 0cbf98c17a7484bb58b2464b98d63bb3b4ea2594
6745Author: Alan Coopersmith <alan.coopersmith@sun.com>
6746Date:   Sat Oct 17 16:28:25 2009 -0700
6747
6748    Fix make distcheck
6749    
6750    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6751
6752commit 082e62ad268ef16a3bebc5a3c9fa008dbdc483ed
6753Author: Alan Coopersmith <alan.coopersmith@sun.com>
6754Date:   Fri Oct 16 19:25:35 2009 -0700
6755
6756    Use $(AM_V_GEN) to silence echo commands for generating shadow man pages
6757    
6758    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6759
6760commit 4e66da0783b2e5e3b288aaecd3c89396ed425c20
6761Author: Alan Coopersmith <alan.coopersmith@sun.com>
6762Date:   Wed Oct 14 16:18:24 2009 -0700
6763
6764    Move libX11 & XIM/locale specs from xorg-docs
6765    
6766    If groff is found, and --disable-specs is not passed to configure,
6767    specs will be converted to text, html and ps (or pdf if ps2pdf is
6768    found) and installed to $(docdir)
6769    
6770    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6771
6772commit 5d3d817a42ddcc8d0c6efd33efd1442fe14f5c6b
6773Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
6774Date:   Tue Oct 13 19:15:51 2009 -0500
6775
6776    Provide _Xsetlocale compat wrappers on Cygwin
6777    
6778    Previous versions of Cygwin did not have proper locale support, so Cygwin/X
6779    defined X_LOCALE, using _Xsetlocale instead.  Cygwin 1.7 has added locale
6780    support, but we can't remove the _Xsetlocale entry point without breaking
6781    ABI.
6782    
6783    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
6784
6785commit 2c8b3a877a713bb66a6316a7051b43c46af6e1a0
6786Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
6787Date:   Tue Oct 13 19:15:49 2009 -0500
6788
6789    dolt: add Cygwin to supported platforms
6790    
6791    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
6792
6793commit a2c8e3e34b15b57ff881a52101fc961a602f35e4
6794Author: Alan Coopersmith <alan.coopersmith@sun.com>
6795Date:   Wed Oct 14 13:23:30 2009 -0700
6796
6797    Recognize XSUNBUFFERSIZE alias for XLIBBUFFERSIZE on Solaris
6798    
6799    Also fix indenting of the XLIBBUFFERSIZE code to match surrounding code
6800    
6801    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6802
6803commit 34ddfca7b7d58240b0fe74bec6b2e0652d15c051
6804Author: Jon TURNEY <jon.turney@dronecode.org.uk>
6805Date:   Tue Feb 10 17:47:25 2009 +0000
6806
6807    Include sys/select.h for select() and struct timeval, if it exists
6808    
6809    This is a cygwin build fix
6810
6811commit 383165916ddac91740d4c780174d4c0d07cdb994
6812Author: Xake <xake@rymdraket.net>
6813Date:   Sun Sep 27 11:16:36 2009 +0200
6814
6815    Use AM_V_GEN instead of customized macros for AM_SILENT_RULES
6816    
6817    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6818
6819commit 854269d55cdda8caf425515bfed2855e211a5ada
6820Author: Julien Cristau <jcristau@debian.org>
6821Date:   Tue Oct 6 16:11:24 2009 +0200
6822
6823    configure: quote argument to m4_pattern_forbid
6824    
6825    Without this, configure spits out
6826    ../configure: line 12364: ac_fn_c_check_member: command not found
6827    ../configure: line 12378: ac_fn_c_check_type: command not found
6828    
6829    Also anchor the pattern to make it stricter.
6830    
6831    Signed-off-by: Julien Cristau <jcristau@debian.org>
6832
6833commit 3bb020587ce74e0737ec7aceb20041f1e77d3b87
6834Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
6835Date:   Thu Oct 1 22:20:38 2009 -0700
6836
6837    Split CFLAGS into CPPFLAGS and CFLAGS
6838    
6839    On some build systems, CPPFLAGS is set to "-I/some/prefix/include".  If older
6840    X11 headers are in /some/prefix/include, they will be preferred over the
6841    shipped headers.  This corrects that problem.
6842
6843commit d54caf1c9c55af8247621b7ba6afb20b23699839
6844Author: Peter Hutterer <peter.hutterer@who-t.net>
6845Date:   Fri Oct 2 10:59:08 2009 +1000
6846
6847    libX11 1.3
6848    
6849    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
6850
6851commit dd201bcf9e7f8863b7ef32273a5ef021678133c1
6852Author: Peter Hutterer <peter.hutterer@who-t.net>
6853Date:   Fri Oct 2 12:10:29 2009 +1000
6854
6855    nls: remove duplicate Compose sequences from pt_BR.UTF-8
6856    
6857    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
6858
6859commit a293ae9e83739067fc92db1a39c262857bc2283e
6860Author: Peter Hutterer <peter.hutterer@who-t.net>
6861Date:   Fri Sep 25 11:19:41 2009 +1000
6862
6863    Add XF86TouchpadToggle to XKeysymDB
6864    
6865    Lenovo laptops provide a key to enable or disable the touchpad and the
6866    trackstick. This key is usually located on Fn + F8.
6867    
6868    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
6869    Acked-by: Adam Jackson <ajax@redhat.com>
6870
6871commit 69839f8903a24eab08f17a781b3797fb64dce9cf
6872Author: Alan Coopersmith <alan.coopersmith@sun.com>
6873Date:   Sun Sep 27 10:34:16 2009 -0700
6874
6875    Bug 24173: libX11 from git fails to build with automake older then 1.11
6876    
6877    AM_CONDITIONAL must come *before* the AC_OUTPUT that creates the
6878    Makefiles, instead of after.
6879    <http://bugs.freedesktop.org/show_bug.cgi?id=24173>
6880    
6881    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6882
6883commit f5effd041f58ef07703cca2b4f396758811e1eec
6884Author: Alan Coopersmith <alan.coopersmith@sun.com>
6885Date:   Wed Apr 15 10:59:23 2009 -0700
6886
6887    Resolve conflicting Compose sequences in iso8859-2, el_GR.UTF-8 & pt_BR.UTF-8
6888    
6889    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6890
6891commit 3843778358d3a0cd6a2d07dba5dd061248053ac9
6892Author: Alan Coopersmith <alan.coopersmith@sun.com>
6893Date:   Wed Apr 15 10:56:09 2009 -0700
6894
6895    Add perl script to check for duplicate or conflicting compose file entries
6896    
6897    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6898
6899commit 19cc5e1fa17a285045662820a8b4de2a0f9a194d
6900Author: Alan Coopersmith <alan.coopersmith@sun.com>
6901Date:   Fri Sep 18 17:10:04 2009 -0700
6902
6903    Use make rules instead of shell for loops to generate shadow man pages
6904    
6905    Allows parallel make and simpler build logs/error reporting
6906    
6907    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6908
6909commit 7dabcac973d0b6692a3cd62bd6d8e0467b24200b
6910Author: Alan Coopersmith <alan.coopersmith@sun.com>
6911Date:   Fri Sep 18 16:58:53 2009 -0700
6912
6913    Add AM_SILENT_RULES support for cpp rules for man & nls files
6914    
6915    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6916
6917commit bfa19cddd8546b4930a773f3bbd81137c362d82b
6918Author: Alan Coopersmith <alan.coopersmith@sun.com>
6919Date:   Fri Sep 18 16:58:16 2009 -0700
6920
6921    Update to using xorg-macros 1.3 & XORG_DEFAULT_OPTIONS
6922    
6923    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6924
6925commit 51396066c8003a96a6399c9a4bed2a81e512b582
6926Author: Mikko Niskanen <mikko.niskanen@iki.fi>
6927Date:   Fri Sep 4 10:11:15 2009 +1000
6928
6929    Fix wrong typedef on HP-UX (#18998)
6930    
6931    shl_dt doesn't exist, the type is shl_t.
6932    
6933    X.Org Bug 18998 <http://bugs.freedesktop.org/show_bug.cgi?id=18998>
6934    
6935    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
6936
6937commit 615220a312b9430a580fe6dcf51703c6ef244f66
6938Author: Paul Bender <pebender@gmail.com>
6939Date:   Fri Sep 4 09:57:10 2009 +1000
6940
6941    Don't require xdmcp in configure.ac (#22583)
6942    
6943    X.Org Bug 22583 <http://bugs.freedesktop.org/show_bug.cgi?id=22583>
6944    
6945    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
6946
6947commit 20f9ecd86ad2a9ac6966f7eee32234cb5ef77c29
6948Author: Peter Hutterer <peter.hutterer@who-t.net>
6949Date:   Thu Sep 3 14:02:44 2009 +1000
6950
6951    man: fix parameters to XkbAllocGeomOverlay{Rows|Keys} (#23499)
6952    
6953    X.Org Bug 23499 <http://bugs.freedesktop.org/show_bug.cgi?id=23499>
6954    
6955    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
6956
6957commit c2814a614dc4d9409bfa0f44c18bfd69ad7f7b85
6958Author: Peter Hutterer <peter.hutterer@who-t.net>
6959Date:   Thu Sep 3 12:05:25 2009 +1000
6960
6961    man: XQueryTree may return BadWindow. (#23416)
6962    
6963    X.Org Bug 23416 <http://bugs.freedesktop.org/show_bug.cgi?id=XXX>
6964    
6965    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
6966
6967commit dbe98d456ccc6eeca9fa3e241a3db0a4d83c5a65
6968Author: Alan Coopersmith <alan.coopersmith@sun.com>
6969Date:   Fri Aug 28 23:07:58 2009 +0800
6970
6971    Fix version tag in .TH line of several XKB man pages
6972    
6973    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6974
6975commit bf24400936c10af6f5aa0c75cfe2207ab9b680b4
6976Author: Alan Coopersmith <alan.coopersmith@sun.com>
6977Date:   Fri Aug 28 23:04:38 2009 +0800
6978
6979    XkbSetDeviceButtonActions.man: remove non-existent actions argument
6980    
6981    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6982
6983commit 53affa9335116f2d367f041e6502a411d4619e47
6984Author: Alan Coopersmith <alan.coopersmith@sun.com>
6985Date:   Fri Aug 28 23:00:17 2009 +0800
6986
6987    XkbQueryExtension.man: Arguments should be pointers
6988    
6989    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6990
6991commit 6233948885acc5873a5abddfff235afec555f3c2
6992Author: Alan Coopersmith <alan.coopersmith@sun.com>
6993Date:   Fri Aug 28 22:53:03 2009 +0800
6994
6995    XkbSAActionSetCtrls.man: Fix typo in formatting macro
6996    
6997    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6998
6999commit 28a9ca57cdec4aa9ca92322f963b01f0c2daf47a
7000Author: Alan Coopersmith <alan.coopersmith@sun.com>
7001Date:   Fri Aug 28 22:49:31 2009 +0800
7002
7003    Convert Xkb API man pages to ANSI prototypes
7004    
7005    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
7006
7007commit fa2eecca85baab9616f7143cc1a853a594b4a90c
7008Author: James Cloos <cloos@jhcloos.com>
7009Date:   Mon Aug 24 06:35:17 2009 -0400
7010
7011    Add some (Serbian) Cyrillic NFD sequences.
7012    
7013    A number of characters in use in the various countries which use the
7014    Cyrillic script do not appear as pre-composed characters in The UCS
7015    or Unicode; they are only available as combining-character sequences.
7016    
7017    This commit adds support for using (prefix) dead keys and Multi_key-
7018    initiated sequences to enter a number of these combining-character
7019    sequences.  This ensures that users can enter these scripts even
7020    when using the current Cyrillic keymaps, which lack support for
7021    the combining characters.
7022    
7023    Please see the discussions on the xkb mailing list.
7024    
7025    Signed-off-by: James Cloos <cloos@jhcloos.com>
7026
7027commit d1bdc909f9246119696c8b0d9afb7bd8afb71b60
7028Author: Julien Cristau <jcristau@debian.org>
7029Date:   Wed Aug 5 18:14:23 2009 +0200
7030
7031    man/xkb: delete spurious newline in .TH headers
7032
7033commit ee723b83b24682db833a2f0abd96cd319b8a62af
7034Author: Julien Cristau <jcristau@debian.org>
7035Date:   Wed Aug 5 16:45:19 2009 +0200
7036
7037    man: use __libmansuffix__ instead of 3X11 for references to other pages
7038
7039commit 595e204feb82c798a92eea41fea03be6476ac181
7040Author: Julien Cristau <jcristau@debian.org>
7041Date:   Wed Aug 5 16:43:36 2009 +0200
7042
7043    man/xkb: use __libmansuffix__ instead of hardcoding 3Xkb for manpage sections
7044
7045commit 9da7e230d5320e1556ad2084fcd06ee7994385ea
7046Author: Peter Hutterer <peter.hutterer@who-t.net>
7047Date:   Wed Aug 5 14:15:02 2009 +1000
7048
7049    Bump to 1.2.99.901 (1.3 RC1)
7050    
7051    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
7052
7053commit 8f78c7b4e3570cd46c5a220982963c17fe2157b8
7054Author: Filippo Giunchedi <filippo@debian.org>
7055Date:   Sat Jun 6 16:56:54 2009 +0200
7056
7057    nls: add {left,right}wards arrow to compose table
7058    
7059    Debian bug#532117 <http://bugs.debian.org/532117>
7060    
7061    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
7062
7063commit 7949bfa00390241d994f32463e50d4bd78920568
7064Author: Julien Cristau <jcristau@debian.org>
7065Date:   Fri Jul 31 13:33:52 2009 +0200
7066
7067    Update library version for new symbols
7068    
7069    Commit 554f755e5545f63d3c8f299297927238da155773 added generic event
7070    cookie handling.  Bump libX11 version number accordingly.
7071    
7072    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
7073
7074commit 640fec5f4feacd01a00eea3dcd4edb220907d3dc
7075Author: Julien Cristau <jcristau@debian.org>
7076Date:   Sun Aug 2 17:18:31 2009 +0200
7077
7078    Add _XFUNCPROTOBEGIN/END to Xlib-xcb.h
7079    
7080    X.Org bug#22252 <https://bugs.freedesktop.org/show_bug.cgi?id=22252>
7081    
7082    Reported-by: Riku Salminen <rsalmin2@cc.hut.fi>
7083    Signed-off-by: Julien Cristau <jcristau@debian.org>
7084
7085commit bc06d49e9dac1836d6824769ddb2ac5ba9f14df7
7086Author: Peter Hutterer <peter.hutterer@who-t.net>
7087Date:   Wed Jul 29 08:44:09 2009 +1000
7088
7089    Fix compiler warning 'unused variable qelt'
7090    
7091    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
7092
7093commit 03f4907e14f5755e72309f08742977b871e81e33
7094Author: Peter Hutterer <peter.hutterer@who-t.net>
7095Date:   Wed Jul 29 08:34:57 2009 +1000
7096
7097    Add utlist.h to the Makefile.am
7098    
7099    utlist.h contains the linked list macros, it was added with the recent
7100    addition of event cookies but utlist.h wasn't added to the Makefile.am. As a
7101    result, make dist failed.
7102    
7103    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
7104
7105commit 554f755e5545f63d3c8f299297927238da155773
7106Author: Peter Hutterer <peter.hutterer@who-t.net>
7107Date:   Fri Jun 26 11:27:43 2009 +1000
7108
7109    Add generic event cookie handling to libX11.
7110    
7111    Generic events require more bytes than Xlib provides in the standard XEvent.
7112    Memory allocated by the extension and stored as pointers inside the event is
7113    prone to leak by simple 'while (1) { XNextEvent(...); }' loops.
7114    
7115    This patch adds cookie handling for generic events. Extensions may register
7116    a cookie handler in addition to the normal event vectors. If an extension
7117    has registered a cookie handler, _all_ generic events for this extensions
7118    must be handled through cookies. Otherwise, the default event handler is
7119    used.
7120    
7121    The cookie handler must return an XGenericEventCookie with a pointer to the
7122    data.The rest of the event (type, serialNumber, etc.) are to be filled as
7123    normal. When a client retrieves such a cookie event, the data is stored in
7124    an internal queue (the 'cookiejar'). This data is freed on the next call to
7125    XNextEvent().
7126    
7127    New extension interfaces:
7128        XESetWireToEventCookie(display, extension_number, cookie_handler)
7129    
7130    Where cookie_handler must set cookie->data. The data pointer is of arbitray
7131    size and type but must be a single memory block. This memory block
7132    represents the actual extension's event.
7133    
7134    New client interfaces:
7135        XGetEventData(display, *cookie);
7136        XFreeEventData(display, *cookie);
7137    
7138    If the client needs the actual event data, it must call XGetEventData() with
7139    the cookie. This returns the data pointer (and removes it from the cookie
7140    jar) and the client is then responsible for freeing the event with
7141    XFreeEventData(). It is safe to call either function with a non-cookie
7142    event. Events unclaimed or not handled by the XGetEventData() are cleaned up
7143    automatically.
7144    
7145    Example client code:
7146        XEvent event;
7147        XGenericEventCookie *cookie = &ev;
7148    
7149        XNextEvent(display, &event);
7150        if (XGetEventData(display, cookie)) {
7151            XIEvent *xievent = cookie->data;
7152            ...
7153        } else if (cookie->type == GenericEvent) {
7154            /* handle generic event */
7155        } else {
7156            /* handle extension/core event */
7157        }
7158        XFreeEventData(display, cookie);
7159    
7160    Cookies are not multi-threading safe. Clients that use XGetEventData() must
7161    lock between XNextEvent and XGetEventData to avoid other threads freeing
7162    cookies.
7163    
7164    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
7165
7166commit d7675cb8fa7155e7aff1459636a117a97aa1bf28
7167Author: Peter Hutterer <peter.hutterer@who-t.net>
7168Date:   Mon Jul 6 13:17:35 2009 +1000
7169
7170    Bump to 1.2.99.1
7171    
7172    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
7173
7174commit 75fe48e7a42a685d7098e8d7108b9b956c471563
7175Author: Peter Hutterer <peter.hutterer@who-t.net>
7176Date:   Fri Jul 10 14:07:34 2009 +1000
7177
7178    Bump to 1.2.2
7179    
7180    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
7181
7182commit 5d0fe0e0e92759af5667c5dca2eacb1b6f2d66ea
7183Author: Peter Hutterer <peter.hutterer@who-t.net>
7184Date:   Thu Jul 2 09:10:25 2009 +1000
7185
7186    XMaskEvent/XCheckMaskedEvents must not check for GenericEvents.
7187    
7188    GenericEvent cannot be selected for in the core event masks and they must
7189    thus be treated like extension events.
7190    
7191    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
7192
7193commit c1bf65b89f4e361f6178a73dd5334c8f2bd95732
7194Author: Peter Hutterer <peter.hutterer@who-t.net>
7195Date:   Thu Jul 2 09:06:05 2009 +1000
7196
7197    XWindowEvent/XCheckWindowEvent must not return GenericEvents.
7198    
7199    GenericEvents have no fixed position for the window, so they must be treated
7200    like extension events.
7201    
7202    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
7203
7204commit 38f9054554d63525d2dd51aafb5eb57821158ab9
7205Author: Alan Coopersmith <alan.coopersmith@sun.com>
7206Date:   Mon Jun 15 19:00:43 2009 -0700
7207
7208    Drop ancient USG SysV #ifdefs
7209    
7210    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
7211
7212commit 7bfe1323f16a1a69cc474659f7ac0c2570b1cf42
7213Author: Adam Jackson <ajax@redhat.com>
7214Date:   Fri Jun 12 12:44:01 2009 -0400
7215
7216    Remove X_NOT_STDC_ENV usage. (#6527)
7217
7218commit 6dd74d7fb414ca1e99bae5c13e333961f396eb36
7219Author: Julien Cristau <jcristau@debian.org>
7220Date:   Fri May 29 11:18:11 2009 +0200
7221
7222    nls: remove more duplicated aliases
7223    
7224    Signed-off-by: Julien Cristau <jcristau@debian.org>
7225
7226commit e4b0899f516da224010e68bd2d953d5293d94993
7227Author: parag <parag@rawhideTM.pnq.redhat.com>
7228Date:   Thu May 28 11:29:35 2009 +0530
7229
7230    nls: Add pa_PK locale information and make pa_IN as default for pa.
7231    
7232    X.Org bug#21954 <http://bugs.freedesktop.org/show_bug.cgi?id=21954>
7233    
7234    [jcristau: removed the pa_PK.UTF-8 alias to itself]
7235    
7236    Signed-off-by: parag <pnemade@redhat.com>
7237    Signed-off-by: Julien Cristau <jcristau@debian.org>
7238
7239commit f0ea1f6d51145592f8617854f9320ec5dbff3299
7240Author: Julien Cristau <jcristau@debian.org>
7241Date:   Fri May 29 10:58:20 2009 +0200
7242
7243    nls: remove broken sd_IN.UTF-8 alias
7244    
7245    Signed-off-by: Julien Cristau <jcristau@debian.org>
7246
7247commit e29e010dabdb17d6498f2ef1786f69b8830c18ca
7248Author: Julien Cristau <jcristau@debian.org>
7249Date:   Fri May 29 10:57:43 2009 +0200
7250
7251    nls: remove duplicated en_US* aliases
7252    
7253    Signed-off-by: Julien Cristau <jcristau@debian.org>
7254
7255commit a89a300d87852c84389ad97db66dcb8930cb45dd
7256Author: Caolan McNamara <caolanm@redhat.com>
7257Date:   Thu May 21 18:41:05 2009 +0200
7258
7259    man: missing space in XAllocColor man page
7260    
7261    X.Org bug#21854 <http://bugs.freedesktop.org/show_bug.cgi?id=21854>
7262
7263commit c1c001e36504fd304f76f69bf6af3643225c49ea
7264Author: James Cloos <cloos@jhcloos.com>
7265Date:   Wed May 13 13:03:54 2009 -0400
7266
7267    [nls] Replace remaining UCS Combining Characters in Compose sequences.
7268    
7269    The replaces the instances of keysyms which match <U03[0-6][0-9A-Fa-f]>,
7270    where the keysym is used as a dead_key, with an actual dead_key symbol.
7271    
7272    The only remaining instances of UCS combining characters in the
7273    compose sequences are of U0338 COMBINING LONG SOLIDUS OVERLAY
7274    used as a suffix in Multi_key-initiated sequences to create
7275    mathematics characters such as ∉ U+2209 NOT AN ELEMENT OF
7276    from ∈ U+2208 ELEMENT OF.
7277
7278commit e2b0bad3d3b9e9ca781fc264eb7584afbe2a1a4f
7279Author: James Cloos <cloos@jhcloos.com>
7280Date:   Wed May 13 09:58:59 2009 -0400
7281
7282    [nls] Remove extraneous instances of UCS Combining Characters in Compose sequences.
7283    
7284    This removes those instances of keysyms which match <U03[0-6][0-9A-Fa-f]>,
7285    where the matching keysym is used as a dead_key, and for which alternative
7286    compose sequences exist.
7287
7288commit 79f47e6dff2f0a0b673bbfecc47528edca814baa
7289Author: James Cloos <cloos@jhcloos.com>
7290Date:   Fri May 8 20:11:54 2009 -0400
7291
7292    [nls] Remove combining_ keysyms from the Compose files
7293    
7294    Some of the UTF-8 Compose tables included combining_ keysyms in
7295    the compose sequences as though they were dead symbols.  This
7296    is contrary to how combining characters are used in the UCS.
7297    Therefore, those lines have been removed from the Compose tables.
7298    
7299    There were also some combining_ keysyms as targets.  As those
7300    are not included in x11proto’s keysymdef.h, and as those do
7301    exist there as Uxxxx keysyms, they are replaced with the Uxxxx
7302    keysym names.
7303    
7304    This addresses http://bugzilla.freedesktop.org/show_bug.cgi?id=5107
7305    and is based on attachment 25644 by samuel.thibault@ens-lyon.org.
7306    
7307    Signed-off-by: James Cloos <cloos@jhcloos.com>
7308
7309commit 4a08a3dfbda497b2be46e3e5fe6b777815ea27f9
7310Author: parag <pnemade@redhat.com>
7311Date:   Tue May 5 16:50:47 2009 +0530
7312
7313    libX11: Add new Indic language information to nls directory files. #21560
7314    
7315    Signed-off-by: parag <pnemade@redhat.com>
7316
7317commit aaf81096eb44b4c2812108721ba02738391884da
7318Author: Alan Coopersmith <alan.coopersmith@sun.com>
7319Date:   Sat May 2 01:38:14 2009 -0700
7320
7321    Correct return type in XkbGetKeyboard man page
7322    
7323    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
7324
7325commit 2bef065b70f70af520b5de8fb23529254d15f003
7326Author: Christoph Pfister <christophpfister@gmail.com>
7327Date:   Mon Apr 27 22:32:57 2009 -0700
7328
7329    X.Org Bug #21117: crash in get_rotate_fontname (omGeneric.c)
7330    
7331    http://bugs.freedesktop.org/show_bug.cgi?id=21117
7332    
7333    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
7334
7335commit 5c1cde105db10df24d3c532f032cbc59050c7313
7336Author: Alan Coopersmith <alan.coopersmith@sun.com>
7337Date:   Fri Apr 17 22:14:47 2009 -0700
7338
7339    Use AC_USE_SYSTEM_EXTENSIONS instead of hand-rolled check for _GNU_SOURCE
7340    
7341    Raises minimum autoconf version required to 2.60
7342    
7343    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
7344
7345commit 84b7a91ef84f345384e4b0e13907385ca3ca3255
7346Author: Julien Cristau <jcristau@debian.org>
7347Date:   Tue Apr 14 15:59:57 2009 +0100
7348
7349    Fix fi_FI.UTF-8, again
7350    
7351    Commit 97fc6babd4ccaf300e25708868aa2a738893dc30 "NLS: Add UTF-8 compose
7352    file for Finnish" made fi_FI.UTF-8 use a broken empty XLC_LOCALE file.
7353    This reverts it back to using the en_US.UTF-8 one.
7354
7355commit 128daff4422f973ea40dd1e31b2db230e643549e
7356Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
7357Date:   Thu Apr 9 12:01:07 2009 +0700
7358
7359    Thai XIM not retrieve MB surrounding on UTF-8 LC
7360    
7361    On th_TH.UTF-8 locale, Thai XIM rejects all combining characters for GTK+ apps
7362    that use X Input Method.
7363    
7364    This is because GTK+ imxim immodule passes surrounding text in locale encoding,
7365    which is UTF-8 for UTF-8 locales. But current Thai XIM in Xlib assumes the
7366    multi-byte StringConversionText response for the StringConversionCallback to
7367    always be TIS-620, by retrieving a single byte and using it as-is.
7368    
7369    If the Thai XIM tries to convert the multi-byte text based on locale codeset
7370    before using it, it will work again.
7371    
7372    X.Org But 12759 <http://bugs.freedesktop.org/show_bug.cgi?id=12759>
7373    
7374    Signed-off-by: Theppitak Karoonboonyanan <thep@linux.thai.net>
7375    Signed-off-by: Julien Cristau <jcristau@debian.org>
7376
7377commit e09f0d227fbf95b6252759af9d426efd57686f9f
7378Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
7379Date:   Thu Apr 9 11:47:55 2009 +0700
7380
7381    Thai XIM not filters when NumLock or CapsLock is on
7382    
7383    The Thai XIM component in libx11 activated on 'th*' locales normally filters
7384    input sequence according to orthographic rules. However, when NumLock/CapsLock
7385    is on, this stops working. All sequences are passed through.
7386    
7387    This is caused by missing masks in _XimThaiFilter(), which normally screens out
7388    certain special keys from entering orthographic rules. Unfortunately, this
7389    included events with NumLock/CapsLock on. Negating the masks from the check
7390    allows the events to be tested by the rules.
7391    
7392    X.Org Bug 12517 <http://bugs.freedesktop.org/show_bug.cgi?id=12517>
7393    
7394    Signed-off-by: Theppitak Karoonboonyanan <thep@linux.thai.net>
7395    Signed-off-by: Julien Cristau <jcristau@debian.org>
7396
7397commit d108d3c706af3502820b5202564488ea19908b77
7398Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
7399Date:   Thu Apr 9 11:25:25 2009 +0700
7400
7401    CharSet-to-CompoundText Conversion Failed for Thai Locales
7402    
7403    SCIM fails to commit Thai input characters on Thai locales, because it commits
7404    string in compound text form, which was converted via
7405    XwcTextListToTextProperty(). But the XLC_LOCALE for th_TH and th_TH.UTF-8
7406    declares cs1's ct_encoding as TIS620-0:GR, which was commented out in
7407    src/xlibi18n/lcCT.c default_ct_data, in favor of ISO8859-11 ESC sequence.
7408    So, declaring cs1 as ISO8859-11:GR instead makes it work.
7409    
7410    Besides, for th_TH.UTF-8, adding cs2 class with ISO10646-1 encoding also adds
7411    support for UTF-8 input.
7412    
7413    And, along discussion in the bug, a similar problem was found for fontset, too,
7414    by causing delays on X apps startups on systems without tis620-0 fonts. This
7415    is normally the case, as mkfontdir and mkfontscale generate iso8859-11 entries
7416    by default for Thai X fonts. So, Thai fontset charset is also patched.
7417    
7418    X.Org Bug 16475 <http://bugs.freedesktop.org/show_bug.cgi?id=16475>
7419    
7420    Signed-off-by: Theppitak Karoonboonyanan <thep@linux.thai.net>
7421    Signed-off-by: Julien Cristau <jcristau@debian.org>
7422
7423commit fd62d3318c846cd43d66a505946e94704d7d83dc
7424Author: Alan Coopersmith <alan.coopersmith@sun.com>
7425Date:   Wed Apr 8 19:42:25 2009 -0700
7426
7427    Revert "Change masculine to ordmasculine in Compose file comments"
7428    
7429    This reverts commit 892b401d5acc055803a20e349ede0d64490f2230.
7430    
7431    As Julien Cristau correctly points out, I misread the Compose file grammar
7432    in modules/im/ximcp/imLcPrs.c, and those are keysyms, not comments, and
7433    the keysym is named XK_masculine in keysymdef.h.   This change is thus a
7434    bug in the Solaris compose tables to be fixed, not an improvement to bring
7435    upstream.
7436
7437commit eac57c77afdf44f50692225b8b0345a7c927bc84
7438Author: Alan Coopersmith <alan.coopersmith@sun.com>
7439Date:   Tue Apr 7 15:38:45 2009 -0700
7440
7441    Version bump: 1.2.1
7442    
7443    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
7444
7445commit bfbec08baec33c5024510b0bcbbee6e4a8473e79
7446Author: Yaakov Selkowitz (Cygwin Ports maintainer) <yselkowitz@users.sourceforge.net>
7447Date:   Tue Apr 7 13:46:57 2009 -0700
7448
7449    Bug 20773: Xcursor dynamic loading on Cygwin
7450    
7451    X.Org Bug #20773 <http://bugs.freedesktop.org/show_bug.cgi?id=20773>
7452    Patch #24096 <http://bugs.freedesktop.org/attachment.cgi?id=24096>
7453    
7454    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
7455
7456commit c8c41614911be4fa222fa22478677d263b41c751
7457Author: Alan Coopersmith <alan.coopersmith@sun.com>
7458Date:   Mon Apr 6 16:52:46 2009 -0700
7459
7460    Fix a several sparse warnings: Using plain integer as NULL pointer
7461    
7462    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
7463
7464commit b336c3d0cc2aefc8926500cff5f76b5a3e803886
7465Author: Alan Coopersmith <alan.coopersmith@sun.com>
7466Date:   Mon Apr 6 16:32:05 2009 -0700
7467
7468    Further ansify prototypes & reduce #ifdefs in locking.c
7469    
7470    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
7471
7472commit 892b401d5acc055803a20e349ede0d64490f2230
7473Author: Alan Coopersmith <alan.coopersmith@sun.com>
7474Date:   Mon Apr 6 10:50:09 2009 -0700
7475
7476    Change masculine to ordmasculine in Compose file comments
7477    
7478    Matches the ordfeminine name used for the matching character,
7479    and the ordmasculine name used in many font descriptions of the glyph.
7480    
7481    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
7482
7483commit e3198b55dc16ec57346cc28aa8d34165ce8cde96
7484Author: Julien Cristau <jcristau@debian.org>
7485Date:   Fri Mar 13 13:52:33 2009 +0100
7486
7487    Add a ru_RU.UTF-8 locale
7488    
7489    Based on patch by Eugene Konev <ejka@imfi.kspu.ru> for X.Org 6.9.0.
7490    
7491    Debian bug#330144 <http://bugs.debian.org/330144>
7492    X.Org bug#15887 <http://bugs.freedesktop.org/show_bug.cgi?id=15887>
7493
7494commit d239de9452691d6f875e6e5ace3d499ec3bf14d9
7495Author: Alan Coopersmith <alan.coopersmith@sun.com>
7496Date:   Wed Mar 25 17:59:09 2009 -0700
7497
7498    Delete some unused "#ifdef notdef" static functions
7499    
7500    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
7501
7502commit 4281892e31058ef3aecc96a5767824b34d88d415
7503Author: Alan Coopersmith <alan.coopersmith@sun.com>
7504Date:   Wed Mar 25 17:52:48 2009 -0700
7505
7506    Remove _XP_PRINT_SERVER_ #ifdefs from Xrm.c
7507    
7508    This copy of Xrm.c is never compiled into the Xprint server any more, so
7509    this old code-sharing #ifdef from the monolith tree isn't needed.
7510    
7511    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
7512
7513commit 27a2e16e8ea11c1604e28645fae4d6ba4371d513
7514Author: Alan Coopersmith <alan.coopersmith@sun.com>
7515Date:   Tue Mar 17 18:38:58 2009 -0700
7516
7517    makekeys: combine malloc(strlen)+strcpy into strdup
7518    
7519    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
7520
7521commit 78a894231ae8ec4959007b6d9b8d2a15d6333a1e
7522Author: Alan Coopersmith <alan.coopersmith@sun.com>
7523Date:   Tue Mar 17 15:42:19 2009 -0700
7524
7525    When makekeys fails to find a good hash, print error instead of divide-by-zero
7526    
7527    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
7528
7529commit c9f84af591d15fbc3fa890bcd955d94f1ff82a0b
7530Author: Alan Coopersmith <alan.coopersmith@sun.com>
7531Date:   Tue Mar 17 14:59:16 2009 -0700
7532
7533    Remove ifdef checks for macII left over from ancient A/UX 3.0 support
7534    
7535    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
7536
7537commit 4b90da0ffb32b791d915ecae11996cc2f2cac9a7
7538Author: Alan Coopersmith <alan.coopersmith@sun.com>
7539Date:   Mon Mar 16 18:37:49 2009 -0700
7540
7541    XErrorDB additions for DRI2 requests
7542    
7543    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
7544
7545commit 273f45af1441be9d2135e4cac8c46ceb33470236
7546Author: Alan Coopersmith <alan.coopersmith@sun.com>
7547Date:   Mon Mar 16 18:35:44 2009 -0700
7548
7549    XErrorDB additions for XInput errors and new XInput 1.5 requests
7550    
7551    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
7552
7553commit 90ef36f6336068183bf9d13ca972202db35b1202
7554Author: Alan Coopersmith <alan.coopersmith@sun.com>
7555Date:   Mon Mar 16 18:23:05 2009 -0700
7556
7557    XErrorDB additions for RANDR 1.3
7558    
7559    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
7560
7561commit 124a4efaccf329f1a44f6b824e70278bdd1cad83
7562Author: Lubos Lunak <l.lunak@suse.cz>
7563Date:   Mon Mar 16 18:03:36 2009 -0700
7564
7565    XErrorDB updates for XTEST, RANDR, DAMAGE extensions
7566    
7567    From http://lists.freedesktop.org/archives/xorg/2008-January/031937.html
7568    
7569    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
7570
7571commit 80811846e37b805fddb37c71589fd5f6f6037b3f
7572Author: Lubos Lunak <l.lunak@suse.cz>
7573Date:   Mon Mar 16 17:57:52 2009 -0700
7574
7575    XGetErrorText() fails for extension error codes equal to the error base
7576    
7577    From http://lists.freedesktop.org/archives/xorg/2008-January/031937.html
7578    
7579    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
7580
7581commit da95ecbbdcacc483cd0b5fd7db1fb2e2543341bd
7582Author: Milos Komarcevic <miloskomarcevic@netscape.net>
7583Date:   Mon Mar 16 17:43:26 2009 -0700
7584
7585    Bug 11456: Serbian locale updates (sr_RS and sr_ME)
7586    
7587    X.Org Bug #11456 <http://bugs.freedesktop.org/show_bug.cgi?id=11456>
7588    Patch #23937 <http://bugs.freedesktop.org/attachment.cgi?id=23937>
7589    
7590    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
7591
7592commit 934a6c0519a9e32505beee55b004f36c2a710217
7593Author: Alan Coopersmith <alan.coopersmith@sun.com>
7594Date:   Mon Mar 16 14:55:22 2009 -0700
7595
7596    Bug 10082: Compose entries for some standard mathematical operators
7597    
7598    X.Org Bug #10082 <http://bugs.freedesktop.org/show_bug.cgi?id=10082>
7599    
7600    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
7601
7602commit abf4da1ed0f735ca7ce471dc13a0ec3677391486
7603Author: Alan Coopersmith <alan.coopersmith@sun.com>
7604Date:   Mon Mar 16 14:27:46 2009 -0700
7605
7606    Bug 14651: We need to add new locale specification for Belarusian Latin locale
7607    
7608    X.Org Bug #14651 <http://bugs.freedesktop.org/show_bug.cgi?id=14651>
7609    
7610    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
7611
7612commit 837703c8651e1321a50147a8311c56e4758ce08a
7613Author: Caolan McNamara <caolanm@redhat.com>
7614Date:   Mon Mar 16 14:15:50 2009 -0700
7615
7616    Bug 20575: man page for XCreatePixmapFromBitmapData doesn't match signature
7617    
7618    X.Org Bug #20575 <http://bugs.freedesktop.org/show_bug.cgi?id=20575>
7619    Patch #23717 <http://bugs.freedesktop.org/attachment.cgi?id=23717>
7620    
7621    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
7622
7623commit 22199018879055d8653e59d8236bef57164fac66
7624Author: Alan Coopersmith <alan.coopersmith@sun.com>
7625Date:   Mon Mar 16 13:28:18 2009 -0700
7626
7627    Correct locale alias for sh_BA.ISO8859-2@bosnia (should be sr, not nr)
7628    
7629    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
7630
7631commit 4c63c27eab2b88f5556dbf72c36321f50f6de35e
7632Author: Alan Coopersmith <alan.coopersmith@sun.com>
7633Date:   Thu Mar 12 18:57:20 2009 -0700
7634
7635    Bug 9953: Please provide locale alias hu_HU.utf8
7636    
7637    X.Org Bug #9953 <http://bugs.freedesktop.org/show_bug.cgi?id=9953>
7638    Debian Bug #407573 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=407573>
7639    
7640    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
7641
7642commit 501f4e0ada1690783ada05ad412e4b191ad55336
7643Author: Alan Coopersmith <alan.coopersmith@sun.com>
7644Date:   Thu Mar 12 17:38:21 2009 -0700
7645
7646    Bug 6820: Xlib shouldn't handle EAGAIN as a fatal IO error
7647    
7648    X.Org Bug #6820 <http://bugs.freedesktop.org/show_bug.cgi?id=6820>
7649    Patch #17637 <http://bugs.freedesktop.org/attachment.cgi?id=17637>
7650    
7651    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
7652
7653commit 7b9c543e7210c7da204871c31a160e79d3a949b6
7654Author: Paul Bender <pebender@gmail.com>
7655Date:   Thu Mar 12 17:11:42 2009 -0700
7656
7657    Bug 15664: xau & xdmcp not needed in x11.pc dependencies when built with xcb
7658    
7659    X.Org bug #15664 <https://bugs.freedesktop.org/show_bug.cgi?id=15664>
7660    Patch #16128 <https://bugs.freedesktop.org/attachment.cgi?id=16128>
7661    
7662    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
7663
7664commit fd2cf1ef66c2aff3dc758956c9e9e567b9892c06
7665Author: Xue Wei <Wei.Xue@Sun.COM>
7666Date:   Wed Mar 4 19:32:29 2009 -0800
7667
7668    Add UTF-8 locale entries for es_US, kk_KZ, mt_MT, and sh_BA
7669    
7670    Sun bug 6809309 Add new utf8 locales supported by Xlib
7671    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6809309>
7672    
7673    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
7674
7675commit cb70c9bc43267577859a3674ca9de9be396ba69e
7676Author: Alan Coopersmith <alan.coopersmith@sun.com>
7677Date:   Mon Feb 23 19:29:15 2009 -0800
7678
7679    Add --with-locale-lib-dir configure option to set locale lib install dir
7680    
7681    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
7682
7683commit ccd3584f0330db8dac90b9313c33ab8b5b2ec6af
7684Author: Alan Coopersmith <alan.coopersmith@sun.com>
7685Date:   Mon Feb 23 18:33:51 2009 -0800
7686
7687    Incorporate more locale names/aliases from Solaris libX11
7688    
7689    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
7690
7691commit 83ce4daefdf544f801c7d666c89162690a36ce41
7692Author: Alan Coopersmith <alan.coopersmith@sun.com>
7693Date:   Mon Feb 23 18:32:34 2009 -0800
7694
7695    Incorporate char range comments from Solaris version of ksc5601.h
7696    
7697    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
7698
7699commit ee279c84e34f1ebb8a6ff17d54ee146d11e29764
7700Author: Chris Ball <cjb@laptop.org>
7701Date:   Sat Feb 21 14:48:42 2009 -0500
7702
7703    Fix fi_FI locale install directory.
7704    
7705    fi_FI was setting "x11thislocaledir" to en_US, with the result that its
7706    locale data was written in that locale dir.
7707    
7708    Signed-off-by: Chris Ball <cjb@laptop.org>
7709
7710commit da6bbca07c796c69172a649405474f03bee66754
7711Author: Emilio Jesús Gallego Arias <egallego@babel.ls.fi.upm.es>
7712Date:   Sat Feb 21 20:17:23 2009 +0100
7713
7714    xcb_io: Avoid datatype overflow on AMD64 and friends.
7715
7716commit 4ef6491afa69e8441caee7bbebc583e6e796275e
7717Author: Chris Ball <cjb@laptop.org>
7718Date:   Sat Feb 21 12:51:03 2009 -0500
7719
7720    Build fix for fi_FI.
7721    
7722    Commit 642c4e928e770e0.. instructs make to enter nls/fi_FI, but no
7723    Makefile is written there by configure.
7724    
7725    Signed-off-by: Chris Ball <cjb@laptop.org>
7726
7727commit 642c4e928e770e012379539a6ce09e11c02f09a6
7728Author: Julien Cristau <jcristau@debian.org>
7729Date:   Sat Feb 21 03:12:05 2009 +0100
7730
7731    nls: actually use the fi_FI.UTF-8 files
7732    
7733    The subdir wasn't added to nls/Makefile.am
7734
7735commit 9bad8309ef289bb943651abf6967b24fa2252aac
7736Author: Alan Coopersmith <alan.coopersmith@sun.com>
7737Date:   Fri Feb 20 14:45:54 2009 -0800
7738
7739    flags member of Display structure needs to be marked volatile
7740    
7741    Since the Xlib multithreaded code checks the flags variable in _XFlushInt
7742    to see if the other threads are done yet, it has to be marked volatile so
7743    the compiler doesn't optimize out re-loading it on each trip through the
7744    while loop and end up in an impossible-to-exit infinite loop of CPU chewing.
7745    
7746    Part of fix for Sun bug 6409332: infinite loop in XFlushInt() on x86/32-bit
7747    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6409332>
7748    
7749    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
7750
7751commit ef5c446395aa30d7b1096a112e241a81c5b358e7
7752Author: Xue Wei <Wei.Xue@Sun.COM>
7753Date:   Fri Feb 20 15:12:35 2009 -0800
7754
7755    Add nn_NO.UTF-8 to compose.dir.pre for Norwegian Nynorsk
7756    
7757    Sun bug 6691236: Swing applications dump core when locale is nn_NO.UTF-8
7758    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6691236>
7759    
7760    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
7761
7762commit 3822f2654e9630167f0c6cae317b472c09771672
7763Author: Xue Wei <Wei.Xue@Sun.COM>
7764Date:   Fri Feb 20 15:03:51 2009 -0800
7765
7766    Add locale aliases for no_NO & sh_BA locale variants
7767    
7768    Fixes Sun bug id 6691219: xterm refuses to start in some locales
7769    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6691219>
7770    
7771    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
7772
7773commit 63b6b5b5f522c0a606b32163c643edb64ca91d54
7774Author: Xue Wei <Wei.Xue@Sun.COM>
7775Date:   Fri Feb 20 14:23:11 2009 -0800
7776
7777    Add kk_KZ.UTF-8 to locale.dir.pre for Kazakhstan
7778    
7779    Fixes Sun bug id 6737254 ("kk_KZ.UTF-8 locale: In Java applications
7780     changing keyboard layout with gimlet does not work")
7781    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6737254>
7782    
7783    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
7784
7785commit d497301707962f3b94542e999a36abffcfbd303d
7786Author: Julien Cristau <jcristau@debian.org>
7787Date:   Tue Feb 17 16:09:41 2009 +0100
7788
7789    Bump to 1.2
7790
7791commit 990e71361d1d7b79bf07b1dc93e4e905d4f1bdaf
7792Author: Julien Cristau <jcristau@debian.org>
7793Date:   Tue Feb 17 15:23:40 2009 +0100
7794
7795    Check Xmalloc return value in _XConnectXCB
7796    
7797    X.Org bug#19137 <http://bugs.freedesktop.org/show_bug.cgi?id=19137>
7798    
7799    Signed-off-by: Julien Cristau <jcristau@debian.org>
7800
7801commit b4b5893f69419ff577bbaa4d18f78e4ffd729a0c
7802Author: James Cloos <cloos@jhcloos.com>
7803Date:   Sat Feb 14 12:35:56 2009 -0500
7804
7805    dolt: allow older versions of bash to compile the library
7806    
7807    Cf xserver commit 7be6520d and bugzilla #19031.
7808
7809commit 20982d6866e24453642b0b592fa0f13a88aa747c
7810Author: Will Thompson <will@willthompson.co.uk>
7811Date:   Thu Feb 5 02:53:06 2009 +1100
7812
7813    NLS: Compose: Non-aliasing CCCP
7814    
7815    Oops, cccp aliased cc for question mark.  Upper-case it to avoid fail.
7816    
7817    Signed-off-by: Will Thompson <will@willthompson.co.uk>
7818    Signed-off-by: Daniel Stone <daniel@fooishbar.org> (sorry)
7819
7820commit f052665394f3f0319e93a98f1d5d4ea287e1dd07
7821Author: Will Thompson <will@willthompson.co.uk>
7822Date:   Wed Feb 4 14:51:11 2009 +0000
7823
7824    Add two essential compose sequences
7825    
7826    Signed-off-by: Will Thompson <will@willthompson.co.uk>
7827    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
7828
7829commit d7bea6fa909bf34c43efe0ca8239ab0f9f3a415f
7830Author: Alan Coopersmith <alan.coopersmith@sun.com>
7831Date:   Mon Feb 2 20:34:31 2009 -0800
7832
7833    Add README with pointers to mailing list, bugzilla & git repos
7834    
7835    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
7836
7837commit f682c27e93512773122887d2cbabb1657af45d2e
7838Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
7839Date:   Mon Feb 2 16:36:39 2009 -0200
7840
7841    Check if a function argument is NULL.
7842    
7843      This was an addition to patch (also by me)
7844    https://bugs.freedesktop.org/attachment.cgi?id=14660
7845    that was not added when rediscovering/correcting the problem.
7846
7847commit 427e9d45d424b84efd9fc499aebf8d72392844c5
7848Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
7849Date:   Thu Feb 28 15:58:12 2008 -0300
7850
7851    Allow multiple inclusions of cursorfont.h, cosmetic patch.
7852
7853commit b91524a53e691f6a5d278fd8972b48a14ebeedeb
7854Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
7855Date:   Thu Feb 28 15:54:43 2008 -0300
7856
7857    Don't add prototypes for functions that don't exist.
7858    
7859    Note that a full review was not done, only for functions that receive
7860    char/short arguments, or one of it's parameters is a function pointer
7861    that requires char/short arguments.
7862
7863commit 537eb52fe266ac439c4b383bb04a70017b709911
7864Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
7865Date:   Thu Feb 28 15:50:27 2008 -0300
7866
7867    WORD64 compile fix. This bug catched on a overview of the code.
7868    
7869    The code is wrong since the first git revision, so it seens that it has
7870    not been compiled with WORD64 for quite some time, there is also another
7871    interesting code in xkb/XKBRdBuf.c:
7872      <hash>ifdef WORD64
7873      _XkbWriteCopyData32 Not Implemented Yet for sizeof(int)==8
7874      <hash>endif
7875    and possibly there are other similar problems.
7876
7877commit ffd0300fb74c6183208ae599133f2ded09e08d97
7878Author: Brian Rogers <brian@xyzw.org>
7879Date:   Sat Jan 31 10:37:51 2009 -0800
7880
7881    Initialize event_notify after allocating the memory for it.
7882    
7883    An uninitialized or otherwise invalid condition variable can apparently
7884    cause a hang in pthread_cond_broadcast. Ekiga, openoffice, and xine
7885    at least are freezing as a result of event_notify never being initialized.
7886    
7887    Signed-off-by: Brian Rogers <brian@xyzw.org>
7888    Signed-off-by: Bart Massey <bart@cs.pdx.edu>
7889
7890commit 97fc6babd4ccaf300e25708868aa2a738893dc30
7891Author: James Cloos <cloos@jhcloos.com>
7892Date:   Thu Jan 29 20:10:41 2009 -0500
7893
7894    NLS: Add UTF-8 compose file for Finnish
7895    
7896    From bug report:
7897    
7898      https://bugs.freedesktop.org/show_bug.cgi?id=18747
7899
7900commit 1bd2966ed88f83479a066c6ca7da23a515979550
7901Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
7902Date:   Thu Jan 29 20:25:15 2009 -0200
7903
7904    patches to avoid gcc warnings for libX11 (#4)
7905    
7906    Author is Peter Breitenlohner <peb@mppmu.mpg.de>
7907    Bug #17946, attachment #19443
7908    
7909    This patch avoids the gcc warning
7910    	../../../../libX11-1.1.5/modules/im/ximcp/imDefLkup.c:223: warning: passing arg 1 of `_XimProcSyncReply' from incompatible pointer type
7911    (same as already done at other places)
7912    
7913    BTW: what is the difference between XIM (the type of ic->core.im)
7914    and Xim ?
7915
7916commit f16dd6af3eb17a25b8ee03d6617a7acc6e919fb0
7917Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
7918Date:   Thu Jan 29 20:22:21 2009 -0200
7919
7920    patches to avoid gcc warnings for libX11 (#3)
7921    
7922    Author is Peter Breitenlohner <peb@mppmu.mpg.de>
7923    Bug #17946, attachment #19441
7924    
7925    This patch avoids the two gcc warnings
7926    	../../../../libX11-1.1.5/modules/im/ximcp/imRm.c:413: warning: assignment discards qualifiers from pointer target type
7927    	../../../../libX11-1.1.5/modules/im/ximcp/imRm.c:450: warning: assignment discards qualifiers from pointer target type
7928    
7929    Note, that this as a rather crude fix of the problem (and it is really a
7930    shame to cast name_table to non-const).
7931    
7932    The right solution would be to declare XIMValuesList.supported_values
7933    (in include/X11/Xlib.h) as 'const char **' (or '_Xconst char **').
7934    This will, however, require extensive modifications in various places.
7935
7936commit cce75c5dce73fe1f8626ed9e6798138ada09a860
7937Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
7938Date:   Thu Jan 29 20:20:18 2009 -0200
7939
7940    patches to avoid gcc warnings for libX11 (#2)
7941    
7942    Author is Peter Breitenlohner <peb@mppmu.mpg.de>
7943    Bug #17946, attachment #19440
7944    
7945    Avoid a preprocessor message
7946    	<stdin>:194: warning: no newline at end of file
7947    
7948    Two more such warnings (in XkbSAGroup.man and XkbSASetGroup.man)
7949    seem to be caused by a truncated (or otherwise incomplete)
7950    manpage.
7951
7952commit 692baebcc50f1e952800bfe4e2e6bc42f54e62fe
7953Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
7954Date:   Thu Jan 29 20:12:24 2009 -0200
7955
7956    patches to avoid gcc warnings for libX11 (#1)
7957    
7958    Author is Peter Breitenlohner <peb@mppmu.mpg.de>
7959    Bug #17946, attachment #19439
7960    
7961    Define as 1 (one) as done by autoconf and the command line
7962    option, e.g. -DX11_t, not as empty.
7963    
7964    This avoids the gcc (3.4.6) warnings:
7965    	../../libX11-1.1.5/src/x11_trans.c:27:1: warning: "X11_t" redefined
7966    	<command line>:7:1: warning: this is the location of the previous definition
7967    	../../libX11-1.1.5/src/x11_trans.c:28:1: warning: "TRANS_CLIENT" redefined
7968    	<command line>:8:1: warning: this is the location of the previous definition
7969    
7970    Similarly, follow the autoconf convention to define XTHREADS
7971    and XUSE_MTSAFE_API as one.
7972    
7973    This avoids analogous warnings when compiling libXcomposite,
7974    libXcursor, and libXdamage.
7975    
7976    No reason to AC_SUBST XTHREADS and XUSE_MTSAFE_API (unused).
7977
7978commit a1977883c9f5ef0e515569d6e2ebccb07411f98c
7979Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
7980Date:   Thu Jan 29 15:01:06 2009 -0200
7981
7982    Janitor: Correct some gcc/sparse warnings.
7983    
7984      Most remaining warnings are about XIM/Xim to/from conversion
7985    and discarding const from pointers.
7986
7987commit 8ba0ca32a63c532f128bdca7f1bf982cab8e12be
7988Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
7989Date:   Wed Jan 28 20:31:42 2009 -0200
7990
7991    Janitor: ansification, make distcheck, compiler warnings.
7992    
7993      Only convert to use "ansi prototypes" the functions warned from
7994    compilation with "./autogen.sh --prefix=/usr", on a Linux computer.
7995    
7996      Also, only address "trivial" compiler warning fixes in this commit.
7997    
7998      The new .gitignore is the output of a command like:
7999    % find . -name .gitignore -exec cat {} \; | sort | uniq
8000    and only the toplevel .gitignore file was kept.
8001
8002commit 091c1624fd2f9d933329d6152e4ecd865aa7903a
8003Author: Peter Hutterer <peter.hutterer@who-t.net>
8004Date:   Tue Jan 13 12:05:54 2009 +1000
8005
8006    Fix wrong implies symbol.
8007    
8008    Quote Simos Xenitellis:
8009    > I checked the gtk+ commit logs that go back to 2000, and I see that still it
8010    > was
8011    >
8012    >   { 0x08ce, 0x21d2 }, /*                     implies ⇒ RIGHTWARDS
8013    > DOUBLE ARROW */
8014    >
8015    > In XFree86, it appears there was an error when they converted the
8016    > original table to
8017    > http://cvsweb.xfree86.org/cvsweb/xc/lib/X11/imKStoUCS.c?rev=1.1&content-type=text/vnd.viewcvs-markup
8018    > and the problem still shows up there (November 2000).
8019    
8020    http://lists.freedesktop.org/archives/xorg/2008-October/039743.html
8021    
8022    Reported by Erik Streb del Toro.
8023
8024commit e32521f19e0b07649b7e3a03d56a2bd556b138fb
8025Author: James Cloos <cloos@jhcloos.com>
8026Date:   Sun Dec 7 04:13:34 2008 -0500
8027
8028    [i18n] s/U00DC/Udiaeresis/g
8029    
8030    The xkeyboard-config keyboards generate the symbol Udiaeresis, not
8031    U00DC.  Make sure the relevant Compose sequences expect the symbol
8032    which the keyboards actually send.
8033
8034commit b7502abfe22f8dc009b21cda1172af221d8f9f32
8035Author: James Cloos <cloos@jhcloos.com>
8036Date:   Sun Dec 7 04:09:46 2008 -0500
8037
8038    Revert "For nls/*.pre, allow people to comment lines by starting them with '##'."
8039    
8040    As of commit c9d20e3 the initial double-hashes are replaced with proper C comments.
8041    
8042    This reverts commit a225a0be48770beb689d5ac5da97073634f7deab.
8043
8044commit c9d20e3f697c9cfae5511412023362c1db7449b1
8045Author: James Cloos <cloos@jhcloos.com>
8046Date:   Sun Dec 7 04:08:23 2008 -0500
8047
8048    Use C comments rather than initial doubled hashes to exclude lines from .pre files
8049
8050commit c34ce54d9eac2d8052dc5f205a2ab09866ef5d25
8051Author: vehemens <vehemens@verizon.net>
8052Date:   Sun Dec 7 01:18:26 2008 -0500
8053
8054    [i18n] Distribute new headers which were added for gb18030 support.
8055    
8056    big5hkscs.h and gbk.h, added in 67e34d7a, need to be in SOURCES to
8057    make it into the tar.
8058    
8059    Completes 67e34d7a82ccd31f1208c0c43a6d58c3c05bf51.
8060    
8061    Signed-off-by: James Cloos <cloos@jhcloos.com>
8062
8063commit 418819558d2c60e58b4e3022ce0fadf2143488ac
8064Author: Stefan Dirsch <sndirsch@suse.de>
8065Date:   Sat Nov 22 22:01:07 2008 +0100
8066
8067    Fixed strange font mixups, when fontsets are still used (#2676, Novell #74299).
8068
8069commit 67e34d7a82ccd31f1208c0c43a6d58c3c05bf51a
8070Author: Stefan Dirsch <sndirsch@suse.de>
8071Date:   Sat Nov 22 19:40:54 2008 +0100
8072
8073    Added remaining xlib patch required for gb18030 support (#1573).
8074
8075commit 55782a0a1fe1560f1a9c0ed78bc7f2575c15abcf
8076Author: Stefan Dirsch <sndirsch@suse.de>
8077Date:   Sat Nov 22 17:53:06 2008 +0100
8078
8079    Added remaining hunk of Egbert's patch to prevent XIM deadlocks (#1182).
8080
8081commit c859446c500c883a67f7a86cab1a44844e24dade
8082Author: Ken Thomases <ken@codeweavers.com>
8083Date:   Fri Nov 21 13:58:10 2008 -0500
8084
8085    [i18n] Provide translation from XK_partialderivative (8ef) to Unicode (U2202)
8086    
8087    Signed-off-by: James Cloos <cloos@jhcloos.com>
8088
8089commit 5e68e94d852c730ef9264fc0d8ca61a2ffe98b53
8090Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
8091Date:   Mon Nov 17 20:47:26 2008 -0800
8092
8093    Force local transport when using the launchd socket.
8094    
8095    Fixes a regression due to
8096    bf53987eaf0fbd7f7627783fc39e7ee99e8361ba
8097
8098commit 7aca689ce14d314b5c8c72c8df76f53f76ab467c
8099Author: Peter Hutterer <peter.hutterer@redhat.com>
8100Date:   Fri Nov 14 10:32:50 2008 +1000
8101
8102    Add XF86Suspend, XF86Hibernate to KeysymDB.
8103
8104commit d16b11f25f8265e651def8d80bcd430c0448e664
8105Author: James Cloos <cloos@jhcloos.com>
8106Date:   Tue Nov 11 19:43:39 2008 -0500
8107
8108    [nls] Annotate the Bépo compose sequences
8109    
8110    Add comments with the UCS names.
8111    Add utf-8 strings for each result.
8112    Format for easy reading.
8113
8114commit 730298464240be6f65b32416b3f9b20062c61825
8115Author: James Cloos <cloos@jhcloos.com>
8116Date:   Tue Nov 11 16:41:34 2008 -0500
8117
8118    [nls]  Add some UTF-8 Compose sequences
8119    
8120    As requested for the Bépo keyboard layout (http://clavier-dvorak.org/wiki/).
8121    
8122    Cf. bugs:
8123    
8124      https://bugs.freedesktop.org/show_bug.cgi?id=17821
8125      https://bugs.freedesktop.org/show_bug.cgi?id=17822
8126
8127commit ad6008a0c92733826983eb93f063d3d6276007d8
8128Author: Colin Harrison <colin.harrison@virgin.net>
8129Date:   Thu Nov 6 17:48:21 2008 -0500
8130
8131    Fix copy/paste typo in imLcPrs
8132    
8133    Signed-off-by: James Cloos <cloos@jhcloos.com>
8134
8135commit 0f0168ad18f8a280fc5a689eb02cfaa62d022ea6
8136Author: Adam Jackson <ajax@redhat.com>
8137Date:   Thu Nov 6 14:54:13 2008 -0500
8138
8139    Fix leak in _XimXGetReadData
8140    
8141    Spotted by Denis Dzyubenko
8142
8143commit ae23c25b9349ab1d7ff81f3075c000cf35fc442b
8144Author: Julien Cristau <jcristau@debian.org>
8145Date:   Wed Nov 5 22:09:37 2008 +0100
8146
8147    Bump to 1.1.99.2
8148
8149commit d31e644c65c52828ea3e7abd94a8cf9aee12265c
8150Author: Julien Cristau <jcristau@debian.org>
8151Date:   Wed Nov 5 21:33:13 2008 +0100
8152
8153    Fix distcheck
8154
8155commit e6a7b70cdb2ae8b713012839a0a0bbb93817b8ef
8156Author: Jamey Sharp <jamey@minilop.net>
8157Date:   Wed Oct 29 14:00:33 2008 -0700
8158
8159    Support multiple independent internal sync handlers
8160    
8161    Xlib has several independent tasks that need to be performed with the
8162    display unlocked. It does this by replacing the existing sync handler with
8163    one of a variety of internal sync handlers. However, if multiple internal
8164    sync handlers need to run, then the last one registering wins and
8165    previously registered internal sync handlers are never invoked. This
8166    manifested as a bug with DRI applications on Xlib/XCB as that requires
8167    both an XID handler after every XID allocation, and the periodic sequence
8168    number handler. The XID handler would win, and the sequence number handler
8169    would never be invoked.
8170    
8171    Fix this by unifying the internal sync handler mechanism into a single
8172    function that calls all of the known internal sync handlers. They all need
8173    to deal with being called when not strictly necessary now.
8174    
8175    Signed-off-by: Keith Packard <keithp@keithp.com>
8176    Signed-off-by: Jamey Sharp <jamey@minilop.net>
8177    Signed-off-by: Josh Triplett <josh@freedesktop.org>
8178
8179commit 2dbaaab9c4e3894b33dcae850551dee5473431d5
8180Author: Keith Packard <keithp@keithp.com>
8181Date:   Sat Oct 11 21:44:21 2008 -0700
8182
8183    Ensure that _XReadEvents always leaves an event in the queue on return
8184    
8185    XNextEvent assumes that the event queue will be non-empty on return from
8186    _XReadEvents, but with multiple event readers running, the previous change
8187    could leave the queue empty on return from process_responses. Re-invoke
8188    process_responses until the queue is non-empty.
8189    
8190    Signed-off-by: Keith Packard <keithp@keithp.com>
8191
8192commit bedfe68259037c5564fe52758c92b9c97729640a
8193Author: Keith Packard <keithp@keithp.com>
8194Date:   Sat Oct 11 21:10:23 2008 -0700
8195
8196    Permit only one Xlib thread to block waiting for events
8197    
8198    As Xlib queues events internally, we must prevent multiple Xlib threads from
8199    entering XCB to wait for an event in case the queued event is to be
8200    delivered to the thread which didn't manage to read it. In other words, let
8201    only one Xlib thread into xcb_wait_for_event at a time.
8202    
8203    Jamey Sharp looked over my shoulder while making this fix and, while hating
8204    my whitespace conventions, appears happy enough with the actual code.
8205    
8206    Signed-off-by: Keith Packard <keithp@keithp.com>
8207
8208commit cc19618d2eb3ed92a0b574aee26a7da8b4aed5d2
8209Author: Jamey Sharp <jamey@minilop.net>
8210Date:   Sun Mar 23 16:33:50 2008 -0700
8211
8212    Fix XAllocID race: hold the user display lock until we have a new XID.
8213    
8214    Xlib built --without-xcb is also vulnerable to this race, and a similar
8215    fix might work there too.
8216    
8217    Also, use an XID that's truly invalid while waiting for the next XID to be
8218    requested.
8219
8220commit 54e5c0941b0ded1628d559a9f0a3451ea96c299b
8221Author: Josh Triplett <josh@freedesktop.org>
8222Date:   Sat Mar 15 17:22:23 2008 -0700
8223
8224    Use XCB's new socket handoff mechanism rather than the old XCB Xlib lock.
8225    
8226    Previously, Xlib/XCB used XCB's Xlib lock to prevent XCB from sending
8227    requests between calls to Xlib's LockDisplay and UnlockDisplay macros.
8228    Xlib/XCB then sent all of its requests using XCB's xcb_send_request, and
8229    had to flush its requests when unlocking the display.
8230    
8231    XCB 1.2 adds a new socket handoff mechanism, xcb_take_socket.  Replace
8232    much of the existing Xlib/XCB implementation with the use of
8233    xcb_take_socket to take ownership of the write side of the X connection
8234    socket, and a return_socket callback which writes any outstanding requests
8235    with xcb_writev.  This approach allows Xlib/XCB to use the same buffering
8236    as traditional Xlib did.  In particular, programs which use Xlib/XCB and
8237    never make XCB calls will never need to hand the socket back to XCB, and
8238    vice versa.
8239    
8240    This allows us to discard large quantities of synchronization code from
8241    Xlib/XCB, together with the synchronization bugs present in that code.
8242    Several test cases which previously failed now work perfectly, including
8243    multi-threaded ico.  In addition, the infamous locking correctness
8244    assertions, triggered when double-locking or when unlocking without a
8245    previous lock, no longer exist, because Xlib/XCB no longer has any reason
8246    to care more about application locking than traditional Xlib does.
8247    
8248    Furthermore, the handoff approach provides great improvements to
8249    performance.  Results from x11perf's XNoOp test, which represented the
8250    worst case for the lock-based Xlib/XCB:
8251    
8252    Traditional Xlib:       average 19100000/sec
8253    Lock-based Xlib/XCB:    average  3350000/sec
8254    Handoff-based Xlib/XCB: average 17400000/sec
8255    
8256    Thus, for no-ops, the handoff mechanism provides more than a 4x speedup to
8257    Xlib/XCB, bringing Xlib/XCB within 9% of traditional Xlib no-op
8258    performance.  Of course, real-world workloads do not use no-op, so your
8259    mileage may vary.  In particular, since no-ops represent the worst case,
8260    we expect real workloads to more closely match the performance of
8261    traditional Xlib.
8262    
8263    While removing synchronization code, we changed _XReply to not drop any
8264    locks when calling xcb_wait_for_reply; previously, we had to carefully
8265    avoid a deadlock between the Display lock and the XCB Xlib lock. Holding
8266    the locks reduces implementation complexity and should not impact
8267    applications.
8268    
8269    Commit by Jamey Sharp and Josh Triplett.
8270    XCB's handoff mechanism inspired by Keith Packard.
8271
8272commit 5a19ac473f7a8046b0421fbd5d53da160c22ed75
8273Author: Chris Ball <cjb@laptop.org>
8274Date:   Mon Nov 3 22:57:29 2008 -0500
8275
8276    Remove configure check for xcb-xlib.
8277    
8278    xcb-xlib has been intentionally removed from libxcb; stop checking for
8279    it at configure-time.
8280
8281commit 34b35dda0bb7f3cf0ad9ab95ad7953d35d24f71b
8282Author: Josh Triplett <josh@freedesktop.org>
8283Date:   Wed Oct 29 14:37:44 2008 -0700
8284
8285    .gitignore: Add dolt files
8286
8287commit 1290cccf2d90083eba852f5f413f7e3dff48ccd2
8288Author: Peter Hutterer <peter.hutterer@redhat.com>
8289Date:   Tue Oct 28 11:56:55 2008 +1030
8290
8291    man: fix formatting error in XkbGetIndicatorState man page.
8292
8293commit b1022fa6d7e97640049e93ffa108083fc8d71b05
8294Author: James Cloos <cloos@jhcloos.com>
8295Date:   Sat Oct 25 09:13:08 2008 -0400
8296
8297    Increase size of working arrays in the makekeys utility program.
8298    
8299    Makekeys is used to create an optimal hash of the keysyms defined
8300    in x11proto’s keysymdef.h.
8301    
8302    The recent addition of new keysyms there has triggered a bug in
8303    makekeys where it tries to use a zero on the rhs of the % (mod)
8304    operator (resulting in a divide by zero error) whenever it fails
8305    to find a solution within its constraints.
8306    
8307    Increasing the size of the arrays allows it to find a solution for
8308    the current set of keysyms.
8309    
8310    Makekeys is only run durring the build process, so this has no impact
8311    on users of libX11, only on the amount of VM needed to build it.
8312    
8313    It still needs a more complete fix, but this allows compiles to
8314    progress until that is completed.
8315
8316commit 3e9afd501e40d76040635bd9a3045bcaf5a03b60
8317Author: James Cloos <cloos@jhcloos.com>
8318Date:   Sat Oct 11 01:03:14 2008 -0400
8319
8320    Dolt-ify
8321    
8322    Add dolt to acinclude.m4 and call it it configure.ac to speed compiles.
8323
8324commit 39c0b266cac8cbc15bf501d7869186862f01d823
8325Author: Peter Hutterer <peter.hutterer@redhat.com>
8326Date:   Wed Oct 15 14:30:20 2008 +1030
8327
8328    Add more keysyms for PS3 BD remotes, Ericsson Phones #16519
8329    
8330    X.Org Bug 16519 <https://bugs.freedesktop.org/show_bug.cgi?id=16519>
8331
8332commit d23aad31338e7d869d878d5aa1b6b91d20287005
8333Author: Peter Hutterer <peter.hutterer@redhat.com>
8334Date:   Mon Oct 13 09:41:59 2008 +1030
8335
8336    Add XF86Battery, XF86Bluetooth, XF86WLAN, XF86UWB to keysymdb.
8337
8338commit 214ea6f5fd6aeaa7303ea4a69f9aedabf219ec4c
8339Author: Peter Hutterer <peter.hutterer@who-t.net>
8340Date:   Thu Jul 24 15:44:26 2008 +0930
8341
8342    xkb: fix out-by-1 error in _XkbWriteKeyExplicit.
8343    
8344    Thanks to Michael Meeks, Novell Bug 369263.
8345    https://bugzilla.novell.com/show_bug.cgi?id=369263
8346
8347commit e7ece39afc8e0adc3b6b1e70b337b98376754462
8348Author: Alan Coopersmith <alan.coopersmith@sun.com>
8349Date:   Tue Oct 7 15:41:38 2008 -0700
8350
8351    Sun bug #6739431: double free in _X11TransConnectDisplay()
8352    
8353    Double free() introduced in bf53987eaf0fbd7f7627783fc39e7ee99e8361ba
8354    After copying original_hostname to phostname, set original_hostname
8355    to NULL, so we don't free the same pointer twice when we free both
8356    original_hostname and phostname.
8357    
8358    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6739431>
8359
8360commit 0877bc916afbd1ff8f1833edc930b765ea783576
8361Author: Daniel Stone <daniel@fooishbar.org>
8362Date:   Tue Sep 23 19:02:02 2008 +0300
8363
8364    configure.ac: Fix CC_FOR_BUILD logic error
8365    
8366    Turns out we were accidentally smashing it so that you couldn't set it
8367    externally at all.  Oops.
8368
8369commit 58bf3aa746908f01c37be7045699e43a4e270944
8370Author: John Tapsell <johnflux@gmail.com>
8371Date:   Tue Sep 23 17:30:13 2008 +0300
8372
8373    Build: Use native compiler for makekeys
8374    
8375    makekeys needs to be run during the build process, as opposed to on the
8376    target, so build it with either of gcc or cc to fix cross-compiling.
8377    This can be overridden by setting $CC_FOR_BUILD.
8378
8379commit 340422a5c7a413faef18666cada27cee14615250
8380Author: Adam Jackson <ajax@redhat.com>
8381Date:   Wed Sep 17 12:54:34 2008 -0400
8382
8383    Fix the previous patch for the BadFont case.
8384
8385commit 2335eafe4b53c27f6f9ee1bab3e1f5842f896428
8386Author: Matthias Clasen <mclasen@redhat.com>
8387Date:   Wed Sep 17 10:43:52 2008 -0400
8388
8389    Bug #17616: Fix an XCB leak when the client has a non-fatal error handler.
8390
8391commit db0b85db29699be6bf7e78dede655d59ba926dfc
8392Author: Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
8393Date:   Sun Sep 14 19:15:26 2008 -0400
8394
8395    Fix problem with <dead_acute> <c> in pt_BR.UTF-8
8396    
8397    The <dead_acute> <C> and <dead_acute> <c> lines in the pt_BR UTF-8
8398    Compose file show "Ç" and "ç" (c with cedilla accent) (akin to the
8399    ISO 8859 pt_BR Compose file) as the string but specify the keysym
8400    and comment for Ć and ć (c with acute accent).
8401    
8402    This commit normalizes those two lines to match the specified string.
8403    
8404    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=4671
8405    
8406    Signed-off-by: James Cloos <cloos@jhcloos.com>
8407
8408commit b065c011baa69b69e3ea77c30d5e153c0d103e2d
8409Author: Michael Verret <michael.verret@gmail.com>
8410Date:   Mon Sep 8 16:33:35 2008 -0400
8411
8412    Fix documentation typo
8413    
8414    Signed-off-by: James Cloos <cloos@jhcloos.com>
8415
8416commit 4213ea95185377bdd1b51e82933f331fc0f52e5b
8417Author: James Cloos <cloos@jhcloos.com>
8418Date:   Sat Sep 6 04:19:19 2008 -0400
8419
8420    Remove extraneous <angle brackets> from the Ethiopic Compose file.
8421    
8422    The am_ET.UTF-8 Compose file submitted in:
8423    
8424    https://bugs.freedesktop.org/show_bug.cgi?id=11307
8425    
8426    for the OLCP project used incorrect syntax.  (It has angle brackets around the
8427    Uxxxx symbols on the right hand side rather than only on the left hand side).
8428    
8429    This bug is noted in OLPC’s ticket:
8430    
8431    http://dev.laptop.org/ticket/7474
8432    http://dev.laptop.org/attachment/ticket/7474/olpc_7474_dead_vowels_libX11.patch
8433
8434commit 9df84b513dd2b6e65e6d528cfac6d4cc3ea46918
8435Author: James Cloos <cloos@jhcloos.com>
8436Date:   Mon Sep 1 17:49:33 2008 -0400
8437
8438    Complete the set of vulgar fractions
8439    
8440    Unicode 1.1 added thirds, fifths, sixths and eights;
8441    we might as well catch up.
8442    
8443    (Unicode and ISO 10646 have 1/7 (U2150), 1/9 (U2151), 1/10 (U2152)
8444    and 0/3 (U2189) in their pipelines, but those four can be added
8445    here after they are published.)
8446
8447commit a788792e9de95f8db0639557859722a35087481d
8448Author: James Cloos <cloos@jhcloos.com>
8449Date:   Wed Aug 20 15:28:07 2008 -0400
8450
8451    nls (en_US) Re-remove long compositions that override shorter
8452    
8453    As reported in <https://bugs.freedesktop.org/show_bug.cgi?id=17228>:
8454    
8455      Commit a6f4bbf7
8456        nls (en_US): remove long compositions that override shorter [...]
8457        removed some longer compose sequences because there are shorter
8458        ones which take preference over the longer. For example the
8459        sequences:
8460    
8461          <Multi_key> <apostrophe> <comma> <c>   : U1E09 # ḉ
8462          <Multi_key> <apostrophe> <comma> <C>   : U1E08 # Ḉ
8463    
8464        were removed becase there already was:
8465    
8466          <Multi_key> <apostrophe> <comma>       : U201A # ‚
8467    
8468      Then commit 4ba09125
8469        Work on making the en_US and pt_BR UTF-8 Compose as similar as
8470        possible added exactly the same key sequences again. Obviusly
8471        they won't work.
8472
8473commit 55248e5c84c3fd8c349a3bb4cb15a1ec86989d74
8474Author: James Cloos <cloos@jhcloos.com>
8475Date:   Thu Jul 17 21:01:42 2008 -0400
8476
8477    Add more <Multi_key> <cedilla> Compose tuples
8478    
8479    The last commit missed the el_GR UTF-8 Compose.pre as well as
8480    the various ISO 8859 locales which have compose sequences
8481    generating ‘WITH CEDILLA’ characters.
8482    
8483    (Interestingly, some of the 8859 locales already supported
8484    <Multi_key> <cedilla> for some CEDILLA characters, but not
8485    for Ç or ç.)
8486    
8487    This is further work on bug 10397.
8488
8489commit 4ba091255bb953d53078ba5619d6751052c739f7
8490Author: James Cloos <cloos@jhcloos.com>
8491Date:   Thu Jul 17 17:16:50 2008 -0400
8492
8493    Work on making the en_US and pt_BR UTF-8 Compose as similar as possible.
8494    
8495    The eventual goal here is to have a single primary UTF-8 Compose
8496    file which the locale-specific UTF-8 Compose.pre files can #include.
8497
8498commit 254522d3c24e0590732fc03cdd61ff4564819d94
8499Author: James Cloos <cloos@jhcloos.com>
8500Date:   Thu Jul 17 17:13:36 2008 -0400
8501
8502    Add <Multi_key> <cedilla> Compose tuples
8503    
8504    The en_US and pt_BR UTF-8 Compose tables had support for using <comma>
8505    with <Multi_key> to enter CEDILLA characters.  Bug 10397 requests
8506    support for using <cedilla> instead of <comma> in said sequences.
8507    
8508    This commit makes both styles work.
8509
8510commit 7dc907f6032e1d5cbe4da0e414bdf2c569c04b44
8511Author: James Cloos <cloos@jhcloos.com>
8512Date:   Sat Jun 28 15:25:23 2008 -0400
8513
8514    Fix commit 21e464ec682ab23ba20ddf6bd72c6db214cfbe01
8515    
8516    The new block was added twice to the en_US.UTF-8 Compose.pre;
8517    delete the duplicate.
8518
8519commit 596e081b7457dcd1c4ad555ac140e6999239bc0d
8520Author: Peter Hutterer <peter@cs.unisa.edu.au>
8521Date:   Sat Jun 28 20:14:05 2008 +0930
8522
8523    Fix unbalanced parenthesis in XKBlib.h # 16551
8524    
8525    X.Org Bug 16551 <http://bugs.freedesktop.org/show_bug.cgi?id=16551>
8526
8527commit f6af6dd2f76c12b56ec166bb771457b9f08fe246
8528Author: Adam Jackson <ajax@redhat.com>
8529Date:   Tue Jun 24 13:16:53 2008 -0400
8530
8531    Bug #14898: Don't abuse the sprintf() implementation.
8532    
8533    The thing you're printing into should not itself appear in the list of
8534    things to print from, that's bad juju.  Just use strcat().
8535
8536commit 21e464ec682ab23ba20ddf6bd72c6db214cfbe01
8537Author: Khaled Hosny <khaledhosny@eglug.org>
8538Date:   Thu Jun 19 18:26:11 2008 -0400
8539
8540    NLS: Add Arabic Lam-Alef ligature compose sequences (bug #16426)
8541    
8542    Add some Arabic digraphs to utf-8 locales with a Compose.pre
8543    
8544    Signed-off-by: James Cloos <cloos@jhcloos.com>
8545
8546commit bf53987eaf0fbd7f7627783fc39e7ee99e8361ba
8547Author: Alan Coopersmith <alan.coopersmith@sun.com>
8548Date:   Wed Jun 18 20:00:25 2008 -0700
8549
8550    Rework code to choose local connection types and fallback to others
8551    
8552    Adds --with-local-transport-order configure flag if you don't like the
8553    default ordering (which is platform dependent)
8554    
8555    Includes fixes for these Sun/Solaris bug ids:
8556    6678250 X Commands returning incorrect display value unix:0.0 not <system>:0.0
8557    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6678250>
8558    6716481 libX11 should prefer Unix domain sockets over named pipes on Solaris
8559    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6716481>
8560
8561commit cf49e537014c3cb5aaee07e57400933e0bb72b6b
8562Author: Alan Coopersmith <alan.coopersmith@sun.com>
8563Date:   Tue Jun 17 14:41:17 2008 -0700
8564
8565    Strip whitespace from end of lines in source files
8566
8567commit f76fd81dfbbd5cfae75c87ce0511e88e08529cf3
8568Author: Jeff Smith <whydoubt@yahoo.com>
8569Date:   Sun Jun 15 23:52:20 2008 -0500
8570
8571    Fix memory leak in XOpenDisplay
8572    
8573    Signed-off-by: Peter Hutterer <peter@cs.unisa.edu.au>
8574
8575commit fca0b0ba3f72b7284601d4690bba99fc80a92614
8576Author: Jens Herden <jens@khmeros.info>
8577Date:   Tue Jun 10 20:07:30 2008 +0300
8578
8579    NLS: Add Khmer compose sequences (bug #5706)
8580    
8581    Add some Khmer digraphs to all locales with a Compose.pre.
8582
8583commit e54cffb649b1622c17457e470cfab8cc56d38c97
8584Merge: 19802cc 721b574
8585Author: Daniel Stone <daniel@fooishbar.org>
8586Date:   Tue Jun 10 20:04:30 2008 +0300
8587
8588    Merge branch 'master' of ssh://git.freedesktop.org/git/xorg/lib/libX11
8589
8590commit 721b574d36f1884c3f1bf7bd933646e2ed6680b5
8591Author: Peter Hutterer <peter@cs.unisa.edu.au>
8592Date:   Thu May 29 10:57:21 2008 +0930
8593
8594    Bump to 1.1.99.1
8595
8596commit 631d32d13247d1cf52c0833d438c5b38b01b17a4
8597Author: Peter Hutterer <peter@cs.unisa.edu.au>
8598Date:   Wed May 28 17:31:59 2008 +0930
8599
8600    Require xproto 7.0.13 and libxcb 1.1.90 (for GenericEvents)
8601
8602commit e9195db7257e418f83707233baeeb84b225caf4f
8603Merge: c34f76f a7f8556
8604Author: Peter Hutterer <peter@cs.unisa.edu.au>
8605Date:   Thu May 22 12:14:28 2008 +0930
8606
8607    Merge branch 'master' into xge
8608
8609commit 19802ccd3909145e3ba2f6c073271cb5f3701685
8610Author: Daniel Stone <daniel@fooishbar.org>
8611Date:   Mon May 19 19:22:31 2008 +0300
8612
8613    gitignore: Update with loads more bits from server
8614
8615commit a7f85567a3e850fba0c44571453d2852ab1a09be
8616Author: Adam Jackson <ajax@redhat.com>
8617Date:   Tue May 13 10:28:39 2008 -0400
8618
8619    Bug #15884: Remove useless sleep()'s from the connection code.
8620    
8621    For network transports, there's enough delay in the network layer
8622    already without adding more.  For local transports, just hurry up
8623    and fail if the server isn't there.
8624
8625commit c34f76f475bc632490122e67b5a82575d69d5569
8626Author: Peter Hutterer <peter@cs.unisa.edu.au>
8627Date:   Mon May 12 21:46:24 2008 +0930
8628
8629    Pull down extra bytes when reading a GenericEvent (non-xcb).
8630    
8631    I refuse to take any responsibily for this code. It works, I guess.
8632    But - all the flushing is done somewhere before that, so we might need to
8633    flush here. Under some circumstances anyway. Don't ask me, I'm an optical
8634    illusion.
8635    
8636    Build with xcb as transport layer highly recommended.
8637
8638commit c9b2ff1e6a607463993afa4a8d085857d97cc2f3
8639Merge: 17d7dcb 9129057
8640Author: Peter Hutterer <peter@cs.unisa.edu.au>
8641Date:   Mon May 12 17:58:37 2008 +0930
8642
8643    Merge branch 'master' into xge
8644
8645commit 9129057bdbff0ec9cd8bb780cf7f85f134a291eb
8646Author: Teemu Likonen <tlikonen@iki.fi>
8647Date:   Wed May 7 21:44:22 2008 +0300
8648
8649    Change <dead_belowdot> to <dead_belowring> for U+1E00 and U+U1E01
8650    
8651    Commit 6b6caeea830a977bdb54688cfb648d879821e752 added <dead_belowdot>
8652    <A> and <dead_belowdot> <a> compose sequences for letters U+1E00 and
8653    U+U1E01 (LATIN CAPITAL/SMALL LETTER A WITH RING BELOW). This caused
8654    duplicate compose sequences since these have already been defined. Also,
8655    using <dead_belowring> is more logical since the diacritic is indeed
8656    a "RING BELOW".
8657
8658commit 01a9cb58888d290cc3d319feec4ee4a0297a844c
8659Author: Daniel Stone <daniel@fooishbar.org>
8660Date:   Wed May 7 20:04:44 2008 +0300
8661
8662    NLS: Make UTF-8 the default for Russian
8663    
8664    No-one uses 8859-5 anymore, so make the default for Russian UTF-8; the
8665    only other possible answer would be KOI8-R.
8666    
8667    Signed-off-by: Sergey V. Udaltsov <sergey.udaltsov@gmail.com>
8668
8669commit 407b81bfbbabf6feb565d6da22f9ef9a69016ab8
8670Author: Ross Burton <ross@burtonini.com>
8671Date:   Tue Apr 29 13:38:10 2008 +0300
8672
8673    NLS: Add interrobang to UTF-8 compose tables (bug #15653)
8674    
8675    It is what it says on the box.
8676
8677commit 0b6682303e9c61fefc3818acfda616b1e3691abf
8678Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
8679Date:   Mon Apr 28 11:51:25 2008 +0300
8680
8681    IM: Respect XMODIFIERS for Thai locale (bug #15719)
8682    
8683    When looking at Thai input methods, make sure XMODIFIERS is checked
8684    before jumping straight into built-in Thai processing, so external XIM
8685    servers such as SCIM can be used with Thai.
8686
8687commit c13aded1b2f830ba5004abb0ec5518f9ea16087e
8688Author: Colin Harrison <colin.harrison-at-virgin.net>
8689Date:   Sat Apr 26 18:56:05 2008 +0100
8690
8691    Fix missing error condition
8692
8693commit f5c5ffc175cb383c92ea0fa8c08cfb087c5f3083
8694Author: Colin Harrison <colin.harrison-at-virgin.net>
8695Date:   Mon Apr 21 17:24:33 2008 +0100
8696
8697    Xlib warning fixes
8698
8699commit 6b6caeea830a977bdb54688cfb648d879821e752
8700Author: James Cloos <cloos@jhcloos.com>
8701Date:   Fri Apr 18 02:50:55 2008 -0400
8702
8703    Add some dead_key sequences to en_US.UTF-8 Compose table
8704    
8705    Make use of the new dead key symbols added to x11proto’s
8706    commit 44e24a27bca023cf7b799f191fe6d52e12efbe5f (which
8707    was in responce to bug #15446).
8708
8709commit 8f9b039580deaf658e464b7d6254064fcf183df6
8710Author: Alan Coopersmith <alan.coopersmith@sun.com>
8711Date:   Mon Apr 14 19:09:42 2008 -0700
8712
8713    Update ac_define_dir macro in acinclude.m4 to 2008-04-12 version
8714
8715commit 9f5e96eb91ab55dd441c3e94b75caf48c588778f
8716Author: Alan Coopersmith <alan.coopersmith@sun.com>
8717Date:   Mon Apr 14 18:21:14 2008 -0700
8718
8719    Fix mismatched brace indenting
8720
8721commit a19f9c65ee9e5e5d783feaa84998c36439b0288b
8722Author: Bart Massey <bart@cs.pdx.edu>
8723Date:   Fri Apr 4 18:58:45 2008 -0700
8724
8725    added error check in Xcms color file parser; closes bug #15305
8726
8727commit 12e8d0d01dd72ce98e7683ddb1bde181b7ed246f
8728Author: Christian Weisgerber <naddy@mips.inka.de>
8729Date:   Tue Mar 18 07:30:05 2008 +0100
8730
8731    ConnDis: properly cast 'addr' before accessing it as a byte array.
8732    
8733    If you use XDM-AUTHORIZATION-1 authorization keys for remote X11
8734    clients over IPv6, the clients are liable to segfaults.
8735
8736commit 64325f38bab082a8e0e9ce779a8e582de5c8588e
8737Author: Josh Triplett <josh@freedesktop.org>
8738Date:   Sat Mar 15 12:29:33 2008 -0700
8739
8740    Fix fd.o bug 15023: make Xlib sync correctly given many void requests
8741    
8742    If given many requests without replies, Xlib may not sync until it flushes
8743    the output buffer.  Thus, if Xlib can fit enough requests in the buffer to
8744    pass by the number of requests it would normally sync after (65536 -
8745    BUFSIZE/sizeof(xReq)), it will sync too late.  The test case in bug 15023
8746    demonstrated this by issuing a request with a reply (ListExtensions) at
8747    just the right time to get confused with the GetInputFocus reply issued in
8748    response to the sync 65,536 requests later; the test case used an async
8749    handler to watch the replies, since otherwise it could not issue a request
8750    without waiting for the response.  When the test case failed, Xlib's sync
8751    handler would eat the ListExtensions reply, and the test case's async
8752    handler would see the GetInputFocus reply.
8753    
8754    Fix this by replacing SEQLIMIT with a function sync_hazard() that uses the
8755    buffer size to figure out when the sequence numbers could potentially wrap
8756    before the next flush.
8757    
8758    With this commit, the test case consistently passed, and the async reply
8759    handler always saw the ListExtensions reply.
8760    
8761    Commit by Jamey Sharp and Josh Triplett.
8762
8763commit a5395563bbee15fabe1e8fd7aa86f9f314d8d30e
8764Author: Colin Harrison <colin.harrison@virgin.net>
8765Date:   Sat Mar 15 13:39:13 2008 -0400
8766
8767    Fix typo
8768    
8769    Signed-off-by: James Cloos <cloos@jhcloos.com>
8770
8771commit f07585ca27a8487bc66dfe41486c823f0fdcea7d
8772Author: Daniel Stone <daniel@fooishbar.org>
8773Date:   Sat Mar 15 17:32:57 2008 +0200
8774
8775    configure.ac: Don't search for legacy X11 headers
8776    
8777    This can actually break cross-compiles, so don't do it anymore.
8778
8779commit bf69541238c7df6606340c0f389e5c47149b29c7
8780Author: Matthieu Herrb <matthieu.herrb@laas.fr>
8781Date:   Sun Mar 9 09:08:07 2008 +0100
8782
8783    nuke RCS Ids
8784
8785commit 5e98aed13e529638df744e45893c471d5f2014fb
8786Author: Adam Jackson <ajax@redhat.com>
8787Date:   Thu Mar 6 16:10:33 2008 -0500
8788
8789    libX11 1.1.4
8790
8791commit 8e085971dc661da9f80ff6b67747459c0fb15c08
8792Author: Alan Coopersmith <alan.coopersmith@sun.com>
8793Date:   Thu Feb 28 20:17:41 2008 -0800
8794
8795    Man page typo fixes
8796
8797commit 1a1a42a3ca1dfaf42f1094936b71c140fc030fcb
8798Author: Søren Sandmann Pedersen <sandmann@redhat.com>
8799Date:   Sun Feb 24 20:03:35 2008 -0500
8800
8801    XIM: Fix a hand when switching input context.
8802    
8803    Red Hat bug #201284.
8804
8805commit e02e4ccafcaf3eb8993152dfcbfbee0240ea2db2
8806Author: Adam Jackson <ajax@redhat.com>
8807Date:   Sun Feb 24 20:00:43 2008 -0500
8808
8809    Bug #14029: Don't LockDisplay() recursively.
8810    
8811    See also Red Hat bugzilla #326461.
8812
8813commit e5892467ae3308c8651be76e06db322dcbc08522
8814Author: Alan Coopersmith <alan.coopersmith@sun.com>
8815Date:   Fri Feb 15 17:27:53 2008 -0800
8816
8817    Add support for building lint library with --enable-lint-library
8818
8819commit e3eb83ec6a9bffa63cdffd94f077c12f85ad7240
8820Author: Alan Coopersmith <alan.coopersmith@sun.com>
8821Date:   Mon Feb 11 20:11:43 2008 -0800
8822
8823    Spell out number in XkbGetKeyVirtualModMap man page to avoid cpp errors from #
8824
8825commit d5ceed7a73a6b61758ddb6ff4e194955fbd5c185
8826Author: Alan Coopersmith <alan.coopersmith@sun.com>
8827Date:   Fri Feb 8 16:46:46 2008 -0800
8828
8829    Add WM_LOCALE_NAME to list of properties set in XSetWMProperties comment
8830
8831commit 416a812200f24d19149dcc497e5c51a0608120f6
8832Author: Alan Coopersmith <alan.coopersmith@sun.com>
8833Date:   Fri Feb 8 15:31:31 2008 -0800
8834
8835    XErrorDB updates for Render 0.9 & XFixes 4.0
8836
8837commit 16a76091cd632e5a3708e235ff864b58f3e4613e
8838Author: Kim Woelders <kim@woelders.dk>
8839Date:   Sat Dec 22 21:45:23 2007 +0100
8840
8841    Fix bs_BA entries in locale.dir.pre
8842    
8843    X.Org bug#13786 <http://bugs.freedesktop.org/show_bug.cgi?id=13786>
8844
8845commit 32115c563b87d2f37e3f9de70fbd0f4d9e424aea
8846Merge: 8f0bd3f e8d4cef
8847Author: James Cloos <cloos@jhcloos.com>
8848Date:   Fri Dec 14 22:43:47 2007 -0500
8849
8850    Merge branch 'master' of ssh://git.freedesktop.org/git/xorg/lib/libX11
8851
8852commit 8f0bd3f445cbdcc67650f6e8e3baf2ed89cb3695
8853Author: James Cloos <cloos@jhcloos.com>
8854Date:   Fri Dec 14 22:42:59 2007 -0500
8855
8856    add a comment to en_US.UTF-8/Compose
8857
8858commit 4d6c45e60ed13d3b0fea10413873d6a74f9d6a3b
8859Author: James Cloos <cloos@jhcloos.com>
8860Date:   Fri Dec 14 22:40:13 2007 -0500
8861
8862    Add <dead_stroke> compose sequences
8863    
8864    The added sequences match the existing <Multi_key> <slash> sequences.
8865    
8866    This is related to bug #12765¹.
8867    
8868    1] https://bugs.freedesktop.org/show_bug.cgi?id=12765
8869
8870commit e8d4cefa0837afa149a10e981528b368485a9e38
8871Author: Jeremy Huddleston <jeremy@yuffie.local>
8872Date:   Mon Dec 10 23:00:44 2007 -0800
8873
8874    Added launchd support.
8875
8876commit 17d7dcbfced4a9417b33507bd3fd9b7dd8268242
8877Merge: 5dfefd3 13ac804
8878Author: Peter Hutterer <peter@cs.unisa.edu.au>
8879Date:   Thu Dec 6 14:08:29 2007 +1030
8880
8881    Merge branch 'master' into xge
8882
8883commit 5dfefd3829d3ba7e41d5db0ad28e9dfee92fadd5
8884Merge: a68a1cd eff33ae
8885Author: Peter Hutterer <peter@cs.unisa.edu.au>
8886Date:   Thu Dec 6 13:57:09 2007 +1030
8887
8888    Merge branch 'master' into xge
8889    
8890    Conflicts:
8891    
8892    	src/xcb_io.c
8893
8894commit 13ac80469f6958cabac596834e203bd9cb6d4c94
8895Author: James Cloos <cloos@jhcloos.com>
8896Date:   Wed Dec 5 20:14:03 2007 -0500
8897
8898    Update the currency symbols block of en_US.UTF-8/Compose.pre
8899    Add XCOMM lines a la the existing NEW SHEQEL SIGN entry for
8900    the KIP, TUGRIK, DRACHMA. GERMAN PENNY, PESO, GUARANI,
8901    AUSTRAL, HRYVNIA and CEDI SIGNs.
8902
8903commit b0a8f2ec4ba698841683f8ce389f9d72e6bce53e
8904Author: Anton Zinoviev <anton@lml.bas.bg>
8905Date:   Wed Dec 5 19:56:03 2007 -0500
8906
8907    Additions to the Compose file for UTF-8
8908    From bug #5371¹
8909    
8910    Commit 5cf5bc76642bfece7cb5b76faf414bf445f14489 left out this change
8911    from those in attachment #4122².  The post³ on xorg resulted in only
8912    a positive reply⁴ from Daniel, so this block is now also commited.
8913    
8914    1] https://bugs.freedesktop.org/show_bug.cgi?id=5371
8915    2] https://bugs.freedesktop.org/attachment.cgi?id=4122
8916    3] http://article.gmane.org/gmane.comp.freedesktop.xorg/20628
8917    4] http://article.gmane.org/gmane.comp.freedesktop.xorg/23966
8918    
8919    Signed-off-by: James Cloos <cloos@jhcloos.com>
8920    Acked-by:  Daniel Stone <daniel@fooishbar.org>
8921
8922commit 438d02ebc08ee171cf1d3936f4c81050d428ab92
8923Author: James Cloos <cloos@jhcloos.com>
8924Date:   Tue Dec 4 17:25:39 2007 -0500
8925
8926    Fix the <U\x+> keysyms in the en_US.UTF-8 Compose file
8927    
8928    Based on src/KeysymStr.c and src/StrKeysym.c and comments in
8929    bugs #11930¹ and #5129² it is clear that <U100XXXXX> is invalid;
8930    those should be in the form U plus the hex of the UCS Code Point.
8931    
8932    The 0x01000000 is ORed in by the code.
8933    
8934    This update fixes all of those.
8935    
8936    1] https://bugs.freedesktop.org/show_bug.cgi?id=11930
8937    2] https://bugs.freedesktop.org/show_bug.cgi?id=5129
8938
8939commit 02e04059c89e175f51647e3b031344f743286b34
8940Merge: 1254c57 b57129e
8941Author: James Cloos <cloos@jhcloos.com>
8942Date:   Tue Dec 4 06:55:04 2007 -0500
8943
8944    Merge branch 'master' of ssh://git.freedesktop.org/git/xorg/lib/libX11
8945
8946commit 1254c57dd3a8d6ea87041b2f63024f99094f290f
8947Author: James Cloos <cloos@jhcloos.com>
8948Date:   Tue Dec 4 06:53:55 2007 -0500
8949
8950    Use the new dead_psili and dead_dasia keysyms added to proto/x11proto 7.0.11
8951    Inspired by bug 11930¹:
8952    
8953    Commit 40ed4eef92e31fcf7ea0a436e1a00cdf49484c1b to x11proto added dead_psili
8954    and dead_dasia keysyms.  Make use of them in the en_US.UTF-8 and el_GR.UTF-8
8955    Compose files.
8956    
8957    This was done with a pair of perl scripts based on the one quoted in the
8958    log for commit c76d30253f1483ac8200ad5c032a818907e65030.
8959    
8960    1] https://bugs.freedesktop.org/show_bug.cgi?id=11930
8961
8962commit b57129ef324c73ee91c2a796b800c4b45f4d4855
8963Author: Jeremy Huddleston <jeremy@yuffie.local>
8964Date:   Mon Dec 3 20:04:19 2007 -0800
8965
8966    Use __APPLE__ instead of __DARWIN__
8967
8968commit b9c032e1d5ed08510863dfb91b8bda588e6c8c9e
8969Author: Jeremy Huddleston <jeremy@yuffie.local>
8970Date:   Wed Nov 28 16:43:49 2007 -0800
8971
8972    Define __DARWIN__ when host_os == darwin* as needed in SetLocale.c
8973
8974commit 4b91ed099554626f1ec17d5bdf7bd77ce1a70037
8975Author: Alan Coopersmith <alan.coopersmith@sun.com>
8976Date:   Wed Nov 21 16:50:04 2007 -0800
8977
8978    X.Org Bug #4312: incorrect comment asterisk in XAnyEvent.3x man page
8979    
8980    X.Org Bugzilla #4312 <http://bugs.freedesktop.org/show_bug.cgi?id=4312>
8981    
8982    Protect /* sequences from cpp pre-processor removal without transforming
8983    to Unicode mathematical asterisk character
8984
8985commit 2af660c2fcd15c86c66459bfc074c190ea1462e6
8986Author: Jamey Sharp <jamey@minilop.net>
8987Date:   Mon Oct 29 10:46:20 2007 -0700
8988
8989    Two threads can request sequence sync and XID fetch simultaneously.
8990    
8991    So don't assert that they can't.
8992    
8993    This makes the Xlib/XCB implementation of _XAllocID more closely
8994    resemble the traditional Xlib version.
8995
8996commit 6e5485e0a5e3ab738becad12193e760c5fee83a4
8997Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
8998Date:   Sun Oct 28 04:44:00 2007 -0800
8999
9000    X.Org Bug #12983: Typos in ./man/XChangeKeyboardControl.man
9001    
9002    <http://bugs.freedesktop.org/show_bug.cgi?id=12983>
9003
9004commit 24527c92fd1f433ea135e85ec876a94a529fe500
9005Author: Yann Droneaud <ydroneaud@mandriva.com>
9006Date:   Wed Oct 24 19:26:07 2007 +0300
9007
9008    XIM: Properly initialise client event
9009    
9010    Make sure all ClientMessage fields are initialised to 0 before we send it.
9011
9012commit e41477f37b0d9b74a056d22dbf0073a94eecb9d6
9013Author: Daniel Stone <daniel@fooishbar.org>
9014Date:   Wed Oct 24 19:22:22 2007 +0300
9015
9016    Colours: Fix --disable-xcms
9017    
9018    Disable large tracts of colour management code when passing
9019    --disable-xcms.
9020
9021commit 11ea09745efa8de7dc82fe30ebd2393f08390957
9022Author: Eric Anholt <eric@anholt.net>
9023Date:   Fri Aug 31 17:30:33 2007 -0700
9024
9025    Bug #2081: Note the range limitation of XSetScreenSaver arguments.
9026
9027commit 31540f1438ec63faf37044f2fd654b335ddf80f0
9028Author: Kristian Høgsberg <krh@redhat.com>
9029Date:   Wed Aug 29 19:50:57 2007 -0400
9030
9031    Add GLX 1.4 requests and errors.
9032
9033commit 7c996f78914c77fe17e9f4feede980d895d9df51
9034Author: Eric Anholt <eric@anholt.net>
9035Date:   Tue Aug 28 15:15:11 2007 -0700
9036
9037    Add XF86 keyboard/monitor brightness keysyms to the keysymbdb.
9038
9039commit fa4effe82759f864a22a2dc6c920fa72ddb175a8
9040Author: Eric S. Raymond <esr@thyrsus.com>
9041Date:   Sun Jan 14 10:48:00 2007 -0800
9042
9043    Bug #9658: Bad markup on XIfEvent.3x
9044    
9045    X.Org Bugzilla #9658 <https://bugs.freedesktop.org/show_bug.cgi?id=9658>
9046
9047commit 74cba78daa738ef4d92096107d95c1a585933666
9048Author: Eric S. Raymond <esr@thyrsus.com>
9049Date:   Sun Jan 14 10:43:00 2007 -0800
9050
9051    Bug #9655: Bad markup in XrmUniqueQuark.3x
9052    
9053    X.Org Bugzilla #9655 <https://bugs.freedesktop.org/show_bug.cgi?id=9655>
9054
9055commit 4341d1a34b2a2e460b58131b6fd81935f3355bbc
9056Author: Eric S. Raymond <esr@thyrsus.com>
9057Date:   Sun Jan 14 10:43:00 2007 -0800
9058
9059    Bug #9654: Bad markup in XrmGetFileDatabase.3x
9060    
9061    X.Org Bugzilla #9654 <https://bugs.freedesktop.org/show_bug.cgi?id=9654>
9062
9063commit 2db713252090cae08f0200fecad4fc25fb64c8b1
9064Author: Eric S. Raymond <esr@thyrsus.com>
9065Date:   Sun Jan 14 10:40:00 2007 -0800
9066
9067    Bug #9653: Bad markup in XQueryColor.3x
9068    
9069    X.Org Bugzilla #9653 <https://bugs.freedesktop.org/show_bug.cgi?id=9653>
9070
9071commit 9d3ceea4b902e0471824c1e07ad64342b9a1114e
9072Author: Eric S. Raymond <esr@thyrsus.com>
9073Date:   Sun Jan 14 10:40:00 2007 -0800
9074
9075    Bug #9652: Bad markup in XDrawArc.3x
9076    
9077    X.Org Bugzilla #9652 <https://bugs.freedesktop.org/show_bug.cgi?id=9652>
9078
9079commit 2e7e0748d353d7f53bbd65ec6bf0df8758528ddc
9080Author: Eric S. Raymond <esr@thyrsus.com>
9081Date:   Sun Jan 14 10:39:00 2007 -0800
9082
9083    Bug #9651: Bad markup in XcmsColor.3x
9084    
9085    X.Org Bugzilla #9651 <https://bugs.freedesktop.org/show_bug.cgi?id=9651>
9086
9087commit c316aaf0aab06951db9dc5c9c1148bfea835d885
9088Author: Eric S. Raymond <esr@thyrsus.com>
9089Date:   Sun Jan 14 10:38:00 2007 -0800
9090
9091    Bug #9650: Bad markup in XLoadFont.3x manual page
9092    
9093    X.Org Bugzilla #9650 <https://bugs.freedesktop.org/show_bug.cgi?id=9650>
9094
9095commit ca5d9a625ea0965853fa9e74a448b8c29c78ec95
9096Author: Eric S. Raymond <esr@thyrsus.com>
9097Date:   Tue Jan 2 10:18:00 2007 -0800
9098
9099    Bug 9523: Markup problems in XQueryExtension.3x
9100    
9101    X.Org Bugzilla #9523 <https://bugs.freedesktop.org/show_bug.cgi?id=9523>
9102
9103commit fe713c616e29ba19c179b43c18eca1035079ce18
9104Author: Ian Romanick <idr@us.ibm.com>
9105Date:   Tue Aug 21 14:56:33 2007 -0700
9106
9107    Make sure nls/am_ET.UTF-8/Makefile is created by configure.
9108
9109commit e3430616f26b68e1439143cbe10732f3fc329d20
9110Author: Eric S. Raymond <esr@thyrsus.com>
9111Date:   Tue Jan 2 08:40:00 2007 -0800
9112
9113    Bug #9516: Markup error in XAllocWMHints.3x
9114    
9115    X.Org Bugzilla #9516 <https://bugs.freedesktop.org/show_bug.cgi?id=9516>
9116
9117commit d8fe979fc929833e8c754aed32641786d5a0622b
9118Merge: 21ca953 4ec1723
9119Author: James Cloos <cloos@jhcloos.com>
9120Date:   Mon Aug 20 15:34:50 2007 -0400
9121
9122    Merge branch 'master' of ssh://git.freedesktop.org/git/xorg/lib/libX11
9123
9124commit 21ca953337fb221b85345bf35ce1a98a0dcb2bf2
9125Author: James Cloos <cloos@jhcloos.com>
9126Date:   Mon Aug 20 15:34:03 2007 -0400
9127
9128    Fix typo
9129    The code <U1000000D> was used where <U10000DC> was obviously intended.
9130    
9131    It is possible that <Udiaeresis> should be used instead, if that will
9132    not break anyone’s setup.
9133
9134commit 4ec1723fff729440cd3349c1f95d87d2a6ba89cf
9135Author: James Cloos <cloos@jhcloos.com>
9136Date:   Mon Aug 20 15:25:48 2007 -0400
9137
9138    Add compose file for Ethiopic to match new keyboard in xkeyboard-config
9139    From bug report:
9140    
9141      https://bugs.freedesktop.org/show_bug.cgi?id=11307
9142
9143commit eff33ae525337ce2026be135a26464c7b1237113
9144Author: James Cloos <cloos@jhcloos.com>
9145Date:   Sat Aug 18 17:58:23 2007 -0400
9146
9147    Patch for Catalan locales
9148    From bugzilla bug 10943¹:
9149    
9150      There are several Catalan locale codes which presently can
9151      be used in X11 systems; especially after they were accepted
9152      in belocs-locale-data².
9153    
9154      In the following patches, I³ add ca_AD, ca_FR and ca_IT Catalan
9155      locale codes.  For instance, without this, using ca_AD (actually
9156      a quite used locale⁴) some applications (eg. Emacs or Skype)
9157      cannot display Catalan diacritic marks as you type them.
9158    
9159    1] https://bugs.freedesktop.org/show_bug.cgi?id=10943
9160    2] http://lists.debian.org/debian-devel-changes/2005/07/msg01429.html
9161    3] Toni Hermoso Pulido <toniher@softcatala.org>
9162    4] https://launchpad.net/~ubuntu.cat/+members
9163
9164commit 1f980cb7d022f53d0aee9e793b08203fb888e86e
9165Author: James Cloos <cloos@jhcloos.com>
9166Date:   Sat Aug 18 17:47:04 2007 -0400
9167
9168    Add additional Euro signs to compose
9169    Inspired by bug 7419¹ make all of:
9170    
9171        C=, =C, c=, =c, E=, =E, e=, E=
9172    
9173    after <Multi_key> generate € U+20AC EURO SIGN.
9174    
9175    1] https://bugs.freedesktop.org/show_bug.cgi?id=7419
9176
9177commit 4b0a14521449dfce8b4347bd17243efd1d3eae2d
9178Author: James Cloos <cloos@jhcloos.com>
9179Date:   Sat Aug 18 17:29:08 2007 -0400
9180
9181    Compose fix for Latin-1 (from Debian)
9182    The description from bugzilla bug 7417¹ is:
9183    
9184      We've been shipping this patch for some time in Debian now. The
9185      problem description from the patch header is reproduced below. You
9186      may want to note the licensing issue mentioned below, but we've been
9187      shipping it because the method by which this particular patch was
9188      generated and updated was also given below.
9189    
9190      This patch by Denis Barbier.
9191    
9192      The X11 protocol states that Unicode keysyms are in the range
9193      0x01000100 - 0x0110FFFF.  If the result of composing characters is a
9194      Unicode codepoint, X returns the corresponding Unicode keysym, which
9195      is its Unicode codepoint augmented by 0x01000000.  Latin-1
9196      characters must not appear with their Unicode codepoints in compose
9197      files, otherwise the returned composed character lies in the range
9198      0x01000000 - 0x010000FF which is not valid.
9199    
9200      There are two solutions: either fix composing routines to return
9201      0xZZ instead of 0x010000ZZ (where Z is an hexadecimal digit), or
9202      replace U00ZZ by their corresponding keysyms in compose files.  The
9203      latter is more logical and less error prone, so compose files will
9204      be patched.  Many applications accept these invalid Unicode keysyms,
9205      but few of them don't, most notably xemacs.  Only UTF-8 locales are
9206      affected.
9207    
9208      This has been fixed very recently in XFree86 CVS (but not xorg), but
9209      for licensing reasons, this patch is not grabbed.  Instead automatic
9210      conversion is performed by:
9211    
9212        sed -e '/XK_LATIN1/,/XK_LATIN1/!d' /usr/include/X11/keysymdef.h \
9213        | grep -v deprecated | grep 0x0 \
9214        | sed -e 's/0x0/U0/' -e 's/XK_//' \
9215        | awk '{ printf "s/\\b%s\\b/%s/ig\n", $3, $2; }' > sedfile
9216        for f in nls/*.UTF-8/Compose.pre
9217        do
9218          sed -f sedfile $f > $f.tmp && mv $f.tmp $f
9219        done
9220    
9221    [I edited the quoted script to update it for the current location of
9222    the installed keysymdef.h and the current layout of the libX11
9223    repo. -JimC]
9224    
9225    I applied the script, not the patch attached to the bugreport.
9226    
9227    1] https://bugs.freedesktop.org/show_bug.cgi?id=7417
9228
9229commit 5cf5bc76642bfece7cb5b76faf414bf445f14489
9230Author: James Cloos <cloos@jhcloos.com>
9231Date:   Sat Aug 18 17:13:41 2007 -0400
9232
9233    Add some compose sequences
9234    
9235    Add some compose sequences from the patch in bug 5371 (attachment 4122).
9236    
9237    Cf:
9238    
9239    https://bugs.freedesktop.org/show_bug.cgi?id=5371
9240    https://bugs.freedesktop.org/attachment.cgi?id=4122
9241
9242commit d4002e389dd69780dfc7c2f7bd3cb0c57f05d4f8
9243Author: James Cloos <cloos@jhcloos.com>
9244Date:   Sat Aug 18 13:57:31 2007 -0400
9245
9246    Fix SMP Compose targets
9247    The compose targets from the SMP (plane 1) were incorrect.
9248    
9249    At some point the 0x10000 bit had been lost.
9250
9251commit f1ed3da9a30a1f0264fdc7d1c6466f27fe2a3d7d
9252Author: Jeremy C. Reed <reed@glacier.reedmedia.net>
9253Date:   Thu Aug 16 17:37:22 2007 -0500
9254
9255    Fix a mutex reference-counting bug.
9256    
9257    I was told that some systems have a much more permissive libpthread.
9258    I was asked to commit this. This is from NetBSD's X source.
9259    (I didn't receive any feedback on xorg list for over two weeks
9260    about this.)
9261
9262commit ac00a44b4875de70382da5a40dd87f976e5b9327
9263Author: Tilman Sauerbeck <tilman@code-monkey.de>
9264Date:   Wed Aug 1 20:36:03 2007 +0200
9265
9266    Bumped version to 1.1.3.
9267
9268commit 76fae9cba1e9bdf7f0eb2ff2b90153d622136cf0
9269Author: Joerg Sonnenberger <joerg@netbsd.org>
9270Date:   Fri Jul 27 11:15:47 2007 -0700
9271
9272    Fail properly on errors in recursive make.
9273
9274commit 1a18319b3bde08dd9ef69c7cd735a76000cf3177
9275Author: Brice Goglin <Brice.Goglin@ens-lyon.org>
9276Date:   Thu Jul 26 23:31:15 2007 +0200
9277
9278    Add missing override parameter in XrmCombineDatabase prototype in the manpage
9279    
9280    Reported by Arnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
9281    in http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=393434
9282    and https://bugs.freedesktop.org/show_bug.cgi?id=9948
9283    
9284    Also add the type of the second argument in XrmMergeDatabases.
9285
9286commit 6f0764d4b56f64786b4980839ca262f10a51af6f
9287Author: Brice Goglin <Brice.Goglin@ens-lyon.org>
9288Date:   Thu Jul 26 22:53:52 2007 +0200
9289
9290    Clarify return value of XGetCommand in case of error in the manpage
9291    
9292    Reported by Sean Perry <shalehperry@attbi.com>
9293    in http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=133348
9294    and https://bugs.freedesktop.org/show_bug.cgi?id=9828
9295
9296commit b8bef57342632cc2d25580bb7daa3839bae04d89
9297Author: Alan Coopersmith <alan.coopersmith@sun.com>
9298Date:   Wed Jul 25 17:44:06 2007 -0700
9299
9300    Include comment/copyright/license for AC_DEFINE_DIR in acinclude.m4
9301
9302commit 590cde811a79375231c59ed8583e02b111ed567c
9303Author: Kean Johnston <kean@armory.com>
9304Date:   Thu Jul 19 16:44:20 2007 -0700
9305
9306    Reset hostname when falling back from :0 to hostname/localhost:0 as well
9307
9308commit d334665e619e9db657a2ea2764a8b852401d4a3f
9309Author: Kean Johnston <kean@armory.com>
9310Date:   Tue Jul 17 16:34:30 2007 -0700
9311
9312    LOCALCONN fallback changes DisplayString() output, breaks KDE
9313    
9314    See <http://lists.freedesktop.org/archives/xorg/2007-July/026443.html>
9315
9316commit 8e76bcf3cafda85058ce5f35f1f81929f4772f72
9317Author: Olivier Blin <blino@mandriva.org>
9318Date:   Mon Jun 11 18:32:09 2007 +1000
9319
9320    fix XGetMotionEvents arguments order - Fixes bug 11222
9321
9322commit c2f88cdf5cd9c94b77e5bfdac572b5ac06ab4aa8
9323Author: Jamey Sharp <jamey@minilop.net>
9324Date:   Sun Jun 10 16:19:59 2007 -0700
9325
9326    Fix locking in _XimGetWindowEventmask.
9327    
9328    Now that XFilterEvent drops the Display lock before invoking callback
9329    functions, _XimGetWindowEventmask is called without the lock held. So
9330    when it called _XGetWindowAttributes, a variant of XGetWindowAttributes
9331    that does not lock the Display, Xlib/XCB would assert:
9332    
9333    xcb_xlib.c:50: xcb_xlib_unlock: Assertion `c->xlib.lock' failed.
9334    
9335    Should fix Gentoo #156367, Ubuntu #87947, Debian #427296. And others?
9336
9337commit 65f0ab5d46d80d55fc04d4eb14fa05f130eb8b9c
9338Author: Jamey Sharp <jamey@minilop.net>
9339Date:   Sun Jun 3 21:41:47 2007 -0700
9340
9341    Move security fixes to the top of NEWS, and fix spacing.
9342    
9343    Commit by Josh Triplett and Jamey Sharp.
9344
9345commit a549a258b8fcb1ba9d0c1b01b72967e385f67cab
9346Author: Jamey Sharp <jamey@minilop.net>
9347Date:   Sun Jun 3 21:29:40 2007 -0700
9348
9349    Add NEWS item for bugfix in commit e2c1d788d1fe7bd2d34756493951552441e59b8c.
9350    
9351    Commit by Josh Triplett and Jamey Sharp
9352
9353commit 5123b77a3d32d3ad479462f319762c328278aed9
9354Author: Jamey Sharp <jamey@minilop.net>
9355Date:   Sun Jun 3 21:24:54 2007 -0700
9356
9357    Xlib/XCB: Inline and simplify handle_event, since only process_responses calls it now.
9358    
9359    Commit by Josh Triplett and Jamey Sharp.
9360
9361commit 582ca690ea4f3ffd2b94826c4db97229bd3c7238
9362Author: Jamey Sharp <jamey@minilop.net>
9363Date:   Sun Jun 3 20:59:12 2007 -0700
9364
9365    Xlib/XCB: Fix _XReadEvents to always enqueue a new event, even if an error occurs
9366    
9367    Commit c337f9de7cfd89f983f83956b7457a274dd412f3 broke the invariant that
9368    _XReadEvents always enqueues at least one event even if an error occurred,
9369    because the one call to xcb_wait_for_event would then return an error, not an
9370    event, and nothing else ensured that process_responses would obtain an event.
9371    Fix this by reverting most of c337f9de7cfd89f983f83956b7457a274dd412f3 and
9372    f417570735aac865eb6b576d1ea76b5bfcd8573b and implementing the correct fix.  In
9373    process_responses, wait_for_first_event now serves as a flag, cleared when
9374    actually handling an event.
9375    
9376    Commit by Josh Triplett and Jamey Sharp.
9377
9378commit e2c1d788d1fe7bd2d34756493951552441e59b8c
9379Author: Jamey Sharp <jamey@minilop.net>
9380Date:   Sun Jun 3 17:33:23 2007 -0700
9381
9382    Xlib/XCB: Only remove pending_requests when there are provably no more responses.
9383
9384commit 7a6dbd4b07ca0a49c30ca7a1d2437eafb2e15eab
9385Author: Josh Triplett <josh@freedesktop.org>
9386Date:   Sun Jun 3 15:39:39 2007 -0700
9387
9388    Bump version number to 1.1.2, and add NEWS entry for 1.1.2
9389    
9390    Signed-off-by: Josh Triplett <josh@freedesktop.org>
9391
9392commit 416f38f2e67ee1979b3d2feac6f06b3670238804
9393Author: Josh Triplett <josh@freedesktop.org>
9394Date:   Sun Jun 3 12:13:44 2007 -0700
9395
9396    Revert "Revert "include: don't distribute XlibConf.h""
9397    
9398    This reverts commit 79fa3d8070d95b960ba486f2439225872471dadd.
9399    
9400    Re-revert the XlibConf.h change, which prevented distribution, not
9401    installation.
9402
9403commit 79fa3d8070d95b960ba486f2439225872471dadd
9404Author: Josh Triplett <josh@freedesktop.org>
9405Date:   Sat Jun 2 22:05:16 2007 -0700
9406
9407    Revert "include: don't distribute XlibConf.h"
9408    
9409    This reverts commit c9e28e05ae01ce8a29bea09df759b6271865b44c.
9410    
9411    The installed XlibInt.h includes XlibConf.h , so libX11 should ship
9412    XlibConf.h.  (Commit c9e28e05ae01ce8a29bea09df759b6271865b44c didn't actually
9413    prevent automake from shipping XlibConf.h, because it used
9414    nodist_x11include_HEADERS rather than nodist_HEADERS.)
9415
9416commit f417570735aac865eb6b576d1ea76b5bfcd8573b
9417Author: Jamey Sharp <jamey@minilop.net>
9418Date:   Sat Jun 2 17:59:15 2007 -0700
9419
9420    Xlib/XCB: inline wait_or_poll_for_event, which now had only one caller.
9421    
9422    Commit by Josh Triplett and Jamey Sharp.
9423
9424commit c337f9de7cfd89f983f83956b7457a274dd412f3
9425Author: Jamey Sharp <jamey@minilop.net>
9426Date:   Sat Jun 2 17:46:41 2007 -0700
9427
9428    Xlib/XCB: Ensure _XReadEvents reads at least one new event and blocks for exactly one event.
9429    
9430    Commit by Jamey Sharp and Josh Triplett.
9431
9432commit 7f66c897f04806b75e574b55b48921b48045e3f9
9433Author: Jamey Sharp <jamey@minilop.net>
9434Date:   Sat Jun 2 16:43:39 2007 -0700
9435
9436    Update _XReply's copy of _XCBUnlockDisplay's guts.
9437    
9438    We introduced this bug in 6b81cbbedfb521ce046b77ee3cc54e884a1dc0c5.
9439    
9440    Also add a comment in _XCBUnlockDisplay to discourage this problem from
9441    respawning.
9442    
9443    Commit by Josh Triplett and Jamey Sharp.
9444
9445commit 740ead23512f8d2eaafaa69e514f1ebafad475b9
9446Author: Jamey Sharp <jamey@minilop.net>
9447Date:   Sat Jun 2 16:01:01 2007 -0700
9448
9449    Xlib/XCB: Avoid re-crashing after _XIOError.
9450    
9451    Commit by Josh Triplett and Jamey Sharp.
9452
9453commit 6b81cbbedfb521ce046b77ee3cc54e884a1dc0c5
9454Author: Jamey Sharp <jamey@minilop.net>
9455Date:   Sat Jun 2 12:30:30 2007 -0700
9456
9457    Hold XCB's Xlib lock even when only the user lock (XLockDisplay) is held.
9458    
9459    An Xlib client can query Display state, such as with NextRequest, while
9460    it holds only the Xlib user lock (between XLockDisplay and
9461    XUnlockDisplay), so XCB requests in other threads should be blocked when
9462    the Xlib user lock is held.
9463    
9464    We acquire the lock even when XInitThreads was not called, so that pure
9465    XCB code can use multiple threads even in an otherwise single-threaded
9466    Xlib application.
9467    
9468    Commit by Josh Triplett and Jamey Sharp.
9469
9470commit 95523387d619af5b400748898d722e080b5ce1a6
9471Author: Jamey Sharp <jamey@minilop.net>
9472Date:   Sat Jun 2 11:57:39 2007 -0700
9473
9474    Allow re-entrant Xlib calls from _XIOError.
9475    
9476    Some libraries try to clean up X resources from atexit handlers, _fini,
9477    or C++ destructors. To make these work, the Display lock should be
9478    downgraded to a user lock (as in XLockDisplay) before calling exit(3).
9479    This blocks Xlib calls from threads other than the one calling exit(3)
9480    while still allowing the exit handlers to call Xlib.
9481    
9482    This assumes that the thread calling exit will call any atexit handlers.
9483    If this does not hold, then an alternate solution would involve
9484    registering an atexit handler to take over the lock, which would only
9485    assume that the same thread calls all the atexit handlers.
9486    
9487    Commit by Josh Triplett and Jamey Sharp.
9488
9489commit 91b02b8064f4e0bcc56019f0722914850008a597
9490Author: Tilman Sauerbeck <tilman@code-monkey.de>
9491Date:   Thu May 17 19:07:34 2007 +0200
9492
9493    More constification.
9494
9495commit a4f3841940158351f9424c3f59b305cce877177d
9496Author: Tilman Sauerbeck <tilman@code-monkey.de>
9497Date:   Thu May 17 00:29:43 2007 +0200
9498
9499    Constified composite text charset table.
9500
9501commit 0581c0aa6039e6b2abb9f7b0a4f9904d8e01f00e
9502Author: Tilman Sauerbeck <tilman@code-monkey.de>
9503Date:   Wed May 16 23:19:22 2007 +0200
9504
9505    Have the compiler fill in hexTable so we don't have to do it at runtime.
9506
9507commit 0e8d9ca47dab0d069e305d5784d05f2ade04f0a8
9508Author: Tilman Sauerbeck <tilman@code-monkey.de>
9509Date:   Wed May 16 19:36:23 2007 +0200
9510
9511    More constification.
9512
9513commit 6d2bed8f04942b4de086a519ac693e729c9fdeea
9514Author: Tilman Sauerbeck <tilman@code-monkey.de>
9515Date:   Wed May 16 19:18:20 2007 +0200
9516
9517    Constify and clean up token table.
9518
9519commit 6c508eab5df5d517f7e4cbe6087308cd53a564b2
9520Author: Tilman Sauerbeck <tilman@code-monkey.de>
9521Date:   Wed May 16 18:24:42 2007 +0200
9522
9523    Constified more tables.
9524
9525commit e699c4231c205ef00d687b6412308d031b99806b
9526Author: Tilman Sauerbeck <tilman@code-monkey.de>
9527Date:   Wed May 16 18:01:23 2007 +0200
9528
9529    Constified error list.
9530
9531commit a68a1cd7cb990ba276fbc36a7591044d78b3d3c1
9532Author: Peter Hutterer <peter@cs.unisa.edu.au>
9533Date:   Tue May 15 16:54:01 2007 +0930
9534
9535    Add XGenericEvent definition and handling for long events.
9536
9537commit c76d30253f1483ac8200ad5c032a818907e65030
9538Author: Jan Willem Stumpel <jstumpel@planet.nl>
9539Date:   Fri May 4 12:00:49 2007 -0700
9540
9541    Update el_GR.UTF-8/Compose.pre to match changes in xkeyboard-config cvs
9542    
9543    Cf:
9544    
9545      https://bugs.freedesktop.org/show_bug.cgi?id=10851
9546      https://bugs.freedesktop.org/show_bug.cgi?id=10824
9547      http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=386385
9548    
9549    The greek keyboard definition was changed to replace dead_horn and
9550    dead_ogonek with U0313 COMBINING COMMA ABOVE (aka Psili) and U0314
9551    COMBINING REVERSED COMMA ABOVE (aka Dasia).
9552    
9553    This patch modifies the Greek Compose.pre to match.
9554    
9555    It is generated by the script Jan Willem Stumpel <jstumpel@planet.nl>
9556    posted to 386385@bugs.debian.org:
9557    
9558    #!/usr/bin/perl
9559    while (<>) {
9560      print $_;
9561      if (/dead_horn/) {
9562        s/dead_horn/U0313/;
9563        print $_;
9564      }
9565      elsif (/dead_ogonek/) {
9566        s/dead_ogonek/U0314/;
9567        print $_;
9568      }
9569    }
9570
9571commit a48386ce6b5f8fd2d9dc11a966c9bf5da59f3831
9572Author: Magnus Kessler <Magnus.Kessler@gmx.net>
9573Date:   Tue May 1 15:20:08 2007 +0200
9574
9575    Switched function definitions from K&R to ANSI style.
9576
9577commit 605d357074d556a05a3fba2e85cbea36a3204248
9578Author: Tilman Sauerbeck <tilman@code-monkey.de>
9579Date:   Tue May 1 14:47:03 2007 +0200
9580
9581    Tweaked configure output about the man pages suffix.
9582
9583commit 9824b40d2af4ca2376512c1be7743da0d5065900
9584Author: Alan Coopersmith <alan.coopersmith@sun.com>
9585Date:   Sat Apr 28 00:42:18 2007 -0700
9586
9587    Fix typo in nroff macro in XkbAddGeomOverlayKey.man
9588
9589commit f93849dcc68bd5042ea0884e5190dc7c35b31d68
9590Author: Alan Coopersmith <alan.coopersmith@sun.com>
9591Date:   Sat Apr 28 00:30:55 2007 -0700
9592
9593    Protect C comments and #defines in XKB man pages from being mangled by cpp
9594
9595commit f2f27d4763c7665e422fab10b96b4cf5ad6c0a6f
9596Author: Alan Coopersmith <alan.coopersmith@sun.com>
9597Date:   Sat Apr 28 00:14:50 2007 -0700
9598
9599    Add Makefile to process/install XKB man pages
9600
9601commit d9954c6f6f3a8c406b946acd0d034ff83c656156
9602Author: Dennis Arellano <Dennis.Arellano@Sun.COM>
9603Date:   Thu Aug 19 00:00:00 1999 -0700
9604
9605    Add man pages for XKB API's
9606    
9607    Man pages originally written for X11R6.4 integration to Solaris 7 11/99
9608    Sun bug id 4258344: Add new XKB API manpages for 6.4 upgrade
9609    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=4258344>
9610    
9611    (Volunteer needed to convert prototypes in man pages to ANSI C style...)
9612
9613commit f640a49b5e2ebf29f9d655df544c63bf826f619a
9614Author: Tilman Sauerbeck <tilman@code-monkey.de>
9615Date:   Fri Apr 20 18:39:59 2007 +0200
9616
9617    Markup tweak for XOpenIM.
9618
9619commit e972b0bb255af4f3258217852542faf5afa60b28
9620Author: Julien Cristau <jcristau@debian.org>
9621Date:   Fri Apr 20 18:35:09 2007 +0200
9622
9623    Bug #9695: Fixed a few argument types in the XOpenIM manpage.
9624
9625commit b4e2276f329fa42397cb8609cfcd34ebafd3d96b
9626Author: Julien Cristau <jcristau@debian.org>
9627Date:   Fri Apr 20 18:28:52 2007 +0200
9628
9629    Bug #9697: Fixed documentation of XVisualInfo struct.
9630    
9631    The "depth" member was said to be unsigned int, but it's signed.
9632
9633commit 4068f3dae01c630f825002673b1d3a047ad61863
9634Author: Julien Cristau <jcristau@debian.org>
9635Date:   Fri Apr 20 16:41:21 2007 +0200
9636
9637    Bug #9696: refer to XDefineCursor() instead of XDefineCusor().
9638
9639commit 603c2f88d4e57ce1a3c16e8b6246866e6edd8fa8
9640Author: Tilman Sauerbeck <tilman@code-monkey.de>
9641Date:   Sat Apr 7 14:42:55 2007 +0200
9642
9643    Use unistd.h to get getresuid() and friends.
9644    
9645    This works since we now have _GNU_SOURCE defined.
9646
9647commit 0300f295bbd3a0c7c46baac8e0a27aeaf53c9d9b
9648Author: Tilman Sauerbeck <tilman@code-monkey.de>
9649Date:   Sat Apr 7 14:27:12 2007 +0200
9650
9651    Bug #10562: Define _GNU_SOURCE on glibc systems.
9652
9653commit a225a0be48770beb689d5ac5da97073634f7deab
9654Author: Tilman Sauerbeck <tilman@code-monkey.de>
9655Date:   Fri Apr 6 12:46:25 2007 +0200
9656
9657    For nls/*.pre, allow people to comment lines by starting them with '##'.
9658    
9659    This fixes a bunch of cpp warnings from nls/en_US.UTF-8/Compose.pre.
9660    Fixing that file would have been a larger diff, and using ## may be
9661    nicer to use anyway.
9662
9663commit 1c75a9479011e5f1ad01c950628d0ef5a302d8b6
9664Author: Tilman Sauerbeck <tilman@code-monkey.de>
9665Date:   Fri Apr 6 11:59:31 2007 +0200
9666
9667    Bug #10475: Fixed lots of char*/const char* mixups.
9668    
9669    I didn't fix all of them, as that would require touching
9670    public headers.
9671
9672commit 680dd50193b5b3fcabdd3f1fcbd6a889d5a95c54
9673Author: Matthias Hopf <mhopf@suse.de>
9674Date:   Thu Apr 5 11:53:18 2007 +0200
9675
9676    Fix 64bit issues with reallocation.
9677
9678commit 4d38aeaca42d0bdfe34a833a142ee4d895de03bf
9679Author: Tilman Sauerbeck <tilman@code-monkey.de>
9680Date:   Wed Apr 4 18:41:18 2007 +0200
9681
9682    Fixed a few warnings.
9683
9684commit 7dc7ef398b6ad90ccd1680ed9cd1cfdd47312f5a
9685Author: Matthieu Herrb <matthieu@roadrock.(none)>
9686Date:   Tue Apr 3 15:39:52 2007 +0200
9687
9688    Multiple integer overflows in the XGetPixel() and XInitImage functions
9689    
9690    CVE-2007-1667
9691
9692commit 0284b144340a455a4b5b5011d81ac5a610372291
9693Author: David Baron <dbaron@dbaron.org>
9694Date:   Fri Mar 30 17:07:46 2007 +0200
9695
9696    Bug #7703: Fixed XSetSizeHints() et al wrt use of uninitialized data.
9697    
9698    Now only those fields of the respective hint struct are set that
9699    are actually valid in the input data.
9700    The changed functions are:
9701    XSetSizeHints(), XSetWMHints() and XSetWMSizeHints().
9702
9703commit 0994faa0c76c45b106442db461b8a30a3e1c9395
9704Author: Tilman Sauerbeck <tilman@code-monkey.de>
9705Date:   Thu Mar 29 17:31:25 2007 +0200
9706
9707    Fixed the change from the previous SendEvent commit.
9708    
9709    Testing a different patch than the one you commit is bad, right?
9710
9711commit 398d75528a84f4b8414eb0e363cf53b1b16f6fdf
9712Author: Tilman Sauerbeck <tilman@code-monkey.de>
9713Date:   Wed Mar 28 22:23:44 2007 +0200
9714
9715    Bug #10292: Fixed a memory leak related to XOpenDisplay() in the XCB code.
9716
9717commit ab0bcd07957cecc8e7c0e75d5160a625e91264fe
9718Author: David Baron <dbaron@dbaron.org>
9719Date:   Wed Mar 28 22:21:40 2007 +0200
9720
9721    Bug #7713: Initialize all of the event's fields before sending it.
9722
9723commit bc80f9fe3ccce40ee41246b97470c4f0519756ad
9724Author: Julien Cristau <jcristau@debian.org>
9725Date:   Sun Mar 18 13:14:48 2007 +0100
9726
9727    Bug #9279: Fixed a file descriptor leak.
9728
9729commit c9e28e05ae01ce8a29bea09df759b6271865b44c
9730Author: Daniel Stone <daniel@fooishbar.org>
9731Date:   Sat Dec 16 00:45:19 2006 +0200
9732
9733    include: don't distribute XlibConf.h
9734    
9735    Since XlibConf.h is built by configure, don't distribute it.
9736
9737commit dd1705ced2cac6b4b6b21e79272fcf9bed4bf376
9738Merge: 129bbb9 769b985
9739Author: Jeremy C. Reed <reed@glacier.reedmedia.net>
9740Date:   Thu Dec 14 14:23:20 2006 -0600
9741
9742    Merge branch 'master' of git+ssh://git.freedesktop.org/git/xorg/lib/libX11
9743
9744commit 129bbb9f9114a571556fa3a24f15ba58a5cdb2de
9745Author: Jeremy C. Reed <reed@glacier.reedmedia.net>
9746Date:   Thu Dec 14 14:21:19 2006 -0600
9747
9748    For NetBSD, define the XTHREADLIB and XTHREAD_CFLAGS.
9749
9750commit 769b9854f7eb1d6d20dd0b4a1c1215ad8e1b77b6
9751Author: Daniel Stone <daniel@fooishbar.org>
9752Date:   Wed Dec 6 18:53:00 2006 +0200
9753
9754    Makefile.am: make ChangeLog hook safer
9755    
9756    Make ChangeLog hook as safe as possible.
9757    (cherry picked from f5d6a3d24095c7ffed86705995d0874c885e7676 commit)
9758
9759commit 8a8185a649e93b90ffa820387ffdca831227f5a9
9760Author: Josh Triplett <josh@freedesktop.org>
9761Date:   Thu Nov 30 18:33:13 2006 -0800
9762
9763    Add autogen.sh to EXTRA_DIST.
9764
9765commit efe817f95ef8d05e863c83147e903140bc860de4
9766Author: Jamey Sharp <jamey@minilop.net>
9767Date:   Thu Nov 30 17:58:35 2006 -0800
9768
9769    Release libX11 1.1.1.
9770
9771commit f637a5b03164263a3af2e644cf655e52b015f1bb
9772Author: Ross Combs <rocombs@cs.nmsu.edu>
9773Date:   Sat Nov 25 14:45:17 2006 -0800
9774
9775    Debian bug #354315: Clarify return value in XGetWindowAttributes man page
9776    
9777    This man page does not discuss the actual return values of the
9778    function, but says they are of type "Status".  One might assume
9779    that this means you could compare it with the "Success" macro.
9780    One would be wrong.
9781    
9782    The X functions seem to have two three types representing status.
9783    If it is an "int" there are a number of error codes or "Success"
9784    which can be compared against.  If it is a bool, the result can be
9785    compared with "True" or "False".  If the return type is "Status" it
9786    appears that the return type is either 0 or 1.  Unfortunately the
9787    value for Success is zero, so it is important to distinguish
9788    between the first two types of return values and the third;
9789    otherwise the conditional will be inverted.
9790    
9791    XGetWindowAttributes() is one of the functions which returns zero
9792    for failure.  The man page should make this clear.
9793
9794commit c6a0b0f18ed1242eeb908f5cf767ab8381edd456
9795Author: Jamey Sharp <jamey@minilop.net>
9796Date:   Sat Nov 25 14:23:45 2006 -0800
9797
9798    Bug #9154: Always process an event for _XReadEvents, even if an error occurs
9799    
9800    Previously, process_responses (in the wait_for_first_event case called
9801    from _XReadEvents) considered any return from xcb_wait_for_event
9802    sufficient to think it had processed an event. If xcb_wait_for_event
9803    returned an error, and no more events occurred before process_responses
9804    called xcb_poll_for_event, process_responses would try to return with
9805    dpy->head NULL, and would fail an assertion for the _XReadEvents
9806    postcondition. Now, process_responses continues using xcb_wait_for_event
9807    until it gets an event.
9808
9809commit d56e78acce9b2aa1dd1bf172afedaa3bccd5e1c8
9810Author: Tilman Sauerbeck <tilman@code-monkey.de>
9811Date:   Sat Nov 25 05:29:31 2006 -0800
9812
9813    Bug #9153: Fix access to freed memory.
9814    
9815    The fix for bug #8622 introduced a smaller bug where _XReply would
9816    read memory shortly after freeing it. This patch caches the needed
9817    value in a stack-allocated variable before the heap-allocated memory
9818    is freed.
9819
9820commit 934ca763bbc0dd7ae460469bfc000ba101602bcc
9821Author: Josh Triplett <josh@freedesktop.org>
9822Date:   Fri Nov 24 19:57:58 2006 -0800
9823
9824    libx11 doesn't use inputproto in public headers; don't require it in x11.pc
9825    
9826    Based on a Debian patch.
9827
9828commit 4255997ef2d92740d51f6e63e9eabcfa089683f0
9829Author: Josh Triplett <josh@freedesktop.org>
9830Date:   Thu Nov 23 07:19:32 2006 -0800
9831
9832    Release libX11 1.1
9833
9834commit a1168e11ec9377307c51a7271faec3bf88a63a66
9835Author: Jamey Sharp <jamey@minilop.net>
9836Date:   Tue Nov 21 17:52:34 2006 -0800
9837
9838    Add note in man-page that XListFontsWithInfo is not thread-safe.
9839    
9840    _XReply drops the Display lock, so the value of dpy->request may change
9841    before _XReply is called again.
9842    
9843    I discovered this by inspection a year or two ago. I'm pretty confident
9844    in the claim, and nobody has come up with an argument for why it's safe
9845    despite appearances.
9846
9847commit 67abe024268c6b1fdee516e5d3a046ccffd7e80a
9848Author: Jamey Sharp <jamey@minilop.net>
9849Date:   Sat Nov 18 15:39:26 2006 -0800
9850
9851    Bug #8622: Fix response processing order for threaded apps
9852    
9853    Previously, process_responses (the common code for _XReply,
9854    _XReadEvents, and _XEventsQueued) took the current request sequence
9855    number as an argument, and did some highly complicated processing to
9856    attempt to process responses in order across threads.  This didn't
9857    actually work.
9858    
9859    Now, process_responses handles responses in order, by adding condition
9860    variables to the list of outstanding requests in
9861    dpy->xcb->pending_requests, and blocking on them when those requests
9862    should get processed to allow _XReply to process them; if actually
9863    called from _XReply, it returns when _XReply's request should get
9864    processed.  _XReply broadcasts on the condition variable after it has
9865    read its reply and re-acquired the display lock.
9866    
9867    Another great commit brought to you by Jamey Sharp, Josh Triplett, the
9868    Gobby collaborative text editor, conspy, and ridiculous amounts of SSH
9869    forwarding.
9870    
9871    Signed-off-by: Josh Triplett <josh@freedesktop.org>
9872    Signed-off-by: Jamey Sharp <jamey@minilop.net>
9873
9874commit 941f02ede63baa46f93ed8abccebe76fb29c0789
9875Author: Lars Knoll <lars@trolltech.com>
9876Date:   Wed Nov 8 12:17:41 2006 -0800
9877
9878    Don't hold the display lock around callbacks to the application.
9879    
9880    This fixes an XCB locking assertion failure, particularly with emacs.
9881
9882commit e494ecaac1ec8a22bd9a85f800fca74d02e9d358
9883Author: Diego 'Flameeyes' Pettenò <flameeyes@gentoo.org>
9884Date:   Tue Nov 7 09:32:00 2006 -0800
9885
9886    Add xcb-xlib dependency to x11.pc when built against XCB.
9887
9888commit 2302008a3793eb4df8ede777d54fe06505c47eaf
9889Author: Eric Anholt <eric@anholt.net>
9890Date:   Mon Nov 6 17:11:42 2006 -0800
9891
9892    XCB: Allocate the right amount of memory for dpy->lock_fns.
9893    
9894    Fixes a crash I was experiencing on startup of anything using gdk.
9895
9896commit 5f860655be88108b03ccd97470a0814819254bf0
9897Author: Jamey Sharp <jamey@minilop.net>
9898Date:   Thu Nov 2 17:55:31 2006 -0800
9899
9900    Release libX11 1.1 RC2 (1.0.99.2).
9901
9902commit a6f4bbf7b1d725b0f04bd660f57b861a76b19831
9903Author: Benno Schulenberg <bensberg@justemail.net>
9904Date:   Sun Oct 29 03:10:30 2006 +0300
9905
9906    nls (en_US): remove long compositions that override shorter (bug #2286)
9907    Remove long compositions that override (or get overriden by) later shorter
9908    compositions, e.g. a four-key compose sequence that gets overriden by a
9909    later three-key compose sequence.
9910
9911commit 0280bf11ef88673a9b5bba3a91a599260f1f0949
9912Author: Benno Schulenberg <bensberg@justemail.net>
9913Date:   Sun Oct 29 03:08:36 2006 +0300
9914
9915    nls: remove shadowed compose entries (bug #2286)
9916    Remove compose entries shadowed by others later on.
9917
9918commit d118f2b1ef10997194b281524177dea7396da7dd
9919Author: Benno Schulenberg <bensberg@justemail.net>
9920Date:   Sun Oct 29 03:07:15 2006 +0300
9921
9922    nls: remove duplicate compose entries (bug #2286)
9923    Remove a bunch of duplicate entries from various Compose files.
9924
9925commit 5e1cc2fe20e5904ca1e05a4cb7be13d450a593bb
9926Author: Caolan McNamara <caolanm@redhat.com>
9927Date:   Sun Oct 29 02:46:15 2006 +0300
9928
9929    XKB geometry: fix leaks in GetKeyboardByName (bug #8099)
9930    Don't leak the name and value of every property we parse, as well as the
9931    name of every colour.
9932
9933commit 686bb8b35acf6cecae80fe89b2b5853f5816ce19
9934Author: Matthias Hopf <mhopf@suse.de>
9935Date:   Wed Oct 18 14:25:04 2006 +0200
9936
9937    Fix double open of compose file.
9938    
9939    Issue found by Kees Cook <kees@canonical.com>.
9940
9941commit d3e65cb8cddf08913d83c9df2bb9b1517f2ad3a8
9942Author: Jamey Sharp <jamey@minilop.net>
9943Date:   Sat Oct 14 21:25:10 2006 -0700
9944
9945    XCB: check for and handle I/O errors in _XGetXCBBuffer.
9946
9947commit 256eba6b40c5f811a03b04abf5f85f728ee3ab5d
9948Author: Jamey Sharp <jamey@minilop.net>
9949Date:   Wed Oct 11 00:06:50 2006 -0700
9950
9951    XKB bugfix: SyncHandle must be called after UnlockDisplay, not before.
9952
9953commit 1eedf1bd033e496843cfde42ae4ae5a119298605
9954Author: Jamey Sharp <jamey@minilop.net>
9955Date:   Tue Oct 10 23:03:28 2006 -0700
9956
9957    Add correct Display locking to XKB functions.
9958    
9959    Some XKB functions didn't correctly call LockDisplay or UnlockDisplay.
9960    This patch fixes at least some instances of that problem.
9961    
9962    Thanks to Magnus Kessler <Magnus.Kessler@gmx.net> for finding these bugs
9963    and proposing a fix, which this patch is based on.
9964
9965commit e17c2cbe9fbaa1600d4b9463ec800a874b0d87cd
9966Author: David Nusinow <dnusinow@debian.org>
9967Date:   Tue Oct 10 22:11:05 2006 -0400
9968
9969    Dynamically generate internal manpage section using __libmanpagesuffix__ so that it actually matches the section if you don't use 3X11
9970
9971commit e53557da969b706dbc843f6fde3db31ffe382e0f
9972Author: Jamey Sharp <jamey@minilop.net>
9973Date:   Sat Oct 7 21:00:36 2006 -0700
9974
9975    Release libX11 1.1 RC1 (1.0.99.1).
9976
9977commit bf237409c5fce32c557d298f62f44d456c2b5bc8
9978Merge: ba47719 2d426d1
9979Author: Jamey Sharp <jamey@minilop.net>
9980Date:   Sat Oct 7 21:07:16 2006 -0700
9981
9982    As XCB support is about to be released in libX11, stable is now subsumed by master.
9983
9984commit ba477191c67ce93e61423cc1abe35275704cce50
9985Author: Jamey Sharp <jamey@minilop.net>
9986Date:   Sat Oct 7 03:48:13 2006 -0700
9987
9988    XCB: Don't rely on having the definition of struct xcb_setup_t available.
9989
9990commit 117b55cbd0b0ce51362df88363ed83d44a493ac7
9991Author: Jamey Sharp <jamey@minilop.net>
9992Date:   Fri Oct 6 16:27:31 2006 -0700
9993
9994    xcb_poll_for_event no longer takes an 'int *error' out-parameter.
9995
9996commit caaa8e8a55e837b3585c1dee7bef194fc4c79d16
9997Author: Josh Triplett <josh@freedesktop.org>
9998Date:   Fri Oct 6 16:26:11 2006 -0700
9999
10000    Actually ship Xxcbint.h
10001
10002commit 7b027e53b5e393082f4f515c8ba18077eb97163f
10003Author: Josh Triplett <josh@freedesktop.org>
10004Date:   Fri Oct 6 16:25:50 2006 -0700
10005
10006    Clean ChangeLog only in "make maintainer-clean", not "make clean"
10007    
10008    ChangeLog requires a git repo to generate; make clean and make distclean
10009    shouldn't get rid of it.
10010
10011commit cab22e02e78b3e5b8a73d1cd55cf6686426b47e0
10012Author: Josh Triplett <josh@freedesktop.org>
10013Date:   Fri Oct 6 16:24:58 2006 -0700
10014
10015    Add ChangeLog and "make dist"-generated files to .gitignore
10016
10017commit e4c7cfdee4a40e466c0c6b370cabd432e9e855a0
10018Author: Josh Triplett <josh@freedesktop.org>
10019Date:   Fri Oct 6 15:53:27 2006 -0700
10020
10021    Add manual pages for XGetXCBConnection and XSetEventQueueOwner
10022
10023commit 688224cea95e453f94c5a602dc6fce84bc93dfc0
10024Author: Josh Triplett <josh@freedesktop.org>
10025Date:   Fri Oct 6 13:41:16 2006 -0700
10026
10027    Remove unnecessary prototype for _XFreeDisplayStructure in xcb_disp.c
10028
10029commit ab728ca372288d0db1b486c265e34c1376f29104
10030Author: Josh Triplett <josh@freedesktop.org>
10031Date:   Fri Oct 6 12:36:39 2006 -0700
10032
10033    XCL is dead; long live Xlib/XCB
10034    
10035    Rename all instances of "XCL" to Xlib/XCB-derived names.
10036    
10037    The only user-visible change: rename the include file <X11/xcl.h> to
10038    <X11/Xlib-xcb.h>; programs will need to change their #include lines to match.
10039    
10040    Remove the XCL cast inlines from Xlib-xcb.h.
10041
10042commit 5b73093203039d307eb7ab3845c3ced207e9e26c
10043Author: Josh Triplett <josh@freedesktop.org>
10044Date:   Fri Oct 6 11:33:49 2006 -0700
10045
10046    Add XCB developers to AUTHORS
10047
10048commit 1cb71ff139276a0a58c60ea5f261f64b94706b9b
10049Author: Josh Triplett <josh@freedesktop.org>
10050Date:   Fri Oct 6 11:21:28 2006 -0700
10051
10052    Fix email addresses in README
10053
10054commit 12f038669278019594ca0ed53dadcf4e84092422
10055Author: Jamey Sharp <jamey@minilop.net>
10056Date:   Fri Oct 6 02:13:05 2006 -0700
10057
10058    XCB: Handle all responses in order of monotonically increasing sequence number.
10059
10060commit f392680273278b43079302206897f794e60f3c70
10061Author: Josh Triplett <josh@freedesktop.org>
10062Date:   Fri Oct 6 01:11:08 2006 -0700
10063
10064    Actually install x11-xcb.pc, and ship x11-xcb.pc.in
10065
10066commit f1fcad2e3fd17aaf1294f1d8e9f406fd5b32a863
10067Author: Jamey Sharp <jamey@minilop.net>
10068Date:   Thu Oct 5 18:32:29 2006 -0700
10069
10070    XCB: correctly handle failure to connect to X server.
10071
10072commit e754b3b078d556c7861da56aad47d244e9199e06
10073Author: Josh Triplett <josh@freedesktop.org>
10074Date:   Thu Oct 5 17:44:22 2006 -0700
10075
10076    Split public Xlib/XCB functions into libX11-xcb
10077    
10078    We can never change the libX11 soname, and we don't want to commit to never
10079    changing the public Xlib/XCB functions, so split them into a separate library
10080    libX11-xcb.  This also means that a program linked solely against libX11
10081    should work with either Xlib or Xlib/XCB, which will make life easier for
10082    package maintainers.
10083    
10084    Signed-off-by: Josh Triplett <josh@freedesktop.org>
10085    Acked-by: Jamey Sharp <jamey@minilop.net>
10086
10087commit ffd367f708b295abaedf3a23a1bfd4710d171d6f
10088Author: Jamey Sharp <jamey@minilop.net>
10089Date:   Wed Oct 4 17:16:46 2006 -0700
10090
10091    No longer #include Xmd from xcl.h: we do not need it.
10092
10093commit 3aff149d42ba8ed620091971b3766bdf96c62aaf
10094Author: Jamey Sharp <jamey@minilop.net>
10095Date:   Wed Oct 4 16:58:32 2006 -0700
10096
10097    XCB: Revert locking to simple wrapper around libX11's normal locks.
10098    
10099    No more recursive mutexes, no more banging XCB's I/O lock in-place, and
10100    reduces the differences between the previous stable release and an
10101    XCB-enabled one. Sadly, Xlib's pluggable thread functions work again
10102    too, now. I apologize to the world.
10103
10104commit 8ff122fb529bdb1c2b9a86b12d06b6da1b35d708
10105Author: Jamey Sharp <jamey@minilop.net>
10106Date:   Mon Sep 25 04:54:52 2006 -0700
10107
10108    Link explicitly against XCB's Xlib compatibility functions.
10109
10110commit bde3cd123d65a2f36ee0c417f5f231b7e01d0671
10111Author: Jamey Sharp <jamey@minilop.net>
10112Date:   Mon Sep 25 04:13:20 2006 -0700
10113
10114    libxcb now installs header files in <xcb>, not <X11/XCB>.
10115
10116commit 87d00207f5a1f25a45a153618739cd6481814f89
10117Author: Ian Osgood <iano@quirkster.com>
10118Date:   Sun Sep 24 23:39:01 2006 -0700
10119
10120    Track XCB's "Great Renaming".
10121
10122commit 85a5e98dff9b7752fae157fad9b8c9825cb0efab
10123Author: Jamey Sharp <jamey@minilop.net>
10124Date:   Tue Sep 12 23:02:42 2006 -0700
10125
10126    Quit using XCBGetQueuedRequestRead.
10127
10128commit a61936fc4e9bd93b108764bbacd5b8f786e51915
10129Author: Tollef Fog Heen <tfheen@err.no>
10130Date:   Wed Aug 30 00:05:54 2006 +0300
10131
10132    nls: use _XlcUtf8Loader for en_US (bug #7982)
10133    Use _XlcUtf8Loader instead of _XlcUnicodeLoade,r bringing it into line with
10134    every other locale.
10135
10136commit abcc7e1865cdfbd591f6520cfe4257f0b0b1c03e
10137Author: Alan Coopersmith <alan.coopersmith@sun.com>
10138Date:   Wed Aug 23 18:49:30 2006 -0700
10139
10140    When opening display, if LOCALCONN fails, fall back to UNIXCONN, then TCPCONN
10141    
10142    Port to X11R7 of Sun bug fix 4061225 by Alex Chen for X11R6 - when failing to
10143    connect on a named pipe, try a Unix socket first, to better support people who
10144    replace their X servers with ones that don't support named pipe transport.
10145    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=4061225>
10146
10147commit 1ddc44c1cada7e926bd4787406444ce7c36b61e1
10148Author: Mark Brown <mark.brown@sun.com>
10149Date:   Thu Jul 27 19:17:10 2006 -0700
10150
10151    Sun bug 1149809: Document event delivery when grab is terminated.
10152
10153commit 171107b03ac89d94f9006c7cda242aeefb9ecd16
10154Author: Dennis Arellano <Dennis.Arellano@Sun.COM>
10155Date:   Thu Jul 27 18:47:06 2006 -0700
10156
10157    Sun bug 4091271: XGetWindowProperty is missing a crucial prop_return description
10158    
10159    Document that 32-bit format properties are always returned in arrays of type
10160    long, even on systems where long is 64-bits.
10161    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=4091271>
10162
10163commit 8309efe6550877cd0bf22979904b3f6bd3e6cffa
10164Author: Alan Coopersmith <alan.coopersmith@sun.com>
10165Date:   Mon Jul 24 15:52:00 2006 -0700
10166
10167    Add support for "make lint" to check code with lint/sparse/etc.
10168
10169commit 931e02fbd1acd09aae2b0954c34342c86c72dff6
10170Author: Alan Coopersmith <alan.coopersmith@sun.com>
10171Date:   Mon Jul 24 15:50:52 2006 -0700
10172
10173    ANSIfy some static function definitions
10174
10175commit 20b7abcaac324d90454de63f32f4a2b398e69e63
10176Author: Alan Coopersmith <alan.coopersmith@sun.com>
10177Date:   Mon Jul 24 15:01:40 2006 -0700
10178
10179    Fix sparse warning: Using plain integer as NULL pointer
10180
10181commit d158ab29930513c4097f5b67e7bea08ed2bfd62c
10182Author: Alan Coopersmith <alan.coopersmith@sun.com>
10183Date:   Mon Jul 24 14:00:24 2006 -0700
10184
10185    Remove unused variable
10186
10187commit 30377000375bdb958042dcb1f38503c94ef21eaf
10188Author: Eric Anholt <anholt@FreeBSD.org>
10189Date:   Fri Jul 21 18:55:36 2006 -0400
10190
10191    Bug #7188: Fix the documentation of XUrgencyHint (not UrgencyHint).
10192
10193commit 4eba45879aea4e415ab550ee56b900d060099110
10194Author: Matthieu Herrb <matthieu.herrb@laas.fr>
10195Date:   Sun Jul 16 10:55:39 2006 +0200
10196
10197    set GIT_DIR=${srcdir}/.git for git-log
10198
10199commit 2d426d1f2608fedb77bd7d010dabece76b8d4a60
10200Author: Aaron Plattner <aplattner@nvidia.com>
10201Date:   Tue Jul 11 13:27:49 2006 -0700
10202
10203    Add a .PHONY to ensure the ChangeLog isn't stale.
10204    
10205    Setting the ChangeLog rule as phony forces it to be re-run even when the
10206    ChangeLog file already exists. Research indicates .PHONY is portable to BSD and
10207    Solaris make.
10208    (cherry picked from b8a98809ed81e1226775e6447ef219ffc01334b5 commit)
10209
10210commit b8a98809ed81e1226775e6447ef219ffc01334b5
10211Author: Aaron Plattner <aplattner@nvidia.com>
10212Date:   Tue Jul 11 13:27:49 2006 -0700
10213
10214    Add a .PHONY to ensure the ChangeLog isn't stale.
10215    
10216    Setting the ChangeLog rule as phony forces it to be re-run even when the
10217    ChangeLog file already exists. Research indicates .PHONY is portable to BSD and
10218    Solaris make.
10219
10220commit 8f2be66089b88e4ed6acb0211ea107f4bb910bd3
10221Author: Mayank Jain <majain@redhat.com>
10222Date:   Tue Jul 11 19:42:47 2006 +0100
10223
10224    add Indian language locales
10225    Add as, kn, ml, or, ur, and te locales.
10226
10227commit a92eb6785699bbc9c6c3813f6af3bb9431a3f6b0
10228Author: Matthias Hopf <mhopf@suse.de>
10229Date:   Tue Jul 4 12:16:30 2006 +0200
10230
10231    Fix for autoconf 2.60 issue.
10232    
10233    Updated AC_DEFINE_DIR.
10234    Reverted datarootdir change.
10235
10236commit 644f4828b15bce42b597eb123ba0bbc372c46c03
10237Author: Keith Packard <keithp@neko.keithp.com>
10238Date:   Sat Jul 1 21:31:23 2006 -0700
10239
10240    Work around recent autoconf (2.59?) changes in directory expansion.
10241    
10242    Recent autoconf versions have changed how directory names are managed in the
10243    configure.ac script; automatic 'eval' invocations now occur as a part of the
10244    AC_DEFINE_DIR macro which make it imperative that AC_DEFINE_DIR be executed
10245    before the variables are used in further macro definitions. Also, ${datadir}
10246    is apparantly an old name for ${datarootdir} as ${datadir} doesn't get
10247    expanded correctly by AC_DEFINE_DIR. This looks like an autoconf bug, but it
10248    is easy to work around by just using ${datarootdir} instead of ${datadir}.
10249
10250commit be70a31229aa106aff0a09d78c00812682cd3475
10251Author: Keith Packard <keithp@neko.keithp.com>
10252Date:   Sat Jul 1 01:56:05 2006 -0700
10253
10254    Xlib/XCB: handle 32-bit sequence wrap.
10255    
10256    Replace broken sequence compares with XCB_SEQUENCE_COMPARE (copied from
10257    XCB).
10258    Account for XCB sequence 0 handling.
10259
10260commit 99c711707ad08e1396e123b1c7df687c560a489a
10261Author: Donnie Berkholz <spyderous@gentoo.org>
10262Date:   Thu Jun 29 19:43:20 2006 -0700
10263
10264    Bump version to 1.0.3.
10265
10266commit cde3c0dd72af2b490e80cffca962e3487dd31be4
10267Author: Donnie Berkholz <spyderous@gentoo.org>
10268Date:   Thu Jun 29 19:39:36 2006 -0700
10269
10270    Bug #7349: Missed one of the setuid fixes.
10271    (cherry picked from e9614c963b532f46a7932c2305a4b177a996a222 commit)
10272
10273commit df3fef8983d96c59d481c4cdaf1f271d54a116d2
10274Author: Matthias Hopf <mhopf@suse.de>
10275Date:   Thu Jun 29 18:59:57 2006 +0200
10276
10277    Update to final Compose cache directory location.
10278    (cherry picked from abda4d223e9cce9ac6e7b5d82a5680d9a502e52a commit)
10279
10280commit 912ef198292d3053daa810f842510e5d62ded0f0
10281Author: Matthias Hopf <mhopf@suse.de>
10282Date:   Thu Jun 29 17:41:41 2006 +0200
10283
10284    Fix alignment of trees and wide chars in the cache.
10285    (cherry picked from 40a64c61f8bc33d497e1224e02c41dea2d424d97 commit)
10286
10287commit 2ece832118b3ee5d8ed19f1ee9b1c822b70ec6e9
10288Author: Matthias Hopf <mhopf@suse.de>
10289Date:   Wed Jun 28 19:17:03 2006 +0200
10290
10291    First (dummy) entry of compose caches was not initialized and thus contained varying garbage.
10292    (cherry picked from f442dcaa56f8ecb7443e8e51c88ed97e10dbdba3 commit)
10293
10294commit e9614c963b532f46a7932c2305a4b177a996a222
10295Author: Donnie Berkholz <spyderous@gentoo.org>
10296Date:   Thu Jun 29 19:39:36 2006 -0700
10297
10298    Bug #7349: Missed one of the setuid fixes.
10299
10300commit abda4d223e9cce9ac6e7b5d82a5680d9a502e52a
10301Author: Matthias Hopf <mhopf@suse.de>
10302Date:   Thu Jun 29 18:59:57 2006 +0200
10303
10304    Update to final Compose cache directory location.
10305
10306commit 40a64c61f8bc33d497e1224e02c41dea2d424d97
10307Author: Matthias Hopf <mhopf@suse.de>
10308Date:   Thu Jun 29 17:41:41 2006 +0200
10309
10310    Fix alignment of trees and wide chars in the cache.
10311
10312commit f442dcaa56f8ecb7443e8e51c88ed97e10dbdba3
10313Author: Matthias Hopf <mhopf@suse.de>
10314Date:   Wed Jun 28 19:17:03 2006 +0200
10315
10316    First (dummy) entry of compose caches was not initialized and thus contained varying garbage.
10317
10318commit bdbe464d774e01d317f67c63ebbda2fd0edbbdd1
10319Author: Donnie Berkholz <spyderous@gentoo.org>
10320Date:   Thu Jun 22 23:59:03 2006 -0700
10321
10322    Delete ChangeLog, and add a rule to autogenerate it for distribution. Also
10323    add 'foreign' to AM_INIT_AUTOMAKE to make autotools happy with not having a
10324    ChangeLog.
10325    (cherry picked from b0edfb8df16ab8c9959b83a4c966d55a59c4e295 commit)
10326
10327commit b0edfb8df16ab8c9959b83a4c966d55a59c4e295
10328Author: Donnie Berkholz <donnie@comet.(none)>
10329Date:   Thu Jun 22 23:47:38 2006 -0700
10330
10331    Delete ChangeLog, and add a rule to autogenerate it for distribution. Also
10332    add 'foreign' to AM_INIT_AUTOMAKE to make autotools happy with not having a
10333    ChangeLog.
10334
10335commit dd54981aa76e9dfdc4c3302d6105b4b229447c84
10336Author: Donnie Berkholz <donnie@comet.(none)>
10337Date:   Thu Jun 22 15:47:38 2006 -0700
10338
10339    Bump version to 1.0.2.
10340
10341commit c93539d974a67f596a5eb5b65042d26602546c72
10342Author: Matthieu Herrb <matthieu@deville.herrb.com>
10343Date:   Tue Jun 20 21:04:03 2006 +0200
10344
10345    Check setuid() return value.
10346    (cherry picked from 5169d0e08ff6acb350a6ea768623f5ff0b85b05f commit)
10347
10348commit 605533f814ab7892991578706a6458f61a89ca4d
10349Author: Derek Wang <derek.wang@sun.com>
10350Date:   Mon Jun 19 11:05:37 2006 -0700
10351
10352    Sun bug 6209243: XExtentsOfFontSet causes segfault when font set not loaded
10353    (cherry picked from eff50c94a07194297e705da53d9fbb3a40fb9ad4 commit)
10354
10355commit 5bbd0822c5a926de0ed293437fb9f2b75cf3c4f4
10356Author: Scott Revelt <scott.revelt@sun.com>
10357Date:   Fri Jun 16 19:11:13 2006 -0700
10358
10359    Sun bug 4022903: Xcms routines may fail if sscanf() is looking for separators
10360    based on locale that doesn't match those used in the Xcms.txt
10361    (cherry picked from 94f3213fc4bd6ec49bfb68e8b4a4fddea2bf3baa commit)
10362
10363commit 0b05cd4da6134df527fb010384a9fd569bd5d6a3
10364Author: Alan Coopersmith <alanc@alf.(none)>
10365Date:   Fri Jun 16 18:53:33 2006 -0700
10366
10367    Add *~ to ignore emacs droppings
10368    (cherry picked from c33d7b8282ac196b36229be26442296768c16f3e commit)
10369
10370commit 214658b76b56768f69c3959a11525aae7813f448
10371Author: Matthias Hopf <mhopf@suse.de>
10372Date:   Fri Jun 16 15:36:40 2006 +0200
10373
10374    Bug #3104: Compose table cache for faster X11 application starts.
10375    (cherry picked from 1f4c9893ade08bad30c9bd12a36bee57d30b001e commit)
10376
10377commit 13968a23aaea838ba4b69e42e8900f803499e091
10378Author: Matthias Hopf <mhopf@suse.de>
10379Date:   Tue Jun 13 20:23:46 2006 +0200
10380
10381    Bug #3104: Compose table cache for faster X11 application starts.
10382    (cherry picked from 4fe22647e6010a2886c2f3a7093adeaeb6678faa commit)
10383
10384commit e7f8bca08f5476d0ca262097639ac7d424bb4d10
10385Author: Lubos Lunak <llunak@suse.de>
10386Date:   Mon Jun 12 18:48:08 2006 +0200
10387
10388    Bug #3104: Compose table cache for faster X11 application starts.
10389    (cherry picked from 1d28a655629a11ea7fd1e5df4c7b77dd4b63e3be commit)
10390
10391commit f506aaf8ac9aae1ee8daaef6cde34ee85aecd641
10392Author: Matthias Hopf <mhopf@suse.de>
10393Date:   Fri Jun 9 18:24:02 2006 +0200
10394
10395    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.
10396    (cherry picked from 9354351fcb8baeaab85250d14409cfb4fa50f3e9 commit)
10397
10398commit 0e6d5e979aacb0c295ce79369ecc5f22ffa7922c
10399Author: Jamey Sharp <jamey@minilop.net>
10400Date:   Wed Jun 7 20:29:05 2006 -0700
10401
10402    Fix bug #7035: unnecessary memmove in XOpenDisplay.
10403    Using memmove on the connection setup data causes a problem for XCB, but making
10404    Xlib stop doing that should be harmless for non-XCB as well.
10405    (cherry picked from b18713ec3f36a10b3cdb1e16f9550e1d2e05dff0 commit)
10406
10407commit cd7328c46ae72903ed02832828891b2dab4d5ee0
10408Author: Daniel Stone <daniels@preemptive.fooishbar.org>
10409Date:   Sat Jun 3 13:51:51 2006 +0300
10410
10411    Fix threading support on GNU/kFreeBSD systems.  (Robert Millan)
10412    (cherry picked from e3acee88cfcc4ef0fa8a7db39763a5ebe2e985cb commit)
10413
10414commit c336eb6b80a6f91da1d0b3d28634a2cfde324670
10415Merge: 33556ca ad9ebbd
10416Author: Donnie Berkholz <donnie@comet.(none)>
10417Date:   Thu Jun 22 14:25:35 2006 -0700
10418
10419    Merge branch 'stable' of http://people.freedesktop.org/~jamey/libX11 into stable
10420
10421commit 213dacad21740466e7ab31b01d3fc513fe4b3e74
10422Author: Daniel Stone <daniel@fooishbar.org>
10423Date:   Thu Jun 22 17:20:59 2006 +0300
10424
10425    Bump to 1.0.99.0 to avoid confusion.
10426
10427commit efedfd68e31bcee2d21ac340be8dc9e1825ec890
10428Merge: e3acee8 4b8eb5d
10429Author: Daniel Stone <daniel@fooishbar.org>
10430Date:   Thu Jun 22 16:53:45 2006 +0300
10431
10432    Merge branch 'master' of git+ssh://git.freedesktop.org/srv/git.freedesktop.org/git/xorg/lib/libX11
10433
10434commit 4b8eb5d4a1da73a94b5a6ab12e34784aae4c79c5
10435Merge: 5169d0e eff50c9
10436Author: Matthieu Herrb <matthieu@deville.herrb.com>
10437Date:   Tue Jun 20 21:05:15 2006 +0200
10438
10439    Merge branch 'master' of git+ssh://herrb@git.freedesktop.org/git/xorg/lib/libX11
10440
10441commit 5169d0e08ff6acb350a6ea768623f5ff0b85b05f
10442Author: Matthieu Herrb <matthieu@deville.herrb.com>
10443Date:   Tue Jun 20 21:04:03 2006 +0200
10444
10445    Check setuid() return value.
10446
10447commit eff50c94a07194297e705da53d9fbb3a40fb9ad4
10448Author: Derek Wang <derek.wang@sun.com>
10449Date:   Mon Jun 19 11:05:37 2006 -0700
10450
10451    Sun bug 6209243: XExtentsOfFontSet causes segfault when font set not loaded
10452
10453commit 94f3213fc4bd6ec49bfb68e8b4a4fddea2bf3baa
10454Author: Scott Revelt <scott.revelt@sun.com>
10455Date:   Fri Jun 16 19:11:13 2006 -0700
10456
10457    Sun bug 4022903: Xcms routines may fail if sscanf() is looking for separators
10458    based on locale that doesn't match those used in the Xcms.txt
10459
10460commit c33d7b8282ac196b36229be26442296768c16f3e
10461Author: Alan Coopersmith <alanc@alf.(none)>
10462Date:   Fri Jun 16 18:53:33 2006 -0700
10463
10464    Add *~ to ignore emacs droppings
10465
10466commit 1f4c9893ade08bad30c9bd12a36bee57d30b001e
10467Author: Matthias Hopf <mhopf@suse.de>
10468Date:   Fri Jun 16 15:36:40 2006 +0200
10469
10470    Bug #3104: Compose table cache for faster X11 application starts.
10471
10472commit 4fe22647e6010a2886c2f3a7093adeaeb6678faa
10473Author: Matthias Hopf <mhopf@suse.de>
10474Date:   Tue Jun 13 20:23:46 2006 +0200
10475
10476    Bug #3104: Compose table cache for faster X11 application starts.
10477
10478commit 1d28a655629a11ea7fd1e5df4c7b77dd4b63e3be
10479Author: Lubos Lunak <llunak@suse.de>
10480Date:   Mon Jun 12 18:48:08 2006 +0200
10481
10482    Bug #3104: Compose table cache for faster X11 application starts.
10483
10484commit 9354351fcb8baeaab85250d14409cfb4fa50f3e9
10485Author: Matthias Hopf <mhopf@suse.de>
10486Date:   Fri Jun 9 18:24:02 2006 +0200
10487
10488    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.
10489
10490commit b18713ec3f36a10b3cdb1e16f9550e1d2e05dff0
10491Author: Jamey Sharp <jamey@minilop.net>
10492Date:   Wed Jun 7 20:29:05 2006 -0700
10493
10494    Fix bug #7035: unnecessary memmove in XOpenDisplay.
10495    Using memmove on the connection setup data causes a problem for XCB, but making
10496    Xlib stop doing that should be harmless for non-XCB as well.
10497
10498commit ad9ebbd2424bc2699944ffdf4e19e13f9dd8ab84
10499Author: Daniel Stone <daniels@preemptive.fooishbar.org>
10500Date:   Sat Jun 3 12:57:55 2006 +0300
10501
10502    Bug #2186: Add cs_CZ.iso8859-2 alias.
10503
10504commit 9e7765e0b1cbaae6643072d91066ba1201b36227
10505Author: Daniel Stone <daniel@fooishbar.org>
10506Date:   Fri Jun 2 02:46:29 2006 +0300
10507
10508    nls: Serbian (sr_CS) update (#5575)
10509    
10510    Bug #5575: 'Yugoslavia' has changed to Serbia & Montenegro, along with a
10511    corresponding locale change.  Update compose.dir.pre, locale.alias.pre,
10512    and locale.dir.pre.  (Milos Komarcevic)
10513
10514commit a4ac2242b588da23044a20aa999ae84d4de7b2d8
10515Author: Daniel Stone <daniel@fooishbar.org>
10516Date:   Fri Jun 2 02:24:25 2006 +0300
10517
10518    im: add Braille input method (#6296)
10519    
10520    Bug #6296: Add a Braille input method.  (Samuel Thibault)
10521
10522commit 90de1e2e141ec591048a76cb695579ef809a28d3
10523Author: Daniel Stone <daniel@fooishbar.org>
10524Date:   Fri Jun 2 02:22:17 2006 +0300
10525
10526    xkb support: small typo
10527
10528commit 4c3e34bece7402f08139d34d1ef5834e3cf533c7
10529Author: Daniel Stone <daniel@fooishbar.org>
10530Date:   Fri Jun 2 01:50:24 2006 +0300
10531
10532    en_US.UTF-8 Compose.pre: updates from Simos (#5129)
10533    
10534    Bug #5129: Numerous updates from Simos Xenitellis, fixing Unicode keysyms,
10535    adding Unicode character names, removing duplicate entries, et al.
10536
10537commit 0c6473dd329c7334ae511884bcb6e73e632c784f
10538Author: Daniel Stone <daniel@fooishbar.org>
10539Date:   Fri Jun 2 01:44:53 2006 +0300
10540
10541    nls: fix use of non-keysym dead_space (#5107)
10542    
10543    Bug #5107: Change users of dead_space to space.
10544
10545commit 6f99f6349de5120f1cb7e02fbc97849341bc48e8
10546Author: Daniel Stone <daniel@fooishbar.org>
10547Date:   Fri Jun 2 01:41:18 2006 +0300
10548
10549    optional XKB support fix
10550    
10551    Fix compilation with --disable-xkb.
10552
10553commit 217d43ed44ced901122093af3ef1294e1736bb77
10554Author: Daniel Stone <daniel@fooishbar.org>
10555Date:   Fri Jun 2 01:39:12 2006 +0300
10556
10557    i18n: separate data and lib directories
10558    
10559    Break out locale data into separate data and library directories, under
10560    $(datadir) and $(libdir), respectively, by default.
10561
10562commit 92fa7fcde8df22830fca7c0275ab201033f7909c
10563Author: Adam Jackson <ajax@benzedrine.nwnk.net>
10564Date:   Thu May 11 14:04:48 2006 -0400
10565
10566    libXcursor.so.1, not libXcursor.so
10567
10568commit 135b4df13ed7c35dbae8975f302fc1fb8412d7c0
10569Author: Daniel Stone <daniels@preemptive.fooishbar.org>
10570Date:   Wed May 10 18:06:03 2006 +0300
10571
10572    XKBMisc.c: use Xfree, not xfree
10573    
10574    Use Xfree() instead of xfree() when freeing interps.
10575
10576commit 3518d772b08e3433bc28b4d8d293fa53ca25f0ee
10577Author: Daniel Stone <daniels@preemptive.fooishbar.org>
10578Date:   Wed May 10 14:51:37 2006 +0300
10579
10580    locale.alias.pre: bg_BG typo fix
10581    
10582    Fix typo (be_BG.UTF-8 rather than bg_BG.UTF-8) in locale.alias.pre.
10583
10584commit cc533db60cb64dc163c66451933a9bf77c519062
10585Author: Daniel Stone <daniels@endtroducing.localdomain>
10586Date:   Sun Apr 9 22:22:03 2006 +0300
10587
10588    Coverity #203, #204: Fix potential NULL dereferences.
10589
10590commit b83adf7dfd6157694fe4f232012fef36cd9666da
10591Author: Daniel Stone <daniels@endtroducing.localdomain>
10592Date:   Sun Apr 9 22:20:25 2006 +0300
10593
10594    Coverity #205: Fix potential NULL dereference.
10595
10596commit 2d0cd10ad907864d0136739eaac459779c9a5332
10597Author: Daniel Stone <daniels@endtroducing.localdomain>
10598Date:   Sun Apr 9 22:18:20 2006 +0300
10599
10600    Coverity #209: Fix potential NULL dereference. (Alan Coopersmith)
10601
10602commit dc2f3966068d66a564aa452cab9f0c26657fa1df
10603Author: Daniel Stone <daniels@preemptive.research.nokia.com>
10604Date:   Fri Apr 7 18:11:52 2006 +0300
10605
10606    Coverity #826: Fix potential memory leak.
10607
10608commit 23df609ec451a01c77e8f31ecc85c5af7c62efed
10609Author: Daniel Stone <daniels@preemptive.research.nokia.com>
10610Date:   Fri Apr 7 17:49:41 2006 +0300
10611
10612    Bug #1625: Include keysym.h from Xutil.h.
10613
10614commit 5262a1945c543a3419ed626e1deb09ef5b4584c1
10615Author: Eric Anholt <anholt@leguin.anholt.net>
10616Date:   Wed Apr 5 17:12:15 2006 -0700
10617
10618    Check if visualList == NULL, not nVisualsMatched == 0. NULL happens in more
10619    
10620    cases (allocation failure) than nVisualsMatched == 0.  Noticed from inspection
10621    of Coverity #599, #600.
10622
10623commit 8b42635f577468bb143ca593cdd9fb3450ad712c
10624Author: Eric Anholt <anholt@leguin.anholt.net>
10625Date:   Wed Apr 5 16:42:26 2006 -0700
10626
10627    Coverity #558: Free newly-allocated Database in error path.
10628
10629commit 6d06e41d1f431b3f1a1fcf69161e0af411325e9f
10630Author: Eric Anholt <anholt@leguin.anholt.net>
10631Date:   Wed Apr 5 16:38:52 2006 -0700
10632
10633    Coverity #582: Free newly-allocated region in error path.
10634
10635commit 5fd8f79ad3e38df74d9a6cb573617542c101df1a
10636Author: Daniel Stone <daniels@preemptive.research.nokia.com>
10637Date:   Fri Mar 17 15:58:39 2006 +0200
10638
10639    Properly clip bounds when only one point is defining an outline.
10640
10641commit 1e1572eb7f8394ce152e99d96f711ccf9083baf9
10642Author: Matthieu Herrb <matthieu@bluenote.herrb.com>
10643Date:   Sat Mar 11 15:39:15 2006 +0100
10644
10645    Fix prototype of XConfigureWindow(). Bugzilla #6023.
10646
10647commit 1da8bd904f1fc79d63d368473531b438d08bfe37
10648Author: Jeremy C. Reed <reed@reedmedia.net>
10649Date:   Tue Feb 21 14:10:22 2006 -0800
10650
10651    Set XTHREADLIB correctly for dragonfly platforms.
10652
10653commit c9768133e3f65ac4bb64e3941e2d6ae36897ec9c
10654Author: Jamey Sharp <jamey@minilop.net>
10655Date:   Sun Feb 19 12:29:27 2006 -0800
10656
10657    Update .gitignores for *.o and nls/locale.dir*.
10658
10659commit efcbde6ba0b770bb0d4c7818e307712161011f10
10660Author: Jamey Sharp <jamey@minilop.net>
10661Date:   Sun Feb 19 12:28:41 2006 -0800
10662
10663    Move .cvsignore to .gitignore.
10664
10665commit e3acee88cfcc4ef0fa8a7db39763a5ebe2e985cb
10666Author: Daniel Stone <daniels@preemptive.fooishbar.org>
10667Date:   Sat Jun 3 13:51:51 2006 +0300
10668
10669    Fix threading support on GNU/kFreeBSD systems.  (Robert Millan)
10670
10671commit f1bd3152359ddfadd0d043006036c239f3e2907b
10672Author: Daniel Stone <daniels@preemptive.fooishbar.org>
10673Date:   Sat Jun 3 12:57:55 2006 +0300
10674
10675    Bug #2186: Add cs_CZ.iso8859-2 alias.
10676
10677commit 2b1b79d90db1d7f0472718b8c010c36275994195
10678Author: Daniel Stone <daniel@fooishbar.org>
10679Date:   Fri Jun 2 02:46:29 2006 +0300
10680
10681    nls: Serbian (sr_CS) update (#5575)
10682    Bug #5575: 'Yugoslavia' has changed to Serbia & Montenegro, along with a
10683    corresponding locale change.  Update compose.dir.pre, locale.alias.pre,
10684    and locale.dir.pre.  (Milos Komarcevic)
10685
10686commit d6fba1f44d404362d3be1b421f57d7ccc3c8cdac
10687Author: Daniel Stone <daniel@fooishbar.org>
10688Date:   Fri Jun 2 02:24:25 2006 +0300
10689
10690    im: add Braille input method (#6296)
10691    Bug #6296: Add a Braille input method.  (Samuel Thibault)
10692
10693commit 0fed7d3185addd610e917dcdaa0676f0256c0ec5
10694Author: Daniel Stone <daniel@fooishbar.org>
10695Date:   Fri Jun 2 02:22:17 2006 +0300
10696
10697    xkb support: small typo
10698
10699commit cf7d9f9e46f3ce01ac04a95978918d5c0f3f3cf9
10700Author: Daniel Stone <daniel@fooishbar.org>
10701Date:   Fri Jun 2 01:50:24 2006 +0300
10702
10703    en_US.UTF-8 Compose.pre: updates from Simos (#5129)
10704    Bug #5129: Numerous updates from Simos Xenitellis, fixing Unicode keysyms,
10705    adding Unicode character names, removing duplicate entries, et al.
10706
10707commit 332d45fce9fdbf59168d90a133af1f580a589e54
10708Author: Daniel Stone <daniel@fooishbar.org>
10709Date:   Fri Jun 2 01:44:53 2006 +0300
10710
10711    nls: fix use of non-keysym dead_space (#5107)
10712    Bug #5107: Change users of dead_space to space.
10713
10714commit 34f59ce3d1e2eb2971b732d11871c6fff8a1c75b
10715Author: Daniel Stone <daniel@fooishbar.org>
10716Date:   Fri Jun 2 01:41:18 2006 +0300
10717
10718    optional XKB support fix
10719    Fix compilation with --disable-xkb.
10720
10721commit c5940a0b85edec4003f91a59fc3c44f538accfe1
10722Author: Daniel Stone <daniel@fooishbar.org>
10723Date:   Fri Jun 2 01:39:12 2006 +0300
10724
10725    i18n: separate data and lib directories
10726    Break out locale data into separate data and library directories, under
10727    $(datadir) and $(libdir), respectively, by default.
10728
10729commit 33556ca81db2419b9d2a37664c4cea2069414b37
10730Author: Adam Jackson <ajax@benzedrine.nwnk.net>
10731Date:   Fri May 12 14:49:17 2006 -0400
10732
10733    Bump to 1.0.1
10734
10735commit 80d88557626fae9debc404de33d7fb5d69a6049d
10736Author: Adam Jackson <ajax@benzedrine.nwnk.net>
10737Date:   Thu May 11 14:06:28 2006 -0400
10738
10739    libXcursor.so.1, not libXcursor.so
10740
10741commit 5384f27dfe3c94c462c137ab3540eaa5646ca4c6
10742Author: Adam Jackson <ajax@benzedrine.nwnk.net>
10743Date:   Thu May 11 14:04:48 2006 -0400
10744
10745    libXcursor.so.1, not libXcursor.so
10746
10747commit 01f4d433eed6b70c6e9636157acac022054fdeb6
10748Author: Jamey Sharp <jamey@minilop.net>
10749Date:   Wed May 10 17:02:52 2006 -0700
10750
10751    Count any partial request towards the current Xlib sequence number.
10752
10753commit 770cfbd1fcc80a83a9be0c4f68727b8af2c8f4a4
10754Author: Daniel Stone <daniels@preemptive.fooishbar.org>
10755Date:   Wed May 10 18:06:03 2006 +0300
10756
10757    XKBMisc.c: use Xfree, not xfree
10758    Use Xfree() instead of xfree() when freeing interps.
10759
10760commit 22a5255b80b80772612279bc840a953edd0e3442
10761Author: Daniel Stone <daniels@preemptive.fooishbar.org>
10762Date:   Wed May 10 14:51:37 2006 +0300
10763
10764    locale.alias.pre: bg_BG typo fix
10765    Fix typo (be_BG.UTF-8 rather than bg_BG.UTF-8) in locale.alias.pre.
10766
10767commit 9cac8c9824874ca7d835f001a4efa910b7fdd822
10768Merge: 19b8840 e514bc8
10769Author: Daniel Stone <daniels@preemptive.fooishbar.org>
10770Date:   Wed May 10 14:50:37 2006 +0300
10771
10772    Merge branch 'master' of git+ssh://git.freedesktop.org/srv/git.freedesktop.org/git/xorg/lib/libX11
10773
10774commit e514bc875f27f4bf197b06b8315eeca526195915
10775Author: Jamey Sharp <jamey@minilop.net>
10776Date:   Tue May 9 12:41:59 2006 -0700
10777
10778    Assert that dpy->request does not go backwards. Catches #5839 earlier.
10779
10780commit fc1159137365a599bf611ee001f439416952c4e0
10781Author: Jamey Sharp <jamey@minilop.net>
10782Date:   Sun May 7 17:40:01 2006 -0700
10783
10784    In _XPutXCBBuffer, set aside any trailing partial request until the last byte is available.
10785
10786commit c394480a4247213239822808e3f6e7c6cd6decd9
10787Author: Jamey Sharp <jamey@minilop.net>
10788Date:   Sun May 7 16:58:13 2006 -0700
10789
10790    Update for XCB ConnSetupSuccessRep name change.
10791
10792commit 7672bf93bc1200905461aeb0a2dc2c2696410b93
10793Author: Daniel Stone <daniels@endtroducing.localdomain>
10794Date:   Sun Apr 9 22:22:03 2006 +0300
10795
10796    Coverity #203, #204: Fix potential NULL dereferences.
10797
10798commit cfcafbe48d22d9a0cd50eb9454ce0ff88f0129d3
10799Author: Daniel Stone <daniels@endtroducing.localdomain>
10800Date:   Sun Apr 9 22:20:25 2006 +0300
10801
10802    Coverity #205: Fix potential NULL dereference.
10803
10804commit b6771501feea98d037032f82117b6d4f15779f07
10805Author: Daniel Stone <daniels@endtroducing.localdomain>
10806Date:   Sun Apr 9 22:18:20 2006 +0300
10807
10808    Coverity #209: Fix potential NULL dereference.  (Alan Coopersmith)
10809
10810commit 19b8840af241087bb17b1edabcaa9b28fdd0a1dc
10811Author: Daniel Stone <daniels@preemptive.research.nokia.com>
10812Date:   Fri Apr 7 18:11:52 2006 +0300
10813
10814    Coverity #826: Fix potential memory leak.
10815
10816commit 3a16f262abe48b44ed641525e894bc22e13bf72a
10817Author: Daniel Stone <daniels@preemptive.research.nokia.com>
10818Date:   Fri Apr 7 17:49:41 2006 +0300
10819
10820    Bug #1625: Include keysym.h from Xutil.h.
10821
10822commit 2481b767ae96e2f2503c0390545932c8397b090f
10823Author: Eric Anholt <anholt@leguin.anholt.net>
10824Date:   Wed Apr 5 17:12:15 2006 -0700
10825
10826    Check if visualList == NULL, not nVisualsMatched == 0.  NULL happens in more
10827    cases (allocation failure) than nVisualsMatched == 0.  Noticed from inspection
10828    of Coverity #599, #600.
10829
10830commit 152b17e47d878c2d928eb74581aa69d925a29123
10831Author: Eric Anholt <anholt@leguin.anholt.net>
10832Date:   Wed Apr 5 16:42:26 2006 -0700
10833
10834    Coverity #558: Free newly-allocated Database in error path.
10835
10836commit bc62b99ef36edb34035911c42104be7f6f9d2333
10837Author: Eric Anholt <anholt@leguin.anholt.net>
10838Date:   Wed Apr 5 16:38:52 2006 -0700
10839
10840    Coverity #582: Free newly-allocated region in error path.
10841
10842commit d47f0b3cec1388f7ce60ab2af91df0dea0f221c5
10843Author: Jamey Sharp <jamey@minilop.net>
10844Date:   Fri Mar 31 22:53:07 2006 -0800
10845
10846    Fix buggy interaction with XCB when running out of XIDs.
10847
10848commit e3f452571824d6a875bbf582946de185de9e01e9
10849Author: Jamey Sharp <jamey@minilop.net>
10850Date:   Fri Mar 31 22:52:14 2006 -0800
10851
10852    Add explicit include of Xmd.h to work around bug including both xcb.h and Xmd.h simultaneously.
10853
10854commit 2363b74ca795c1b3a73c9e572532ba5191adec5b
10855Author: Daniel Stone <daniels@preemptive.research.nokia.com>
10856Date:   Fri Mar 17 15:58:39 2006 +0200
10857
10858    Properly clip bounds when only one point is defining an outline.
10859
10860commit e876efb8aa410f2f5c87aaaa7042f847c4ff96f7
10861Merge: be266b2 f71ea0b
10862Author: Matthieu Herrb <matthieu@bluenote.herrb.com>
10863Date:   Sat Mar 11 15:40:35 2006 +0100
10864
10865    Merge branch 'master' of git+ssh://herrb@git.freedesktop.org/git/xorg/lib/libX11
10866
10867commit be266b201dc13530a302a7572283ccd3f32aad87
10868Author: Matthieu Herrb <matthieu@bluenote.herrb.com>
10869Date:   Sat Mar 11 15:39:15 2006 +0100
10870
10871    Fix prototype of XConfigureWindow(). Bugzilla #6023.
10872
10873commit f71ea0bc737c5a42e9e022b86e7ec3b4f846d31c
10874Author: Jamey Sharp <jamey@minilop.net>
10875Date:   Fri Mar 3 11:08:41 2006 -0800
10876
10877    Update for XCBSendRequest sequence number API changes.
10878
10879commit a11d1b0ae674320cf9897f6a83ec08c65eca8d9b
10880Author: Jamey Sharp <jamey@minilop.net>
10881Date:   Fri Mar 3 01:42:49 2006 -0800
10882
10883    Use the full_sequence from XCBGenericError/Event for setting last_request_read, and quit replacing _XSetLastRequestRead with an XCB-specific version.
10884
10885commit d8ba4ae7045b227f8b675628b9094dded02f1c08
10886Author: Jamey Sharp <jamey@minilop.net>
10887Date:   Thu Mar 2 23:43:26 2006 -0800
10888
10889    Bugfix: Rely on XCBSendRequest to leave iov in a well-defined state, and place the spare iovecs at the beginning of the array.
10890
10891commit f9afb5a54435c30961306080e9358d4240ecb844
10892Author: Jamey Sharp <jamey@minilop.net>
10893Date:   Thu Mar 2 23:34:19 2006 -0800
10894
10895    assert() that we will not infinite loop or read uninitialized memory.
10896
10897commit d3512ef3aae5b036a8ce6579318108f1ec20ee22
10898Author: Jamey Sharp <jamey@minilop.net>
10899Date:   Thu Mar 2 15:58:52 2006 -0800
10900
10901    Quit relying on XCBSendRequest to pad to 4-byte boundaries and do it ourselves.
10902
10903commit fb590c15a740264ee867d15a2547072e43b21eed
10904Author: Jamey Sharp <jamey@minilop.net>
10905Date:   Thu Mar 2 12:06:04 2006 -0800
10906
10907    Handle errors correctly when Xlib owns the event queue and XCB has the checked error feature.
10908
10909commit 8356ba37d307a9eda895a6bf41ef727bbfc9a695
10910Author: Jamey Sharp <jamey@minilop.net>
10911Date:   Mon Feb 27 11:51:47 2006 -0800
10912
10913    Use the new XCBSendRequest flag, XCB_REQUEST_RAW, to hand a bag-o-bytes down uninterpreted.
10914
10915commit 07bdf1fbbf2418f866df1a2140d514dd3f035139
10916Author: Jamey Sharp <jamey@minilop.net>
10917Date:   Sun Feb 26 15:46:01 2006 -0800
10918
10919    Update for new XCBSendRequest API.
10920
10921commit 409a08cff8347d39e0e6c53c9f380d21f221f5ac
10922Author: Jamey Sharp <jamey@minilop.net>
10923Date:   Thu Feb 23 18:12:31 2006 -0800
10924
10925    Performance fix: Replace calls to XCBGetRequestRead with the new XCBGetQueuedRequestRead. Cuts a lot of syscalls.
10926
10927commit ec30a27341b97620b07dd886f98d1d7664a67685
10928Author: Jamey Sharp <jamey@minilop.net>
10929Date:   Thu Feb 23 18:01:46 2006 -0800
10930
10931    Minor performance fix: Access dpy->xcl->connection directly instead of calling XCBConnectionOfDisplay. It happens a lot.
10932
10933commit 53c471c6a835d5cedeca99f2c97058d196a3fd7e
10934Author: Jamey Sharp <jamey@minilop.net>
10935Date:   Thu Feb 23 11:46:09 2006 -0800
10936
10937    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.
10938
10939commit 41c0121a8718b530feaf7fe315b673d9b8defce2
10940Author: Jamey Sharp <jamey@minilop.net>
10941Date:   Tue Feb 21 21:25:41 2006 -0800
10942
10943    Refactor the code that passes requests down to XCB into a separate issue_complete_request function.
10944
10945commit 67d06e0fe468dca22847aa14d3f917128f89f9cf
10946Author: Jamey Sharp <jamey@minilop.net>
10947Date:   Tue Feb 21 15:33:05 2006 -0800
10948
10949    If we have not actually put the buffer back, deferred invariants may not hold. This is OK.
10950
10951commit 434bf80b4053ff1ba82adf65de1f76b4d3731bf1
10952Author: Jeremy C. Reed <reed@reedmedia.net>
10953Date:   Tue Feb 21 14:10:22 2006 -0800
10954
10955    Set XTHREADLIB correctly for dragonfly platforms.
10956
10957commit b24834762e975bd319f9ab5c7cf790b2a02a9474
10958Author: Jamey Sharp <jamey@minilop.net>
10959Date:   Tue Feb 21 14:03:26 2006 -0800
10960
10961    Sometimes functions other than _XUnlockDisplay call _XPutXCBBuffer. Some invariants appropriate for Unlock are not appropriate otherwise: move them to _XUnlockDisplay.
10962
10963commit 99b8defd0d5e6993071e21638128c9de2574b37d
10964Author: Jamey Sharp <jamey@minilop.net>
10965Date:   Tue Feb 21 13:04:21 2006 -0800
10966
10967    Execute BeforeFlush hooks on complete buffers, not request-at-a-time.
10968    Traditional Xlib worked this way; I dunno why I changed it.
10969
10970commit 9b01e7849775749182052fe324df9d8e6ceeee99
10971Author: Jamey Sharp <jamey@minilop.net>
10972Date:   Tue Feb 21 12:51:44 2006 -0800
10973
10974    Factor the XCBSendRequest call out of the conditional in _XPutXCBBuffer.
10975
10976commit 7ce7ac882de128955751a5307889db9d712d8a72
10977Author: Jamey Sharp <jamey@minilop.net>
10978Date:   Tue Feb 21 12:44:30 2006 -0800
10979
10980    Quit using a triple-pointer. Almost as if I were a sensible person.
10981
10982commit 35a858be218cdbfa4593d44a67663d5c25297016
10983Author: Jamey Sharp <jamey@minilop.net>
10984Date:   Tue Feb 21 12:21:01 2006 -0800
10985
10986    Remove the XCL_PAD macro.
10987
10988commit e741b70ed2542c5463c57dac44bc37328616733b
10989Author: Jamey Sharp <jamey@minilop.net>
10990Date:   Sun Feb 19 12:29:27 2006 -0800
10991
10992    Update .gitignores for *.o and nls/locale.dir*.
10993
10994commit f25b4b00e1683b0d97dba46dac46d65a9c2270a6
10995Author: Jamey Sharp <jamey@minilop.net>
10996Date:   Sun Feb 19 12:28:41 2006 -0800
10997
10998    Move .cvsignore to .gitignore.
10999
11000commit c7cda56eebaf6ab11403363be14d4948d7d8be38
11001Author: Jamey Sharp <jamey@minilop.net>
11002Date:   Sun Feb 19 11:49:15 2006 -0800
11003
11004    Land XCB support on X.org HEAD.
11005
11006commit 881467b3032261791ef5ec61b3879bb68d0a3d8c
11007Author: Jamey Sharp <jamey@minilop.net>
11008Date:   Sun Feb 19 02:14:11 2006 +0000
11009
11010    Merge the X11 and BIGREQS package sets: they were used in exactly the same places.
11011
11012commit 6b0158dfad714db5b89c04dbea3aedeafa0fb146
11013Author: Jamey Sharp <jamey@minilop.net>
11014Date:   Tue Feb 14 19:37:36 2006 +0000
11015
11016    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.
11017
11018commit 010c3acbb3a6993d39274f42d88c00849acb0fb0
11019Author: Alan Coopersmith <alan.coopersmith@sun.com>
11020Date:   Sun Feb 12 18:19:17 2006 +0000
11021
11022    Bug #5628 <https://bugs.freedesktop.org/show_bug.cgi?id=5628> Shadow pages not created correctly when MANDIR & MANSUFFIX don't match.
11023
11024commit fe8c01c80263457f01b70dc1511b2bd9466b7c96
11025Author: Alan Coopersmith <alan.coopersmith@sun.com>
11026Date:   Fri Feb 3 23:34:43 2006 +0000
11027
11028    Fix typo in .TH line
11029
11030commit b091c217f3c3f60dde78b09a95c150df6c83d7ba
11031Author: Kevin E Martin <kem@kem.org>
11032Date:   Thu Dec 15 00:24:28 2005 +0000
11033
11034    Update package version number for final X11R7 release candidate.
11035
11036commit e7c04e0e65a2a0c70c6ad29ec2d6f4350fd81c2a
11037Author: Kevin E Martin <kem@kem.org>
11038Date:   Tue Dec 6 22:48:41 2005 +0000
11039
11040    Change *man_SOURCES ==> *man_PRE to fix autotools warnings.
11041
11042commit b5c495854d5270e64e6d588388ffa906bfcaac22
11043Author: Kevin E Martin <kem@kem.org>
11044Date:   Sat Dec 3 05:49:42 2005 +0000
11045
11046    Update package version number for X11R7 RC3 release.
11047
11048commit 9e96dbc343c7f27ff47607acd75378ab23903e2a
11049Author: Kevin E Martin <kem@kem.org>
11050Date:   Sat Dec 3 04:41:47 2005 +0000
11051
11052    Add check and cflags for malloc(0) returning NULL.
11053
11054commit 649c37b47909620ccafde3e983de8321cddd74ce
11055Author: Alan Coopersmith <alan.coopersmith@sun.com>
11056Date:   Mon Nov 28 22:03:04 2005 +0000
11057
11058    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)
11059
11060commit 8d1500df66d796ebff2b0d8c02205e5fa6796d4a
11061Author: Alan Coopersmith <alan.coopersmith@sun.com>
11062Date:   Wed Nov 23 22:33:06 2005 +0000
11063
11064    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
11065
11066commit 93cf3747f9ae8d30bd485b41c5ff10397f68f078
11067Author: Eric Anholt <anholt@freebsd.org>
11068Date:   Sun Nov 20 23:17:39 2005 +0000
11069
11070    Add/improve libs .cvsignores.
11071
11072commit fa1f4a08112bfa14d3758f4702733dd3892966c3
11073Author: Kevin E Martin <kem@kem.org>
11074Date:   Sat Nov 19 07:15:39 2005 +0000
11075
11076    Update pkgconfig files to separate library build-time dependencies from application build-time dependencies, and update package deps to work with separate build roots.
11077
11078commit 7012f9b56c594cf40855ba0dbf93af1263417a8c
11079Author: Kevin E Martin <kem@kem.org>
11080Date:   Mon Nov 14 21:51:07 2005 +0000
11081
11082    Fix xf86bigfont pkgconfig dep typo.
11083
11084commit 60a72f47951f46b4e0505d9903a94af3b6bed8ca
11085Author: Kevin E Martin <kem@kem.org>
11086Date:   Wed Nov 9 21:19:12 2005 +0000
11087
11088    Update package version number for X11R7 RC2 release.
11089
11090commit 6bb0c3796b6e1beddc376a896e865704886e1462
11091Author: Kean Johnson <kean@armory.com>
11092Date:   Tue Nov 8 06:33:25 2005 +0000
11093
11094    See ChangeLog entry 2005-11-07 for details.
11095
11096commit 14be0098ad90c3e68bd2d21b00ffabb76f1fd780
11097Author: Kevin E Martin <kem@kem.org>
11098Date:   Tue Nov 1 15:11:50 2005 +0000
11099
11100    Update pkgcheck dependencies to work with separate build roots.
11101
11102commit 1bf71462a972e0fc56de63f5c7fd613b37fc70f1
11103Author: Donnie Berkholz <spyderous@gentoo.org>
11104Date:   Fri Oct 28 10:44:03 2005 +0000
11105
11106    Revert that, it's redundant. But it is worth noting that --disable-xkb is broken, if anyone cares.
11107
11108commit be627a39fe373e2e81fdc263780e70a271d9e0c5
11109Author: Donnie Berkholz <spyderous@gentoo.org>
11110Date:   Fri Oct 28 08:28:08 2005 +0000
11111
11112    Add dependency on inputproto for XI.h.
11113
11114commit 5fae4cb456cb03fb70cd065dbc2ca94c8ed99082
11115Author: Adam Jackson <ajax@nwnk.net>
11116Date:   Fri Oct 21 18:44:24 2005 +0000
11117
11118    Bug #4736: Error decoding for Damage extension. (Jonathan Lennox)
11119
11120commit 1171fa9dc77413f0e90933a565ec07068052afb4
11121Author: Kevin E Martin <kem@kem.org>
11122Date:   Wed Oct 19 02:48:08 2005 +0000
11123
11124    Update package version number for RC1 release.
11125
11126commit 2a2d905706308b9d5a1c16af1067fb390f43850c
11127Author: Alan Coopersmith <alan.coopersmith@sun.com>
11128Date:   Tue Oct 18 00:00:08 2005 +0000
11129
11130    Use @LIB_MAN_SUFFIX@ instead of $(LIB_MAN_SUFFIX) in macro substitutions to work better with BSD make
11131
11132commit 66d35b6971fb26762392a2a8e2c47db46c11116a
11133Author: Alan Coopersmith <alan.coopersmith@sun.com>
11134Date:   Mon Oct 17 21:13:15 2005 +0000
11135
11136    Rename .shadows.DONE to shadows.DONE to avoid some make's thinking it's a suffix rule (reported by Matthieu Herrb)
11137
11138commit a316995a17c084e98ef1b7f25d287c2c08b6d749
11139Author: Donnie Berkholz <spyderous@gentoo.org>
11140Date:   Sun Oct 16 03:03:35 2005 +0000
11141
11142    Change '==' to portable '='.
11143
11144commit b76a072530e884bcbea6ed8fed5aef39361dcfc0
11145Author: Alan Coopersmith <alan.coopersmith@sun.com>
11146Date:   Wed Oct 12 00:04:50 2005 +0000
11147
11148    configure.ac Use XORG_MAN_SECTIONS instead of custom man section configuration. Add shadow man pages for man pages that document multiple functions.
11149
11150commit 8ee5c1429af98206e05a0536f87c0f21a529cdf0
11151Author: Eric Anholt <anholt@freebsd.org>
11152Date:   Tue Oct 11 02:18:36 2005 +0000
11153
11154    Add appropriate pthread libs/flags for FreeBSD, fixing the build of ico and probably others.
11155
11156commit 41ff3b9d1f194a7b56437b650d5f589225c078c6
11157Author: Alan Coopersmith <alan.coopersmith@sun.com>
11158Date:   Sun Oct 9 22:28:39 2005 +0000
11159
11160    Bug #3021 <https://bugs.freedesktop.org/show_bug.cgi?id=3021> Requests and Errors for XFixes are not in XErrorDB (Jonathan Lennox)
11161
11162commit 91ed79852e790049ab54e68f288afb3c953194c9
11163Author: Kevin E Martin <kem@kem.org>
11164Date:   Fri Oct 7 15:00:00 2005 +0000
11165
11166    Clean up generated files
11167    Add missing dist tarball files
11168
11169commit 440399b470c97b159a530602fff11c315aca8d97
11170Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
11171Date:   Wed Oct 5 18:27:10 2005 +0000
11172
11173    Add el_GR.UTF-8 compose file
11174
11175commit 010f0647e25ac617d0f92c8d2b8dda684da545db
11176Author: Daniel Stone <daniel@fooishbar.org>
11177Date:   Fri Sep 30 07:52:46 2005 +0000
11178
11179    Bug #2609: Add Kyrgyz locale (Ilyas Bakirov).
11180
11181commit 3ef2fb67bd8905b208ad7eb790c3843e14cea7ed
11182Author: Daniel Stone <daniel@fooishbar.org>
11183Date:   Fri Sep 30 07:47:55 2005 +0000
11184
11185    Bug #1640: Kinyarwanda locale support. (Steve Murphy)
11186
11187commit 4ae0decabe0960870df0ec165f495166c10a053c
11188Author: Daniel Stone <daniel@fooishbar.org>
11189Date:   Fri Sep 30 07:40:03 2005 +0000
11190
11191    Bug #2268: Add South African locales (Dwayne Bailey). Some whitespace cleanups, as the parser is a little touchy.
11192
11193commit 3f79eb4c99844f618f1889741d1631c2ffe5385f
11194Author: Daniel Stone <daniel@fooishbar.org>
11195Date:   Fri Sep 30 07:11:19 2005 +0000
11196
11197    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.
11198
11199commit d1237d1483ff972c76a0ac344ec97d5280db0007
11200Author: Alan Coopersmith <alan.coopersmith@sun.com>
11201Date:   Thu Sep 29 21:27:12 2005 +0000
11202
11203    Add Xcms.txt to lib/X11
11204
11205commit 4a86f299693f7376cbe98175f0b0c44d691802b3
11206Author: Alan Coopersmith <alan.coopersmith@sun.com>
11207Date:   Sat Sep 24 20:11:06 2005 +0000
11208
11209    Add XQueryExtension.man
11210
11211commit a057a66e2041d45198a13a4ece7c07068f76f21b
11212Author: Alan Coopersmith <alan.coopersmith@sun.com>
11213Date:   Sat Sep 24 00:16:32 2005 +0000
11214
11215    Add XTHREAD_CFLAGS for platforms that need special defines like
11216    -D_REENTRANT or -D_POSIX_whatever to get re-entrant function definitions. Set XDMCP_LIBS correctly for later libXdmcp tests.
11217
11218commit 3e920a65a7c376ad63eae2240fd06904d25d18bf
11219Author: Alan Coopersmith <alan.coopersmith@sun.com>
11220Date:   Fri Sep 2 23:00:30 2005 +0000
11221
11222    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
11223
11224commit 3eb9f2d693af89d04e2fd92492c8205dce332c9c
11225Author: Kristian Høgsberg <krh@redhat.com>
11226Date:   Thu Sep 1 19:24:13 2005 +0000
11227
11228    Use $(X11_LOCALEDATADIR) instead of @X11_LOCALEDATADIR@ so this install destination can be overridden at make install time.
11229
11230commit 7afa64325183b78d2d6a4862821f8b3e9866105c
11231Author: Matthieu Herrb <matthieu.herrb@laas.fr>
11232Date:   Sun Aug 28 19:45:48 2005 +0000
11233
11234    OpenBSD needs -lpthread for threaded applications too.
11235
11236commit 2b2f3d3877cb7927f196d01a5df6a27bf8d0518a
11237Author: Daniel Stone <daniel@fooishbar.org>
11238Date:   Fri Aug 26 05:16:46 2005 +0000
11239
11240    Define ERRORDB/KEYSYMDB to XERRORDB/XKEYSYMDB if the former is undefined but the latter is. (Gerte Hoogewerf)
11241
11242commit 07066da0902df91c71f2adb81d1a17ec29165553
11243Author: Matthieu Herrb <matthieu.herrb@laas.fr>
11244Date:   Sun Aug 21 15:45:04 2005 +0000
11245
11246    update
11247
11248commit de44d8b111f57bd2f015e085fd8298c5f2a15ef3
11249Author: Matthieu Herrb <matthieu.herrb@laas.fr>
11250Date:   Sun Aug 21 15:38:39 2005 +0000
11251
11252    Threads support for BSD systems:
11253    - need to check for gewtpwuid_r to define mtsafeapi
11254    - build UIThrstubs if needed.
11255
11256commit 60217fdb918bafb2082519efe5cba3b13ad3082a
11257Author: Adam Jackson <ajax@nwnk.net>
11258Date:   Wed Aug 17 19:46:08 2005 +0000
11259
11260    Add xthreadlib variable to x11.pc. Bump to 0.99.1.
11261
11262commit e1f4c6f5e36c1511f66fa1fac76520fd97eecbad
11263Author: Alan Coopersmith <alan.coopersmith@sun.com>
11264Date:   Wed Aug 17 01:27:08 2005 +0000
11265
11266    Fix more broken multi-line .ds macros. Remove extraneous ;'s .
11267
11268commit 1909786f4a7d686369edcfc05a938df115fab37c
11269Author: Alan Coopersmith <alan.coopersmith@sun.com>
11270Date:   Tue Aug 16 19:23:15 2005 +0000
11271
11272    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)
11273
11274commit 83406d69c62070d2eeef23eb47f1ca887f711ee5
11275Author: Alan Coopersmith <alan.coopersmith@sun.com>
11276Date:   Mon Aug 15 19:53:37 2005 +0000
11277
11278    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
11279
11280commit 5bb43de17de8e71d967488a713bf2b3448533444
11281Author: Alan Coopersmith <alan.coopersmith@sun.com>
11282Date:   Sat Aug 6 18:59:49 2005 +0000
11283
11284    Typo fix in output message
11285
11286commit afe34b95862bb3c06cdbe724cb5ec3001a4a5215
11287Author: Alan Coopersmith <alan.coopersmith@sun.com>
11288Date:   Thu Aug 4 02:55:49 2005 +0000
11289
11290    //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)
11291
11292commit 3979a0b88edf6475ce5cfaa386e18ef980bda13c
11293Author: Alan Coopersmith <alan.coopersmith@sun.com>
11294Date:   Thu Aug 4 02:51:30 2005 +0000
11295
11296    //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)
11297
11298commit 34b454df192f4563499c453ccdb8c079f4a20cbe
11299Author: Alan Coopersmith <alan.coopersmith@sun.com>
11300Date:   Sat Jul 30 20:30:46 2005 +0000
11301
11302    Include config.h so Xtrans knows which transport types to build code for
11303
11304commit cd9c9936b49c125eda779b99887d7e6ae4cf56cd
11305Author: Alan Coopersmith <alan.coopersmith@sun.com>
11306Date:   Sat Jul 30 19:15:16 2005 +0000
11307
11308    Add -D flags to clear various warnings (Stefan Dirsch)
11309
11310commit e7fef67b4531faddd805d8f2157903006d3117ed
11311Author: Kevin E Martin <kem@kem.org>
11312Date:   Fri Jul 29 21:22:50 2005 +0000
11313
11314    Various changes preparing packages for RC0:
11315    - Verify and update package version numbers as needed
11316    - Implement versioning scheme
11317    - Change bug address to point to bugzilla bug entry form
11318    - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to reenable it)
11319    - Fix makedepend to use pkgconfig and pass distcheck
11320    - Update build script to build macros first
11321    - Update modular Xorg version
11322
11323commit 2ebb00244928237088e68325b1032b3550455ce9
11324Author: Matthieu Herrb <matthieu.herrb@laas.fr>
11325Date:   Sat Jul 23 20:19:31 2005 +0000
11326
11327    remove orphan TAB at begin of line
11328
11329commit dd7a9cdecda73e024ca84c5b9a22b18688038d94
11330Author: Kevin E Martin <kem@kem.org>
11331Date:   Sat Jul 23 18:09:39 2005 +0000
11332
11333    Modify modular libs to use Xregion.h instead of region.h
11334
11335commit 6d635a88d91647b1b63611c3591f74916f88cd1c
11336Author: Kevin E Martin <kem@kem.org>
11337Date:   Sat Jul 23 18:06:16 2005 +0000
11338
11339    lib/Xrender/Picture.c Change region.h to Xregion.h and modify internal references to include <X11/Xregion.h>.
11340
11341commit 36283f50fd9748733ae84cb7fb52ca8d9e661c15
11342Author: Daniel Stone <daniel@fooishbar.org>
11343Date:   Sat Jul 16 06:25:35 2005 +0000
11344
11345    Set soversion to 6.2.0.
11346
11347commit 75fd5ae6e4683b9b9dcc13bc2f0faf223610a74f
11348Author: Keith Packard <keithp@keithp.com>
11349Date:   Fri Jul 15 04:27:32 2005 +0000
11350
11351    Add missing Makefile.am to lib/X11/modules
11352
11353commit 6d84a8b1329af1fcfe86b198f1a6e7dd6ff616c3
11354Author: Keith Packard <keithp@keithp.com>
11355Date:   Fri Jul 15 04:08:51 2005 +0000
11356
11357    Move i18n modules to top-level so they can be built in the right order (before xlib for non-loadable, after xlib for loadable).
11358    Link i18n modules against xlib to resolve Xlib symbols used by them.
11359
11360commit 45f40126a73295345bb5eb187b1167874842ab6e
11361Author: Alexander Gottwald <ago@freedesktop.org>
11362Date:   Thu Jul 14 19:50:00 2005 +0000
11363
11364    Add $(top_srcdir)/src to include list
11365
11366commit 0aed7d91f5928d09d541617aad03709b5090658d
11367Author: Matthieu Herrb <matthieu.herrb@laas.fr>
11368Date:   Thu Jul 14 17:04:49 2005 +0000
11369
11370    Build fix for non-GNU make.
11371
11372commit b79422ccb02ab44548d1038956ab0cd4e2638645
11373Author: Adam Jackson <ajax@nwnk.net>
11374Date:   Thu Jul 14 15:12:44 2005 +0000
11375
11376    typo fixes (Matthieu Herrb)
11377
11378commit 419304cde2fda19457c667870edefc0b227651b3
11379Author: Alan Coopersmith <alan.coopersmith@sun.com>
11380Date:   Wed Jul 13 02:41:36 2005 +0000
11381
11382    Add missing backslashes to xlocale_la_SOURCES
11383
11384commit d14cc5c8964c4539b57c6cb51ef653292e410b79
11385Author: Keith Packard <keithp@keithp.com>
11386Date:   Mon Jul 11 20:32:55 2005 +0000
11387
11388    Ammend AM_CFLAGS with all needed includes; cannot figure out an easy way to automate this.
11389
11390commit 424c2d8905eb2ad0a2df15b1da2f96140bfbcffb
11391Author: Lars Knoll <lars@trolltech.com>
11392Date:   Mon Jul 11 15:24:32 2005 +0000
11393
11394    compile
11395
11396commit de9784eb1bde46efc316da279e3da27c6cc288a7
11397Author: Keith Packard <keithp@keithp.com>
11398Date:   Mon Jul 11 09:26:40 2005 +0000
11399
11400    Ignore built man page files
11401
11402commit 0c258c36d1523113790c599b16d2947d7aa6469a
11403Author: Keith Packard <keithp@keithp.com>
11404Date:   Mon Jul 11 09:18:31 2005 +0000
11405
11406    Minor changes to help modular Xlib build i18n modules
11407
11408commit 6e752ea1203b786423e40f43340bce15ca3de0f0
11409Author: Keith Packard <keithp@keithp.com>
11410Date:   Mon Jul 11 08:29:18 2005 +0000
11411
11412    Enable loadable i18n modules, making them configurable on the configure command line.
11413    Clean up conditionals for XKB, XCMS, XLOCALEDIR
11414    Create new lib directory for locale modules in ${X11_LIBDIR}/locale/lib. Add this to the default XLOCALEDIR search path.
11415    Create separate X11_LOCALEDATADIR variable pointing at ${datadir}/X11/locale for installing locale data.
11416    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.
11417    Display message at end of configure script with selected options.
11418    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.
11419
11420commit b46cf0d879f1dbf92dcf5a0305d18986c766ed84
11421Author: Daniel Stone <daniel@fooishbar.org>
11422Date:   Sun Jul 10 22:37:33 2005 +0000
11423
11424    Fix segfault when _XimProtoCreateIC() fails to create a context; Debian #239991. (Chung-chieh Shan)
11425
11426commit 6f2132b18e61ca9755e4b45550f3f5097dd1fbb7
11427Author: Alan Coopersmith <alan.coopersmith@sun.com>
11428Date:   Sat Jul 9 20:06:04 2005 +0000
11429
11430    Set __libmansuffix__ & __xorgversion__ correctly when cpp processing man pages
11431
11432commit 3939ac4410446b46071c9d714f4270c12bf904fe
11433Author: Alan Coopersmith <alan.coopersmith@sun.com>
11434Date:   Sat Jul 9 18:44:14 2005 +0000
11435
11436    - 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
11437    - Don't assume $(CPP) can take gcc-only -traditional flag
11438    - CPP process man pages as is done in the monolithic tree
11439
11440commit 19ba9d0df86c688319377467254b9ea9c4b0eccc
11441Author: Keith Packard <keithp@keithp.com>
11442Date:   Sat Jul 9 06:01:49 2005 +0000
11443
11444    Clean up .cvsignore files
11445
11446commit f4bba6fa9b9ce637be7662754750054567e9250a
11447Author: Adam Jackson <ajax@nwnk.net>
11448Date:   Sat Jul 9 02:53:29 2005 +0000
11449
11450    typo fix. i suck.
11451
11452commit 3305da61a61695e24c1ea11d3f59dddb52873d47
11453Author: Adam Jackson <ajax@nwnk.net>
11454Date:   Sat Jul 9 02:41:18 2005 +0000
11455
11456    Check for bigfont proto headers via pkgconfig (Arwed von Merkatz)
11457
11458commit afdae2e8ccb93de2987b5a5e850695af15ece7e0
11459Author: Keith Packard <keithp@keithp.com>
11460Date:   Fri Jul 8 07:11:56 2005 +0000
11461
11462    Create and use XlibConf.h to match modular build which needs XTHREADS defined when building extensions
11463
11464commit 86fa88dc594ca2093030acf5c84973ee2b33eb4c
11465Author: Keith Packard <keithp@keithp.com>
11466Date:   Fri Jul 8 06:57:06 2005 +0000
11467
11468    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.
11469    Add a bunch of .cvsignore files
11470
11471commit 30f6ffedeaf899e699f0c6b14c9471ce9bcc430c
11472Author: Chris Less <clee@c133.org>
11473Date:   Mon Jul 4 23:01:48 2005 +0000
11474
11475    Fixing bug #380 - add a man page for XQueryExtension, XListExtensions, and XFreeExtensionList.
11476
11477commit 55328bb6caabd37885cd19d7a5821ed425daf321
11478Author: Eric Anholt <anholt@freebsd.org>
11479Date:   Sun Jul 3 10:17:38 2005 +0000
11480
11481    Avoid a gmake-specific construct, and instead just write the name of the current directory into each Makefile.am.
11482
11483commit 726538ba21b631bfb0b8094a5546acdaf57379ff
11484Author: Daniel Stone <daniel@fooishbar.org>
11485Date:   Sun Jul 3 07:37:33 2005 +0000
11486
11487    Fix more include paths; add dix-config.h to XKB code.
11488
11489commit 8c7677138e70e14eca0255f2168583f0ecc21994
11490Author: Daniel Stone <daniel@fooishbar.org>
11491Date:   Sun Jul 3 07:00:55 2005 +0000
11492
11493    Add Xtrans definitions (FONT_t, TRANS_CLIENT) to clean up warnings.
11494    Add XSERV_t, TRANS_SERVER, TRANS_REOPEN to quash warnings.
11495    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>.
11496
11497commit 197697c92a63091a4cc3cc04dcb7fa29d2655758
11498Author: Daniel Stone <daniel@fooishbar.org>
11499Date:   Fri Jul 1 22:13:35 2005 +0000
11500
11501    Fix objdir != srcdir, as well as make distcheck.
11502    Don't attempt to create Compose.pre files; formatting fixes.
11503    Added if not already present.
11504
11505commit c162d60ad8f124563f94a2a266de59373936266c
11506Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
11507Date:   Wed Jun 22 22:46:31 2005 +0000
11508
11509    Apply these patches from Theo van Klaveren:
11510    lib-dmx.patch lib-FS.patch lib-X11.patch lib-XRes.patch lib-XScrnSaver.patch lib-xtrans.patch
11511    to make the libraries distcheck.
11512
11513commit 9ee8abdab03ea605a6327118ab7dacab6adf8876
11514Author: Alan Coopersmith <alan.coopersmith@sun.com>
11515Date:   Sat Jun 18 07:48:43 2005 +0000
11516
11517    Move Secure RPC flags from X11/configure.ac to xtrans/xtrans.m4 since multiple modules will need them
11518
11519commit 12afc57b7d455781eee305e9ed6a899ceec8729e
11520Author: Daniel Stone <daniel@fooishbar.org>
11521Date:   Wed Jun 15 16:50:47 2005 +0000
11522
11523    Typo fix to locale/error/keysym location declarations.
11524
11525commit 9a895777e30762f61b98d25be3b5d8b1169baa17
11526Author: Daniel Stone <daniel@fooishbar.org>
11527Date:   Wed Jun 15 13:37:43 2005 +0000
11528
11529    Typo in ImUtil.h commit -- I AM CAPTAIN SKILL.
11530
11531commit add49285663684875ab7a5c58ec7a2cf8b775f67
11532Author: Daniel Stone <daniel@fooishbar.org>
11533Date:   Wed Jun 15 13:32:35 2005 +0000
11534
11535    Define locations for XErrorDB, XKeysymDB, and locale data in configure.ac. Add AC_DEFINE_DIR macro from autoconf-archive.cryp.to towards this end.
11536    Move ImUtil.h from src/ to include/X11/.
11537
11538commit 845dfc6b42b950890866ee4df27761e086f50dca
11539Author: Daniel Stone <daniel@fooishbar.org>
11540Date:   Wed Jun 15 13:27:48 2005 +0000
11541
11542    Move ImUtil.h from src/ to include/X11/. Additionally, copy Cmap.h as a distribution file.
11543
11544commit bba117f0d98f62cfb060d0fab97b407a3a0bfda9
11545Author: Daniel Stone <daniel@fooishbar.org>
11546Date:   Fri Jun 10 14:11:36 2005 +0000
11547
11548    Remove pointless include of Xlib.h.
11549    Fix #include path to bigreqstr.h.
11550
11551commit 1a0de49da1274882bab05b0f7240936b37955e5c
11552Author: Alexander Gottwald <ago@freedesktop.org>
11553Date:   Thu Jun 9 21:30:15 2005 +0000
11554
11555    Use $(srcdir) for Compose.pre and XLC_LOCALE.pre
11556
11557commit af4f0f302644ebfbb0ca9f4016a4aee85c973d37
11558Author: Alexander Gottwald <ago@freedesktop.org>
11559Date:   Thu Jun 9 15:55:33 2005 +0000
11560
11561    Replace <X11/transport.c> with <X11/Xtrans/transport.c>
11562
11563commit fd5f58e0baf692e34b9b622286f18762cc2500d3
11564Author: Alexander Gottwald <ago@freedesktop.org>
11565Date:   Thu Jun 9 15:52:02 2005 +0000
11566
11567    Replace <X11/Xtrans.h> with <X11/Xtrans/Xtrans.h>
11568    Copy Xtrans.h to exports/include/X11/Xtrans only
11569
11570commit 44538f9940f969d46c0e5e4b201c684cde2ba611
11571Author: Alan Coopersmith <alan.coopersmith@sun.com>
11572Date:   Sun Jun 5 03:29:33 2005 +0000
11573
11574    Port Imake flags to autoconf tests & --enable-* flags: HASSETUGID, HASGETRESUID, NO_XLOCALEDIR, HAS_SHM and XF86BIGFONT
11575
11576commit 588e30e9ec65fa6205a34be650b79d5e2243edec
11577Author: Alan Coopersmith <alan.coopersmith@sun.com>
11578Date:   Sat Jun 4 22:53:21 2005 +0000
11579
11580    Add --enable-secure-rpc flag and checks for needed functions for Secure RPC ("SUN-DES-1") authentication method
11581
11582commit a547afee2ef49cc41bbb67f9cff5a52a283c0854
11583Author: Alan Coopersmith <alan.coopersmith@sun.com>
11584Date:   Sat Jun 4 21:20:20 2005 +0000
11585
11586    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)
11587
11588commit ca93c761559ae464189c7ea7cf11c6a6679f2431
11589Author: Matthieu Herrb <matthieu.herrb@laas.fr>
11590Date:   Sat May 28 01:02:32 2005 +0000
11591
11592    Don't use $< in explicit rules. This only works with GNU make. <https://bugs.freedesktop.org/show_bug.cgi?id=3383>
11593
11594commit 09ebb349359e3dd9131fa2fa8b07559faa173654
11595Author: Alan Coopersmith <alan.coopersmith@sun.com>
11596Date:   Sun May 22 19:05:11 2005 +0000
11597
11598    Convert man pages to long file names in lib/X11, lib/Xt, & lib/Xext
11599
11600commit 761219b1ef9befc350c8a35b6f96d047e5f008cc
11601Author: Alan Coopersmith <alan.coopersmith@sun.com>
11602Date:   Sat May 21 23:07:48 2005 +0000
11603
11604    xtrans:
11605    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
11606    ICE:
11607    Add ICE_t #define required by Xtrans headers. Replace static defines of LOCALCONN & UNIXCONN with new XTRANS_CONNECTION_FLAGS macro.
11608    X11:
11609    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.
11610
11611commit 4b1ba6eb975b547b808f4d5c8825a3261de5e02a
11612Author: Alan Coopersmith <alan.coopersmith@sun.com>
11613Date:   Sat May 21 04:26:12 2005 +0000
11614
11615    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)
11616    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).
11617
11618commit 1d425d5e2092dd18a7dd599b37ed9af61cf59819
11619Author: Adam Jackson <ajax@nwnk.net>
11620Date:   Thu May 19 00:22:32 2005 +0000
11621
11622    revert last change, didn't do right thing at all, sorry for the noise
11623
11624commit 1b0c46c1ae61d751dd3ca96de8e2c3fe21c5f4f2
11625Author: Adam Jackson <ajax@nwnk.net>
11626Date:   Thu May 19 00:10:07 2005 +0000
11627
11628    Require automake 1.7 in AM_INIT_AUTOMAKE
11629
11630commit cd4657c175dbab6aaca36f18a0ca92c95b5567dd
11631Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
11632Date:   Tue May 17 22:32:09 2005 +0000
11633
11634    - Check for xproto as its CFLAGS are needed in the .pc file
11635
11636commit 46e8d8a65430dd87c10b066b5cff99a689c22241
11637Author: Egbert Eich <eich-at-freedesktop-dot-org>
11638Date:   Tue May 17 08:10:10 2005 +0000
11639
11640    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).
11641
11642commit 23198d2bfbf0049b2630235cd4d4a4ffba7ec6c1
11643Author:  <ssp@aware-of-vacuity.boston.redhat.com>
11644Date:   Mon May 16 22:35:27 2005 +0000
11645
11646    Make Xdmcp unconditionally required, require various protocol modules.
11647    Mon May 16 17:48:03 2005 Søren Sandmann <sandmann@redhat.com>
11648    Check for kbproto if using XKB.
11649    Require xextproto rather than xextensions
11650    Remove the entries from the xlibs tree, as they are not relevant here.
11651
11652commit 8bd3aea84ce54b8b76a898f3ae00e2b499c14a5e
11653Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
11654Date:   Mon May 16 21:48:36 2005 +0000
11655
11656    Mon May 16 17:48:03 2005 Søren Sandmann <sandmann@redhat.com>
11657    Check for kbproto if using XKB.
11658
11659commit 9b1fa9ca3ed852ed40860f137511683f4bdae6fa
11660Author:  <ssp@aware-of-vacuity.boston.redhat.com>
11661Date:   Mon May 16 21:27:35 2005 +0000
11662
11663    Require xextproto rather than xextensions
11664    Remove the entries from the xlibs tree, as they are not relevant here.
11665
11666commit 7eee605e3aeed549d1053325a03027c5e8cbf71b
11667Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
11668Date:   Fri May 13 22:53:36 2005 +0000
11669
11670    - For now put xtrans in X11/Xtrans/X11, since libX11 is looking for it in <X11/...>
11671    - For Xcomposite and Xdamage, don't link the build system out of the xc tree
11672    - Link the public X11 headers into their own directory
11673    - Add links to XKeysymDB and XErrorDB
11674    - Add links to all the Xlib man pages
11675    - Add links to the lcUniConv subdirectory
11676    - Conditionally include config.h in Xlib source
11677
11678commit 6769ccda88caf27d1441d335ef2b318a047a612b
11679Author: Alan Coopersmith <alan.coopersmith@sun.com>
11680Date:   Mon Mar 21 04:58:21 2005 +0000
11681
11682    xc/lib/X11/ErrDes.c
11683    //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>
11684
11685commit 3b9e8ece93b916c55a82df53e85f097418edf471
11686Author: Roland Mainz <roland.mainz@nrubsig.org>
11687Date:   Sat Mar 19 22:04:55 2005 +0000
11688
11689    xc/nls/Compose/iso8859-2
11690    xc/nls/Compose/iso8859-3
11691    xc/nls/Compose/iso8859-9
11692    //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>.
11693
11694commit 0ce5950a08b9ab23ca8a32effdd40c421e92df84
11695Author: Alan Coopersmith <alan.coopersmith@sun.com>
11696Date:   Tue Mar 8 02:53:36 2005 +0000
11697
11698    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>.
11699
11700commit df341cd2f2f263f13323e8c0936ea8aa0d7fbba1
11701Author: Roland Mainz <roland.mainz@nrubsig.org>
11702Date:   Tue Feb 1 03:12:28 2005 +0000
11703
11704    xc/nls/Compose/pt_BR.UTF-8
11705    //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>.
11706
11707commit 483d3973f56dda51f9251d3ea808aaf7f3b48c10
11708Author: Markus Kuhn <Markus.Kuhn@cl.cam.ac.uk>
11709Date:   Fri Jan 28 18:31:31 2005 +0000
11710
11711    cleaned up boundary-case handling for Uxxxx Unicode keysym notation
11712
11713commit f234188a4c1e6b655aef0e3957ccad20d4c5847f
11714Author: Roland Mainz <roland.mainz@nrubsig.org>
11715Date:   Wed Jan 19 01:53:55 2005 +0000
11716
11717    xc/nls/compose.dir
11718    xc/nls/locale.dir
11719    xc/nls/Compose/Imakefile
11720    xc/nls/Compose/pt_BR.UTF-8
11721    xc/nls/XI18N_OBJS/Imakefile
11722    xc/nls/XI18N_OBJS/pt_BR.UTF-8
11723    xc/nls/XLC_LOCALE/Imakefile
11724    xc/nls/XLC_LOCALE/pt_BR.UTF-8
11725    //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.
11726
11727commit 7448ea7ef425d35cfc31eb41d46f4d879774f376
11728Author: Egbert Eich <eich-at-freedesktop-dot-org>
11729Date:   Fri Jan 14 18:03:09 2005 +0000
11730
11731    Made some security enhancements:
11732    - no writing past end of buffer caused by bogus locale.
11733    - explicitely add a \0 character at end of string. (Bugzilla #2262)
11734
11735commit 5557d47fcf22a6f3adf327691158f2270e3d5094
11736Author: Roland Mainz <roland.mainz@nrubsig.org>
11737Date:   Fri Jan 14 04:59:05 2005 +0000
11738
11739    xc/nls/compose.dir
11740    xc/nls/locale.alias
11741    xc/nls/locale.dir
11742    //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>.
11743
11744commit 1fa3737f042f798fa11a9ff5b03f3b3ba3529824
11745Author: Egbert Eich <eich-at-freedesktop-dot-org>
11746Date:   Tue Jan 11 17:37:57 2005 +0000
11747
11748    '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.
11749
11750commit 642cd269f94a234aa470a1d43385bd42625d89a1
11751Author: Egbert Eich <eich-at-freedesktop-dot-org>
11752Date:   Tue Dec 14 08:59:20 2004 +0000
11753
11754    Removed #ifdef'ed out code together with the comment explaining why it was #ifdef'ed out.
11755    Fixed typo.
11756    Added comment to a changed that's been committed with one of the previous commits.
11757
11758commit a07ccae36e629741d2e48de7730114d30a975a41
11759Author: Matthieu Herrb <matthieu.herrb@laas.fr>
11760Date:   Sun Dec 12 08:42:50 2004 +0000
11761
11762    Fix missing XChangeProperty() prototype missing in synopsis section.
11763
11764commit c73adb1c8ad806c2f9f0ba32f4b449e7a871501c
11765Author: Alexander Gottwald <ago at freedesktop dot org>
11766Date:   Wed Dec 8 13:42:01 2004 +0000
11767
11768    Bugzilla #1980 (https://bugs.freedesktop.org/show_bug.cgi?id=1980) Handle XERRORDB only on WIN32 platform
11769
11770commit d5e7ab194103e22fd6c5094aaa107d90210bb600
11771Author: Jim Gettys <jg@freedesktop.org>
11772Date:   Thu Dec 2 16:18:16 2004 +0000
11773
11774    fix comment to indicate additional possible mode. i bug 1756 reported by Owen Taylor.
11775
11776commit 03940d7330cb1bbf93d49c650aefb19de457da7c
11777Author: Alexander Gottwald <ago at freedesktop dot org>
11778Date:   Wed Dec 1 13:06:55 2004 +0000
11779
11780    Bugzilla #1980, https://bugs.freedesktop.org/show_bug.cgi?id=1980 Make location of XErrorDB configurable
11781
11782commit 11a03ab908bfcfab8a3492684e8e9320e492d552
11783Author: Alexander Gottwald <ago at freedesktop dot org>
11784Date:   Wed Dec 1 12:42:17 2004 +0000
11785
11786    Bugzilla #1864, http://freedesktop.org/bugzilla/show_bug.cgi?id=1864 Initialize pointer to NULL to avoid freeing random memory
11787
11788commit f3d83ee153f42e8899b844377e6b842d93411e62
11789Author: Alexander Gottwald <ago@freedesktop.org>
11790Date:   Mon Nov 15 15:06:54 2004 +0000
11791
11792    Bufzilla #1802, http://freedesktop.org/bugzilla/show_bug.cgi?id=1802 Added mingw (Win32) port
11793
11794commit b798ea11911ac58a8e6e7d15a2a643b023859749
11795Author: Alexander Gottwald <ago at freedesktop dot org>
11796Date:   Mon Nov 15 13:29:56 2004 +0000
11797
11798    Bugzilla #1864, http://freedesktop.org/bugzilla/show_bug.cgi?id=1864 Initialize pointer to NULL to avoid freeing random memory
11799
11800commit 436108cd6c84053698e5ca629096f59b34f50c2a
11801Author: Kristian Høgsberg <krh@redhat.com>
11802Date:   Thu Nov 11 15:37:01 2004 +0000
11803
11804    Fix #1818
11805
11806commit bf2e6ef66ba55f90efa4a4ba8c8b6d3ec0d1531c
11807Author: Roland Mainz <roland.mainz@nrubsig.org>
11808Date:   Tue Nov 9 00:56:56 2004 +0000
11809
11810    xc/nls/compose.dir
11811    xc/nls/locale.alias
11812    xc/nls/locale.dir
11813    //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>.
11814
11815commit 443890ceefbd6dafe68e30d103ec4f9d316ed655
11816Author: Roland Mainz <roland.mainz@nrubsig.org>
11817Date:   Fri Nov 5 00:58:49 2004 +0000
11818
11819    xc/nls/compose.dir
11820    xc/nls/locale.alias
11821    xc/nls/locale.dir
11822    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>.
11823
11824commit af7467ec734321f127b957921cce7792902b6794
11825Author: Egbert Eich <eich-at-freedesktop-dot-org>
11826Date:   Mon Oct 18 17:29:03 2004 +0000
11827
11828    Correcting font encodings for GB18030, GBK and BIG5-HKSCS. Adding nls support for those encodings (Bugzilla 1573, James Su).
11829
11830commit 1b900b59cb24fe8be3db0d434b04d462c0eeb206
11831Author: Egbert Eich <eich-at-freedesktop-dot-xorg>
11832Date:   Mon Oct 18 14:21:45 2004 +0000
11833
11834    Made handling of DevelDrivers for x86-64 more conformant to other platforms.
11835    Compress all font encodings (Stefan Dirsch).
11836    Fixed warnings.
11837    Turn on forwarding XNSpotLocation event to XIM server in OffTheSpot and Root mode (bugzilla #1580, James Su).
11838    Added another compose key combination for the Euro symbol (Stefan Dirsch).
11839    Added support for UTF-8 in ja_JP, ko_KR and zh_TW locales (Mike Fabian).
11840    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.
11841    Added explanation for DESTDIR to install to a different directory than /.
11842    Added some early bailouts to atiprobe if PCI structure pointer is NULL to prevent sig11.
11843    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.
11844    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().
11845    Use /dev/xconsole (named pipe) or devpts for system logger (Werner Fink).
11846    Create missing links for backward compatibility to XFree86 (Stefan Dirsch).
11847    Changed comment to mention xorg.
11848    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).
11849    Added 'pic' to the man page rendering command pipeline (Werner Fink).
11850    Added missing return value (Stefan Dirsch, Roland Mainz)
11851
11852commit 1ba103c3cad2329db3a31f88d7798b913affc570
11853Author: Eric Anholt <anholt@freebsd.org>
11854Date:   Wed Oct 13 07:38:00 2004 +0000
11855
11856    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>)
11857
11858commit d80237db627bf71ad5615ff4ba05e6ab436aa740
11859Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
11860Date:   Fri Oct 8 22:57:56 2004 +0000
11861
11862    Fri Oct 8 18:53:11 2004 Soeren Sandmann <sandmann@redhat.com>
11863    Move iso10646 last so the "fallback" fonts will actually be used if they are better matches.
11864
11865commit d1f76d17ecf418396627b1a58319f2b9b255548a
11866Author: Markus Kuhn <Markus.Kuhn@cl.cam.ac.uk>
11867Date:   Sun Sep 26 22:54:57 2004 +0000
11868
11869    bug fix for previous patch
11870
11871commit 48932d9b71d10e15812f47d5b842ab6aa8dac625
11872Author: Markus Kuhn <Markus.Kuhn@cl.cam.ac.uk>
11873Date:   Sun Sep 26 20:46:17 2004 +0000
11874
11875    The big keysym cleanup, to bring implementation in line with the recent revision of Appendix A of the protocol spec. (Markus Kuhn)
11876
11877commit 2e02a95dcc43dd3ec7bbaf4675ffb94f5074f543
11878Author: Egbert Eich <eich@freedesktop.org>
11879Date:   Wed Sep 15 09:05:22 2004 +0000
11880
11881    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).
11882    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).
11883
11884commit 2d3afb68a104a80a21ee622b9abb9c95e83505d3
11885Author: Egbert Eich <eich@freedesktop.org>
11886Date:   Tue Aug 31 11:37:03 2004 +0000
11887
11888    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).
11889
11890commit e689746c8d0e21e9011e8b91a3071d235d3a2a74
11891Author: Kevin E Martin <kem@kem.org>
11892Date:   Thu Aug 19 06:48:06 2004 +0000
11893
11894    Fix header file to #ifdef the XKB keysyms when they are used. This fixes the X test suite build failure.
11895
11896commit d558a53a6f57eecfcaadce5141fe3a08860defcb
11897Author: Keith Packard <keithp@keithp.com>
11898Date:   Sat Aug 14 07:12:36 2004 +0000
11899
11900    Use XLIB_SKIP_ARGB_VISUALS environment variable to disable all depth 32 visuals. Necessary to keep Flash from crashing.
11901    Must call ValidateGC/ValidatePicture on "real" GC/Picture to ensure pCompositeClip is set correctly.
11902    Need to take the composite clip from the "real" GC/Picture and turn it into the clientClip for the backing version.
11903    Adjust pixmap screen origin to account for drawable->x/y Change debugging output a bit (disabled by default)
11904
11905commit 85c2d81f299ed3444658011b7d6fb0a7ab8a6f55
11906Author: Alexander Gottwald <ago@freedesktop.org>
11907Date:   Fri Aug 13 16:28:19 2004 +0000
11908
11909    Set most significant bit to be a one. (Bug #1024, Kensuke Matsuzaki)
11910    Fix conversion from sjis and euc. (Bug #1024, Toshio Takabe)
11911
11912commit c4d56e4e288d4e48b84b021a61638f46e9a45e27
11913Author: Adam Jackson <ajax@nwnk.net>
11914Date:   Wed Aug 11 05:25:13 2004 +0000
11915
11916    Bug #372: Prevent a crash in XPolygonRegion when called with a bogus point count. Reported by Andreas Luik.
11917
11918commit 92487437173f600f208d825f65756d3ad14a4f7e
11919Author: Kevin E Martin <kem@kem.org>
11920Date:   Mon Aug 9 22:37:22 2004 +0000
11921
11922    Fix install problem on platforms not using xorg.cf/xfree86.cf (Bug #339, Harold L. Hunt II, Alexander Gottwald).
11923    Fix crash when using X core font in zh_CN.UTF-8 locale (Bug #368, Yu Shao, David Dawes).
11924    Fix glXMakeCurrent(Dpy, None, NULL) crash (Bug #719, Adam Jackson).
11925    HP-PA build fix (Bug #828, Guy Martin, Paul Anderson).
11926    Fix SDK build for GATOS and Wacom driver (Bug #829, Bryan Stine).
11927    Fix attempt to read video ROM before enabling it (Bug #843, Ivan Kokshaysky, Mike A. Harris).
11928    Fix detection of primary adapter (Bug #843, Ivan Kokshaysky, Mike A. Harris).
11929    Clarify xset man page description of how to use the keyboard repeat rate settings (Bug #846, Mike A. Harris).
11930    Fix problem where print-screen key would get remapped to sys-req in certain keymaps, which broke GNOME printscreen functionality (Bug #847, Owen Taylor).
11931    Fix several render problems:
11932    - MMIO mode support
11933    - Hang on IGP chips
11934    - VT switching hang
11935    - 3D render corruption (Bug #922, Hui Yu).
11936
11937commit 55c2ee568e7d3903258286a13bdf96ce5348ffda
11938Author: Matthieu Herrb <matthieu.herrb@laas.fr>
11939Date:   Tue Jul 27 06:06:05 2004 +0000
11940
11941    - remove remaining AMOEBA references.
11942    - remove unused file.
11943
11944commit 6e884b12911eedfb003e90a3829ce66f7fc9cf2d
11945Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
11946Date:   Tue Jul 20 17:48:09 2004 +0000
11947
11948    Tue Jul 20 19:38:06 2004 Soeren Sandmann <sandmann@daimi.au.dk>
11949    Set font_data->xlfd_data to NULL after XFree(). (#837, patch from Bastien Nocera).
11950    Tue Jul 20 18:23:32 2004 Soeren Sandmann <sandmann@daimi.au.dk>
11951    Use /dev/urandom on Linux.(#761).
11952
11953commit 6f0bc97aa4e6de5a4b001f40ac10795cfdf09fc1
11954Author: Eric Anholt <anholt@freebsd.org>
11955Date:   Fri May 28 23:26:44 2004 +0000
11956
11957    Forced commit to note repocopy from xc/lib/XThrStub, will be connected to the build after this.
11958
11959commit aa7010c43ae9f39fb84b5ff155f76117c9e527a0
11960Author: Egbert Eich <eich@pdx.freedesktop.org>
11961Date:   Mon May 24 19:02:11 2004 +0000
11962
11963    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.
11964
11965commit 720702da29769d80ad1254d92edbad5b30f8a8da
11966Author: Alan Coopersmith <alan.coopersmith@sun.com>
11967Date:   Sat May 22 03:47:42 2004 +0000
11968
11969    Bugzilla #658: XStringToKeysym fails for Greek_IOTAdiaeresis (Fixes VSW5 testcase XStringToKeysym-7 failure)
11970
11971commit 3aed873292424b497d9a7dcee2975b95bf5ac966
11972Author: Alan Coopersmith <alan.coopersmith@sun.com>
11973Date:   Sat Apr 24 23:39:25 2004 +0000
11974
11975    XOpenDisplay should try tcp connection if local connections fail (aka Sun bug id #4624183).
11976    Also includes fix from NetBSD Problem Report #25098 (Michael van Elst) (Xlib segfaults with IPv6 if compiled with HASXDMAUTH).
11977    xc/config/cf/sunLib.tmpl
11978    xc/lib/FS/Imakefile Add missing shared library dependencies for Solaris
11979
11980commit c6349f43193b74a3c09945f3093a871b0157ba47
11981Author: Egbert Eich <eich@freedesktop.org>
11982Date:   Fri Apr 23 18:42:09 2004 +0000
11983
11984    Merging XORG-CURRENT into trunk
11985
11986commit c3c4ddc682950a01b80825021f3e2503ab01ea7f
11987Author: Kaleb Keithley <kaleb@freedesktop.org>
11988Date:   Tue Nov 25 19:28:07 2003 +0000
11989
11990    Initial revision
11991
11992commit dc4268a7dadc8da0d561757a68461246728613d3
11993Author: Kaleb Keithley <kaleb@freedesktop.org>
11994Date:   Fri Nov 14 16:48:47 2003 +0000
11995
11996    Initial revision
11997
11998commit deae12c6b683898f5213992d561a59d4ea889cca
11999Author: Kaleb Keithley <kaleb@freedesktop.org>
12000Date:   Fri Nov 14 15:54:30 2003 +0000
12001
12002    R6.6 is the Xorg base-line
12003