ChangeLog revision eb411b4b
1commit 95a388158c9d73df7d24016d6a3d61506d7d53a4
2Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3Date:   Thu May 23 19:43:35 2013 -0700
4
5    libX11 1.5.99.902 (1.6 RC2)
6    
7    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8
9commit a3bdd2b090915fe0163b062f0e6576fe05dd332e
10Author: Julien Cristau <jcristau@debian.org>
11Date:   Thu May 23 20:39:46 2013 +0200
12
13    xkb: fix off-by-one in _XkbReadGetNamesReply and _XkbReadVirtualModMap
14    
15    The size of the arrays is max_key_code + 1.  This makes these functions
16    consistent with the other checks added for CVE-2013-1997.
17    
18    Also check the XkbGetNames reply when names->keys was just allocated.
19    
20    Signed-off-by: Julien Cristau <jcristau@debian.org>
21    Tested-by: Colin Walters <walters@verbum.org>
22    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
23
24commit 7e30056e78e4b7979ff47f102e00327617266019
25Author: Niveditha Rau <Niveditha.Rau@Oracle.COM>
26Date:   Fri May 17 15:26:21 2013 -0700
27
28    Make sure internal headers include required headers
29    
30    Fixes builds with Solaris Studio 12.3 when lint is enabled, since it no
31    longer ignores *.h files, but complains when they reference undefined
32    typedefs or macros.
33    
34    Signed-off-by: Niveditha Rau <Niveditha.Rau@Oracle.COM>
35    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
36
37commit 2820100bf8ba130b94253f415e7fa5ac28bb2037
38Author: Alan Coopersmith <alan.coopersmith@oracle.com>
39Date:   Thu May 16 23:05:36 2013 -0700
40
41    Free fs->properties in _XF86BigfontQueryFont overflow error path
42    
43    Fixes small memory leak introduced in commit 5669a22081
44    
45    Reported-by: Julien Cristau <jcristau@debian.org>
46    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
47
48commit 3131740513133a9ff7cb12123d29ceb18584fc38
49Author: Matthieu Herrb <matthieu.herrb@laas.fr>
50Date:   Wed May 8 19:33:09 2013 +0200
51
52    XListFontsWithInfo: Re-decrement flist[0] before calling free() on it.
53    
54    Freeing a pointer that wasn't returned by malloc() is undefined
55    behavior and produces an error with OpenBSD's implementation.
56    
57    Signed-off-by: Matthieu Herrb <matthieu.herrb@laas.fr>
58    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
59    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
60
61commit 3fe4bea086149f06a142a8f1d575f627ec1e22c7
62Author: Alan Coopersmith <alan.coopersmith@oracle.com>
63Date:   Fri Apr 19 14:30:40 2013 -0700
64
65    Give GNU & Solaris Studio compilers hints about XEatData branches
66    
67    Try to offset the cost of all the recent checks we've added by giving
68    the compiler a hint that the branches that involve us eating data
69    are less likely to be used than the ones that process it.
70    
71    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
72
73commit e1b457beb8d4e831ef44279dada6c475cb955738
74Author: Alan Coopersmith <alan.coopersmith@oracle.com>
75Date:   Sun Mar 31 12:22:35 2013 -0700
76
77    _XkbReadGetMapReply: reject maxKeyCodes smaller than the minKeyCode
78    
79    Various other bounds checks in the code assume this is true, so
80    enforce it when we first get the data from the X server.
81    
82    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
83
84commit 12ad4c6432496897ff000eb7cfecd0fb4b290331
85Author: Alan Coopersmith <alan.coopersmith@oracle.com>
86Date:   Sat Mar 16 10:03:13 2013 -0700
87
88    Use calloc in XOpenDisplay to initialize structs containing pointers
89    
90    Prevents trying to free uninitialized pointers if we have to bail out
91    partway through setup, such as if we receive a corrupted or incomplete
92    connection setup block from the server.
93    
94    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
95
96commit d38527e25f8b6e2f1174ecc21260c5c5416f972e
97Author: Alan Coopersmith <alan.coopersmith@oracle.com>
98Date:   Thu Mar 7 23:46:05 2013 -0800
99
100    Remove more unnecessary casts from Xmalloc/calloc calls
101    
102    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
103
104commit b2c86b582c58f50c7b14da01cf7ebd20ef12a6b2
105Author: Alan Coopersmith <alan.coopersmith@oracle.com>
106Date:   Sat Mar 2 16:56:16 2013 -0800
107
108    Convert more _XEatData callers to _XEatDataWords
109    
110    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
111    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
112
113commit 192bbb9e2fc45df4e17b35b6d14ea0eb418dbd39
114Author: Alan Coopersmith <alan.coopersmith@oracle.com>
115Date:   Sat Mar 9 11:04:37 2013 -0800
116
117    Make XGetWindowProperty() always initialize returned values
118    
119    Avoids memory corruption and other errors when callers access them
120    without checking to see if XGetWindowProperty() returned an error value.
121    
122    Callers are still required to check for errors, this just reduces the
123    damage when they don't.
124    
125    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
126    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
127    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
128
129commit db1b1c871da29aa0545182bf888df81627f165a5
130Author: Alan Coopersmith <alan.coopersmith@oracle.com>
131Date:   Sat Mar 2 15:08:21 2013 -0800
132
133    Avoid overflows in XListExtensions() [CVE-2013-1997 15/15]
134    
135    Ensure that when breaking the returned list into individual strings,
136    we don't walk past the end of allocated memory to write the '\0' bytes
137    
138    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
139    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
140
141commit 8d5936594993921acdfec778dd8f41b555e2543a
142Author: Alan Coopersmith <alan.coopersmith@oracle.com>
143Date:   Sat Mar 2 15:08:21 2013 -0800
144
145    Avoid overflows in XGetFontPath() [CVE-2013-1997 14/15]
146    
147    Ensure that when breaking the returned list into individual strings,
148    we don't walk past the end of allocated memory to write the '\0' bytes
149    
150    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
151    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
152
153commit 0c404db6a92dc2c198328bf586c02d8abbe02013
154Author: Alan Coopersmith <alan.coopersmith@oracle.com>
155Date:   Sat Mar 2 15:08:21 2013 -0800
156
157    Avoid overflows in XListFonts() [CVE-2013-1997 13/15]
158    
159    Ensure that when breaking the returned list into individual strings,
160    we don't walk past the end of allocated memory to write the '\0' bytes
161    
162    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
163    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
164
165commit 0b0f5d4358c3de7563d6af03f0d2ce454702a06a
166Author: Alan Coopersmith <alan.coopersmith@oracle.com>
167Date:   Sat Mar 2 15:08:21 2013 -0800
168
169    integer overflow in XGetModifierMapping() [CVE-2013-1981 13/13]
170    
171    Ensure that we don't underallocate when the server claims a very large reply
172    
173    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
174    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
175
176commit a351b8103b2ba78882e1c309e85893ca3abe2073
177Author: Alan Coopersmith <alan.coopersmith@oracle.com>
178Date:   Sat Mar 2 15:08:21 2013 -0800
179
180    integer overflow in XGetPointerMapping() & XGetKeyboardMapping() [CVE-2013-1981 12/13]
181    
182    Ensure that we don't underallocate when the server claims a very large reply
183    
184    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
185    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
186
187commit 833f6b70bc789d33607f6dbfee9e0a4178ec4b59
188Author: Alan Coopersmith <alan.coopersmith@oracle.com>
189Date:   Sat Mar 2 15:08:21 2013 -0800
190
191    integer overflow in XGetImage() [CVE-2013-1981 11/13]
192    
193    Ensure that we don't underallocate when the server claims to have sent a
194    very large reply.
195    
196    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
197    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
198
199commit 79d8dc08eb98842173ce239b9dd60df0e9e9ae72
200Author: Alan Coopersmith <alan.coopersmith@oracle.com>
201Date:   Fri Mar 8 22:25:35 2013 -0800
202
203    integer overflow in XGetWindowProperty() [CVE-2013-1981 10/13]
204    
205    If the reported number of properties is too large, the calculations
206    to allocate memory for them may overflow, leaving us returning less
207    memory to the caller than implied by the value written to *nitems.
208    
209    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
210    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
211    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
212
213commit 164bf4dfe839b1cc75cdeee378a243d04a8200e4
214Author: Alan Coopersmith <alan.coopersmith@oracle.com>
215Date:   Sat Mar 2 13:18:48 2013 -0800
216
217    integer overflows in TransFileName() [CVE-2013-1981 9/13]
218    
219    When trying to process file paths the tokens %H, %L, & %S are expanded
220    to $HOME, the standard compose file path & the xlocaledir path.
221    If enough of these tokens are repeated and values like $HOME are set to
222    very large values, the calculation of the total string size required to
223    hold the expanded path can overflow, resulting in allocating a smaller
224    string than the amount of data we'll write to it.
225    
226    Simply restrict all of these values, and the total path size to PATH_MAX,
227    because really, that's all you should need for a filename path.
228    
229    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
230    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
231    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
232
233commit 460e8a223b87d4fa0ea1e97823e998a770e0f2a2
234Author: Alan Coopersmith <alan.coopersmith@oracle.com>
235Date:   Fri Mar 1 18:37:37 2013 -0800
236
237    integer truncation in _XimParseStringFile() [CVE-2013-1981 8/13]
238    
239    Called from _XimCreateDefaultTree() which uses getenv("XCOMPOSEFILE")
240    to specify filename.
241    
242    If the size of off_t is larger than the size of unsigned long (as in
243    32-bit builds with large file flags), a file larger than 4 gigs could
244    have its size truncated, leading to data from that file being written
245    past the end of the undersized buffer allocated for it.
246    
247    While configure.ac does not use AC_SYS_LARGEFILE to set large file mode,
248    builders may have added the large file compilation flags to CFLAGS on
249    their own.
250    
251    size is left limited to an int, because if your Xim file is
252    larger than 2gb, you're doing it wrong.
253    
254    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
255    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
256    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
257
258commit 226622349a4b1e16064649d4444a34fb4be4f464
259Author: Alan Coopersmith <alan.coopersmith@oracle.com>
260Date:   Sat Mar 2 12:39:58 2013 -0800
261
262    Unbounded recursion in _XimParseStringFile() when parsing include files [CVE-2013-2004 2/2]
263    
264    parseline() can call _XimParseStringFile() which can call parseline()
265    which can call _XimParseStringFile() which can call parseline() ....
266    eventually causing recursive stack overflow and crash.
267    
268    Limit is set to a include depth of 100 files, which should be enough
269    for all known use cases, but could be adjusted later if necessary.
270    
271    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
272    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
273    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
274
275commit 236b603d235dc264d1c6250dca09c745458a9088
276Author: Alan Coopersmith <alan.coopersmith@oracle.com>
277Date:   Sat Mar 2 12:01:39 2013 -0800
278
279    Unbounded recursion in GetDatabase() when parsing include files [CVE-2013-2004 1/2]
280    
281    GetIncludeFile() can call GetDatabase() which can call GetIncludeFile()
282    which can call GetDatabase() which can call GetIncludeFile() ....
283    eventually causing recursive stack overflow and crash.
284    
285    Easily reproduced with a resource file that #includes itself.
286    
287    Limit is set to a include depth of 100 files, which should be enough
288    for all known use cases, but could be adjusted later if necessary.
289    
290    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
291    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
292    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
293
294commit 076428918e6c35f66b9b55c3fa097ff06496d155
295Author: Alan Coopersmith <alan.coopersmith@oracle.com>
296Date:   Fri Mar 1 18:37:37 2013 -0800
297
298    integer overflow in ReadInFile() in Xrm.c [CVE-2013-1981 7/13]
299    
300    Called from XrmGetFileDatabase() which gets called from InitDefaults()
301    which gets the filename from getenv ("XENVIRONMENT")
302    
303    If file is exactly 0xffffffff bytes long (or longer and truncates to
304    0xffffffff, on implementations where off_t is larger than an int),
305    then size may be set to a value which overflows causing less memory
306    to be allocated than is written to by the following read() call.
307    
308    size is left limited to an int, because if your Xresources file is
309    larger than 2gb, you're very definitely doing it wrong.
310    
311    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
312    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
313    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
314
315commit 90fd5abac2faca86f9f100353a3c9c7b89f31484
316Author: Alan Coopersmith <alan.coopersmith@oracle.com>
317Date:   Sat Mar 2 11:44:19 2013 -0800
318
319    Integer overflows in stringSectionSize() cause buffer overflow in ReadColornameDB() [CVE-2013-1981 6/13]
320    
321    LoadColornameDB() calls stringSectionSize() to do a first pass over the
322    file (which may be provided by the user via XCMSDB environment variable)
323    to determine how much memory needs to be allocated to read in the file,
324    then allocates the returned sizes and calls ReadColornameDB() to load the
325    data from the file into that newly allocated memory.
326    
327    If stringSectionSize() overflows the signed ints used to calculate the
328    file size (say if you have an xcmsdb with ~4 billion lines in or a
329    combined string length of ~4 gig - which while it may have been
330    inconceivable when Xlib was written, is quite possible today), then
331    LoadColornameDB() may allocate a memory buffer much smaller than the
332    amount of data ReadColornameDB() will write to it.
333    
334    The total size is left limited to an int, because if your xcmsdb file
335    is larger than 2gb, you're doing it wrong.
336    
337    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
338    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
339    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
340
341commit b9ba832401734e1cbd30a930c0d11d850293f3f9
342Author: Alan Coopersmith <alan.coopersmith@oracle.com>
343Date:   Sat Mar 2 11:25:25 2013 -0800
344
345    unvalidated length in _XimXGetReadData() [CVE-2013-1997 12/15]
346    
347    Check the provided buffer size against the amount of data we're going to
348    write into it, not against the reported length from the ClientMessage.
349    
350    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
351    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
352    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
353
354commit de2e6c322c4aca22856b380f67f8e488e7510015
355Author: Alan Coopersmith <alan.coopersmith@oracle.com>
356Date:   Sat Mar 2 11:11:08 2013 -0800
357
358    unvalidated index/length in _XkbReadGetNamesReply() [CVE-2013-1997 11/15]
359    
360    If the X server returns key name indexes outside the range of the number
361    of keys it told us to allocate, out of bounds memory writes could occur.
362    
363    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
364    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
365    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
366
367commit 2df882eeb3a70256170127a746a9ba26376599a1
368Author: Alan Coopersmith <alan.coopersmith@oracle.com>
369Date:   Sat Mar 2 11:01:04 2013 -0800
370
371    unvalidated index in _XkbReadVirtualModMap() [CVE-2013-1997 10/15]
372    
373    If the X server returns modifier map indexes outside the range of the number
374    of keys it told us to allocate, out of bounds memory writes could occur.
375    
376    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
377    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
378    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
379
380commit 4d7c422a37eb9617fb22f8e37527c2b34b105665
381Author: Alan Coopersmith <alan.coopersmith@oracle.com>
382Date:   Sat Mar 2 11:04:44 2013 -0800
383
384    unvalidated index in _XkbReadExplicitComponents() [CVE-2013-1997 9/15]
385    
386    If the X server returns key indexes outside the range of the number of
387    keys it told us to allocate, out of bounds memory writes could occur.
388    
389    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
390    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
391    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
392
393commit e56a2ada719c5cfac5ed61a52a80ade86c0f5957
394Author: Alan Coopersmith <alan.coopersmith@oracle.com>
395Date:   Sat Mar 2 10:51:51 2013 -0800
396
397    unvalidated index in _XkbReadModifierMap() [CVE-2013-1997 8/15]
398    
399    If the X server returns modifier map indexes outside the range of the number
400    of keys it told us to allocate, out of bounds memory writes could occur.
401    
402    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
403    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
404    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
405
406commit 06c086e8a1d8374ea9a95ff989f053c96bb1bdca
407Author: Alan Coopersmith <alan.coopersmith@oracle.com>
408Date:   Sat Mar 2 10:39:21 2013 -0800
409
410    unvalidated index in _XkbReadKeyBehaviors() [CVE-2013-1997 7/15]
411    
412    If the X server returns key behavior indexes outside the range of the number
413    of keys it told us to allocate, out of bounds memory writes could occur.
414    
415    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
416    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
417    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
418
419commit 00626c3830b869259098985afa38933d77ccec72
420Author: Alan Coopersmith <alan.coopersmith@oracle.com>
421Date:   Sat Mar 2 09:40:22 2013 -0800
422
423    unvalidated index in _XkbReadKeyActions() [CVE-2013-1997 6/15]
424    
425    If the X server returns key action indexes outside the range of the number
426    of keys it told us to allocate, out of bounds memory access could occur.
427    
428    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
429    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
430    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
431
432commit fd7d4956bc7a1c4b5c38661b12777ebee4d685d9
433Author: Alan Coopersmith <alan.coopersmith@oracle.com>
434Date:   Sat Mar 2 09:28:33 2013 -0800
435
436    unvalidated index in _XkbReadKeySyms() [CVE-2013-1997 5/15]
437    
438    If the X server returns keymap indexes outside the range of the number of
439    keys it told us to allocate, out of bounds memory access could occur.
440    
441    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
442    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
443    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
444
445commit 59ae16a00d18588e98af57d26e442af8ea42b7aa
446Author: Alan Coopersmith <alan.coopersmith@oracle.com>
447Date:   Sat Mar 2 09:18:26 2013 -0800
448
449    unvalidated indexes in _XkbReadGetGeometryReply() [CVE-2013-1997 4/15]
450    
451    If the X server returns color indexes outside the range of the number of
452    colors it told us to allocate, out of bounds memory access could occur.
453    
454    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
455    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
456    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
457
458commit bff938b9fe1629cbacb726509edfa2a3840b7207
459Author: Alan Coopersmith <alan.coopersmith@oracle.com>
460Date:   Sat Mar 2 09:12:47 2013 -0800
461
462    unvalidated indexes in _XkbReadGeomShapes() [CVE-2013-1997 3/15]
463    
464    If the X server returns shape indexes outside the range of the number
465    of shapes it told us to allocate, out of bounds memory access could occur.
466    
467    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
468    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
469    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
470
471commit f293659d5a4024bda386305bb7ebeb4647c40934
472Author: Alan Coopersmith <alan.coopersmith@oracle.com>
473Date:   Fri Mar 1 22:49:01 2013 -0800
474
475    unvalidated index in _XkbReadGetDeviceInfoReply() [CVE-2013-1997 2/15]
476    
477    If the X server returns more buttons than are allocated in the XKB
478    device info structures, out of bounds writes could occur.
479    
480    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
481    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
482    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
483
484commit cddc4e7e3cb4b9b7ad25f8591971a86901c249f2
485Author: Alan Coopersmith <alan.coopersmith@oracle.com>
486Date:   Fri Mar 1 19:30:09 2013 -0800
487
488    unvalidated lengths in XAllocColorCells() [CVE-2013-1997 1/15]
489    
490    If a broken server returned larger than requested values for nPixels or
491    nMasks, XAllocColorCells would happily overflow the buffers provided by
492    the caller to write the results into.
493    
494    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
495    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
496    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
497
498commit 2cd62b5eb99ffbb2fce99f3c459455e630b35bf7
499Author: Alan Coopersmith <alan.coopersmith@oracle.com>
500Date:   Fri Mar 1 22:49:01 2013 -0800
501
502    integer overflow in XListHosts() [CVE-2013-1981 5/13]
503    
504    If the reported number of host entries is too large, the calculations
505    to allocate memory for them may overflow, leaving us writing beyond the
506    bounds of the allocation.
507    
508    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
509    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
510    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
511
512commit 1f6a3dbf699b85c0ea715ef21de7e7095a714e12
513Author: Alan Coopersmith <alan.coopersmith@oracle.com>
514Date:   Fri Mar 1 22:49:01 2013 -0800
515
516    integer overflow in XGetMotionEvents() [CVE-2013-1981 4/13]
517    
518    If the reported number of motion events is too large, the calculations
519    to allocate memory for them may overflow, leaving us writing beyond the
520    bounds of the allocation.
521    
522    v2: Ensure nEvents is set to 0 when returning NULL events pointer
523    
524    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
525    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
526
527commit 39515b7c3ba8cae9021bf6695e378ae19487082f
528Author: Alan Coopersmith <alan.coopersmith@oracle.com>
529Date:   Fri Mar 1 22:49:01 2013 -0800
530
531    integer overflow in XListFontsWithInfo() [CVE-2013-1981 3/13]
532    
533    If the reported number of remaining fonts is too large, the calculations
534    to allocate memory for them may overflow, leaving us writing beyond the
535    bounds of the allocation.
536    
537    v2: Fix reply_left calculations, check calculated sizes fit in reply_left
538    v3: On error cases, also set values to be returned in pointer args to 0/NULL
539    
540    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
541    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
542
543commit 5669a220816b7d58fcaf0c302ead16fbe5c87817
544Author: Alan Coopersmith <alan.coopersmith@oracle.com>
545Date:   Fri Mar 1 21:05:27 2013 -0800
546
547    integer overflow in _XF86BigfontQueryFont() [CVE-2013-1981 2/13]
548    
549    Similar to _XQueryFont, but with more ways to go wrong and overflow.
550    Only compiled if libX11 is built with XF86BigFont support.
551    
552    v2: Fix reply_left calculations, check calculated sizes fit in reply_left
553    
554    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
555    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
556
557commit 6df8a63d34b7514077188e2062a13774f920c085
558Author: Alan Coopersmith <alan.coopersmith@oracle.com>
559Date:   Fri Mar 1 21:05:27 2013 -0800
560
561    integer overflow in _XQueryFont() on 32-bit platforms [CVE-2013-1981 1/13]
562    
563    If the CARD32 reply.nCharInfos * sizeof(XCharStruct) overflows an
564    unsigned long, then too small of a buffer will be allocated for the
565    data copied in from the reply.
566    
567    v2: Fix reply_left calculations, check calculated sizes fit in reply_left
568    
569    Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
570    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
571
572commit 9f5d83706543696fc944c1835a403938c06f2cc5
573Author: Alan Coopersmith <alan.coopersmith@oracle.com>
574Date:   Fri Mar 1 20:54:24 2013 -0800
575
576    Add _XEatDataWords to discard a given number of 32-bit words of reply data
577    
578    Matches the units of the length field in X protocol replies, and provides
579    a single implementation of overflow checking to avoid having to replicate
580    those checks in every caller.
581    
582    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
583    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
584
585commit d7f04c340ade3834e603c23d543132e1ee4e0c63
586Author: Alan Coopersmith <alan.coopersmith@oracle.com>
587Date:   Sat Mar 2 13:03:55 2013 -0800
588
589    Move repeated #ifdef magic to find PATH_MAX into a common header
590    
591    Lets stop duplicating the mess all over
592    
593    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
594    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
595
596commit f3a553a4e4a55d9d19deda1ea01883e1d5d682b1
597Author: Pander <pander@users.sourceforge.net>
598Date:   Tue May 7 18:38:14 2013 -0400
599
600    Add compose sequences for J́ and j́.
601    
602    The resulting sequences are:
603    
604      U+004A LATIN CAPITAL LETTER J  U+0301 COMBINING ACUTE ACCENT
605      U+006A LATIN SMALL LETTER J    U+0301 COMBINING ACUTE ACCENT
606    
607    Used in Dutch, per:
608    
609      http://lists.x.org/archives/xorg-devel/2013-February/035514.html
610      https://nl.wikipedia.org/wiki/Accenttekens_in_de_Nederlandse_spelling
611    
612    Signed-off-by: Pander <pander@users.sourceforge.net>
613    Signed-off-by: James Cloos <cloos@jhcloos.com>
614
615commit f49bb2dd6d4ea45c55bd21acc0efe2b764441020
616Author: Alan Coopersmith <alan.coopersmith@oracle.com>
617Date:   Sat Mar 16 18:30:56 2013 -0700
618
619    Move big request comment in XOpenDisplay to the right place
620    
621    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
622
623commit 3996543c1b2919e97d61a5d70fe1ebd7cd76fc83
624Author: Alan Coopersmith <alan.coopersmith@oracle.com>
625Date:   Sat Mar 9 19:16:03 2013 -0800
626
627    libX11 1.5.99.901 (1.6 RC1)
628    
629    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
630
631commit f9cd175a471116a616e681fb0ca1a61b3d84a6a0
632Author: Alan Coopersmith <alan.coopersmith@oracle.com>
633Date:   Fri Mar 8 22:33:28 2013 -0800
634
635    Fix very weird indenting in src/GetFProp.c
636    
637    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
638
639commit e9bd757630368afb374c5d1bcc5d4d85ad3c6c4c
640Author: Alan Coopersmith <alan.coopersmith@oracle.com>
641Date:   Fri Mar 8 15:37:33 2013 -0800
642
643    XAllocClassHint: Assume calloc sets pointers in allocated memory to NULL
644    
645    While the C standard technically allows for the compiler to translate
646    pointer = 0 or pointer = NULL into something other than filling the
647    pointer address with 0 bytes, the rest of the Xlib code already assumes
648    that calloc initializes any pointers in the struct to NULL, and there
649    are no known systems supported by X.Org where this is not true.
650    
651    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
652
653commit 39547d600a13713e15429f49768e54c3173c828d
654Author: Karl Tomlinson <xmail@karlt.net>
655Date:   Mon Feb 18 01:25:34 2013 +0000
656
657    MakeBigReq: don't move the last word, already handled by Data32
658    
659    MakeBigReq inserts a length field after the first 4 bytes of the request
660    (after req->length), pushing everything else back by 4 bytes.
661    
662    The current memmove moves everything but the first 4 bytes back.
663    If a request aligns to the end of the buffer pointer when MakeBigReq is
664    invoked for that request, this runs over the buffer.
665    Instead, we need to memmove minus the first 4 bytes (which aren't moved),
666    minus the last 4 bytes (so we still align to the previous tail).
667    
668    The 4 bytes that fell out are already handled with Data32, which will
669    handle the buffermax correctly.
670    
671    The case where req->length = 1 was already not functional.
672    
673    Reported by Abhishek Arya <inferno@chromium.org>.
674    
675    https://bugzilla.mozilla.org/show_bug.cgi?id=803762
676    
677    Reviewed-by: Jeff Muizelaar <jmuizelaar@mozilla.com>
678    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
679    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
680
681commit 3cdb6c3a1646f670afa03d424ec12ac418181d1e
682Author: Quentin Glidic <sardemff7+git@sardemff7.net>
683Date:   Tue Jan 15 21:07:17 2013 +0000
684
685    nls/Makefile.am: Use LOG_COMPILER
686    
687    TESTS_ENVIRONMENT is deprecated
688    
689    Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>
690    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
691
692commit df66d7a98e2bc7f44fb5583b645df87d525f07f1
693Author: Quentin Glidic <sardemff7+git@sardemff7.net>
694Date:   Tue Jan 15 21:07:16 2013 +0000
695
696    nls/Makefile.am: Remove unneeded $(srcdir)
697    
698    Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>
699    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
700    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
701
702commit 3facbe5c0df1b5597571b7b00d5f7bdbc92fb278
703Author: Alan Coopersmith <alan.coopersmith@oracle.com>
704Date:   Sat Mar 2 12:01:39 2013 -0800
705
706    Add <X11/Xresource.h> hint to all Xrm* man pages
707    
708    Help users figure out which header file they need to #include
709    
710    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
711
712commit 466404007f2c8f7166e4faddfea1454c5bfe1e9a
713Author: Alan Coopersmith <alan.coopersmith@oracle.com>
714Date:   Fri Mar 8 17:13:09 2013 -0800
715
716    _xudc_code_to_glyph: check for NULL pointer *before* writing to it, not after
717    
718    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
719
720commit 47d2eff64d167b3245d346d7f38ca703be645e26
721Author: Ken Moffat <ken@linuxfromscratch.org>
722Date:   Thu Mar 7 18:27:54 2013 -0500
723
724    dead_double_grave and dead_inverted_breve should only have one underscore.
725    
726    Correct instances of dead_double_grave and dead_inverted_breve to
727    dead_doublegrave and dead_invertedbreve.
728    
729    Signed-off-by: Ken Moffat <ken@linuxfromscratch.org>
730    Signed-off-by: James Cloos <cloos@jhcloos.com>
731
732commit c23d61d1b84dca3740bf4786978c7908d0065fb9
733Author: Alan Coopersmith <alan.coopersmith@oracle.com>
734Date:   Fri Mar 1 18:10:27 2013 -0800
735
736    Assume size_t is always available, since it was defined in C89
737    
738    Don't provide a fallback definition #ifdef X_NOT_POSIX anymore.
739    We already use size_t throughout the rest of Xlib, just had this
740    one instance left in XKBGAlloc.c of a fallback definition.
741    
742    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
743
744commit 9bcfd84aa1410387bc8cf002a5f90f44705aa0d1
745Author: Alan Coopersmith <alan.coopersmith@oracle.com>
746Date:   Fri Mar 1 18:09:07 2013 -0800
747
748    unifdef XKB_IN_SERVER
749    
750    Leftovers from XKB files that were previously shared between the client
751    and server code, but aren't any more.
752    
753    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
754    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
755
756commit 769a0efa2298040fe8316a89fc9e75fb61e288e5
757Author: Alan Coopersmith <alan.coopersmith@oracle.com>
758Date:   Thu Feb 28 20:04:25 2013 -0800
759
760    unifdef CRAY & _CRAY
761    
762    (mostly performed with unifdef, followed by some manual cleanup of
763     the remaining code)
764    
765    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
766    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
767
768commit ca106eb03e5f5468df8033300c5caae3d3c6936b
769Author: Alan Coopersmith <alan.coopersmith@oracle.com>
770Date:   Thu Feb 28 20:04:25 2013 -0800
771
772    unifdef WORD64
773    
774    WORD64 seems to have only been defined in <X11/Xmd.h> when building for
775    CRAY, to handle int being a 64-bit value (ILP64, not LP64) and having
776    64-bit alignment requirements.
777    
778    It hadn't been fully supported even before autotooling, as can be
779    seen by removed code such as:
780    
781     #ifdef WORD64
782     _XkbWriteCopyData32 Not Implemented Yet for sizeof(int)==8
783     #endif
784    
785    (mostly performed with unifdef, followed by some manual cleanup of
786     the remaining code)
787    
788    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
789    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
790
791commit 9399caf2c12cbe1ed56f4f6b368c5811cb5d0458
792Author: Alan Coopersmith <alan.coopersmith@oracle.com>
793Date:   Thu Feb 28 20:04:25 2013 -0800
794
795    unifdef MUSTCOPY
796    
797    MUSTCOPY seems to have only been defined in <X11/Xmd.h> when building for
798    CRAY, to handle missing some sizes of integer type.
799    
800    (mostly performed with unifdef, followed by some manual cleanup of
801     spacing/indenting in the remaining code)
802    
803    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
804    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
805
806commit b687440c28c7da6ee0ae44514d20248db5161606
807Author: Alan Coopersmith <alan.coopersmith@oracle.com>
808Date:   Sat Feb 16 10:42:23 2013 -0800
809
810    Convert more sprintf calls to snprintf
811    
812    You could analyze most of these and quickly recognize that there was no
813    chance of buffer overflow already, but why make everyone spend time doing
814    that when we can just make it obviously safe?
815    
816    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
817
818commit b092dabbd712d7b656abcf572d253b9b206c0237
819Author: Alan Coopersmith <alan.coopersmith@oracle.com>
820Date:   Fri Feb 15 23:43:12 2013 -0800
821
822    XKeysymToString: move variable declarations to the scope of their usage
823    
824    Makes it easier for readers to understand scope of variable usage, and
825    clears up gcc warning:
826    
827    KeysymStr.c: In function 'XKeysymToString':
828    KeysymStr.c:128:13: warning: declaration of 'i' shadows a previous local [-Wshadow]
829    KeysymStr.c:73:18: warning: shadowed declaration is here [-Wshadow]
830    
831    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
832
833commit f0b171c8ea7b055ba520272ea9a2604e18841ac7
834Author: Alan Coopersmith <alan.coopersmith@oracle.com>
835Date:   Fri Feb 15 23:34:40 2013 -0800
836
837    Preserve constness in casting arguments through the Data*() routines
838    
839    Casts were annoying gcc by dropping constness when changing types,
840    when routines simply either copy data into the request buffer or
841    send it directly to the X server, and never modify the input.
842    
843    Fixes gcc warnings including:
844    ChProp.c: In function 'XChangeProperty':
845    ChProp.c:65:6: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
846    ChProp.c:65:6: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
847    ChProp.c:74:6: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
848    ChProp.c:74:6: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
849    ChProp.c:83:6: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
850    SetHints.c: In function 'XSetStandardProperties':
851    SetHints.c:262:20: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
852    SetPntMap.c: In function 'XSetPointerMapping':
853    SetPntMap.c:46:5: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
854    SetPntMap.c:46:5: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
855    StBytes.c: In function 'XStoreBuffer':
856    StBytes.c:97:33: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
857    StName.c: In function 'XStoreName':
858    StName.c:40:27: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
859    StName.c: In function 'XSetIconName':
860    StName.c:51:27: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
861    
862    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
863
864commit 6c558ee357292dd9dfc6d9006f4525f625327c52
865Author: Alan Coopersmith <alan.coopersmith@oracle.com>
866Date:   Fri Feb 15 22:58:54 2013 -0800
867
868    Fix comment typo & confusing indentation levels in Data() macro definition
869    
870    The final } matches the one on the #define line, not one that doesn't
871    appear after the else statement it was lined up with
872    
873    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
874
875commit afd6593da90e51234d59f8921c411317f91ab48b
876Author: Alan Coopersmith <alan.coopersmith@oracle.com>
877Date:   Fri Feb 15 23:25:38 2013 -0800
878
879    XStringToKeysym: preserve constness when casting off unsignedness for strcmp
880    
881    Fixes gcc warning:
882    StrKeysym.c:97:17: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
883    
884    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
885
886commit 7e3bf4dd83fec22bd568146de75e6d59eff74e21
887Author: Alan Coopersmith <alan.coopersmith@oracle.com>
888Date:   Fri Feb 15 23:14:40 2013 -0800
889
890    XRebindKeysym: Drop unnecessary const-removing cast
891    
892    C89 defines memcpy as taking a const void *, so casting from
893    const unsigned char * to char * simply angers gcc for no benefit:
894    
895    KeyBind.c:1017:24: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
896    
897    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
898
899commit 54527eab93d46055cf11eb6c18abb353a03ae544
900Author: Alan Coopersmith <alan.coopersmith@oracle.com>
901Date:   Fri Feb 15 22:45:19 2013 -0800
902
903    cmsColNm.c: maintain constness of arguments to qsort helper function
904    
905    Fixes gcc warning:
906    
907    cmsColNm.c: In function 'FirstCmp':
908    cmsColNm.c:257:20: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
909    cmsColNm.c:257:45: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual]
910    
911    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
912
913commit deedeada53676ee529d700bf96fde0b29a3a1def
914Author: Nickolai Zeldovich <nickolai@csail.mit.edu>
915Date:   Tue Jan 22 10:03:00 2013 -0500
916
917    XListFontsWithInfo: avoid accessing realloc'ed memory
918    
919    If exactly one of the two reallocs in XListFontsWithInfo() fails, the
920    subsequent code accesses memory freed by the other realloc.
921    
922    Signed-off-by: Nickolai Zeldovich <nickolai@csail.mit.edu>
923    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
924    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
925
926commit f57fd760cba92ad846917f21e94e73e9c846185f
927Author: Colin Walters <walters@verbum.org>
928Date:   Wed Jan 4 17:37:06 2012 -0500
929
930    autogen.sh: Implement GNOME Build API
931    
932    http://people.gnome.org/~walters/docs/build-api.txt
933    
934    Signed-off-by: Adam Jackson <ajax@redhat.com>
935
936commit 51c102d39e855cf1704d9eb3afba76a2e73c6b81
937Author: Adam Jackson <ajax@redhat.com>
938Date:   Tue Jan 15 14:28:48 2013 -0500
939
940    configure: Remove AM_MAINTAINER_MODE
941    
942    Signed-off-by: Adam Jackson <ajax@redhat.com>
943
944commit 3cd974b1d4d1fa6389d3695fa9fcc0c22a51d50c
945Author: Alan Coopersmith <alan.coopersmith@oracle.com>
946Date:   Wed Dec 26 22:57:39 2012 -0800
947
948    Remove unused DECnet ("DNETCONN") code from Xlib
949    
950    Has never been converted to build in modular builds, so has been unusable
951    since X11R7.0 release in 2005.  DNETCONN support was removed from xtrans
952    back in 2008.
953    
954    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
955
956commit a6e5b36a3e6d4a7a9fb4bad905ed127e67b1957e
957Author: Alan Coopersmith <alan.coopersmith@oracle.com>
958Date:   Wed Dec 26 22:56:38 2012 -0800
959
960    Remove unused TLI ("STREAMSCONN") code from Xlib
961    
962    Has never been converted to build in modular builds, so has been unusable
963    since X11R7.0 release in 2005.  All known platforms with TLI/XTI support
964    that X11R7 & later releases run on also have (and mostly prefer) BSD
965    socket support for their networking API.
966    
967    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
968
969commit 59c9ee8cd58857c5769b643611cbe526005a9e45
970Author: Alan Coopersmith <alan.coopersmith@oracle.com>
971Date:   Sun Dec 16 17:44:42 2012 -0800
972
973    Tell clang not to report -Wpadded warnings on public headers we can't fix
974    
975    Better to silence the compiler warning than break ABI.
976    
977    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
978
979commit 0b148750027fd0557c5ed93afda861ddf4b92e0f
980Author: Jon TURNEY <jon.turney@dronecode.org.uk>
981Date:   Mon Nov 12 17:27:52 2012 +0000
982
983    Fix config check for loadable modules
984    
985    The config check of the results of testing for dlfcn.h or dl.h just tests the
986    value of the ac_cv_ variables, which will be 'yes' or 'no', rather than checking
987    it is 'yes', so loadable module support would always be detected.
988    
989    This is necessary for successful compilation for the MinGW target without the
990    optional dlfcn-win32 library.
991    
992    v2: Also, fixed typoed name of ac_cv_header_dlfcn_h, so check still works
993    correctly when dlfcn.h is available
994    
995    Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
996    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
997
998commit cd25cab4b5b957641183ce72dd1ae0424aff1663
999Author: Egbert Eich <eich@freedesktop.org>
1000Date:   Fri May 20 18:27:02 2011 +0200
1001
1002    Install Xcms.txt in $(datadir) rather than $(libdir).
1003    
1004    This file is an architecture independent data and should be where
1005    other databases are.
1006    This is the Xlib provided sample file, applications are free to
1007    use a different one specifying its location in the XCMSDB env
1008    variable.
1009    
1010    Signed-off-by: Egbert Eich <eich@freedesktop.org>
1011    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1012
1013commit 51fef7e273b5c6256e4c9604e3e1afe5dc8f6a1a
1014Author: Egbert Eich <eich@freedesktop.org>
1015Date:   Fri May 20 18:25:24 2011 +0200
1016
1017    Don't hard code path to Xcms.txt file.
1018    
1019    The path to this file is configurable at build time. The source
1020    however contains a hard coded path.
1021    
1022    Signed-off-by: Egbert Eich <eich@freedesktop.org>
1023    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1024
1025commit 9833489e6c3829a1e835bc0a11f028fc180809e4
1026Author: Colin Walters <walters@verbum.org>
1027Date:   Fri Dec 7 08:51:21 2012 -0500
1028
1029    Fix build after dropping locales
1030    
1031    They also needed to be removed from configure.ac
1032    
1033    Signed-off-by: Colin Walters <walters@verbum.org>
1034    Signed-off-by: Julien Cristau <jcristau@debian.org>
1035
1036commit 0a740a574aaf0c0eec78859b773a532cff3b74c3
1037Author: Egbert Eich <eich@freedesktop.org>
1038Date:   Fri May 20 13:04:11 2011 +0200
1039
1040    i18n: Uppercased all occurances if 'iso8859' in the full locale name.
1041    
1042    Making all occurances of iso8859 upper case in the full local name
1043    makes the alias entries more consistent and match the entries on
1044    locale.dir.
1045    
1046    Signed-off-by: Egbert Eich <eich@freedesktop.org>
1047    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1048
1049commit 5e7d589697755a70fb22d85c6a1ae82b39843e53
1050Author: Egbert Eich <eich@freedesktop.org>
1051Date:   Fri May 20 17:55:49 2011 +0200
1052
1053    i18n: Remove ja.S90 and ja.U90 locales.
1054    
1055    Both locales carry a copyright notice and a prorietary statement:
1056    
1057    Copyright 1995 by FUJITSU LIMITED
1058    This is source code modified by FUJITSU LIMITED under the Joint
1059    Development Agreement for the CDEnext PST.
1060    This is unpublished proprietary source code of FUJITSU LIMITED
1061    
1062    Signed-off-by: Egbert Eich <eich@freedesktop.org>
1063    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1064
1065commit 99eae3dcb7bf6764e3b243d2a2934a4d1ecce90e
1066Author: Egbert Eich <eich@freedesktop.org>
1067Date:   Fri May 20 16:46:15 2011 +0200
1068
1069    i18n: Bring locale.dir and compose.dir in sync.
1070    
1071    Some entries for locale/encoding combinations were missing from
1072    either file or just misspelled, some entries were wrong or just
1073    aliases.
1074    
1075    Signed-off-by: Egbert Eich <eich@freedesktop.org>
1076    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1077
1078commit d1e6baa4e290b758e430077cb74e7c03ad850771
1079Author: Egbert Eich <eich@freedesktop.org>
1080Date:   Fri May 20 14:02:39 2011 +0200
1081
1082    i18n: Treat 'a3_AZ' as an alias for 'az_AZ'.
1083    
1084    locale.alias contains a comment:
1085    XCOMM a3 is not an ISO 639 language code, but in Cyrillic, "Z" looks like "3".
1086    Thus lets treat 'a3' as an alias for 'az'.
1087    
1088    Signed-off-by: Egbert Eich <eich@freedesktop.org>
1089    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1090    Reviewed-by: Magnus Kessler <Magnus.Kessler@gmx.net>
1091
1092commit fa2aab0bea18efa26a56977d3166277582ab7b07
1093Author: Egbert Eich <eich@freedesktop.org>
1094Date:   Fri May 20 13:09:38 2011 +0200
1095
1096    i18n: Fixed typos in full locale names.
1097    
1098    Fixing those typos those names actually match entries in
1099    locale.dir.
1100    
1101    Signed-off-by: Egbert Eich <eich@freedesktop.org>
1102    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1103
1104commit b88dd95005dce4c40f9b4d5f938f945e7955fd04
1105Author: Egbert Eich <eich@freedesktop.org>
1106Date:   Sat May 21 07:29:38 2011 +0200
1107
1108    i18n: Remove duplicates and aliases to oneself.
1109    
1110    Aliases to itself don't make much sense.
1111    This changes occurances of:
1112    xy_UV.UTF-8:			xy_UV.UTF-8
1113    to
1114    xy_UV:			xy_UV.UTF-8
1115    where applicable.
1116    
1117    Signed-off-by: Egbert Eich <eich@freedesktop.org>
1118    Reviewed-by: James Cloos <cloos@jhcloos.com>
1119
1120commit f198c6aa98f88ff285d903175a3c4c0fd33a4575
1121Author: Jens Herden <jens.herden@email.de>
1122Date:   Fri May 20 17:29:03 2011 +0200
1123
1124    i18n: Add support for Khmer locale and compose table.
1125    
1126    Signed-off-by: Egbert Eich <eich@freedesktop.org>
1127    Reviewed-by: James Cloos <cloos@jhcloos.com>
1128
1129commit 40761898692e5063957bfa2518cca3d35b2e354a
1130Author: Kalman Kemenczy <kkemenczy@novell.com>
1131Date:   Fri May 20 17:03:24 2011 +0200
1132
1133    i18n: Add support for Serbian specific compose table entries.
1134    
1135    Signed-off-by: Egbert Eich <eich@freedesktop.org>
1136    Reviewed-by: James Cloos <cloos@jhcloos.com>
1137
1138commit 7c14aacc9f01d7a975f8d9d033b9b13cbd777a61
1139Author: Egbert Eich <eich@freedesktop.org>
1140Date:   Fri May 20 14:00:35 2011 +0200
1141
1142    i18n: Adding and removing comments.
1143    
1144    Signed-off-by: Egbert Eich <eich@freedesktop.org>
1145    Reviewed-by: James Cloos <cloos@jhcloos.com>
1146
1147commit 7754d68976106183751243c2c35a84134be17b34
1148Author: Egbert Eich <eich@freedesktop.org>
1149Date:   Fri May 20 13:45:31 2011 +0200
1150
1151    i18n: Add missing locales which existed in locale.alias.
1152    
1153    Signed-off-by: Egbert Eich <eich@freedesktop.org>
1154    Reviewed-by: James Cloos <cloos@jhcloos.com>
1155
1156commit 952eccd0d25ba66023acfd31873eee2e71c38c42
1157Author: Egbert Eich <eich@freedesktop.org>
1158Date:   Fri May 20 10:57:57 2011 +0200
1159
1160    i18n: Consolidate compose handling for locales with UTF-8 encoding.
1161    
1162    - add an entry to include the default en_US compose file
1163      for the ja_JP, ko_KR, th_TH, zh_CN, zh_HK and zh_TW locales.
1164    - add missing entries for zh_CN. and zh_HK and am_ET.
1165    - change entries for the UTF-8 encoding for ru_RU, ja_JP,
1166      ko_KR, th_TH and zh_TW to point to their native directory
1167      entries.
1168    
1169    Signed-off-by: Egbert Eich <eich@freedesktop.org>
1170    Reviewed-by: James Cloos <cloos@jhcloos.com>
1171
1172commit d14b6a250f004fa405179db7020f6953001d17b9
1173Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
1174Date:   Mon Oct 22 13:54:11 2012 -0500
1175
1176    XIM: remove Private and Public macros
1177    
1178    Private is a struct member name in mingw-w64 <winioctl.h>, causing this
1179    useless define in a private header to break the build.
1180    
1181    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
1182    Reviewed-by: Jon TURNEY <jon.turney@dronecode.org.uk>
1183
1184commit f2a8def423a46d52e834cf7ea49fa0079427663a
1185Author: Adam Jackson <ajax@redhat.com>
1186Date:   Wed Oct 17 14:40:43 2012 -0400
1187
1188    XErrorDB: Add GLXBadProfileARB
1189    
1190    Signed-off-by: Adam Jackson <ajax@redhat.com>
1191
1192commit d45b3fc19fbe95c41afc4e51d768df6d42332010
1193Author: Ross Burton <ross.burton@intel.com>
1194Date:   Wed Sep 12 14:39:40 2012 +0100
1195
1196    Allow overriding location of keysymdef.h
1197    
1198    Currently keysymdef.h is found by using the includedir of xproto.  This doesn't
1199    work when cross-compiling with a sysroot as that ends up being /usr/include/X11,
1200    not a path into the cross-build environment.
1201    
1202    So, add an option to allow explicitly specifying the location of keysymdef.h,
1203    and verify that the specified or found path exists.
1204    
1205    (original patch by Martin Jansa <martin.jansa@gmail.com>, revised by myself)
1206    
1207    Signed-off-by: Ross Burton <ross.burton@intel.com>
1208    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
1209    Reviewed-by: Daniel Stone <daniel@fooishbar.org>
1210
1211commit 44cdc0dc2c68d67654023ec707b807145d3a38c0
1212Author: Eric S. Raymond <esr@thyrsus.com>
1213Date:   Thu Aug 23 19:15:07 2012 -0400
1214
1215    Renove some unnecessary low-level markup.
1216    
1217    Also, SYNTAX -> SYNOPSIS so function prototypes get parsed by doclifter.
1218    This appears to have been somebody's thinko, it's only in a few of the files.
1219    
1220    Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
1221
1222commit b686600ab5ca93b5750f827786e79c329ab2db4d
1223Author: Eric S. Raymond <esr@thyrsus.com>
1224Date:   Thu Aug 23 10:53:33 2012 -0400
1225
1226    The .NT/.NE macro pair is no longer used.  Remove it.
1227    
1228    Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
1229
1230commit b83f2898528c5dd683acd2a2143879a760a8dad5
1231Author: Eric S. Raymond <esr@thyrsus.com>
1232Date:   Thu Aug 23 10:42:46 2012 -0400
1233
1234    Remove the one and only use of the .NT/.NE pair.
1235    
1236    The problem with these macros is that they rely on being able to
1237    center the note label.  That doesn't play well with modern HTML,
1238    not anyway without coomplications like CSS.  This use was just a cute
1239    trick, not adding enough value to be kept.
1240
1241commit e9509fa6745d25eee01ec6f1c34edf8a806d66b3
1242Author: Eric S. Raymond <esr@thyrsus.com>
1243Date:   Thu Aug 23 10:23:45 2012 -0400
1244
1245    The .C{ and .C} macros are never used.  Remove them.
1246    
1247    Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
1248
1249commit 6b2f7ddeea6c87dbec4ddfc19b1fed33f1bb8575
1250Author: Eric S. Raymond <esr@thyrsus.com>
1251Date:   Thu Aug 23 10:08:08 2012 -0400
1252
1253    The .FN macro, paired with .FD, is also never used. Remove it.
1254    
1255    Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
1256
1257commit cac6572701c976542da562b2b277b07ffb892a6f
1258Author: Eric S. Raymond <esr@thyrsus.com>
1259Date:   Thu Aug 23 10:03:00 2012 -0400
1260
1261    The ".FD" macro is never used.  Remove it.
1262    
1263    It was a temptation to presentation-level klugery and is best gone.
1264    
1265    Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
1266
1267commit 6e27a828f39f7028bc7f4a8736e7262fca250632
1268Author: Eric S. Raymond <esr@thyrsus.com>
1269Date:   Thu Aug 23 09:54:25 2012 -0400
1270
1271    Clean up, my last commit missed four cases.
1272    
1273    Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
1274
1275commit a7fb575957ff4d9dd3671994a005ac3be8bb10fe
1276Author: Eric S. Raymond <esr@thyrsus.com>
1277Date:   Thu Aug 23 08:24:17 2012 -0400
1278
1279    Eliminate all uses of tab stops in the libX11 man pages.
1280    
1281    Two steps: First, expand tabs to 8 spaces in code and structure
1282    listings.  Second, make the .Ds used to wrap code listings switch to
1283    constant-width font (CW) rather than numeric font position 1, which
1284    maps to R on most systems.
1285    
1286    It is possible some archaic systems won't know what CW is, but the
1287    only risk is that code listings won't look quite right on troff
1288    devices; the PostScript and DVI drivers definitely grok it, so those
1289    important cases are OK.
1290    
1291    The purpose of these changes is to get rid of presentation-level
1292    markup so these pages will lift clean to DocBook.
1293    
1294    Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
1295
1296commit 8042f88ace33573f9d0dfaa21ed54ac7cef266d5
1297Author: Will Thompson <will@willthompson.co.uk>
1298Date:   Mon Jul 9 18:00:27 2012 +0100
1299
1300    Add compose sequences for "therefore" and "because".
1301    
1302    These sequences look sensible to me. I added them to the APL-related
1303    section of Mathematical Operators—they're in that section of Unicode
1304    anyway.
1305    
1306    https://bugs.freedesktop.org/show_bug.cgi?id=51922
1307    
1308    Signed-off-by: Will Thompson <will@willthompson.co.uk>
1309    Reviewed-by: Daniel Stone <daniel@fooishbar.org>
1310
1311commit 65358ea5079236b2508f787ac2fb2024a477e36d
1312Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1313Date:   Fri Jun 29 23:08:04 2012 -0700
1314
1315    Convert XCreate{Pix,Bit}map...Data to use C99 designated initializers
1316    
1317    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1318
1319commit 0dc93f7e43deb102b1f8fb7c4c4844cdce7ffd1e
1320Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1321Date:   Fri Jun 29 22:57:13 2012 -0700
1322
1323    XCreate{Pix,Bit}map...Data: Free pixmap in error path if XCreateGC fails
1324    
1325    Fixes leaks in error paths found by Parfait 1.0.0:
1326    
1327    Error: X Resource Leak
1328       Leaked X Resource pix
1329            at line 62 of CrBFData.c in function 'XCreateBitmapFromData'.
1330              pix initialized at line 60 with XCreatePixmap
1331    Error: X Resource Leak
1332       Leaked X Resource pix
1333            at line 70 of CrPFBData.c in function 'XCreatePixmapFromBitmapData'.
1334              pix initialized at line 66 with XCreatePixmap
1335    
1336    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1337    Reviewed-by: Aaron Plattner <aplattner@nvidia.com>
1338
1339commit dce84b8c39ad5a8908c29bb6de25b6c3004c1ab7
1340Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1341Date:   Wed Jun 6 13:31:16 2012 -0700
1342
1343    libX11 spec: Correct prototype for XConvertSelection
1344    
1345    selection & target parameters were accidentally run together
1346    
1347    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1348
1349commit 6c5cb2a90a6479f56855e5167039c37c234cdfe7
1350Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1351Date:   Fri Jun 1 23:37:09 2012 -0700
1352
1353    libX11 1.5.0
1354    
1355    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1356
1357commit 05c587ec3be880721131a17c1dd4366e458fdd8b
1358Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1359Date:   Sat May 26 14:37:28 2012 -0700
1360
1361    libX11 1.4.99.902 (1.5 RC2)
1362    
1363    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1364
1365commit d817834d9772e3500d5102e2eae868b04a33c31f
1366Author: Pander <pander@users.sourceforge.net>
1367Date:   Sat May 5 19:02:10 2012 +0200
1368
1369    Compose: Reassigned squences with minus and a or o
1370    
1371    Reassigned squences with minus and a or o (vice versa and lower and
1372    upper case) to conform existing series and not resulting in tilde.
1373    Also added noe missing underscore sequence.
1374    
1375    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1376
1377commit 6bfd1dca6e7cb2046ee6bf9dbbddc0af5ef7cc00
1378Author: Pander <pander@users.sourceforge.net>
1379Date:   Sat May 5 16:56:05 2012 +0200
1380
1381    Compose: Removed <slash> <U> and vice versa
1382    
1383    Combination with lower case u suffices
1384    
1385    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1386
1387commit 3a8b1637132d1e36eb5e11f52dfb284081772d14
1388Author: Pander <pander@users.sourceforge.net>
1389Date:   Sat May 5 16:44:31 2012 +0200
1390
1391    Compose: Removed <n> <minus> for n with tilde, also vice versa & for upper case
1392    
1393    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1394
1395commit fd514d7a35119dd4413b51c84f2a536f2ca501a6
1396Author: Pander <pander@users.sourceforge.net>
1397Date:   Sat May 5 16:40:20 2012 +0200
1398
1399    Compose: Removed <S> in combination with a numeral for superscript
1400    
1401    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1402
1403commit 1b5cad3ca54410c4edbca79c23c463e9e088bc0d
1404Author: Pander <pander@users.sourceforge.net>
1405Date:   Sat May 5 16:28:01 2012 +0200
1406
1407    Compose: Reassigned <o> <apostrophe> to oacute, also for upper case.
1408    
1409    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1410
1411commit 0bbc0d5e605e2a4a3eb00a229b651d4546e8aef4
1412Author: James Cloos <cloos@jhcloos.com>
1413Date:   Thu May 10 12:27:28 2012 -0400
1414
1415    Remove duplicate compose sequences from commit e51e37c118ae.
1416    
1417    The compose-check script only handles compiled Compose files, not
1418    the Compose.pre files.  One must remember to use:
1419    
1420        ./autogen.sh; make; make check
1421    
1422    when reviewing patches to the Compose.pre files....
1423    
1424    Signed-off-by: James Cloos <cloos@jhcloos.com>
1425
1426commit e51e37c118ae6cb9ced8244ce1c410677e0279ce
1427Author: Geoff Streeter <geoff@dyalog.com>
1428Date:   Thu Mar 22 15:02:00 2012 +0000
1429
1430    Add APL support to compose
1431    
1432    Signed-off-by: Geoff Streeter <geoff@dyalog.com>
1433    Signed-off-by: James Cloos <cloos@jhcloos.com>
1434
1435commit dac90324cee224df977a428afe80d960dceca769
1436Author: Julien Cristau <jcristau@debian.org>
1437Date:   Sat May 5 16:05:07 2012 +0200
1438
1439    configure: make previous change work with older autoconf
1440    
1441    autoconf 2.63 doesn't seem to like the nested AC_CHECK_DECL/FUNC.  So do
1442    the tests separately.
1443    
1444    Reported-by: Dave Airlie
1445    Signed-off-by: Julien Cristau <jcristau@debian.org>
1446
1447commit f5b50af4324186962e258ffe9be78d5ee4681982
1448Author: Julien Cristau <jcristau@debian.org>
1449Date:   Sun Apr 29 16:43:09 2012 +0200
1450
1451    configure: check if issetugid is declared
1452    
1453    GNU/kFreeBSD has issetugid in libc (for legacy apps?), but doesn't
1454    declare it anywhere, causing gcc to error out with
1455    -Werror=implicit-function-declaration.  Use AC_CHECK_DECL in addition to
1456    AC_CHECK_FUNC so we disable this code instead of failing to build it.
1457    
1458    Debian bug#669670 <http://bugs.debian.org/669670>
1459    
1460    Signed-off-by: Julien Cristau <jcristau@debian.org>
1461    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1462    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1463
1464commit 52e1b5cc3b6de76ccf4285b55652474a522ed9a8
1465Author: Peter Hutterer <peter.hutterer@who-t.net>
1466Date:   Mon Apr 30 16:36:47 2012 +1000
1467
1468    Typo fix
1469    
1470    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
1471
1472commit b64969f0e510d5d3300cf968741a3726a6409577
1473Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1474Date:   Tue Apr 17 18:12:02 2012 -0700
1475
1476    Add X11R7 sections to the libX11 & XKBlib credits to cover Docbook conversion
1477    
1478    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1479
1480commit 9ea611696f317ac3b3fb67893f1d6d87d49e3b5e
1481Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1482Date:   Tue Apr 17 18:01:36 2012 -0700
1483
1484    Add olinks from libX11 & localedb specs to ICCCM spec
1485    
1486    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1487
1488commit b3c1b8cdab7d14220426c9b997ac362dc16318fc
1489Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1490Date:   Tue Apr 17 17:49:44 2012 -0700
1491
1492    Add olinks from libX11 spec to ICCCM spec
1493    
1494    Also convert ICCCM title mentions from <emphasis> to <citetitle>
1495    
1496    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1497
1498commit ebebb65e753007ad01966dccc90bd6ca9a826488
1499Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1500Date:   Sat Apr 14 23:40:01 2012 -0700
1501
1502    libX11 AppC: Fix section headers that didn't translate from nroff properly
1503    
1504    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1505    Acked-by: Peter Hutterer <peter.hutterer@who-t.net>
1506
1507commit d5ab4ae0e74ae1fb30fb72add0751effe2759bf2
1508Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1509Date:   Sat Apr 14 23:13:05 2012 -0700
1510
1511    Add olinks from libX11 spec to x11protocol spec
1512    
1513    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1514    Acked-by: Peter Hutterer <peter.hutterer@who-t.net>
1515
1516commit 83878a0e34fffd255597300dd3e6cd43fcd645b0
1517Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1518Date:   Sat Apr 14 22:28:53 2012 -0700
1519
1520    libX11 spec: Remove .br nroff macro left behind in XGetWindowProperty prototype
1521    
1522    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1523
1524commit abc523fce31fcf2687229697a8eb656e343ecb0c
1525Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1526Date:   Thu Mar 15 22:14:45 2012 -0700
1527
1528    libX11 1.4.99.901 (1.5 RC1)
1529    
1530    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1531
1532commit b2cc5905a4a6d519957223e8ba2caef71520040c
1533Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1534Date:   Thu Mar 15 22:03:21 2012 -0700
1535
1536    Remove "register" qualifier that annoys Solaris Studio compiler
1537    
1538    Fixes warning:
1539    "Xrm.c", line 1094: warning: storage class after type is obsolescent
1540    
1541    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1542
1543commit 62d42953893f93a98db0504eaf06d650ceaf5811
1544Author: James Cloos <cloos@jhcloos.com>
1545Date:   Wed Mar 14 17:25:46 2012 -0400
1546
1547    Fix the gtk+ additions
1548    
1549    (Some of) the Dstroke and dstroke entries already were present as U011[01],
1550    even though XK_Dstroke and XK_dstroke are part of the latin2 set in keysymdef.h.
1551    
1552    The addition of <Multi_key> <o> <apostrophe> as a postfix version of
1553    <Multi_key> <apostrophe> <o> blocks the existing entries for ǻ and Ǻ.
1554    That prevents its and <Multi_key> <O> <apostrophe>’s addition.
1555    
1556    Signed-off-by: James Cloos <cloos@jhcloos.com>
1557
1558commit 91bcce48d94792f78333d2aea73961cc2e739d2e
1559Author: Pander <pander@users.sourceforge.net>
1560Date:   Wed Mar 14 12:54:53 2012 -0400
1561
1562    Complete compose key sequences for musical symbols
1563    
1564    Signed-off-by: Pander <pander@users.sourceforge.net>
1565    Signed-off-by: James Cloos <cloos@jhcloos.com>
1566
1567commit cf040016d455bc37f7665d6714337c5eafd8ea94
1568Author: Pander <pander@users.sourceforge.net>
1569Date:   Wed Mar 14 12:46:25 2012 -0400
1570
1571    Add compose sequences from gtk+ to X.Org
1572    
1573    Signed-off-by: Pander <pander@users.sourceforge.net>
1574    Signed-off-by: James Cloos <cloos@jhcloos.com>
1575
1576commit a4c591ced5cac9301b9abfa0e521be2d0b267882
1577Author: Keith Packard <keithp@keithp.com>
1578Date:   Sun Mar 4 02:00:13 2012 -0800
1579
1580    Block for other threads in _XUserLockDisplay
1581    
1582    Wait for all other threads to release the user-level lock when
1583    acquiring it. This ensures that only one thread at a time holds the
1584    user-level lock, necessary as it is a nesting lock and a single
1585    variable is used to determine when the lock is nesting and when it is
1586    contended.
1587    
1588    Signed-off-by: Keith Packard <keithp@keithp.com>
1589    Reviewed-by: Jamey Sharp <jamey@minilop.net>
1590
1591commit ed00b460acb08787b695f27b864e96102dfd4867
1592Author: Jon TURNEY <jon.turney@dronecode.org.uk>
1593Date:   Fri Oct 28 11:09:20 2011 -0500
1594
1595    Don't use caddr_t casts
1596    
1597    (caddr_t) isn't used anywhere else in xcb or libX11.
1598    Cast to (char *) for consistency.
1599    
1600    Removing this cast allows building for MinGW without patching.
1601    
1602    v2: Cast to (char *) rather than just dropping the cast
1603    
1604    Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
1605    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1606
1607commit 20adca02c2a1d0b7c95ecbe387d68f881fd57754
1608Author: Julien Cristau <jcristau@debian.org>
1609Date:   Sun Feb 19 13:27:38 2012 +0100
1610
1611    Revert "xcb: Add TCP fallback"
1612    
1613    This reverts commit f09c5299a381e2729e800a0ac43f1c0e371f65f6.
1614    
1615    The TCP fallback ended up falling back to UNIX socket connection if
1616    $DISPLAY was set to e.g. some.host:0 and the initial attempt failed.
1617    
1618    Debian bug#659558 <http://bugs.debian.org/659558>
1619    
1620    Signed-off-by: Julien Cristau <jcristau@debian.org>
1621    
1622    Conflicts:
1623    
1624    	src/OpenDis.c
1625
1626commit f4378193619baa9bb973c1b5b718721bbcbe92c7
1627Author: James Cloos <cloos@jhcloos.com>
1628Date:   Wed Feb 22 14:13:20 2012 -0500
1629
1630    Make the compose sequence for ẞ work.
1631    
1632    There is no XK_Ssharp symbol for U+1E9E LATIN CAPITAL LETTER SHARP S,
1633    so use the U1e9e symbol in the Compose sequence.
1634    
1635    (Compose sequences do not work when the target symbol is unknown.)
1636    
1637    Signed-off-by: James Cloos <cloos@jhcloos.com>
1638
1639commit 2ca641c3a506dcbee97e279b67990d5387389f36
1640Author: Marko Myllynen <myllynen@redhat.com>
1641Date:   Mon Feb 20 17:04:59 2012 +0200
1642
1643    Use ezh/EZH in compose maps
1644    
1645    Related: https://bugs.freedesktop.org/show_bug.cgi?id=19687
1646    
1647    Signed-off-by: Marko Myllynen <myllynen@redhat.com>
1648    Reviewed-by: Matt Dew <marcoz@osource.org>
1649    Signed-off-by: James Cloos <cloos@jhcloos.com>
1650
1651commit 61725822f20f47684a545c1797183ee7075243ac
1652Author: Marko Myllynen <myllynen@redhat.com>
1653Date:   Sun Feb 20 17:09:43 2011 +0200
1654
1655    Provide translation from XK_permille (ad5) to Unicode (U2030)
1656    
1657    https://bugs.freedesktop.org/show_bug.cgi?id=19687
1658    
1659    Signed-off-by: Marko Myllynen <myllynen@redhat.com>
1660    Reviewed-by: Matt Dew <marcoz@osource.org>
1661    Signed-off-by: James Cloos <cloos@jhcloos.com>
1662
1663commit d2cce0abba0fa0143f49026442c8cab5ed721625
1664Author: Jeremy Huddleston <jeremyhu@apple.com>
1665Date:   Sun Feb 12 19:01:43 2012 -0800
1666
1667    nls: Use LC_CTYPE=C for sed magic
1668    
1669    Stricter versions of sed can trip up if the input does not match
1670    LC_CTYPE
1671    
1672    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
1673
1674commit f180e043f55531933bedfa6e0ff36a00a9ec07f3
1675Author: Frédéric Boiteux <fboiteux@calistel.com>
1676Date:   Wed Nov 30 12:47:31 2011 +0000
1677
1678    Compositions with the dead greek symbol
1679    
1680    FreeDesktop Bug 21475 <https://bugs.freedesktop.org/show_bug.cgi?id=21475>
1681    
1682    Signed-off-by: Frédéric Boiteux <fboiteux@calistel.com>
1683    Signed-off-by: James Cloos <cloos@jhcloos.com>
1684
1685commit d58e8f8e27790017fcfdeca0843b7318d541c189
1686Author: Ryan Pavlik <rpavlik@iastate.edu>
1687Date:   Sun Jan 1 21:04:52 2012 +0000
1688
1689    Use pthreads on MinGW also
1690    
1691    Use pthreads (provided by the pthreads-win32 compatability library which implements
1692    them using native Win32 threading) on MinGW
1693    
1694    Reviewed-by: Jon TURNEY <jon.turney@dronecode.org.uk>
1695
1696commit bf15ccb6821664746ec23d769d757edf8059007e
1697Author: Ryan Pavlik <rpavlik@iastate.edu>
1698Date:   Mon Jan 23 14:18:02 2012 +0000
1699
1700    Add XWindows.h include to Xxcbint.h
1701    
1702    This avoids some conflicting type re-definition errors which occur if
1703    we attempt to include Windows headers after Xmd.h
1704    
1705    Reviewed-by: Jon TURNEY <jon.turney@dronecode.org.uk>
1706
1707commit cadcbd376f0a5d17a71a2fe2f8ced5d93232921a
1708Author: Matt Dew <marcoz@osource.org>
1709Date:   Sat Jan 21 17:59:51 2012 -0700
1710
1711    informaltable & table cleanup
1712    
1713    On certain tables, add top and bottom borders to table header
1714    and a bottom border to the table. This matches what those
1715    tables in the old pdfs looked like.
1716    
1717    the <?dbfo keep-together='always'> prevents tables from
1718    splitting across pages. Useful for tiny tables.
1719    
1720    Converting the colwidth to a floating point, IE, 1* -> 1.0*
1721    cleans up these build errors:
1722    WARNING: table-layout="fixed" and column-width unspecified =>
1723    falling back to proportional-column-width(1)
1724    
1725    Signed-off-by: Matt Dew <marcoz@osource.org>
1726
1727commit bb551f654df8f647c867f79252241964521e689e
1728Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1729Date:   Wed Dec 28 21:22:41 2011 -0800
1730
1731    Add more Xkb man pages to the See Also lists for core keyboard functions
1732    
1733    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1734    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
1735
1736commit b7bb23fe7c8b8a17128e5bc98a05f68595190438
1737Author: Gaetan Nadon <nadon@memsize.(none)>
1738Date:   Fri Dec 30 17:08:14 2011 -0500
1739
1740    docbook.am: embed css styles inside the HTML HEAD element
1741    
1742    Rather than referring to the external xorg.css stylesheet, embed the content
1743    of the file in the html output produced. This is accomplished by using
1744    version 1.10 of xorg-xhtml.xsl.
1745    
1746    This makes the whole html docs tree much more relocatable.
1747    In addition, it eliminates xorg.css as a runtime file which makes
1748    xorg-sgml-doctools a build time only package.
1749    
1750    Signed-off-by: Gaetan Nadon <nadon@memsize.(none)>
1751
1752commit 70505468b7c4a7068cc39be42e421dcee34ec595
1753Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1754Date:   Tue Dec 13 19:58:30 2011 -0800
1755
1756    makekeys: move buf declaration from global to main to silence gcc -Wshadow
1757    
1758    The global was only referenced in the main() function, which passes it
1759    as an argument of the same name to the parse_line() function, leading
1760    to gcc -Wshadow warnings:
1761    
1762    makekeys.c: In function ‘parse_line’:
1763    makekeys.c:58:24: warning: declaration of ‘buf’ shadows a global declaration
1764    makekeys.c:54:13: warning: shadowed declaration is here
1765    
1766    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1767
1768commit 87e10a7b9a97c951ab4d477f61177779ac0a6a66
1769Author: Kusanagi Kouichi <slash@ac.auone-net.jp>
1770Date:   Wed Dec 14 02:17:55 2011 -0500
1771
1772    XQueryColors: Split a request into multiple requests if necessary
1773    
1774    https://bugs.freedesktop.org/show_bug.cgi?id=9160
1775    
1776    Signed-off-by: Kusanagi Kouichi <slash@ac.auone-net.jp>
1777    Signed-off-by: James Cloos <cloos@jhcloos.com>
1778
1779commit d3b3570592e9b9e57f270a0bd86762fd205a2833
1780Author: Andreas Wettstein <wettstein509@solnet.ch>
1781Date:   Tue Nov 8 20:18:09 2011 +0000
1782
1783    XIM: Allow modifier releases in compose sequences (#26705)
1784    
1785    Currently, only non-modifier keys (actually, keysyms) can be part of a compose
1786    sequence, and they are matched against the defined compose sequences at the
1787    time the key is pressed.  The patch allows to use modifier keys an well, but
1788    matches them on key release, and only if no other key has been pressed after
1789    the modifier.
1790    
1791    Releasing a non-matched modifier during an ongoing compose sequence only aborts
1792    the sequence if any modifier release would have matched.  In particular, if no
1793    compose sequences with modifiers are specified, the compose mechanism works
1794    exactly as without this patch.
1795    
1796    Even if modifiers are part of a compose sequence, they are not filtered.  This
1797    is because modifiers affect the keyboard state no matter what we do here and,
1798    therefore, filtering them only could confuse clients.
1799    
1800    The purpose is this extension to the compose mechanism is to allow to make
1801    better use of keys in convenient reach for touch typing.
1802    
1803    Signed-off-by: Andreas Wettstein <wettstein509@solnet.ch>
1804    Signed-off-by: James Cloos <cloos@jhcloos.com>
1805
1806commit 56448a626fc90bcf75a1fa2f4c294b0eb1f23bd6
1807Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1808Date:   Tue Nov 29 23:56:57 2011 -0800
1809
1810    Reject negative string counts in copy_string_list
1811    
1812    Silences parfait warning of a potential memory leak:
1813       Memory leak of pointer 'dst' allocated with malloc(length)
1814            at line 160 of FSWrap.c in function 'copy_string_list'.
1815              'dst' allocated at line 145 with malloc(length).
1816              dst leaks when count <= 0 at line 154.
1817    
1818    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1819
1820commit bf2d7c8c6d70539c72560b1921e18df2610acf29
1821Author: Peter Hutterer <peter.hutterer@who-t.net>
1822Date:   Fri Nov 11 14:56:36 2011 +1000
1823
1824    libX11 1.4.99.1
1825    
1826    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
1827
1828commit 24283d40b1e4314c6647dda49d2a159833341a8b
1829Author: Derek Buitenhuis <derek.buitenhuis@gmail.com>
1830Date:   Thu Sep 22 18:44:13 2011 -0400
1831
1832    makekeys: Fix build/target word size mismatch when cross-compiling
1833    
1834    Since makekeys is built using build environment's gcc and
1835    runs natively, we have to make sure that the size of the
1836    Signature type is the same on both the native environment
1837    and the target, otherwise we get mismatches upon running X,
1838    and some LSB test failures (xts5).
1839    
1840    Use an unsigned 32-bit integer on all platforms. Also,
1841    eliminate the redundant multiple typedefs for the
1842    Signature type.
1843    
1844    Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
1845    Reviewed-by: Daniel Stone <daniel@fooishbar.org>
1846
1847commit 1c41f3b9b86b5eeedfa3bff92e519d45aa097587
1848Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1849Date:   Wed Nov 9 21:00:36 2011 -0800
1850
1851    XlcSL.c: convert old-style function definitions to ANSI C89 style
1852    
1853    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1854
1855commit f6dad6aaa384bf836baa28ccb72b476a85c40eff
1856Author: Peter Hutterer <peter.hutterer@who-t.net>
1857Date:   Thu Oct 27 13:53:22 2011 +1000
1858
1859    Use GetReqSized for GetReq and GetReqExtra
1860    
1861    GetEmptyReq and GetResReq cannot do this due to the final typecast -
1862    typically requests that need either of those do not have their own typedef
1863    in the protocol headers.
1864    
1865    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
1866    Reviewed-by: Jamey Sharp <jamey@minilop.net>
1867
1868commit c9c99058b9d98789c0b2d7e78a23443c2b57a047
1869Author: Peter Hutterer <peter.hutterer@who-t.net>
1870Date:   Fri Oct 14 14:51:06 2011 +1000
1871
1872    include: Add GetReqSized() for request buffers of specific size
1873    
1874    Some XI2 requests change in size over different versions and libXi would
1875    need to hack around GetReq and GetReqExtra. Add a new GetReqSized so the
1876    library can explicitly specify the size of the request in 4-byte units.
1877    
1878    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
1879    Reviewed-by: Jamey Sharp <jamey@minilop.net>
1880
1881commit ba8a7a19165e30d14bc165f43f67c19b6a115585
1882Author: Peter Hutterer <peter.hutterer@who-t.net>
1883Date:   Thu Oct 27 13:24:10 2011 +1000
1884
1885    Switch GetEmptyReq and GetResReq to call _XGetRequest
1886    
1887    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
1888    Reviewed-by: Jamey Sharp <jamey@minilop.net>
1889
1890commit 4a060f993bf676cf21ad9784e010f54134da7b40
1891Author: Peter Hutterer <peter.hutterer@who-t.net>
1892Date:   Mon Oct 17 09:45:15 2011 +1000
1893
1894    Add _XGetRequest as substitute for GetReq/GetReqExtra
1895    
1896    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
1897    Reviewed-by: Jamey Sharp <jamey@minilop.net>
1898
1899commit d8956520deb79c1cbb5e974c175bf8493859b22b
1900Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1901Date:   Fri Oct 14 17:53:00 2011 -0700
1902
1903    Fix "nomal" -> "normal" typo in several comments
1904    
1905    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1906
1907commit 002b36e308a26a152504f9b40aa08a0dce9a7991
1908Author: Xue Wei <Wei.Xue@Sun.COM>
1909Date:   Fri Oct 14 17:39:21 2011 -0700
1910
1911    mbtocs should not truncate input
1912    
1913    Fixes pasting more than 1024 bytes into xterm, as described in
1914    https://bugs.freedesktop.org/show_bug.cgi?id=25209
1915    
1916    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1917
1918commit 9b8d8c9e5b27273e8856a3851ba9b68022bed3cd
1919Author: Marko Myllynen <myllynen@redhat.com>
1920Date:   Mon Oct 10 09:41:13 2011 +0300
1921
1922    Add new compose sequences
1923    
1924    This patch adds few new compose sequences to the en_US map, ligatures
1925    common in typesetting and sequences already in use in the fi_FI map.
1926    
1927    https://bugs.freedesktop.org/show_bug.cgi?id=30621
1928    https://bugs.freedesktop.org/show_bug.cgi?id=34523
1929    
1930    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
1931
1932commit 738f7b867341c1da87ee667d48815822715c3e75
1933Author: Choe Hwanjin <choe.hwanjin@gmail.com>
1934Date:   Thu Oct 13 07:58:02 2011 +0900
1935
1936    XIM: Make Xim handle NEED_SYNC_REPLY flag
1937    
1938    NEED_SYNC_REPLY flag should be in Xim not in Xic.
1939    Because the focused Xic can be changed before sending sync reply.
1940    After focused Xic changed, the new Xic doesn't have NEED_SYNC_REPLY
1941    flag enabled, so libX11 doesn't send XIM_SYNC_REPLY packet.
1942    
1943    This patch adds sync reply flag to Xim and removes sync reply
1944    from Xic.
1945    
1946    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=7869
1947    
1948    Signed-off-by: Choe Hwanjin <choe.hwanjin@gmail.com>
1949    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
1950
1951commit 50e15379331c436851abb194251cde96999e67b3
1952Author: Bodo Graumann <mail@bodograumann.de>
1953Date:   Mon Oct 10 16:40:52 2011 +0200
1954
1955    libX11: Fixing modifier key range in Xutil.h (Bug #21910)
1956    
1957    IsModifierKey, defined in include/X11/Xutil.h, is a macro determining,
1958    which keys are regarded as modifiers. The constants ISO_Level5_Shift,
1959    ISO_Level5_Latch and ISO_Level5_Lock where excluded previously, leaving
1960    some Neo2 modifiers functionless in combination with compose.
1961    This patch adjusts the range to include the correct, full range of
1962    modifier constants.
1963    
1964    Neo2 Bug 277 <http://wiki.neo-layout.org/ticket/277>
1965    
1966    X.Org Bug 21910 <http://bugs.freedesktop.org/show_bug.cgi?id=21910>
1967    
1968    Signed-off-by: Bodo Graumann <mail@bodograumann.de>
1969    Reviewed-by: Daniel Stone <daniel@fooishbar.org>
1970
1971commit b5a108624331fabf393223c0891914cc54d4caf4
1972Author: Yann Droneaud <yann@droneaud.fr>
1973Date:   Tue Oct 11 17:27:59 2011 +0200
1974
1975    Return name instead of False in XSetICValues()
1976    
1977    In case of error, XSetICValues() must return the first argument
1978    that failed to be set.
1979    
1980    But in some error paths, it returns False, which is converted to NULL,
1981    so the function returns OK in case of error.
1982    
1983    Signed-off-by: Yann Droneaud <yann@droneaud.fr>
1984    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
1985
1986commit 10992cb8dc5e4d938e7e5a633b68a81b5875f3ba
1987Author: Yann Droneaud <yann@droneaud.fr>
1988Date:   Sun Oct 9 17:56:45 2011 +0200
1989
1990    Return name instead of value in XGetIMValues() and XSetIMValues()
1991    
1992    As stated in man page (XOpenIM) and Xlib documentation (chapter 13.5.3),
1993    XGetIMValues() and XSetImValues() "returns the name of the first argument
1994    that could not be obtained."
1995    
1996    But currently,
1997    
1998      err = XGetIMValues(im, "invalid", &arg, NULL);
1999    
2000    returns &arg instead of "invalid".
2001    
2002    This patch fixes https://bugs.freedesktop.org/show_bug.cgi?id=12897
2003    
2004    Signed-off-by: Yann Droneaud <yann@droneaud.fr>
2005    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
2006
2007commit f2651e03f3295a453a2965c3749bc8b6e66f1c09
2008Author: Jeremy Huddleston <jeremyhu@apple.com>
2009Date:   Mon Oct 10 14:09:17 2011 -0700
2010
2011    Mark XKeycodeToKeysym as _X_DEPRECATED
2012    
2013    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
2014
2015commit 25d7bb9c705623ebbb3afba3b86d0ded5b6bb4fb
2016Author: Jeremy Huddleston <jeremyhu@apple.com>
2017Date:   Sun Oct 9 02:38:28 2011 -0700
2018
2019    Fix nobreakspace for pt_BR.UTF-8
2020    
2021    https://bugs.freedesktop.org/show_bug.cgi?id=31334
2022    
2023    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
2024
2025commit 913603660c17ec59a4d39d3e3b9d60469ee5c060
2026Author: Jeremy Huddleston <jeremyhu@apple.com>
2027Date:   Sun Oct 9 02:26:45 2011 -0700
2028
2029    Fix potential uninitialized variable access in _XimMakeICAttrIDList
2030    
2031    Found by clang static analysis
2032    
2033    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
2034
2035commit 566ceaf5a92c721ac7155528e4d0d2e5cbef023f
2036Author: Jeremy Huddleston <jeremyhu@apple.com>
2037Date:   Sun Oct 9 02:25:50 2011 -0700
2038
2039    Remove self-resolving aliases
2040    
2041    https://bugs.freedesktop.org/show_bug.cgi?id=30112
2042    
2043    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
2044
2045commit 22ba43d198dcca86c88eb15a56fc7d8fc47c422e
2046Author: Matt Dew <marcoz@osource.org>
2047Date:   Fri Oct 7 22:52:30 2011 -0600
2048
2049    Cleanup IDs and links in doc
2050    
2051    1 - fix the capitalization of the ID attributes to match either the
2052         <title> or <funcdef> string it goes with.
2053    2 - fix any <linkend>'s that were affected by 1.
2054    3 - any <function> in the docs that has an actual funcdef,
2055    will become an olink.
2056    
2057    Signed-off-by: Matt Dew <marcoz@osource.org>
2058
2059commit f858f3326adbc0c5711669b92a64a84a9083a055
2060Author: James Cloos <cloos@jhcloos.com>
2061Date:   Tue Oct 4 17:11:11 2011 -0400
2062
2063    [nls] Fix typo/synco.
2064    
2065    The iso8859-1 Compose table includes an optional section which uses
2066    Ctrl<T> as a substitute for <Multi_key>.  In that section the sequence
2067    to generate an @ (at) either was incorrectly copied from the Multi_key
2068    section or was not kept in sync with the Multi_key section.
2069    
2070    Fixing this eliminates the warning from compose-check.pl:
2071    
2072    ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
2073    ┃ Clash with existing sequence in iso8859-1/Compose.pre
2074    ┃  on line 661: Ctrl<T> <A> <A>
2075    ┃    line #661: Ctrl<T> <A> <A>		: "\305"	Aring
2076    ┃    line #480: Ctrl<T> <A> <A>		: "@"	at
2077    ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
2078    
2079    Signed-off-by: James Cloos <cloos@jhcloos.com>
2080
2081commit 7f35f7efc23234b3f8529fee31a802c21846d9ab
2082Author: Jeremy Huddleston <jeremyhu@apple.com>
2083Date:   Mon Sep 26 11:32:56 2011 -0700
2084
2085    Remove conflicting compose sequences for cent and colon
2086    
2087    Regression from 4d78ad4bf6dcabca9bb5f84c770abfbb02d3f7a4
2088    Found by tinderbox
2089    
2090    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
2091
2092commit 4d78ad4bf6dcabca9bb5f84c770abfbb02d3f7a4
2093Author: Jeremy Huddleston <jeremyhu@apple.com>
2094Date:   Sun Sep 25 16:29:17 2011 -0700
2095
2096    Add additional compose sequences for pound sterling, yen, and cent (mixed case)
2097    
2098    https://bugs.freedesktop.org/show_bug.cgi?id=1013
2099    
2100    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
2101    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
2102
2103commit 0ca4153a373e2af7a9eb3cef003393ab332bc79e
2104Author: Jeremy Huddleston <jeremyhu@apple.com>
2105Date:   Sat Sep 24 16:44:04 2011 -0700
2106
2107    Use a configure check for seteuid
2108    
2109    HP-UX doesn't have seteuid
2110    
2111    https://bugs.freedesktop.org/show_bug.cgi?id=1497
2112    
2113    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
2114
2115commit 79594b4d66344f248eb4314ecb78eb81f632c3ab
2116Author: Gaetan Nadon <memsize@videotron.ca>
2117Date:   Tue Sep 20 16:06:10 2011 -0400
2118
2119    localedb specs: use <copyright> for first holder of multi license
2120    
2121    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2122
2123commit 154430268cf004b06920edde2f1812dc16d71fae
2124Author: Gaetan Nadon <memsize@videotron.ca>
2125Date:   Tue Sep 20 16:01:52 2011 -0400
2126
2127    libX11 specs: use <copyright> for first holder of multi license
2128    
2129    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2130
2131commit 66e621f58dee804acb795ff2c79ce6dd38b34a3f
2132Author: Tollef Fog Heen <tfheen@err.no>
2133Date:   Tue Sep 20 13:07:37 2011 -0400
2134
2135    NLS: Add more vulgar fractions
2136    
2137    Add 1/7, 1/9, 1/10 and 0/3 vulgar fractions.
2138    
2139    Signed-off-by: Tollef Fog Heen <tfheen@err.no>
2140    Signed-off-by: James Cloos <cloos@jhcloos.com>
2141
2142commit e37a6da814b5653be46000a9a76902729660a2e6
2143Author: Alexander Polakov <polachok@gmail.com>
2144Date:   Sat Sep 17 20:54:58 2011 +0400
2145
2146    XGrabKey manual page: change XAllowAccess to XAllowEvents in See Also
2147    
2148    There is no XAllowAccess man page to see.
2149    
2150    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2151    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2152
2153commit a23f3323f269b33a43d16dce01395cd28bc41b45
2154Author: Gaetan Nadon <memsize@videotron.ca>
2155Date:   Mon Sep 19 15:27:44 2011 -0400
2156
2157    XKB: provide adequate quotes for the license text
2158    
2159    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2160
2161commit a9c7a5cad91d968f5536ef8fc735036e921832a3
2162Author: Gaetan Nadon <memsize@videotron.ca>
2163Date:   Mon Sep 19 15:18:53 2011 -0400
2164
2165    XIM: refactor the multi licensing legal text
2166    
2167    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2168
2169commit c46f934ed89e7de79746a0387c9f998d91994ea6
2170Author: Gaetan Nadon <memsize@videotron.ca>
2171Date:   Mon Sep 19 10:33:30 2011 -0400
2172
2173    xim trans: restore Fujitsu copyright legal text
2174    
2175    Somehow lost during docbook conversion. text from x.org ftp R7.5.
2176    
2177    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2178
2179commit 3d75f993382bfdc89d31668d7dfc71c91222e0d7
2180Author: Gaetan Nadon <memsize@videotron.ca>
2181Date:   Mon Sep 19 10:11:46 2011 -0400
2182
2183    xtrans: restore X Consortium original legal text
2184    
2185    Asking X Consortium permission to use The Open Group name makes no sense.
2186    Even more so in 1994 before X Window System was passed on to the Open Group.
2187    
2188    Using original text from xorg-docs/general/License
2189    
2190    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2191
2192commit 136a381585a4a9686c11bad1a6130837978e677f
2193Author: Gaetan Nadon <memsize@videotron.ca>
2194Date:   Mon Sep 19 10:03:21 2011 -0400
2195
2196    Framework: restore X Consortium copyright
2197    
2198    Somewhat dammaged during docbook conversion.
2199    Also restore pasrt of the original license text
2200    
2201    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2202
2203commit 33f346878406762704a0c13cdc018111c666f3c1
2204Author: Gaetan Nadon <memsize@videotron.ca>
2205Date:   Mon Sep 19 09:50:00 2011 -0400
2206
2207    localedb: restore X Consortium original legal text
2208    
2209    Asking X Consortium permission to use The Open Group name makes no sense.
2210    Even more so in 1994 before X Window System was passed on to the Open Group.
2211    
2212    Using original text from xorg-docs/general/License
2213    
2214    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2215
2216commit e99c9338e413efca026210b9d830efb5c74d34e5
2217Author: Gaetan Nadon <memsize@videotron.ca>
2218Date:   Mon Sep 19 08:23:18 2011 -0400
2219
2220    specs: support multi licensed copyright notice and license text
2221    
2222    For documentation having multiple licenses, the copyright and legalnotice
2223    elements sequence cannot instantiated multiple times.
2224    The copyright notice and license text are therefore coded inside a
2225    legalnotice element. The role attribute on the paragraph is used to allow
2226    styling of the copyright notice text which should not be italicized.
2227    
2228    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2229
2230commit b9dedc757e667333ce899115d618f25cdaa4dd5e
2231Author: Gaetan Nadon <memsize@videotron.ca>
2232Date:   Mon Sep 19 08:17:50 2011 -0400
2233
2234    localedb: add release info to spec
2235    
2236    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2237
2238commit 4519c89a87ddce01e599542737a27c26030fe4ff
2239Author: Gaetan Nadon <memsize@videotron.ca>
2240Date:   Mon Sep 19 08:05:32 2011 -0400
2241
2242    specs: fix The Open Group license text
2243    
2244    The warranty referred to the X Consortium
2245    
2246    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2247
2248commit 08ac378423e7be72e340197ba5559a1a36f1783c
2249Author: Gaetan Nadon <memsize@videotron.ca>
2250Date:   Mon Sep 19 08:03:39 2011 -0400
2251
2252    specs: The strandard name is still "X Consortium Standard"
2253    
2254    This spec, and fsproto spec, are the only two docs with a different
2255    standard name.
2256    
2257    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2258
2259commit 8dfbeb1b1b1e8aa17f69d0a373155419a5f6a172
2260Author: Gaetan Nadon <memsize@videotron.ca>
2261Date:   Sun Sep 18 13:22:34 2011 -0400
2262
2263    specs: support multi licensed copyright notice and license text
2264    
2265    For documentation having multiple licenses, the copyright and legalnotice
2266    elements sequence cannot instantiated multiple times.
2267    The copyright notice and license text are therefore coded inside a legalnotice
2268    element. The role attribute on the paragraph is used to allow styling of the
2269    copyright notice text which should not be italicized.
2270    
2271    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2272
2273commit 278ca8947c1dabb2b819527dca0fa6190c034f67
2274Author: Gaetan Nadon <memsize@videotron.ca>
2275Date:   Fri Sep 16 11:45:56 2011 -0400
2276
2277    docs: merge copyright holder under the same copyright notice
2278    
2279    As per the docbook markup dtd.
2280    
2281    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2282
2283commit 7ff012bb433109a622ac122ade71669e842ebdcf
2284Author: Gaetan Nadon <memsize@videotron.ca>
2285Date:   Fri Sep 16 10:09:57 2011 -0400
2286
2287    specs: handle multiple sets of copyright notice/license/warranty
2288    
2289    Docbook groups all the <copyright> elements together and all the
2290    <legalnotice> elements together.
2291    
2292    We cannot have a sequence:
2293    <copyright> <legalnotice> <copyright> <legalnotice> [...]
2294    
2295    A workaround, which was done in some documents, is to put the copyright
2296    notice inside the legalnotice in plain text without the <copyright> element.
2297    A formal paragraph title is added here which makes the copyright notice bold,
2298    and makes it much easier to locate.
2299    
2300    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2301    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2302
2303commit 4a550c71b8221c37b1a9378d5a170da9eaa03405
2304Author: Gaetan Nadon <memsize@videotron.ca>
2305Date:   Wed Sep 14 15:55:42 2011 -0400
2306
2307    specs: remove orphan affiliation.
2308    
2309    Authors affiliation are correct.
2310    
2311    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2312
2313commit 0cc02a6df65214560b7575e89cebee741d6d2469
2314Author: Gaetan Nadon <memsize@videotron.ca>
2315Date:   Tue Sep 13 17:39:02 2011 -0400
2316
2317    specs: use appropriate markup for Copyright statements
2318    
2319    Also move <releaseinfo> to match order of appearance
2320    
2321    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2322
2323commit afe13e19ebf0fc4e3460644164433af016f0add7
2324Author: Gaetan Nadon <memsize@videotron.ca>
2325Date:   Mon Sep 12 16:54:45 2011 -0400
2326
2327    docs: use the &fullrelvers; entity to set X11 release information
2328    
2329    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2330
2331commit 22a2153282db13e9d94881022b8c979539841a2c
2332Author: Gaetan Nadon <memsize@videotron.ca>
2333Date:   Sun Sep 11 19:49:53 2011 -0400
2334
2335    docs: remove <productnumber> which is not used by default
2336    
2337    This element is not rendered by default on the title. A template
2338    customization is required to display it.
2339    X Window System does not have a product number.
2340    
2341    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2342
2343commit 719f16570d9fcfd15247813ee51fa51ac8a6ff4c
2344Author: Gaetan Nadon <memsize@videotron.ca>
2345Date:   Sun Sep 11 17:40:21 2011 -0400
2346
2347    docs: use the &fullrelvers; entity to set X11 release information
2348    
2349    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2350
2351commit a6b2992f50b571d612ea9ade631c432c3099bc12
2352Author: Gaetan Nadon <memsize@videotron.ca>
2353Date:   Sun Sep 11 17:38:42 2011 -0400
2354
2355    docs: remove orphan <affiliation>
2356    
2357    Somehow created during the conversion from roff. Unable to locate
2358    the author to which it belongs.
2359    
2360    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2361
2362commit c7420060b6e47b8467ba50c796ec3c1bab090bc7
2363Author: Gaetan Nadon <memsize@videotron.ca>
2364Date:   Sun Sep 11 17:38:05 2011 -0400
2365
2366    docs: remove <productnumber> which is not used by default
2367    
2368    This element is not rendered by default on the title. A template
2369    customization is required to display it.
2370    X Window System does not have a product number.
2371    
2372    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2373
2374commit 7d5b718c1edbc43c54b7001be548e515a49540ea
2375Author: Gaetan Nadon <memsize@videotron.ca>
2376Date:   Fri Sep 9 14:46:39 2011 -0400
2377
2378    docbook.am: embed css styles inside the HTML HEAD element
2379    
2380    Rather than referring to the external xorg.css stylesheet, embed the content
2381    of the file in the html output produced. This is accomplished by using
2382    version 1.10 of xorg-xhtml.xsl.
2383    
2384    This makes the whole html docs tree much more relocatable.
2385    In addition, it eliminates xorg.css as a runtime file which makes
2386    xorg-sgml-doctools a build time only package.
2387    
2388    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2389
2390commit 24632d280491c465dfe208ef788815890892e326
2391Author: Gaetan Nadon <memsize@videotron.ca>
2392Date:   Mon Sep 5 12:53:12 2011 -0400
2393
2394    compose: upgrade makefile to support olinking on chunked html
2395    
2396    The essential differences over the regular docbook.am are:
2397    Adding root.filename parameter for naming of chapters html files.
2398    Using xhtml xmlto format and xorg-chunk.xsl stylesheet
2399    Set olink.base.uri for pdf but not for chunked html
2400    Olink is not applicable to ps and txt formats.
2401    
2402    Html chapters are added to shelf_DATA as they are also installed.
2403    The xml is generated from a perl script and not distributed.
2404    
2405    Requires version 1.10 of xorg-sgml-doctools.
2406    
2407    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2408
2409commit 93ab0a1c9a4f9094cf0c8e1c686130673e681798
2410Author: Gaetan Nadon <memsize@videotron.ca>
2411Date:   Wed Aug 31 19:46:20 2011 -0400
2412
2413    docbook.am: refactor common flags for xmlto and xsltproc
2414    
2415    Maximize reuse and reduce risk of setting the wrong flag
2416    at the wrong place.
2417    
2418    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2419
2420commit 85b725aa9ef76aeb5e94d42e0cd60f896da7ab97
2421Author: Gaetan Nadon <memsize@videotron.ca>
2422Date:   Wed Aug 31 10:46:59 2011 -0400
2423
2424    docbook.am: add search path for local entities
2425    
2426    Currently, only $(XORG_SGML_PATH)/X11 is searched for xml entities.
2427    A module may want to add entities that apply only to itself and
2428    not to all modules, like the xserver does.
2429    
2430    This feature may or may not be used in this module, but all modules
2431    share a copy of docbook.am.
2432    
2433    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2434
2435commit b5ed2d368d47f244d43d2513329fa2758bc4ef54
2436Author: Gaetan Nadon <memsize@videotron.ca>
2437Date:   Thu Aug 25 14:39:20 2011 -0400
2438
2439    docbook.am: explicitly list xmlto flags for each target
2440    
2441    Normal evolution of make targets make it impractical to factor out
2442    common command flags for xmlto.
2443    
2444    The targets now list each command option as its presence or absence
2445    needs to be justified.
2446    
2447    xorg.ss is only needed by xmlto for html.
2448    masterdb is only needed by xmlto.
2449    img.src.path must not be used by html.
2450    xsltproc need to use customization layer xorg-*.xsl.
2451    txt format is not required to search masterdb.
2452    
2453    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2454
2455commit d5b3605f3b0639452e892e9ff3afb18bb7442069
2456Author: Gaetan Nadon <memsize@videotron.ca>
2457Date:   Thu Aug 25 13:12:49 2011 -0400
2458
2459    docbook.am: do not generate docs if docbook customization layer is missing
2460    
2461    The stylesheets used to be only about style, fonts or colors.
2462    Complex features are now used like olink and chunked html which
2463    may cause a build break when stylesheets are missing or lead to hard
2464    to find problem.
2465    
2466    Some modules may be built when stylesheets are present while others
2467    are built without. There is no requirement to build crippled docs.
2468    
2469    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2470
2471commit 7f23c72c94d9d14122426b0d8c66054f1402769a
2472Author: Gaetan Nadon <memsize@videotron.ca>
2473Date:   Fri Aug 5 14:33:32 2011 -0400
2474
2475    libX11 specs: review doclifter generated tables
2476    
2477    Many tables had a questionnable layout and some had information dropped.
2478    Each table was cross-referenced with a pre-docbook version
2479    to ensure semantic integrity.
2480    
2481    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2482
2483commit 1efdbeb8cd08f443188ac783cbab6ba0654a66d6
2484Author: Gaetan Nadon <memsize@videotron.ca>
2485Date:   Wed Jul 20 15:28:47 2011 -0400
2486
2487    credits.xml: remove toc from Acknowledgments
2488    
2489    There should be no toc for a simple preface with only one
2490    Acknowledgments section.
2491    
2492    Use <simplesect> markup rather than sect1.
2493    
2494    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2495
2496commit 77cc17ed0817c1df3ac5feb9dc83a5ba5d021a4b
2497Author: Gaetan Nadon <memsize@videotron.ca>
2498Date:   Thu Aug 4 19:59:37 2011 -0400
2499
2500    libX11 specs: move </para> above <varaiablelist>
2501    
2502    Many, but not all, function synopsis have a paragraph that
2503    nests the variable list. The code was generated by doclifter
2504    and there is no apprent reasons as to why it was done this way.
2505    Found while investigating a spacing issue.
2506    
2507    Before the patch:
2508    <para>Some blurb about the function
2509    <funcsynopsis>
2510    </funcsynopsis>
2511    <variablelist>
2512    </variablelist>
2513    </para>
2514    
2515    After the patch:
2516    <para>Some blurb about the function</para>
2517    <funcsynopsis>
2518    </funcsynopsis>
2519    <variablelist>
2520    </variablelist>
2521    
2522    There are no noticable differences when reading the doc
2523    other than than the removed few pixels of spacing between
2524    the function sysnopsis and the variable list block.
2525    
2526    In some cases, there are no "blurb about the fucntion"
2527    and the empty paragraph is removed.
2528    
2529    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2530
2531commit 18595f0d8f95ff1c12e7b9f73bd4b30dda5c7168
2532Author: Gaetan Nadon <memsize@videotron.ca>
2533Date:   Thu Jul 28 19:46:14 2011 -0400
2534
2535    compose specs: generate chunked html
2536    
2537    For large 600 page documents such as this one, chunked html
2538    provide faster browser load time and better navigation.
2539    
2540    Simply click on the locale of your choice in the toc and
2541    the browser loads just that one file. Being a DocBook,
2542    it benefits from all of the usual features and can be
2543    integrated with the rest of the documentation.
2544    
2545    Acked-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2546    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2547
2548commit 5cc8815b8a117cf0b6af37e7d55c5a420d9fff57
2549Author: Gaetan Nadon <memsize@videotron.ca>
2550Date:   Thu Jun 23 15:16:47 2011 -0400
2551
2552    specs: build compose keys tables in specs/i18n/compose
2553    
2554    Build the tables article together with the rest of the specs.
2555    Make it transparent that the source in generated in nls.
2556    Reuse docbook.am and get all the features such as olink.
2557    
2558    The docbook article file stem and id must be the same. The new name
2559    for the main article is libX11-keys. The new installation location
2560    is $docdir/libX11/i18n/compose.
2561    
2562    The nls dir retains the role of generating the DocBook/XML source
2563    but does not build neither installs output formats or generated source.
2564    
2565    The tables article now has to specify that each included locale
2566    section is a dependency. It did not matter before as they were web links.
2567    
2568    The xorg-sgml-doctools masterdb shall be updated to include this new doc.
2569    Install location moved from doc/libX11/Compose to doc/libX11/i18n/compose.
2570    
2571    Acked-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2572    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2573
2574commit adebbe3856b4aee39c0c7af902c1dea847dd6d7c
2575Author: Gaetan Nadon <memsize@videotron.ca>
2576Date:   Thu Jun 23 14:43:31 2011 -0400
2577
2578    nls: restructure charts as a single article with sections
2579    
2580    Looks more like a real article with a toc rather than individual
2581    web pages. Looks nicer in pdf.
2582    
2583    Each locale is a "section" rather than an "article".
2584    Using XInclude to aggregate xml source files gets you the toc for free.
2585    
2586    The single document is over 600 pages while there were 62 separate
2587    documents previously. FOP version 1.0 is required to handle missing
2588    character like capital sharp s.
2589    
2590    Acked-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2591    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2592
2593commit fc74dc12b1ff3c43e240e1a713316ce1bf525d61
2594Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2595Date:   Thu Jul 28 19:32:40 2011 -0700
2596
2597    libX11 1.4.4
2598    
2599    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2600
2601commit ab1f30231755d99ed123af6873b981834640f01d
2602Author: Matt Dew <marcoz@osource.org>
2603Date:   Wed Jul 13 12:33:40 2011 -0600
2604
2605    Add id attributes to error codes to allow linking from other docs.
2606    
2607    Signed-off-by: Matt Dew <marcoz@osource.org>
2608    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2609    Acked-by: Gaetan Nadon <memsize@videotron.ca>
2610
2611commit 5c831fef402914ccf2ec14005c25be48852f119b
2612Author: David Coppa <dcoppa@gmail.com>
2613Date:   Tue Jul 12 10:05:47 2011 +0200
2614
2615    Fix libpthread linkage on OpenBSD.
2616    
2617    OpenBSD prefers to use the -pthread to fetch pthread libs when needed.
2618    
2619    Signed-off-by: Matthieu Herrb <matthieu.herrb@laas.fr>
2620    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2621
2622commit 445b0b3efc04a74fc77cd3e483b25cfb5da82f12
2623Author: Gaetan Nadon <memsize@videotron.ca>
2624Date:   Wed Jun 22 20:46:26 2011 -0400
2625
2626    config: use XORG_WITH_PERL macro to replace custom program check
2627    
2628    New in version util-macros 1.15, the macro does the usual checking
2629    for program path and provides an interface for makefile variables.
2630    
2631    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2632    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2633
2634commit 47d99a324db9232029a22dd523e3bc3ed0936aca
2635Author: Gaetan Nadon <memsize@videotron.ca>
2636Date:   Wed Jun 22 20:41:18 2011 -0400
2637
2638    config: update XORG_WITH_FOP macro usage
2639    
2640    A new feature to test for a minimum version has been added.
2641    
2642    The parameter position changed. Due to limited usage
2643    and requiring 1.15, it turns out to be backward compatible.
2644    
2645    There is no functional change to how docs are build.
2646    
2647    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2648
2649commit e659683ad51ecc26c989fbdefdfe20f83af2c5a5
2650Author: Gaetan Nadon <memsize@videotron.ca>
2651Date:   Wed Jun 22 11:48:49 2011 -0400
2652
2653    Remove unused xmlrules.in in specs, now in /nls
2654    
2655    The specs dir has been converted to docbook.am
2656    
2657    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2658
2659commit 9992092609bd83a0db778e9a9ac1e879d445e637
2660Author: Gaetan Nadon <memsize@videotron.ca>
2661Date:   Thu Mar 31 10:23:22 2011 -0400
2662
2663    nls: move xmlrules.in from specs to nls
2664    
2665    It is no longer used in the specs dir.
2666    Remove html from CLEANFILES as it breaks. Make do not clean directories
2667    Remove SUFFIXES as pattern rules are used rather than suffix rules.
2668    
2669    Other improvements are possible, the first priority is to move it out
2670    of the specs dir.
2671    
2672    Acked-by: Peter Hutterer <peter.hutterer@who-t.net>
2673    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2674
2675commit b370eeb0191b0e2a8bde2f03a442a8ca62e35d58
2676Author: Gaetan Nadon <memsize@videotron.ca>
2677Date:   Sun Jun 5 16:27:36 2011 -0400
2678
2679    Install target dbs alongside generated documents
2680    
2681    This matches a change in xorg-sgml-docs whereby the masterdb will look for
2682    the target dbs into the same location as the generated documents.
2683    
2684    The target dbs are now installed alongside the generated documents.
2685    Previously they are installed in $prefix/sgml/X11/dbs alongside masterdb which
2686    has the potential of installing outside the package prefix and cause
2687    distcheck to fail when user does not have write permission in this package.
2688    
2689    Requires XORG_CHECK_SGML_DOCTOOLS(1.8) which was released 2011-06-11
2690
2691commit 4e741654b7e0a283779b8b4af5bb32e05b7fc678
2692Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2693Date:   Tue Jun 7 18:41:30 2011 -0700
2694
2695    specs/libX11: Turn appendix references into links
2696    
2697    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2698
2699commit a3d1152bc4b300f59ea2f08925739aab1ebfbc4e
2700Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2701Date:   Tue Jun 7 18:37:41 2011 -0700
2702
2703    specs/libX11: Turn chapter references into links
2704    
2705    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2706
2707commit d0cc949dfe44a41a71f19e4fe6c7547bb3d9bdbe
2708Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2709Date:   Tue Jun 7 00:52:32 2011 -0700
2710
2711    specs/libX11: Turn many "see section ..." into links
2712    
2713    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2714
2715commit 02d4c08dead2f266809b3f93ec72377783423ac7
2716Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2717Date:   Sun Jun 5 22:50:37 2011 -0700
2718
2719    specs/libX11: Convert some header filenames to filename tags
2720    
2721    perl -i -p -e 's{^&lt;(.*\.h)&gt;\ *}{<filename class="headerfile">&lt;\1&gt;</filename>}' *.xml
2722    
2723    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2724
2725commit c51a011329afa6e5b9d2b285349c132683ecf9fb
2726Author: Matt Dew <marcoz@osource.org>
2727Date:   Tue May 31 20:03:23 2011 -0600
2728
2729    Add id attributes to funcsynopsis to allow other docs to olink to them.
2730    
2731    Signed-off-by: Matt Dew <marcoz@osource.org>
2732    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2733    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
2734
2735commit 6841260c8bb15404a0b4805bee3b0bdfec7176b3
2736Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2737Date:   Fri May 27 20:14:36 2011 -0700
2738
2739    Bug 37624 - parameter x is missing from synopsis of XDrawString in libX11.html
2740    
2741    https://bugs.freedesktop.org/show_bug.cgi?id=37624
2742    
2743    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2744
2745commit 205af6a4e557c62a6395feadc1c89f4a9fe1713b
2746Author: Matt Dew <marcoz@osource.org>
2747Date:   Sat May 21 00:23:06 2011 -0600
2748
2749    Add id's to functions, to make clickable links.
2750    
2751    Signed-off-by: Matt Dew <marcoz@osource.org>
2752    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
2753
2754commit 5c06bc594473f6ab234724cd90db32e7b57fe811
2755Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2756Date:   Fri May 20 15:38:08 2011 -0700
2757
2758    libX11 spec: fix monospaced column alignment after deligaturization
2759    
2760    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2761
2762commit ef0019c714c273cb9b4ad3eba52d0b905109826b
2763Author: James Cloos <cloos@jhcloos.com>
2764Date:   Fri May 20 15:51:46 2011 -0400
2765
2766    Expand latin ligatures out to their NFKC equivalents.
2767    
2768    Ligatures should be done by the typesetting system.
2769    Manuscripts should not bother with them.
2770    
2771    Signed-off-by: James Cloos <cloos@jhcloos.com>
2772    Reviewed-by: Keith Packard <keithp@keithp.com>
2773
2774commit 761b8aa0c9b3c58c478ac5ea1b3aaafadcfc1325
2775Author: Daniel Stone <daniel@fooishbar.org>
2776Date:   Thu May 12 16:21:50 2011 +0200
2777
2778    XCB: Add more friendly error messages for common asserts
2779    
2780    This patch adds more friendly error messages for three common classes of
2781    assertion:
2782        - missed sequence numbers due to being griefed by another thread
2783        - unknown requests in queue due to being griefed by another thread
2784        - extensions dequeuing too much or too little reply data
2785    
2786    It adds error messages offering advice (e.g. call XInitThreads() first)
2787    on stderr, but still generates actual assertions.  Hopefully this means
2788    it's a little more Googleable and a little less frightening.
2789    
2790    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
2791    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
2792
2793commit 159bf292477048b9a2f074735afc516f52c93d80
2794Author: Gaetan Nadon <memsize@videotron.ca>
2795Date:   Thu May 19 20:22:11 2011 -0400
2796
2797    Remove misplaced hyphens in libX11 DocBook/XML #37364
2798    
2799    Reported-by: Christopher Yeleighton <giecrilj@stegny.2a.pl>
2800    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
2801    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2802    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2803
2804commit 0ee6d8247d397500ae183ef180b6ff21bceefa1c
2805Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2806Date:   Tue May 17 20:49:59 2011 -0700
2807
2808    Fix man page and comment references to use XFreeModifiermap (lowercase map)
2809    
2810    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2811
2812commit 3275ec4ca8790d571b6a1902367ca5f68a2dc5fd
2813Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2814Date:   Tue May 17 20:30:54 2011 -0700
2815
2816    XKB man pages: Fix coordinantes typo in multiple pages
2817    
2818    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2819
2820commit ca33a80606cd68e4572fa49ed6aaa1d1fc31a47f
2821Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2822Date:   Tue May 17 16:27:32 2011 -0700
2823
2824    DisplayOfCCC.man: Fix typo "ClientWhitePointOfCC" -> "ClientWhitePointOfCCC"
2825    
2826    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2827
2828commit ae39d82b01359b07dd1fe092d867f79ea95a5438
2829Author: Jeremy Huddleston <jeremyhu@apple.com>
2830Date:   Sun May 8 09:08:07 2011 -0700
2831
2832    Silence clang static analysis warnings for SetReqLen
2833    
2834    This provides a simplified version of the SetReqLen macro when using clang for
2835    static analysis.  Prior to this change, we would see many Idempotent operation
2836    warnings inside this macro due to the common case of calling with arg2 and
2837    arg3 being the same variable.  This has no effect on code produced during
2838    compilation, but it silences a number of false positives in static analysis.
2839    
2840    XIPassiveGrab.c:170:5: warning: Assigned value is always the same as the existing value
2841        SetReqLen(req, num_modifiers, num_modifiers);
2842        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2843    In file included from XIPassiveGrab.c:26:
2844    .../include/X11/Xlibint.h:580:8: note: instantiated from:
2845                n = badlen; \
2846                  ^
2847    
2848    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
2849
2850commit 130af2bc02090ee2526adb2f9803fc07019b8f1f
2851Author: Jeremy Huddleston <jeremyhu@apple.com>
2852Date:   Wed May 4 15:34:31 2011 -0700
2853
2854    XKB: XkbComputeSectionBounds: Check correct bounds in default switch-case
2855    
2856    XKBGeom.c:191:25: warning: Access to field 'x1' results in a dereference of a null pointer (loaded from variable 'rbounds')
2857            _XkbCheckBounds(bounds,rbounds->x1,rbounds->y1);
2858                                   ^~~~~~~
2859    
2860    Found-by: clang static analyzer
2861    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
2862    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
2863
2864commit c987ef04bea345d5810e60cf6c53b747ddbe910e
2865Author: Jeremy Huddleston <jeremyhu@apple.com>
2866Date:   Wed May 4 15:31:17 2011 -0700
2867
2868    Revert "XKB: Avoid a possible NULL dereference"
2869    
2870    Sorry for the noise.  I accidentally pushed and didn't mean to. =(
2871    
2872    This reverts commit 4024091678ea07e0d898b798df9b29f3bf68eb08.
2873
2874commit 46d04bc4e7ff6c86385002c929d8eb0310f737a8
2875Author: Jeremy Huddleston <jeremyhu@apple.com>
2876Date:   Wed May 4 11:35:31 2011 -0700
2877
2878    Dead code removal
2879    
2880    XKBGeom.c:118:27: warning: Assigned value is always the same as the existing value
2881        for (key=row->keys,pos=k=0;k<row->num_keys;k++,key++) {
2882                           ~~~^~~~
2883    XKBGeom.c:115:5: warning: Value stored to 'pos' is never read
2884        pos= 0;
2885        ^    ~
2886    
2887    Found-by: clang static analyzer
2888    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
2889
2890commit 4024091678ea07e0d898b798df9b29f3bf68eb08
2891Author: Jeremy Huddleston <jeremyhu@apple.com>
2892Date:   Wed May 4 11:34:53 2011 -0700
2893
2894    XKB: Avoid a possible NULL dereference
2895    
2896    XKBGeom.c:191:25: warning: Access to field 'x1' results in a dereference of a null pointer (loaded from variable 'rbounds')
2897            _XkbCheckBounds(bounds,rbounds->x1,rbounds->y1);
2898                                   ^~~~~~~
2899    
2900    Found-by: clang static analyzer
2901    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
2902
2903commit 626e5e34be55b7cf734d745bd40a7ee3359029f8
2904Author: Jeremy Huddleston <jeremyhu@apple.com>
2905Date:   Wed May 4 11:21:41 2011 -0700
2906
2907    Annotate _XIOError as _X_NORETURN
2908    
2909    Found-by: clang static analyzer
2910    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
2911
2912commit d3d7896408b435ab42656398839ff4351a37724d
2913Author: Jeremy Huddleston <jeremyhu@apple.com>
2914Date:   Tue May 3 09:32:53 2011 -0700
2915
2916    clang analyzer: Don't warn about Xmalloc(0)
2917    
2918    This will prevent a number of false positives in where clang's
2919    static analysis reports about calls to malloc(0).
2920    
2921    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
2922
2923commit 393921cf2188b2b0713cc157effaf17d0abab783
2924Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2925Date:   Thu Apr 21 16:21:04 2011 -0700
2926
2927    Delete special case code to append "/sparcv9" to i18n module path
2928    
2929    Was triggered by defined(__sparcv9) so only built on Solaris SPARC 64-bit.
2930    Inconsistent with all other platforms, and a bit overcomplicated.
2931    
2932    Should anyone need to continue using that path, simply build with
2933    a #define POSTLOCALELIBDIR "sparcv9" to get the same result.
2934    
2935    Fixes Solaris bug 7038737:
2936     sparcv9 Xlib looking in wrong path for i18n loadable modules
2937    
2938    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2939    Reviewed-by: Daniel Stone <daniel@fooishbar.org>
2940
2941commit b9ff9cfd5c56ae6d52c6503f7019756d9de29557
2942Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2943Date:   Thu Apr 14 13:47:12 2011 -0700
2944
2945    specs/libX11: Fix XOpenDisplay() prototype in chapter 2 [bug 36244]
2946    
2947    Was incorrectly showing AllPlanes() instead when describing XOpenDisplay()
2948    
2949    https://bugs.freedesktop.org/show_bug.cgi?id=36244
2950    
2951    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2952
2953commit b850adbdebcf500c659f85285d4d7374e15857f5
2954Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2955Date:   Tue Apr 12 22:30:45 2011 -0700
2956
2957    Convert malloc(strlen()); strcpy() sets to strdup
2958    
2959    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2960    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
2961
2962commit 09194042d3dc44a463add1f7c122a68ffd5ef0bf
2963Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2964Date:   Tue Apr 12 21:27:45 2011 -0700
2965
2966    Replace Xmalloc+bzero pairs with Xcalloc calls
2967    
2968    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2969    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
2970
2971commit ac1e2bff7121987fd768500a11d428d9fb9447c5
2972Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
2973Date:   Fri Mar 25 14:47:35 2011 +0200
2974
2975    om: Fix memory leaks on get_font_name error paths.
2976    
2977    While at it, remove unneeded check for NULL before Xfree.
2978    
2979    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
2980    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2981
2982commit 7c362e275c93c92b4e68fe862e73ee36665de703
2983Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
2984Date:   Wed Mar 30 15:06:10 2011 +0300
2985
2986    xcms: Fix memory leaks on LINEAR_RGB_InitSCCData error path.
2987    
2988    pScreenData is replaced when building per visual intensity tables. If
2989    malloc failed the old value of pScreenData (stored also in
2990    pScreenDefaultData) was being leaked. Also, property_return wasn't
2991    free'd in that case.
2992    
2993    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
2994    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2995
2996commit 5c810e2ac233e00f361549bafb9b59e8a9e05eff
2997Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
2998Date:   Wed Mar 30 15:19:28 2011 +0300
2999
3000    xcms: Fix error on LINEAR_RGB_InitSCCData error path.
3001    
3002    Due to what looks like a copy & paste error, pScreenData->pBlueTbl would
3003    be accessed after being free'd.
3004    
3005    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3006    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3007
3008commit d749948f9492fd9b61c74655a08e32c595e0e3a5
3009Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3010Date:   Fri Mar 25 16:06:15 2011 +0200
3011
3012    om: Fix potential memory leak in init_om.
3013    
3014    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3015    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3016
3017commit d0749d6abdf0fd4d8b4e59b02dad8ccda3f10995
3018Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3019Date:   Thu Mar 24 20:40:41 2011 +0200
3020
3021    om: Fix memory leak on read_EncodingInfo error path.
3022    
3023    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3024    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3025
3026commit 4b2e8d00f5b6969c14003ee8eb258b9f0e4dd7c3
3027Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3028Date:   Thu Mar 24 19:55:33 2011 +0200
3029
3030    Fix memory leaks on _XimCbDispatch error path.
3031    
3032    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3033    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3034
3035commit 46e6c78b1a89e4774e0f7e0f4d6d0fd060c3897e
3036Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3037Date:   Thu Mar 24 19:52:05 2011 +0200
3038
3039    Fix memory leak on _XimCommitRecv error path.
3040    
3041    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3042    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3043
3044commit 0ace642a2d47265f01450bfa2b2fd48eb6956a83
3045Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3046Date:   Thu Mar 24 19:48:44 2011 +0200
3047
3048    Fix memory leaks on _XimWriteCachedDefaultTree error paths.
3049    
3050    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3051    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3052
3053commit e29be94edbb58b3b8dab545377a710d1f73b61e0
3054Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3055Date:   Thu Mar 24 19:42:36 2011 +0200
3056
3057    Fix memory leaks on _XimGetAttributeID error paths.
3058    
3059    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3060    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3061
3062commit d144a50512466766f55ce61e3884925334b08f0d
3063Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3064Date:   Thu Mar 24 19:36:56 2011 +0200
3065
3066    Fix memory leaks on _XimProtoCreateIC error paths.
3067    
3068    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3069    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3070
3071commit 6a452f7a98499508f753cb8a7c3f08bcbec736b9
3072Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3073Date:   Thu Mar 24 16:24:29 2011 +0200
3074
3075    Fix leaks in _XimEncodingNegotiation error paths.
3076    
3077    name_ptr and detail_ptr weren't free'd in some cases before returning
3078    False.
3079    
3080    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3081    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3082
3083commit 396e5a452a59c1f121220ba72167b720a863b30f
3084Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3085Date:   Thu Mar 24 14:17:44 2011 +0200
3086
3087    FSWrap: fix potential leak in copy_string_list
3088    
3089    If list_count is 0, dst would be allocated and leaked.
3090    
3091    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3092    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3093
3094commit 1a944260182bb552b954d69f6355c2760d4415df
3095Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3096Date:   Wed Mar 23 14:36:22 2011 +0200
3097
3098    Fix memory leak with broken bitmap files in XReadBitmapFileData
3099    
3100    Bitmap file data is read looping through the lines in the input file. If
3101    there is extra data after the bitmap, these lines will be processed and
3102    if this data represents another bitmap it will replace the one read
3103    before causing the memory allocated for bits to leak.
3104    
3105    This changes the code to stop processing the file once a bitmap was
3106    read.
3107    
3108    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3109    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3110
3111commit c1c91e9a221a0e762d96cc12a3f189d6e59f4865
3112Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3113Date:   Tue Apr 12 20:50:42 2011 -0700
3114
3115    Fix "attrinute" typo in comments in ximcp
3116    
3117    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3118
3119commit 7103b83a88edb9c93acfa68f3b556595b087baff
3120Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3121Date:   Fri Apr 8 21:36:11 2011 -0700
3122
3123    Make doc install subdirectories more like the pre-docbook.am paths
3124    
3125    Haven't restored the "specs" path in the install path, but have restored
3126    libX11 & i18n subdirectories in the path for better logical grouping.
3127    
3128    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3129    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
3130
3131commit 9a1ae7a90f815a737a942e42d5eb1ffff400977b
3132Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3133Date:   Fri Apr 8 13:24:28 2011 -0700
3134
3135    Install xml versions of specs even if HAVE_XMLTO is false
3136    
3137    Moves HAVE_XMLTO check into docbook.am, more closely matches behaviour
3138    from before docbook.am changes (commit e8c76407d2f6e3)
3139    
3140    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3141    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
3142
3143commit a0ad0d5c99023bb9a8ce3944dbc3267f5265721e
3144Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3145Date:   Tue Apr 5 13:29:04 2011 -0700
3146
3147    libX11 1.4.3
3148    
3149    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3150
3151commit e8c76407d2f6e3b11babdb84426e43e780c859c3
3152Author: Gaetan Nadon <memsize@videotron.ca>
3153Date:   Fri Feb 25 09:23:54 2011 -0500
3154
3155    Documentation: add Docbook external references support
3156    
3157    When writing technical documentation, it is often necessary to cross
3158    reference to other information. When that other information is not in the
3159    current document, additional support is needed, namely <olink>.
3160    
3161    A new feature with version 1.7 of xorg-sgml-doctools adds references to
3162    other documents within or outside this package.
3163    
3164    This patch adds technical support for this feature but does not change
3165    the content of the documentation as seen by the end user.
3166    
3167    Each book or article must generate a database containing the href
3168    of sections that can be referred to from another document. This database
3169    is installed in DATAROOTDIR/sgml/X11/dbs. There is a requirement that
3170    the value of DATAROOTDIR for xorg-sgml-doctools and for the package
3171    documentation is the same. This forms a virtual document tree.
3172    
3173    This database is consulted by other documents while they are being generated
3174    in order to fulfill the missing information for linking.
3175    Refer to the xorg-sgml-doctools for further technical information.
3176    
3177    Co-authored-by: Matt Dew <marcoz@osource.org>
3178    
3179    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
3180
3181commit 25eb76b3d2726f2f1de759901971ae53b2539dc4
3182Author: Harshula Jayasuriya <harshula@gmail.com>
3183Date:   Mon Mar 21 14:49:37 2011 +0000
3184
3185    Add #define XK_SINHALA
3186    
3187    Add #define XK_SINHALA so that the Sinhala keysyms can be used by
3188    the lk xkb keymap.
3189    
3190    Signed-off-by: Harshula Jayasuriya <harshula@gmail.com>
3191    Reviewed-by: Daniel Stone <daniel@fooishbar.org>
3192
3193commit db8b20b789112717ac0590b40f0b4dc2171797d0
3194Author: Jeremy Huddleston <jeremyhu@apple.com>
3195Date:   Thu Mar 17 16:15:00 2011 -0700
3196
3197    configure.ac: Bump version to 1.4.2
3198    
3199    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
3200
3201commit 83e1ba59c48c79f8b0a7e7aa0b9c9cfd84fa403d
3202Author: Jamey Sharp <jamey@minilop.net>
3203Date:   Tue Mar 15 16:48:07 2011 -0700
3204
3205    Call _XErrorFunction without holding the Display lock.
3206    
3207    Historically, Xlib dropped the Display lock around the upcall to any
3208    user-supplied _XErrorFunction, but somewhere along the way I quit doing
3209    that if you built with XCB. The reasons are lost somewhere in the
3210    pre-git history of Xlib/XCB, and I can't now see any reason to hold the
3211    lock.
3212    
3213    The documentation for XSetErrorHandler still applies though:
3214    
3215        Because this condition is not assumed to be fatal, it is acceptable
3216        for your error handler to return; the returned value is ignored.
3217        However, the error handler should not call any functions (directly
3218        or indirectly) on the display that will generate protocol requests
3219        or that will look for input events.
3220    
3221    So while you are now once again permitted to re-enter Xlib from the
3222    error handler, you're only allowed to call non-protocol functions.
3223    
3224    Signed-off-by: Jamey Sharp <jamey@minilop.net>
3225
3226commit fd85aca7a616c595fc17b2520f84316a11e8906f
3227Author: Jamey Sharp <jamey@minilop.net>
3228Date:   Mon Mar 14 14:45:35 2011 -0700
3229
3230    Ignore user locks after sleeping in _XReply and _XReadEvents.
3231    
3232    This bug appears as a hang in applications that wait for replies from
3233    multiple threads, where one such thread has taken a user lock using
3234    XLockDisplay.
3235    
3236    Prior to this fix, the code could deadlock in this way: If thread 1 goes
3237    to sleep waiting for a reply, and then thread 2 takes a user lock and
3238    waits for a reply, then thread 2 will wait for thread 1 to process its
3239    reply (because responses must be processed in order), but thread 1 will
3240    wait for thread 2 to drop its user lock.
3241    
3242    Fixed by making thread 1 not wait for thread 2 to drop its user lock.
3243    This makes the semantics of user locks hard to define, but they were
3244    already hard to define. The new behavior appears to be consistent with
3245    the way Xlib worked historically, anyway.
3246    
3247    Fixes: http://lists.freedesktop.org/archives/xcb/2011-March/006802.html
3248    
3249    There was a similar potential for deadlock in _XReadEvents, fixed the
3250    same way, with the same caveats about user-lock semantics.
3251    
3252    Signed-off-by: Jamey Sharp <jamey@minilop.net>
3253
3254commit 690f8bffd48a4e7e74298360ddd0431dc95dcd3f
3255Author: Erkki Seppälä <erkki.seppala@vincit.fi>
3256Date:   Tue Jan 18 15:58:20 2011 +0200
3257
3258    xkb: XkbPropertyPtr determined allocation success from wrong variables
3259    
3260    Cannot reach dead statement "return NULL;"
3261    
3262    Check for the NULLness of prop->name and prop->value instead of
3263    name and value, which was checked earlier anyway. Decided against
3264    using strdup due to curious memory allocation functions and the
3265    rest of the xkb not using it either.
3266    
3267    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
3268    Reviewed-by: Alan Coopersmith <alan.coopersmith at oracle.com>
3269
3270commit 6a4d027284e7bb5dd458157947bbb1ff580ad071
3271Author: Erkki Seppälä <erkki.seppala@vincit.fi>
3272Date:   Mon Jan 10 16:37:22 2011 +0200
3273
3274    keyBind: Use Xcalloc to initialize allocated _XKeytrans
3275    
3276    Using uninitialized value "p->modifiers"
3277    
3278    Small fix by using Xcalloc instead of Xmalloc
3279    
3280    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
3281    Reviewed-by: Alan Coopersmith <alan.coopersmith at oracle.com>
3282
3283commit b993d73bb3214ecc24646f5427c8003b816c6921
3284Author: Erkki Seppälä <erkki.seppala@vincit.fi>
3285Date:   Mon Jan 10 16:22:45 2011 +0200
3286
3287    im/ximcp: release modifiermap before returning
3288    
3289    Variable "map" goes out of scope
3290    
3291    Release modifiermap before returning. Reordered code to call
3292    XGetModifierMapping after the first return from the function.
3293    
3294    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
3295    Reviewed-by: Dirk Wallenstein <halsmit@t-online.de>
3296
3297commit 807a7fc0354f2212dfa5ff1f9e4ede56d8e69ef4
3298Author: Gaetan Nadon <memsize@videotron.ca>
3299Date:   Fri Feb 25 09:23:54 2011 -0500
3300
3301    Docbook: change the book id to match the xml file basename
3302    
3303    This is required for the up-coming external references support.
3304    
3305    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
3306
3307commit 40812b53ff5fe548f6eaf43ba4c8781cb43dab43
3308Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
3309Date:   Mon Feb 21 21:54:17 2011 +0100
3310
3311    Make the Local XIM request key releases for braille
3312    
3313    Braille chords management needs key release events. We need to explicitly
3314    request then, else GTK would not pass them throught XFilterEvent and braille
3315    wouldn't work.
3316    
3317    Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
3318
3319commit c97c42c49cd5095462abecdf908b416fb0b540b6
3320Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
3321Date:   Mon Feb 21 17:27:38 2011 +0100
3322
3323    Match braille patterns with compose tree
3324    
3325    Braille patterns should also be usable in Compose.  This combines the
3326    implementation of braille chords and compose tree: only emit the braille
3327    pattern if it can not be found in the compose tree, if any.
3328    
3329    Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
3330
3331commit 0c6ca565d7c8a47ef3ea823569a9ca5298a5307d
3332Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
3333Date:   Mon Feb 21 15:56:54 2011 +0100
3334
3335    Fix status reporting for braille patterns
3336    
3337    _XimLocalMbLookupString can return a braille keysym even if _Xlcwctomb can't
3338    convert to the current MB charset.
3339    _XimLocalUtf8LookupString needs to set the braille keysym and status too.
3340    
3341    Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
3342
3343commit 993abe751f4141f54d8d28b8b73588a1c9085970
3344Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3345Date:   Fri Feb 11 14:49:17 2011 -0800
3346
3347    Clean up memory when first XCreateRegion succeeds and second fails
3348    
3349    Error: Memory leak (CWE 401)
3350       Memory leak of pointer 's' allocated with XCreateRegion()
3351            at line 387 of /export/alanc/X.Org/sx86-gcc/lib/libX11/src/Region.c in function 'XShrinkRegion'.
3352              's' allocated at line 387 with XCreateRegion().
3353              s leaks when s != 0 at line 387.
3354    Error: Memory leak (CWE 401)
3355       Memory leak of pointer 'tra' allocated with XCreateRegion()
3356            at line 1452 of /export/alanc/X.Org/sx86-gcc/lib/libX11/src/Region.c in function 'XXorRegion'.
3357              'tra' allocated at line 1451 with XCreateRegion().
3358              tra leaks when tra != 0 at line 1451.
3359    
3360    [ This bug was found by the Parfait 0.3.6 bug checking tool.
3361      For more information see http://labs.oracle.com/projects/parfait/ ]
3362    
3363    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3364
3365commit 6ac417cea1136a3617f5e40f4b106aaa3f48d6c2
3366Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3367Date:   Fri Feb 11 14:20:24 2011 -0800
3368
3369    ximcp: Prevent memory leak & double free if multiple %L in string
3370    
3371    In the highly unlikely event that TransFileName was passed a path
3372    containing multiple %L entries, for each entry it would call
3373    _XlcFileName, leaking the previous results, and then for each entry it
3374    would copy from that pointer and free it, resulting in invalid pointers
3375    & possible double frees for each use after the first one freed it.
3376    
3377    Error: Use after free (CWE 416)
3378       Use after free of pointer 'lcCompose'
3379            at line 358 of modules/im/ximcp/imLcPrs.c in function 'TransFileName'.
3380              Previously freed at line 360 with free.
3381    Error: Use after free (CWE 416)
3382       Use after free of pointer 'lcCompose'
3383            at line 359 of modules/im/ximcp/imLcPrs.c in function 'TransFileName'.
3384              Previously freed at line 360 with free.
3385    Error: Double free (CWE 415)
3386       Double free of pointer 'lcCompose'
3387            at line 360 of modules/im/ximcp/imLcPrs.c in function 'TransFileName'.
3388              Previously freed at line 360 with free.
3389    
3390    [ This bug was found by the Parfait 0.3.6 bug checking tool.
3391      For more information see http://labs.oracle.com/projects/parfait/ ]
3392    
3393    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3394
3395commit 502d414118c97d35a44f8e295709682022876331
3396Author: Erkki Seppälä <erkki.seppala@vincit.fi>
3397Date:   Thu Feb 3 17:08:57 2011 +0200
3398
3399    xcms/cmsProp: don't deal with uninitialized values, fail instead
3400    
3401    Properly handle the return value of XGetWindowProperty by considering
3402    if after the loop as well.
3403    
3404    Using freed pointer "prop_ret"
3405    
3406    There were numerous things wrong in how this function interacted with
3407    XGetWindowProperty.
3408    
3409    None of the local variables were initialized and remained that way if
3410    the call to XGetWindowProperty returned 1 (not Succeed). That doesn't
3411    result in after_ret being initialized in which case if it happens to
3412    be 0, the loop was exited. In that case format_ret and nitems_ret were
3413    uninitialized and the function might return with success (but with
3414    uninitialized pointer in prop_ret) or XcmsFailure.
3415    
3416    As the buffer enlarging code was called only when XGetWindowProperty
3417    failed (returned not Success), after_ret would not have been
3418    initialized. It would have been initialized only if the
3419    XGetWindowProperty has returned Success earlier, but in that case the
3420    code fragment would not have been reached.
3421    
3422    This patch alters the function to return XcmsFailure if the call to
3423    XGetWindowProperty fails.
3424    
3425    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3426    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3427    Reviewed-by: Rami Ylimäki <rami.ylimaki@vincit.fi>
3428    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
3429
3430commit c37e278993b9e5b3d7025ef4c434373a011996ec
3431Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3432Date:   Mon Jan 31 14:02:07 2011 +0200
3433
3434    xcms/LRGB: don't double-free property_return
3435    
3436    property_return was free'd before and in the case the conditional is true,
3437    the call to XcmsGetProperty failed which means that property_return wasn't
3438    set so there is no need to free it again.
3439    
3440    Double free of pointer "property_return" in call to "free"
3441    
3442    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3443    Reviewed-by: Erkki Seppälä <erkki.seppala@vincit.fi>
3444    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3445
3446commit 50f4107811249806718a100f9d34f996c58e5e25
3447Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3448Date:   Wed Feb 2 08:58:45 2011 -0800
3449
3450    Xrm.c: ReadInFile: refactor fstat error handling
3451    
3452    We can simplify the fstat failure case now that the GetFileSize macro
3453    has been expanded inline.
3454    
3455    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3456    Reviewed-by: Julien Cristau <jcristau@debian.org>
3457
3458commit 5e9c40fcb5da43c9fdacf12967d090bf202daf2a
3459Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3460Date:   Wed Feb 2 08:56:00 2011 -0800
3461
3462    Expand GetSizeOfFile() macro at the one place it's called
3463    
3464    Removes XrmI.h header that only contained this single macro
3465    
3466    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3467    Reviewed-by: Julien Cristau <jcristau@debian.org>
3468
3469commit 450e17422c0e374d25c643f343ea268cec68da38
3470Author: Erkki Seppälä <erkki.seppala@vincit.fi>
3471Date:   Mon Jan 31 14:01:57 2011 +0200
3472
3473    XlibInt: Use strncpy+zero termination instead of strcpy to enforce buffer size
3474    
3475    Possible overrun of 8192 byte fixed size buffer "buffer" by copying
3476    "ext->name" without length checking
3477    
3478    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3479    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3480    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
3481    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3482
3483commit e2566e43b02d2d7b7c1c3bb7db7c5ae81c1245fa
3484Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3485Date:   Mon Jan 31 14:02:13 2011 +0200
3486
3487    lc/def/lcDefConv: Use Xcalloc to avoid use of uninitialized memory
3488    
3489    Fixed by zero'ing conv on allocation with Xcalloc. Then
3490    close_converter works properly.
3491    
3492    Using uninitialized value "conv->state" in call to function "close_converter"
3493    
3494    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3495    Reviewed-by: Erkki Seppälä <erkki.seppala@vincit.fi>
3496    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3497    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3498
3499commit 03f81ad8fb9783986cf9b17661dd31e95c396681
3500Author: Erkki Seppälä <erkki.seppala@vincit.fi>
3501Date:   Mon Jan 31 14:02:16 2011 +0200
3502
3503    xlibi18n/lcFile: Removed superfluous check for NULL target_dir
3504    
3505    The situation is already handled before this code.
3506    
3507    Cannot reach dead expression "0U" inside statement "if (1U + (target_dir ? strl..."
3508    
3509    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3510    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3511    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
3512    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3513
3514commit 1346b9ea3b3882201ff8c3ee462ff4b0d4edf639
3515Author: Erkki Seppälä <erkki.seppala@vincit.fi>
3516Date:   Mon Jan 31 14:02:15 2011 +0200
3517
3518    ximcp/imLckup: Handle negative return value from _Xlcwctomb
3519    
3520    Fixed by negative value to memcpy by checking for the negative return
3521    value of _Xlcwctomb and returning 0/XLookupNone in that case.
3522    
3523    a negative value was passed to memcpy
3524    
3525    Unfortunately the other return values for *status don't fit into the
3526    error (which appears to indicate some internal error or running out of
3527    memory). The other valid status codes are XBufferOverflow,
3528    XLookupNone, XLookupChars, XLookupKeySym, and XLookupBoth. Each of
3529    these has a specific meaning attached.
3530    
3531    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3532    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
3533    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3534
3535commit 79a5c86e020f08cc108184298a72e2777036de39
3536Author: Erkki Seppälä <erkki.seppala@vincit.fi>
3537Date:   Mon Jan 31 14:02:14 2011 +0200
3538
3539    ximcp/imTrX: Handle failing XGetWindowProperty
3540    
3541    Checked return value of XGetWindowProperty and return false if it fails.
3542    
3543    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
3544    
3545    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3546    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
3547    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3548
3549commit 2ace8d5c89c8f6d9f42b4068f4b508ca28f0ced1
3550Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3551Date:   Mon Jan 31 14:02:12 2011 +0200
3552
3553    XlibInt: info_list->watch_data was reallocated, but result was discarded
3554    
3555    info_list->watch_data was being reallocated, but the return value of
3556    the reallocation was stored only into a local variable. This might
3557    cause some funky behavior and crashes.
3558    
3559    Variable "wd_array" goes out of scope
3560    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)))"
3561    
3562    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3563    Reviewed-by: Erkki Seppälä <erkki.seppala@vincit.fi>
3564    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3565    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3566
3567commit 2b16a7e683e355c9746290b2cee2fd0dd2bf342a
3568Author: Erkki Seppälä <erkki.seppala@vincit.fi>
3569Date:   Mon Jan 31 14:02:10 2011 +0200
3570
3571    GetProp: Zero-initialized error so its resourceID field is initialized
3572    
3573    Using uninitialized value "error.resourceID" in call to function "_XError"
3574    
3575    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3576    Reviewed-by: Erkki Seppälä <erkki.seppala@vincit.fi>
3577    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3578    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3579
3580commit 85e9f38e016137f0ff2791eb0d092ab027382d2c
3581Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3582Date:   Tue Feb 1 11:07:25 2011 +0200
3583
3584    xcms/LRGB: Add a label for freeing property_return.
3585    
3586    The rest of the code uses goto's to free memory allocated later
3587    and prevent memory leaks, but there were several paths were
3588    property_return was free'd just before a goto.
3589    
3590    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3591    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3592    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
3593    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3594
3595commit 3161dc57d4e9b70f852f05e5e474455e121b06ab
3596Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3597Date:   Mon Jan 31 14:02:08 2011 +0200
3598
3599    xcms/LRGB: Fix potential resource leak.
3600    
3601    property_return was not free'd if the allocation of pRedTbl failed.
3602    
3603    Reviewed-by: Erkki Seppälä <erkki.seppala@vincit.fi>
3604    Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3605    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3606
3607commit be3e6c205d94dedc1cdebf5d17b987f0f828377a
3608Author: Erkki Seppälä <erkki.seppala@vincit.fi>
3609Date:   Mon Jan 31 14:02:06 2011 +0200
3610
3611    Xrm: Handle the extremely unlikely situation of fstat failing
3612    
3613    Tracked variable "size" was passed to a negative sink.
3614    
3615    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3616    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3617    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
3618    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3619
3620commit 3fae16c64d6ef76fd4a25a54c7f7de76596457db
3621Author: Erkki Seppälä <erkki.seppala@vincit.fi>
3622Date:   Mon Jan 31 14:02:05 2011 +0200
3623
3624    Xrm: NEWTABLE had a memory leak after a memory allocation error
3625    
3626    The NEWTABLE macro missed freeing its allocated memory on subsequent
3627    memory allocation errors. Added call to Xfree.
3628    
3629    Variable "table" goes out of scope
3630    
3631    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3632    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3633    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
3634    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3635
3636commit 7110ac653349a23c80c365f11f6270dc27c8975a
3637Author: Erkki Seppälä <erkki.seppala@vincit.fi>
3638Date:   Mon Jan 31 14:02:03 2011 +0200
3639
3640    ImUtil: Handle a memory leak in one early return branch
3641    
3642    Fixed memory leak by adding Xfree for image
3643    
3644    Variable "image" goes out of scope
3645    
3646    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3647    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3648    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
3649    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3650
3651commit d695f5da9f5b778e54b6987d9177048e32818c4d
3652Author: Erkki Seppälä <erkki.seppala@vincit.fi>
3653Date:   Mon Jan 31 14:02:01 2011 +0200
3654
3655    ximcp/imRm: Handle leaking colormap_ret
3656    
3657    Fixed memory leak by adding Xfree for colormap_ret
3658    
3659    Variable "colormap_ret" goes out of scope
3660    
3661    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3662    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3663    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
3664    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3665
3666commit f9eda19d08c1ea0973dfe0bc10a2519d6fd26cc7
3667Author: Erkki Seppälä <erkki.seppala@vincit.fi>
3668Date:   Mon Jan 31 14:01:59 2011 +0200
3669
3670    ximcp/imRmAttr: Handle leaking missing_list
3671    
3672    Fixed memory leak by adding Xfree and initializing missing_list with NULL
3673    
3674    Variable "missing_list" goes out of scope
3675    
3676    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3677    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3678    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
3679    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3680
3681commit 3183269e0979c9dbce9d55d9e03937897dc9fb3b
3682Author: Erkki Seppälä <erkki.seppala@vincit.fi>
3683Date:   Mon Jan 31 14:01:58 2011 +0200
3684
3685    ximcp/imRmAttr: Handle leaking colormap_ret
3686    
3687    XFree colormap_ret and initialize it when appropriate.
3688    
3689    Variable "colormap_ret" goes out of scope
3690    
3691    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3692    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
3693    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3694
3695commit f66a032a937030f2d9baa81744d36dc585bb085c
3696Author: Erkki Seppälä <erkki.seppala@vincit.fi>
3697Date:   Mon Jan 31 14:01:56 2011 +0200
3698
3699    xlibi18n/lcGeneric: Initialize uninitialized local variable
3700    
3701    Using uninitialized value "new"
3702    
3703    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3704    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3705    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
3706    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3707
3708commit d0266e06d38110ec908ca28379014eff743630b7
3709Author: Erkki Seppälä <erkki.seppala@vincit.fi>
3710Date:   Mon Jan 31 14:01:54 2011 +0200
3711
3712    xcmx/cmxColNm: Removed unused assignments to pBuf (in two functions)
3713    
3714    Pointer "pBuf" returned from "fgets(buf, 256, stream)" is never used
3715    
3716    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3717    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3718    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
3719    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3720
3721commit cc686655d7bfdeab8b67e01a24bd452a2e9e3fcf
3722Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3723Date:   Tue Feb 1 12:30:56 2011 +0200
3724
3725    XDefaultOMIF.c: Fix memory leaks in get_font_name
3726    
3727    Instead of copying the value returned by get_prop_name and then releasing it,
3728    directly use the return value of get_prop_name, which allocates memory for the
3729    name.
3730    
3731    If get_prop_name returns NULL, continue on to XFreeFont to release the font
3732    before returning the NULL via the normal function return.
3733    
3734    Reviewed-by: Erkki Seppälä <erkki.seppala@vincit.fi>
3735    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3736
3737commit 95796351435d81eaef8166d49ba3a6e7b633d70a
3738Author: Gaetan Nadon <memsize@videotron.ca>
3739Date:   Mon Jan 31 14:50:19 2011 -0500
3740
3741    config: comment, minor upgrade, quote and layout configure.ac
3742    
3743    Group statements per section as per Autoconf standard layout
3744    Quote statements where appropriate.
3745    Autoconf recommends not using dnl instead of # for comments
3746    
3747    Use AC_CONFIG_FILES to replace the deprecated AC_OUTPUT with parameters.
3748    Remove redundant AC_CANONICAL_HOST included in XORG_DEFAULT_OPTIONS
3749    
3750    This helps automated maintenance and release activities.
3751    Details can be found in http://wiki.x.org/wiki/NewModuleGuidelines
3752    
3753    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
3754
3755commit e994ab227ed28655565c3193e63733630105e7f9
3756Author: Erkki Seppälä <erkki.seppala@vincit.fi>
3757Date:   Tue Jan 18 12:49:48 2011 +0200
3758
3759    Comparing array against NULL is not useful "&xkb->server->vmods != NULL"
3760    
3761    Removed superfluous comparison.
3762    
3763    Reviewed-by: Dirk Wallenstein <halsmit@t-online.de>
3764    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
3765
3766commit 4115f051e62f9b098efce691e070d44f09f30f1c
3767Author: Erkki Seppälä <erkki.seppala@vincit.fi>
3768Date:   Wed Jan 12 15:51:11 2011 +0200
3769
3770    Variable "entry" tracked as NULL was dereferenced.
3771    
3772    Check entry for non-nullness before dereferencing it
3773    
3774    Reviewed-by: Dirk Wallenstein <halsmit@t-online.de>
3775    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3776    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
3777
3778commit 0edb76d1d5fdca5a2543332699be2e72386dab24
3779Author: Erkki Seppälä <erkki.seppala@vincit.fi>
3780Date:   Thu Jan 27 09:54:00 2011 +0200
3781
3782    Dereferencing possibly NULL "str" in call to function "memcpy" (Deref assumed on the basis of 'nonnull' parameter attribute.)
3783    
3784    If _XkbGetReadBufferPtr returns NULL, goto BAILOUT
3785    
3786    Reviewed-by: Dirk Wallenstein <halsmit@t-online.de>
3787    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3788    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
3789
3790commit 59da8a211ef723909d0530c0331d541db8e63378
3791Author: Erkki Seppälä <erkki.seppala@vincit.fi>
3792Date:   Mon Jan 10 16:17:47 2011 +0200
3793
3794    Using freed pointer "e"
3795    
3796    Reordered code to first to do the comparison and then to release data
3797    
3798    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3799    Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com>
3800    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
3801
3802commit 0f11c229f7099f7c5aeed4691b358dca151dac7d
3803Author: Matt Dew <marcoz@osource.org>
3804Date:   Thu Jan 27 00:31:23 2011 -0700
3805
3806    Remove <literal> tags from compose-chart.pl so pdf building doesn't die on soft-hyphens.
3807    
3808    Signed-off-by: Matt Dew <marcoz@osource.org>
3809    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3810
3811commit ca00bb202f3afcdbbcb8c4cb50308c5dd03f2322
3812Author: Gaetan Nadon <memsize@videotron.ca>
3813Date:   Fri Jan 28 16:07:07 2011 -0500
3814
3815    config: replace deprecated AC_HELP_STRING with AS_HELP_STRING
3816    
3817    This silences an Automake warning.
3818    
3819    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
3820
3821commit 8dac08c7515cb6f8a8f4d0a721713697eae755d8
3822Author: Gaetan Nadon <memsize@videotron.ca>
3823Date:   Fri Jan 28 14:59:04 2011 -0500
3824
3825    config: remove unrequired AC_HEADER_STDC
3826    
3827    Autoconf says:
3828    "This macro is obsolescent, as current systems have conforming
3829    header files. New programs need not use this macro".
3830
3831commit d4483375e37a72631d5821413cb75a423e990ffe
3832Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3833Date:   Tue Jan 18 19:37:02 2011 -0800
3834
3835    config: Use correct AC_CONFIG_HEADERS macro
3836    
3837    Replaces obsolete AM_CONFIG_HEADER and undocumented AC_CONFIG_HEADER
3838    
3839    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3840    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
3841    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
3842
3843commit c6405fe931f313a0d159bdad00244fc8aae12468
3844Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3845Date:   Sun Jan 16 11:55:23 2011 -0800
3846
3847    config: remove AC_PROG_CC as it overrides AC_PROG_C_C99
3848    
3849    XORG_STRICT_OPTION from XORG_DEFAULT_OPTIONS calls
3850    AC_PROG_C_C99. This sets gcc with -std=gnu99.
3851    If AC_PROG_CC macro is called afterwards, it resets CC to gcc.
3852    
3853    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3854    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
3855
3856commit 17aa1f2305da0952ad594c7329d08aba21f13ac8
3857Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3858Date:   Sun Jan 16 11:40:59 2011 -0800
3859
3860    Update to xf86bigfontproto >= 1.2.0 header name
3861    
3862    Clears compile-time warning of:
3863    "X11/extensions/xf86bigfstr.h", line 1: #warning: "xf86bigfstr.h is obsolete and may be removed in the future."
3864    "X11/extensions/xf86bigfstr.h", line 2: #warning: "include <X11/extensions/xf86bigfproto.h> for the protocol defines."
3865    
3866    Requires xf86bigfontproto >= 1.2.0 if --disable-xf86bigfont is not
3867    passed to configure.
3868    
3869    Also removes unnecessary AC_SUBST of BIGFONT_CFLAGS & BIGFONT_LIBS
3870    that PKG_CHECK_MODULES does automatically
3871    
3872    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3873    Reviewed-by: Julien Cristau <jcristau@debian.org>
3874
3875commit a9228fcc676aacf9a760dd94891c89f9bc82b20d
3876Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3877Date:   Tue Jan 11 17:55:22 2011 -0800
3878
3879    libX11 1.4.1
3880    
3881    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3882
3883commit 92fa96451af37a7a0f2592de07643fdaed7a9efd
3884Author: Pauli Nieminen <ext-pauli.nieminen@nokia.com>
3885Date:   Mon Jan 3 12:25:28 2011 -0500
3886
3887    Initialize event type
3888    
3889    If we receive unsupported event closing connection triggers valgrind
3890    error.
3891    
3892    ==12017== Conditional jump or move depends on uninitialised value(s)
3893    ==12017==    at 0x487D454: _XFreeDisplayStructure (OpenDis.c:607)
3894    ==12017==    by 0x486857B: XCloseDisplay (ClDisplay.c:72)
3895    *snip*
3896    ==12017==  Uninitialised value was created by a heap allocation
3897    ==12017==    at 0x4834C48: malloc (vg_replace_malloc.c:236)
3898    ==12017==    by 0x4894147: _XEnq (XlibInt.c:877)
3899    ==12017==    by 0x4891BF3: handle_response (xcb_io.c:335)
3900    ==12017==    by 0x4892263: _XReply (xcb_io.c:626)
3901    *snip*
3902    
3903    Problem is that XFreeDisplaySturture is checking for qelt->event.type ==
3904    GenericEvent while _XUnknownWireEvent doesn't store the type.
3905    
3906    Reviewed-by: Adam Jackson <ajax@redhat.com>
3907    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
3908    Signed-off-by: Pauli Nieminen <ext-pauli.nieminen@nokia.com>
3909
3910commit fa9747b9d4443eef9b1687b8b1208801f5c585da
3911Author: Fernando Carrijo <fcarrijo.lists@gmail.com>
3912Date:   Tue Dec 28 16:18:57 2010 -0500
3913
3914    specs: convert images from gif to svg format.
3915    
3916    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
3917
3918commit 0012e2a4eaddc0840617b4758931ad976ca2eb7c
3919Author: Philipp Reh <sefi@s-e-f-i.de>
3920Date:   Wed Dec 22 15:14:05 2010 +0000
3921
3922    Events: Store event cookie when dequeuing event
3923    
3924    When we dequeue an event in XCheckTypedEvent or XCheckTypedWindowEvent,
3925    make sure to store the corresponding cookie too.
3926    
3927    Signed-off-by: Philipp Reh <sefi@s-e-f-i.de>
3928    Reviewed-by: Daniel Stone <daniel@fooishbar.org>
3929
3930commit d2714d65e85b44abedf5f82e1a31506dba397ef2
3931Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3932Date:   Tue Dec 21 18:47:16 2010 -0800
3933
3934    Revert "Mark atom names argument to XInternAtoms as const"
3935    
3936    This reverts commit c8701115462b482d99ecff24d9de0f2806084ba5.
3937    
3938    The constification of a pointer to a pointer caused unexpected issues,
3939    and xorg-devel was unable to come up with a clean, safe, reasonable way
3940    to handle them, so we're chalking this up for now as yet another mistake
3941    in the Xlib API definition we'll be living with.
3942    
3943    See https://bugs.freedesktop.org/show_bug.cgi?id=32098 for details.
3944    
3945    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3946
3947commit 6459f9a48a82de3bc0235bd36acab2df11e436d5
3948Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3949Date:   Mon Dec 20 20:54:07 2010 -0800
3950
3951    specs/XKB: make acknowlegement section <preface> instead of <chapter>
3952    
3953    Fixes numbering of actual chapters to match their filenames and to
3954    make the table/figure numbering match the references in the text.
3955    
3956    Reported-by: jelmd on freenode irc
3957    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3958
3959commit 42c653d5413fc5870486a9cf51dd28d1e88f7c69
3960Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3961Date:   Sun Dec 19 23:53:02 2010 -0800
3962
3963    Add XKBlib spec images to dist_spec_DATA for distribution & installation
3964    
3965    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3966    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
3967
3968commit 8f8a3c8c42af82976d261ac2447cfbb0f90fa77d
3969Author: Matt Dew <matt@osource.org>
3970Date:   Tue Nov 30 10:52:07 2010 -0500
3971
3972    specs: convert XKBlib spec from Framemaker to DocBook.xml
3973    
3974    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
3975
3976commit c8701115462b482d99ecff24d9de0f2806084ba5
3977Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3978Date:   Sun Nov 21 20:49:05 2010 -0800
3979
3980    Mark atom names argument to XInternAtoms as const
3981    
3982    Updates code & docs for XInternAtoms.
3983    
3984    The single atom name argument to XInternAtom was already const char *
3985    in the code, but not the docs, so updated it in the docs too.
3986    
3987    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3988    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
3989
3990commit 24db5b5ff0d51b0ed9d9701a792c5f14f23b638d
3991Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3992Date:   Sun Nov 21 14:04:32 2010 -0800
3993
3994    libX11 1.4.0
3995    
3996    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3997
3998commit 18d3c3e9de19e936281b111d5a82acfb3a3f552e
3999Author: Dan Nicholson <dbn.lists@gmail.com>
4000Date:   Sat Nov 6 21:58:10 2010 +0000
4001
4002    config: Check host string when deciding architecture to build for
4003    
4004    When checking for the OS/2 platform, $target_os is used. However, unless
4005    building a cross compiler, the $host* strings contain the platform
4006    details for the build system. See:
4007    
4008    http://www.gnu.org/software/automake/manual/automake.html#Cross_002dCompilation
4009    
4010    $host_os is already being used to determine the transport and threading
4011    options.
4012    
4013    Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
4014    Reviewed-by: Julien Cristau <jcristau@debian.org>
4015    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4016
4017commit affc2488a7f2660a74dc8354fc3e0bff2c4f879c
4018Author: Dan Nicholson <dbn.lists@gmail.com>
4019Date:   Sat Nov 6 21:58:09 2010 +0000
4020
4021    config: Fix architecture check for OS/2 to skip nios2 cpu
4022    
4023    The OS/2 platform requires some utility functions as well as having a
4024    non-32 bit wchar_t. Fix the configure check so that it doesn't also
4025    affect the nios2 cpu, which wouldn't influence these operating system
4026    issues.
4027    
4028    Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
4029    Tested-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
4030    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4031    Reviewed-by: Julien Cristau <jcristau@debian.org>
4032    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4033
4034commit 8cbca8a10761d1ea75a75bafa647632d6c0dac71
4035Author: Gaetan Nadon <memsize@videotron.ca>
4036Date:   Tue Nov 9 13:04:44 2010 -0500
4037
4038    config: HTML file generation: use the installed copy of xorg.css
4039    
4040    Currenlty the xorg.css file is copied in each location
4041    where a DocBook/XML file resides. This produces about
4042    70 copies in the $(docdir) install tree.
4043    
4044    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
4045
4046commit 3e8907305e1818369aef5a5c0da61f09e20de4f8
4047Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4048Date:   Fri Oct 29 22:02:10 2010 -0700
4049
4050    libX11 1.3.99.903 (1.4.0 RC3)
4051    
4052    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4053
4054commit 5d245d8013289b13e0c42100951b26166c7fada4
4055Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4056Date:   Fri Oct 29 22:01:39 2010 -0700
4057
4058    Require xorg-macros 1.11 now that it is released
4059    
4060    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4061
4062commit 1ec89689fc771f116a6165226b9e076f54254a40
4063Author: Dan Nicholson <dbn.lists@gmail.com>
4064Date:   Fri Oct 22 19:09:07 2010 -0700
4065
4066    docs: Disable fop documentation by default
4067    
4068    fop is used to generate the pdf and ps formats of the documentation.
4069    This can significantly slow down the build, especially when creating all
4070    the compose key charts. Since few people probably want the full set of
4071    doc formats, set the default to 'no'.
4072    
4073    The default parameter for XORG_WITH_FOP is only available in recent
4074    macros. Users generating configure from older macros will just get
4075    'auto' as the default.
4076    
4077    Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
4078    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
4079    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4080    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4081
4082commit 03877bda911b72ac60a7144d6eced7d5be4b4d72
4083Author: Jon TURNEY <jon.turney@dronecode.org.uk>
4084Date:   Wed Apr 14 13:38:18 2010 +0100
4085
4086    Add C.UTF-8 and C.ASCII locale aliases
4087    
4088    Add C.UTF-8 locale as an alias for en_US.UTF-8
4089    Add C.ASCII locale as an alias for C
4090    
4091    (C.UTF-8 is the default locale for cygwin.  It also exists in debian,
4092    although I don't think it's intended for use by humans.)
4093    
4094    Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
4095    Acked-by: Julien Cristau <jcristau@debian.org>
4096    Reviewed-by: James Cloos <cloos@jhcloos.com>
4097
4098commit 81d1d9a6bdca779a44f931730b866eea75777c00
4099Author: Dan Nicholson <dbn.lists@gmail.com>
4100Date:   Sat Oct 9 16:00:47 2010 -0700
4101
4102    docs: Remove directory prerequisites from make rules
4103    
4104    Make expects prerequisites to be files with valid timestamps, and
4105    directories are treated as always being out of date. Thus, any targets
4106    depending on directories will always be rebuilt.
4107    
4108    Instead, the doc rules are changed to always create the target's leading
4109    directory. This should prevent the documentation from being rebuilt when
4110    "make install" is run.
4111    
4112    Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
4113    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
4114    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4115
4116commit d0cbf388919364fe6b5b9127f36426eb744090a0
4117Author: Jeremy Huddleston <jeremyhu@apple.com>
4118Date:   Sun Sep 26 21:21:16 2010 -0700
4119
4120    Add an "X11_" string to header guards to avoid possible collision
4121    
4122    This addresses a build failure which can result from <X11/Xlocale.h> and
4123    <xlocale.h> being included in the same code since they both used the same
4124    _XLOCALE_H_ protection.
4125    
4126    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
4127
4128commit b51ac675f44f5ce1a28c5734bf3c26983f8b4192
4129Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4130Date:   Tue Sep 21 19:53:03 2010 -0700
4131
4132    libX11 1.3.99.902 (1.4.0 RC2)
4133    
4134    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4135
4136commit 986bb6d1d54368fe91e3ea24f518d43ce6179782
4137Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4138Date:   Tue Sep 14 00:10:31 2010 -0700
4139
4140    Bug 19379 - Provide docs with overview of all compose key combinations
4141    
4142    Adds compose-chart.pl to generate DocBook/XML documents listing compose
4143    keys, and Makefile rules to generate HTML & PDF output from them if xmlto
4144    is present.
4145    
4146    https://bugs.freedesktop.org/show_bug.cgi?id=19379
4147    
4148    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4149    Reviewed-by: Mikhail Gusarov <dottedmag@dottedmag.net>
4150    Reviewed-by: James Cloos <cloos@jhcloos.com>
4151    Tested-by: Gaetan Nadon <memsize@videotron.ca>
4152
4153commit 3eb064071695ebf0f371163ed818a428dfeba8e6
4154Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4155Date:   Sat Sep 11 00:49:21 2010 -0700
4156
4157    Make locale data build non-recursive / parallelizable
4158    
4159    On a 4 core CPU with gmake -j 16 the nls subdir builds in half the time,
4160    plus this simplifies the next set of changes.
4161    
4162    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4163    Reviewed-by: Mikhail Gusarov <dottedmag@dottedmag.net>
4164    Reviewed-by: James Cloos <cloos@jhcloos.com>
4165    Tested-by: Gaetan Nadon <memsize@videotron.ca>
4166
4167commit a3fc78ac352e5a70a958996ef6aec50f653974d1
4168Author: Gaetan Nadon <memsize@videotron.ca>
4169Date:   Fri Sep 17 17:38:11 2010 -0400
4170
4171    config: remove man page suffix from bottom summary
4172    
4173    The man page suffix is the same for all libraries on a given
4174    platform and is not configurable. It should have been removed
4175    in commit 09edc6de6.
4176    
4177    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
4178
4179commit a52b0068f36c739eb7e426214cd72a8d9bb776ca
4180Author: Gaetan Nadon <memsize@videotron.ca>
4181Date:   Fri Sep 17 17:29:30 2010 -0400
4182
4183    config: remove unhelpful comment in .gitignore
4184    
4185    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
4186
4187commit 10dd881e7818be9074da4ab3a68577adcdaf71d2
4188Author: Adam Jackson <ajax@redhat.com>
4189Date:   Wed Sep 8 10:44:23 2010 -0400
4190
4191    Zero buffer data in BufAlloc()
4192    
4193    Inspired by a pattern in NoMachine's NX.  Consistently zeroed buffers
4194    compress better with ssh and friends.  Note that you'll need to rebuild
4195    all your protocol libraries to take advantage of this.
4196    
4197    Signed-off-by: Adam Jackson <ajax@redhat.com>
4198    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
4199    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4200
4201commit da099f0d2015831ea5f4a5d0740ed962aa4d5d8b
4202Author: James Cloos <cloos@jhcloos.com>
4203Date:   Sun Sep 12 17:00:54 2010 -0400
4204
4205    Revert “Dolt-ify"
4206    
4207    Libtool’s is now sufficiently fast that DOLT is no longer
4208    worth the bother, even on those few systems where is works.
4209    
4210    This reverts commit 3e9afd501e40d76040635bd9a3045bcaf5a03b60
4211    and part of commit d31e644c65c52828ea3e7abd94a8cf9aee12265c.
4212    
4213    It conflicted with commit f6a4fd0c7615684d08e848245849dea4017a5214
4214    which moved dolt from configure.ac to m4/dolt.m4.
4215    
4216    And it addresses: http://bugs.freedesktop.org/show_bug.cgi?id=28188
4217    
4218    Signed-off-by: James Cloos <cloos@jhcloos.com>
4219
4220commit 2661fbe6b809c937a60c2c1ca5ddb8280e399bd8
4221Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4222Date:   Thu Sep 9 19:24:29 2010 -0700
4223
4224    XIM spec title page minor formatting cleanup
4225    
4226    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4227
4228commit f99f1380bbf7bb2a0c491acad4a3d8db44bfd752
4229Author: Jens Petersen <petersen@redhat.com>
4230Date:   Mon Aug 23 18:08:10 2010 -0700
4231
4232    Bug 29773: aliases for nb_NO.utf8 and nn_NO.utf8
4233    
4234    <https://bugs.freedesktop.org/show_bug.cgi?id=29773>
4235    
4236    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4237
4238commit b15b8a558ec64c834cc8f6a52d7f3c4f530c8c4b
4239Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4240Date:   Fri Sep 3 23:11:53 2010 -0700
4241
4242    Sun's copyrights are now owned by Oracle
4243    
4244    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4245
4246commit 7742bf62b1fa652da4270587e280249945367cae
4247Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4248Date:   Fri Sep 3 18:31:44 2010 -0700
4249
4250    libX11 1.3.99.901 (1.4.0 RC1)
4251    
4252    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4253
4254commit 5a02d6d74b5451d48d8f55709dfd4ecd3c068586
4255Author: Jeroen Hoek <mail@jeroenhoek.nl>
4256Date:   Sun Aug 29 09:47:06 2010 -0400
4257
4258    libX11/nls compose tables, add LATIN CAPITAL LETTER SHARP S
4259    
4260    Add LATIN CAPITAL LETTER SHARP S
4261    (See https://bugs.freedesktop.org/show_bug.cgi?id=29448 for rationale)
4262    
4263    Signed-off-by: James Cloos <cloos@jhcloos.com>
4264
4265commit 09edc6de6619a2eabda3b808ebff4165550664f1
4266Author: Gaetan Nadon <memsize@videotron.ca>
4267Date:   Fri Aug 13 14:21:08 2010 -0400
4268
4269    config: remove man-pages configuration option
4270    
4271    This option was added in commit 6e752ea120 with no explanation.
4272    The section number is provoded by XORG_MANPAGE_SECTIONS
4273    There is no case where libX11 should be different than other libs
4274    The option was also used to disable building of the man pages,
4275    which build in 14 secs. No indication this is required.
4276    
4277    If there is a requirement from system builders to disable building
4278    of man pages, it could be done consistently for all modules.
4279    
4280    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
4281
4282commit f92e754297ec5fdb81068b56a4435026666224fa
4283Author: Aaron Plattner <aplattner@nvidia.com>
4284Date:   Sun Aug 15 21:51:38 2010 -0700
4285
4286    XOpenDisplay: save the correct display_name value
4287    
4288    The X Test Suite's XDisplayString test checks the invariant
4289    XDisplayString(XOpenDisplay(str)) == str.  The Xlib XOpenDisplay violates this
4290    invariant by expanding str to the canonical form "host:display.scrn" (unless
4291    HAVE_LAUNCHD is set and it starts with "/tmp/launch").  E.g., this expands ":1"
4292    to ":1.0":
4293    
4294      400|26 1 1 19:26:41|IC Start
4295      200|26 1 19:26:41|TP Start
4296      520|26 1 00032625 1 1|VSW5TESTSUITE PURPOSE 1
4297      520|26 1 00032625 1 2|Assertion XDisplayString-1.(A)
4298      520|26 1 00032625 1 3|A call to XDisplayString returns the string that was used
4299      520|26 1 00032625 1 4|as the argument to the XOpenDisplay call that returned the
4300      520|26 1 00032625 1 5|value used as the display argument.
4301      520|26 1 00032625 1 6|METH: Open a connection using XOpenDisplay.
4302      520|26 1 00032625 1 7|METH: Obtain the display string using XDisplayString.
4303      520|26 1 00032625 1 8|METH: Verify that the value of the string is the parameter used in XOpenDisplay.
4304      520|26 1 00032625 1 9|METH: Close the display using XCloseDisplay.
4305      520|26 1 00032625 1 10|REPORT: XDisplayString() returned ":1.0" instead of ":1".
4306      220|26 1 1 19:26:41|FAIL
4307      410|26 1 1 19:26:41|IC End
4308    
4309    Fix this by deleting all of the code to construct the canonical path and just
4310    stashing a copy of the original display_name in dpy->display_name.
4311    
4312    Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
4313    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
4314
4315commit 1dc401f678469d0235e6d0b28eb4356f03327c9f
4316Author: Gaetan Nadon <memsize@videotron.ca>
4317Date:   Fri Aug 13 13:06:51 2010 -0400
4318
4319    man: xkb: remove unused variable LIB_MAN_DIR_SUFFIX
4320    
4321    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
4322
4323commit cbe9eebd11e5ebab4280d25b57b4cd4001241619
4324Author: Gaetan Nadon <memsize@videotron.ca>
4325Date:   Fri Aug 13 11:42:29 2010 -0400
4326
4327    man: simplify building of shadow man pages
4328    
4329    Store the shadow files in git as any other man page.
4330    Move man pages to man dir and use the common makefile
4331    
4332    Local fix in CVS for bug 5628 is not required
4333    as the problem has been fixed in
4334    util-macros d9062e4077ebfd0985baf8418f3d0f111b9ddbba
4335    
4336    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
4337
4338commit bfd899c9af2318ecbe84cb69007dba4223fdb502
4339Author: Gaetan Nadon <memsize@videotron.ca>
4340Date:   Mon Aug 9 09:39:26 2010 -0400
4341
4342    config: reinstate XORG_PROG_RAWCPP erroneoulsy removed
4343    
4344    in commit 76e07ef6911734eac418e399b114f1b544512736.
4345    
4346    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
4347
4348commit 76e07ef6911734eac418e399b114f1b544512736
4349Author: Gaetan Nadon <memsize@videotron.ca>
4350Date:   Fri Aug 6 14:01:51 2010 -0400
4351
4352     man: using the C preprocessor is not required for man pages.
4353    
4354    There were no special symbols needing cpp.
4355    Everything can be handled by the default MAN_SUBSTS in util-macros.
4356    
4357    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
4358
4359commit 4b8ff7db39f2fe7ef12968d462aaf3f9054b6c18
4360Author: Jamey Sharp <jamey@minilop.net>
4361Date:   Fri Aug 6 15:51:56 2010 -0700
4362
4363    Fix use-after-free in _XReply on X errors.
4364    
4365    _XReply would always call dequeue_pending_request on errors.  When it
4366    got an error for the current request, it would call dequeue, then break
4367    out of the loop; then, if it had an error in the event queue, it would
4368    compare it with the sequence number of the now-freed pending request.
4369    _XReply already stored that sequence number in dpy->last_request_read
4370    before freeing it, so look at that instead.
4371    
4372    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=29412
4373    
4374    Signed-off-by: Jamey Sharp <jamey@minilop.net>
4375    Signed-off-by: Josh Triplett <josh@joshtriplett.org>
4376
4377commit 9fa146b30046396b70d64986e50d6617b3a8ac48
4378Author: Gaetan Nadon <memsize@videotron.ca>
4379Date:   Sat Jul 31 16:15:35 2010 -0400
4380
4381    specs: xsl stylesheet requires abs path to images
4382    
4383    Using abs_builddir requires automake 1.10 or later.
4384    
4385    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
4386
4387commit a8727d4bc39015e303b4128d0ad8aaf6d5fc9f0a
4388Author: Gaetan Nadon <memsize@videotron.ca>
4389Date:   Sun Aug 1 14:13:07 2010 -0400
4390
4391    specs: update .gitignore now that all groff generated files are gone
4392    
4393    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
4394
4395commit f70527f05677aaf6a493ba42d2d95f738aaebafa
4396Author: Adam Jackson <ajax@redhat.com>
4397Date:   Thu Jul 29 11:11:21 2010 -0400
4398
4399    nls: Switch one of the interrobang sequences to gnaborretni
4400    
4401    Since gnaborretni is primarily used in LTR locales, the ? part of the
4402    sequence reflects the position of the bulge in the ?.  When scanning an
4403    inverted interrobang left-to-right, you see the bulge first, so the
4404    compose sequence ?! is used; upright interrobang shows the bulge
4405    last, so it's !?.
4406    
4407    This is a change in behaviour, but I was unable to come up with anything
4408    better.  ??!! or !!?? would match the patterns for ¿ and ¡, but they
4409    would delay evaluation of them; "¿Qué?" wouldn't show the ¿ until you hit
4410    Q.  Likewise ?!?! and !?!? would delay showing the interrobang itself.
4411    ~!? and ~?! were considered but are arguably less intuitive.
4412    
4413    Reviewed-by: James Cloos <cloos@jhcloos.com>
4414    Signed-off-by: Adam Jackson <ajax@redhat.com>
4415
4416commit 511c4f6d29b2da4f71093feabcbb3913cb5d12a7
4417Author: Gaetan Nadon <memsize@videotron.ca>
4418Date:   Wed Jul 28 10:27:39 2010 -0400
4419
4420    specs: move indexterm from glossdef to glossterm
4421    
4422    This move fixes a Java class cast exception in the glossary.
4423    The problem was introduced in commit
4424    26f4f0d50840fe5ba4c46aae0a8e68db0059434b
4425    
4426    It may not happen on all versions of the doc toolchain.
4427    There is no reason why indexterm cannot appear in glossdef,
4428    this is a workaround to an implementation problem found by
4429    trial and error.
4430    
4431    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
4432    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4433    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4434
4435commit 87a108f3aa565aa803dacb3a53b811f45025b609
4436Author: Matt Dew <matt@osource.org>
4437Date:   Sat Jul 24 14:46:57 2010 -0400
4438
4439    specs: replace troff source with docbook-xml source
4440    
4441    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
4442
4443commit 8e603413586ff42b1351688f6f99318cbe243bca
4444Author: Julien Cristau <jcristau@debian.org>
4445Date:   Sat Jul 24 22:13:07 2010 +0200
4446
4447    Compose.man: default user compose file is .XCompose, not .Xcompose
4448    
4449    The path was correct in the DESCRIPTION section, but not in FILES.
4450    
4451    Signed-off-by: Julien Cristau <jcristau@debian.org>
4452
4453commit 554da76ece85d0fc0cada45a86860e69c2107e9a
4454Author: Daniel Stone <daniel@fooishbar.org>
4455Date:   Tue Jul 20 12:34:48 2010 +0100
4456
4457    NLS: Add \o/ Compose sequence
4458    
4459    Unicode is even more pointlessly awesome! Add a binding for Compose-\o/
4460    to U+1F64C PERSON RAISING BOTH HANDS IN CELEBRATION.
4461    
4462    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
4463
4464commit 2e7a18b6a617b9b4bfcea2d36f2bd2d7e0c4a3dd
4465Author: Daniel Stone <daniel@fooishbar.org>
4466Date:   Fri Jul 9 18:13:13 2010 +0100
4467
4468    XStringToKeysym: Cope with 0x1234cafe-style input
4469    
4470    If we get input in the style of 0xdeadbeef, just return that exact
4471    keysym.  Introduces a dependency on strtoul, which I'm told is OK on all
4472    the systems we care about.
4473    
4474    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
4475
4476commit 3df45ed0c29b98ff468a0ff0ba24830bb664fd5a
4477Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4478Date:   Mon Jul 19 17:58:27 2010 -0700
4479
4480    specs/libX11: Fix column count of Gravity Attributes table
4481    
4482    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4483
4484commit 53bcba0d1d2dc3fd5e0de4bae3da30a1aa31a0c4
4485Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4486Date:   Mon Jul 19 14:43:38 2010 -0700
4487
4488    specs/libX11: Convert \- to &minus; and \^ to either &hairsp; or removed
4489    
4490    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4491
4492commit 5a0b45275638281e1bb2ae7d3e16b98e6470dae9
4493Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4494Date:   Mon Jul 19 11:28:50 2010 -0700
4495
4496    specs/libX11: Manual cleanup pass over Ch. 1
4497    
4498    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4499
4500commit 21567992958a6f12b3d0186f2f27a5b2a41b8448
4501Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4502Date:   Mon Jul 19 14:51:10 2010 -0700
4503
4504    specs/libX11: make sure all files have DOCTYPEs so standard entities work
4505    
4506    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4507
4508commit c944a8521f5760b485192658b921145159cdb439
4509Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4510Date:   Sun Jul 18 13:12:20 2010 -0700
4511
4512    specs/libX11: Fix up list of header files in Ch.1 & add index entries
4513    
4514    Combination of manual editing and automatic substitution via:
4515    
4516    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
4517    
4518    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4519
4520commit bb66e8f1ce330043278d3e8cbc7d5d3bc56ee030
4521Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4522Date:   Sun Jul 18 12:47:27 2010 -0700
4523
4524    specs/libX11: Add indexterms for headerfiles that .hN used to provide
4525    
4526    Automatic substitution performed via:
4527    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
4528    
4529    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4530
4531commit d0b0d215cb85da48b323b1392149ce181e7ef5ec
4532Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4533Date:   Fri Jul 16 21:15:13 2010 -0700
4534
4535    specs/libX11: convert multicolumn lists from tables to <simplelist>
4536    
4537    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4538
4539commit e679f80c6210c0aefe3669f8f536353619097a4b
4540Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4541Date:   Fri Jul 16 20:51:52 2010 -0700
4542
4543    specs/libX11: Tag WM_* as <property>
4544    
4545    Mass substitution done by:
4546     perl -i -p -e 'if ($_ !~ m{^\<}) { $_ =~ s{(WM_\w+)}{<property>$1</property>}g; }' *.xml
4547    
4548    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4549
4550commit c7b7e59b3b22221d0be6286c540001c360308f69
4551Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4552Date:   Fri Jul 16 20:41:33 2010 -0700
4553
4554    specs/libX11: Convert simpler eqn markup to docbook tags
4555    
4556    Mostly "sup" to <superscript>
4557    
4558    There's several more complicated equations that will probably need
4559    MathML or SVG to solve.
4560    
4561    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4562
4563commit 897486c54c6a54771867d667441aaf9a4b9c35ca
4564Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4565Date:   Fri Jul 16 00:50:39 2010 -0700
4566
4567    specs/libX11: App. D: convert literallayouts to synopsis or programlisting
4568    
4569    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4570
4571commit 692906c3b3d8aa8b8927fbc230c3050d633785d2
4572Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4573Date:   Fri Jul 16 00:36:43 2010 -0700
4574
4575    specs/libX11: Fix section headers in Appendix D
4576    
4577    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4578
4579commit bcc41baa02e137884d847aec0f3ff8ca5c85c32f
4580Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4581Date:   Wed Jul 14 07:22:26 2010 -0700
4582
4583    specs/libX11: Explicitly tag document as English
4584    
4585    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4586
4587commit 6783544706ff370e900c137f951e90230586d6dc
4588Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4589Date:   Mon Jul 12 22:03:18 2010 -0700
4590
4591    specs/libX11: Appendix C: convert literallayouts to synopsis or programlisting
4592    
4593    Fixes display of a bunch of function prototypes and sample code
4594    
4595    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4596
4597commit 8834cd9285e6aaf437aee56292c508d99a090fa9
4598Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4599Date:   Mon Jul 12 18:37:16 2010 -0700
4600
4601    xmlrules.in: Add chunked-html rule to manually generate smaller files
4602    
4603    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4604
4605commit 53f78680c34ebc94ce26b5e14c2a0003435cf10d
4606Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4607Date:   Mon Jul 12 18:35:59 2010 -0700
4608
4609    specs/libX11: Convert Appendix A tables to real tables
4610    
4611    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4612
4613commit 705a1257a8a47f4a1f94979aee09a837500ede7d
4614Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4615Date:   Mon Jul 12 18:38:09 2010 -0700
4616
4617    specs/libX11: Fix out-of-place text in Chapter 1
4618    
4619    DTD violation error introduced in 89cc2e02e7c29ef9a02f0cfdf2090a2934f539e4
4620    
4621    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4622
4623commit a151346a2b7810e988f1de4b1e00b37672dc587a
4624Author: Jeremy Huddleston <jeremyhu@apple.com>
4625Date:   Mon Jul 12 16:52:12 2010 -0700
4626
4627    launchd: Explicitly search /sbin
4628    
4629    Previously, launchd wasn't found if /sbin wasn't in the user's PATH.
4630    https://bugs.freedesktop.org/show_bug.cgi?id=29028
4631    
4632    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
4633
4634commit 89cc2e02e7c29ef9a02f0cfdf2090a2934f539e4
4635Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4636Date:   Mon Jul 12 13:38:04 2010 -0700
4637
4638    Replace untranslated .hN macros with <filename> tags to show header names
4639    
4640    Translation performed by:
4641     perl -i -p -e 's{\<\!-- .hN (\S+) (\S+)?\s*-->}
4642    	         {&lt;<filename class="headerfile">$1</filename>&gt;$2}' *.xml
4643    
4644    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4645
4646commit 75480440946603b8efdbbf78b88d59c641b6d2c8
4647Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4648Date:   Sat Jul 10 00:06:13 2010 -0700
4649
4650    specs/libX11: Mass substitution of <function> tags with more specific tags
4651    
4652    Matched names from X headers & "nm libX11.so" output to names in spec to
4653    map to more specific tags.   Tags used:
4654    
4655                        <code>   code fragments
4656                    <constant>   enum values
4657                   <errorname>   X protocol errors
4658                    <filename>   filenames
4659                    <function>   functions
4660                    <function>   function-like macros (#define foo(a,b)...)
4661                 <returnvalue>   function return codes
4662                 <structfield>   struct members
4663                  <structname>   struct names (even when typedefed)
4664                      <symbol>   simple value #defines (#define NAME value)
4665                  <systemitem>   X protocol requests
4666    <systemitem class="event">   X protocol events
4667                        <type>   non-struct typedefs
4668                     <varname>   global variables
4669    
4670    (Also fixed a couple typos detected by failures of this matching, such as
4671     XESSetPrintErrorValues -> XESetPrintErrorValues.)
4672    
4673    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4674
4675commit 26f4f0d50840fe5ba4c46aae0a8e68db0059434b
4676Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4677Date:   Fri Jul 9 00:37:23 2010 -0700
4678
4679    specs/libX11: Glossary cross-reference links
4680    
4681    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4682
4683commit 930b52d84031de0e15e0a11cf4ecfd3b2f59e073
4684Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4685Date:   Thu Jul 8 21:19:08 2010 -0700
4686
4687    specs/libX11: Make whitespace around <function> tags more uniform
4688    
4689    Simplifies regular expressions for further mass substitutions.
4690    
4691    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4692
4693commit 730ce6b8aca77b77385aa894d234cbde5fcbce37
4694Author: Gaetan Nadon <memsize@videotron.ca>
4695Date:   Fri Jul 9 20:10:37 2010 -0400
4696
4697    specs: use pattern rules rather than suffix rules
4698    
4699    This allows target to rebuild when included .xml files are changed.
4700    
4701    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
4702
4703commit 5527b4bc8ce7de60123eb28789ddef54aa48a378
4704Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4705Date:   Thu Jul 8 20:56:41 2010 -0700
4706
4707    specs/libX11: Move punctuation outside of the <function> tags
4708    
4709    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4710
4711commit d66d2134dfc38cd866c7c2d9ea45ed4b4dad23f0
4712Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4713Date:   Thu Jul 8 20:42:50 2010 -0700
4714
4715    specs/libX11: Mark a number of <acronym>s
4716    
4717    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4718
4719commit d5bbb12f55ac9f691eab6242cedc53207275131b
4720Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4721Date:   Thu Jul 8 19:31:36 2010 -0700
4722
4723    specs/libX11: Glossary terms should not be marked as functions
4724    
4725    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4726
4727commit 5decf7bc5dae0ae0c45c47eaaa9c4fdf9515ca1c
4728Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4729Date:   Thu Jul 8 19:28:18 2010 -0700
4730
4731    specs/libX11: Clean up author list & acknowledgements a little
4732    
4733    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4734
4735commit 0cd29bdb332c333e5123dce65b25ad1d97fbdae3
4736Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4737Date:   Thu Jul 8 17:30:34 2010 -0700
4738
4739    specs/libX11: Convert troff .IN macros to docbook <indexterm> tags
4740    
4741    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4742
4743commit a67d99ccbe22c8ce5f7a12f13b8991d9e0cf4491
4744Author: Gaetan Nadon <memsize@videotron.ca>
4745Date:   Thu Jul 8 17:29:21 2010 -0400
4746
4747    specs: specdir is required to install xml files
4748    
4749    The source is installed as well as the targets.
4750    This failed when configuring with --without-xmlto
4751    
4752    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
4753
4754commit e14273f44c1501ab51db4adcb83b18a1073787d8
4755Author: Matt Dew <matt@osource.org>
4756Date:   Thu Jul 8 14:42:32 2010 -0400
4757
4758    specs: replace troff source with docbook-xml source
4759    
4760    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
4761
4762commit bea0873caf50e9ed1b89255775d9ab912cbecd45
4763Author: Daniel Stone <daniel@fooishbar.org>
4764Date:   Thu Jul 8 16:49:51 2010 +0100
4765
4766    XStringToKeysym: Check strdup() return value
4767    
4768    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
4769    Reviewed-by: Keith Packard <keithp@keithp.com>
4770
4771commit cffa71b4a5743e2b6675b9a917d15aef4177d513
4772Author: Marko Myllynen <myllynen@redhat.com>
4773Date:   Mon Jun 28 15:08:05 2010 +0300
4774
4775    Fix two typos in SFS 5966 Annex 3
4776    
4777    X.Org bug#28792 <https://bugs.freedesktop.org/show_bug.cgi?id=28792>
4778    
4779    Signed-off-by: Julien Cristau <jcristau@debian.org>
4780
4781commit eb023c0f8919e809b8b609e1467b14d20a290aa7
4782Author: Daniel Stone <daniel@fooishbar.org>
4783Date:   Tue Jun 15 18:49:43 2010 +0100
4784
4785    Delete now-redundant XKeysymDB
4786    
4787    Since XStringToKeysym now supports all the vendor keysyms, just delete
4788    our XKeysymDB, which was incomplete at best, misleading at worst, and
4789    always an annoyance.
4790    
4791    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
4792    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4793
4794commit 00175397480b76d32bf82b0c7c94c91a2a95954e
4795Author: Daniel Stone <daniel@fooishbar.org>
4796Date:   Tue Jun 15 18:48:48 2010 +0100
4797
4798    makekeys: Scan vendor keysyms as well as core
4799    
4800    Since we can't really live without vendor keysyms, scan them all in to
4801    generate ks_tables.h, rather than only doing the core ones, and leaving
4802    the vendor syms to be manually synchronised with XKeysymDB.
4803    
4804    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
4805    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4806
4807commit ebd6ef0a4db0ddef0ae17ad14571518ccdeea5ba
4808Author: Daniel Stone <daniel@fooishbar.org>
4809Date:   Tue Jun 15 18:47:37 2010 +0100
4810
4811    XStringToKeysym: Special case for XF86 keysyms
4812    
4813    Some XFree86 keysyms were in XKeysymDB as XF86_foo, despite really being
4814    XF86foo.  So, if we get to the bottom of XStringToKeysym and haven't
4815    found our XF86_foo, try it again as XF86foo.
4816    
4817    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
4818    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4819
4820commit 8c2ffce9e5c6eef8a04f7e2732db46b3b62e13bb
4821Author: Daniel Stone <daniel@fooishbar.org>
4822Date:   Tue Jun 15 17:20:48 2010 +0100
4823
4824    configure.ac: Change from deprecated AC_DEFINE_DIR to AX_
4825    
4826    AC_DEFINE_DIR is deprecated as it's squatting on the autoconf-builtin
4827    namespace, so start using the more proper AX_DEFINE_DIR instead.
4828    
4829    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
4830    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
4831    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4832
4833commit 6de368c9aa7ccd2fcd62fca5a2b278913db4d03d
4834Author: Fernando Carrijo <fcarrijo@yahoo.com.br>
4835Date:   Thu Jul 1 06:50:47 2010 -0300
4836
4837    Purge macros NEED_EVENTS and NEED_REPLIES
4838    
4839    Signed-off-by: Fernando Carrijo <fcarrijo@yahoo.com.br>
4840    Acked-by: Tiago Vignatti <tiago.vignatti@nokia.com>
4841    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4842
4843commit 0b724231be17f19538ee115a03b82b221b1f83c0
4844Author: Adam Jackson <ajax@redhat.com>
4845Date:   Wed Jun 30 16:30:49 2010 -0400
4846
4847    Use -version-number consistently instead of -version-info
4848    
4849    The latter is libtool braindamage.
4850    
4851    Signed-off-by: Adam Jackson <ajax@redhat.com>
4852
4853commit 241a990afcf9c967c587ad6fd245df21b68b1ad9
4854Author: Juliusz Chroboczek <jch@pps.jussieu.fr>
4855Date:   Tue Jun 29 18:32:42 2010 +0200
4856
4857    Make Compose-comma map to ogonek for I and U in UTF-8 locales.
4858    
4859    With the preceding patch, it makes the UTF-8 compose map consistent with
4860    the ISO 8859-4 and -13 maps.
4861
4862commit af55e582f485a668c2bf43129be972bc65f03c60
4863Author: Juliusz Chroboczek <jch@pps.jussieu.fr>
4864Date:   Tue Jun 29 18:20:18 2010 +0200
4865
4866    Make Compose-comma map to Ogonek for A and E in UTF-8 locales.
4867    
4868    This makes the UTF-8 compose file consistent with the ISO 8859-2 compose file
4869    as far as Polish is concerned.  We only sacrifice one pair of characters,
4870    e-cedilla, which is not used in any language.
4871
4872commit d6ba13009fc9ef876a104b907ffef73c6e405d4b
4873Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4874Date:   Thu Jun 24 13:13:11 2010 -0700
4875
4876    Define FILE_MAN_DIR_SUFFIX so XCompose shadow page has correct path
4877    
4878    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4879
4880commit 978c7238789037de917b9423ea9adfb006da1260
4881Author: Jamey Sharp <jamey@minilop.net>
4882Date:   Sat Jun 19 10:44:55 2010 -0700
4883
4884    poll_for_response: Really handle xcb_poll_for_reply getting a reply.
4885    
4886    Don't lose async replies. That's bad.
4887    
4888    `xlsfonts -l`, which uses XListFontsWithInfo, worked fine, because the
4889    _XReply path worked; that path waited for replies, rather than polling.
4890    
4891    However, XRecordProcessReplies, which does nothing but call XPending,
4892    relied on the event-handling path to process async replies, and that was
4893    busted.
4894    
4895    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=28595
4896    
4897    Signed-off-by: Jamey Sharp <jamey@minilop.net>
4898
4899commit ef67486c5a8aada24fd95b2991a3c4979f53805f
4900Author: Jamey Sharp <jamey@minilop.net>
4901Date:   Mon Jun 21 13:34:15 2010 -0700
4902
4903    Revert "xcb_io.c: poll_for_response doesn't guarantee there's a pending request."
4904    
4905    This reverts commit 4a8b6528ff69f6feb8c0e119939b4ce6c088f29e, because as
4906    a matter of fact, if poll_for_response returns NULL when we know
4907    dpy->xcb->next_event is non-NULL, there *is* guaranteed to be a pending
4908    request.
4909
4910commit 301ec5b41e9d253a446db656e1789ac7345dc433
4911Author: Jamey Sharp <jamey@minilop.net>
4912Date:   Mon Jun 21 13:24:24 2010 -0700
4913
4914    Revert "poll_for_response: Really handle xcb_poll_for_reply getting a reply."
4915    
4916    This reverts commit c115095d7f2bc4f5a4fb26380e3698fefdad7611. We *do*
4917    need to check poll_for_event every time through the loop in
4918    poll_for_response, so the commit did too much.
4919
4920commit 4a8b6528ff69f6feb8c0e119939b4ce6c088f29e
4921Author: Jamey Sharp <jamey@minilop.net>
4922Date:   Mon Jun 21 10:54:02 2010 -0700
4923
4924    xcb_io.c: poll_for_response doesn't guarantee there's a pending request.
4925    
4926    Fixes the second bug reported in:
4927    https://bugs.freedesktop.org/show_bug.cgi?id=28595
4928    
4929    Signed-off-by: Jamey Sharp <jamey@minilop.net>
4930
4931commit c115095d7f2bc4f5a4fb26380e3698fefdad7611
4932Author: Jamey Sharp <jamey@minilop.net>
4933Date:   Sat Jun 19 10:44:55 2010 -0700
4934
4935    poll_for_response: Really handle xcb_poll_for_reply getting a reply.
4936    
4937    Don't lose async replies. That's bad.
4938    
4939    `xlsfonts -l`, which uses XListFontsWithInfo, worked fine, because the
4940    _XReply path worked; that path waited for replies, rather than polling.
4941    
4942    However, XRecordProcessReplies, which does nothing but call XPending,
4943    relied on the event-handling path to process async replies, and that was
4944    busted.
4945    
4946    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=28595
4947    
4948    Signed-off-by: Jamey Sharp <jamey@minilop.net>
4949    Signed-off-by: Josh Triplett <josh@joshtriplett.org>
4950
4951commit a25ae169862ab9b76daf259613b37c6b07bc2ef2
4952Author: Marko Myllynen <myllynen@redhat.com>
4953Date:   Sun Jun 13 19:23:05 2010 +0300
4954
4955    Implement SFS 5966 Annex 4 for Finland
4956    
4957    This patch adds Annex 4 of SFS 5966 for Finland and fixes two typos in
4958    Annex 3 (which were actually copied verbatim from the standard text).
4959    
4960    The implementation of the standard is now complete.
4961    
4962    X.Org bug#28498 <https://bugs.freedesktop.org/show_bug.cgi?id=28498>
4963    
4964    Signed-off-by: Julien Cristau <jcristau@debian.org>
4965
4966commit 47b04195d8a31c8f9e6dd804196162c6cfca3ac6
4967Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4968Date:   Fri Jun 4 13:20:17 2010 -0700
4969
4970    LINEAR_RGB_InitSCCData: When malloc fails, don't try to free unallocated bits
4971    
4972    One of the malloc failure checks had a goto to the wrong spot in the
4973    list of cleanup free() calls to unwind at the end, and was freeing
4974    bits that hadn't been initialized/allocated yet, since they would be
4975    stored in the struct that just failed to be allocated.
4976    
4977    Error: Null pointer dereference (CWE 476)
4978       Read from pointer that could be constant 'NULL'
4979            at line 805 of /export/alanc/X.Org/sx86/lib/libX11/src/xcms/LRGB.c in function 'LINEAR_RGB_InitSCCData'.
4980              Pointer checked against constant 'NULL' at line 754 but does not protect the dereference.
4981    
4982    [ This bug was found by the Parfait bug checking tool.
4983      For more information see http://research.sun.com/projects/parfait ]
4984    
4985    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4986
4987commit aebbf3623888119b43893b253195d93b613a6e1e
4988Author: Josh Triplett <josh@joshtriplett.org>
4989Date:   Sun Jun 6 19:11:55 2010 -0700
4990
4991    Mark the rest of Xprivate.h as _X_HIDDEN.
4992    
4993    None of the functions in Xprivate.h should have any callers outside of
4994    Xlib, by definition.
4995    
4996    Signed-off-by: Josh Triplett <josh@joshtriplett.org>
4997    Suggested-by: Jamey Sharp <jamey@minilop.net>
4998    Reviewed-by: Jamey Sharp <jamey@minilop.net>
4999
5000commit abcd1b67c8135ad652833e5a60d818837c39fce1
5001Author: Julien Cristau <jcristau@debian.org>
5002Date:   Fri Jun 4 13:57:45 2010 +0200
5003
5004    Hide _XSeqSyncFunction
5005    
5006    Commit a6d974dc59f2722b36e2df9d4f07aeee4f83ce43 made _XSeqSyncFunction
5007    non-static, but we don't need to export it.
5008    
5009    Signed-off-by: Julien Cristau <jcristau@debian.org>
5010    Reviewed-by: Adam Jackson <ajax@redhat.com>
5011    Reviewed-by: Jamey Sharp <jamey@minilop.net>
5012
5013commit 15e5eaf62897b3179d1fbe457cb19f886f0449f8
5014Author: Josh Triplett <josh@joshtriplett.org>
5015Date:   Thu Jun 3 09:41:01 2010 -0700
5016
5017    Remove support for building without XCB
5018    
5019    And there was much rejoicing.
5020    
5021    Signed-off-by: Josh Triplett <josh@joshtriplett.org>
5022    Reviewed-by: Jamey Sharp <jamey@minilop.net>
5023    
5024    Consensus on #xorg-devel agrees with removing --without-xcb; in
5025    particular, acks from Adam Jackson, Daniel Stone, Kristian Høgsberg,
5026    Julien Cristau, and Rémi Cardona.
5027
5028commit fb19eb767a32fd4ff74021c51bc6f60eb8bdff74
5029Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5030Date:   Thu Jun 3 15:21:40 2010 -0700
5031
5032    libX11 1.3.4
5033    
5034    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5035
5036commit 8f3db40ca5108a919244f3fff7466d01a14b3ce2
5037Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5038Date:   Thu Jun 3 13:08:17 2010 -0700
5039
5040    Workaround bug in groff flag processing that breaks distcheck
5041    
5042    At least with the groff 1.19.2 package I have installed, groff passes
5043    on the -I flags for the include path to grohtml, which if they come
5044    after the -P-I... flag we pass to grohtml to specify the image file
5045    name pattern cause it to override that flag and put the images in
5046    the wrong place, breaking "make distcheck" - changing the flag order
5047    works around this.
5048    
5049    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5050
5051commit bdb31a1fb707cebccc9efbbf68cb55c10fa4ea3e
5052Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5053Date:   Thu Jun 3 11:25:33 2010 -0700
5054
5055    Fix typo that made configure always report "none" for man page suffix
5056    
5057    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5058
5059commit 6bb7d2d21d6b58019fb37b724b59c9744f30b9ce
5060Author: Paul Bender <pebender@gmail.com>
5061Date:   Thu Jun 3 11:20:26 2010 -0700
5062
5063    Bug 22591 - configure does not obey the --enable-*-transport options
5064    
5065    https://bugs.freedesktop.org/show_bug.cgi?id=22591
5066    
5067    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5068
5069commit d7f35946d673bb00f2768e025b6e1017422b2174
5070Author: Paul Bender <pebender@gmail.com>
5071Date:   Thu Jun 3 11:17:45 2010 -0700
5072
5073    Bug 22590 - libX11 1.2.1 has broken abstract namespace support
5074    
5075    https://bugs.freedesktop.org/show_bug.cgi?id=22590
5076    
5077    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5078
5079commit b2487d07f7b355f230a56e32c763acd08862735c
5080Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5081Date:   Thu Jun 3 11:06:15 2010 -0700
5082
5083    Bug 22584 - libX11 does not cross compile
5084    
5085    Adaptation of patch submitted by Paul Bender in attachment 27301 to
5086    https://bugs.freedesktop.org/show_bug.cgi?id=22584
5087    
5088    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5089    Reviewed-by: Mikhail Gusarov <dottedmag@dottedmag.net>
5090    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
5091
5092commit 4378219ff8c1418418c70086085358b69d574e74
5093Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5094Date:   Tue Jun 1 18:55:48 2010 -0700
5095
5096    Clarify requirements in XRestackWindows man page
5097    
5098    The required common parent window is not specified in the arguments,
5099    just implied as the parent of the first window in the list.
5100    
5101    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5102
5103commit f09c5299a381e2729e800a0ac43f1c0e371f65f6
5104Author: Jeremy Huddleston <jeremyhu@apple.com>
5105Date:   Wed May 12 16:42:18 2010 -0700
5106
5107    xcb: Add TCP fallback
5108    
5109    If we fail to connect to a UNIX socket and the transport isn't specified,
5110    fallback on TCP.  This matches behavior with the xtrans codepath and the
5111    Xlib spec.
5112    
5113    http://lists.x.org/archives/xorg-devel/2010-April/007915.html
5114    
5115    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
5116    Reviewed-by: Jamey Sharp <jamey@minilop.net>
5117
5118commit fd82552d5c0ce1931f29006a0c36f5e03cf8577e
5119Merge: aae2a4a 933aee1
5120Author: Jamey Sharp <jamey@minilop.net>
5121Date:   Mon May 10 16:51:24 2010 -0700
5122
5123    Merge branch 'xlib-xcb-thread-fixes'
5124
5125commit aae2a4a7aab26de3fa715d6ecd0a0e0926b37fc9
5126Author: Jeremy Huddleston <jeremyhu@apple.com>
5127Date:   Fri Apr 23 21:50:29 2010 -0700
5128
5129    Don't append the screen number when using a launchd socket
5130    
5131    ssh gets confused by this.  XQuartz is the only DDX using this
5132    functionality, and it doesn't support different screens, so
5133    let's just not include this until most ssh know how to handle
5134    this.
5135    
5136    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
5137
5138commit adcd0ec209abf832a769d52db660fb37eaad6e0c
5139Author: Jeremy Huddleston <jeremyhu@apple.com>
5140Date:   Fri Apr 23 16:33:44 2010 -0700
5141
5142    Remove launchd logic from _XConnectXCB as it's handled in XCB
5143    
5144    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
5145
5146commit d232b259c36fdde1f4179822809fec1480867dc5
5147Author: Jeremy Huddleston <jeremyhu@apple.com>
5148Date:   Tue Feb 2 17:01:28 2010 -0800
5149
5150    Fix various build warnings
5151    
5152    imLcIm.c: In function '_XimCachedFileName':
5153    imLcIm.c:361: warning: format '%03x' expects type 'unsigned int', but argument 8 has type 'long unsigned int'
5154    imLcIm.c:364: warning: format '%03x' expects type 'unsigned int', but argument 8 has type 'long unsigned int'
5155    
5156    imRm.c: In function '_XimDefaultArea':
5157    imRm.c:597: warning: cast from pointer to integer of different size
5158    imRm.c: In function '_XimDefaultColormap':
5159    imRm.c:626: warning: cast from pointer to integer of different size
5160    
5161    lcFile.c:224: warning: no previous prototype for 'xlocaledir'
5162    
5163    lcUTF8.c: In function 'iconv_cstombs':
5164    lcUTF8.c:1841: warning: assignment discards qualifiers from pointer target type
5165    lcUTF8.c:1869: warning: pointer targets in passing argument 1 of 'wctomb' differ in signedness
5166    lcUTF8.c:1873: warning: pointer targets in passing argument 1 of 'wctomb' differ in signedness
5167    lcUTF8.c: In function 'iconv_mbstocs':
5168    lcUTF8.c:1935: warning: pointer targets in passing argument 2 of 'mbtowc' differ in signedness
5169    lcUTF8.c: In function 'iconv_mbtocs':
5170    lcUTF8.c:2031: warning: pointer targets in passing argument 2 of 'mbtowc' differ in signedness
5171    lcUTF8.c: In function 'iconv_mbstostr':
5172    lcUTF8.c:2121: warning: pointer targets in passing argument 2 of 'mbtowc' differ in signedness
5173    lcUTF8.c: In function 'iconv_strtombs':
5174    lcUTF8.c:2180: warning: pointer targets in passing argument 1 of 'wctomb' differ in signedness
5175    lcUTF8.c: In function '_XlcAddGB18030LocaleConverters':
5176    lcUTF8.c:2367: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type
5177    lcUTF8.c:2368: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type
5178    lcUTF8.c:2373: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type
5179    lcUTF8.c:2374: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type
5180    lcUTF8.c:2375: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type
5181    lcUTF8.c:2376: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type
5182    lcUTF8.c:2377: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type
5183    
5184    XlibInt.c: In function '_XGetHostname':
5185    XlibInt.c:3441: warning: implicit declaration of function 'gethostname'
5186    XlibInt.c:3441: warning: nested extern declaration of 'gethostname'
5187    
5188    ConnDis.c: In function '_XDisconnectDisplay':
5189    ConnDis.c:540: warning: old-style function definition
5190    ConnDis.c: In function '_XSendClientPrefix':
5191    ConnDis.c:554: warning: old-style function definition
5192    ConnDis.c: In function 'XSetAuthorization':
5193    ConnDis.c:677: warning: old-style function definition
5194    
5195    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
5196
5197commit 3e11c73187acb2e2be9a812840bbbea947527ccb
5198Author: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
5199Date:   Fri Apr 23 00:01:54 2010 +0200
5200
5201    Allow X11 users to compose anarchism
5202    
5203    I can easily compose the hammer and sickle (the symbol representative
5204    of communism) by pressing the key sequence:
5205    
5206      <Compose> <C> <C> <C> <P> -> ☭
5207    
5208    But i can't easily make the circled A (the symbol representative of
5209    anarchism).
5210    
5211    I'd like to be able to use <Compose> <O> <A> (this is a
5212    currently unused key sequence) to generate the symbol:  Ⓐ
5213    
5214    Debian bug#555938 <http://bugs.debian.org/555938>
5215    
5216    Signed-off-by: Julien Cristau <jcristau@debian.org>
5217
5218commit 933aee1d5c53b0cc7d608011a29188b594c8d70b
5219Author: Jamey Sharp <jamey@minilop.net>
5220Date:   Fri Apr 16 20:18:28 2010 -0700
5221
5222    Fix Xlib/XCB for multi-threaded applications (with caveats).
5223    
5224    Rather than trying to group all response processing in one monolithic
5225    process_responses function, let _XEventsQueued, _XReadEvents, and
5226    _XReply each do their own thing with a minimum of code that can all be
5227    reasoned about independently.
5228    
5229    Tested with `ico -threads 20`, which seems to be able to make many
5230    icosahedrons dance at once quite nicely now.
5231    
5232    Caveats:
5233    
5234    - Anything that was not thread-safe in Xlib before XCB probably still
5235      isn't. XListFontsWithInfo, for instance.
5236    
5237    - If one thread is waiting for events and another thread tries to read a
5238      reply, both will hang until an event arrives. Previously, if this
5239      happened it might work sometimes, but otherwise would trigger either
5240      an assertion failure or a permanent hang.
5241    
5242    - Versions of libxcb up to and including 1.6 have a bug that can cause
5243      xcb_wait_for_event or xcb_wait_for_reply to hang if they run
5244      concurrently with xcb_writev or other writers. So you'll want that fix
5245      as well.
5246    
5247    Signed-off-by: Jamey Sharp <jamey@minilop.net>
5248    Reviewed-by: Josh Triplett <josh@freedesktop.org>
5249
5250commit aab43278ae619eb57d2dd9c7396f460f078588fc
5251Author: Jamey Sharp <jamey@minilop.net>
5252Date:   Fri Apr 16 22:24:16 2010 -0700
5253
5254    Use InternalLockDisplay on code paths called from LockDisplay.
5255    
5256    It's easier to reason about the code when we can't re-enter the
5257    Xlib-private sync-handlers while they're already running.
5258    
5259    Signed-off-by: Jamey Sharp <jamey@minilop.net>
5260    Reviewed-by: Josh Triplett <josh@freedesktop.org>
5261
5262commit 660b7d05f4ca4ab4661c9fe7ce655a4909b4e556
5263Author: Jamey Sharp <jamey@minilop.net>
5264Date:   Fri Apr 16 19:45:11 2010 -0700
5265
5266    Fix _XSend to enqueue the right range of pending requests.
5267    
5268    _XSend was off-by-one on both ends. It should not re-enqueue the last
5269    request that was already flushed, but it should enqueue the last request
5270    currently being flushed.
5271    
5272    Signed-off-by: Jamey Sharp <jamey@minilop.net>
5273    Reviewed-by: Josh Triplett <josh@freedesktop.org>
5274
5275commit f2735889908d6e5a7f8dbee42f00c54a52665191
5276Author: Jamey Sharp <jamey@minilop.net>
5277Date:   Fri Apr 16 19:45:11 2010 -0700
5278
5279    Pending requests are always added in-order.
5280    
5281    Replace insert_pending_request, which did an in-order search of the
5282    queue to find the right insertion point, with a simpler
5283    append_pending_request, and use that in _XSend as well.
5284    
5285    Includes assertions to check that the list of pending requests is in
5286    order by sequence number and does not have duplicates.
5287    
5288    Signed-off-by: Jamey Sharp <jamey@minilop.net>
5289    Reviewed-by: Josh Triplett <josh@freedesktop.org>
5290
5291commit d9cf5885b0f97942fbbd2a7cc50118132ece50f6
5292Author: Markus Duft <markus.duft@salomon.at>
5293Date:   Fri Apr 16 08:39:34 2010 -0700
5294
5295    Bug 26839: Fix build problem on Interix (POSIX layer on Windows)
5296    
5297    https://bugs.freedesktop.org/show_bug.cgi?id=26839
5298    
5299    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5300
5301commit a3f5f1b90936d23e9894e3261b2d77fb7b32a51a
5302Author: Josh Triplett <josh@freedesktop.org>
5303Date:   Thu Apr 15 14:24:21 2010 -0700
5304
5305    Stop returning an int from _XIDHandler and _XSeqSyncFunction
5306    
5307    _XIDHandler and _XSeqSyncFunction originally ran from dpy->synchandler, and
5308    thus had to return an int.  Now, they only run from _XPrivSyncHandler or
5309    LockDisplay, neither of which needs to check their return value since they
5310    always returned 0.  Make them both void.
5311    
5312    Signed-off-by: Josh Triplett <josh@freedesktop.org>
5313    Signed-off-by: Jamey Sharp <jamey@minilop.net>
5314
5315commit a6d974dc59f2722b36e2df9d4f07aeee4f83ce43
5316Author: Jamey Sharp <jamey@minilop.net>
5317Date:   Thu Apr 15 13:05:08 2010 -0700
5318
5319    Move XID and sync handling from SyncHandle to LockDisplay to fix races.
5320    
5321    XID and sync handling happened via _XPrivSyncHandler, assigned to
5322    dpy->synchandler and called from SyncHandle.  _XPrivSyncHandler thus ran
5323    without the Display lock, so manipulating the Display caused races, and
5324    these races led to assertions in multithreaded code (demonstrated via
5325    ico).
5326    
5327    In the XTHREADS case, after you've called XInitThreads, we can hook
5328    LockDisplay and UnlockDisplay.  Use that to run _XIDHandler and
5329    _XSeqSyncHandler from LockDisplay rather than SyncHandle; we then know
5330    that we hold the lock, and thus we can avoid races.  We think it makes
5331    sense to do these both from LockDisplay rather than UnlockDisplay, so
5332    that you know you have valid sync and a valid XID before you start
5333    setting up the request you locked to prepare.
5334    
5335    In the !XTHREADS case, or if you haven't called XInitThreads, you don't
5336    get to use Xlib from multiple threads, so we can use the logic we have
5337    now (with synchandler and savedsynchandler) without any concern about
5338    races.
5339    
5340    This approach gets a bit exciting when the XID and sequence sync
5341    handlers drop and re-acquire the Display lock. Reacquisition will re-run
5342    the handlers, but they return immediately unless they have work to do,
5343    so they can't recurse more than once.  In the worst case, if both of
5344    them have work to do, we can nest the Display lock three deep.  In the
5345    case of the _XIDHandler, we drop the lock to call xcb_generate_id, which
5346    takes the socket back if it needs to request more XIDs, and taking the
5347    socket back will reacquire the lock; we take care to avoid letting
5348    _XIDHandler run again and re-enter XCB from the return_socket callback
5349    (which causes Very Bad Things, and is Not Allowed).
5350    
5351    Tested with ico (with 1 and 20 threads), and with several test programs
5352    for XID and sequence sync.  Tested with and without XInitThreads(), and
5353    with and without XCB.
5354    
5355    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=23192
5356    
5357    Signed-off-by: Jamey Sharp <jamey@minilop.net>
5358    Signed-off-by: Josh Triplett <josh@freedesktop.org>
5359
5360commit b089b53b697c2851db2985d32af3b29f1da5e31e
5361Author: Jamey Sharp <jamey@minilop.net>
5362Date:   Wed Apr 14 12:59:11 2010 -0700
5363
5364    Honest. Extensions get to filter async errors too.
5365    
5366    Under some circumstances, errors are picked up by calling
5367    xcb_poll_for_reply, rather than xcb_poll_for_event, because Xlib issued
5368    the requests with the XCB_REQUEST_CHECKED flag. That happens when either
5369    an async handler is queued at the time the requests are flushed, or when
5370    XSetEventQueueOwner has been used to prevent Xlib from processing XCB's
5371    event queue.
5372    
5373    This bugfix extends 405132dab64bf2375f8e57d02b1b53da2311933a to cover
5374    those cases.
5375    
5376    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=26545
5377    
5378    Signed-off-by: Jamey Sharp <jamey@minilop.net>
5379
5380commit a15c31274650e391bc6de5d0951eb4464c228139
5381Author: Jamey Sharp <jamey@minilop.net>
5382Date:   Wed Apr 14 12:10:34 2010 -0700
5383
5384    _XError already runs async handlers; only call them directly for replies.
5385    
5386    The previous behavior probably would have triggered bug reports someday.
5387    
5388    Signed-off-by: Jamey Sharp <jamey@minilop.net>
5389
5390commit 405132dab64bf2375f8e57d02b1b53da2311933a
5391Author: Jamey Sharp <jamey@minilop.net>
5392Date:   Tue Apr 13 12:12:36 2010 -0700
5393
5394    Extensions get to filter async errors too.
5395    
5396    Apparently I misread XlibInt.c:_XReply and thought that handlers set
5397    with XESetError should be consulted only for the sequence number that
5398    _XReply is currently looking for. In fact, the error handlers are also
5399    consulted when an error arrives for a request that was not expected to
5400    have a reply.
5401    
5402    However, in an odd twist, the error handlers are *not* consulted outside
5403    of _XReply--that is, when looking for events, or waiting to be able to
5404    flush the output queue. So this patch takes some small pains to preserve
5405    that behavior, though it seems likely to have been unintentional.
5406    
5407    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=26545
5408    
5409    Signed-off-by: Jamey Sharp <jamey@minilop.net>
5410
5411commit d3eab4a38f3e53ef21eb3b6fa66ead7afecf6227
5412Author: Jamey Sharp <jamey@minilop.net>
5413Date:   Tue Apr 13 12:49:59 2010 -0700
5414
5415    Prefer the xcb_generic_error_t we already have over casting to xEvent.
5416    
5417    Just a minor cleanup.
5418    
5419    Signed-off-by: Jamey Sharp <jamey@minilop.net>
5420
5421commit 75ea8c37935ccc911557d16a303ba595b8ab106b
5422Author: Jamey Sharp <jamey@minilop.net>
5423Date:   Mon Apr 12 11:30:20 2010 -0700
5424
5425    Run the user's synchandler as well as any internal synchandlers.
5426    
5427    Fixes https://bugs.freedesktop.org/show_bug.cgi?id=27595
5428    
5429    Signed-off-by: Jamey Sharp <jamey@minilop.net>
5430
5431commit c3f3e4a9e531d010312c97e753d6e543e607094d
5432Author: Kusanagi Kouichi <slash@ac.auone-net.jp>
5433Date:   Fri Feb 12 17:16:10 2010 +0900
5434
5435    Fix manual typos.
5436    
5437    Signed-off-by: Kusanagi Kouichi <slash@ac.auone-net.jp>
5438    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5439
5440commit 75c6c5595408caba9ef8233839d77021d02f86f2
5441Author: Dirk Wallenstein <dirkwallenstein@t-online.de>
5442Date:   Fri Feb 5 20:42:46 2010 +0100
5443
5444    man: Correct the XkbAllAccessXEventsMask mask name
5445    
5446    This mask has probably been renamed but not been updated in the manuals.
5447    
5448    Signed-off-by: Dirk Wallenstein <dirkwallenstein@t-online.de>
5449    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5450
5451commit 9262aceaff24c954cab8c252690032bc2ec25e7d
5452Author: Dirk Wallenstein <dirkwallenstein@t-online.de>
5453Date:   Fri Feb 5 20:42:45 2010 +0100
5454
5455    man: Add missing geometry component flag
5456    
5457    Signed-off-by: Dirk Wallenstein <dirkwallenstein@t-online.de>
5458    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5459
5460commit 50cf134465f6fd263f37acecac94518468ef1c6d
5461Author: Dirk Wallenstein <halsmit@t-online.de>
5462Date:   Tue Feb 2 21:24:32 2010 +0100
5463
5464    man: Return value of XkbGetState is Status and not Bool
5465    
5466    Signed-off-by: Dirk Wallenstein <halsmit@t-online.de>
5467    Reviewed-by: Julien Cristau <jcristau@debian.org>
5468    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5469
5470commit 7a93ae2bb5292a97fdd27ed818bc81248b37f641
5471Author: Dirk Wallenstein <halsmit@t-online.de>
5472Date:   Tue Feb 2 21:24:30 2010 +0100
5473
5474    man: Fix return value specification of XkbKeyActionEntry
5475    
5476    The XkbKeyActionEntry macro expands to a pointer.
5477    
5478    Signed-off-by: Dirk Wallenstein <halsmit@t-online.de>
5479    Reviewed-by: Julien Cristau <jcristau@debian.org>
5480    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5481
5482commit e9884d4a05a5661ec343ea8a2aa0562b6419e086
5483Author: Dirk Wallenstein <halsmit@t-online.de>
5484Date:   Tue Feb 2 21:24:29 2010 +0100
5485
5486    man: Redirect users from XKeycodeToKeysym to XkbKeycodeToKeysym #25732
5487    
5488    XKeycodeToKeysym keeps compatibility with pre-XKB and thus only sees 2
5489    groups with 2 levels each. It wraps the index into the next group.
5490    This behavior confuses the unaware user, and therefore this will add a
5491    reference to XkbKeycodeToKeysym in the corresponding man paragraph.
5492    
5493    Another bug had that issue, too. #5349
5494    
5495    Signed-off-by: Dirk Wallenstein <halsmit@t-online.de>
5496    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5497
5498commit 6474cdf97cd648afaeaa872155f3fa21cfb43f80
5499Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5500Date:   Thu Apr 8 19:59:55 2010 -0700
5501
5502    Fix typo in new fi_FI.UTF-8 that was reported by "make check"
5503    
5504    Unrecognized pattern in Compose on line #154:
5505      <dead_diaeresis> <space>                " "¨"
5506    
5507    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5508
5509commit 91bd5e7af2d3a9526aefb73dc10f417896f0e4dd
5510Author: Marko Myllynen <myllynen@redhat.com>
5511Date:   Thu Apr 8 19:52:42 2010 -0700
5512
5513    Bug 27465 - Rewritten fi_FI.UTF-8 Compose file
5514    
5515    I've rewritten the fi_FI.UTF-8 Compose file so that it
5516    
5517    - includes en_US.UTF-8/Compose for base compose definitions (and thus gets any
5518    possible additions to en_US.UTF-8/Compose automatically included)
5519    - overrides any en_US.UTF-8/Compose definitions with fi_FI.UTF-8/Compose
5520    definitions (thus making it safe to include en_US.UTF-8/Compose)
5521    - lists all the definitions specified in the SFS 5966 standard (thus making it
5522    easy to verify that the implementation is valid and complete)
5523    - adds a header about the file itself as required by the standard
5524    
5525    The rewritten version is ~320 lines compared to over 5000 lines of the previous
5526    version.
5527    
5528    https://bugs.freedesktop.org/show_bug.cgi?id=27465
5529
5530commit f6a4fd0c7615684d08e848245849dea4017a5214
5531Author: Gaetan Nadon <memsize@videotron.ca>
5532Date:   Thu Apr 1 21:46:12 2010 -0400
5533
5534    config: update and relocate AC_DEFINE_DIR macro
5535    
5536    Remove deprecated acinclude.m4 macro container file
5537    Use separate macro files as per autoconf recommendation
5538    Use the latest macro from GNU (ax) which replaces
5539    the non-gnu version (ac)
5540    This preserves the Autoconf macro AC namespace.
5541    
5542    Also moved out of acinclude.m4 is the DOLT macro
5543    
5544    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
5545
5546commit 61d5231db418cec51bd718633c3bba39b18689d6
5547Author: Gaetan Nadon <memsize@videotron.ca>
5548Date:   Mon Mar 29 14:53:48 2010 -0400
5549
5550    config: remove the pkgconfig pc.in file from EXTRA_DIST
5551    
5552    Automake always includes it in the tarball.
5553    
5554    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
5555
5556commit 69fc76a0321c6b25cc4286173c53435c69ab8e0e
5557Author: Fernando Carrijo <fcarrijo@yahoo.com.br>
5558Date:   Wed Mar 17 23:53:16 2010 -0300
5559
5560    No need for req->firstKeyCode to be set twice.
5561    
5562    There is no reason to set req->firstKeyCode twice when a client, wishful
5563    for changing keyboard mappings, calls XChangeKeyboardMapping. This patch
5564    fixes the mistake by making no functional changes to libX11 whatsoever.
5565    
5566    Signed-off-by: Fernando Carrijo <fcarrijo@yahoo.com.br>
5567    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
5568
5569commit b5797597f83ee62228abfb88f026ef92163e07a5
5570Author: Gaetan Nadon <memsize@videotron.ca>
5571Date:   Tue Feb 16 10:37:21 2010 -0500
5572
5573    config: move CWARNFLAGS from configure.ac to Makefile.am
5574    
5575    Compiler warning flags should be explicitly set in the makefile
5576    rather than being merged with other packages compiler flags.
5577    
5578    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
5579    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
5580
5581commit 052c4d7995b0e52a038933beb85cd544571c6b7e
5582Author: Gaetan Nadon <memsize@videotron.ca>
5583Date:   Tue Feb 16 14:28:21 2010 -0500
5584
5585    specs: change install cmd due to automake 1.11
5586    
5587    specData_INSTALL is defined in 1.9 and 1.10 but not 1.11
5588    
5589    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
5590
5591commit 7277a18cda9f5a6807d11cf4ceb9449b1c302c18
5592Author: Gaetan Nadon <memsize@videotron.ca>
5593Date:   Tue Feb 9 17:27:08 2010 -0500
5594
5595    doc: use $(mkdir_p) rather than $(MKDIR_P) due to automake 1.9.6
5596    
5597    $(MKDIR_P) is not defined in automake 1.9.
5598    
5599    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
5600
5601commit e66eda95b520727969d721416d4ea49b54ef2b03
5602Author: Gaetan Nadon <memsize@videotron.ca>
5603Date:   Tue Feb 2 16:29:26 2010 -0500
5604
5605    specs: install html images in $docdir with html files
5606    
5607    The images required by the html files have been omitted.
5608    
5609    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
5610
5611commit 137d1ff6be99d040e77c8c4c52029c5bdf1f4808
5612Author: Gaetan Nadon <memsize@videotron.ca>
5613Date:   Sun Jan 31 14:16:20 2010 -0500
5614
5615    doc: use new macros to control doc generation
5616    
5617    Namely XORG_WITH_GROFF for the groff generation tool
5618    XORG_WITH_PS2PDF for the conversion of PS docs to PDF
5619    XORG_ENABLE_SPECS for the generation of specs
5620    
5621    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
5622
5623commit 9ca583c5d6fcf9cd8151ee7b019630b141d32fab
5624Author: Gaetan Nadon <memsize@videotron.ca>
5625Date:   Tue Jan 26 19:41:08 2010 -0500
5626
5627    doc: clean-up generated html images
5628    
5629    Generate images in /images as is the convention
5630    Provide a base file name for images rather than process ID
5631    Remove images directory when running make clean
5632    
5633    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
5634
5635commit eb289b34bfc9978eef724e0f268975938334c06c
5636Author: Kristian Høgsberg <krh@bitplanet.net>
5637Date:   Thu Jan 21 13:39:17 2010 -0500
5638
5639    XErrorDB: Add new DRI2 request names
5640
5641commit 6babf2123d05adb9349394c49cc2d81d1f66cf9e
5642Author: Julien Cristau <jcristau@debian.org>
5643Date:   Sat Jan 16 22:47:03 2010 +0000
5644
5645    man: Fix typo in Makefile
5646    
5647    Missing line continuation was preventing the XCompose alias from being
5648    generated.
5649    
5650    Signed-off-by: Julien Cristau <jcristau@debian.org>
5651    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
5652
5653commit 68530599e61cf9fef3fcc91650e7cef21837fce7
5654Author: Alan Coopersmith <alan.coopersmith@sun.com>
5655Date:   Sat Jan 16 11:41:32 2010 -0800
5656
5657    libX11 1.3.3
5658    
5659    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
5660
5661commit 1e5af224b9fbdb154620f898558704f2bc4bf4e9
5662Author: Alan Coopersmith <alan.coopersmith@sun.com>
5663Date:   Thu Jan 14 18:33:39 2010 -0800
5664
5665    Update COPYING file with actual licenses from libX11 code & docs
5666    
5667    COPYING was previously a years out-of-date copy of the LICENSES
5668    doc summarizing all licenses for all XFree86 components, many of
5669    which did not apply to libX11.
5670    
5671    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
5672
5673commit ddb1786720d6136b1b28be599c75c10ad1b76a2a
5674Author: Alan Coopersmith <alan.coopersmith@sun.com>
5675Date:   Thu Jan 14 17:38:26 2010 -0800
5676
5677    Purge CVS/RCS id tags
5678    
5679    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
5680
5681commit c1db9ddcfa7091f173478dca45bf720badedfca4
5682Author: Alan Coopersmith <alan.coopersmith@sun.com>
5683Date:   Thu Jan 14 15:39:14 2010 -0800
5684
5685    Update Sun license notices to current X.Org standard form
5686    
5687    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
5688
5689commit 1aaa7c0358c5c035b99625f5715cb722bc2d2a2f
5690Author: Alan Coopersmith <alan.coopersmith@sun.com>
5691Date:   Thu Jan 14 08:28:22 2010 -0800
5692
5693    Add %S substitutions to Compose man page
5694    
5695    Commit 9df349a7894725f9469b106af645f57f7f3f9af3 added support for %S
5696    in Compose file include statements - this documents it in the Compose
5697    file man page.
5698    
5699    Also changes the existing substitution documentation to list format
5700    instead of a paragraph format to allow easier adding of %S.
5701    
5702    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
5703
5704commit 94b45db93058cffa25598fe27dd3e385ace9d305
5705Author: Richard Purdie <rpurdie@linux.intel.com>
5706Date:   Thu Jan 14 08:04:28 2010 -0800
5707
5708    Fix configure.ac PKG_ macro calls
5709    
5710    If the first call to PKG_CHECK_MODULES() may not be called during execution
5711    which is the case here since its inside a case statement, call
5712    PKG_PROG_PKG_CONFIG() to ensure things worked correctly.
5713    
5714    Fixes a configure failure introduced by commit
5715    87529c039050ce3336ff9ce00f1b5a21d15690da when xcb is enabled.
5716    
5717    http://bugs.freedesktop.org/show_bug.cgi?id=26041
5718    
5719    Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
5720    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
5721
5722commit df559d8bc2238a2c369152fcb06e5b5ab132a5dc
5723Author: Alan Coopersmith <alan.coopersmith@sun.com>
5724Date:   Tue Jan 12 09:18:15 2010 -0800
5725
5726    Raise xorg-macros requirement to 1.4
5727    
5728    Needed since the changes in 464390f16d7ed4aa5bf80f89863ba92273075ec2
5729    depend on the INSTALL file delivered in xorg-macros 1.4
5730    
5731    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
5732
5733commit 9df349a7894725f9469b106af645f57f7f3f9af3
5734Author: James Cloos <cloos@jhcloos.com>
5735Date:   Wed Jan 13 11:04:38 2010 -0500
5736
5737    Allow inclusion of system level compose files.
5738    
5739    With the release of XFree86 4.4 an inclusion system of compose files was
5740    added to Xlib to allow inclusion of the default compose file (with %L),
5741    any compose files from user’s home directory (with %H), or a compose
5742    file with a hard coded path¹. However, even today including system level
5743    compose files is not possible in a platform independent manner although
5744    the machinery for including compose files and overriding previously
5745    defined compositions is already in place.
5746    
5747    With the ability to include system level compose files one could greatly
5748    reduce the need for compose file rule duplication and the work needed to
5749    propagate changes in one compose file to others. For example, currently
5750    the Finnish compose file fi_FI.UTF-8 weights over 5000 lines² but it
5751    is almost identical with en_US.UTF-8 except for perhaps half a dozen
5752    compositions.
5753    
5754    This commit allows one to include system level compose files with the
5755    following kind of syntax:
5756    
5757    include "%S/en_US.UTF-8/Compose"
5758    
5759    1] http://www.xfree86.org/4.4.0/RELNOTES5.html#42
5760    2] http://cgit.freedesktop.org/xorg/lib/libX11/tree/nls/fi_FI.UTF-8/Compose.pre
5761    
5762    Signed-off-by: Marko Myllynen <myllynen@redhat.com>
5763    Signed-off-by: James Cloos <cloos@jhcloos.com>
5764
5765commit ccf21a8877f40136e25f2f62d0668b0c76b3cfbd
5766Author: Thien-Thi Nguyen <ttn@gnuvola.org>
5767Date:   Tue Dec 1 10:31:47 2009 +0100
5768
5769    libX11: Fix comment: Invert polarity (direction) of reformat description.
5770    
5771    Signed-off-by: Thien-Thi Nguyen <ttn@gnuvola.org>
5772    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
5773
5774commit 4d4676c0d6324d2ff9d00d15ab485fa5d848a369
5775Author: Osamu Sayama <osamu.sayama@sun.com>
5776Date:   Tue Jan 5 17:26:40 2010 -0800
5777
5778    set_fontset_extents crash after get_rotate_fontname fix in 2bef065b70f7
5779    
5780    - In set_fontset_extents, check font_data is not NULL before running
5781      loop that may increment it to a non-NULL invalid pointer.
5782    - Make sure get_rotate_fontname counts the final field
5783    
5784    Fixes OpenSolaris bug 6913809: X application dumps core in ja_JP.UTF-8 locale
5785    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6913809>
5786    
5787    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
5788    Reviewed-by: Adam Jackson <ajax@redhat.com>
5789
5790commit 87529c039050ce3336ff9ce00f1b5a21d15690da
5791Author: Alan Coopersmith <alan.coopersmith@sun.com>
5792Date:   Tue Jan 5 18:02:37 2010 -0800
5793
5794    Merge X11, XKBPROTO, & XPROTO pkg-config lists
5795    
5796    Since the XPROTO_CFLAGS & XKBPROTO_CFLAGS are just merged into X11_CFLAGS
5797    in configure.ac anyway, might as well combine the lists passed to
5798    PKG_CHECK_MODULES to reduce duplication in the flags.
5799    
5800    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
5801    Reviewed-by: Rémi Cardona <remi@gentoo.org>
5802    Acked-by: Peter Hutterer <peter.hutterer@who-t.net>
5803
5804commit 2dd053667b44c55e2bf601aec7b75fc6fee1cf44
5805Author: Alan Coopersmith <alan.coopersmith@sun.com>
5806Date:   Tue Jan 5 17:56:58 2010 -0800
5807
5808    Add XCompose man page shadow for Compose man page
5809    
5810    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
5811
5812commit 02543bba816e065c02cd36e0c9e21519a9ee9c96
5813Author: Alan Coopersmith <alan.coopersmith@sun.com>
5814Date:   Tue Jan 5 17:47:44 2010 -0800
5815
5816    Add $(AM_V_GEN) to silence lint rules too
5817    
5818    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
5819
5820commit db7c6fdeeaef9475458498e4cf09d6b1329e9aa3
5821Author: Alan Coopersmith <alan.coopersmith@sun.com>
5822Date:   Tue Jan 5 17:42:42 2010 -0800
5823
5824    Remove GCC_WARNINGS now that XORG_CWARNFLAGS sets them for us
5825    
5826    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
5827
5828commit 6b4e526e7ba105622f6b143e8e2639b44cb6cc19
5829Author: Gaetan Nadon <memsize@videotron.ca>
5830Date:   Sun Nov 29 10:44:24 2009 -0500
5831
5832    configure.ac: restore correct order for XORG_DEFAULT_OPTIONS
5833    
5834    It must be following AC_USE_SYSTEM_EXTENSION
5835
5836commit 3dbaa11d1c8705e1b309c6686f354766b651ad20
5837Author: Gaetan Nadon <memsize@videotron.ca>
5838Date:   Sun Nov 29 10:01:44 2009 -0500
5839
5840    Add .gitignore in /specs for generated files
5841    
5842    Being in /specs, it will apply for all 3 subdirs
5843
5844commit f45d39d37aab04742e44cd8c3c993aad7587e40c
5845Author: Gaetan Nadon <memsize@videotron.ca>
5846Date:   Fri Nov 27 20:56:03 2009 -0500
5847
5848    Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
5849    
5850    Now that the INSTALL file is generated.
5851    Allows running make maintainer-clean.
5852
5853commit 464390f16d7ed4aa5bf80f89863ba92273075ec2
5854Author: Gaetan Nadon <memsize@videotron.ca>
5855Date:   Wed Oct 28 14:09:10 2009 -0400
5856
5857    INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
5858    
5859    Add missing INSTALL file. Use standard GNU file on building tarball
5860    README may have been updated
5861    Remove AUTHORS file as it is empty and no content available yet.
5862    Remove NEWS file as it is empty and no content available yet.
5863
5864commit 6360e7f0ce6a75da2bed33ede7fea783a1fb80e1
5865Author: Gaetan Nadon <memsize@videotron.ca>
5866Date:   Tue Oct 27 15:07:25 2009 -0400
5867
5868    Deploy the new XORG_DEFAULT_OPTIONS #24242
5869    
5870    This macro aggregate a number of existing macros that sets commmon
5871    X.Org components configuration options. It shields the configuration file from
5872    future changes.
5873
5874commit d02f943c98fde2f14319bc57fd9ad77eb9a2a572
5875Author: Gaetan Nadon <memsize@videotron.ca>
5876Date:   Mon Oct 26 22:08:42 2009 -0400
5877
5878    Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
5879    
5880    ChangeLog filename is known to Automake and requires no further
5881    coding in the makefile.
5882
5883commit f77c89c751a6a63c8ef11ecdddca2aed11ff6e29
5884Author: Gaetan Nadon <memsize@videotron.ca>
5885Date:   Thu Oct 22 12:34:19 2009 -0400
5886
5887    .gitignore: use common defaults with custom section # 24239
5888    
5889    Using common defaults will reduce errors and maintenance.
5890    Only the very small or inexistent custom section need periodic maintenance
5891    when the structure of the component changes. Do not edit defaults.
5892
5893commit 46c7b0e9d0d85cf5ccc0d40d19821fcc3335503b
5894Author: Alan Coopersmith <alan.coopersmith@sun.com>
5895Date:   Thu Nov 12 23:05:40 2009 -0800
5896
5897    Add compose-check.pl to EXTRA_DIST
5898    
5899    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
5900
5901commit 54c64267cc8bc98641cc39a22cb7bd71673e89e0
5902Author: Julien Cristau <jcristau@debian.org>
5903Date:   Thu Oct 29 17:17:24 2009 +0100
5904
5905    man: fix XCopyGC argument order
5906    
5907    Ubuntu bug#408337
5908
5909commit aad10032651cdc2a53b359035954454a28d6db67
5910Author: Alan Coopersmith <alan.coopersmith@sun.com>
5911Date:   Fri Oct 23 13:55:14 2009 -0700
5912
5913    libX11 1.3.2
5914    
5915    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
5916
5917commit 6303ada89cb228c0f9656036f798703afb42fc29
5918Author: Peter Hutterer <peter.hutterer@who-t.net>
5919Date:   Wed Oct 21 12:42:07 2009 +1000
5920
5921    Add smiley faces to compose sequences.
5922    
5923    I wonder how we could have lasted that long without them.
5924    
5925    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
5926    Acked-by: Daniel Stone <daniel@fooishbar.org>
5927    Acked-By: James Cloos <cloos@jhcloos.com>
5928
5929commit 0e104ebd8628803c27e36b16922ad1edd891325a
5930Author: Alan Coopersmith <alan.coopersmith@sun.com>
5931Date:   Thu Oct 22 23:12:30 2009 -0700
5932
5933    Add man page for Compose file format
5934    
5935    Based on grammar description in modules/im/ximcp/imLcPrs.c and
5936    note on XFree86 changes formerly found in xorg-docs RELNOTES.sgml
5937    
5938    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
5939
5940commit 9c95f2af7c442b3a59b1a30cf804f1ef4e7fc5b5
5941Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
5942Date:   Tue Oct 20 12:46:03 2009 -0700
5943
5944    Add extra configuration and sanity checks for groff and ps2pdf
5945    
5946    1) Add AC_ARG_VAR for GROFF and PS2PDF to inform users of these
5947       environment variables.
5948    2) Check that groff -ms works
5949    
5950    Some distributions ship the ms macros as a separate package which may
5951    not be installed together with groff, so we need to make sure that groff
5952    works and the required macros are actually installed before attempting
5953    to build the specs.
5954    
5955    Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
5956    Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
5957    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
5958
5959commit d3f801fd2f9198eaad6797414dba652f9c006c6d
5960Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
5961Date:   Sun Oct 18 17:34:53 2009 -0500
5962
5963    Fix VPATH build of libX11 specs
5964    
5965    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
5966
5967commit ad15e1a89d30ccc11d80745897b83def1448e8c0
5968Author: Alan Coopersmith <alan.coopersmith@sun.com>
5969Date:   Sat Oct 17 16:14:34 2009 -0700
5970
5971    libX11 1.3.1
5972    
5973    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
5974
5975commit 0cbf98c17a7484bb58b2464b98d63bb3b4ea2594
5976Author: Alan Coopersmith <alan.coopersmith@sun.com>
5977Date:   Sat Oct 17 16:28:25 2009 -0700
5978
5979    Fix make distcheck
5980    
5981    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
5982
5983commit 082e62ad268ef16a3bebc5a3c9fa008dbdc483ed
5984Author: Alan Coopersmith <alan.coopersmith@sun.com>
5985Date:   Fri Oct 16 19:25:35 2009 -0700
5986
5987    Use $(AM_V_GEN) to silence echo commands for generating shadow man pages
5988    
5989    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
5990
5991commit 4e66da0783b2e5e3b288aaecd3c89396ed425c20
5992Author: Alan Coopersmith <alan.coopersmith@sun.com>
5993Date:   Wed Oct 14 16:18:24 2009 -0700
5994
5995    Move libX11 & XIM/locale specs from xorg-docs
5996    
5997    If groff is found, and --disable-specs is not passed to configure,
5998    specs will be converted to text, html and ps (or pdf if ps2pdf is
5999    found) and installed to $(docdir)
6000    
6001    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6002
6003commit 5d3d817a42ddcc8d0c6efd33efd1442fe14f5c6b
6004Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
6005Date:   Tue Oct 13 19:15:51 2009 -0500
6006
6007    Provide _Xsetlocale compat wrappers on Cygwin
6008    
6009    Previous versions of Cygwin did not have proper locale support, so Cygwin/X
6010    defined X_LOCALE, using _Xsetlocale instead.  Cygwin 1.7 has added locale
6011    support, but we can't remove the _Xsetlocale entry point without breaking
6012    ABI.
6013    
6014    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
6015
6016commit 2c8b3a877a713bb66a6316a7051b43c46af6e1a0
6017Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
6018Date:   Tue Oct 13 19:15:49 2009 -0500
6019
6020    dolt: add Cygwin to supported platforms
6021    
6022    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
6023
6024commit a2c8e3e34b15b57ff881a52101fc961a602f35e4
6025Author: Alan Coopersmith <alan.coopersmith@sun.com>
6026Date:   Wed Oct 14 13:23:30 2009 -0700
6027
6028    Recognize XSUNBUFFERSIZE alias for XLIBBUFFERSIZE on Solaris
6029    
6030    Also fix indenting of the XLIBBUFFERSIZE code to match surrounding code
6031    
6032    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6033
6034commit 34ddfca7b7d58240b0fe74bec6b2e0652d15c051
6035Author: Jon TURNEY <jon.turney@dronecode.org.uk>
6036Date:   Tue Feb 10 17:47:25 2009 +0000
6037
6038    Include sys/select.h for select() and struct timeval, if it exists
6039    
6040    This is a cygwin build fix
6041
6042commit 383165916ddac91740d4c780174d4c0d07cdb994
6043Author: Xake <xake@rymdraket.net>
6044Date:   Sun Sep 27 11:16:36 2009 +0200
6045
6046    Use AM_V_GEN instead of customized macros for AM_SILENT_RULES
6047    
6048    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6049
6050commit 854269d55cdda8caf425515bfed2855e211a5ada
6051Author: Julien Cristau <jcristau@debian.org>
6052Date:   Tue Oct 6 16:11:24 2009 +0200
6053
6054    configure: quote argument to m4_pattern_forbid
6055    
6056    Without this, configure spits out
6057    ../configure: line 12364: ac_fn_c_check_member: command not found
6058    ../configure: line 12378: ac_fn_c_check_type: command not found
6059    
6060    Also anchor the pattern to make it stricter.
6061    
6062    Signed-off-by: Julien Cristau <jcristau@debian.org>
6063
6064commit 3bb020587ce74e0737ec7aceb20041f1e77d3b87
6065Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
6066Date:   Thu Oct 1 22:20:38 2009 -0700
6067
6068    Split CFLAGS into CPPFLAGS and CFLAGS
6069    
6070    On some build systems, CPPFLAGS is set to "-I/some/prefix/include".  If older
6071    X11 headers are in /some/prefix/include, they will be preferred over the
6072    shipped headers.  This corrects that problem.
6073
6074commit d54caf1c9c55af8247621b7ba6afb20b23699839
6075Author: Peter Hutterer <peter.hutterer@who-t.net>
6076Date:   Fri Oct 2 10:59:08 2009 +1000
6077
6078    libX11 1.3
6079    
6080    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
6081
6082commit dd201bcf9e7f8863b7ef32273a5ef021678133c1
6083Author: Peter Hutterer <peter.hutterer@who-t.net>
6084Date:   Fri Oct 2 12:10:29 2009 +1000
6085
6086    nls: remove duplicate Compose sequences from pt_BR.UTF-8
6087    
6088    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
6089
6090commit a293ae9e83739067fc92db1a39c262857bc2283e
6091Author: Peter Hutterer <peter.hutterer@who-t.net>
6092Date:   Fri Sep 25 11:19:41 2009 +1000
6093
6094    Add XF86TouchpadToggle to XKeysymDB
6095    
6096    Lenovo laptops provide a key to enable or disable the touchpad and the
6097    trackstick. This key is usually located on Fn + F8.
6098    
6099    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
6100    Acked-by: Adam Jackson <ajax@redhat.com>
6101
6102commit 69839f8903a24eab08f17a781b3797fb64dce9cf
6103Author: Alan Coopersmith <alan.coopersmith@sun.com>
6104Date:   Sun Sep 27 10:34:16 2009 -0700
6105
6106    Bug 24173: libX11 from git fails to build with automake older then 1.11
6107    
6108    AM_CONDITIONAL must come *before* the AC_OUTPUT that creates the
6109    Makefiles, instead of after.
6110    <http://bugs.freedesktop.org/show_bug.cgi?id=24173>
6111    
6112    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6113
6114commit f5effd041f58ef07703cca2b4f396758811e1eec
6115Author: Alan Coopersmith <alan.coopersmith@sun.com>
6116Date:   Wed Apr 15 10:59:23 2009 -0700
6117
6118    Resolve conflicting Compose sequences in iso8859-2, el_GR.UTF-8 & pt_BR.UTF-8
6119    
6120    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6121
6122commit 3843778358d3a0cd6a2d07dba5dd061248053ac9
6123Author: Alan Coopersmith <alan.coopersmith@sun.com>
6124Date:   Wed Apr 15 10:56:09 2009 -0700
6125
6126    Add perl script to check for duplicate or conflicting compose file entries
6127    
6128    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6129
6130commit 19cc5e1fa17a285045662820a8b4de2a0f9a194d
6131Author: Alan Coopersmith <alan.coopersmith@sun.com>
6132Date:   Fri Sep 18 17:10:04 2009 -0700
6133
6134    Use make rules instead of shell for loops to generate shadow man pages
6135    
6136    Allows parallel make and simpler build logs/error reporting
6137    
6138    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6139
6140commit 7dabcac973d0b6692a3cd62bd6d8e0467b24200b
6141Author: Alan Coopersmith <alan.coopersmith@sun.com>
6142Date:   Fri Sep 18 16:58:53 2009 -0700
6143
6144    Add AM_SILENT_RULES support for cpp rules for man & nls files
6145    
6146    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6147
6148commit bfa19cddd8546b4930a773f3bbd81137c362d82b
6149Author: Alan Coopersmith <alan.coopersmith@sun.com>
6150Date:   Fri Sep 18 16:58:16 2009 -0700
6151
6152    Update to using xorg-macros 1.3 & XORG_DEFAULT_OPTIONS
6153    
6154    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6155
6156commit 51396066c8003a96a6399c9a4bed2a81e512b582
6157Author: Mikko Niskanen <mikko.niskanen@iki.fi>
6158Date:   Fri Sep 4 10:11:15 2009 +1000
6159
6160    Fix wrong typedef on HP-UX (#18998)
6161    
6162    shl_dt doesn't exist, the type is shl_t.
6163    
6164    X.Org Bug 18998 <http://bugs.freedesktop.org/show_bug.cgi?id=18998>
6165    
6166    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
6167
6168commit 615220a312b9430a580fe6dcf51703c6ef244f66
6169Author: Paul Bender <pebender@gmail.com>
6170Date:   Fri Sep 4 09:57:10 2009 +1000
6171
6172    Don't require xdmcp in configure.ac (#22583)
6173    
6174    X.Org Bug 22583 <http://bugs.freedesktop.org/show_bug.cgi?id=22583>
6175    
6176    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
6177
6178commit 20f9ecd86ad2a9ac6966f7eee32234cb5ef77c29
6179Author: Peter Hutterer <peter.hutterer@who-t.net>
6180Date:   Thu Sep 3 14:02:44 2009 +1000
6181
6182    man: fix parameters to XkbAllocGeomOverlay{Rows|Keys} (#23499)
6183    
6184    X.Org Bug 23499 <http://bugs.freedesktop.org/show_bug.cgi?id=23499>
6185    
6186    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
6187
6188commit c2814a614dc4d9409bfa0f44c18bfd69ad7f7b85
6189Author: Peter Hutterer <peter.hutterer@who-t.net>
6190Date:   Thu Sep 3 12:05:25 2009 +1000
6191
6192    man: XQueryTree may return BadWindow. (#23416)
6193    
6194    X.Org Bug 23416 <http://bugs.freedesktop.org/show_bug.cgi?id=XXX>
6195    
6196    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
6197
6198commit dbe98d456ccc6eeca9fa3e241a3db0a4d83c5a65
6199Author: Alan Coopersmith <alan.coopersmith@sun.com>
6200Date:   Fri Aug 28 23:07:58 2009 +0800
6201
6202    Fix version tag in .TH line of several XKB man pages
6203    
6204    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6205
6206commit bf24400936c10af6f5aa0c75cfe2207ab9b680b4
6207Author: Alan Coopersmith <alan.coopersmith@sun.com>
6208Date:   Fri Aug 28 23:04:38 2009 +0800
6209
6210    XkbSetDeviceButtonActions.man: remove non-existent actions argument
6211    
6212    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6213
6214commit 53affa9335116f2d367f041e6502a411d4619e47
6215Author: Alan Coopersmith <alan.coopersmith@sun.com>
6216Date:   Fri Aug 28 23:00:17 2009 +0800
6217
6218    XkbQueryExtension.man: Arguments should be pointers
6219    
6220    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6221
6222commit 6233948885acc5873a5abddfff235afec555f3c2
6223Author: Alan Coopersmith <alan.coopersmith@sun.com>
6224Date:   Fri Aug 28 22:53:03 2009 +0800
6225
6226    XkbSAActionSetCtrls.man: Fix typo in formatting macro
6227    
6228    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6229
6230commit 28a9ca57cdec4aa9ca92322f963b01f0c2daf47a
6231Author: Alan Coopersmith <alan.coopersmith@sun.com>
6232Date:   Fri Aug 28 22:49:31 2009 +0800
6233
6234    Convert Xkb API man pages to ANSI prototypes
6235    
6236    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6237
6238commit fa2eecca85baab9616f7143cc1a853a594b4a90c
6239Author: James Cloos <cloos@jhcloos.com>
6240Date:   Mon Aug 24 06:35:17 2009 -0400
6241
6242    Add some (Serbian) Cyrillic NFD sequences.
6243    
6244    A number of characters in use in the various countries which use the
6245    Cyrillic script do not appear as pre-composed characters in The UCS
6246    or Unicode; they are only available as combining-character sequences.
6247    
6248    This commit adds support for using (prefix) dead keys and Multi_key-
6249    initiated sequences to enter a number of these combining-character
6250    sequences.  This ensures that users can enter these scripts even
6251    when using the current Cyrillic keymaps, which lack support for
6252    the combining characters.
6253    
6254    Please see the discussions on the xkb mailing list.
6255    
6256    Signed-off-by: James Cloos <cloos@jhcloos.com>
6257
6258commit d1bdc909f9246119696c8b0d9afb7bd8afb71b60
6259Author: Julien Cristau <jcristau@debian.org>
6260Date:   Wed Aug 5 18:14:23 2009 +0200
6261
6262    man/xkb: delete spurious newline in .TH headers
6263
6264commit ee723b83b24682db833a2f0abd96cd319b8a62af
6265Author: Julien Cristau <jcristau@debian.org>
6266Date:   Wed Aug 5 16:45:19 2009 +0200
6267
6268    man: use __libmansuffix__ instead of 3X11 for references to other pages
6269
6270commit 595e204feb82c798a92eea41fea03be6476ac181
6271Author: Julien Cristau <jcristau@debian.org>
6272Date:   Wed Aug 5 16:43:36 2009 +0200
6273
6274    man/xkb: use __libmansuffix__ instead of hardcoding 3Xkb for manpage sections
6275
6276commit 9da7e230d5320e1556ad2084fcd06ee7994385ea
6277Author: Peter Hutterer <peter.hutterer@who-t.net>
6278Date:   Wed Aug 5 14:15:02 2009 +1000
6279
6280    Bump to 1.2.99.901 (1.3 RC1)
6281    
6282    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
6283
6284commit 8f78c7b4e3570cd46c5a220982963c17fe2157b8
6285Author: Filippo Giunchedi <filippo@debian.org>
6286Date:   Sat Jun 6 16:56:54 2009 +0200
6287
6288    nls: add {left,right}wards arrow to compose table
6289    
6290    Debian bug#532117 <http://bugs.debian.org/532117>
6291    
6292    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
6293
6294commit 7949bfa00390241d994f32463e50d4bd78920568
6295Author: Julien Cristau <jcristau@debian.org>
6296Date:   Fri Jul 31 13:33:52 2009 +0200
6297
6298    Update library version for new symbols
6299    
6300    Commit 554f755e5545f63d3c8f299297927238da155773 added generic event
6301    cookie handling.  Bump libX11 version number accordingly.
6302    
6303    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
6304
6305commit 640fec5f4feacd01a00eea3dcd4edb220907d3dc
6306Author: Julien Cristau <jcristau@debian.org>
6307Date:   Sun Aug 2 17:18:31 2009 +0200
6308
6309    Add _XFUNCPROTOBEGIN/END to Xlib-xcb.h
6310    
6311    X.Org bug#22252 <https://bugs.freedesktop.org/show_bug.cgi?id=22252>
6312    
6313    Reported-by: Riku Salminen <rsalmin2@cc.hut.fi>
6314    Signed-off-by: Julien Cristau <jcristau@debian.org>
6315
6316commit bc06d49e9dac1836d6824769ddb2ac5ba9f14df7
6317Author: Peter Hutterer <peter.hutterer@who-t.net>
6318Date:   Wed Jul 29 08:44:09 2009 +1000
6319
6320    Fix compiler warning 'unused variable qelt'
6321    
6322    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
6323
6324commit 03f4907e14f5755e72309f08742977b871e81e33
6325Author: Peter Hutterer <peter.hutterer@who-t.net>
6326Date:   Wed Jul 29 08:34:57 2009 +1000
6327
6328    Add utlist.h to the Makefile.am
6329    
6330    utlist.h contains the linked list macros, it was added with the recent
6331    addition of event cookies but utlist.h wasn't added to the Makefile.am. As a
6332    result, make dist failed.
6333    
6334    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
6335
6336commit 554f755e5545f63d3c8f299297927238da155773
6337Author: Peter Hutterer <peter.hutterer@who-t.net>
6338Date:   Fri Jun 26 11:27:43 2009 +1000
6339
6340    Add generic event cookie handling to libX11.
6341    
6342    Generic events require more bytes than Xlib provides in the standard XEvent.
6343    Memory allocated by the extension and stored as pointers inside the event is
6344    prone to leak by simple 'while (1) { XNextEvent(...); }' loops.
6345    
6346    This patch adds cookie handling for generic events. Extensions may register
6347    a cookie handler in addition to the normal event vectors. If an extension
6348    has registered a cookie handler, _all_ generic events for this extensions
6349    must be handled through cookies. Otherwise, the default event handler is
6350    used.
6351    
6352    The cookie handler must return an XGenericEventCookie with a pointer to the
6353    data.The rest of the event (type, serialNumber, etc.) are to be filled as
6354    normal. When a client retrieves such a cookie event, the data is stored in
6355    an internal queue (the 'cookiejar'). This data is freed on the next call to
6356    XNextEvent().
6357    
6358    New extension interfaces:
6359        XESetWireToEventCookie(display, extension_number, cookie_handler)
6360    
6361    Where cookie_handler must set cookie->data. The data pointer is of arbitray
6362    size and type but must be a single memory block. This memory block
6363    represents the actual extension's event.
6364    
6365    New client interfaces:
6366        XGetEventData(display, *cookie);
6367        XFreeEventData(display, *cookie);
6368    
6369    If the client needs the actual event data, it must call XGetEventData() with
6370    the cookie. This returns the data pointer (and removes it from the cookie
6371    jar) and the client is then responsible for freeing the event with
6372    XFreeEventData(). It is safe to call either function with a non-cookie
6373    event. Events unclaimed or not handled by the XGetEventData() are cleaned up
6374    automatically.
6375    
6376    Example client code:
6377        XEvent event;
6378        XGenericEventCookie *cookie = &ev;
6379    
6380        XNextEvent(display, &event);
6381        if (XGetEventData(display, cookie)) {
6382            XIEvent *xievent = cookie->data;
6383            ...
6384        } else if (cookie->type == GenericEvent) {
6385            /* handle generic event */
6386        } else {
6387            /* handle extension/core event */
6388        }
6389        XFreeEventData(display, cookie);
6390    
6391    Cookies are not multi-threading safe. Clients that use XGetEventData() must
6392    lock between XNextEvent and XGetEventData to avoid other threads freeing
6393    cookies.
6394    
6395    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
6396
6397commit d7675cb8fa7155e7aff1459636a117a97aa1bf28
6398Author: Peter Hutterer <peter.hutterer@who-t.net>
6399Date:   Mon Jul 6 13:17:35 2009 +1000
6400
6401    Bump to 1.2.99.1
6402    
6403    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
6404
6405commit 75fe48e7a42a685d7098e8d7108b9b956c471563
6406Author: Peter Hutterer <peter.hutterer@who-t.net>
6407Date:   Fri Jul 10 14:07:34 2009 +1000
6408
6409    Bump to 1.2.2
6410    
6411    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
6412
6413commit 5d0fe0e0e92759af5667c5dca2eacb1b6f2d66ea
6414Author: Peter Hutterer <peter.hutterer@who-t.net>
6415Date:   Thu Jul 2 09:10:25 2009 +1000
6416
6417    XMaskEvent/XCheckMaskedEvents must not check for GenericEvents.
6418    
6419    GenericEvent cannot be selected for in the core event masks and they must
6420    thus be treated like extension events.
6421    
6422    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
6423
6424commit c1bf65b89f4e361f6178a73dd5334c8f2bd95732
6425Author: Peter Hutterer <peter.hutterer@who-t.net>
6426Date:   Thu Jul 2 09:06:05 2009 +1000
6427
6428    XWindowEvent/XCheckWindowEvent must not return GenericEvents.
6429    
6430    GenericEvents have no fixed position for the window, so they must be treated
6431    like extension events.
6432    
6433    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
6434
6435commit 38f9054554d63525d2dd51aafb5eb57821158ab9
6436Author: Alan Coopersmith <alan.coopersmith@sun.com>
6437Date:   Mon Jun 15 19:00:43 2009 -0700
6438
6439    Drop ancient USG SysV #ifdefs
6440    
6441    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6442
6443commit 7bfe1323f16a1a69cc474659f7ac0c2570b1cf42
6444Author: Adam Jackson <ajax@redhat.com>
6445Date:   Fri Jun 12 12:44:01 2009 -0400
6446
6447    Remove X_NOT_STDC_ENV usage. (#6527)
6448
6449commit 6dd74d7fb414ca1e99bae5c13e333961f396eb36
6450Author: Julien Cristau <jcristau@debian.org>
6451Date:   Fri May 29 11:18:11 2009 +0200
6452
6453    nls: remove more duplicated aliases
6454    
6455    Signed-off-by: Julien Cristau <jcristau@debian.org>
6456
6457commit e4b0899f516da224010e68bd2d953d5293d94993
6458Author: parag <parag@rawhideTM.pnq.redhat.com>
6459Date:   Thu May 28 11:29:35 2009 +0530
6460
6461    nls: Add pa_PK locale information and make pa_IN as default for pa.
6462    
6463    X.Org bug#21954 <http://bugs.freedesktop.org/show_bug.cgi?id=21954>
6464    
6465    [jcristau: removed the pa_PK.UTF-8 alias to itself]
6466    
6467    Signed-off-by: parag <pnemade@redhat.com>
6468    Signed-off-by: Julien Cristau <jcristau@debian.org>
6469
6470commit f0ea1f6d51145592f8617854f9320ec5dbff3299
6471Author: Julien Cristau <jcristau@debian.org>
6472Date:   Fri May 29 10:58:20 2009 +0200
6473
6474    nls: remove broken sd_IN.UTF-8 alias
6475    
6476    Signed-off-by: Julien Cristau <jcristau@debian.org>
6477
6478commit e29e010dabdb17d6498f2ef1786f69b8830c18ca
6479Author: Julien Cristau <jcristau@debian.org>
6480Date:   Fri May 29 10:57:43 2009 +0200
6481
6482    nls: remove duplicated en_US* aliases
6483    
6484    Signed-off-by: Julien Cristau <jcristau@debian.org>
6485
6486commit a89a300d87852c84389ad97db66dcb8930cb45dd
6487Author: Caolan McNamara <caolanm@redhat.com>
6488Date:   Thu May 21 18:41:05 2009 +0200
6489
6490    man: missing space in XAllocColor man page
6491    
6492    X.Org bug#21854 <http://bugs.freedesktop.org/show_bug.cgi?id=21854>
6493
6494commit c1c001e36504fd304f76f69bf6af3643225c49ea
6495Author: James Cloos <cloos@jhcloos.com>
6496Date:   Wed May 13 13:03:54 2009 -0400
6497
6498    [nls] Replace remaining UCS Combining Characters in Compose sequences.
6499    
6500    The replaces the instances of keysyms which match <U03[0-6][0-9A-Fa-f]>,
6501    where the keysym is used as a dead_key, with an actual dead_key symbol.
6502    
6503    The only remaining instances of UCS combining characters in the
6504    compose sequences are of U0338 COMBINING LONG SOLIDUS OVERLAY
6505    used as a suffix in Multi_key-initiated sequences to create
6506    mathematics characters such as ∉ U+2209 NOT AN ELEMENT OF
6507    from ∈ U+2208 ELEMENT OF.
6508
6509commit e2b0bad3d3b9e9ca781fc264eb7584afbe2a1a4f
6510Author: James Cloos <cloos@jhcloos.com>
6511Date:   Wed May 13 09:58:59 2009 -0400
6512
6513    [nls] Remove extraneous instances of UCS Combining Characters in Compose sequences.
6514    
6515    This removes those instances of keysyms which match <U03[0-6][0-9A-Fa-f]>,
6516    where the matching keysym is used as a dead_key, and for which alternative
6517    compose sequences exist.
6518
6519commit 79f47e6dff2f0a0b673bbfecc47528edca814baa
6520Author: James Cloos <cloos@jhcloos.com>
6521Date:   Fri May 8 20:11:54 2009 -0400
6522
6523    [nls] Remove combining_ keysyms from the Compose files
6524    
6525    Some of the UTF-8 Compose tables included combining_ keysyms in
6526    the compose sequences as though they were dead symbols.  This
6527    is contrary to how combining characters are used in the UCS.
6528    Therefore, those lines have been removed from the Compose tables.
6529    
6530    There were also some combining_ keysyms as targets.  As those
6531    are not included in x11proto’s keysymdef.h, and as those do
6532    exist there as Uxxxx keysyms, they are replaced with the Uxxxx
6533    keysym names.
6534    
6535    This addresses http://bugzilla.freedesktop.org/show_bug.cgi?id=5107
6536    and is based on attachment 25644 by samuel.thibault@ens-lyon.org.
6537    
6538    Signed-off-by: James Cloos <cloos@jhcloos.com>
6539
6540commit 4a08a3dfbda497b2be46e3e5fe6b777815ea27f9
6541Author: parag <pnemade@redhat.com>
6542Date:   Tue May 5 16:50:47 2009 +0530
6543
6544    libX11: Add new Indic language information to nls directory files. #21560
6545    
6546    Signed-off-by: parag <pnemade@redhat.com>
6547
6548commit aaf81096eb44b4c2812108721ba02738391884da
6549Author: Alan Coopersmith <alan.coopersmith@sun.com>
6550Date:   Sat May 2 01:38:14 2009 -0700
6551
6552    Correct return type in XkbGetKeyboard man page
6553    
6554    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6555
6556commit 2bef065b70f70af520b5de8fb23529254d15f003
6557Author: Christoph Pfister <christophpfister@gmail.com>
6558Date:   Mon Apr 27 22:32:57 2009 -0700
6559
6560    X.Org Bug #21117: crash in get_rotate_fontname (omGeneric.c)
6561    
6562    http://bugs.freedesktop.org/show_bug.cgi?id=21117
6563    
6564    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6565
6566commit 5c1cde105db10df24d3c532f032cbc59050c7313
6567Author: Alan Coopersmith <alan.coopersmith@sun.com>
6568Date:   Fri Apr 17 22:14:47 2009 -0700
6569
6570    Use AC_USE_SYSTEM_EXTENSIONS instead of hand-rolled check for _GNU_SOURCE
6571    
6572    Raises minimum autoconf version required to 2.60
6573    
6574    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6575
6576commit 84b7a91ef84f345384e4b0e13907385ca3ca3255
6577Author: Julien Cristau <jcristau@debian.org>
6578Date:   Tue Apr 14 15:59:57 2009 +0100
6579
6580    Fix fi_FI.UTF-8, again
6581    
6582    Commit 97fc6babd4ccaf300e25708868aa2a738893dc30 "NLS: Add UTF-8 compose
6583    file for Finnish" made fi_FI.UTF-8 use a broken empty XLC_LOCALE file.
6584    This reverts it back to using the en_US.UTF-8 one.
6585
6586commit 128daff4422f973ea40dd1e31b2db230e643549e
6587Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
6588Date:   Thu Apr 9 12:01:07 2009 +0700
6589
6590    Thai XIM not retrieve MB surrounding on UTF-8 LC
6591    
6592    On th_TH.UTF-8 locale, Thai XIM rejects all combining characters for GTK+ apps
6593    that use X Input Method.
6594    
6595    This is because GTK+ imxim immodule passes surrounding text in locale encoding,
6596    which is UTF-8 for UTF-8 locales. But current Thai XIM in Xlib assumes the
6597    multi-byte StringConversionText response for the StringConversionCallback to
6598    always be TIS-620, by retrieving a single byte and using it as-is.
6599    
6600    If the Thai XIM tries to convert the multi-byte text based on locale codeset
6601    before using it, it will work again.
6602    
6603    X.Org But 12759 <http://bugs.freedesktop.org/show_bug.cgi?id=12759>
6604    
6605    Signed-off-by: Theppitak Karoonboonyanan <thep@linux.thai.net>
6606    Signed-off-by: Julien Cristau <jcristau@debian.org>
6607
6608commit e09f0d227fbf95b6252759af9d426efd57686f9f
6609Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
6610Date:   Thu Apr 9 11:47:55 2009 +0700
6611
6612    Thai XIM not filters when NumLock or CapsLock is on
6613    
6614    The Thai XIM component in libx11 activated on 'th*' locales normally filters
6615    input sequence according to orthographic rules. However, when NumLock/CapsLock
6616    is on, this stops working. All sequences are passed through.
6617    
6618    This is caused by missing masks in _XimThaiFilter(), which normally screens out
6619    certain special keys from entering orthographic rules. Unfortunately, this
6620    included events with NumLock/CapsLock on. Negating the masks from the check
6621    allows the events to be tested by the rules.
6622    
6623    X.Org Bug 12517 <http://bugs.freedesktop.org/show_bug.cgi?id=12517>
6624    
6625    Signed-off-by: Theppitak Karoonboonyanan <thep@linux.thai.net>
6626    Signed-off-by: Julien Cristau <jcristau@debian.org>
6627
6628commit d108d3c706af3502820b5202564488ea19908b77
6629Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
6630Date:   Thu Apr 9 11:25:25 2009 +0700
6631
6632    CharSet-to-CompoundText Conversion Failed for Thai Locales
6633    
6634    SCIM fails to commit Thai input characters on Thai locales, because it commits
6635    string in compound text form, which was converted via
6636    XwcTextListToTextProperty(). But the XLC_LOCALE for th_TH and th_TH.UTF-8
6637    declares cs1's ct_encoding as TIS620-0:GR, which was commented out in
6638    src/xlibi18n/lcCT.c default_ct_data, in favor of ISO8859-11 ESC sequence.
6639    So, declaring cs1 as ISO8859-11:GR instead makes it work.
6640    
6641    Besides, for th_TH.UTF-8, adding cs2 class with ISO10646-1 encoding also adds
6642    support for UTF-8 input.
6643    
6644    And, along discussion in the bug, a similar problem was found for fontset, too,
6645    by causing delays on X apps startups on systems without tis620-0 fonts. This
6646    is normally the case, as mkfontdir and mkfontscale generate iso8859-11 entries
6647    by default for Thai X fonts. So, Thai fontset charset is also patched.
6648    
6649    X.Org Bug 16475 <http://bugs.freedesktop.org/show_bug.cgi?id=16475>
6650    
6651    Signed-off-by: Theppitak Karoonboonyanan <thep@linux.thai.net>
6652    Signed-off-by: Julien Cristau <jcristau@debian.org>
6653
6654commit fd62d3318c846cd43d66a505946e94704d7d83dc
6655Author: Alan Coopersmith <alan.coopersmith@sun.com>
6656Date:   Wed Apr 8 19:42:25 2009 -0700
6657
6658    Revert "Change masculine to ordmasculine in Compose file comments"
6659    
6660    This reverts commit 892b401d5acc055803a20e349ede0d64490f2230.
6661    
6662    As Julien Cristau correctly points out, I misread the Compose file grammar
6663    in modules/im/ximcp/imLcPrs.c, and those are keysyms, not comments, and
6664    the keysym is named XK_masculine in keysymdef.h.   This change is thus a
6665    bug in the Solaris compose tables to be fixed, not an improvement to bring
6666    upstream.
6667
6668commit eac57c77afdf44f50692225b8b0345a7c927bc84
6669Author: Alan Coopersmith <alan.coopersmith@sun.com>
6670Date:   Tue Apr 7 15:38:45 2009 -0700
6671
6672    Version bump: 1.2.1
6673    
6674    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6675
6676commit bfbec08baec33c5024510b0bcbbee6e4a8473e79
6677Author: Yaakov Selkowitz (Cygwin Ports maintainer) <yselkowitz@users.sourceforge.net>
6678Date:   Tue Apr 7 13:46:57 2009 -0700
6679
6680    Bug 20773: Xcursor dynamic loading on Cygwin
6681    
6682    X.Org Bug #20773 <http://bugs.freedesktop.org/show_bug.cgi?id=20773>
6683    Patch #24096 <http://bugs.freedesktop.org/attachment.cgi?id=24096>
6684    
6685    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6686
6687commit c8c41614911be4fa222fa22478677d263b41c751
6688Author: Alan Coopersmith <alan.coopersmith@sun.com>
6689Date:   Mon Apr 6 16:52:46 2009 -0700
6690
6691    Fix a several sparse warnings: Using plain integer as NULL pointer
6692    
6693    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6694
6695commit b336c3d0cc2aefc8926500cff5f76b5a3e803886
6696Author: Alan Coopersmith <alan.coopersmith@sun.com>
6697Date:   Mon Apr 6 16:32:05 2009 -0700
6698
6699    Further ansify prototypes & reduce #ifdefs in locking.c
6700    
6701    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6702
6703commit 892b401d5acc055803a20e349ede0d64490f2230
6704Author: Alan Coopersmith <alan.coopersmith@sun.com>
6705Date:   Mon Apr 6 10:50:09 2009 -0700
6706
6707    Change masculine to ordmasculine in Compose file comments
6708    
6709    Matches the ordfeminine name used for the matching character,
6710    and the ordmasculine name used in many font descriptions of the glyph.
6711    
6712    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6713
6714commit e3198b55dc16ec57346cc28aa8d34165ce8cde96
6715Author: Julien Cristau <jcristau@debian.org>
6716Date:   Fri Mar 13 13:52:33 2009 +0100
6717
6718    Add a ru_RU.UTF-8 locale
6719    
6720    Based on patch by Eugene Konev <ejka@imfi.kspu.ru> for X.Org 6.9.0.
6721    
6722    Debian bug#330144 <http://bugs.debian.org/330144>
6723    X.Org bug#15887 <http://bugs.freedesktop.org/show_bug.cgi?id=15887>
6724
6725commit d239de9452691d6f875e6e5ace3d499ec3bf14d9
6726Author: Alan Coopersmith <alan.coopersmith@sun.com>
6727Date:   Wed Mar 25 17:59:09 2009 -0700
6728
6729    Delete some unused "#ifdef notdef" static functions
6730    
6731    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6732
6733commit 4281892e31058ef3aecc96a5767824b34d88d415
6734Author: Alan Coopersmith <alan.coopersmith@sun.com>
6735Date:   Wed Mar 25 17:52:48 2009 -0700
6736
6737    Remove _XP_PRINT_SERVER_ #ifdefs from Xrm.c
6738    
6739    This copy of Xrm.c is never compiled into the Xprint server any more, so
6740    this old code-sharing #ifdef from the monolith tree isn't needed.
6741    
6742    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6743
6744commit 27a2e16e8ea11c1604e28645fae4d6ba4371d513
6745Author: Alan Coopersmith <alan.coopersmith@sun.com>
6746Date:   Tue Mar 17 18:38:58 2009 -0700
6747
6748    makekeys: combine malloc(strlen)+strcpy into strdup
6749    
6750    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6751
6752commit 78a894231ae8ec4959007b6d9b8d2a15d6333a1e
6753Author: Alan Coopersmith <alan.coopersmith@sun.com>
6754Date:   Tue Mar 17 15:42:19 2009 -0700
6755
6756    When makekeys fails to find a good hash, print error instead of divide-by-zero
6757    
6758    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6759
6760commit c9f84af591d15fbc3fa890bcd955d94f1ff82a0b
6761Author: Alan Coopersmith <alan.coopersmith@sun.com>
6762Date:   Tue Mar 17 14:59:16 2009 -0700
6763
6764    Remove ifdef checks for macII left over from ancient A/UX 3.0 support
6765    
6766    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6767
6768commit 4b90da0ffb32b791d915ecae11996cc2f2cac9a7
6769Author: Alan Coopersmith <alan.coopersmith@sun.com>
6770Date:   Mon Mar 16 18:37:49 2009 -0700
6771
6772    XErrorDB additions for DRI2 requests
6773    
6774    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6775
6776commit 273f45af1441be9d2135e4cac8c46ceb33470236
6777Author: Alan Coopersmith <alan.coopersmith@sun.com>
6778Date:   Mon Mar 16 18:35:44 2009 -0700
6779
6780    XErrorDB additions for XInput errors and new XInput 1.5 requests
6781    
6782    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6783
6784commit 90ef36f6336068183bf9d13ca972202db35b1202
6785Author: Alan Coopersmith <alan.coopersmith@sun.com>
6786Date:   Mon Mar 16 18:23:05 2009 -0700
6787
6788    XErrorDB additions for RANDR 1.3
6789    
6790    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6791
6792commit 124a4efaccf329f1a44f6b824e70278bdd1cad83
6793Author: Lubos Lunak <l.lunak@suse.cz>
6794Date:   Mon Mar 16 18:03:36 2009 -0700
6795
6796    XErrorDB updates for XTEST, RANDR, DAMAGE extensions
6797    
6798    From http://lists.freedesktop.org/archives/xorg/2008-January/031937.html
6799    
6800    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6801
6802commit 80811846e37b805fddb37c71589fd5f6f6037b3f
6803Author: Lubos Lunak <l.lunak@suse.cz>
6804Date:   Mon Mar 16 17:57:52 2009 -0700
6805
6806    XGetErrorText() fails for extension error codes equal to the error base
6807    
6808    From http://lists.freedesktop.org/archives/xorg/2008-January/031937.html
6809    
6810    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6811
6812commit da95ecbbdcacc483cd0b5fd7db1fb2e2543341bd
6813Author: Milos Komarcevic <miloskomarcevic@netscape.net>
6814Date:   Mon Mar 16 17:43:26 2009 -0700
6815
6816    Bug 11456: Serbian locale updates (sr_RS and sr_ME)
6817    
6818    X.Org Bug #11456 <http://bugs.freedesktop.org/show_bug.cgi?id=11456>
6819    Patch #23937 <http://bugs.freedesktop.org/attachment.cgi?id=23937>
6820    
6821    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6822
6823commit 934a6c0519a9e32505beee55b004f36c2a710217
6824Author: Alan Coopersmith <alan.coopersmith@sun.com>
6825Date:   Mon Mar 16 14:55:22 2009 -0700
6826
6827    Bug 10082: Compose entries for some standard mathematical operators
6828    
6829    X.Org Bug #10082 <http://bugs.freedesktop.org/show_bug.cgi?id=10082>
6830    
6831    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6832
6833commit abf4da1ed0f735ca7ce471dc13a0ec3677391486
6834Author: Alan Coopersmith <alan.coopersmith@sun.com>
6835Date:   Mon Mar 16 14:27:46 2009 -0700
6836
6837    Bug 14651: We need to add new locale specification for Belarusian Latin locale
6838    
6839    X.Org Bug #14651 <http://bugs.freedesktop.org/show_bug.cgi?id=14651>
6840    
6841    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6842
6843commit 837703c8651e1321a50147a8311c56e4758ce08a
6844Author: Caolan McNamara <caolanm@redhat.com>
6845Date:   Mon Mar 16 14:15:50 2009 -0700
6846
6847    Bug 20575: man page for XCreatePixmapFromBitmapData doesn't match signature
6848    
6849    X.Org Bug #20575 <http://bugs.freedesktop.org/show_bug.cgi?id=20575>
6850    Patch #23717 <http://bugs.freedesktop.org/attachment.cgi?id=23717>
6851    
6852    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6853
6854commit 22199018879055d8653e59d8236bef57164fac66
6855Author: Alan Coopersmith <alan.coopersmith@sun.com>
6856Date:   Mon Mar 16 13:28:18 2009 -0700
6857
6858    Correct locale alias for sh_BA.ISO8859-2@bosnia (should be sr, not nr)
6859    
6860    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6861
6862commit 4c63c27eab2b88f5556dbf72c36321f50f6de35e
6863Author: Alan Coopersmith <alan.coopersmith@sun.com>
6864Date:   Thu Mar 12 18:57:20 2009 -0700
6865
6866    Bug 9953: Please provide locale alias hu_HU.utf8
6867    
6868    X.Org Bug #9953 <http://bugs.freedesktop.org/show_bug.cgi?id=9953>
6869    Debian Bug #407573 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=407573>
6870    
6871    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6872
6873commit 501f4e0ada1690783ada05ad412e4b191ad55336
6874Author: Alan Coopersmith <alan.coopersmith@sun.com>
6875Date:   Thu Mar 12 17:38:21 2009 -0700
6876
6877    Bug 6820: Xlib shouldn't handle EAGAIN as a fatal IO error
6878    
6879    X.Org Bug #6820 <http://bugs.freedesktop.org/show_bug.cgi?id=6820>
6880    Patch #17637 <http://bugs.freedesktop.org/attachment.cgi?id=17637>
6881    
6882    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6883
6884commit 7b9c543e7210c7da204871c31a160e79d3a949b6
6885Author: Paul Bender <pebender@gmail.com>
6886Date:   Thu Mar 12 17:11:42 2009 -0700
6887
6888    Bug 15664: xau & xdmcp not needed in x11.pc dependencies when built with xcb
6889    
6890    X.Org bug #15664 <https://bugs.freedesktop.org/show_bug.cgi?id=15664>
6891    Patch #16128 <https://bugs.freedesktop.org/attachment.cgi?id=16128>
6892    
6893    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6894
6895commit fd2cf1ef66c2aff3dc758956c9e9e567b9892c06
6896Author: Xue Wei <Wei.Xue@Sun.COM>
6897Date:   Wed Mar 4 19:32:29 2009 -0800
6898
6899    Add UTF-8 locale entries for es_US, kk_KZ, mt_MT, and sh_BA
6900    
6901    Sun bug 6809309 Add new utf8 locales supported by Xlib
6902    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6809309>
6903    
6904    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6905
6906commit cb70c9bc43267577859a3674ca9de9be396ba69e
6907Author: Alan Coopersmith <alan.coopersmith@sun.com>
6908Date:   Mon Feb 23 19:29:15 2009 -0800
6909
6910    Add --with-locale-lib-dir configure option to set locale lib install dir
6911    
6912    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6913
6914commit ccd3584f0330db8dac90b9313c33ab8b5b2ec6af
6915Author: Alan Coopersmith <alan.coopersmith@sun.com>
6916Date:   Mon Feb 23 18:33:51 2009 -0800
6917
6918    Incorporate more locale names/aliases from Solaris libX11
6919    
6920    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6921
6922commit 83ce4daefdf544f801c7d666c89162690a36ce41
6923Author: Alan Coopersmith <alan.coopersmith@sun.com>
6924Date:   Mon Feb 23 18:32:34 2009 -0800
6925
6926    Incorporate char range comments from Solaris version of ksc5601.h
6927    
6928    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6929
6930commit ee279c84e34f1ebb8a6ff17d54ee146d11e29764
6931Author: Chris Ball <cjb@laptop.org>
6932Date:   Sat Feb 21 14:48:42 2009 -0500
6933
6934    Fix fi_FI locale install directory.
6935    
6936    fi_FI was setting "x11thislocaledir" to en_US, with the result that its
6937    locale data was written in that locale dir.
6938    
6939    Signed-off-by: Chris Ball <cjb@laptop.org>
6940
6941commit da6bbca07c796c69172a649405474f03bee66754
6942Author: Emilio Jesús Gallego Arias <egallego@babel.ls.fi.upm.es>
6943Date:   Sat Feb 21 20:17:23 2009 +0100
6944
6945    xcb_io: Avoid datatype overflow on AMD64 and friends.
6946
6947commit 4ef6491afa69e8441caee7bbebc583e6e796275e
6948Author: Chris Ball <cjb@laptop.org>
6949Date:   Sat Feb 21 12:51:03 2009 -0500
6950
6951    Build fix for fi_FI.
6952    
6953    Commit 642c4e928e770e0.. instructs make to enter nls/fi_FI, but no
6954    Makefile is written there by configure.
6955    
6956    Signed-off-by: Chris Ball <cjb@laptop.org>
6957
6958commit 642c4e928e770e012379539a6ce09e11c02f09a6
6959Author: Julien Cristau <jcristau@debian.org>
6960Date:   Sat Feb 21 03:12:05 2009 +0100
6961
6962    nls: actually use the fi_FI.UTF-8 files
6963    
6964    The subdir wasn't added to nls/Makefile.am
6965
6966commit 9bad8309ef289bb943651abf6967b24fa2252aac
6967Author: Alan Coopersmith <alan.coopersmith@sun.com>
6968Date:   Fri Feb 20 14:45:54 2009 -0800
6969
6970    flags member of Display structure needs to be marked volatile
6971    
6972    Since the Xlib multithreaded code checks the flags variable in _XFlushInt
6973    to see if the other threads are done yet, it has to be marked volatile so
6974    the compiler doesn't optimize out re-loading it on each trip through the
6975    while loop and end up in an impossible-to-exit infinite loop of CPU chewing.
6976    
6977    Part of fix for Sun bug 6409332: infinite loop in XFlushInt() on x86/32-bit
6978    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6409332>
6979    
6980    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6981
6982commit ef5c446395aa30d7b1096a112e241a81c5b358e7
6983Author: Xue Wei <Wei.Xue@Sun.COM>
6984Date:   Fri Feb 20 15:12:35 2009 -0800
6985
6986    Add nn_NO.UTF-8 to compose.dir.pre for Norwegian Nynorsk
6987    
6988    Sun bug 6691236: Swing applications dump core when locale is nn_NO.UTF-8
6989    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6691236>
6990    
6991    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
6992
6993commit 3822f2654e9630167f0c6cae317b472c09771672
6994Author: Xue Wei <Wei.Xue@Sun.COM>
6995Date:   Fri Feb 20 15:03:51 2009 -0800
6996
6997    Add locale aliases for no_NO & sh_BA locale variants
6998    
6999    Fixes Sun bug id 6691219: xterm refuses to start in some locales
7000    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6691219>
7001    
7002    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
7003
7004commit 63b6b5b5f522c0a606b32163c643edb64ca91d54
7005Author: Xue Wei <Wei.Xue@Sun.COM>
7006Date:   Fri Feb 20 14:23:11 2009 -0800
7007
7008    Add kk_KZ.UTF-8 to locale.dir.pre for Kazakhstan
7009    
7010    Fixes Sun bug id 6737254 ("kk_KZ.UTF-8 locale: In Java applications
7011     changing keyboard layout with gimlet does not work")
7012    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6737254>
7013    
7014    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
7015
7016commit d497301707962f3b94542e999a36abffcfbd303d
7017Author: Julien Cristau <jcristau@debian.org>
7018Date:   Tue Feb 17 16:09:41 2009 +0100
7019
7020    Bump to 1.2
7021
7022commit 990e71361d1d7b79bf07b1dc93e4e905d4f1bdaf
7023Author: Julien Cristau <jcristau@debian.org>
7024Date:   Tue Feb 17 15:23:40 2009 +0100
7025
7026    Check Xmalloc return value in _XConnectXCB
7027    
7028    X.Org bug#19137 <http://bugs.freedesktop.org/show_bug.cgi?id=19137>
7029    
7030    Signed-off-by: Julien Cristau <jcristau@debian.org>
7031
7032commit b4b5893f69419ff577bbaa4d18f78e4ffd729a0c
7033Author: James Cloos <cloos@jhcloos.com>
7034Date:   Sat Feb 14 12:35:56 2009 -0500
7035
7036    dolt: allow older versions of bash to compile the library
7037    
7038    Cf xserver commit 7be6520d and bugzilla #19031.
7039
7040commit 20982d6866e24453642b0b592fa0f13a88aa747c
7041Author: Will Thompson <will@willthompson.co.uk>
7042Date:   Thu Feb 5 02:53:06 2009 +1100
7043
7044    NLS: Compose: Non-aliasing CCCP
7045    
7046    Oops, cccp aliased cc for question mark.  Upper-case it to avoid fail.
7047    
7048    Signed-off-by: Will Thompson <will@willthompson.co.uk>
7049    Signed-off-by: Daniel Stone <daniel@fooishbar.org> (sorry)
7050
7051commit f052665394f3f0319e93a98f1d5d4ea287e1dd07
7052Author: Will Thompson <will@willthompson.co.uk>
7053Date:   Wed Feb 4 14:51:11 2009 +0000
7054
7055    Add two essential compose sequences
7056    
7057    Signed-off-by: Will Thompson <will@willthompson.co.uk>
7058    Signed-off-by: Daniel Stone <daniel@fooishbar.org>
7059
7060commit d7bea6fa909bf34c43efe0ca8239ab0f9f3a415f
7061Author: Alan Coopersmith <alan.coopersmith@sun.com>
7062Date:   Mon Feb 2 20:34:31 2009 -0800
7063
7064    Add README with pointers to mailing list, bugzilla & git repos
7065    
7066    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
7067
7068commit f682c27e93512773122887d2cbabb1657af45d2e
7069Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
7070Date:   Mon Feb 2 16:36:39 2009 -0200
7071
7072    Check if a function argument is NULL.
7073    
7074      This was an addition to patch (also by me)
7075    https://bugs.freedesktop.org/attachment.cgi?id=14660
7076    that was not added when rediscovering/correcting the problem.
7077
7078commit 427e9d45d424b84efd9fc499aebf8d72392844c5
7079Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
7080Date:   Thu Feb 28 15:58:12 2008 -0300
7081
7082    Allow multiple inclusions of cursorfont.h, cosmetic patch.
7083
7084commit b91524a53e691f6a5d278fd8972b48a14ebeedeb
7085Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
7086Date:   Thu Feb 28 15:54:43 2008 -0300
7087
7088    Don't add prototypes for functions that don't exist.
7089    
7090    Note that a full review was not done, only for functions that receive
7091    char/short arguments, or one of it's parameters is a function pointer
7092    that requires char/short arguments.
7093
7094commit 537eb52fe266ac439c4b383bb04a70017b709911
7095Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
7096Date:   Thu Feb 28 15:50:27 2008 -0300
7097
7098    WORD64 compile fix. This bug catched on a overview of the code.
7099    
7100    The code is wrong since the first git revision, so it seens that it has
7101    not been compiled with WORD64 for quite some time, there is also another
7102    interesting code in xkb/XKBRdBuf.c:
7103      <hash>ifdef WORD64
7104      _XkbWriteCopyData32 Not Implemented Yet for sizeof(int)==8
7105      <hash>endif
7106    and possibly there are other similar problems.
7107
7108commit ffd0300fb74c6183208ae599133f2ded09e08d97
7109Author: Brian Rogers <brian@xyzw.org>
7110Date:   Sat Jan 31 10:37:51 2009 -0800
7111
7112    Initialize event_notify after allocating the memory for it.
7113    
7114    An uninitialized or otherwise invalid condition variable can apparently
7115    cause a hang in pthread_cond_broadcast. Ekiga, openoffice, and xine
7116    at least are freezing as a result of event_notify never being initialized.
7117    
7118    Signed-off-by: Brian Rogers <brian@xyzw.org>
7119    Signed-off-by: Bart Massey <bart@cs.pdx.edu>
7120
7121commit 97fc6babd4ccaf300e25708868aa2a738893dc30
7122Author: James Cloos <cloos@jhcloos.com>
7123Date:   Thu Jan 29 20:10:41 2009 -0500
7124
7125    NLS: Add UTF-8 compose file for Finnish
7126    
7127    From bug report:
7128    
7129      https://bugs.freedesktop.org/show_bug.cgi?id=18747
7130
7131commit 1bd2966ed88f83479a066c6ca7da23a515979550
7132Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
7133Date:   Thu Jan 29 20:25:15 2009 -0200
7134
7135    patches to avoid gcc warnings for libX11 (#4)
7136    
7137    Author is Peter Breitenlohner <peb@mppmu.mpg.de>
7138    Bug #17946, attachment #19443
7139    
7140    This patch avoids the gcc warning
7141    	../../../../libX11-1.1.5/modules/im/ximcp/imDefLkup.c:223: warning: passing arg 1 of `_XimProcSyncReply' from incompatible pointer type
7142    (same as already done at other places)
7143    
7144    BTW: what is the difference between XIM (the type of ic->core.im)
7145    and Xim ?
7146
7147commit f16dd6af3eb17a25b8ee03d6617a7acc6e919fb0
7148Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
7149Date:   Thu Jan 29 20:22:21 2009 -0200
7150
7151    patches to avoid gcc warnings for libX11 (#3)
7152    
7153    Author is Peter Breitenlohner <peb@mppmu.mpg.de>
7154    Bug #17946, attachment #19441
7155    
7156    This patch avoids the two gcc warnings
7157    	../../../../libX11-1.1.5/modules/im/ximcp/imRm.c:413: warning: assignment discards qualifiers from pointer target type
7158    	../../../../libX11-1.1.5/modules/im/ximcp/imRm.c:450: warning: assignment discards qualifiers from pointer target type
7159    
7160    Note, that this as a rather crude fix of the problem (and it is really a
7161    shame to cast name_table to non-const).
7162    
7163    The right solution would be to declare XIMValuesList.supported_values
7164    (in include/X11/Xlib.h) as 'const char **' (or '_Xconst char **').
7165    This will, however, require extensive modifications in various places.
7166
7167commit cce75c5dce73fe1f8626ed9e6798138ada09a860
7168Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
7169Date:   Thu Jan 29 20:20:18 2009 -0200
7170
7171    patches to avoid gcc warnings for libX11 (#2)
7172    
7173    Author is Peter Breitenlohner <peb@mppmu.mpg.de>
7174    Bug #17946, attachment #19440
7175    
7176    Avoid a preprocessor message
7177    	<stdin>:194: warning: no newline at end of file
7178    
7179    Two more such warnings (in XkbSAGroup.man and XkbSASetGroup.man)
7180    seem to be caused by a truncated (or otherwise incomplete)
7181    manpage.
7182
7183commit 692baebcc50f1e952800bfe4e2e6bc42f54e62fe
7184Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
7185Date:   Thu Jan 29 20:12:24 2009 -0200
7186
7187    patches to avoid gcc warnings for libX11 (#1)
7188    
7189    Author is Peter Breitenlohner <peb@mppmu.mpg.de>
7190    Bug #17946, attachment #19439
7191    
7192    Define as 1 (one) as done by autoconf and the command line
7193    option, e.g. -DX11_t, not as empty.
7194    
7195    This avoids the gcc (3.4.6) warnings:
7196    	../../libX11-1.1.5/src/x11_trans.c:27:1: warning: "X11_t" redefined
7197    	<command line>:7:1: warning: this is the location of the previous definition
7198    	../../libX11-1.1.5/src/x11_trans.c:28:1: warning: "TRANS_CLIENT" redefined
7199    	<command line>:8:1: warning: this is the location of the previous definition
7200    
7201    Similarly, follow the autoconf convention to define XTHREADS
7202    and XUSE_MTSAFE_API as one.
7203    
7204    This avoids analogous warnings when compiling libXcomposite,
7205    libXcursor, and libXdamage.
7206    
7207    No reason to AC_SUBST XTHREADS and XUSE_MTSAFE_API (unused).
7208
7209commit a1977883c9f5ef0e515569d6e2ebccb07411f98c
7210Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
7211Date:   Thu Jan 29 15:01:06 2009 -0200
7212
7213    Janitor: Correct some gcc/sparse warnings.
7214    
7215      Most remaining warnings are about XIM/Xim to/from conversion
7216    and discarding const from pointers.
7217
7218commit 8ba0ca32a63c532f128bdca7f1bf982cab8e12be
7219Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
7220Date:   Wed Jan 28 20:31:42 2009 -0200
7221
7222    Janitor: ansification, make distcheck, compiler warnings.
7223    
7224      Only convert to use "ansi prototypes" the functions warned from
7225    compilation with "./autogen.sh --prefix=/usr", on a Linux computer.
7226    
7227      Also, only address "trivial" compiler warning fixes in this commit.
7228    
7229      The new .gitignore is the output of a command like:
7230    % find . -name .gitignore -exec cat {} \; | sort | uniq
7231    and only the toplevel .gitignore file was kept.
7232
7233commit 091c1624fd2f9d933329d6152e4ecd865aa7903a
7234Author: Peter Hutterer <peter.hutterer@who-t.net>
7235Date:   Tue Jan 13 12:05:54 2009 +1000
7236
7237    Fix wrong implies symbol.
7238    
7239    Quote Simos Xenitellis:
7240    > I checked the gtk+ commit logs that go back to 2000, and I see that still it
7241    > was
7242    >
7243    >   { 0x08ce, 0x21d2 }, /*                     implies ⇒ RIGHTWARDS
7244    > DOUBLE ARROW */
7245    >
7246    > In XFree86, it appears there was an error when they converted the
7247    > original table to
7248    > http://cvsweb.xfree86.org/cvsweb/xc/lib/X11/imKStoUCS.c?rev=1.1&content-type=text/vnd.viewcvs-markup
7249    > and the problem still shows up there (November 2000).
7250    
7251    http://lists.freedesktop.org/archives/xorg/2008-October/039743.html
7252    
7253    Reported by Erik Streb del Toro.
7254
7255commit e32521f19e0b07649b7e3a03d56a2bd556b138fb
7256Author: James Cloos <cloos@jhcloos.com>
7257Date:   Sun Dec 7 04:13:34 2008 -0500
7258
7259    [i18n] s/U00DC/Udiaeresis/g
7260    
7261    The xkeyboard-config keyboards generate the symbol Udiaeresis, not
7262    U00DC.  Make sure the relevant Compose sequences expect the symbol
7263    which the keyboards actually send.
7264
7265commit b7502abfe22f8dc009b21cda1172af221d8f9f32
7266Author: James Cloos <cloos@jhcloos.com>
7267Date:   Sun Dec 7 04:09:46 2008 -0500
7268
7269    Revert "For nls/*.pre, allow people to comment lines by starting them with '##'."
7270    
7271    As of commit c9d20e3 the initial double-hashes are replaced with proper C comments.
7272    
7273    This reverts commit a225a0be48770beb689d5ac5da97073634f7deab.
7274
7275commit c9d20e3f697c9cfae5511412023362c1db7449b1
7276Author: James Cloos <cloos@jhcloos.com>
7277Date:   Sun Dec 7 04:08:23 2008 -0500
7278
7279    Use C comments rather than initial doubled hashes to exclude lines from .pre files
7280
7281commit c34ce54d9eac2d8052dc5f205a2ab09866ef5d25
7282Author: vehemens <vehemens@verizon.net>
7283Date:   Sun Dec 7 01:18:26 2008 -0500
7284
7285    [i18n] Distribute new headers which were added for gb18030 support.
7286    
7287    big5hkscs.h and gbk.h, added in 67e34d7a, need to be in SOURCES to
7288    make it into the tar.
7289    
7290    Completes 67e34d7a82ccd31f1208c0c43a6d58c3c05bf51.
7291    
7292    Signed-off-by: James Cloos <cloos@jhcloos.com>
7293
7294commit 418819558d2c60e58b4e3022ce0fadf2143488ac
7295Author: Stefan Dirsch <sndirsch@suse.de>
7296Date:   Sat Nov 22 22:01:07 2008 +0100
7297
7298    Fixed strange font mixups, when fontsets are still used (#2676, Novell #74299).
7299
7300commit 67e34d7a82ccd31f1208c0c43a6d58c3c05bf51a
7301Author: Stefan Dirsch <sndirsch@suse.de>
7302Date:   Sat Nov 22 19:40:54 2008 +0100
7303
7304    Added remaining xlib patch required for gb18030 support (#1573).
7305
7306commit 55782a0a1fe1560f1a9c0ed78bc7f2575c15abcf
7307Author: Stefan Dirsch <sndirsch@suse.de>
7308Date:   Sat Nov 22 17:53:06 2008 +0100
7309
7310    Added remaining hunk of Egbert's patch to prevent XIM deadlocks (#1182).
7311
7312commit c859446c500c883a67f7a86cab1a44844e24dade
7313Author: Ken Thomases <ken@codeweavers.com>
7314Date:   Fri Nov 21 13:58:10 2008 -0500
7315
7316    [i18n] Provide translation from XK_partialderivative (8ef) to Unicode (U2202)
7317    
7318    Signed-off-by: James Cloos <cloos@jhcloos.com>
7319
7320commit 5e68e94d852c730ef9264fc0d8ca61a2ffe98b53
7321Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
7322Date:   Mon Nov 17 20:47:26 2008 -0800
7323
7324    Force local transport when using the launchd socket.
7325    
7326    Fixes a regression due to
7327    bf53987eaf0fbd7f7627783fc39e7ee99e8361ba
7328
7329commit 7aca689ce14d314b5c8c72c8df76f53f76ab467c
7330Author: Peter Hutterer <peter.hutterer@redhat.com>
7331Date:   Fri Nov 14 10:32:50 2008 +1000
7332
7333    Add XF86Suspend, XF86Hibernate to KeysymDB.
7334
7335commit d16b11f25f8265e651def8d80bcd430c0448e664
7336Author: James Cloos <cloos@jhcloos.com>
7337Date:   Tue Nov 11 19:43:39 2008 -0500
7338
7339    [nls] Annotate the Bépo compose sequences
7340    
7341    Add comments with the UCS names.
7342    Add utf-8 strings for each result.
7343    Format for easy reading.
7344
7345commit 730298464240be6f65b32416b3f9b20062c61825
7346Author: James Cloos <cloos@jhcloos.com>
7347Date:   Tue Nov 11 16:41:34 2008 -0500
7348
7349    [nls]  Add some UTF-8 Compose sequences
7350    
7351    As requested for the Bépo keyboard layout (http://clavier-dvorak.org/wiki/).
7352    
7353    Cf. bugs:
7354    
7355      https://bugs.freedesktop.org/show_bug.cgi?id=17821
7356      https://bugs.freedesktop.org/show_bug.cgi?id=17822
7357
7358commit ad6008a0c92733826983eb93f063d3d6276007d8
7359Author: Colin Harrison <colin.harrison@virgin.net>
7360Date:   Thu Nov 6 17:48:21 2008 -0500
7361
7362    Fix copy/paste typo in imLcPrs
7363    
7364    Signed-off-by: James Cloos <cloos@jhcloos.com>
7365
7366commit 0f0168ad18f8a280fc5a689eb02cfaa62d022ea6
7367Author: Adam Jackson <ajax@redhat.com>
7368Date:   Thu Nov 6 14:54:13 2008 -0500
7369
7370    Fix leak in _XimXGetReadData
7371    
7372    Spotted by Denis Dzyubenko
7373
7374commit ae23c25b9349ab1d7ff81f3075c000cf35fc442b
7375Author: Julien Cristau <jcristau@debian.org>
7376Date:   Wed Nov 5 22:09:37 2008 +0100
7377
7378    Bump to 1.1.99.2
7379
7380commit d31e644c65c52828ea3e7abd94a8cf9aee12265c
7381Author: Julien Cristau <jcristau@debian.org>
7382Date:   Wed Nov 5 21:33:13 2008 +0100
7383
7384    Fix distcheck
7385
7386commit e6a7b70cdb2ae8b713012839a0a0bbb93817b8ef
7387Author: Jamey Sharp <jamey@minilop.net>
7388Date:   Wed Oct 29 14:00:33 2008 -0700
7389
7390    Support multiple independent internal sync handlers
7391    
7392    Xlib has several independent tasks that need to be performed with the
7393    display unlocked. It does this by replacing the existing sync handler with
7394    one of a variety of internal sync handlers. However, if multiple internal
7395    sync handlers need to run, then the last one registering wins and
7396    previously registered internal sync handlers are never invoked. This
7397    manifested as a bug with DRI applications on Xlib/XCB as that requires
7398    both an XID handler after every XID allocation, and the periodic sequence
7399    number handler. The XID handler would win, and the sequence number handler
7400    would never be invoked.
7401    
7402    Fix this by unifying the internal sync handler mechanism into a single
7403    function that calls all of the known internal sync handlers. They all need
7404    to deal with being called when not strictly necessary now.
7405    
7406    Signed-off-by: Keith Packard <keithp@keithp.com>
7407    Signed-off-by: Jamey Sharp <jamey@minilop.net>
7408    Signed-off-by: Josh Triplett <josh@freedesktop.org>
7409
7410commit 2dbaaab9c4e3894b33dcae850551dee5473431d5
7411Author: Keith Packard <keithp@keithp.com>
7412Date:   Sat Oct 11 21:44:21 2008 -0700
7413
7414    Ensure that _XReadEvents always leaves an event in the queue on return
7415    
7416    XNextEvent assumes that the event queue will be non-empty on return from
7417    _XReadEvents, but with multiple event readers running, the previous change
7418    could leave the queue empty on return from process_responses. Re-invoke
7419    process_responses until the queue is non-empty.
7420    
7421    Signed-off-by: Keith Packard <keithp@keithp.com>
7422
7423commit bedfe68259037c5564fe52758c92b9c97729640a
7424Author: Keith Packard <keithp@keithp.com>
7425Date:   Sat Oct 11 21:10:23 2008 -0700
7426
7427    Permit only one Xlib thread to block waiting for events
7428    
7429    As Xlib queues events internally, we must prevent multiple Xlib threads from
7430    entering XCB to wait for an event in case the queued event is to be
7431    delivered to the thread which didn't manage to read it. In other words, let
7432    only one Xlib thread into xcb_wait_for_event at a time.
7433    
7434    Jamey Sharp looked over my shoulder while making this fix and, while hating
7435    my whitespace conventions, appears happy enough with the actual code.
7436    
7437    Signed-off-by: Keith Packard <keithp@keithp.com>
7438
7439commit cc19618d2eb3ed92a0b574aee26a7da8b4aed5d2
7440Author: Jamey Sharp <jamey@minilop.net>
7441Date:   Sun Mar 23 16:33:50 2008 -0700
7442
7443    Fix XAllocID race: hold the user display lock until we have a new XID.
7444    
7445    Xlib built --without-xcb is also vulnerable to this race, and a similar
7446    fix might work there too.
7447    
7448    Also, use an XID that's truly invalid while waiting for the next XID to be
7449    requested.
7450
7451commit 54e5c0941b0ded1628d559a9f0a3451ea96c299b
7452Author: Josh Triplett <josh@freedesktop.org>
7453Date:   Sat Mar 15 17:22:23 2008 -0700
7454
7455    Use XCB's new socket handoff mechanism rather than the old XCB Xlib lock.
7456    
7457    Previously, Xlib/XCB used XCB's Xlib lock to prevent XCB from sending
7458    requests between calls to Xlib's LockDisplay and UnlockDisplay macros.
7459    Xlib/XCB then sent all of its requests using XCB's xcb_send_request, and
7460    had to flush its requests when unlocking the display.
7461    
7462    XCB 1.2 adds a new socket handoff mechanism, xcb_take_socket.  Replace
7463    much of the existing Xlib/XCB implementation with the use of
7464    xcb_take_socket to take ownership of the write side of the X connection
7465    socket, and a return_socket callback which writes any outstanding requests
7466    with xcb_writev.  This approach allows Xlib/XCB to use the same buffering
7467    as traditional Xlib did.  In particular, programs which use Xlib/XCB and
7468    never make XCB calls will never need to hand the socket back to XCB, and
7469    vice versa.
7470    
7471    This allows us to discard large quantities of synchronization code from
7472    Xlib/XCB, together with the synchronization bugs present in that code.
7473    Several test cases which previously failed now work perfectly, including
7474    multi-threaded ico.  In addition, the infamous locking correctness
7475    assertions, triggered when double-locking or when unlocking without a
7476    previous lock, no longer exist, because Xlib/XCB no longer has any reason
7477    to care more about application locking than traditional Xlib does.
7478    
7479    Furthermore, the handoff approach provides great improvements to
7480    performance.  Results from x11perf's XNoOp test, which represented the
7481    worst case for the lock-based Xlib/XCB:
7482    
7483    Traditional Xlib:       average 19100000/sec
7484    Lock-based Xlib/XCB:    average  3350000/sec
7485    Handoff-based Xlib/XCB: average 17400000/sec
7486    
7487    Thus, for no-ops, the handoff mechanism provides more than a 4x speedup to
7488    Xlib/XCB, bringing Xlib/XCB within 9% of traditional Xlib no-op
7489    performance.  Of course, real-world workloads do not use no-op, so your
7490    mileage may vary.  In particular, since no-ops represent the worst case,
7491    we expect real workloads to more closely match the performance of
7492    traditional Xlib.
7493    
7494    While removing synchronization code, we changed _XReply to not drop any
7495    locks when calling xcb_wait_for_reply; previously, we had to carefully
7496    avoid a deadlock between the Display lock and the XCB Xlib lock. Holding
7497    the locks reduces implementation complexity and should not impact
7498    applications.
7499    
7500    Commit by Jamey Sharp and Josh Triplett.
7501    XCB's handoff mechanism inspired by Keith Packard.
7502
7503commit 5a19ac473f7a8046b0421fbd5d53da160c22ed75
7504Author: Chris Ball <cjb@laptop.org>
7505Date:   Mon Nov 3 22:57:29 2008 -0500
7506
7507    Remove configure check for xcb-xlib.
7508    
7509    xcb-xlib has been intentionally removed from libxcb; stop checking for
7510    it at configure-time.
7511
7512commit 34b35dda0bb7f3cf0ad9ab95ad7953d35d24f71b
7513Author: Josh Triplett <josh@freedesktop.org>
7514Date:   Wed Oct 29 14:37:44 2008 -0700
7515
7516    .gitignore: Add dolt files
7517
7518commit 1290cccf2d90083eba852f5f413f7e3dff48ccd2
7519Author: Peter Hutterer <peter.hutterer@redhat.com>
7520Date:   Tue Oct 28 11:56:55 2008 +1030
7521
7522    man: fix formatting error in XkbGetIndicatorState man page.
7523
7524commit b1022fa6d7e97640049e93ffa108083fc8d71b05
7525Author: James Cloos <cloos@jhcloos.com>
7526Date:   Sat Oct 25 09:13:08 2008 -0400
7527
7528    Increase size of working arrays in the makekeys utility program.
7529    
7530    Makekeys is used to create an optimal hash of the keysyms defined
7531    in x11proto’s keysymdef.h.
7532    
7533    The recent addition of new keysyms there has triggered a bug in
7534    makekeys where it tries to use a zero on the rhs of the % (mod)
7535    operator (resulting in a divide by zero error) whenever it fails
7536    to find a solution within its constraints.
7537    
7538    Increasing the size of the arrays allows it to find a solution for
7539    the current set of keysyms.
7540    
7541    Makekeys is only run durring the build process, so this has no impact
7542    on users of libX11, only on the amount of VM needed to build it.
7543    
7544    It still needs a more complete fix, but this allows compiles to
7545    progress until that is completed.
7546
7547commit 3e9afd501e40d76040635bd9a3045bcaf5a03b60
7548Author: James Cloos <cloos@jhcloos.com>
7549Date:   Sat Oct 11 01:03:14 2008 -0400
7550
7551    Dolt-ify
7552    
7553    Add dolt to acinclude.m4 and call it it configure.ac to speed compiles.
7554
7555commit 39c0b266cac8cbc15bf501d7869186862f01d823
7556Author: Peter Hutterer <peter.hutterer@redhat.com>
7557Date:   Wed Oct 15 14:30:20 2008 +1030
7558
7559    Add more keysyms for PS3 BD remotes, Ericsson Phones #16519
7560    
7561    X.Org Bug 16519 <https://bugs.freedesktop.org/show_bug.cgi?id=16519>
7562
7563commit d23aad31338e7d869d878d5aa1b6b91d20287005
7564Author: Peter Hutterer <peter.hutterer@redhat.com>
7565Date:   Mon Oct 13 09:41:59 2008 +1030
7566
7567    Add XF86Battery, XF86Bluetooth, XF86WLAN, XF86UWB to keysymdb.
7568
7569commit 214ea6f5fd6aeaa7303ea4a69f9aedabf219ec4c
7570Author: Peter Hutterer <peter.hutterer@who-t.net>
7571Date:   Thu Jul 24 15:44:26 2008 +0930
7572
7573    xkb: fix out-by-1 error in _XkbWriteKeyExplicit.
7574    
7575    Thanks to Michael Meeks, Novell Bug 369263.
7576    https://bugzilla.novell.com/show_bug.cgi?id=369263
7577
7578commit e7ece39afc8e0adc3b6b1e70b337b98376754462
7579Author: Alan Coopersmith <alan.coopersmith@sun.com>
7580Date:   Tue Oct 7 15:41:38 2008 -0700
7581
7582    Sun bug #6739431: double free in _X11TransConnectDisplay()
7583    
7584    Double free() introduced in bf53987eaf0fbd7f7627783fc39e7ee99e8361ba
7585    After copying original_hostname to phostname, set original_hostname
7586    to NULL, so we don't free the same pointer twice when we free both
7587    original_hostname and phostname.
7588    
7589    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6739431>
7590
7591commit 0877bc916afbd1ff8f1833edc930b765ea783576
7592Author: Daniel Stone <daniel@fooishbar.org>
7593Date:   Tue Sep 23 19:02:02 2008 +0300
7594
7595    configure.ac: Fix CC_FOR_BUILD logic error
7596    
7597    Turns out we were accidentally smashing it so that you couldn't set it
7598    externally at all.  Oops.
7599
7600commit 58bf3aa746908f01c37be7045699e43a4e270944
7601Author: John Tapsell <johnflux@gmail.com>
7602Date:   Tue Sep 23 17:30:13 2008 +0300
7603
7604    Build: Use native compiler for makekeys
7605    
7606    makekeys needs to be run during the build process, as opposed to on the
7607    target, so build it with either of gcc or cc to fix cross-compiling.
7608    This can be overridden by setting $CC_FOR_BUILD.
7609
7610commit 340422a5c7a413faef18666cada27cee14615250
7611Author: Adam Jackson <ajax@redhat.com>
7612Date:   Wed Sep 17 12:54:34 2008 -0400
7613
7614    Fix the previous patch for the BadFont case.
7615
7616commit 2335eafe4b53c27f6f9ee1bab3e1f5842f896428
7617Author: Matthias Clasen <mclasen@redhat.com>
7618Date:   Wed Sep 17 10:43:52 2008 -0400
7619
7620    Bug #17616: Fix an XCB leak when the client has a non-fatal error handler.
7621
7622commit db0b85db29699be6bf7e78dede655d59ba926dfc
7623Author: Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
7624Date:   Sun Sep 14 19:15:26 2008 -0400
7625
7626    Fix problem with <dead_acute> <c> in pt_BR.UTF-8
7627    
7628    The <dead_acute> <C> and <dead_acute> <c> lines in the pt_BR UTF-8
7629    Compose file show "Ç" and "ç" (c with cedilla accent) (akin to the
7630    ISO 8859 pt_BR Compose file) as the string but specify the keysym
7631    and comment for Ć and ć (c with acute accent).
7632    
7633    This commit normalizes those two lines to match the specified string.
7634    
7635    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=4671
7636    
7637    Signed-off-by: James Cloos <cloos@jhcloos.com>
7638
7639commit b065c011baa69b69e3ea77c30d5e153c0d103e2d
7640Author: Michael Verret <michael.verret@gmail.com>
7641Date:   Mon Sep 8 16:33:35 2008 -0400
7642
7643    Fix documentation typo
7644    
7645    Signed-off-by: James Cloos <cloos@jhcloos.com>
7646
7647commit 4213ea95185377bdd1b51e82933f331fc0f52e5b
7648Author: James Cloos <cloos@jhcloos.com>
7649Date:   Sat Sep 6 04:19:19 2008 -0400
7650
7651    Remove extraneous <angle brackets> from the Ethiopic Compose file.
7652    
7653    The am_ET.UTF-8 Compose file submitted in:
7654    
7655    https://bugs.freedesktop.org/show_bug.cgi?id=11307
7656    
7657    for the OLCP project used incorrect syntax.  (It has angle brackets around the
7658    Uxxxx symbols on the right hand side rather than only on the left hand side).
7659    
7660    This bug is noted in OLPC’s ticket:
7661    
7662    http://dev.laptop.org/ticket/7474
7663    http://dev.laptop.org/attachment/ticket/7474/olpc_7474_dead_vowels_libX11.patch
7664
7665commit 9df84b513dd2b6e65e6d528cfac6d4cc3ea46918
7666Author: James Cloos <cloos@jhcloos.com>
7667Date:   Mon Sep 1 17:49:33 2008 -0400
7668
7669    Complete the set of vulgar fractions
7670    
7671    Unicode 1.1 added thirds, fifths, sixths and eights;
7672    we might as well catch up.
7673    
7674    (Unicode and ISO 10646 have 1/7 (U2150), 1/9 (U2151), 1/10 (U2152)
7675    and 0/3 (U2189) in their pipelines, but those four can be added
7676    here after they are published.)
7677
7678commit a788792e9de95f8db0639557859722a35087481d
7679Author: James Cloos <cloos@jhcloos.com>
7680Date:   Wed Aug 20 15:28:07 2008 -0400
7681
7682    nls (en_US) Re-remove long compositions that override shorter
7683    
7684    As reported in <https://bugs.freedesktop.org/show_bug.cgi?id=17228>:
7685    
7686      Commit a6f4bbf7
7687        nls (en_US): remove long compositions that override shorter [...]
7688        removed some longer compose sequences because there are shorter
7689        ones which take preference over the longer. For example the
7690        sequences:
7691    
7692          <Multi_key> <apostrophe> <comma> <c>   : U1E09 # ḉ
7693          <Multi_key> <apostrophe> <comma> <C>   : U1E08 # Ḉ
7694    
7695        were removed becase there already was:
7696    
7697          <Multi_key> <apostrophe> <comma>       : U201A # ‚
7698    
7699      Then commit 4ba09125
7700        Work on making the en_US and pt_BR UTF-8 Compose as similar as
7701        possible added exactly the same key sequences again. Obviusly
7702        they won't work.
7703
7704commit 55248e5c84c3fd8c349a3bb4cb15a1ec86989d74
7705Author: James Cloos <cloos@jhcloos.com>
7706Date:   Thu Jul 17 21:01:42 2008 -0400
7707
7708    Add more <Multi_key> <cedilla> Compose tuples
7709    
7710    The last commit missed the el_GR UTF-8 Compose.pre as well as
7711    the various ISO 8859 locales which have compose sequences
7712    generating ‘WITH CEDILLA’ characters.
7713    
7714    (Interestingly, some of the 8859 locales already supported
7715    <Multi_key> <cedilla> for some CEDILLA characters, but not
7716    for Ç or ç.)
7717    
7718    This is further work on bug 10397.
7719
7720commit 4ba091255bb953d53078ba5619d6751052c739f7
7721Author: James Cloos <cloos@jhcloos.com>
7722Date:   Thu Jul 17 17:16:50 2008 -0400
7723
7724    Work on making the en_US and pt_BR UTF-8 Compose as similar as possible.
7725    
7726    The eventual goal here is to have a single primary UTF-8 Compose
7727    file which the locale-specific UTF-8 Compose.pre files can #include.
7728
7729commit 254522d3c24e0590732fc03cdd61ff4564819d94
7730Author: James Cloos <cloos@jhcloos.com>
7731Date:   Thu Jul 17 17:13:36 2008 -0400
7732
7733    Add <Multi_key> <cedilla> Compose tuples
7734    
7735    The en_US and pt_BR UTF-8 Compose tables had support for using <comma>
7736    with <Multi_key> to enter CEDILLA characters.  Bug 10397 requests
7737    support for using <cedilla> instead of <comma> in said sequences.
7738    
7739    This commit makes both styles work.
7740
7741commit 7dc907f6032e1d5cbe4da0e414bdf2c569c04b44
7742Author: James Cloos <cloos@jhcloos.com>
7743Date:   Sat Jun 28 15:25:23 2008 -0400
7744
7745    Fix commit 21e464ec682ab23ba20ddf6bd72c6db214cfbe01
7746    
7747    The new block was added twice to the en_US.UTF-8 Compose.pre;
7748    delete the duplicate.
7749
7750commit 596e081b7457dcd1c4ad555ac140e6999239bc0d
7751Author: Peter Hutterer <peter@cs.unisa.edu.au>
7752Date:   Sat Jun 28 20:14:05 2008 +0930
7753
7754    Fix unbalanced parenthesis in XKBlib.h # 16551
7755    
7756    X.Org Bug 16551 <http://bugs.freedesktop.org/show_bug.cgi?id=16551>
7757
7758commit f6af6dd2f76c12b56ec166bb771457b9f08fe246
7759Author: Adam Jackson <ajax@redhat.com>
7760Date:   Tue Jun 24 13:16:53 2008 -0400
7761
7762    Bug #14898: Don't abuse the sprintf() implementation.
7763    
7764    The thing you're printing into should not itself appear in the list of
7765    things to print from, that's bad juju.  Just use strcat().
7766
7767commit 21e464ec682ab23ba20ddf6bd72c6db214cfbe01
7768Author: Khaled Hosny <khaledhosny@eglug.org>
7769Date:   Thu Jun 19 18:26:11 2008 -0400
7770
7771    NLS: Add Arabic Lam-Alef ligature compose sequences (bug #16426)
7772    
7773    Add some Arabic digraphs to utf-8 locales with a Compose.pre
7774    
7775    Signed-off-by: James Cloos <cloos@jhcloos.com>
7776
7777commit bf53987eaf0fbd7f7627783fc39e7ee99e8361ba
7778Author: Alan Coopersmith <alan.coopersmith@sun.com>
7779Date:   Wed Jun 18 20:00:25 2008 -0700
7780
7781    Rework code to choose local connection types and fallback to others
7782    
7783    Adds --with-local-transport-order configure flag if you don't like the
7784    default ordering (which is platform dependent)
7785    
7786    Includes fixes for these Sun/Solaris bug ids:
7787    6678250 X Commands returning incorrect display value unix:0.0 not <system>:0.0
7788    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6678250>
7789    6716481 libX11 should prefer Unix domain sockets over named pipes on Solaris
7790    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6716481>
7791
7792commit cf49e537014c3cb5aaee07e57400933e0bb72b6b
7793Author: Alan Coopersmith <alan.coopersmith@sun.com>
7794Date:   Tue Jun 17 14:41:17 2008 -0700
7795
7796    Strip whitespace from end of lines in source files
7797
7798commit f76fd81dfbbd5cfae75c87ce0511e88e08529cf3
7799Author: Jeff Smith <whydoubt@yahoo.com>
7800Date:   Sun Jun 15 23:52:20 2008 -0500
7801
7802    Fix memory leak in XOpenDisplay
7803    
7804    Signed-off-by: Peter Hutterer <peter@cs.unisa.edu.au>
7805
7806commit fca0b0ba3f72b7284601d4690bba99fc80a92614
7807Author: Jens Herden <jens@khmeros.info>
7808Date:   Tue Jun 10 20:07:30 2008 +0300
7809
7810    NLS: Add Khmer compose sequences (bug #5706)
7811    
7812    Add some Khmer digraphs to all locales with a Compose.pre.
7813
7814commit e54cffb649b1622c17457e470cfab8cc56d38c97
7815Merge: 19802cc 721b574
7816Author: Daniel Stone <daniel@fooishbar.org>
7817Date:   Tue Jun 10 20:04:30 2008 +0300
7818
7819    Merge branch 'master' of ssh://git.freedesktop.org/git/xorg/lib/libX11
7820
7821commit 721b574d36f1884c3f1bf7bd933646e2ed6680b5
7822Author: Peter Hutterer <peter@cs.unisa.edu.au>
7823Date:   Thu May 29 10:57:21 2008 +0930
7824
7825    Bump to 1.1.99.1
7826
7827commit 631d32d13247d1cf52c0833d438c5b38b01b17a4
7828Author: Peter Hutterer <peter@cs.unisa.edu.au>
7829Date:   Wed May 28 17:31:59 2008 +0930
7830
7831    Require xproto 7.0.13 and libxcb 1.1.90 (for GenericEvents)
7832
7833commit e9195db7257e418f83707233baeeb84b225caf4f
7834Merge: c34f76f a7f8556
7835Author: Peter Hutterer <peter@cs.unisa.edu.au>
7836Date:   Thu May 22 12:14:28 2008 +0930
7837
7838    Merge branch 'master' into xge
7839
7840commit 19802ccd3909145e3ba2f6c073271cb5f3701685
7841Author: Daniel Stone <daniel@fooishbar.org>
7842Date:   Mon May 19 19:22:31 2008 +0300
7843
7844    gitignore: Update with loads more bits from server
7845
7846commit a7f85567a3e850fba0c44571453d2852ab1a09be
7847Author: Adam Jackson <ajax@redhat.com>
7848Date:   Tue May 13 10:28:39 2008 -0400
7849
7850    Bug #15884: Remove useless sleep()'s from the connection code.
7851    
7852    For network transports, there's enough delay in the network layer
7853    already without adding more.  For local transports, just hurry up
7854    and fail if the server isn't there.
7855
7856commit c34f76f475bc632490122e67b5a82575d69d5569
7857Author: Peter Hutterer <peter@cs.unisa.edu.au>
7858Date:   Mon May 12 21:46:24 2008 +0930
7859
7860    Pull down extra bytes when reading a GenericEvent (non-xcb).
7861    
7862    I refuse to take any responsibily for this code. It works, I guess.
7863    But - all the flushing is done somewhere before that, so we might need to
7864    flush here. Under some circumstances anyway. Don't ask me, I'm an optical
7865    illusion.
7866    
7867    Build with xcb as transport layer highly recommended.
7868
7869commit c9b2ff1e6a607463993afa4a8d085857d97cc2f3
7870Merge: 17d7dcb 9129057
7871Author: Peter Hutterer <peter@cs.unisa.edu.au>
7872Date:   Mon May 12 17:58:37 2008 +0930
7873
7874    Merge branch 'master' into xge
7875
7876commit 9129057bdbff0ec9cd8bb780cf7f85f134a291eb
7877Author: Teemu Likonen <tlikonen@iki.fi>
7878Date:   Wed May 7 21:44:22 2008 +0300
7879
7880    Change <dead_belowdot> to <dead_belowring> for U+1E00 and U+U1E01
7881    
7882    Commit 6b6caeea830a977bdb54688cfb648d879821e752 added <dead_belowdot>
7883    <A> and <dead_belowdot> <a> compose sequences for letters U+1E00 and
7884    U+U1E01 (LATIN CAPITAL/SMALL LETTER A WITH RING BELOW). This caused
7885    duplicate compose sequences since these have already been defined. Also,
7886    using <dead_belowring> is more logical since the diacritic is indeed
7887    a "RING BELOW".
7888
7889commit 01a9cb58888d290cc3d319feec4ee4a0297a844c
7890Author: Daniel Stone <daniel@fooishbar.org>
7891Date:   Wed May 7 20:04:44 2008 +0300
7892
7893    NLS: Make UTF-8 the default for Russian
7894    
7895    No-one uses 8859-5 anymore, so make the default for Russian UTF-8; the
7896    only other possible answer would be KOI8-R.
7897    
7898    Signed-off-by: Sergey V. Udaltsov <sergey.udaltsov@gmail.com>
7899
7900commit 407b81bfbbabf6feb565d6da22f9ef9a69016ab8
7901Author: Ross Burton <ross@burtonini.com>
7902Date:   Tue Apr 29 13:38:10 2008 +0300
7903
7904    NLS: Add interrobang to UTF-8 compose tables (bug #15653)
7905    
7906    It is what it says on the box.
7907
7908commit 0b6682303e9c61fefc3818acfda616b1e3691abf
7909Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
7910Date:   Mon Apr 28 11:51:25 2008 +0300
7911
7912    IM: Respect XMODIFIERS for Thai locale (bug #15719)
7913    
7914    When looking at Thai input methods, make sure XMODIFIERS is checked
7915    before jumping straight into built-in Thai processing, so external XIM
7916    servers such as SCIM can be used with Thai.
7917
7918commit c13aded1b2f830ba5004abb0ec5518f9ea16087e
7919Author: Colin Harrison <colin.harrison-at-virgin.net>
7920Date:   Sat Apr 26 18:56:05 2008 +0100
7921
7922    Fix missing error condition
7923
7924commit f5c5ffc175cb383c92ea0fa8c08cfb087c5f3083
7925Author: Colin Harrison <colin.harrison-at-virgin.net>
7926Date:   Mon Apr 21 17:24:33 2008 +0100
7927
7928    Xlib warning fixes
7929
7930commit 6b6caeea830a977bdb54688cfb648d879821e752
7931Author: James Cloos <cloos@jhcloos.com>
7932Date:   Fri Apr 18 02:50:55 2008 -0400
7933
7934    Add some dead_key sequences to en_US.UTF-8 Compose table
7935    
7936    Make use of the new dead key symbols added to x11proto’s
7937    commit 44e24a27bca023cf7b799f191fe6d52e12efbe5f (which
7938    was in responce to bug #15446).
7939
7940commit 8f9b039580deaf658e464b7d6254064fcf183df6
7941Author: Alan Coopersmith <alan.coopersmith@sun.com>
7942Date:   Mon Apr 14 19:09:42 2008 -0700
7943
7944    Update ac_define_dir macro in acinclude.m4 to 2008-04-12 version
7945
7946commit 9f5e96eb91ab55dd441c3e94b75caf48c588778f
7947Author: Alan Coopersmith <alan.coopersmith@sun.com>
7948Date:   Mon Apr 14 18:21:14 2008 -0700
7949
7950    Fix mismatched brace indenting
7951
7952commit a19f9c65ee9e5e5d783feaa84998c36439b0288b
7953Author: Bart Massey <bart@cs.pdx.edu>
7954Date:   Fri Apr 4 18:58:45 2008 -0700
7955
7956    added error check in Xcms color file parser; closes bug #15305
7957
7958commit 12e8d0d01dd72ce98e7683ddb1bde181b7ed246f
7959Author: Christian Weisgerber <naddy@mips.inka.de>
7960Date:   Tue Mar 18 07:30:05 2008 +0100
7961
7962    ConnDis: properly cast 'addr' before accessing it as a byte array.
7963    
7964    If you use XDM-AUTHORIZATION-1 authorization keys for remote X11
7965    clients over IPv6, the clients are liable to segfaults.
7966
7967commit 64325f38bab082a8e0e9ce779a8e582de5c8588e
7968Author: Josh Triplett <josh@freedesktop.org>
7969Date:   Sat Mar 15 12:29:33 2008 -0700
7970
7971    Fix fd.o bug 15023: make Xlib sync correctly given many void requests
7972    
7973    If given many requests without replies, Xlib may not sync until it flushes
7974    the output buffer.  Thus, if Xlib can fit enough requests in the buffer to
7975    pass by the number of requests it would normally sync after (65536 -
7976    BUFSIZE/sizeof(xReq)), it will sync too late.  The test case in bug 15023
7977    demonstrated this by issuing a request with a reply (ListExtensions) at
7978    just the right time to get confused with the GetInputFocus reply issued in
7979    response to the sync 65,536 requests later; the test case used an async
7980    handler to watch the replies, since otherwise it could not issue a request
7981    without waiting for the response.  When the test case failed, Xlib's sync
7982    handler would eat the ListExtensions reply, and the test case's async
7983    handler would see the GetInputFocus reply.
7984    
7985    Fix this by replacing SEQLIMIT with a function sync_hazard() that uses the
7986    buffer size to figure out when the sequence numbers could potentially wrap
7987    before the next flush.
7988    
7989    With this commit, the test case consistently passed, and the async reply
7990    handler always saw the ListExtensions reply.
7991    
7992    Commit by Jamey Sharp and Josh Triplett.
7993
7994commit a5395563bbee15fabe1e8fd7aa86f9f314d8d30e
7995Author: Colin Harrison <colin.harrison@virgin.net>
7996Date:   Sat Mar 15 13:39:13 2008 -0400
7997
7998    Fix typo
7999    
8000    Signed-off-by: James Cloos <cloos@jhcloos.com>
8001
8002commit f07585ca27a8487bc66dfe41486c823f0fdcea7d
8003Author: Daniel Stone <daniel@fooishbar.org>
8004Date:   Sat Mar 15 17:32:57 2008 +0200
8005
8006    configure.ac: Don't search for legacy X11 headers
8007    
8008    This can actually break cross-compiles, so don't do it anymore.
8009
8010commit bf69541238c7df6606340c0f389e5c47149b29c7
8011Author: Matthieu Herrb <matthieu.herrb@laas.fr>
8012Date:   Sun Mar 9 09:08:07 2008 +0100
8013
8014    nuke RCS Ids
8015
8016commit 5e98aed13e529638df744e45893c471d5f2014fb
8017Author: Adam Jackson <ajax@redhat.com>
8018Date:   Thu Mar 6 16:10:33 2008 -0500
8019
8020    libX11 1.1.4
8021
8022commit 8e085971dc661da9f80ff6b67747459c0fb15c08
8023Author: Alan Coopersmith <alan.coopersmith@sun.com>
8024Date:   Thu Feb 28 20:17:41 2008 -0800
8025
8026    Man page typo fixes
8027
8028commit 1a1a42a3ca1dfaf42f1094936b71c140fc030fcb
8029Author: Søren Sandmann Pedersen <sandmann@redhat.com>
8030Date:   Sun Feb 24 20:03:35 2008 -0500
8031
8032    XIM: Fix a hand when switching input context.
8033    
8034    Red Hat bug #201284.
8035
8036commit e02e4ccafcaf3eb8993152dfcbfbee0240ea2db2
8037Author: Adam Jackson <ajax@redhat.com>
8038Date:   Sun Feb 24 20:00:43 2008 -0500
8039
8040    Bug #14029: Don't LockDisplay() recursively.
8041    
8042    See also Red Hat bugzilla #326461.
8043
8044commit e5892467ae3308c8651be76e06db322dcbc08522
8045Author: Alan Coopersmith <alan.coopersmith@sun.com>
8046Date:   Fri Feb 15 17:27:53 2008 -0800
8047
8048    Add support for building lint library with --enable-lint-library
8049
8050commit e3eb83ec6a9bffa63cdffd94f077c12f85ad7240
8051Author: Alan Coopersmith <alan.coopersmith@sun.com>
8052Date:   Mon Feb 11 20:11:43 2008 -0800
8053
8054    Spell out number in XkbGetKeyVirtualModMap man page to avoid cpp errors from #
8055
8056commit d5ceed7a73a6b61758ddb6ff4e194955fbd5c185
8057Author: Alan Coopersmith <alan.coopersmith@sun.com>
8058Date:   Fri Feb 8 16:46:46 2008 -0800
8059
8060    Add WM_LOCALE_NAME to list of properties set in XSetWMProperties comment
8061
8062commit 416a812200f24d19149dcc497e5c51a0608120f6
8063Author: Alan Coopersmith <alan.coopersmith@sun.com>
8064Date:   Fri Feb 8 15:31:31 2008 -0800
8065
8066    XErrorDB updates for Render 0.9 & XFixes 4.0
8067
8068commit 16a76091cd632e5a3708e235ff864b58f3e4613e
8069Author: Kim Woelders <kim@woelders.dk>
8070Date:   Sat Dec 22 21:45:23 2007 +0100
8071
8072    Fix bs_BA entries in locale.dir.pre
8073    
8074    X.Org bug#13786 <http://bugs.freedesktop.org/show_bug.cgi?id=13786>
8075
8076commit 32115c563b87d2f37e3f9de70fbd0f4d9e424aea
8077Merge: 8f0bd3f e8d4cef
8078Author: James Cloos <cloos@jhcloos.com>
8079Date:   Fri Dec 14 22:43:47 2007 -0500
8080
8081    Merge branch 'master' of ssh://git.freedesktop.org/git/xorg/lib/libX11
8082
8083commit 8f0bd3f445cbdcc67650f6e8e3baf2ed89cb3695
8084Author: James Cloos <cloos@jhcloos.com>
8085Date:   Fri Dec 14 22:42:59 2007 -0500
8086
8087    add a comment to en_US.UTF-8/Compose
8088
8089commit 4d6c45e60ed13d3b0fea10413873d6a74f9d6a3b
8090Author: James Cloos <cloos@jhcloos.com>
8091Date:   Fri Dec 14 22:40:13 2007 -0500
8092
8093    Add <dead_stroke> compose sequences
8094    
8095    The added sequences match the existing <Multi_key> <slash> sequences.
8096    
8097    This is related to bug #12765¹.
8098    
8099    1] https://bugs.freedesktop.org/show_bug.cgi?id=12765
8100
8101commit e8d4cefa0837afa149a10e981528b368485a9e38
8102Author: Jeremy Huddleston <jeremy@yuffie.local>
8103Date:   Mon Dec 10 23:00:44 2007 -0800
8104
8105    Added launchd support.
8106
8107commit 17d7dcbfced4a9417b33507bd3fd9b7dd8268242
8108Merge: 5dfefd3 13ac804
8109Author: Peter Hutterer <peter@cs.unisa.edu.au>
8110Date:   Thu Dec 6 14:08:29 2007 +1030
8111
8112    Merge branch 'master' into xge
8113
8114commit 5dfefd3829d3ba7e41d5db0ad28e9dfee92fadd5
8115Merge: a68a1cd eff33ae
8116Author: Peter Hutterer <peter@cs.unisa.edu.au>
8117Date:   Thu Dec 6 13:57:09 2007 +1030
8118
8119    Merge branch 'master' into xge
8120    
8121    Conflicts:
8122    
8123    	src/xcb_io.c
8124
8125commit 13ac80469f6958cabac596834e203bd9cb6d4c94
8126Author: James Cloos <cloos@jhcloos.com>
8127Date:   Wed Dec 5 20:14:03 2007 -0500
8128
8129    Update the currency symbols block of en_US.UTF-8/Compose.pre
8130    Add XCOMM lines a la the existing NEW SHEQEL SIGN entry for
8131    the KIP, TUGRIK, DRACHMA. GERMAN PENNY, PESO, GUARANI,
8132    AUSTRAL, HRYVNIA and CEDI SIGNs.
8133
8134commit b0a8f2ec4ba698841683f8ce389f9d72e6bce53e
8135Author: Anton Zinoviev <anton@lml.bas.bg>
8136Date:   Wed Dec 5 19:56:03 2007 -0500
8137
8138    Additions to the Compose file for UTF-8
8139    From bug #5371¹
8140    
8141    Commit 5cf5bc76642bfece7cb5b76faf414bf445f14489 left out this change
8142    from those in attachment #4122².  The post³ on xorg resulted in only
8143    a positive reply⁴ from Daniel, so this block is now also commited.
8144    
8145    1] https://bugs.freedesktop.org/show_bug.cgi?id=5371
8146    2] https://bugs.freedesktop.org/attachment.cgi?id=4122
8147    3] http://article.gmane.org/gmane.comp.freedesktop.xorg/20628
8148    4] http://article.gmane.org/gmane.comp.freedesktop.xorg/23966
8149    
8150    Signed-off-by: James Cloos <cloos@jhcloos.com>
8151    Acked-by:  Daniel Stone <daniel@fooishbar.org>
8152
8153commit 438d02ebc08ee171cf1d3936f4c81050d428ab92
8154Author: James Cloos <cloos@jhcloos.com>
8155Date:   Tue Dec 4 17:25:39 2007 -0500
8156
8157    Fix the <U\x+> keysyms in the en_US.UTF-8 Compose file
8158    
8159    Based on src/KeysymStr.c and src/StrKeysym.c and comments in
8160    bugs #11930¹ and #5129² it is clear that <U100XXXXX> is invalid;
8161    those should be in the form U plus the hex of the UCS Code Point.
8162    
8163    The 0x01000000 is ORed in by the code.
8164    
8165    This update fixes all of those.
8166    
8167    1] https://bugs.freedesktop.org/show_bug.cgi?id=11930
8168    2] https://bugs.freedesktop.org/show_bug.cgi?id=5129
8169
8170commit 02e04059c89e175f51647e3b031344f743286b34
8171Merge: 1254c57 b57129e
8172Author: James Cloos <cloos@jhcloos.com>
8173Date:   Tue Dec 4 06:55:04 2007 -0500
8174
8175    Merge branch 'master' of ssh://git.freedesktop.org/git/xorg/lib/libX11
8176
8177commit 1254c57dd3a8d6ea87041b2f63024f99094f290f
8178Author: James Cloos <cloos@jhcloos.com>
8179Date:   Tue Dec 4 06:53:55 2007 -0500
8180
8181    Use the new dead_psili and dead_dasia keysyms added to proto/x11proto 7.0.11
8182    Inspired by bug 11930¹:
8183    
8184    Commit 40ed4eef92e31fcf7ea0a436e1a00cdf49484c1b to x11proto added dead_psili
8185    and dead_dasia keysyms.  Make use of them in the en_US.UTF-8 and el_GR.UTF-8
8186    Compose files.
8187    
8188    This was done with a pair of perl scripts based on the one quoted in the
8189    log for commit c76d30253f1483ac8200ad5c032a818907e65030.
8190    
8191    1] https://bugs.freedesktop.org/show_bug.cgi?id=11930
8192
8193commit b57129ef324c73ee91c2a796b800c4b45f4d4855
8194Author: Jeremy Huddleston <jeremy@yuffie.local>
8195Date:   Mon Dec 3 20:04:19 2007 -0800
8196
8197    Use __APPLE__ instead of __DARWIN__
8198
8199commit b9c032e1d5ed08510863dfb91b8bda588e6c8c9e
8200Author: Jeremy Huddleston <jeremy@yuffie.local>
8201Date:   Wed Nov 28 16:43:49 2007 -0800
8202
8203    Define __DARWIN__ when host_os == darwin* as needed in SetLocale.c
8204
8205commit 4b91ed099554626f1ec17d5bdf7bd77ce1a70037
8206Author: Alan Coopersmith <alan.coopersmith@sun.com>
8207Date:   Wed Nov 21 16:50:04 2007 -0800
8208
8209    X.Org Bug #4312: incorrect comment asterisk in XAnyEvent.3x man page
8210    
8211    X.Org Bugzilla #4312 <http://bugs.freedesktop.org/show_bug.cgi?id=4312>
8212    
8213    Protect /* sequences from cpp pre-processor removal without transforming
8214    to Unicode mathematical asterisk character
8215
8216commit 2af660c2fcd15c86c66459bfc074c190ea1462e6
8217Author: Jamey Sharp <jamey@minilop.net>
8218Date:   Mon Oct 29 10:46:20 2007 -0700
8219
8220    Two threads can request sequence sync and XID fetch simultaneously.
8221    
8222    So don't assert that they can't.
8223    
8224    This makes the Xlib/XCB implementation of _XAllocID more closely
8225    resemble the traditional Xlib version.
8226
8227commit 6e5485e0a5e3ab738becad12193e760c5fee83a4
8228Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
8229Date:   Sun Oct 28 04:44:00 2007 -0800
8230
8231    X.Org Bug #12983: Typos in ./man/XChangeKeyboardControl.man
8232    
8233    <http://bugs.freedesktop.org/show_bug.cgi?id=12983>
8234
8235commit 24527c92fd1f433ea135e85ec876a94a529fe500
8236Author: Yann Droneaud <ydroneaud@mandriva.com>
8237Date:   Wed Oct 24 19:26:07 2007 +0300
8238
8239    XIM: Properly initialise client event
8240    
8241    Make sure all ClientMessage fields are initialised to 0 before we send it.
8242
8243commit e41477f37b0d9b74a056d22dbf0073a94eecb9d6
8244Author: Daniel Stone <daniel@fooishbar.org>
8245Date:   Wed Oct 24 19:22:22 2007 +0300
8246
8247    Colours: Fix --disable-xcms
8248    
8249    Disable large tracts of colour management code when passing
8250    --disable-xcms.
8251
8252commit 11ea09745efa8de7dc82fe30ebd2393f08390957
8253Author: Eric Anholt <eric@anholt.net>
8254Date:   Fri Aug 31 17:30:33 2007 -0700
8255
8256    Bug #2081: Note the range limitation of XSetScreenSaver arguments.
8257
8258commit 31540f1438ec63faf37044f2fd654b335ddf80f0
8259Author: Kristian Høgsberg <krh@redhat.com>
8260Date:   Wed Aug 29 19:50:57 2007 -0400
8261
8262    Add GLX 1.4 requests and errors.
8263
8264commit 7c996f78914c77fe17e9f4feede980d895d9df51
8265Author: Eric Anholt <eric@anholt.net>
8266Date:   Tue Aug 28 15:15:11 2007 -0700
8267
8268    Add XF86 keyboard/monitor brightness keysyms to the keysymbdb.
8269
8270commit fa4effe82759f864a22a2dc6c920fa72ddb175a8
8271Author: Eric S. Raymond <esr@thyrsus.com>
8272Date:   Sun Jan 14 10:48:00 2007 -0800
8273
8274    Bug #9658: Bad markup on XIfEvent.3x
8275    
8276    X.Org Bugzilla #9658 <https://bugs.freedesktop.org/show_bug.cgi?id=9658>
8277
8278commit 74cba78daa738ef4d92096107d95c1a585933666
8279Author: Eric S. Raymond <esr@thyrsus.com>
8280Date:   Sun Jan 14 10:43:00 2007 -0800
8281
8282    Bug #9655: Bad markup in XrmUniqueQuark.3x
8283    
8284    X.Org Bugzilla #9655 <https://bugs.freedesktop.org/show_bug.cgi?id=9655>
8285
8286commit 4341d1a34b2a2e460b58131b6fd81935f3355bbc
8287Author: Eric S. Raymond <esr@thyrsus.com>
8288Date:   Sun Jan 14 10:43:00 2007 -0800
8289
8290    Bug #9654: Bad markup in XrmGetFileDatabase.3x
8291    
8292    X.Org Bugzilla #9654 <https://bugs.freedesktop.org/show_bug.cgi?id=9654>
8293
8294commit 2db713252090cae08f0200fecad4fc25fb64c8b1
8295Author: Eric S. Raymond <esr@thyrsus.com>
8296Date:   Sun Jan 14 10:40:00 2007 -0800
8297
8298    Bug #9653: Bad markup in XQueryColor.3x
8299    
8300    X.Org Bugzilla #9653 <https://bugs.freedesktop.org/show_bug.cgi?id=9653>
8301
8302commit 9d3ceea4b902e0471824c1e07ad64342b9a1114e
8303Author: Eric S. Raymond <esr@thyrsus.com>
8304Date:   Sun Jan 14 10:40:00 2007 -0800
8305
8306    Bug #9652: Bad markup in XDrawArc.3x
8307    
8308    X.Org Bugzilla #9652 <https://bugs.freedesktop.org/show_bug.cgi?id=9652>
8309
8310commit 2e7e0748d353d7f53bbd65ec6bf0df8758528ddc
8311Author: Eric S. Raymond <esr@thyrsus.com>
8312Date:   Sun Jan 14 10:39:00 2007 -0800
8313
8314    Bug #9651: Bad markup in XcmsColor.3x
8315    
8316    X.Org Bugzilla #9651 <https://bugs.freedesktop.org/show_bug.cgi?id=9651>
8317
8318commit c316aaf0aab06951db9dc5c9c1148bfea835d885
8319Author: Eric S. Raymond <esr@thyrsus.com>
8320Date:   Sun Jan 14 10:38:00 2007 -0800
8321
8322    Bug #9650: Bad markup in XLoadFont.3x manual page
8323    
8324    X.Org Bugzilla #9650 <https://bugs.freedesktop.org/show_bug.cgi?id=9650>
8325
8326commit ca5d9a625ea0965853fa9e74a448b8c29c78ec95
8327Author: Eric S. Raymond <esr@thyrsus.com>
8328Date:   Tue Jan 2 10:18:00 2007 -0800
8329
8330    Bug 9523: Markup problems in XQueryExtension.3x
8331    
8332    X.Org Bugzilla #9523 <https://bugs.freedesktop.org/show_bug.cgi?id=9523>
8333
8334commit fe713c616e29ba19c179b43c18eca1035079ce18
8335Author: Ian Romanick <idr@us.ibm.com>
8336Date:   Tue Aug 21 14:56:33 2007 -0700
8337
8338    Make sure nls/am_ET.UTF-8/Makefile is created by configure.
8339
8340commit e3430616f26b68e1439143cbe10732f3fc329d20
8341Author: Eric S. Raymond <esr@thyrsus.com>
8342Date:   Tue Jan 2 08:40:00 2007 -0800
8343
8344    Bug #9516: Markup error in XAllocWMHints.3x
8345    
8346    X.Org Bugzilla #9516 <https://bugs.freedesktop.org/show_bug.cgi?id=9516>
8347
8348commit d8fe979fc929833e8c754aed32641786d5a0622b
8349Merge: 21ca953 4ec1723
8350Author: James Cloos <cloos@jhcloos.com>
8351Date:   Mon Aug 20 15:34:50 2007 -0400
8352
8353    Merge branch 'master' of ssh://git.freedesktop.org/git/xorg/lib/libX11
8354
8355commit 21ca953337fb221b85345bf35ce1a98a0dcb2bf2
8356Author: James Cloos <cloos@jhcloos.com>
8357Date:   Mon Aug 20 15:34:03 2007 -0400
8358
8359    Fix typo
8360    The code <U1000000D> was used where <U10000DC> was obviously intended.
8361    
8362    It is possible that <Udiaeresis> should be used instead, if that will
8363    not break anyone’s setup.
8364
8365commit 4ec1723fff729440cd3349c1f95d87d2a6ba89cf
8366Author: James Cloos <cloos@jhcloos.com>
8367Date:   Mon Aug 20 15:25:48 2007 -0400
8368
8369    Add compose file for Ethiopic to match new keyboard in xkeyboard-config
8370    From bug report:
8371    
8372      https://bugs.freedesktop.org/show_bug.cgi?id=11307
8373
8374commit eff33ae525337ce2026be135a26464c7b1237113
8375Author: James Cloos <cloos@jhcloos.com>
8376Date:   Sat Aug 18 17:58:23 2007 -0400
8377
8378    Patch for Catalan locales
8379    From bugzilla bug 10943¹:
8380    
8381      There are several Catalan locale codes which presently can
8382      be used in X11 systems; especially after they were accepted
8383      in belocs-locale-data².
8384    
8385      In the following patches, I³ add ca_AD, ca_FR and ca_IT Catalan
8386      locale codes.  For instance, without this, using ca_AD (actually
8387      a quite used locale⁴) some applications (eg. Emacs or Skype)
8388      cannot display Catalan diacritic marks as you type them.
8389    
8390    1] https://bugs.freedesktop.org/show_bug.cgi?id=10943
8391    2] http://lists.debian.org/debian-devel-changes/2005/07/msg01429.html
8392    3] Toni Hermoso Pulido <toniher@softcatala.org>
8393    4] https://launchpad.net/~ubuntu.cat/+members
8394
8395commit 1f980cb7d022f53d0aee9e793b08203fb888e86e
8396Author: James Cloos <cloos@jhcloos.com>
8397Date:   Sat Aug 18 17:47:04 2007 -0400
8398
8399    Add additional Euro signs to compose
8400    Inspired by bug 7419¹ make all of:
8401    
8402        C=, =C, c=, =c, E=, =E, e=, E=
8403    
8404    after <Multi_key> generate € U+20AC EURO SIGN.
8405    
8406    1] https://bugs.freedesktop.org/show_bug.cgi?id=7419
8407
8408commit 4b0a14521449dfce8b4347bd17243efd1d3eae2d
8409Author: James Cloos <cloos@jhcloos.com>
8410Date:   Sat Aug 18 17:29:08 2007 -0400
8411
8412    Compose fix for Latin-1 (from Debian)
8413    The description from bugzilla bug 7417¹ is:
8414    
8415      We've been shipping this patch for some time in Debian now. The
8416      problem description from the patch header is reproduced below. You
8417      may want to note the licensing issue mentioned below, but we've been
8418      shipping it because the method by which this particular patch was
8419      generated and updated was also given below.
8420    
8421      This patch by Denis Barbier.
8422    
8423      The X11 protocol states that Unicode keysyms are in the range
8424      0x01000100 - 0x0110FFFF.  If the result of composing characters is a
8425      Unicode codepoint, X returns the corresponding Unicode keysym, which
8426      is its Unicode codepoint augmented by 0x01000000.  Latin-1
8427      characters must not appear with their Unicode codepoints in compose
8428      files, otherwise the returned composed character lies in the range
8429      0x01000000 - 0x010000FF which is not valid.
8430    
8431      There are two solutions: either fix composing routines to return
8432      0xZZ instead of 0x010000ZZ (where Z is an hexadecimal digit), or
8433      replace U00ZZ by their corresponding keysyms in compose files.  The
8434      latter is more logical and less error prone, so compose files will
8435      be patched.  Many applications accept these invalid Unicode keysyms,
8436      but few of them don't, most notably xemacs.  Only UTF-8 locales are
8437      affected.
8438    
8439      This has been fixed very recently in XFree86 CVS (but not xorg), but
8440      for licensing reasons, this patch is not grabbed.  Instead automatic
8441      conversion is performed by:
8442    
8443        sed -e '/XK_LATIN1/,/XK_LATIN1/!d' /usr/include/X11/keysymdef.h \
8444        | grep -v deprecated | grep 0x0 \
8445        | sed -e 's/0x0/U0/' -e 's/XK_//' \
8446        | awk '{ printf "s/\\b%s\\b/%s/ig\n", $3, $2; }' > sedfile
8447        for f in nls/*.UTF-8/Compose.pre
8448        do
8449          sed -f sedfile $f > $f.tmp && mv $f.tmp $f
8450        done
8451    
8452    [I edited the quoted script to update it for the current location of
8453    the installed keysymdef.h and the current layout of the libX11
8454    repo. -JimC]
8455    
8456    I applied the script, not the patch attached to the bugreport.
8457    
8458    1] https://bugs.freedesktop.org/show_bug.cgi?id=7417
8459
8460commit 5cf5bc76642bfece7cb5b76faf414bf445f14489
8461Author: James Cloos <cloos@jhcloos.com>
8462Date:   Sat Aug 18 17:13:41 2007 -0400
8463
8464    Add some compose sequences
8465    
8466    Add some compose sequences from the patch in bug 5371 (attachment 4122).
8467    
8468    Cf:
8469    
8470    https://bugs.freedesktop.org/show_bug.cgi?id=5371
8471    https://bugs.freedesktop.org/attachment.cgi?id=4122
8472
8473commit d4002e389dd69780dfc7c2f7bd3cb0c57f05d4f8
8474Author: James Cloos <cloos@jhcloos.com>
8475Date:   Sat Aug 18 13:57:31 2007 -0400
8476
8477    Fix SMP Compose targets
8478    The compose targets from the SMP (plane 1) were incorrect.
8479    
8480    At some point the 0x10000 bit had been lost.
8481
8482commit f1ed3da9a30a1f0264fdc7d1c6466f27fe2a3d7d
8483Author: Jeremy C. Reed <reed@glacier.reedmedia.net>
8484Date:   Thu Aug 16 17:37:22 2007 -0500
8485
8486    Fix a mutex reference-counting bug.
8487    
8488    I was told that some systems have a much more permissive libpthread.
8489    I was asked to commit this. This is from NetBSD's X source.
8490    (I didn't receive any feedback on xorg list for over two weeks
8491    about this.)
8492
8493commit ac00a44b4875de70382da5a40dd87f976e5b9327
8494Author: Tilman Sauerbeck <tilman@code-monkey.de>
8495Date:   Wed Aug 1 20:36:03 2007 +0200
8496
8497    Bumped version to 1.1.3.
8498
8499commit 76fae9cba1e9bdf7f0eb2ff2b90153d622136cf0
8500Author: Joerg Sonnenberger <joerg@netbsd.org>
8501Date:   Fri Jul 27 11:15:47 2007 -0700
8502
8503    Fail properly on errors in recursive make.
8504
8505commit 1a18319b3bde08dd9ef69c7cd735a76000cf3177
8506Author: Brice Goglin <Brice.Goglin@ens-lyon.org>
8507Date:   Thu Jul 26 23:31:15 2007 +0200
8508
8509    Add missing override parameter in XrmCombineDatabase prototype in the manpage
8510    
8511    Reported by Arnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
8512    in http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=393434
8513    and https://bugs.freedesktop.org/show_bug.cgi?id=9948
8514    
8515    Also add the type of the second argument in XrmMergeDatabases.
8516
8517commit 6f0764d4b56f64786b4980839ca262f10a51af6f
8518Author: Brice Goglin <Brice.Goglin@ens-lyon.org>
8519Date:   Thu Jul 26 22:53:52 2007 +0200
8520
8521    Clarify return value of XGetCommand in case of error in the manpage
8522    
8523    Reported by Sean Perry <shalehperry@attbi.com>
8524    in http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=133348
8525    and https://bugs.freedesktop.org/show_bug.cgi?id=9828
8526
8527commit b8bef57342632cc2d25580bb7daa3839bae04d89
8528Author: Alan Coopersmith <alan.coopersmith@sun.com>
8529Date:   Wed Jul 25 17:44:06 2007 -0700
8530
8531    Include comment/copyright/license for AC_DEFINE_DIR in acinclude.m4
8532
8533commit 590cde811a79375231c59ed8583e02b111ed567c
8534Author: Kean Johnston <kean@armory.com>
8535Date:   Thu Jul 19 16:44:20 2007 -0700
8536
8537    Reset hostname when falling back from :0 to hostname/localhost:0 as well
8538
8539commit d334665e619e9db657a2ea2764a8b852401d4a3f
8540Author: Kean Johnston <kean@armory.com>
8541Date:   Tue Jul 17 16:34:30 2007 -0700
8542
8543    LOCALCONN fallback changes DisplayString() output, breaks KDE
8544    
8545    See <http://lists.freedesktop.org/archives/xorg/2007-July/026443.html>
8546
8547commit 8e76bcf3cafda85058ce5f35f1f81929f4772f72
8548Author: Olivier Blin <blino@mandriva.org>
8549Date:   Mon Jun 11 18:32:09 2007 +1000
8550
8551    fix XGetMotionEvents arguments order - Fixes bug 11222
8552
8553commit c2f88cdf5cd9c94b77e5bfdac572b5ac06ab4aa8
8554Author: Jamey Sharp <jamey@minilop.net>
8555Date:   Sun Jun 10 16:19:59 2007 -0700
8556
8557    Fix locking in _XimGetWindowEventmask.
8558    
8559    Now that XFilterEvent drops the Display lock before invoking callback
8560    functions, _XimGetWindowEventmask is called without the lock held. So
8561    when it called _XGetWindowAttributes, a variant of XGetWindowAttributes
8562    that does not lock the Display, Xlib/XCB would assert:
8563    
8564    xcb_xlib.c:50: xcb_xlib_unlock: Assertion `c->xlib.lock' failed.
8565    
8566    Should fix Gentoo #156367, Ubuntu #87947, Debian #427296. And others?
8567
8568commit 65f0ab5d46d80d55fc04d4eb14fa05f130eb8b9c
8569Author: Jamey Sharp <jamey@minilop.net>
8570Date:   Sun Jun 3 21:41:47 2007 -0700
8571
8572    Move security fixes to the top of NEWS, and fix spacing.
8573    
8574    Commit by Josh Triplett and Jamey Sharp.
8575
8576commit a549a258b8fcb1ba9d0c1b01b72967e385f67cab
8577Author: Jamey Sharp <jamey@minilop.net>
8578Date:   Sun Jun 3 21:29:40 2007 -0700
8579
8580    Add NEWS item for bugfix in commit e2c1d788d1fe7bd2d34756493951552441e59b8c.
8581    
8582    Commit by Josh Triplett and Jamey Sharp
8583
8584commit 5123b77a3d32d3ad479462f319762c328278aed9
8585Author: Jamey Sharp <jamey@minilop.net>
8586Date:   Sun Jun 3 21:24:54 2007 -0700
8587
8588    Xlib/XCB: Inline and simplify handle_event, since only process_responses calls it now.
8589    
8590    Commit by Josh Triplett and Jamey Sharp.
8591
8592commit 582ca690ea4f3ffd2b94826c4db97229bd3c7238
8593Author: Jamey Sharp <jamey@minilop.net>
8594Date:   Sun Jun 3 20:59:12 2007 -0700
8595
8596    Xlib/XCB: Fix _XReadEvents to always enqueue a new event, even if an error occurs
8597    
8598    Commit c337f9de7cfd89f983f83956b7457a274dd412f3 broke the invariant that
8599    _XReadEvents always enqueues at least one event even if an error occurred,
8600    because the one call to xcb_wait_for_event would then return an error, not an
8601    event, and nothing else ensured that process_responses would obtain an event.
8602    Fix this by reverting most of c337f9de7cfd89f983f83956b7457a274dd412f3 and
8603    f417570735aac865eb6b576d1ea76b5bfcd8573b and implementing the correct fix.  In
8604    process_responses, wait_for_first_event now serves as a flag, cleared when
8605    actually handling an event.
8606    
8607    Commit by Josh Triplett and Jamey Sharp.
8608
8609commit e2c1d788d1fe7bd2d34756493951552441e59b8c
8610Author: Jamey Sharp <jamey@minilop.net>
8611Date:   Sun Jun 3 17:33:23 2007 -0700
8612
8613    Xlib/XCB: Only remove pending_requests when there are provably no more responses.
8614
8615commit 7a6dbd4b07ca0a49c30ca7a1d2437eafb2e15eab
8616Author: Josh Triplett <josh@freedesktop.org>
8617Date:   Sun Jun 3 15:39:39 2007 -0700
8618
8619    Bump version number to 1.1.2, and add NEWS entry for 1.1.2
8620    
8621    Signed-off-by: Josh Triplett <josh@freedesktop.org>
8622
8623commit 416f38f2e67ee1979b3d2feac6f06b3670238804
8624Author: Josh Triplett <josh@freedesktop.org>
8625Date:   Sun Jun 3 12:13:44 2007 -0700
8626
8627    Revert "Revert "include: don't distribute XlibConf.h""
8628    
8629    This reverts commit 79fa3d8070d95b960ba486f2439225872471dadd.
8630    
8631    Re-revert the XlibConf.h change, which prevented distribution, not
8632    installation.
8633
8634commit 79fa3d8070d95b960ba486f2439225872471dadd
8635Author: Josh Triplett <josh@freedesktop.org>
8636Date:   Sat Jun 2 22:05:16 2007 -0700
8637
8638    Revert "include: don't distribute XlibConf.h"
8639    
8640    This reverts commit c9e28e05ae01ce8a29bea09df759b6271865b44c.
8641    
8642    The installed XlibInt.h includes XlibConf.h , so libX11 should ship
8643    XlibConf.h.  (Commit c9e28e05ae01ce8a29bea09df759b6271865b44c didn't actually
8644    prevent automake from shipping XlibConf.h, because it used
8645    nodist_x11include_HEADERS rather than nodist_HEADERS.)
8646
8647commit f417570735aac865eb6b576d1ea76b5bfcd8573b
8648Author: Jamey Sharp <jamey@minilop.net>
8649Date:   Sat Jun 2 17:59:15 2007 -0700
8650
8651    Xlib/XCB: inline wait_or_poll_for_event, which now had only one caller.
8652    
8653    Commit by Josh Triplett and Jamey Sharp.
8654
8655commit c337f9de7cfd89f983f83956b7457a274dd412f3
8656Author: Jamey Sharp <jamey@minilop.net>
8657Date:   Sat Jun 2 17:46:41 2007 -0700
8658
8659    Xlib/XCB: Ensure _XReadEvents reads at least one new event and blocks for exactly one event.
8660    
8661    Commit by Jamey Sharp and Josh Triplett.
8662
8663commit 7f66c897f04806b75e574b55b48921b48045e3f9
8664Author: Jamey Sharp <jamey@minilop.net>
8665Date:   Sat Jun 2 16:43:39 2007 -0700
8666
8667    Update _XReply's copy of _XCBUnlockDisplay's guts.
8668    
8669    We introduced this bug in 6b81cbbedfb521ce046b77ee3cc54e884a1dc0c5.
8670    
8671    Also add a comment in _XCBUnlockDisplay to discourage this problem from
8672    respawning.
8673    
8674    Commit by Josh Triplett and Jamey Sharp.
8675
8676commit 740ead23512f8d2eaafaa69e514f1ebafad475b9
8677Author: Jamey Sharp <jamey@minilop.net>
8678Date:   Sat Jun 2 16:01:01 2007 -0700
8679
8680    Xlib/XCB: Avoid re-crashing after _XIOError.
8681    
8682    Commit by Josh Triplett and Jamey Sharp.
8683
8684commit 6b81cbbedfb521ce046b77ee3cc54e884a1dc0c5
8685Author: Jamey Sharp <jamey@minilop.net>
8686Date:   Sat Jun 2 12:30:30 2007 -0700
8687
8688    Hold XCB's Xlib lock even when only the user lock (XLockDisplay) is held.
8689    
8690    An Xlib client can query Display state, such as with NextRequest, while
8691    it holds only the Xlib user lock (between XLockDisplay and
8692    XUnlockDisplay), so XCB requests in other threads should be blocked when
8693    the Xlib user lock is held.
8694    
8695    We acquire the lock even when XInitThreads was not called, so that pure
8696    XCB code can use multiple threads even in an otherwise single-threaded
8697    Xlib application.
8698    
8699    Commit by Josh Triplett and Jamey Sharp.
8700
8701commit 95523387d619af5b400748898d722e080b5ce1a6
8702Author: Jamey Sharp <jamey@minilop.net>
8703Date:   Sat Jun 2 11:57:39 2007 -0700
8704
8705    Allow re-entrant Xlib calls from _XIOError.
8706    
8707    Some libraries try to clean up X resources from atexit handlers, _fini,
8708    or C++ destructors. To make these work, the Display lock should be
8709    downgraded to a user lock (as in XLockDisplay) before calling exit(3).
8710    This blocks Xlib calls from threads other than the one calling exit(3)
8711    while still allowing the exit handlers to call Xlib.
8712    
8713    This assumes that the thread calling exit will call any atexit handlers.
8714    If this does not hold, then an alternate solution would involve
8715    registering an atexit handler to take over the lock, which would only
8716    assume that the same thread calls all the atexit handlers.
8717    
8718    Commit by Josh Triplett and Jamey Sharp.
8719
8720commit 91b02b8064f4e0bcc56019f0722914850008a597
8721Author: Tilman Sauerbeck <tilman@code-monkey.de>
8722Date:   Thu May 17 19:07:34 2007 +0200
8723
8724    More constification.
8725
8726commit a4f3841940158351f9424c3f59b305cce877177d
8727Author: Tilman Sauerbeck <tilman@code-monkey.de>
8728Date:   Thu May 17 00:29:43 2007 +0200
8729
8730    Constified composite text charset table.
8731
8732commit 0581c0aa6039e6b2abb9f7b0a4f9904d8e01f00e
8733Author: Tilman Sauerbeck <tilman@code-monkey.de>
8734Date:   Wed May 16 23:19:22 2007 +0200
8735
8736    Have the compiler fill in hexTable so we don't have to do it at runtime.
8737
8738commit 0e8d9ca47dab0d069e305d5784d05f2ade04f0a8
8739Author: Tilman Sauerbeck <tilman@code-monkey.de>
8740Date:   Wed May 16 19:36:23 2007 +0200
8741
8742    More constification.
8743
8744commit 6d2bed8f04942b4de086a519ac693e729c9fdeea
8745Author: Tilman Sauerbeck <tilman@code-monkey.de>
8746Date:   Wed May 16 19:18:20 2007 +0200
8747
8748    Constify and clean up token table.
8749
8750commit 6c508eab5df5d517f7e4cbe6087308cd53a564b2
8751Author: Tilman Sauerbeck <tilman@code-monkey.de>
8752Date:   Wed May 16 18:24:42 2007 +0200
8753
8754    Constified more tables.
8755
8756commit e699c4231c205ef00d687b6412308d031b99806b
8757Author: Tilman Sauerbeck <tilman@code-monkey.de>
8758Date:   Wed May 16 18:01:23 2007 +0200
8759
8760    Constified error list.
8761
8762commit a68a1cd7cb990ba276fbc36a7591044d78b3d3c1
8763Author: Peter Hutterer <peter@cs.unisa.edu.au>
8764Date:   Tue May 15 16:54:01 2007 +0930
8765
8766    Add XGenericEvent definition and handling for long events.
8767
8768commit c76d30253f1483ac8200ad5c032a818907e65030
8769Author: Jan Willem Stumpel <jstumpel@planet.nl>
8770Date:   Fri May 4 12:00:49 2007 -0700
8771
8772    Update el_GR.UTF-8/Compose.pre to match changes in xkeyboard-config cvs
8773    
8774    Cf:
8775    
8776      https://bugs.freedesktop.org/show_bug.cgi?id=10851
8777      https://bugs.freedesktop.org/show_bug.cgi?id=10824
8778      http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=386385
8779    
8780    The greek keyboard definition was changed to replace dead_horn and
8781    dead_ogonek with U0313 COMBINING COMMA ABOVE (aka Psili) and U0314
8782    COMBINING REVERSED COMMA ABOVE (aka Dasia).
8783    
8784    This patch modifies the Greek Compose.pre to match.
8785    
8786    It is generated by the script Jan Willem Stumpel <jstumpel@planet.nl>
8787    posted to 386385@bugs.debian.org:
8788    
8789    #!/usr/bin/perl
8790    while (<>) {
8791      print $_;
8792      if (/dead_horn/) {
8793        s/dead_horn/U0313/;
8794        print $_;
8795      }
8796      elsif (/dead_ogonek/) {
8797        s/dead_ogonek/U0314/;
8798        print $_;
8799      }
8800    }
8801
8802commit a48386ce6b5f8fd2d9dc11a966c9bf5da59f3831
8803Author: Magnus Kessler <Magnus.Kessler@gmx.net>
8804Date:   Tue May 1 15:20:08 2007 +0200
8805
8806    Switched function definitions from K&R to ANSI style.
8807
8808commit 605d357074d556a05a3fba2e85cbea36a3204248
8809Author: Tilman Sauerbeck <tilman@code-monkey.de>
8810Date:   Tue May 1 14:47:03 2007 +0200
8811
8812    Tweaked configure output about the man pages suffix.
8813
8814commit 9824b40d2af4ca2376512c1be7743da0d5065900
8815Author: Alan Coopersmith <alan.coopersmith@sun.com>
8816Date:   Sat Apr 28 00:42:18 2007 -0700
8817
8818    Fix typo in nroff macro in XkbAddGeomOverlayKey.man
8819
8820commit f93849dcc68bd5042ea0884e5190dc7c35b31d68
8821Author: Alan Coopersmith <alan.coopersmith@sun.com>
8822Date:   Sat Apr 28 00:30:55 2007 -0700
8823
8824    Protect C comments and #defines in XKB man pages from being mangled by cpp
8825
8826commit f2f27d4763c7665e422fab10b96b4cf5ad6c0a6f
8827Author: Alan Coopersmith <alan.coopersmith@sun.com>
8828Date:   Sat Apr 28 00:14:50 2007 -0700
8829
8830    Add Makefile to process/install XKB man pages
8831
8832commit d9954c6f6f3a8c406b946acd0d034ff83c656156
8833Author: Dennis Arellano <Dennis.Arellano@Sun.COM>
8834Date:   Thu Aug 19 00:00:00 1999 -0700
8835
8836    Add man pages for XKB API's
8837    
8838    Man pages originally written for X11R6.4 integration to Solaris 7 11/99
8839    Sun bug id 4258344: Add new XKB API manpages for 6.4 upgrade
8840    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=4258344>
8841    
8842    (Volunteer needed to convert prototypes in man pages to ANSI C style...)
8843
8844commit f640a49b5e2ebf29f9d655df544c63bf826f619a
8845Author: Tilman Sauerbeck <tilman@code-monkey.de>
8846Date:   Fri Apr 20 18:39:59 2007 +0200
8847
8848    Markup tweak for XOpenIM.
8849
8850commit e972b0bb255af4f3258217852542faf5afa60b28
8851Author: Julien Cristau <jcristau@debian.org>
8852Date:   Fri Apr 20 18:35:09 2007 +0200
8853
8854    Bug #9695: Fixed a few argument types in the XOpenIM manpage.
8855
8856commit b4e2276f329fa42397cb8609cfcd34ebafd3d96b
8857Author: Julien Cristau <jcristau@debian.org>
8858Date:   Fri Apr 20 18:28:52 2007 +0200
8859
8860    Bug #9697: Fixed documentation of XVisualInfo struct.
8861    
8862    The "depth" member was said to be unsigned int, but it's signed.
8863
8864commit 4068f3dae01c630f825002673b1d3a047ad61863
8865Author: Julien Cristau <jcristau@debian.org>
8866Date:   Fri Apr 20 16:41:21 2007 +0200
8867
8868    Bug #9696: refer to XDefineCursor() instead of XDefineCusor().
8869
8870commit 603c2f88d4e57ce1a3c16e8b6246866e6edd8fa8
8871Author: Tilman Sauerbeck <tilman@code-monkey.de>
8872Date:   Sat Apr 7 14:42:55 2007 +0200
8873
8874    Use unistd.h to get getresuid() and friends.
8875    
8876    This works since we now have _GNU_SOURCE defined.
8877
8878commit 0300f295bbd3a0c7c46baac8e0a27aeaf53c9d9b
8879Author: Tilman Sauerbeck <tilman@code-monkey.de>
8880Date:   Sat Apr 7 14:27:12 2007 +0200
8881
8882    Bug #10562: Define _GNU_SOURCE on glibc systems.
8883
8884commit a225a0be48770beb689d5ac5da97073634f7deab
8885Author: Tilman Sauerbeck <tilman@code-monkey.de>
8886Date:   Fri Apr 6 12:46:25 2007 +0200
8887
8888    For nls/*.pre, allow people to comment lines by starting them with '##'.
8889    
8890    This fixes a bunch of cpp warnings from nls/en_US.UTF-8/Compose.pre.
8891    Fixing that file would have been a larger diff, and using ## may be
8892    nicer to use anyway.
8893
8894commit 1c75a9479011e5f1ad01c950628d0ef5a302d8b6
8895Author: Tilman Sauerbeck <tilman@code-monkey.de>
8896Date:   Fri Apr 6 11:59:31 2007 +0200
8897
8898    Bug #10475: Fixed lots of char*/const char* mixups.
8899    
8900    I didn't fix all of them, as that would require touching
8901    public headers.
8902
8903commit 680dd50193b5b3fcabdd3f1fcbd6a889d5a95c54
8904Author: Matthias Hopf <mhopf@suse.de>
8905Date:   Thu Apr 5 11:53:18 2007 +0200
8906
8907    Fix 64bit issues with reallocation.
8908
8909commit 4d38aeaca42d0bdfe34a833a142ee4d895de03bf
8910Author: Tilman Sauerbeck <tilman@code-monkey.de>
8911Date:   Wed Apr 4 18:41:18 2007 +0200
8912
8913    Fixed a few warnings.
8914
8915commit 7dc7ef398b6ad90ccd1680ed9cd1cfdd47312f5a
8916Author: Matthieu Herrb <matthieu@roadrock.(none)>
8917Date:   Tue Apr 3 15:39:52 2007 +0200
8918
8919    Multiple integer overflows in the XGetPixel() and XInitImage functions
8920    
8921    CVE-2007-1667
8922
8923commit 0284b144340a455a4b5b5011d81ac5a610372291
8924Author: David Baron <dbaron@dbaron.org>
8925Date:   Fri Mar 30 17:07:46 2007 +0200
8926
8927    Bug #7703: Fixed XSetSizeHints() et al wrt use of uninitialized data.
8928    
8929    Now only those fields of the respective hint struct are set that
8930    are actually valid in the input data.
8931    The changed functions are:
8932    XSetSizeHints(), XSetWMHints() and XSetWMSizeHints().
8933
8934commit 0994faa0c76c45b106442db461b8a30a3e1c9395
8935Author: Tilman Sauerbeck <tilman@code-monkey.de>
8936Date:   Thu Mar 29 17:31:25 2007 +0200
8937
8938    Fixed the change from the previous SendEvent commit.
8939    
8940    Testing a different patch than the one you commit is bad, right?
8941
8942commit 398d75528a84f4b8414eb0e363cf53b1b16f6fdf
8943Author: Tilman Sauerbeck <tilman@code-monkey.de>
8944Date:   Wed Mar 28 22:23:44 2007 +0200
8945
8946    Bug #10292: Fixed a memory leak related to XOpenDisplay() in the XCB code.
8947
8948commit ab0bcd07957cecc8e7c0e75d5160a625e91264fe
8949Author: David Baron <dbaron@dbaron.org>
8950Date:   Wed Mar 28 22:21:40 2007 +0200
8951
8952    Bug #7713: Initialize all of the event's fields before sending it.
8953
8954commit bc80f9fe3ccce40ee41246b97470c4f0519756ad
8955Author: Julien Cristau <jcristau@debian.org>
8956Date:   Sun Mar 18 13:14:48 2007 +0100
8957
8958    Bug #9279: Fixed a file descriptor leak.
8959
8960commit c9e28e05ae01ce8a29bea09df759b6271865b44c
8961Author: Daniel Stone <daniel@fooishbar.org>
8962Date:   Sat Dec 16 00:45:19 2006 +0200
8963
8964    include: don't distribute XlibConf.h
8965    
8966    Since XlibConf.h is built by configure, don't distribute it.
8967
8968commit dd1705ced2cac6b4b6b21e79272fcf9bed4bf376
8969Merge: 129bbb9 769b985
8970Author: Jeremy C. Reed <reed@glacier.reedmedia.net>
8971Date:   Thu Dec 14 14:23:20 2006 -0600
8972
8973    Merge branch 'master' of git+ssh://git.freedesktop.org/git/xorg/lib/libX11
8974
8975commit 129bbb9f9114a571556fa3a24f15ba58a5cdb2de
8976Author: Jeremy C. Reed <reed@glacier.reedmedia.net>
8977Date:   Thu Dec 14 14:21:19 2006 -0600
8978
8979    For NetBSD, define the XTHREADLIB and XTHREAD_CFLAGS.
8980
8981commit 769b9854f7eb1d6d20dd0b4a1c1215ad8e1b77b6
8982Author: Daniel Stone <daniel@fooishbar.org>
8983Date:   Wed Dec 6 18:53:00 2006 +0200
8984
8985    Makefile.am: make ChangeLog hook safer
8986    
8987    Make ChangeLog hook as safe as possible.
8988    (cherry picked from f5d6a3d24095c7ffed86705995d0874c885e7676 commit)
8989
8990commit 8a8185a649e93b90ffa820387ffdca831227f5a9
8991Author: Josh Triplett <josh@freedesktop.org>
8992Date:   Thu Nov 30 18:33:13 2006 -0800
8993
8994    Add autogen.sh to EXTRA_DIST.
8995
8996commit efe817f95ef8d05e863c83147e903140bc860de4
8997Author: Jamey Sharp <jamey@minilop.net>
8998Date:   Thu Nov 30 17:58:35 2006 -0800
8999
9000    Release libX11 1.1.1.
9001
9002commit f637a5b03164263a3af2e644cf655e52b015f1bb
9003Author: Ross Combs <rocombs@cs.nmsu.edu>
9004Date:   Sat Nov 25 14:45:17 2006 -0800
9005
9006    Debian bug #354315: Clarify return value in XGetWindowAttributes man page
9007    
9008    This man page does not discuss the actual return values of the
9009    function, but says they are of type "Status".  One might assume
9010    that this means you could compare it with the "Success" macro.
9011    One would be wrong.
9012    
9013    The X functions seem to have two three types representing status.
9014    If it is an "int" there are a number of error codes or "Success"
9015    which can be compared against.  If it is a bool, the result can be
9016    compared with "True" or "False".  If the return type is "Status" it
9017    appears that the return type is either 0 or 1.  Unfortunately the
9018    value for Success is zero, so it is important to distinguish
9019    between the first two types of return values and the third;
9020    otherwise the conditional will be inverted.
9021    
9022    XGetWindowAttributes() is one of the functions which returns zero
9023    for failure.  The man page should make this clear.
9024
9025commit c6a0b0f18ed1242eeb908f5cf767ab8381edd456
9026Author: Jamey Sharp <jamey@minilop.net>
9027Date:   Sat Nov 25 14:23:45 2006 -0800
9028
9029    Bug #9154: Always process an event for _XReadEvents, even if an error occurs
9030    
9031    Previously, process_responses (in the wait_for_first_event case called
9032    from _XReadEvents) considered any return from xcb_wait_for_event
9033    sufficient to think it had processed an event. If xcb_wait_for_event
9034    returned an error, and no more events occurred before process_responses
9035    called xcb_poll_for_event, process_responses would try to return with
9036    dpy->head NULL, and would fail an assertion for the _XReadEvents
9037    postcondition. Now, process_responses continues using xcb_wait_for_event
9038    until it gets an event.
9039
9040commit d56e78acce9b2aa1dd1bf172afedaa3bccd5e1c8
9041Author: Tilman Sauerbeck <tilman@code-monkey.de>
9042Date:   Sat Nov 25 05:29:31 2006 -0800
9043
9044    Bug #9153: Fix access to freed memory.
9045    
9046    The fix for bug #8622 introduced a smaller bug where _XReply would
9047    read memory shortly after freeing it. This patch caches the needed
9048    value in a stack-allocated variable before the heap-allocated memory
9049    is freed.
9050
9051commit 934ca763bbc0dd7ae460469bfc000ba101602bcc
9052Author: Josh Triplett <josh@freedesktop.org>
9053Date:   Fri Nov 24 19:57:58 2006 -0800
9054
9055    libx11 doesn't use inputproto in public headers; don't require it in x11.pc
9056    
9057    Based on a Debian patch.
9058
9059commit 4255997ef2d92740d51f6e63e9eabcfa089683f0
9060Author: Josh Triplett <josh@freedesktop.org>
9061Date:   Thu Nov 23 07:19:32 2006 -0800
9062
9063    Release libX11 1.1
9064
9065commit a1168e11ec9377307c51a7271faec3bf88a63a66
9066Author: Jamey Sharp <jamey@minilop.net>
9067Date:   Tue Nov 21 17:52:34 2006 -0800
9068
9069    Add note in man-page that XListFontsWithInfo is not thread-safe.
9070    
9071    _XReply drops the Display lock, so the value of dpy->request may change
9072    before _XReply is called again.
9073    
9074    I discovered this by inspection a year or two ago. I'm pretty confident
9075    in the claim, and nobody has come up with an argument for why it's safe
9076    despite appearances.
9077
9078commit 67abe024268c6b1fdee516e5d3a046ccffd7e80a
9079Author: Jamey Sharp <jamey@minilop.net>
9080Date:   Sat Nov 18 15:39:26 2006 -0800
9081
9082    Bug #8622: Fix response processing order for threaded apps
9083    
9084    Previously, process_responses (the common code for _XReply,
9085    _XReadEvents, and _XEventsQueued) took the current request sequence
9086    number as an argument, and did some highly complicated processing to
9087    attempt to process responses in order across threads.  This didn't
9088    actually work.
9089    
9090    Now, process_responses handles responses in order, by adding condition
9091    variables to the list of outstanding requests in
9092    dpy->xcb->pending_requests, and blocking on them when those requests
9093    should get processed to allow _XReply to process them; if actually
9094    called from _XReply, it returns when _XReply's request should get
9095    processed.  _XReply broadcasts on the condition variable after it has
9096    read its reply and re-acquired the display lock.
9097    
9098    Another great commit brought to you by Jamey Sharp, Josh Triplett, the
9099    Gobby collaborative text editor, conspy, and ridiculous amounts of SSH
9100    forwarding.
9101    
9102    Signed-off-by: Josh Triplett <josh@freedesktop.org>
9103    Signed-off-by: Jamey Sharp <jamey@minilop.net>
9104
9105commit 941f02ede63baa46f93ed8abccebe76fb29c0789
9106Author: Lars Knoll <lars@trolltech.com>
9107Date:   Wed Nov 8 12:17:41 2006 -0800
9108
9109    Don't hold the display lock around callbacks to the application.
9110    
9111    This fixes an XCB locking assertion failure, particularly with emacs.
9112
9113commit e494ecaac1ec8a22bd9a85f800fca74d02e9d358
9114Author: Diego 'Flameeyes' Pettenò <flameeyes@gentoo.org>
9115Date:   Tue Nov 7 09:32:00 2006 -0800
9116
9117    Add xcb-xlib dependency to x11.pc when built against XCB.
9118
9119commit 2302008a3793eb4df8ede777d54fe06505c47eaf
9120Author: Eric Anholt <eric@anholt.net>
9121Date:   Mon Nov 6 17:11:42 2006 -0800
9122
9123    XCB: Allocate the right amount of memory for dpy->lock_fns.
9124    
9125    Fixes a crash I was experiencing on startup of anything using gdk.
9126
9127commit 5f860655be88108b03ccd97470a0814819254bf0
9128Author: Jamey Sharp <jamey@minilop.net>
9129Date:   Thu Nov 2 17:55:31 2006 -0800
9130
9131    Release libX11 1.1 RC2 (1.0.99.2).
9132
9133commit a6f4bbf7b1d725b0f04bd660f57b861a76b19831
9134Author: Benno Schulenberg <bensberg@justemail.net>
9135Date:   Sun Oct 29 03:10:30 2006 +0300
9136
9137    nls (en_US): remove long compositions that override shorter (bug #2286)
9138    Remove long compositions that override (or get overriden by) later shorter
9139    compositions, e.g. a four-key compose sequence that gets overriden by a
9140    later three-key compose sequence.
9141
9142commit 0280bf11ef88673a9b5bba3a91a599260f1f0949
9143Author: Benno Schulenberg <bensberg@justemail.net>
9144Date:   Sun Oct 29 03:08:36 2006 +0300
9145
9146    nls: remove shadowed compose entries (bug #2286)
9147    Remove compose entries shadowed by others later on.
9148
9149commit d118f2b1ef10997194b281524177dea7396da7dd
9150Author: Benno Schulenberg <bensberg@justemail.net>
9151Date:   Sun Oct 29 03:07:15 2006 +0300
9152
9153    nls: remove duplicate compose entries (bug #2286)
9154    Remove a bunch of duplicate entries from various Compose files.
9155
9156commit 5e1cc2fe20e5904ca1e05a4cb7be13d450a593bb
9157Author: Caolan McNamara <caolanm@redhat.com>
9158Date:   Sun Oct 29 02:46:15 2006 +0300
9159
9160    XKB geometry: fix leaks in GetKeyboardByName (bug #8099)
9161    Don't leak the name and value of every property we parse, as well as the
9162    name of every colour.
9163
9164commit 686bb8b35acf6cecae80fe89b2b5853f5816ce19
9165Author: Matthias Hopf <mhopf@suse.de>
9166Date:   Wed Oct 18 14:25:04 2006 +0200
9167
9168    Fix double open of compose file.
9169    
9170    Issue found by Kees Cook <kees@canonical.com>.
9171
9172commit d3e65cb8cddf08913d83c9df2bb9b1517f2ad3a8
9173Author: Jamey Sharp <jamey@minilop.net>
9174Date:   Sat Oct 14 21:25:10 2006 -0700
9175
9176    XCB: check for and handle I/O errors in _XGetXCBBuffer.
9177
9178commit 256eba6b40c5f811a03b04abf5f85f728ee3ab5d
9179Author: Jamey Sharp <jamey@minilop.net>
9180Date:   Wed Oct 11 00:06:50 2006 -0700
9181
9182    XKB bugfix: SyncHandle must be called after UnlockDisplay, not before.
9183
9184commit 1eedf1bd033e496843cfde42ae4ae5a119298605
9185Author: Jamey Sharp <jamey@minilop.net>
9186Date:   Tue Oct 10 23:03:28 2006 -0700
9187
9188    Add correct Display locking to XKB functions.
9189    
9190    Some XKB functions didn't correctly call LockDisplay or UnlockDisplay.
9191    This patch fixes at least some instances of that problem.
9192    
9193    Thanks to Magnus Kessler <Magnus.Kessler@gmx.net> for finding these bugs
9194    and proposing a fix, which this patch is based on.
9195
9196commit e17c2cbe9fbaa1600d4b9463ec800a874b0d87cd
9197Author: David Nusinow <dnusinow@debian.org>
9198Date:   Tue Oct 10 22:11:05 2006 -0400
9199
9200    Dynamically generate internal manpage section using __libmanpagesuffix__ so that it actually matches the section if you don't use 3X11
9201
9202commit e53557da969b706dbc843f6fde3db31ffe382e0f
9203Author: Jamey Sharp <jamey@minilop.net>
9204Date:   Sat Oct 7 21:00:36 2006 -0700
9205
9206    Release libX11 1.1 RC1 (1.0.99.1).
9207
9208commit bf237409c5fce32c557d298f62f44d456c2b5bc8
9209Merge: ba47719 2d426d1
9210Author: Jamey Sharp <jamey@minilop.net>
9211Date:   Sat Oct 7 21:07:16 2006 -0700
9212
9213    As XCB support is about to be released in libX11, stable is now subsumed by master.
9214
9215commit ba477191c67ce93e61423cc1abe35275704cce50
9216Author: Jamey Sharp <jamey@minilop.net>
9217Date:   Sat Oct 7 03:48:13 2006 -0700
9218
9219    XCB: Don't rely on having the definition of struct xcb_setup_t available.
9220
9221commit 117b55cbd0b0ce51362df88363ed83d44a493ac7
9222Author: Jamey Sharp <jamey@minilop.net>
9223Date:   Fri Oct 6 16:27:31 2006 -0700
9224
9225    xcb_poll_for_event no longer takes an 'int *error' out-parameter.
9226
9227commit caaa8e8a55e837b3585c1dee7bef194fc4c79d16
9228Author: Josh Triplett <josh@freedesktop.org>
9229Date:   Fri Oct 6 16:26:11 2006 -0700
9230
9231    Actually ship Xxcbint.h
9232
9233commit 7b027e53b5e393082f4f515c8ba18077eb97163f
9234Author: Josh Triplett <josh@freedesktop.org>
9235Date:   Fri Oct 6 16:25:50 2006 -0700
9236
9237    Clean ChangeLog only in "make maintainer-clean", not "make clean"
9238    
9239    ChangeLog requires a git repo to generate; make clean and make distclean
9240    shouldn't get rid of it.
9241
9242commit cab22e02e78b3e5b8a73d1cd55cf6686426b47e0
9243Author: Josh Triplett <josh@freedesktop.org>
9244Date:   Fri Oct 6 16:24:58 2006 -0700
9245
9246    Add ChangeLog and "make dist"-generated files to .gitignore
9247
9248commit e4c7cfdee4a40e466c0c6b370cabd432e9e855a0
9249Author: Josh Triplett <josh@freedesktop.org>
9250Date:   Fri Oct 6 15:53:27 2006 -0700
9251
9252    Add manual pages for XGetXCBConnection and XSetEventQueueOwner
9253
9254commit 688224cea95e453f94c5a602dc6fce84bc93dfc0
9255Author: Josh Triplett <josh@freedesktop.org>
9256Date:   Fri Oct 6 13:41:16 2006 -0700
9257
9258    Remove unnecessary prototype for _XFreeDisplayStructure in xcb_disp.c
9259
9260commit ab728ca372288d0db1b486c265e34c1376f29104
9261Author: Josh Triplett <josh@freedesktop.org>
9262Date:   Fri Oct 6 12:36:39 2006 -0700
9263
9264    XCL is dead; long live Xlib/XCB
9265    
9266    Rename all instances of "XCL" to Xlib/XCB-derived names.
9267    
9268    The only user-visible change: rename the include file <X11/xcl.h> to
9269    <X11/Xlib-xcb.h>; programs will need to change their #include lines to match.
9270    
9271    Remove the XCL cast inlines from Xlib-xcb.h.
9272
9273commit 5b73093203039d307eb7ab3845c3ced207e9e26c
9274Author: Josh Triplett <josh@freedesktop.org>
9275Date:   Fri Oct 6 11:33:49 2006 -0700
9276
9277    Add XCB developers to AUTHORS
9278
9279commit 1cb71ff139276a0a58c60ea5f261f64b94706b9b
9280Author: Josh Triplett <josh@freedesktop.org>
9281Date:   Fri Oct 6 11:21:28 2006 -0700
9282
9283    Fix email addresses in README
9284
9285commit 12f038669278019594ca0ed53dadcf4e84092422
9286Author: Jamey Sharp <jamey@minilop.net>
9287Date:   Fri Oct 6 02:13:05 2006 -0700
9288
9289    XCB: Handle all responses in order of monotonically increasing sequence number.
9290
9291commit f392680273278b43079302206897f794e60f3c70
9292Author: Josh Triplett <josh@freedesktop.org>
9293Date:   Fri Oct 6 01:11:08 2006 -0700
9294
9295    Actually install x11-xcb.pc, and ship x11-xcb.pc.in
9296
9297commit f1fcad2e3fd17aaf1294f1d8e9f406fd5b32a863
9298Author: Jamey Sharp <jamey@minilop.net>
9299Date:   Thu Oct 5 18:32:29 2006 -0700
9300
9301    XCB: correctly handle failure to connect to X server.
9302
9303commit e754b3b078d556c7861da56aad47d244e9199e06
9304Author: Josh Triplett <josh@freedesktop.org>
9305Date:   Thu Oct 5 17:44:22 2006 -0700
9306
9307    Split public Xlib/XCB functions into libX11-xcb
9308    
9309    We can never change the libX11 soname, and we don't want to commit to never
9310    changing the public Xlib/XCB functions, so split them into a separate library
9311    libX11-xcb.  This also means that a program linked solely against libX11
9312    should work with either Xlib or Xlib/XCB, which will make life easier for
9313    package maintainers.
9314    
9315    Signed-off-by: Josh Triplett <josh@freedesktop.org>
9316    Acked-by: Jamey Sharp <jamey@minilop.net>
9317
9318commit ffd367f708b295abaedf3a23a1bfd4710d171d6f
9319Author: Jamey Sharp <jamey@minilop.net>
9320Date:   Wed Oct 4 17:16:46 2006 -0700
9321
9322    No longer #include Xmd from xcl.h: we do not need it.
9323
9324commit 3aff149d42ba8ed620091971b3766bdf96c62aaf
9325Author: Jamey Sharp <jamey@minilop.net>
9326Date:   Wed Oct 4 16:58:32 2006 -0700
9327
9328    XCB: Revert locking to simple wrapper around libX11's normal locks.
9329    
9330    No more recursive mutexes, no more banging XCB's I/O lock in-place, and
9331    reduces the differences between the previous stable release and an
9332    XCB-enabled one. Sadly, Xlib's pluggable thread functions work again
9333    too, now. I apologize to the world.
9334
9335commit 8ff122fb529bdb1c2b9a86b12d06b6da1b35d708
9336Author: Jamey Sharp <jamey@minilop.net>
9337Date:   Mon Sep 25 04:54:52 2006 -0700
9338
9339    Link explicitly against XCB's Xlib compatibility functions.
9340
9341commit bde3cd123d65a2f36ee0c417f5f231b7e01d0671
9342Author: Jamey Sharp <jamey@minilop.net>
9343Date:   Mon Sep 25 04:13:20 2006 -0700
9344
9345    libxcb now installs header files in <xcb>, not <X11/XCB>.
9346
9347commit 87d00207f5a1f25a45a153618739cd6481814f89
9348Author: Ian Osgood <iano@quirkster.com>
9349Date:   Sun Sep 24 23:39:01 2006 -0700
9350
9351    Track XCB's "Great Renaming".
9352
9353commit 85a5e98dff9b7752fae157fad9b8c9825cb0efab
9354Author: Jamey Sharp <jamey@minilop.net>
9355Date:   Tue Sep 12 23:02:42 2006 -0700
9356
9357    Quit using XCBGetQueuedRequestRead.
9358
9359commit a61936fc4e9bd93b108764bbacd5b8f786e51915
9360Author: Tollef Fog Heen <tfheen@err.no>
9361Date:   Wed Aug 30 00:05:54 2006 +0300
9362
9363    nls: use _XlcUtf8Loader for en_US (bug #7982)
9364    Use _XlcUtf8Loader instead of _XlcUnicodeLoade,r bringing it into line with
9365    every other locale.
9366
9367commit abcc7e1865cdfbd591f6520cfe4257f0b0b1c03e
9368Author: Alan Coopersmith <alan.coopersmith@sun.com>
9369Date:   Wed Aug 23 18:49:30 2006 -0700
9370
9371    When opening display, if LOCALCONN fails, fall back to UNIXCONN, then TCPCONN
9372    
9373    Port to X11R7 of Sun bug fix 4061225 by Alex Chen for X11R6 - when failing to
9374    connect on a named pipe, try a Unix socket first, to better support people who
9375    replace their X servers with ones that don't support named pipe transport.
9376    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=4061225>
9377
9378commit 1ddc44c1cada7e926bd4787406444ce7c36b61e1
9379Author: Mark Brown <mark.brown@sun.com>
9380Date:   Thu Jul 27 19:17:10 2006 -0700
9381
9382    Sun bug 1149809: Document event delivery when grab is terminated.
9383
9384commit 171107b03ac89d94f9006c7cda242aeefb9ecd16
9385Author: Dennis Arellano <Dennis.Arellano@Sun.COM>
9386Date:   Thu Jul 27 18:47:06 2006 -0700
9387
9388    Sun bug 4091271: XGetWindowProperty is missing a crucial prop_return description
9389    
9390    Document that 32-bit format properties are always returned in arrays of type
9391    long, even on systems where long is 64-bits.
9392    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=4091271>
9393
9394commit 8309efe6550877cd0bf22979904b3f6bd3e6cffa
9395Author: Alan Coopersmith <alan.coopersmith@sun.com>
9396Date:   Mon Jul 24 15:52:00 2006 -0700
9397
9398    Add support for "make lint" to check code with lint/sparse/etc.
9399
9400commit 931e02fbd1acd09aae2b0954c34342c86c72dff6
9401Author: Alan Coopersmith <alan.coopersmith@sun.com>
9402Date:   Mon Jul 24 15:50:52 2006 -0700
9403
9404    ANSIfy some static function definitions
9405
9406commit 20b7abcaac324d90454de63f32f4a2b398e69e63
9407Author: Alan Coopersmith <alan.coopersmith@sun.com>
9408Date:   Mon Jul 24 15:01:40 2006 -0700
9409
9410    Fix sparse warning: Using plain integer as NULL pointer
9411
9412commit d158ab29930513c4097f5b67e7bea08ed2bfd62c
9413Author: Alan Coopersmith <alan.coopersmith@sun.com>
9414Date:   Mon Jul 24 14:00:24 2006 -0700
9415
9416    Remove unused variable
9417
9418commit 30377000375bdb958042dcb1f38503c94ef21eaf
9419Author: Eric Anholt <anholt@FreeBSD.org>
9420Date:   Fri Jul 21 18:55:36 2006 -0400
9421
9422    Bug #7188: Fix the documentation of XUrgencyHint (not UrgencyHint).
9423
9424commit 4eba45879aea4e415ab550ee56b900d060099110
9425Author: Matthieu Herrb <matthieu.herrb@laas.fr>
9426Date:   Sun Jul 16 10:55:39 2006 +0200
9427
9428    set GIT_DIR=${srcdir}/.git for git-log
9429
9430commit 2d426d1f2608fedb77bd7d010dabece76b8d4a60
9431Author: Aaron Plattner <aplattner@nvidia.com>
9432Date:   Tue Jul 11 13:27:49 2006 -0700
9433
9434    Add a .PHONY to ensure the ChangeLog isn't stale.
9435    
9436    Setting the ChangeLog rule as phony forces it to be re-run even when the
9437    ChangeLog file already exists. Research indicates .PHONY is portable to BSD and
9438    Solaris make.
9439    (cherry picked from b8a98809ed81e1226775e6447ef219ffc01334b5 commit)
9440
9441commit b8a98809ed81e1226775e6447ef219ffc01334b5
9442Author: Aaron Plattner <aplattner@nvidia.com>
9443Date:   Tue Jul 11 13:27:49 2006 -0700
9444
9445    Add a .PHONY to ensure the ChangeLog isn't stale.
9446    
9447    Setting the ChangeLog rule as phony forces it to be re-run even when the
9448    ChangeLog file already exists. Research indicates .PHONY is portable to BSD and
9449    Solaris make.
9450
9451commit 8f2be66089b88e4ed6acb0211ea107f4bb910bd3
9452Author: Mayank Jain <majain@redhat.com>
9453Date:   Tue Jul 11 19:42:47 2006 +0100
9454
9455    add Indian language locales
9456    Add as, kn, ml, or, ur, and te locales.
9457
9458commit a92eb6785699bbc9c6c3813f6af3bb9431a3f6b0
9459Author: Matthias Hopf <mhopf@suse.de>
9460Date:   Tue Jul 4 12:16:30 2006 +0200
9461
9462    Fix for autoconf 2.60 issue.
9463    
9464    Updated AC_DEFINE_DIR.
9465    Reverted datarootdir change.
9466
9467commit 644f4828b15bce42b597eb123ba0bbc372c46c03
9468Author: Keith Packard <keithp@neko.keithp.com>
9469Date:   Sat Jul 1 21:31:23 2006 -0700
9470
9471    Work around recent autoconf (2.59?) changes in directory expansion.
9472    
9473    Recent autoconf versions have changed how directory names are managed in the
9474    configure.ac script; automatic 'eval' invocations now occur as a part of the
9475    AC_DEFINE_DIR macro which make it imperative that AC_DEFINE_DIR be executed
9476    before the variables are used in further macro definitions. Also, ${datadir}
9477    is apparantly an old name for ${datarootdir} as ${datadir} doesn't get
9478    expanded correctly by AC_DEFINE_DIR. This looks like an autoconf bug, but it
9479    is easy to work around by just using ${datarootdir} instead of ${datadir}.
9480
9481commit be70a31229aa106aff0a09d78c00812682cd3475
9482Author: Keith Packard <keithp@neko.keithp.com>
9483Date:   Sat Jul 1 01:56:05 2006 -0700
9484
9485    Xlib/XCB: handle 32-bit sequence wrap.
9486    
9487    Replace broken sequence compares with XCB_SEQUENCE_COMPARE (copied from
9488    XCB).
9489    Account for XCB sequence 0 handling.
9490
9491commit 99c711707ad08e1396e123b1c7df687c560a489a
9492Author: Donnie Berkholz <spyderous@gentoo.org>
9493Date:   Thu Jun 29 19:43:20 2006 -0700
9494
9495    Bump version to 1.0.3.
9496
9497commit cde3c0dd72af2b490e80cffca962e3487dd31be4
9498Author: Donnie Berkholz <spyderous@gentoo.org>
9499Date:   Thu Jun 29 19:39:36 2006 -0700
9500
9501    Bug #7349: Missed one of the setuid fixes.
9502    (cherry picked from e9614c963b532f46a7932c2305a4b177a996a222 commit)
9503
9504commit df3fef8983d96c59d481c4cdaf1f271d54a116d2
9505Author: Matthias Hopf <mhopf@suse.de>
9506Date:   Thu Jun 29 18:59:57 2006 +0200
9507
9508    Update to final Compose cache directory location.
9509    (cherry picked from abda4d223e9cce9ac6e7b5d82a5680d9a502e52a commit)
9510
9511commit 912ef198292d3053daa810f842510e5d62ded0f0
9512Author: Matthias Hopf <mhopf@suse.de>
9513Date:   Thu Jun 29 17:41:41 2006 +0200
9514
9515    Fix alignment of trees and wide chars in the cache.
9516    (cherry picked from 40a64c61f8bc33d497e1224e02c41dea2d424d97 commit)
9517
9518commit 2ece832118b3ee5d8ed19f1ee9b1c822b70ec6e9
9519Author: Matthias Hopf <mhopf@suse.de>
9520Date:   Wed Jun 28 19:17:03 2006 +0200
9521
9522    First (dummy) entry of compose caches was not initialized and thus contained varying garbage.
9523    (cherry picked from f442dcaa56f8ecb7443e8e51c88ed97e10dbdba3 commit)
9524
9525commit e9614c963b532f46a7932c2305a4b177a996a222
9526Author: Donnie Berkholz <spyderous@gentoo.org>
9527Date:   Thu Jun 29 19:39:36 2006 -0700
9528
9529    Bug #7349: Missed one of the setuid fixes.
9530
9531commit abda4d223e9cce9ac6e7b5d82a5680d9a502e52a
9532Author: Matthias Hopf <mhopf@suse.de>
9533Date:   Thu Jun 29 18:59:57 2006 +0200
9534
9535    Update to final Compose cache directory location.
9536
9537commit 40a64c61f8bc33d497e1224e02c41dea2d424d97
9538Author: Matthias Hopf <mhopf@suse.de>
9539Date:   Thu Jun 29 17:41:41 2006 +0200
9540
9541    Fix alignment of trees and wide chars in the cache.
9542
9543commit f442dcaa56f8ecb7443e8e51c88ed97e10dbdba3
9544Author: Matthias Hopf <mhopf@suse.de>
9545Date:   Wed Jun 28 19:17:03 2006 +0200
9546
9547    First (dummy) entry of compose caches was not initialized and thus contained varying garbage.
9548
9549commit bdbe464d774e01d317f67c63ebbda2fd0edbbdd1
9550Author: Donnie Berkholz <spyderous@gentoo.org>
9551Date:   Thu Jun 22 23:59:03 2006 -0700
9552
9553    Delete ChangeLog, and add a rule to autogenerate it for distribution. Also
9554    add 'foreign' to AM_INIT_AUTOMAKE to make autotools happy with not having a
9555    ChangeLog.
9556    (cherry picked from b0edfb8df16ab8c9959b83a4c966d55a59c4e295 commit)
9557
9558commit b0edfb8df16ab8c9959b83a4c966d55a59c4e295
9559Author: Donnie Berkholz <donnie@comet.(none)>
9560Date:   Thu Jun 22 23:47:38 2006 -0700
9561
9562    Delete ChangeLog, and add a rule to autogenerate it for distribution. Also
9563    add 'foreign' to AM_INIT_AUTOMAKE to make autotools happy with not having a
9564    ChangeLog.
9565
9566commit dd54981aa76e9dfdc4c3302d6105b4b229447c84
9567Author: Donnie Berkholz <donnie@comet.(none)>
9568Date:   Thu Jun 22 15:47:38 2006 -0700
9569
9570    Bump version to 1.0.2.
9571
9572commit c93539d974a67f596a5eb5b65042d26602546c72
9573Author: Matthieu Herrb <matthieu@deville.herrb.com>
9574Date:   Tue Jun 20 21:04:03 2006 +0200
9575
9576    Check setuid() return value.
9577    (cherry picked from 5169d0e08ff6acb350a6ea768623f5ff0b85b05f commit)
9578
9579commit 605533f814ab7892991578706a6458f61a89ca4d
9580Author: Derek Wang <derek.wang@sun.com>
9581Date:   Mon Jun 19 11:05:37 2006 -0700
9582
9583    Sun bug 6209243: XExtentsOfFontSet causes segfault when font set not loaded
9584    (cherry picked from eff50c94a07194297e705da53d9fbb3a40fb9ad4 commit)
9585
9586commit 5bbd0822c5a926de0ed293437fb9f2b75cf3c4f4
9587Author: Scott Revelt <scott.revelt@sun.com>
9588Date:   Fri Jun 16 19:11:13 2006 -0700
9589
9590    Sun bug 4022903: Xcms routines may fail if sscanf() is looking for separators
9591    based on locale that doesn't match those used in the Xcms.txt
9592    (cherry picked from 94f3213fc4bd6ec49bfb68e8b4a4fddea2bf3baa commit)
9593
9594commit 0b05cd4da6134df527fb010384a9fd569bd5d6a3
9595Author: Alan Coopersmith <alanc@alf.(none)>
9596Date:   Fri Jun 16 18:53:33 2006 -0700
9597
9598    Add *~ to ignore emacs droppings
9599    (cherry picked from c33d7b8282ac196b36229be26442296768c16f3e commit)
9600
9601commit 214658b76b56768f69c3959a11525aae7813f448
9602Author: Matthias Hopf <mhopf@suse.de>
9603Date:   Fri Jun 16 15:36:40 2006 +0200
9604
9605    Bug #3104: Compose table cache for faster X11 application starts.
9606    (cherry picked from 1f4c9893ade08bad30c9bd12a36bee57d30b001e commit)
9607
9608commit 13968a23aaea838ba4b69e42e8900f803499e091
9609Author: Matthias Hopf <mhopf@suse.de>
9610Date:   Tue Jun 13 20:23:46 2006 +0200
9611
9612    Bug #3104: Compose table cache for faster X11 application starts.
9613    (cherry picked from 4fe22647e6010a2886c2f3a7093adeaeb6678faa commit)
9614
9615commit e7f8bca08f5476d0ca262097639ac7d424bb4d10
9616Author: Lubos Lunak <llunak@suse.de>
9617Date:   Mon Jun 12 18:48:08 2006 +0200
9618
9619    Bug #3104: Compose table cache for faster X11 application starts.
9620    (cherry picked from 1d28a655629a11ea7fd1e5df4c7b77dd4b63e3be commit)
9621
9622commit f506aaf8ac9aae1ee8daaef6cde34ee85aecd641
9623Author: Matthias Hopf <mhopf@suse.de>
9624Date:   Fri Jun 9 18:24:02 2006 +0200
9625
9626    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.
9627    (cherry picked from 9354351fcb8baeaab85250d14409cfb4fa50f3e9 commit)
9628
9629commit 0e6d5e979aacb0c295ce79369ecc5f22ffa7922c
9630Author: Jamey Sharp <jamey@minilop.net>
9631Date:   Wed Jun 7 20:29:05 2006 -0700
9632
9633    Fix bug #7035: unnecessary memmove in XOpenDisplay.
9634    Using memmove on the connection setup data causes a problem for XCB, but making
9635    Xlib stop doing that should be harmless for non-XCB as well.
9636    (cherry picked from b18713ec3f36a10b3cdb1e16f9550e1d2e05dff0 commit)
9637
9638commit cd7328c46ae72903ed02832828891b2dab4d5ee0
9639Author: Daniel Stone <daniels@preemptive.fooishbar.org>
9640Date:   Sat Jun 3 13:51:51 2006 +0300
9641
9642    Fix threading support on GNU/kFreeBSD systems.  (Robert Millan)
9643    (cherry picked from e3acee88cfcc4ef0fa8a7db39763a5ebe2e985cb commit)
9644
9645commit c336eb6b80a6f91da1d0b3d28634a2cfde324670
9646Merge: 33556ca ad9ebbd
9647Author: Donnie Berkholz <donnie@comet.(none)>
9648Date:   Thu Jun 22 14:25:35 2006 -0700
9649
9650    Merge branch 'stable' of http://people.freedesktop.org/~jamey/libX11 into stable
9651
9652commit 213dacad21740466e7ab31b01d3fc513fe4b3e74
9653Author: Daniel Stone <daniel@fooishbar.org>
9654Date:   Thu Jun 22 17:20:59 2006 +0300
9655
9656    Bump to 1.0.99.0 to avoid confusion.
9657
9658commit efedfd68e31bcee2d21ac340be8dc9e1825ec890
9659Merge: e3acee8 4b8eb5d
9660Author: Daniel Stone <daniel@fooishbar.org>
9661Date:   Thu Jun 22 16:53:45 2006 +0300
9662
9663    Merge branch 'master' of git+ssh://git.freedesktop.org/srv/git.freedesktop.org/git/xorg/lib/libX11
9664
9665commit 4b8eb5d4a1da73a94b5a6ab12e34784aae4c79c5
9666Merge: 5169d0e eff50c9
9667Author: Matthieu Herrb <matthieu@deville.herrb.com>
9668Date:   Tue Jun 20 21:05:15 2006 +0200
9669
9670    Merge branch 'master' of git+ssh://herrb@git.freedesktop.org/git/xorg/lib/libX11
9671
9672commit 5169d0e08ff6acb350a6ea768623f5ff0b85b05f
9673Author: Matthieu Herrb <matthieu@deville.herrb.com>
9674Date:   Tue Jun 20 21:04:03 2006 +0200
9675
9676    Check setuid() return value.
9677
9678commit eff50c94a07194297e705da53d9fbb3a40fb9ad4
9679Author: Derek Wang <derek.wang@sun.com>
9680Date:   Mon Jun 19 11:05:37 2006 -0700
9681
9682    Sun bug 6209243: XExtentsOfFontSet causes segfault when font set not loaded
9683
9684commit 94f3213fc4bd6ec49bfb68e8b4a4fddea2bf3baa
9685Author: Scott Revelt <scott.revelt@sun.com>
9686Date:   Fri Jun 16 19:11:13 2006 -0700
9687
9688    Sun bug 4022903: Xcms routines may fail if sscanf() is looking for separators
9689    based on locale that doesn't match those used in the Xcms.txt
9690
9691commit c33d7b8282ac196b36229be26442296768c16f3e
9692Author: Alan Coopersmith <alanc@alf.(none)>
9693Date:   Fri Jun 16 18:53:33 2006 -0700
9694
9695    Add *~ to ignore emacs droppings
9696
9697commit 1f4c9893ade08bad30c9bd12a36bee57d30b001e
9698Author: Matthias Hopf <mhopf@suse.de>
9699Date:   Fri Jun 16 15:36:40 2006 +0200
9700
9701    Bug #3104: Compose table cache for faster X11 application starts.
9702
9703commit 4fe22647e6010a2886c2f3a7093adeaeb6678faa
9704Author: Matthias Hopf <mhopf@suse.de>
9705Date:   Tue Jun 13 20:23:46 2006 +0200
9706
9707    Bug #3104: Compose table cache for faster X11 application starts.
9708
9709commit 1d28a655629a11ea7fd1e5df4c7b77dd4b63e3be
9710Author: Lubos Lunak <llunak@suse.de>
9711Date:   Mon Jun 12 18:48:08 2006 +0200
9712
9713    Bug #3104: Compose table cache for faster X11 application starts.
9714
9715commit 9354351fcb8baeaab85250d14409cfb4fa50f3e9
9716Author: Matthias Hopf <mhopf@suse.de>
9717Date:   Fri Jun 9 18:24:02 2006 +0200
9718
9719    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.
9720
9721commit b18713ec3f36a10b3cdb1e16f9550e1d2e05dff0
9722Author: Jamey Sharp <jamey@minilop.net>
9723Date:   Wed Jun 7 20:29:05 2006 -0700
9724
9725    Fix bug #7035: unnecessary memmove in XOpenDisplay.
9726    Using memmove on the connection setup data causes a problem for XCB, but making
9727    Xlib stop doing that should be harmless for non-XCB as well.
9728
9729commit ad9ebbd2424bc2699944ffdf4e19e13f9dd8ab84
9730Author: Daniel Stone <daniels@preemptive.fooishbar.org>
9731Date:   Sat Jun 3 12:57:55 2006 +0300
9732
9733    Bug #2186: Add cs_CZ.iso8859-2 alias.
9734
9735commit 9e7765e0b1cbaae6643072d91066ba1201b36227
9736Author: Daniel Stone <daniel@fooishbar.org>
9737Date:   Fri Jun 2 02:46:29 2006 +0300
9738
9739    nls: Serbian (sr_CS) update (#5575)
9740    
9741    Bug #5575: 'Yugoslavia' has changed to Serbia & Montenegro, along with a
9742    corresponding locale change.  Update compose.dir.pre, locale.alias.pre,
9743    and locale.dir.pre.  (Milos Komarcevic)
9744
9745commit a4ac2242b588da23044a20aa999ae84d4de7b2d8
9746Author: Daniel Stone <daniel@fooishbar.org>
9747Date:   Fri Jun 2 02:24:25 2006 +0300
9748
9749    im: add Braille input method (#6296)
9750    
9751    Bug #6296: Add a Braille input method.  (Samuel Thibault)
9752
9753commit 90de1e2e141ec591048a76cb695579ef809a28d3
9754Author: Daniel Stone <daniel@fooishbar.org>
9755Date:   Fri Jun 2 02:22:17 2006 +0300
9756
9757    xkb support: small typo
9758
9759commit 4c3e34bece7402f08139d34d1ef5834e3cf533c7
9760Author: Daniel Stone <daniel@fooishbar.org>
9761Date:   Fri Jun 2 01:50:24 2006 +0300
9762
9763    en_US.UTF-8 Compose.pre: updates from Simos (#5129)
9764    
9765    Bug #5129: Numerous updates from Simos Xenitellis, fixing Unicode keysyms,
9766    adding Unicode character names, removing duplicate entries, et al.
9767
9768commit 0c6473dd329c7334ae511884bcb6e73e632c784f
9769Author: Daniel Stone <daniel@fooishbar.org>
9770Date:   Fri Jun 2 01:44:53 2006 +0300
9771
9772    nls: fix use of non-keysym dead_space (#5107)
9773    
9774    Bug #5107: Change users of dead_space to space.
9775
9776commit 6f99f6349de5120f1cb7e02fbc97849341bc48e8
9777Author: Daniel Stone <daniel@fooishbar.org>
9778Date:   Fri Jun 2 01:41:18 2006 +0300
9779
9780    optional XKB support fix
9781    
9782    Fix compilation with --disable-xkb.
9783
9784commit 217d43ed44ced901122093af3ef1294e1736bb77
9785Author: Daniel Stone <daniel@fooishbar.org>
9786Date:   Fri Jun 2 01:39:12 2006 +0300
9787
9788    i18n: separate data and lib directories
9789    
9790    Break out locale data into separate data and library directories, under
9791    $(datadir) and $(libdir), respectively, by default.
9792
9793commit 92fa7fcde8df22830fca7c0275ab201033f7909c
9794Author: Adam Jackson <ajax@benzedrine.nwnk.net>
9795Date:   Thu May 11 14:04:48 2006 -0400
9796
9797    libXcursor.so.1, not libXcursor.so
9798
9799commit 135b4df13ed7c35dbae8975f302fc1fb8412d7c0
9800Author: Daniel Stone <daniels@preemptive.fooishbar.org>
9801Date:   Wed May 10 18:06:03 2006 +0300
9802
9803    XKBMisc.c: use Xfree, not xfree
9804    
9805    Use Xfree() instead of xfree() when freeing interps.
9806
9807commit 3518d772b08e3433bc28b4d8d293fa53ca25f0ee
9808Author: Daniel Stone <daniels@preemptive.fooishbar.org>
9809Date:   Wed May 10 14:51:37 2006 +0300
9810
9811    locale.alias.pre: bg_BG typo fix
9812    
9813    Fix typo (be_BG.UTF-8 rather than bg_BG.UTF-8) in locale.alias.pre.
9814
9815commit cc533db60cb64dc163c66451933a9bf77c519062
9816Author: Daniel Stone <daniels@endtroducing.localdomain>
9817Date:   Sun Apr 9 22:22:03 2006 +0300
9818
9819    Coverity #203, #204: Fix potential NULL dereferences.
9820
9821commit b83adf7dfd6157694fe4f232012fef36cd9666da
9822Author: Daniel Stone <daniels@endtroducing.localdomain>
9823Date:   Sun Apr 9 22:20:25 2006 +0300
9824
9825    Coverity #205: Fix potential NULL dereference.
9826
9827commit 2d0cd10ad907864d0136739eaac459779c9a5332
9828Author: Daniel Stone <daniels@endtroducing.localdomain>
9829Date:   Sun Apr 9 22:18:20 2006 +0300
9830
9831    Coverity #209: Fix potential NULL dereference. (Alan Coopersmith)
9832
9833commit dc2f3966068d66a564aa452cab9f0c26657fa1df
9834Author: Daniel Stone <daniels@preemptive.research.nokia.com>
9835Date:   Fri Apr 7 18:11:52 2006 +0300
9836
9837    Coverity #826: Fix potential memory leak.
9838
9839commit 23df609ec451a01c77e8f31ecc85c5af7c62efed
9840Author: Daniel Stone <daniels@preemptive.research.nokia.com>
9841Date:   Fri Apr 7 17:49:41 2006 +0300
9842
9843    Bug #1625: Include keysym.h from Xutil.h.
9844
9845commit 5262a1945c543a3419ed626e1deb09ef5b4584c1
9846Author: Eric Anholt <anholt@leguin.anholt.net>
9847Date:   Wed Apr 5 17:12:15 2006 -0700
9848
9849    Check if visualList == NULL, not nVisualsMatched == 0. NULL happens in more
9850    
9851    cases (allocation failure) than nVisualsMatched == 0.  Noticed from inspection
9852    of Coverity #599, #600.
9853
9854commit 8b42635f577468bb143ca593cdd9fb3450ad712c
9855Author: Eric Anholt <anholt@leguin.anholt.net>
9856Date:   Wed Apr 5 16:42:26 2006 -0700
9857
9858    Coverity #558: Free newly-allocated Database in error path.
9859
9860commit 6d06e41d1f431b3f1a1fcf69161e0af411325e9f
9861Author: Eric Anholt <anholt@leguin.anholt.net>
9862Date:   Wed Apr 5 16:38:52 2006 -0700
9863
9864    Coverity #582: Free newly-allocated region in error path.
9865
9866commit 5fd8f79ad3e38df74d9a6cb573617542c101df1a
9867Author: Daniel Stone <daniels@preemptive.research.nokia.com>
9868Date:   Fri Mar 17 15:58:39 2006 +0200
9869
9870    Properly clip bounds when only one point is defining an outline.
9871
9872commit 1e1572eb7f8394ce152e99d96f711ccf9083baf9
9873Author: Matthieu Herrb <matthieu@bluenote.herrb.com>
9874Date:   Sat Mar 11 15:39:15 2006 +0100
9875
9876    Fix prototype of XConfigureWindow(). Bugzilla #6023.
9877
9878commit 1da8bd904f1fc79d63d368473531b438d08bfe37
9879Author: Jeremy C. Reed <reed@reedmedia.net>
9880Date:   Tue Feb 21 14:10:22 2006 -0800
9881
9882    Set XTHREADLIB correctly for dragonfly platforms.
9883
9884commit c9768133e3f65ac4bb64e3941e2d6ae36897ec9c
9885Author: Jamey Sharp <jamey@minilop.net>
9886Date:   Sun Feb 19 12:29:27 2006 -0800
9887
9888    Update .gitignores for *.o and nls/locale.dir*.
9889
9890commit efcbde6ba0b770bb0d4c7818e307712161011f10
9891Author: Jamey Sharp <jamey@minilop.net>
9892Date:   Sun Feb 19 12:28:41 2006 -0800
9893
9894    Move .cvsignore to .gitignore.
9895
9896commit e3acee88cfcc4ef0fa8a7db39763a5ebe2e985cb
9897Author: Daniel Stone <daniels@preemptive.fooishbar.org>
9898Date:   Sat Jun 3 13:51:51 2006 +0300
9899
9900    Fix threading support on GNU/kFreeBSD systems.  (Robert Millan)
9901
9902commit f1bd3152359ddfadd0d043006036c239f3e2907b
9903Author: Daniel Stone <daniels@preemptive.fooishbar.org>
9904Date:   Sat Jun 3 12:57:55 2006 +0300
9905
9906    Bug #2186: Add cs_CZ.iso8859-2 alias.
9907
9908commit 2b1b79d90db1d7f0472718b8c010c36275994195
9909Author: Daniel Stone <daniel@fooishbar.org>
9910Date:   Fri Jun 2 02:46:29 2006 +0300
9911
9912    nls: Serbian (sr_CS) update (#5575)
9913    Bug #5575: 'Yugoslavia' has changed to Serbia & Montenegro, along with a
9914    corresponding locale change.  Update compose.dir.pre, locale.alias.pre,
9915    and locale.dir.pre.  (Milos Komarcevic)
9916
9917commit d6fba1f44d404362d3be1b421f57d7ccc3c8cdac
9918Author: Daniel Stone <daniel@fooishbar.org>
9919Date:   Fri Jun 2 02:24:25 2006 +0300
9920
9921    im: add Braille input method (#6296)
9922    Bug #6296: Add a Braille input method.  (Samuel Thibault)
9923
9924commit 0fed7d3185addd610e917dcdaa0676f0256c0ec5
9925Author: Daniel Stone <daniel@fooishbar.org>
9926Date:   Fri Jun 2 02:22:17 2006 +0300
9927
9928    xkb support: small typo
9929
9930commit cf7d9f9e46f3ce01ac04a95978918d5c0f3f3cf9
9931Author: Daniel Stone <daniel@fooishbar.org>
9932Date:   Fri Jun 2 01:50:24 2006 +0300
9933
9934    en_US.UTF-8 Compose.pre: updates from Simos (#5129)
9935    Bug #5129: Numerous updates from Simos Xenitellis, fixing Unicode keysyms,
9936    adding Unicode character names, removing duplicate entries, et al.
9937
9938commit 332d45fce9fdbf59168d90a133af1f580a589e54
9939Author: Daniel Stone <daniel@fooishbar.org>
9940Date:   Fri Jun 2 01:44:53 2006 +0300
9941
9942    nls: fix use of non-keysym dead_space (#5107)
9943    Bug #5107: Change users of dead_space to space.
9944
9945commit 34f59ce3d1e2eb2971b732d11871c6fff8a1c75b
9946Author: Daniel Stone <daniel@fooishbar.org>
9947Date:   Fri Jun 2 01:41:18 2006 +0300
9948
9949    optional XKB support fix
9950    Fix compilation with --disable-xkb.
9951
9952commit c5940a0b85edec4003f91a59fc3c44f538accfe1
9953Author: Daniel Stone <daniel@fooishbar.org>
9954Date:   Fri Jun 2 01:39:12 2006 +0300
9955
9956    i18n: separate data and lib directories
9957    Break out locale data into separate data and library directories, under
9958    $(datadir) and $(libdir), respectively, by default.
9959
9960commit 33556ca81db2419b9d2a37664c4cea2069414b37
9961Author: Adam Jackson <ajax@benzedrine.nwnk.net>
9962Date:   Fri May 12 14:49:17 2006 -0400
9963
9964    Bump to 1.0.1
9965
9966commit 80d88557626fae9debc404de33d7fb5d69a6049d
9967Author: Adam Jackson <ajax@benzedrine.nwnk.net>
9968Date:   Thu May 11 14:06:28 2006 -0400
9969
9970    libXcursor.so.1, not libXcursor.so
9971
9972commit 5384f27dfe3c94c462c137ab3540eaa5646ca4c6
9973Author: Adam Jackson <ajax@benzedrine.nwnk.net>
9974Date:   Thu May 11 14:04:48 2006 -0400
9975
9976    libXcursor.so.1, not libXcursor.so
9977
9978commit 01f4d433eed6b70c6e9636157acac022054fdeb6
9979Author: Jamey Sharp <jamey@minilop.net>
9980Date:   Wed May 10 17:02:52 2006 -0700
9981
9982    Count any partial request towards the current Xlib sequence number.
9983
9984commit 770cfbd1fcc80a83a9be0c4f68727b8af2c8f4a4
9985Author: Daniel Stone <daniels@preemptive.fooishbar.org>
9986Date:   Wed May 10 18:06:03 2006 +0300
9987
9988    XKBMisc.c: use Xfree, not xfree
9989    Use Xfree() instead of xfree() when freeing interps.
9990
9991commit 22a5255b80b80772612279bc840a953edd0e3442
9992Author: Daniel Stone <daniels@preemptive.fooishbar.org>
9993Date:   Wed May 10 14:51:37 2006 +0300
9994
9995    locale.alias.pre: bg_BG typo fix
9996    Fix typo (be_BG.UTF-8 rather than bg_BG.UTF-8) in locale.alias.pre.
9997
9998commit 9cac8c9824874ca7d835f001a4efa910b7fdd822
9999Merge: 19b8840 e514bc8
10000Author: Daniel Stone <daniels@preemptive.fooishbar.org>
10001Date:   Wed May 10 14:50:37 2006 +0300
10002
10003    Merge branch 'master' of git+ssh://git.freedesktop.org/srv/git.freedesktop.org/git/xorg/lib/libX11
10004
10005commit e514bc875f27f4bf197b06b8315eeca526195915
10006Author: Jamey Sharp <jamey@minilop.net>
10007Date:   Tue May 9 12:41:59 2006 -0700
10008
10009    Assert that dpy->request does not go backwards. Catches #5839 earlier.
10010
10011commit fc1159137365a599bf611ee001f439416952c4e0
10012Author: Jamey Sharp <jamey@minilop.net>
10013Date:   Sun May 7 17:40:01 2006 -0700
10014
10015    In _XPutXCBBuffer, set aside any trailing partial request until the last byte is available.
10016
10017commit c394480a4247213239822808e3f6e7c6cd6decd9
10018Author: Jamey Sharp <jamey@minilop.net>
10019Date:   Sun May 7 16:58:13 2006 -0700
10020
10021    Update for XCB ConnSetupSuccessRep name change.
10022
10023commit 7672bf93bc1200905461aeb0a2dc2c2696410b93
10024Author: Daniel Stone <daniels@endtroducing.localdomain>
10025Date:   Sun Apr 9 22:22:03 2006 +0300
10026
10027    Coverity #203, #204: Fix potential NULL dereferences.
10028
10029commit cfcafbe48d22d9a0cd50eb9454ce0ff88f0129d3
10030Author: Daniel Stone <daniels@endtroducing.localdomain>
10031Date:   Sun Apr 9 22:20:25 2006 +0300
10032
10033    Coverity #205: Fix potential NULL dereference.
10034
10035commit b6771501feea98d037032f82117b6d4f15779f07
10036Author: Daniel Stone <daniels@endtroducing.localdomain>
10037Date:   Sun Apr 9 22:18:20 2006 +0300
10038
10039    Coverity #209: Fix potential NULL dereference.  (Alan Coopersmith)
10040
10041commit 19b8840af241087bb17b1edabcaa9b28fdd0a1dc
10042Author: Daniel Stone <daniels@preemptive.research.nokia.com>
10043Date:   Fri Apr 7 18:11:52 2006 +0300
10044
10045    Coverity #826: Fix potential memory leak.
10046
10047commit 3a16f262abe48b44ed641525e894bc22e13bf72a
10048Author: Daniel Stone <daniels@preemptive.research.nokia.com>
10049Date:   Fri Apr 7 17:49:41 2006 +0300
10050
10051    Bug #1625: Include keysym.h from Xutil.h.
10052
10053commit 2481b767ae96e2f2503c0390545932c8397b090f
10054Author: Eric Anholt <anholt@leguin.anholt.net>
10055Date:   Wed Apr 5 17:12:15 2006 -0700
10056
10057    Check if visualList == NULL, not nVisualsMatched == 0.  NULL happens in more
10058    cases (allocation failure) than nVisualsMatched == 0.  Noticed from inspection
10059    of Coverity #599, #600.
10060
10061commit 152b17e47d878c2d928eb74581aa69d925a29123
10062Author: Eric Anholt <anholt@leguin.anholt.net>
10063Date:   Wed Apr 5 16:42:26 2006 -0700
10064
10065    Coverity #558: Free newly-allocated Database in error path.
10066
10067commit bc62b99ef36edb34035911c42104be7f6f9d2333
10068Author: Eric Anholt <anholt@leguin.anholt.net>
10069Date:   Wed Apr 5 16:38:52 2006 -0700
10070
10071    Coverity #582: Free newly-allocated region in error path.
10072
10073commit d47f0b3cec1388f7ce60ab2af91df0dea0f221c5
10074Author: Jamey Sharp <jamey@minilop.net>
10075Date:   Fri Mar 31 22:53:07 2006 -0800
10076
10077    Fix buggy interaction with XCB when running out of XIDs.
10078
10079commit e3f452571824d6a875bbf582946de185de9e01e9
10080Author: Jamey Sharp <jamey@minilop.net>
10081Date:   Fri Mar 31 22:52:14 2006 -0800
10082
10083    Add explicit include of Xmd.h to work around bug including both xcb.h and Xmd.h simultaneously.
10084
10085commit 2363b74ca795c1b3a73c9e572532ba5191adec5b
10086Author: Daniel Stone <daniels@preemptive.research.nokia.com>
10087Date:   Fri Mar 17 15:58:39 2006 +0200
10088
10089    Properly clip bounds when only one point is defining an outline.
10090
10091commit e876efb8aa410f2f5c87aaaa7042f847c4ff96f7
10092Merge: be266b2 f71ea0b
10093Author: Matthieu Herrb <matthieu@bluenote.herrb.com>
10094Date:   Sat Mar 11 15:40:35 2006 +0100
10095
10096    Merge branch 'master' of git+ssh://herrb@git.freedesktop.org/git/xorg/lib/libX11
10097
10098commit be266b201dc13530a302a7572283ccd3f32aad87
10099Author: Matthieu Herrb <matthieu@bluenote.herrb.com>
10100Date:   Sat Mar 11 15:39:15 2006 +0100
10101
10102    Fix prototype of XConfigureWindow(). Bugzilla #6023.
10103
10104commit f71ea0bc737c5a42e9e022b86e7ec3b4f846d31c
10105Author: Jamey Sharp <jamey@minilop.net>
10106Date:   Fri Mar 3 11:08:41 2006 -0800
10107
10108    Update for XCBSendRequest sequence number API changes.
10109
10110commit a11d1b0ae674320cf9897f6a83ec08c65eca8d9b
10111Author: Jamey Sharp <jamey@minilop.net>
10112Date:   Fri Mar 3 01:42:49 2006 -0800
10113
10114    Use the full_sequence from XCBGenericError/Event for setting last_request_read, and quit replacing _XSetLastRequestRead with an XCB-specific version.
10115
10116commit d8ba4ae7045b227f8b675628b9094dded02f1c08
10117Author: Jamey Sharp <jamey@minilop.net>
10118Date:   Thu Mar 2 23:43:26 2006 -0800
10119
10120    Bugfix: Rely on XCBSendRequest to leave iov in a well-defined state, and place the spare iovecs at the beginning of the array.
10121
10122commit f9afb5a54435c30961306080e9358d4240ecb844
10123Author: Jamey Sharp <jamey@minilop.net>
10124Date:   Thu Mar 2 23:34:19 2006 -0800
10125
10126    assert() that we will not infinite loop or read uninitialized memory.
10127
10128commit d3512ef3aae5b036a8ce6579318108f1ec20ee22
10129Author: Jamey Sharp <jamey@minilop.net>
10130Date:   Thu Mar 2 15:58:52 2006 -0800
10131
10132    Quit relying on XCBSendRequest to pad to 4-byte boundaries and do it ourselves.
10133
10134commit fb590c15a740264ee867d15a2547072e43b21eed
10135Author: Jamey Sharp <jamey@minilop.net>
10136Date:   Thu Mar 2 12:06:04 2006 -0800
10137
10138    Handle errors correctly when Xlib owns the event queue and XCB has the checked error feature.
10139
10140commit 8356ba37d307a9eda895a6bf41ef727bbfc9a695
10141Author: Jamey Sharp <jamey@minilop.net>
10142Date:   Mon Feb 27 11:51:47 2006 -0800
10143
10144    Use the new XCBSendRequest flag, XCB_REQUEST_RAW, to hand a bag-o-bytes down uninterpreted.
10145
10146commit 07bdf1fbbf2418f866df1a2140d514dd3f035139
10147Author: Jamey Sharp <jamey@minilop.net>
10148Date:   Sun Feb 26 15:46:01 2006 -0800
10149
10150    Update for new XCBSendRequest API.
10151
10152commit 409a08cff8347d39e0e6c53c9f380d21f221f5ac
10153Author: Jamey Sharp <jamey@minilop.net>
10154Date:   Thu Feb 23 18:12:31 2006 -0800
10155
10156    Performance fix: Replace calls to XCBGetRequestRead with the new XCBGetQueuedRequestRead. Cuts a lot of syscalls.
10157
10158commit ec30a27341b97620b07dd886f98d1d7664a67685
10159Author: Jamey Sharp <jamey@minilop.net>
10160Date:   Thu Feb 23 18:01:46 2006 -0800
10161
10162    Minor performance fix: Access dpy->xcl->connection directly instead of calling XCBConnectionOfDisplay. It happens a lot.
10163
10164commit 53c471c6a835d5cedeca99f2c97058d196a3fd7e
10165Author: Jamey Sharp <jamey@minilop.net>
10166Date:   Thu Feb 23 11:46:09 2006 -0800
10167
10168    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.
10169
10170commit 41c0121a8718b530feaf7fe315b673d9b8defce2
10171Author: Jamey Sharp <jamey@minilop.net>
10172Date:   Tue Feb 21 21:25:41 2006 -0800
10173
10174    Refactor the code that passes requests down to XCB into a separate issue_complete_request function.
10175
10176commit 67d06e0fe468dca22847aa14d3f917128f89f9cf
10177Author: Jamey Sharp <jamey@minilop.net>
10178Date:   Tue Feb 21 15:33:05 2006 -0800
10179
10180    If we have not actually put the buffer back, deferred invariants may not hold. This is OK.
10181
10182commit 434bf80b4053ff1ba82adf65de1f76b4d3731bf1
10183Author: Jeremy C. Reed <reed@reedmedia.net>
10184Date:   Tue Feb 21 14:10:22 2006 -0800
10185
10186    Set XTHREADLIB correctly for dragonfly platforms.
10187
10188commit b24834762e975bd319f9ab5c7cf790b2a02a9474
10189Author: Jamey Sharp <jamey@minilop.net>
10190Date:   Tue Feb 21 14:03:26 2006 -0800
10191
10192    Sometimes functions other than _XUnlockDisplay call _XPutXCBBuffer. Some invariants appropriate for Unlock are not appropriate otherwise: move them to _XUnlockDisplay.
10193
10194commit 99b8defd0d5e6993071e21638128c9de2574b37d
10195Author: Jamey Sharp <jamey@minilop.net>
10196Date:   Tue Feb 21 13:04:21 2006 -0800
10197
10198    Execute BeforeFlush hooks on complete buffers, not request-at-a-time.
10199    Traditional Xlib worked this way; I dunno why I changed it.
10200
10201commit 9b01e7849775749182052fe324df9d8e6ceeee99
10202Author: Jamey Sharp <jamey@minilop.net>
10203Date:   Tue Feb 21 12:51:44 2006 -0800
10204
10205    Factor the XCBSendRequest call out of the conditional in _XPutXCBBuffer.
10206
10207commit 7ce7ac882de128955751a5307889db9d712d8a72
10208Author: Jamey Sharp <jamey@minilop.net>
10209Date:   Tue Feb 21 12:44:30 2006 -0800
10210
10211    Quit using a triple-pointer. Almost as if I were a sensible person.
10212
10213commit 35a858be218cdbfa4593d44a67663d5c25297016
10214Author: Jamey Sharp <jamey@minilop.net>
10215Date:   Tue Feb 21 12:21:01 2006 -0800
10216
10217    Remove the XCL_PAD macro.
10218
10219commit e741b70ed2542c5463c57dac44bc37328616733b
10220Author: Jamey Sharp <jamey@minilop.net>
10221Date:   Sun Feb 19 12:29:27 2006 -0800
10222
10223    Update .gitignores for *.o and nls/locale.dir*.
10224
10225commit f25b4b00e1683b0d97dba46dac46d65a9c2270a6
10226Author: Jamey Sharp <jamey@minilop.net>
10227Date:   Sun Feb 19 12:28:41 2006 -0800
10228
10229    Move .cvsignore to .gitignore.
10230
10231commit c7cda56eebaf6ab11403363be14d4948d7d8be38
10232Author: Jamey Sharp <jamey@minilop.net>
10233Date:   Sun Feb 19 11:49:15 2006 -0800
10234
10235    Land XCB support on X.org HEAD.
10236
10237commit 881467b3032261791ef5ec61b3879bb68d0a3d8c
10238Author: Jamey Sharp <jamey@minilop.net>
10239Date:   Sun Feb 19 02:14:11 2006 +0000
10240
10241    Merge the X11 and BIGREQS package sets: they were used in exactly the same places.
10242
10243commit 6b0158dfad714db5b89c04dbea3aedeafa0fb146
10244Author: Jamey Sharp <jamey@minilop.net>
10245Date:   Tue Feb 14 19:37:36 2006 +0000
10246
10247    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.
10248
10249commit 010c3acbb3a6993d39274f42d88c00849acb0fb0
10250Author: Alan Coopersmith <alan.coopersmith@sun.com>
10251Date:   Sun Feb 12 18:19:17 2006 +0000
10252
10253    Bug #5628 <https://bugs.freedesktop.org/show_bug.cgi?id=5628> Shadow pages not created correctly when MANDIR & MANSUFFIX don't match.
10254
10255commit fe8c01c80263457f01b70dc1511b2bd9466b7c96
10256Author: Alan Coopersmith <alan.coopersmith@sun.com>
10257Date:   Fri Feb 3 23:34:43 2006 +0000
10258
10259    Fix typo in .TH line
10260
10261commit b091c217f3c3f60dde78b09a95c150df6c83d7ba
10262Author: Kevin E Martin <kem@kem.org>
10263Date:   Thu Dec 15 00:24:28 2005 +0000
10264
10265    Update package version number for final X11R7 release candidate.
10266
10267commit e7c04e0e65a2a0c70c6ad29ec2d6f4350fd81c2a
10268Author: Kevin E Martin <kem@kem.org>
10269Date:   Tue Dec 6 22:48:41 2005 +0000
10270
10271    Change *man_SOURCES ==> *man_PRE to fix autotools warnings.
10272
10273commit b5c495854d5270e64e6d588388ffa906bfcaac22
10274Author: Kevin E Martin <kem@kem.org>
10275Date:   Sat Dec 3 05:49:42 2005 +0000
10276
10277    Update package version number for X11R7 RC3 release.
10278
10279commit 9e96dbc343c7f27ff47607acd75378ab23903e2a
10280Author: Kevin E Martin <kem@kem.org>
10281Date:   Sat Dec 3 04:41:47 2005 +0000
10282
10283    Add check and cflags for malloc(0) returning NULL.
10284
10285commit 649c37b47909620ccafde3e983de8321cddd74ce
10286Author: Alan Coopersmith <alan.coopersmith@sun.com>
10287Date:   Mon Nov 28 22:03:04 2005 +0000
10288
10289    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)
10290
10291commit 8d1500df66d796ebff2b0d8c02205e5fa6796d4a
10292Author: Alan Coopersmith <alan.coopersmith@sun.com>
10293Date:   Wed Nov 23 22:33:06 2005 +0000
10294
10295    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
10296
10297commit 93cf3747f9ae8d30bd485b41c5ff10397f68f078
10298Author: Eric Anholt <anholt@freebsd.org>
10299Date:   Sun Nov 20 23:17:39 2005 +0000
10300
10301    Add/improve libs .cvsignores.
10302
10303commit fa1f4a08112bfa14d3758f4702733dd3892966c3
10304Author: Kevin E Martin <kem@kem.org>
10305Date:   Sat Nov 19 07:15:39 2005 +0000
10306
10307    Update pkgconfig files to separate library build-time dependencies from application build-time dependencies, and update package deps to work with separate build roots.
10308
10309commit 7012f9b56c594cf40855ba0dbf93af1263417a8c
10310Author: Kevin E Martin <kem@kem.org>
10311Date:   Mon Nov 14 21:51:07 2005 +0000
10312
10313    Fix xf86bigfont pkgconfig dep typo.
10314
10315commit 60a72f47951f46b4e0505d9903a94af3b6bed8ca
10316Author: Kevin E Martin <kem@kem.org>
10317Date:   Wed Nov 9 21:19:12 2005 +0000
10318
10319    Update package version number for X11R7 RC2 release.
10320
10321commit 6bb0c3796b6e1beddc376a896e865704886e1462
10322Author: Kean Johnson <kean@armory.com>
10323Date:   Tue Nov 8 06:33:25 2005 +0000
10324
10325    See ChangeLog entry 2005-11-07 for details.
10326
10327commit 14be0098ad90c3e68bd2d21b00ffabb76f1fd780
10328Author: Kevin E Martin <kem@kem.org>
10329Date:   Tue Nov 1 15:11:50 2005 +0000
10330
10331    Update pkgcheck dependencies to work with separate build roots.
10332
10333commit 1bf71462a972e0fc56de63f5c7fd613b37fc70f1
10334Author: Donnie Berkholz <spyderous@gentoo.org>
10335Date:   Fri Oct 28 10:44:03 2005 +0000
10336
10337    Revert that, it's redundant. But it is worth noting that --disable-xkb is broken, if anyone cares.
10338
10339commit be627a39fe373e2e81fdc263780e70a271d9e0c5
10340Author: Donnie Berkholz <spyderous@gentoo.org>
10341Date:   Fri Oct 28 08:28:08 2005 +0000
10342
10343    Add dependency on inputproto for XI.h.
10344
10345commit 5fae4cb456cb03fb70cd065dbc2ca94c8ed99082
10346Author: Adam Jackson <ajax@nwnk.net>
10347Date:   Fri Oct 21 18:44:24 2005 +0000
10348
10349    Bug #4736: Error decoding for Damage extension. (Jonathan Lennox)
10350
10351commit 1171fa9dc77413f0e90933a565ec07068052afb4
10352Author: Kevin E Martin <kem@kem.org>
10353Date:   Wed Oct 19 02:48:08 2005 +0000
10354
10355    Update package version number for RC1 release.
10356
10357commit 2a2d905706308b9d5a1c16af1067fb390f43850c
10358Author: Alan Coopersmith <alan.coopersmith@sun.com>
10359Date:   Tue Oct 18 00:00:08 2005 +0000
10360
10361    Use @LIB_MAN_SUFFIX@ instead of $(LIB_MAN_SUFFIX) in macro substitutions to work better with BSD make
10362
10363commit 66d35b6971fb26762392a2a8e2c47db46c11116a
10364Author: Alan Coopersmith <alan.coopersmith@sun.com>
10365Date:   Mon Oct 17 21:13:15 2005 +0000
10366
10367    Rename .shadows.DONE to shadows.DONE to avoid some make's thinking it's a suffix rule (reported by Matthieu Herrb)
10368
10369commit a316995a17c084e98ef1b7f25d287c2c08b6d749
10370Author: Donnie Berkholz <spyderous@gentoo.org>
10371Date:   Sun Oct 16 03:03:35 2005 +0000
10372
10373    Change '==' to portable '='.
10374
10375commit b76a072530e884bcbea6ed8fed5aef39361dcfc0
10376Author: Alan Coopersmith <alan.coopersmith@sun.com>
10377Date:   Wed Oct 12 00:04:50 2005 +0000
10378
10379    configure.ac Use XORG_MAN_SECTIONS instead of custom man section configuration. Add shadow man pages for man pages that document multiple functions.
10380
10381commit 8ee5c1429af98206e05a0536f87c0f21a529cdf0
10382Author: Eric Anholt <anholt@freebsd.org>
10383Date:   Tue Oct 11 02:18:36 2005 +0000
10384
10385    Add appropriate pthread libs/flags for FreeBSD, fixing the build of ico and probably others.
10386
10387commit 41ff3b9d1f194a7b56437b650d5f589225c078c6
10388Author: Alan Coopersmith <alan.coopersmith@sun.com>
10389Date:   Sun Oct 9 22:28:39 2005 +0000
10390
10391    Bug #3021 <https://bugs.freedesktop.org/show_bug.cgi?id=3021> Requests and Errors for XFixes are not in XErrorDB (Jonathan Lennox)
10392
10393commit 91ed79852e790049ab54e68f288afb3c953194c9
10394Author: Kevin E Martin <kem@kem.org>
10395Date:   Fri Oct 7 15:00:00 2005 +0000
10396
10397    Clean up generated files
10398    Add missing dist tarball files
10399
10400commit 440399b470c97b159a530602fff11c315aca8d97
10401Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
10402Date:   Wed Oct 5 18:27:10 2005 +0000
10403
10404    Add el_GR.UTF-8 compose file
10405
10406commit 010f0647e25ac617d0f92c8d2b8dda684da545db
10407Author: Daniel Stone <daniel@fooishbar.org>
10408Date:   Fri Sep 30 07:52:46 2005 +0000
10409
10410    Bug #2609: Add Kyrgyz locale (Ilyas Bakirov).
10411
10412commit 3ef2fb67bd8905b208ad7eb790c3843e14cea7ed
10413Author: Daniel Stone <daniel@fooishbar.org>
10414Date:   Fri Sep 30 07:47:55 2005 +0000
10415
10416    Bug #1640: Kinyarwanda locale support. (Steve Murphy)
10417
10418commit 4ae0decabe0960870df0ec165f495166c10a053c
10419Author: Daniel Stone <daniel@fooishbar.org>
10420Date:   Fri Sep 30 07:40:03 2005 +0000
10421
10422    Bug #2268: Add South African locales (Dwayne Bailey). Some whitespace cleanups, as the parser is a little touchy.
10423
10424commit 3f79eb4c99844f618f1889741d1631c2ffe5385f
10425Author: Daniel Stone <daniel@fooishbar.org>
10426Date:   Fri Sep 30 07:11:19 2005 +0000
10427
10428    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.
10429
10430commit d1237d1483ff972c76a0ac344ec97d5280db0007
10431Author: Alan Coopersmith <alan.coopersmith@sun.com>
10432Date:   Thu Sep 29 21:27:12 2005 +0000
10433
10434    Add Xcms.txt to lib/X11
10435
10436commit 4a86f299693f7376cbe98175f0b0c44d691802b3
10437Author: Alan Coopersmith <alan.coopersmith@sun.com>
10438Date:   Sat Sep 24 20:11:06 2005 +0000
10439
10440    Add XQueryExtension.man
10441
10442commit a057a66e2041d45198a13a4ece7c07068f76f21b
10443Author: Alan Coopersmith <alan.coopersmith@sun.com>
10444Date:   Sat Sep 24 00:16:32 2005 +0000
10445
10446    Add XTHREAD_CFLAGS for platforms that need special defines like
10447    -D_REENTRANT or -D_POSIX_whatever to get re-entrant function definitions. Set XDMCP_LIBS correctly for later libXdmcp tests.
10448
10449commit 3e920a65a7c376ad63eae2240fd06904d25d18bf
10450Author: Alan Coopersmith <alan.coopersmith@sun.com>
10451Date:   Fri Sep 2 23:00:30 2005 +0000
10452
10453    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
10454
10455commit 3eb9f2d693af89d04e2fd92492c8205dce332c9c
10456Author: Kristian Høgsberg <krh@redhat.com>
10457Date:   Thu Sep 1 19:24:13 2005 +0000
10458
10459    Use $(X11_LOCALEDATADIR) instead of @X11_LOCALEDATADIR@ so this install destination can be overridden at make install time.
10460
10461commit 7afa64325183b78d2d6a4862821f8b3e9866105c
10462Author: Matthieu Herrb <matthieu.herrb@laas.fr>
10463Date:   Sun Aug 28 19:45:48 2005 +0000
10464
10465    OpenBSD needs -lpthread for threaded applications too.
10466
10467commit 2b2f3d3877cb7927f196d01a5df6a27bf8d0518a
10468Author: Daniel Stone <daniel@fooishbar.org>
10469Date:   Fri Aug 26 05:16:46 2005 +0000
10470
10471    Define ERRORDB/KEYSYMDB to XERRORDB/XKEYSYMDB if the former is undefined but the latter is. (Gerte Hoogewerf)
10472
10473commit 07066da0902df91c71f2adb81d1a17ec29165553
10474Author: Matthieu Herrb <matthieu.herrb@laas.fr>
10475Date:   Sun Aug 21 15:45:04 2005 +0000
10476
10477    update
10478
10479commit de44d8b111f57bd2f015e085fd8298c5f2a15ef3
10480Author: Matthieu Herrb <matthieu.herrb@laas.fr>
10481Date:   Sun Aug 21 15:38:39 2005 +0000
10482
10483    Threads support for BSD systems:
10484    - need to check for gewtpwuid_r to define mtsafeapi
10485    - build UIThrstubs if needed.
10486
10487commit 60217fdb918bafb2082519efe5cba3b13ad3082a
10488Author: Adam Jackson <ajax@nwnk.net>
10489Date:   Wed Aug 17 19:46:08 2005 +0000
10490
10491    Add xthreadlib variable to x11.pc. Bump to 0.99.1.
10492
10493commit e1f4c6f5e36c1511f66fa1fac76520fd97eecbad
10494Author: Alan Coopersmith <alan.coopersmith@sun.com>
10495Date:   Wed Aug 17 01:27:08 2005 +0000
10496
10497    Fix more broken multi-line .ds macros. Remove extraneous ;'s .
10498
10499commit 1909786f4a7d686369edcfc05a938df115fab37c
10500Author: Alan Coopersmith <alan.coopersmith@sun.com>
10501Date:   Tue Aug 16 19:23:15 2005 +0000
10502
10503    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)
10504
10505commit 83406d69c62070d2eeef23eb47f1ca887f711ee5
10506Author: Alan Coopersmith <alan.coopersmith@sun.com>
10507Date:   Mon Aug 15 19:53:37 2005 +0000
10508
10509    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
10510
10511commit 5bb43de17de8e71d967488a713bf2b3448533444
10512Author: Alan Coopersmith <alan.coopersmith@sun.com>
10513Date:   Sat Aug 6 18:59:49 2005 +0000
10514
10515    Typo fix in output message
10516
10517commit afe34b95862bb3c06cdbe724cb5ec3001a4a5215
10518Author: Alan Coopersmith <alan.coopersmith@sun.com>
10519Date:   Thu Aug 4 02:55:49 2005 +0000
10520
10521    //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)
10522
10523commit 3979a0b88edf6475ce5cfaa386e18ef980bda13c
10524Author: Alan Coopersmith <alan.coopersmith@sun.com>
10525Date:   Thu Aug 4 02:51:30 2005 +0000
10526
10527    //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)
10528
10529commit 34b454df192f4563499c453ccdb8c079f4a20cbe
10530Author: Alan Coopersmith <alan.coopersmith@sun.com>
10531Date:   Sat Jul 30 20:30:46 2005 +0000
10532
10533    Include config.h so Xtrans knows which transport types to build code for
10534
10535commit cd9c9936b49c125eda779b99887d7e6ae4cf56cd
10536Author: Alan Coopersmith <alan.coopersmith@sun.com>
10537Date:   Sat Jul 30 19:15:16 2005 +0000
10538
10539    Add -D flags to clear various warnings (Stefan Dirsch)
10540
10541commit e7fef67b4531faddd805d8f2157903006d3117ed
10542Author: Kevin E Martin <kem@kem.org>
10543Date:   Fri Jul 29 21:22:50 2005 +0000
10544
10545    Various changes preparing packages for RC0:
10546    - Verify and update package version numbers as needed
10547    - Implement versioning scheme
10548    - Change bug address to point to bugzilla bug entry form
10549    - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to reenable it)
10550    - Fix makedepend to use pkgconfig and pass distcheck
10551    - Update build script to build macros first
10552    - Update modular Xorg version
10553
10554commit 2ebb00244928237088e68325b1032b3550455ce9
10555Author: Matthieu Herrb <matthieu.herrb@laas.fr>
10556Date:   Sat Jul 23 20:19:31 2005 +0000
10557
10558    remove orphan TAB at begin of line
10559
10560commit dd7a9cdecda73e024ca84c5b9a22b18688038d94
10561Author: Kevin E Martin <kem@kem.org>
10562Date:   Sat Jul 23 18:09:39 2005 +0000
10563
10564    Modify modular libs to use Xregion.h instead of region.h
10565
10566commit 6d635a88d91647b1b63611c3591f74916f88cd1c
10567Author: Kevin E Martin <kem@kem.org>
10568Date:   Sat Jul 23 18:06:16 2005 +0000
10569
10570    lib/Xrender/Picture.c Change region.h to Xregion.h and modify internal references to include <X11/Xregion.h>.
10571
10572commit 36283f50fd9748733ae84cb7fb52ca8d9e661c15
10573Author: Daniel Stone <daniel@fooishbar.org>
10574Date:   Sat Jul 16 06:25:35 2005 +0000
10575
10576    Set soversion to 6.2.0.
10577
10578commit 75fd5ae6e4683b9b9dcc13bc2f0faf223610a74f
10579Author: Keith Packard <keithp@keithp.com>
10580Date:   Fri Jul 15 04:27:32 2005 +0000
10581
10582    Add missing Makefile.am to lib/X11/modules
10583
10584commit 6d84a8b1329af1fcfe86b198f1a6e7dd6ff616c3
10585Author: Keith Packard <keithp@keithp.com>
10586Date:   Fri Jul 15 04:08:51 2005 +0000
10587
10588    Move i18n modules to top-level so they can be built in the right order (before xlib for non-loadable, after xlib for loadable).
10589    Link i18n modules against xlib to resolve Xlib symbols used by them.
10590
10591commit 45f40126a73295345bb5eb187b1167874842ab6e
10592Author: Alexander Gottwald <ago@freedesktop.org>
10593Date:   Thu Jul 14 19:50:00 2005 +0000
10594
10595    Add $(top_srcdir)/src to include list
10596
10597commit 0aed7d91f5928d09d541617aad03709b5090658d
10598Author: Matthieu Herrb <matthieu.herrb@laas.fr>
10599Date:   Thu Jul 14 17:04:49 2005 +0000
10600
10601    Build fix for non-GNU make.
10602
10603commit b79422ccb02ab44548d1038956ab0cd4e2638645
10604Author: Adam Jackson <ajax@nwnk.net>
10605Date:   Thu Jul 14 15:12:44 2005 +0000
10606
10607    typo fixes (Matthieu Herrb)
10608
10609commit 419304cde2fda19457c667870edefc0b227651b3
10610Author: Alan Coopersmith <alan.coopersmith@sun.com>
10611Date:   Wed Jul 13 02:41:36 2005 +0000
10612
10613    Add missing backslashes to xlocale_la_SOURCES
10614
10615commit d14cc5c8964c4539b57c6cb51ef653292e410b79
10616Author: Keith Packard <keithp@keithp.com>
10617Date:   Mon Jul 11 20:32:55 2005 +0000
10618
10619    Ammend AM_CFLAGS with all needed includes; cannot figure out an easy way to automate this.
10620
10621commit 424c2d8905eb2ad0a2df15b1da2f96140bfbcffb
10622Author: Lars Knoll <lars@trolltech.com>
10623Date:   Mon Jul 11 15:24:32 2005 +0000
10624
10625    compile
10626
10627commit de9784eb1bde46efc316da279e3da27c6cc288a7
10628Author: Keith Packard <keithp@keithp.com>
10629Date:   Mon Jul 11 09:26:40 2005 +0000
10630
10631    Ignore built man page files
10632
10633commit 0c258c36d1523113790c599b16d2947d7aa6469a
10634Author: Keith Packard <keithp@keithp.com>
10635Date:   Mon Jul 11 09:18:31 2005 +0000
10636
10637    Minor changes to help modular Xlib build i18n modules
10638
10639commit 6e752ea1203b786423e40f43340bce15ca3de0f0
10640Author: Keith Packard <keithp@keithp.com>
10641Date:   Mon Jul 11 08:29:18 2005 +0000
10642
10643    Enable loadable i18n modules, making them configurable on the configure command line.
10644    Clean up conditionals for XKB, XCMS, XLOCALEDIR
10645    Create new lib directory for locale modules in ${X11_LIBDIR}/locale/lib. Add this to the default XLOCALEDIR search path.
10646    Create separate X11_LOCALEDATADIR variable pointing at ${datadir}/X11/locale for installing locale data.
10647    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.
10648    Display message at end of configure script with selected options.
10649    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.
10650
10651commit b46cf0d879f1dbf92dcf5a0305d18986c766ed84
10652Author: Daniel Stone <daniel@fooishbar.org>
10653Date:   Sun Jul 10 22:37:33 2005 +0000
10654
10655    Fix segfault when _XimProtoCreateIC() fails to create a context; Debian #239991. (Chung-chieh Shan)
10656
10657commit 6f2132b18e61ca9755e4b45550f3f5097dd1fbb7
10658Author: Alan Coopersmith <alan.coopersmith@sun.com>
10659Date:   Sat Jul 9 20:06:04 2005 +0000
10660
10661    Set __libmansuffix__ & __xorgversion__ correctly when cpp processing man pages
10662
10663commit 3939ac4410446b46071c9d714f4270c12bf904fe
10664Author: Alan Coopersmith <alan.coopersmith@sun.com>
10665Date:   Sat Jul 9 18:44:14 2005 +0000
10666
10667    - 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
10668    - Don't assume $(CPP) can take gcc-only -traditional flag
10669    - CPP process man pages as is done in the monolithic tree
10670
10671commit 19ba9d0df86c688319377467254b9ea9c4b0eccc
10672Author: Keith Packard <keithp@keithp.com>
10673Date:   Sat Jul 9 06:01:49 2005 +0000
10674
10675    Clean up .cvsignore files
10676
10677commit f4bba6fa9b9ce637be7662754750054567e9250a
10678Author: Adam Jackson <ajax@nwnk.net>
10679Date:   Sat Jul 9 02:53:29 2005 +0000
10680
10681    typo fix. i suck.
10682
10683commit 3305da61a61695e24c1ea11d3f59dddb52873d47
10684Author: Adam Jackson <ajax@nwnk.net>
10685Date:   Sat Jul 9 02:41:18 2005 +0000
10686
10687    Check for bigfont proto headers via pkgconfig (Arwed von Merkatz)
10688
10689commit afdae2e8ccb93de2987b5a5e850695af15ece7e0
10690Author: Keith Packard <keithp@keithp.com>
10691Date:   Fri Jul 8 07:11:56 2005 +0000
10692
10693    Create and use XlibConf.h to match modular build which needs XTHREADS defined when building extensions
10694
10695commit 86fa88dc594ca2093030acf5c84973ee2b33eb4c
10696Author: Keith Packard <keithp@keithp.com>
10697Date:   Fri Jul 8 06:57:06 2005 +0000
10698
10699    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.
10700    Add a bunch of .cvsignore files
10701
10702commit 30f6ffedeaf899e699f0c6b14c9471ce9bcc430c
10703Author: Chris Less <clee@c133.org>
10704Date:   Mon Jul 4 23:01:48 2005 +0000
10705
10706    Fixing bug #380 - add a man page for XQueryExtension, XListExtensions, and XFreeExtensionList.
10707
10708commit 55328bb6caabd37885cd19d7a5821ed425daf321
10709Author: Eric Anholt <anholt@freebsd.org>
10710Date:   Sun Jul 3 10:17:38 2005 +0000
10711
10712    Avoid a gmake-specific construct, and instead just write the name of the current directory into each Makefile.am.
10713
10714commit 726538ba21b631bfb0b8094a5546acdaf57379ff
10715Author: Daniel Stone <daniel@fooishbar.org>
10716Date:   Sun Jul 3 07:37:33 2005 +0000
10717
10718    Fix more include paths; add dix-config.h to XKB code.
10719
10720commit 8c7677138e70e14eca0255f2168583f0ecc21994
10721Author: Daniel Stone <daniel@fooishbar.org>
10722Date:   Sun Jul 3 07:00:55 2005 +0000
10723
10724    Add Xtrans definitions (FONT_t, TRANS_CLIENT) to clean up warnings.
10725    Add XSERV_t, TRANS_SERVER, TRANS_REOPEN to quash warnings.
10726    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>.
10727
10728commit 197697c92a63091a4cc3cc04dcb7fa29d2655758
10729Author: Daniel Stone <daniel@fooishbar.org>
10730Date:   Fri Jul 1 22:13:35 2005 +0000
10731
10732    Fix objdir != srcdir, as well as make distcheck.
10733    Don't attempt to create Compose.pre files; formatting fixes.
10734    Added if not already present.
10735
10736commit c162d60ad8f124563f94a2a266de59373936266c
10737Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
10738Date:   Wed Jun 22 22:46:31 2005 +0000
10739
10740    Apply these patches from Theo van Klaveren:
10741    lib-dmx.patch lib-FS.patch lib-X11.patch lib-XRes.patch lib-XScrnSaver.patch lib-xtrans.patch
10742    to make the libraries distcheck.
10743
10744commit 9ee8abdab03ea605a6327118ab7dacab6adf8876
10745Author: Alan Coopersmith <alan.coopersmith@sun.com>
10746Date:   Sat Jun 18 07:48:43 2005 +0000
10747
10748    Move Secure RPC flags from X11/configure.ac to xtrans/xtrans.m4 since multiple modules will need them
10749
10750commit 12afc57b7d455781eee305e9ed6a899ceec8729e
10751Author: Daniel Stone <daniel@fooishbar.org>
10752Date:   Wed Jun 15 16:50:47 2005 +0000
10753
10754    Typo fix to locale/error/keysym location declarations.
10755
10756commit 9a895777e30762f61b98d25be3b5d8b1169baa17
10757Author: Daniel Stone <daniel@fooishbar.org>
10758Date:   Wed Jun 15 13:37:43 2005 +0000
10759
10760    Typo in ImUtil.h commit -- I AM CAPTAIN SKILL.
10761
10762commit add49285663684875ab7a5c58ec7a2cf8b775f67
10763Author: Daniel Stone <daniel@fooishbar.org>
10764Date:   Wed Jun 15 13:32:35 2005 +0000
10765
10766    Define locations for XErrorDB, XKeysymDB, and locale data in configure.ac. Add AC_DEFINE_DIR macro from autoconf-archive.cryp.to towards this end.
10767    Move ImUtil.h from src/ to include/X11/.
10768
10769commit 845dfc6b42b950890866ee4df27761e086f50dca
10770Author: Daniel Stone <daniel@fooishbar.org>
10771Date:   Wed Jun 15 13:27:48 2005 +0000
10772
10773    Move ImUtil.h from src/ to include/X11/. Additionally, copy Cmap.h as a distribution file.
10774
10775commit bba117f0d98f62cfb060d0fab97b407a3a0bfda9
10776Author: Daniel Stone <daniel@fooishbar.org>
10777Date:   Fri Jun 10 14:11:36 2005 +0000
10778
10779    Remove pointless include of Xlib.h.
10780    Fix #include path to bigreqstr.h.
10781
10782commit 1a0de49da1274882bab05b0f7240936b37955e5c
10783Author: Alexander Gottwald <ago@freedesktop.org>
10784Date:   Thu Jun 9 21:30:15 2005 +0000
10785
10786    Use $(srcdir) for Compose.pre and XLC_LOCALE.pre
10787
10788commit af4f0f302644ebfbb0ca9f4016a4aee85c973d37
10789Author: Alexander Gottwald <ago@freedesktop.org>
10790Date:   Thu Jun 9 15:55:33 2005 +0000
10791
10792    Replace <X11/transport.c> with <X11/Xtrans/transport.c>
10793
10794commit fd5f58e0baf692e34b9b622286f18762cc2500d3
10795Author: Alexander Gottwald <ago@freedesktop.org>
10796Date:   Thu Jun 9 15:52:02 2005 +0000
10797
10798    Replace <X11/Xtrans.h> with <X11/Xtrans/Xtrans.h>
10799    Copy Xtrans.h to exports/include/X11/Xtrans only
10800
10801commit 44538f9940f969d46c0e5e4b201c684cde2ba611
10802Author: Alan Coopersmith <alan.coopersmith@sun.com>
10803Date:   Sun Jun 5 03:29:33 2005 +0000
10804
10805    Port Imake flags to autoconf tests & --enable-* flags: HASSETUGID, HASGETRESUID, NO_XLOCALEDIR, HAS_SHM and XF86BIGFONT
10806
10807commit 588e30e9ec65fa6205a34be650b79d5e2243edec
10808Author: Alan Coopersmith <alan.coopersmith@sun.com>
10809Date:   Sat Jun 4 22:53:21 2005 +0000
10810
10811    Add --enable-secure-rpc flag and checks for needed functions for Secure RPC ("SUN-DES-1") authentication method
10812
10813commit a547afee2ef49cc41bbb67f9cff5a52a283c0854
10814Author: Alan Coopersmith <alan.coopersmith@sun.com>
10815Date:   Sat Jun 4 21:20:20 2005 +0000
10816
10817    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)
10818
10819commit ca93c761559ae464189c7ea7cf11c6a6679f2431
10820Author: Matthieu Herrb <matthieu.herrb@laas.fr>
10821Date:   Sat May 28 01:02:32 2005 +0000
10822
10823    Don't use $< in explicit rules. This only works with GNU make. <https://bugs.freedesktop.org/show_bug.cgi?id=3383>
10824
10825commit 09ebb349359e3dd9131fa2fa8b07559faa173654
10826Author: Alan Coopersmith <alan.coopersmith@sun.com>
10827Date:   Sun May 22 19:05:11 2005 +0000
10828
10829    Convert man pages to long file names in lib/X11, lib/Xt, & lib/Xext
10830
10831commit 761219b1ef9befc350c8a35b6f96d047e5f008cc
10832Author: Alan Coopersmith <alan.coopersmith@sun.com>
10833Date:   Sat May 21 23:07:48 2005 +0000
10834
10835    xtrans:
10836    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
10837    ICE:
10838    Add ICE_t #define required by Xtrans headers. Replace static defines of LOCALCONN & UNIXCONN with new XTRANS_CONNECTION_FLAGS macro.
10839    X11:
10840    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.
10841
10842commit 4b1ba6eb975b547b808f4d5c8825a3261de5e02a
10843Author: Alan Coopersmith <alan.coopersmith@sun.com>
10844Date:   Sat May 21 04:26:12 2005 +0000
10845
10846    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)
10847    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).
10848
10849commit 1d425d5e2092dd18a7dd599b37ed9af61cf59819
10850Author: Adam Jackson <ajax@nwnk.net>
10851Date:   Thu May 19 00:22:32 2005 +0000
10852
10853    revert last change, didn't do right thing at all, sorry for the noise
10854
10855commit 1b0c46c1ae61d751dd3ca96de8e2c3fe21c5f4f2
10856Author: Adam Jackson <ajax@nwnk.net>
10857Date:   Thu May 19 00:10:07 2005 +0000
10858
10859    Require automake 1.7 in AM_INIT_AUTOMAKE
10860
10861commit cd4657c175dbab6aaca36f18a0ca92c95b5567dd
10862Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
10863Date:   Tue May 17 22:32:09 2005 +0000
10864
10865    - Check for xproto as its CFLAGS are needed in the .pc file
10866
10867commit 46e8d8a65430dd87c10b066b5cff99a689c22241
10868Author: Egbert Eich <eich-at-freedesktop-dot-org>
10869Date:   Tue May 17 08:10:10 2005 +0000
10870
10871    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).
10872
10873commit 23198d2bfbf0049b2630235cd4d4a4ffba7ec6c1
10874Author:  <ssp@aware-of-vacuity.boston.redhat.com>
10875Date:   Mon May 16 22:35:27 2005 +0000
10876
10877    Make Xdmcp unconditionally required, require various protocol modules.
10878    Mon May 16 17:48:03 2005 Søren Sandmann <sandmann@redhat.com>
10879    Check for kbproto if using XKB.
10880    Require xextproto rather than xextensions
10881    Remove the entries from the xlibs tree, as they are not relevant here.
10882
10883commit 8bd3aea84ce54b8b76a898f3ae00e2b499c14a5e
10884Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
10885Date:   Mon May 16 21:48:36 2005 +0000
10886
10887    Mon May 16 17:48:03 2005 Søren Sandmann <sandmann@redhat.com>
10888    Check for kbproto if using XKB.
10889
10890commit 9b1fa9ca3ed852ed40860f137511683f4bdae6fa
10891Author:  <ssp@aware-of-vacuity.boston.redhat.com>
10892Date:   Mon May 16 21:27:35 2005 +0000
10893
10894    Require xextproto rather than xextensions
10895    Remove the entries from the xlibs tree, as they are not relevant here.
10896
10897commit 7eee605e3aeed549d1053325a03027c5e8cbf71b
10898Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
10899Date:   Fri May 13 22:53:36 2005 +0000
10900
10901    - For now put xtrans in X11/Xtrans/X11, since libX11 is looking for it in <X11/...>
10902    - For Xcomposite and Xdamage, don't link the build system out of the xc tree
10903    - Link the public X11 headers into their own directory
10904    - Add links to XKeysymDB and XErrorDB
10905    - Add links to all the Xlib man pages
10906    - Add links to the lcUniConv subdirectory
10907    - Conditionally include config.h in Xlib source
10908
10909commit 6769ccda88caf27d1441d335ef2b318a047a612b
10910Author: Alan Coopersmith <alan.coopersmith@sun.com>
10911Date:   Mon Mar 21 04:58:21 2005 +0000
10912
10913    xc/lib/X11/ErrDes.c
10914    //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>
10915
10916commit 3b9e8ece93b916c55a82df53e85f097418edf471
10917Author: Roland Mainz <roland.mainz@nrubsig.org>
10918Date:   Sat Mar 19 22:04:55 2005 +0000
10919
10920    xc/nls/Compose/iso8859-2
10921    xc/nls/Compose/iso8859-3
10922    xc/nls/Compose/iso8859-9
10923    //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>.
10924
10925commit 0ce5950a08b9ab23ca8a32effdd40c421e92df84
10926Author: Alan Coopersmith <alan.coopersmith@sun.com>
10927Date:   Tue Mar 8 02:53:36 2005 +0000
10928
10929    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>.
10930
10931commit df341cd2f2f263f13323e8c0936ea8aa0d7fbba1
10932Author: Roland Mainz <roland.mainz@nrubsig.org>
10933Date:   Tue Feb 1 03:12:28 2005 +0000
10934
10935    xc/nls/Compose/pt_BR.UTF-8
10936    //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>.
10937
10938commit 483d3973f56dda51f9251d3ea808aaf7f3b48c10
10939Author: Markus Kuhn <Markus.Kuhn@cl.cam.ac.uk>
10940Date:   Fri Jan 28 18:31:31 2005 +0000
10941
10942    cleaned up boundary-case handling for Uxxxx Unicode keysym notation
10943
10944commit f234188a4c1e6b655aef0e3957ccad20d4c5847f
10945Author: Roland Mainz <roland.mainz@nrubsig.org>
10946Date:   Wed Jan 19 01:53:55 2005 +0000
10947
10948    xc/nls/compose.dir
10949    xc/nls/locale.dir
10950    xc/nls/Compose/Imakefile
10951    xc/nls/Compose/pt_BR.UTF-8
10952    xc/nls/XI18N_OBJS/Imakefile
10953    xc/nls/XI18N_OBJS/pt_BR.UTF-8
10954    xc/nls/XLC_LOCALE/Imakefile
10955    xc/nls/XLC_LOCALE/pt_BR.UTF-8
10956    //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.
10957
10958commit 7448ea7ef425d35cfc31eb41d46f4d879774f376
10959Author: Egbert Eich <eich-at-freedesktop-dot-org>
10960Date:   Fri Jan 14 18:03:09 2005 +0000
10961
10962    Made some security enhancements:
10963    - no writing past end of buffer caused by bogus locale.
10964    - explicitely add a \0 character at end of string. (Bugzilla #2262)
10965
10966commit 5557d47fcf22a6f3adf327691158f2270e3d5094
10967Author: Roland Mainz <roland.mainz@nrubsig.org>
10968Date:   Fri Jan 14 04:59:05 2005 +0000
10969
10970    xc/nls/compose.dir
10971    xc/nls/locale.alias
10972    xc/nls/locale.dir
10973    //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>.
10974
10975commit 1fa3737f042f798fa11a9ff5b03f3b3ba3529824
10976Author: Egbert Eich <eich-at-freedesktop-dot-org>
10977Date:   Tue Jan 11 17:37:57 2005 +0000
10978
10979    '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.
10980
10981commit 642cd269f94a234aa470a1d43385bd42625d89a1
10982Author: Egbert Eich <eich-at-freedesktop-dot-org>
10983Date:   Tue Dec 14 08:59:20 2004 +0000
10984
10985    Removed #ifdef'ed out code together with the comment explaining why it was #ifdef'ed out.
10986    Fixed typo.
10987    Added comment to a changed that's been committed with one of the previous commits.
10988
10989commit a07ccae36e629741d2e48de7730114d30a975a41
10990Author: Matthieu Herrb <matthieu.herrb@laas.fr>
10991Date:   Sun Dec 12 08:42:50 2004 +0000
10992
10993    Fix missing XChangeProperty() prototype missing in synopsis section.
10994
10995commit c73adb1c8ad806c2f9f0ba32f4b449e7a871501c
10996Author: Alexander Gottwald <ago at freedesktop dot org>
10997Date:   Wed Dec 8 13:42:01 2004 +0000
10998
10999    Bugzilla #1980 (https://bugs.freedesktop.org/show_bug.cgi?id=1980) Handle XERRORDB only on WIN32 platform
11000
11001commit d5e7ab194103e22fd6c5094aaa107d90210bb600
11002Author: Jim Gettys <jg@freedesktop.org>
11003Date:   Thu Dec 2 16:18:16 2004 +0000
11004
11005    fix comment to indicate additional possible mode. i bug 1756 reported by Owen Taylor.
11006
11007commit 03940d7330cb1bbf93d49c650aefb19de457da7c
11008Author: Alexander Gottwald <ago at freedesktop dot org>
11009Date:   Wed Dec 1 13:06:55 2004 +0000
11010
11011    Bugzilla #1980, https://bugs.freedesktop.org/show_bug.cgi?id=1980 Make location of XErrorDB configurable
11012
11013commit 11a03ab908bfcfab8a3492684e8e9320e492d552
11014Author: Alexander Gottwald <ago at freedesktop dot org>
11015Date:   Wed Dec 1 12:42:17 2004 +0000
11016
11017    Bugzilla #1864, http://freedesktop.org/bugzilla/show_bug.cgi?id=1864 Initialize pointer to NULL to avoid freeing random memory
11018
11019commit f3d83ee153f42e8899b844377e6b842d93411e62
11020Author: Alexander Gottwald <ago@freedesktop.org>
11021Date:   Mon Nov 15 15:06:54 2004 +0000
11022
11023    Bufzilla #1802, http://freedesktop.org/bugzilla/show_bug.cgi?id=1802 Added mingw (Win32) port
11024
11025commit b798ea11911ac58a8e6e7d15a2a643b023859749
11026Author: Alexander Gottwald <ago at freedesktop dot org>
11027Date:   Mon Nov 15 13:29:56 2004 +0000
11028
11029    Bugzilla #1864, http://freedesktop.org/bugzilla/show_bug.cgi?id=1864 Initialize pointer to NULL to avoid freeing random memory
11030
11031commit 436108cd6c84053698e5ca629096f59b34f50c2a
11032Author: Kristian Høgsberg <krh@redhat.com>
11033Date:   Thu Nov 11 15:37:01 2004 +0000
11034
11035    Fix #1818
11036
11037commit bf2e6ef66ba55f90efa4a4ba8c8b6d3ec0d1531c
11038Author: Roland Mainz <roland.mainz@nrubsig.org>
11039Date:   Tue Nov 9 00:56:56 2004 +0000
11040
11041    xc/nls/compose.dir
11042    xc/nls/locale.alias
11043    xc/nls/locale.dir
11044    //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>.
11045
11046commit 443890ceefbd6dafe68e30d103ec4f9d316ed655
11047Author: Roland Mainz <roland.mainz@nrubsig.org>
11048Date:   Fri Nov 5 00:58:49 2004 +0000
11049
11050    xc/nls/compose.dir
11051    xc/nls/locale.alias
11052    xc/nls/locale.dir
11053    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>.
11054
11055commit af7467ec734321f127b957921cce7792902b6794
11056Author: Egbert Eich <eich-at-freedesktop-dot-org>
11057Date:   Mon Oct 18 17:29:03 2004 +0000
11058
11059    Correcting font encodings for GB18030, GBK and BIG5-HKSCS. Adding nls support for those encodings (Bugzilla 1573, James Su).
11060
11061commit 1b900b59cb24fe8be3db0d434b04d462c0eeb206
11062Author: Egbert Eich <eich-at-freedesktop-dot-xorg>
11063Date:   Mon Oct 18 14:21:45 2004 +0000
11064
11065    Made handling of DevelDrivers for x86-64 more conformant to other platforms.
11066    Compress all font encodings (Stefan Dirsch).
11067    Fixed warnings.
11068    Turn on forwarding XNSpotLocation event to XIM server in OffTheSpot and Root mode (bugzilla #1580, James Su).
11069    Added another compose key combination for the Euro symbol (Stefan Dirsch).
11070    Added support for UTF-8 in ja_JP, ko_KR and zh_TW locales (Mike Fabian).
11071    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.
11072    Added explanation for DESTDIR to install to a different directory than /.
11073    Added some early bailouts to atiprobe if PCI structure pointer is NULL to prevent sig11.
11074    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.
11075    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().
11076    Use /dev/xconsole (named pipe) or devpts for system logger (Werner Fink).
11077    Create missing links for backward compatibility to XFree86 (Stefan Dirsch).
11078    Changed comment to mention xorg.
11079    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).
11080    Added 'pic' to the man page rendering command pipeline (Werner Fink).
11081    Added missing return value (Stefan Dirsch, Roland Mainz)
11082
11083commit 1ba103c3cad2329db3a31f88d7798b913affc570
11084Author: Eric Anholt <anholt@freebsd.org>
11085Date:   Wed Oct 13 07:38:00 2004 +0000
11086
11087    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>)
11088
11089commit d80237db627bf71ad5615ff4ba05e6ab436aa740
11090Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
11091Date:   Fri Oct 8 22:57:56 2004 +0000
11092
11093    Fri Oct 8 18:53:11 2004 Soeren Sandmann <sandmann@redhat.com>
11094    Move iso10646 last so the "fallback" fonts will actually be used if they are better matches.
11095
11096commit d1f76d17ecf418396627b1a58319f2b9b255548a
11097Author: Markus Kuhn <Markus.Kuhn@cl.cam.ac.uk>
11098Date:   Sun Sep 26 22:54:57 2004 +0000
11099
11100    bug fix for previous patch
11101
11102commit 48932d9b71d10e15812f47d5b842ab6aa8dac625
11103Author: Markus Kuhn <Markus.Kuhn@cl.cam.ac.uk>
11104Date:   Sun Sep 26 20:46:17 2004 +0000
11105
11106    The big keysym cleanup, to bring implementation in line with the recent revision of Appendix A of the protocol spec. (Markus Kuhn)
11107
11108commit 2e02a95dcc43dd3ec7bbaf4675ffb94f5074f543
11109Author: Egbert Eich <eich@freedesktop.org>
11110Date:   Wed Sep 15 09:05:22 2004 +0000
11111
11112    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).
11113    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).
11114
11115commit 2d3afb68a104a80a21ee622b9abb9c95e83505d3
11116Author: Egbert Eich <eich@freedesktop.org>
11117Date:   Tue Aug 31 11:37:03 2004 +0000
11118
11119    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).
11120
11121commit e689746c8d0e21e9011e8b91a3071d235d3a2a74
11122Author: Kevin E Martin <kem@kem.org>
11123Date:   Thu Aug 19 06:48:06 2004 +0000
11124
11125    Fix header file to #ifdef the XKB keysyms when they are used. This fixes the X test suite build failure.
11126
11127commit d558a53a6f57eecfcaadce5141fe3a08860defcb
11128Author: Keith Packard <keithp@keithp.com>
11129Date:   Sat Aug 14 07:12:36 2004 +0000
11130
11131    Use XLIB_SKIP_ARGB_VISUALS environment variable to disable all depth 32 visuals. Necessary to keep Flash from crashing.
11132    Must call ValidateGC/ValidatePicture on "real" GC/Picture to ensure pCompositeClip is set correctly.
11133    Need to take the composite clip from the "real" GC/Picture and turn it into the clientClip for the backing version.
11134    Adjust pixmap screen origin to account for drawable->x/y Change debugging output a bit (disabled by default)
11135
11136commit 85c2d81f299ed3444658011b7d6fb0a7ab8a6f55
11137Author: Alexander Gottwald <ago@freedesktop.org>
11138Date:   Fri Aug 13 16:28:19 2004 +0000
11139
11140    Set most significant bit to be a one. (Bug #1024, Kensuke Matsuzaki)
11141    Fix conversion from sjis and euc. (Bug #1024, Toshio Takabe)
11142
11143commit c4d56e4e288d4e48b84b021a61638f46e9a45e27
11144Author: Adam Jackson <ajax@nwnk.net>
11145Date:   Wed Aug 11 05:25:13 2004 +0000
11146
11147    Bug #372: Prevent a crash in XPolygonRegion when called with a bogus point count. Reported by Andreas Luik.
11148
11149commit 92487437173f600f208d825f65756d3ad14a4f7e
11150Author: Kevin E Martin <kem@kem.org>
11151Date:   Mon Aug 9 22:37:22 2004 +0000
11152
11153    Fix install problem on platforms not using xorg.cf/xfree86.cf (Bug #339, Harold L. Hunt II, Alexander Gottwald).
11154    Fix crash when using X core font in zh_CN.UTF-8 locale (Bug #368, Yu Shao, David Dawes).
11155    Fix glXMakeCurrent(Dpy, None, NULL) crash (Bug #719, Adam Jackson).
11156    HP-PA build fix (Bug #828, Guy Martin, Paul Anderson).
11157    Fix SDK build for GATOS and Wacom driver (Bug #829, Bryan Stine).
11158    Fix attempt to read video ROM before enabling it (Bug #843, Ivan Kokshaysky, Mike A. Harris).
11159    Fix detection of primary adapter (Bug #843, Ivan Kokshaysky, Mike A. Harris).
11160    Clarify xset man page description of how to use the keyboard repeat rate settings (Bug #846, Mike A. Harris).
11161    Fix problem where print-screen key would get remapped to sys-req in certain keymaps, which broke GNOME printscreen functionality (Bug #847, Owen Taylor).
11162    Fix several render problems:
11163    - MMIO mode support
11164    - Hang on IGP chips
11165    - VT switching hang
11166    - 3D render corruption (Bug #922, Hui Yu).
11167
11168commit 55c2ee568e7d3903258286a13bdf96ce5348ffda
11169Author: Matthieu Herrb <matthieu.herrb@laas.fr>
11170Date:   Tue Jul 27 06:06:05 2004 +0000
11171
11172    - remove remaining AMOEBA references.
11173    - remove unused file.
11174
11175commit 6e884b12911eedfb003e90a3829ce66f7fc9cf2d
11176Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
11177Date:   Tue Jul 20 17:48:09 2004 +0000
11178
11179    Tue Jul 20 19:38:06 2004 Soeren Sandmann <sandmann@daimi.au.dk>
11180    Set font_data->xlfd_data to NULL after XFree(). (#837, patch from Bastien Nocera).
11181    Tue Jul 20 18:23:32 2004 Soeren Sandmann <sandmann@daimi.au.dk>
11182    Use /dev/urandom on Linux.(#761).
11183
11184commit 6f0bc97aa4e6de5a4b001f40ac10795cfdf09fc1
11185Author: Eric Anholt <anholt@freebsd.org>
11186Date:   Fri May 28 23:26:44 2004 +0000
11187
11188    Forced commit to note repocopy from xc/lib/XThrStub, will be connected to the build after this.
11189
11190commit aa7010c43ae9f39fb84b5ff155f76117c9e527a0
11191Author: Egbert Eich <eich@pdx.freedesktop.org>
11192Date:   Mon May 24 19:02:11 2004 +0000
11193
11194    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.
11195
11196commit 720702da29769d80ad1254d92edbad5b30f8a8da
11197Author: Alan Coopersmith <alan.coopersmith@sun.com>
11198Date:   Sat May 22 03:47:42 2004 +0000
11199
11200    Bugzilla #658: XStringToKeysym fails for Greek_IOTAdiaeresis (Fixes VSW5 testcase XStringToKeysym-7 failure)
11201
11202commit 3aed873292424b497d9a7dcee2975b95bf5ac966
11203Author: Alan Coopersmith <alan.coopersmith@sun.com>
11204Date:   Sat Apr 24 23:39:25 2004 +0000
11205
11206    XOpenDisplay should try tcp connection if local connections fail (aka Sun bug id #4624183).
11207    Also includes fix from NetBSD Problem Report #25098 (Michael van Elst) (Xlib segfaults with IPv6 if compiled with HASXDMAUTH).
11208    xc/config/cf/sunLib.tmpl
11209    xc/lib/FS/Imakefile Add missing shared library dependencies for Solaris
11210
11211commit c6349f43193b74a3c09945f3093a871b0157ba47
11212Author: Egbert Eich <eich@freedesktop.org>
11213Date:   Fri Apr 23 18:42:09 2004 +0000
11214
11215    Merging XORG-CURRENT into trunk
11216
11217commit c3c4ddc682950a01b80825021f3e2503ab01ea7f
11218Author: Kaleb Keithley <kaleb@freedesktop.org>
11219Date:   Tue Nov 25 19:28:07 2003 +0000
11220
11221    Initial revision
11222
11223commit dc4268a7dadc8da0d561757a68461246728613d3
11224Author: Kaleb Keithley <kaleb@freedesktop.org>
11225Date:   Fri Nov 14 16:48:47 2003 +0000
11226
11227    Initial revision
11228
11229commit deae12c6b683898f5213992d561a59d4ea889cca
11230Author: Kaleb Keithley <kaleb@freedesktop.org>
11231Date:   Fri Nov 14 15:54:30 2003 +0000
11232
11233    R6.6 is the Xorg base-line
11234