ChangeLog revision fe12f63c
1commit 8287ebd7b752c33b0cabc4982606fe4831106f7e
2Author: Uli Schlachter <psychon@znc.in>
3Date:   Thu Sep 27 14:04:17 2018 +0200
4
5    Release libxcb 1.13.1
6
7commit bbda345a718ff73086437e51f03fcbb73e4365b9
8Author: Erik Kurzinger <ekurzinger@nvidia.com>
9Date:   Mon Aug 20 12:06:25 2018 -0700
10
11    don't flag extra reply in xcb_take_socket
12    
13    If any flags are specified in a call to xcb_take_socket,
14    they should only be applied to replies for requests sent
15    after that function returns (and until the socket is
16    re-acquired by XCB).
17    
18    Previously, they would also be incorrectly applied to the
19    reply for the last request sent before the socket was taken.
20    For instance, in this example program the reply for the
21    GetInputFocus request gets discarded, even though it was
22    sent before the socket was taken. This results in the
23    call to retrieve the reply hanging indefinitely.
24    
25    static void return_socket(void *closure) {}
26    
27    int main(void)
28    {
29        Display *dpy = XOpenDisplay(NULL);
30        xcb_connection_t *c = XGetXCBConnection(dpy);
31    
32        xcb_get_input_focus_cookie_t cookie = xcb_get_input_focus_unchecked(c);
33        xcb_flush(c);
34    
35        uint64_t seq;
36        xcb_take_socket(c, return_socket, dpy, XCB_REQUEST_DISCARD_REPLY, &seq);
37    
38        xcb_generic_error_t *err;
39        xcb_get_input_focus_reply(c, cookie, &err);
40    }
41    
42    In practice, this has been causing intermittent KWin crashes when
43    used in combination with the proprietary NVIDIA driver such as
44    https://bugs.kde.org/show_bug.cgi?id=386370 since when Xlib fails to
45    retrieve one of these incorrectly discarded replies it triggers
46    an IO error.
47    
48    Signed-off-by: Erik Kurzinger <ekurzinger@nvidia.com>
49    Signed-off-by: Uli Schlachter <psychon@znc.in>
50
51commit 7e0f166579672d71efd819c81f0c932b0acd542c
52Author: Daniel Stone <daniels@collabora.com>
53Date:   Wed Feb 28 01:26:55 2018 +0000
54
55    Release libxcb 1.13
56    
57    Signed-off-by: Daniel Stone <daniels@collabora.com>
58
59commit a3e9821bec08a69b355b46b0655562b9df61bb21
60Author: Daniel Stone <daniels@collabora.com>
61Date:   Wed Apr 26 17:55:54 2017 +0200
62
63    c_client: Add support for lists of FDs
64    
65    Matching xcbgen changes, add support having a ListType which contains
66    file descriptors. Use this to send a variable number of FDs to the
67    server, including when the list size is not fixed.
68    
69    Signed-off-by: Daniel Stone <daniels@collabora.com>
70
71commit c7aa4e682fdc7f0035f928af6eafd052e38cc15a
72Author: Daniel Stone <daniels@collabora.com>
73Date:   Wed Apr 26 17:54:01 2017 +0200
74
75    c_client: Don't serialise non-wire fields
76    
77    For when we have a variable-sized field followed by a fixed field, make
78    sure we do not serialise non-wire fields.
79    
80    Signed-off-by: Daniel Stone <daniels@collabora.com>
81
82commit d10194a321c3db851b3ede9a98cdc95e951943aa
83Author: Christian Linhart <chris@demorecorder.com>
84Date:   Sat Mar 11 22:03:34 2017 +0100
85
86    enable xinput by default
87    
88    Support for the xinput extension is complete now,
89    as far as I can tell.
90    
91    According to our discussion on the list, we enable it now.
92    
93    Signed-off-by: Christian Linhart <chris@demorecorder.com>
94
95commit fad81b63422105f9345215ab2716c4b804ec7986
96Author: David McFarland <corngood@gmail.com>
97Date:   Tue Apr 18 23:58:59 2017 -0300
98
99    read from connection when polling special events and replies
100    
101    Using the mesa vulkan driver, if you acquire an image from a
102    swapchain using a finite timeout (x11_acquire_next_image_poll_x11),
103    it will occasionally lock, calling xcb_poll_for_special_event in
104    a loop until the timeout expires.
105    
106    Call _xcb_in_read() once from the polling functions for special
107    events and replies, in the same way as xcb_poll_for_event.
108    
109    Signed-off-by: David McFarland <corngood@gmail.com>
110    Signed-off-by: Uli Schlachter <psychon@znc.in>
111
112commit f830eb93c9c38b2c6c7ea2971af3bc6a61e92277
113Author: Tobias Stoeckmann <tobias@stoeckmann.org>
114Date:   Sun Mar 26 15:41:12 2017 +0200
115
116    Check strdup for NULL return value.
117    
118    _xcb_open does not check strdup's return value for NULL if launchd suport
119    was configured.
120    
121    Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
122    Signed-off-by: Uli Schlachter <psychon@znc.in>
123
124commit ee9dfc9a7658e7fe75d27483bb5ed1ba4d1e2c86
125Author: Christian Linhart <chris@demorecorder.com>
126Date:   Wed Jan 25 10:21:05 2017 +0100
127
128    add support for eventstruct
129    
130    eventstruct allows to use events as part of requests.
131    This is, e.g., needed by xcb_input_send_extension_event.
132    
133    Signed-off-by: Christian Linhart <chris@demorecorder.com>
134
135commit 0c2c5d50f8670da3e7601feb6a29b53509513da5
136Author: Christian Linhart <chris@demorecorder.com>
137Date:   Fri Jan 20 20:14:57 2017 +0100
138
139    optionally build the GE extension
140    
141    xcb contains an xml-definition for the GenericEvent extension
142    but this extension was neither generated nor built.
143    
144    This patch enables optional building of the GenericEvent extension
145    with configure option --enable-ge
146    
147    By default, the GenericEvent extension is not built.
148    Normally this is not needed by application programs
149    because there is implicit support for the GE-extension
150    for the specific events built with this extension.
151    
152    But it may be useful for X-protocol analyzers and stuff like that.
153    
154    Signed-off-by: Christian Linhart <chris@demorecorder.com>
155
156commit 9bce1f72e329cb407b7a95589b9675a08129b65d
157Author: Christian Linhart <chris@demorecorder.com>
158Date:   Fri Jan 20 14:40:25 2017 +0100
159
160    move symbol lookup of sumof expr to the parser
161    
162    replace the complicated symboltable lookup for sumof expr
163    by accessing the lenfield of the expr-object.
164    
165    This requires the corresponding patch for xcb/proto
166    which sets the lenfield accordingly.
167    
168    This should be OK because for official releases we define
169    that dependency in the build system.
170    
171    For getting versions off the HEAD of the git repo, it should
172    be obvious that xcb/proto and xcb/libxcb have to be updated together.
173    
174    I have tested this patch and it generates exactly the same code
175    as before.
176    
177    Tested-by: Christian Linhart <chris@demorecorder.com>
178    Signed-off-by: Christian Linhart <chris@demorecorder.com>
179
180commit 65b298c7ca317d7e4316aa2b9e0499e13047c65c
181Author: Alan Coopersmith <alan.coopersmith@oracle.com>
182Date:   Sat Feb 6 12:26:21 2016 -0800
183
184    Correct @param "e" to "error" in xcb_poll_for_reply*()
185    
186    Found by clang -Wdocumentation:
187    
188    ./xcbext.h:271:11: warning: parameter 'e' not found in the function
189          declaration [-Wdocumentation]
190     * @param e Location to store errors in, or NULL. Ignored for un...
191              ^
192    ./xcbext.h:271:11: note: did you mean 'error'?
193     * @param e Location to store errors in, or NULL. Ignored for un...
194              ^
195              error
196    
197    ./xcbext.h:283:11: warning: parameter 'e' not found in the function
198          declaration [-Wdocumentation]
199     * @param e Location to store errors in, or NULL. Ignored for un...
200              ^
201    ./xcbext.h:283:11: note: did you mean 'error'?
202     * @param e Location to store errors in, or NULL. Ignored for un...
203              ^
204              error
205    
206    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
207    Signed-off-by: Uli Schlachter <psychon@znc.in>
208
209commit 32a9084546add979115a686f9a167e70b8967149
210Author: Alan Coopersmith <alan.coopersmith@oracle.com>
211Date:   Sat Feb 6 12:26:20 2016 -0800
212
213    Remove : from @param names in manually written headers
214    
215    Makes style match the @param names in autogenerated headers and makes
216    clang -Wdocumentation stop complaining about all of them:
217    
218    ./xcb.h:523:11: warning: parameter 'display:' not found in the function
219          declaration [-Wdocumentation]
220     * @param display: A pointer to the display number.
221              ^~~~~~~~
222    ./xcb.h:523:11: note: did you mean 'display'?
223     * @param display: A pointer to the display number.
224              ^~~~~~~~
225              display
226    
227    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
228    Signed-off-by: Uli Schlachter <psychon@znc.in>
229
230commit 8740a288ca468433141341347aa115b9544891d3
231Author: Thomas Klausner <wiz@NetBSD.org>
232Date:   Thu May 19 17:31:18 2016 +0200
233
234    Fix inconsistent use of tabs vs. space.
235    
236    Needed for at least python-3.5.x.
237    
238    Signed-off-by: Thomas Klausner <wiz@NetBSD.org>
239    Signed-off-by: Uli Schlachter <psychon@znc.in>
240
241commit d34785a34f28fa6a00f8ce00d87e3132ff0f6467
242Author: Uli Schlachter <psychon@znc.in>
243Date:   Sat May 14 10:36:54 2016 +0200
244
245    Release libxcb 1.12
246    
247    Signed-off-by: Uli Schlachter <psychon@znc.in>
248
249commit b11fca06f75b26b94e3f1d3e3c3954d365f80759
250Author: Uli Schlachter <psychon@znc.in>
251Date:   Sat May 14 10:33:54 2016 +0200
252
253    Bump xcb-proto requirement to 1.12
254    
255    This is needed due to various changes that were done to the XML schema.
256    
257    Signed-off-by: Uli Schlachter <psychon@znc.in>
258
259commit 095353ff1a4f611922dfc4c98b0c4bd55d9f6d4f
260Author: Mark Kettenis <kettenis@openbsd.org>
261Date:   Sat Jan 23 17:29:32 2016 +0100
262
263    Increase unix socket send buffer to at least 64KB
264    
265    Some systems (e.g. OpenBSD) have a rather small default socket send buffer
266    size of 4KB.  The result is that sending requests with a largish payload
267    requires serveral writev(2) system calls.  Make sure the socket send buffer
268    is at least 64KB such that we're likely to succeed with a single system
269    call for most requests.  A similar change was made to the xtrans code
270    some time ago.
271    
272    Signed-off-by: Mark Kettenis <kettenis@openbsd.org>
273    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
274
275commit b3516102b4469df99db39e0e354deae496867f35
276Author: Christian Linhart <chris@demorecorder.com>
277Date:   Mon Jan 18 06:56:39 2016 +0100
278
279    do not serialize pads by default anymore
280    
281    Pads should not be serialized/deserialized to maintain
282    ABI compatibility when adding explicit align pads.
283    
284    Therefore this pad switches off serialization of pads
285    unless it is enforced by serialize=true in the xml-definition
286    of that pad
287    
288    Signed-off-by: Christian Linhart <chris@demorecorder.com>
289
290commit c03388ff9e253b86e4b41fb77034ca6007fe47e9
291Author: Jaya Tiwari <tiwari.jaya18@gmail.com>
292Date:   Wed Nov 11 01:02:09 2015 +0100
293
294    calculate lengthless list
295    
296    Some rework done by Christian Linhart
297    
298    Signed-off-by: Jaya Tiwari <tiwari.jaya18@gmail.com>
299    Signed-off-by: Christian Linhart <chris@demorecorder.com>
300
301commit 775825756714eb6b8467e099cda73a03b782ea0e
302Author: Christian Linhart <chris@demorecorder.com>
303Date:   Tue Nov 10 12:53:04 2015 +0100
304
305    Fix handling of align-pads in end-iterators
306    
307    If a list is preceded by an align-pad, then
308    accessor for the end-iterator returned a wrong
309    value.
310    
311    Reason: the length of the align-iterator was added
312    to a pointer of list-member type. Therefore, the length
313    was multiplied by the size of the list-member type,
314    due to C pointer arithmetic rules.
315    
316    This has looked like the following, e.g., in
317    xcb_randr_get_crtc_transform_pending_params_end:
318    
319    i.data = ((xcb_render_fixed_t *) prev.data) + ((-prev.index) & (4 - 1)) + (R->pending_nparams);
320    
321    This bug was introduced with the following commit:
322    http://cgit.freedesktop.org/xcb/libxcb/commit/?id=4033d39d4da21842bb1396a419dfc299591c3b1f
323    
324    The fix handles this by casting to char* before adding the align,
325    and then casting the result to the member type.
326    
327    Signed-off-by: Christian Linhart <chris@demorecorder.com>
328
329commit 32a2189183696e942b002efcbca823a416fe5f6a
330Author: Christian Linhart <chris@demorecorder.com>
331Date:   Sun Nov 1 18:35:35 2015 +0100
332
333    set the align-offset as provided by proto
334    
335    instead of using the lower bits of the pointer address.
336    This fixes a bug reported by Peter Hutterer in off-list communication
337    back in June 2015.
338    
339    This requires the alignment-checker patches in xcb/proto.
340    
341    Signed-off-by: Christian Linhart <chris@demorecorder.com>
342
343commit 6e0378ebbf5f842992e37c93ad60b960427849ac
344Author: Adam Jackson <ajax@redhat.com>
345Date:   Mon Sep 21 15:27:52 2015 -0400
346
347    Bump version to 1.11.90
348    
349    We've released 1.11.1 and new libX11 wants that or better.  git master
350    will suffice, so bump the version number ahead of 1.11 branch.
351    
352    Signed-off-by: Adam Jackson <ajax@redhat.com>
353
354commit 4033d39d4da21842bb1396a419dfc299591c3b1f
355Author: Christian Linhart <chris@demorecorder.com>
356Date:   Fri Sep 19 13:44:38 2014 +0200
357
358    make lists after align-pads work
359    
360    Handle align-pads when generating an end-function
361    in the same way as handling them when generating
362    an accessor or iterator function.
363    
364    Signed-off-by: Christian Linhart <chris@demorecorder.com>
365
366commit b15c96f9507119e5d38a61d92b4dbcd479ea2099
367Author: Christian Linhart <chris@demorecorder.com>
368Date:   Thu Jun 11 18:58:38 2015 +0200
369
370    make support for server side stuff optional
371    
372    and make it disabled by default with an EXPERIMENTAL warning
373    
374    reason: this feature is unfinished and we want to have flexibility for
375    ABI/API changes, while still being able to make a release soon
376    
377    Signed-off-by: Christian Linhart <chris@demorecorder.com>
378
379commit c5d923d8ff4a9b9fc1aef1c6c6918bab15098d34
380Author: Jon TURNEY <jon.turney@dronecode.org.uk>
381Date:   Tue Mar 17 17:49:14 2015 +0000
382
383    Link with winsock library for socket functions on MinGW
384    
385    Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
386
387commit 5b40681c887192307f3ae147d2158870aa79c05f
388Author: Uli Schlachter <psychon@znc.in>
389Date:   Fri Jun 12 15:13:05 2015 +0200
390
391    Fix a thread hang with xcb_wait_for_special_event()
392    
393    Consider the following:
394    
395    - Two threads are calling xcb_wait_for_special_event() and xcb_wait_for_reply()
396      concurrently.
397    - The thread doing xcb_wait_for_reply() wins the race and poll()s the socket for
398      readability.
399    - The other thread will be put to sleep on the special_event_cond of the special
400      event (this is done in _xcb_conn_wait() via the argument
401      xcb_wait_for_special_event() gives it).
402    - The first thread gets its reply, but does not yet receive any special event.
403    
404    In this case, the first thread will return to its caller. On its way out, it
405    will call _xcb_in_wake_up_next_reader(), but that function cannot wake up
406    anything since so far it did not handle xcb_wait_for_special_event().
407    
408    Thus, the first thread stays blocked on the condition variable and no thread
409    tries to read from the socket.
410    
411    A test case demonstrating this problem is available at the bug report.
412    
413    Fix this similar to how we handle this with xcb_wait_for_reply():
414    
415    The function wait_for_reply() adds an entry into a linked list of threads that
416    wait for a reply. Via this list, _xcb_in_wake_up_next_reader() can wake up this
417    thread so that it can call _xcb_conn_wait() again and then poll()s the socket.
418    
419    Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=84252
420    Signed-off-by: Uli Schlachter <psychon@znc.in>
421    Tested-by: Michel Dänzer <michel.daenzer@amd.com>
422
423commit f85661c3bca97faa72431df92a3867be39a74e23
424Author: Michel Dänzer <michel.daenzer@amd.com>
425Date:   Mon Jun 1 11:04:18 2015 +0900
426
427    Call _xcb_wake_up_next_reader from xcb_wait_for_special_event
428    
429    All functions calling _xcb_conn_wait() must make sure that waiting
430    readers are woken up when we read a reply or event that they are waiting
431    for. xcb_wait_for_special_event() did not do so. This adds the missing
432    call to_xcb_in_wake_up_next_reader().
433    
434    Fixes deadlock when waiting for a special event and concurrently
435    processing the display connection queue in another thread.
436    
437    Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=84252
438    Tested-by: Thomas Daede <bztdlinux@gmail.com>
439    Tested-by: Clément Guérin <geecko.dev@free.fr>
440    Reviewed-by: Uli Schlachter <psychon@znc.in>
441    Signed-off-by: Michel Dänzer <michel@daenzer.net>
442    Signed-off-by: Uli Schlachter <psychon@znc.in>
443
444commit 8584c0e09573a29d8ba7050e3d5afd925b4d8d80
445Author: Uli Schlachter <psychon@znc.in>
446Date:   Thu May 14 09:44:05 2015 +0200
447
448    send_fds(): Handle too many outstanding FDs to send
449    
450    Before this patch, the following code caused an endless loop in send_fds(),
451    because the queue of FDs to send was eventually full, but _xcb_out_flush_to()
452    didn't make any progress, since there was no request to send:
453    
454       while (1) { xcb_send_fd(conn, dup(some_fd)); }
455    
456    Fix this by sending a sync when flushing didn't make any progress. That way we
457    actually have something to send and can attach the pending FDs.
458    
459    Because send_fds() can now send requests, the code in
460    xcb_send_request_with_fds64() has to be changed. It has to call send_fds()
461    before it establishes a good sequence number for the request it wants to send.
462    
463    Signed-off-by: Uli Schlachter <psychon@znc.in>
464
465commit 658fb4a5f0050db68fdf092936afe596412ef5f7
466Author: Uli Schlachter <psychon@znc.in>
467Date:   Wed Apr 22 09:26:05 2015 +0200
468
469    Code generator: Use xcb_send_request_with_fds()
470    
471    Signed-off-by: Uli Schlachter <psychon@znc.in>
472
473commit b15aa6bd4efde784e546d168bb23b8a8e816e85b
474Author: Uli Schlachter <psychon@znc.in>
475Date:   Wed Apr 22 09:23:47 2015 +0200
476
477    Add xcb_send_request_with_fds() and *_with_fds64()
478    
479    Doing xcb_send_fd(), xcb_send_request() is racy. If two threads do this at the
480    same time, they could mix up their file descriptors. This commit makes it
481    possibly to fix this race by providing a single function which does everything
482    that is needed.
483    
484    Signed-off-by: Uli Schlachter <psychon@znc.in>
485
486commit cc04cfb41bece6ec239f57d83822286b507f4482
487Author: Uli Schlachter <psychon@znc.in>
488Date:   Mon May 18 21:40:34 2015 +0200
489
490    send_fds(): Make sure no other thread interrupts us
491    
492    Two threads trying to send fds at the same time could interfere. To guarantee a
493    correct ordering, we have to use correct locking. The code in send_fds() missed
494    one case: If there was another thread already writing requests, we slept on the
495    "done with writing" condition variable (c->out.cond). This would allow other
496    threads to re-acquire the iolock before us and could cause fds to be sent out of
497    order.
498    
499    To fix this, at the beginning of send_fds() we now make sure that no other
500    thread is already writing requests. This is what prepare_socket_request() does.
501    Additionally, it gets the socket back in case xcb_take_socket() was called,
502    which is a good thing, too, since fds are only sent with corresponding requests.
503
504commit 25f9e7e45a7652b35b71c7941beef774a39f0d86
505Author: Uli Schlachter <psychon@znc.in>
506Date:   Wed Apr 22 09:20:38 2015 +0200
507
508    xcb_send_fd(): Always close fds
509    
510    The API docs for xcb_send_fd() says "After this function returns, the file
511    descriptor given is owned by xcb and will be closed eventually".
512    
513    Let the implementation live up to its documentation. We now also close fds if fd
514    passing is unavailable (!HAVE_SENDMSG) and when the connection is in an error
515    state.
516    
517    (This also does sneak in some preparatory functions for follow-up commits and
518    thus does things in a more complicated way than really necessary.)
519    
520    Signed-off-by: Uli Schlachter <psychon@znc.in>
521
522commit bbdf1d133f7bd979c6ff3bf44ec3d0c2d2b9dbfe
523Author: Ran Benita <ran234@gmail.com>
524Date:   Wed Mar 18 12:27:32 2015 +0200
525
526    c_client.py: don't generate useless empty /** < */ comments
527    
528    (This does not change doxygen's output or warnings).
529    
530    Signed-off-by: Ran Benita <ran234@gmail.com>
531    Reviewed-by: Christian Linhart <chris@demorecorder.com>
532
533commit ff6cb3913b64a4aa29cb5e65168ea49d77195296
534Author: Ran Benita <ran234@gmail.com>
535Date:   Wed Mar 18 12:27:31 2015 +0200
536
537    c_client.py: use pattern matching with enumerate()
538    
539    Signed-off-by: Ran Benita <ran234@gmail.com>
540
541commit cb621341a62e6d2233db3e337611f6fdd4f675a6
542Author: Christian Linhart <chris@demorecorder.com>
543Date:   Wed Apr 29 09:11:37 2015 +0200
544
545    expose 64-bit sequence numbers for XLib
546    
547    While XCB uses 64-bit sequence number internally, it only exposes
548    "unsigned int" so that, on 32-bit architecture, Xlib based applications
549    may see their sequence number wrap which causes the connection to the X
550    server to be lost.
551    
552    Expose 64-bit sequence number from XCB API so that Xlib and others can
553    use it even on 32-bit environment.
554    
555    This implies the following API addition:
556    
557      xcb_send_request64()
558      xcb_discard_reply64()
559      xcb_wait_for_reply64()
560      xcb_poll_for_reply64()
561    
562    Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=71338
563    
564    Reviewed-by: Uli Schlachter <psychon@znc.in>
565    Signed-off-by: Christian Linhart <chris@demorecorder.com>
566    Signed-off-by: Olivier Fourdan <ofourdan@redhat.com>
567
568commit c49aa985941112be05599032b9bb45b2652301ce
569Author: Alan Coopersmith <alan.coopersmith@oracle.com>
570Date:   Wed Apr 29 23:23:05 2015 -0700
571
572    Escape \n to display properly in xcb-requests man page
573    
574    In nroff, \n is a macro that "Interpolates number register x" (where x
575    is the character following the \n sequence), thus the man page currently
576    prints 0 instead of \n" in several lines, leading to output such as:
577    
578     printf("The _NET_WM_NAME atom has ID %u0, reply-⁠>atom);
579    
580    It needs to be escaped here, as \\n, as is done in other examples in
581    this man page already.
582    
583    https://bugs.freedesktop.org/show_bug.cgi?id=90231
584    
585    Reported-by: Stefan Merettig
586    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
587
588commit a90be9955d2c5a635f791d44db1154633b9d3322
589Author: Ran Benita <ran234@gmail.com>
590Date:   Sun Oct 12 21:58:20 2014 +0300
591
592    c_client.py: make condition easier to follow in _c_complex()
593    
594    Signed-off-by: Ran Benita <ran234@gmail.com>
595    Reviewed-by: Christian Linhart <chris@demorecorder.com>
596
597commit f9f925107e37e0c9a0ed8220ee3a23f584e3b2ec
598Author: Ran Benita <ran234@gmail.com>
599Date:   Sun Oct 12 21:58:14 2014 +0300
600
601    c_client.py: don't add /* <name> */ before references to 'S'
602    
603    The name can be understood from the type of S already.
604    
605    For examples, look for 'S->' in xkb.c or xinput.c.
606    
607    Signed-off-by: Ran Benita <ran234@gmail.com>
608    Reviewed-by: Christian Linhart <chris@demorecorder.com>
609    Reviewed-by: Rémi Cardona <remi@gentoo.org>
610
611commit 17f9bda6c291a8b9ccc98b22c241b64880b80621
612Author: Ran Benita <ran234@gmail.com>
613Date:   Sun Oct 12 21:58:19 2014 +0300
614
615    c_client.py: remove duplicated `cookie_type` argument for requests
616    
617    It is implied already inside the function by the `void` argument.
618    
619    Signed-off-by: Ran Benita <ran234@gmail.com>
620    Reviewed-by: Christian Linhart <chris@demorecorder.com>
621
622commit c65005e9d0ce60524d2e883c13c027a5f1f7914c
623Author: Ran Benita <ran234@gmail.com>
624Date:   Sun Oct 12 21:58:18 2014 +0300
625
626    c_client.py: spell out keyword arguments in c_request() for clarity
627    
628    Signed-off-by: Ran Benita <ran234@gmail.com>
629    Reviewed-by: Christian Linhart <chris@demorecorder.com>
630
631commit 6872e925828e615e2c1d4a0bbcc6be6a32fa4e7a
632Author: Ran Benita <ran234@gmail.com>
633Date:   Sun Oct 12 21:58:17 2014 +0300
634
635    c_client.py: simplify _c_reply_has_fds()
636    
637    Signed-off-by: Ran Benita <ran234@gmail.com>
638    Reviewed-by: Christian Linhart <chris@demorecorder.com>
639
640commit 8bf8b62316a3066b61243d797d22c2100fd173f5
641Author: Ran Benita <ran234@gmail.com>
642Date:   Sun Oct 12 21:58:16 2014 +0300
643
644    c_client.py: remove commented debug statements
645    
646    Signed-off-by: Ran Benita <ran234@gmail.com>
647    Reviewed-by: Christian Linhart <chris@demorecorder.com>
648
649commit ec435aebd6ed0523de2d341e6aff5ae66f230b10
650Author: Ran Benita <ran234@gmail.com>
651Date:   Sun Oct 12 21:58:15 2014 +0300
652
653    c_client.py: use C99 initializers instead of comments
654    
655    Signed-off-by: Ran Benita <ran234@gmail.com>
656    Reviewed-by: Christian Linhart <chris@demorecorder.com>
657
658commit 89498d1d450d0e6e476f6b24908ecae857863386
659Author: Ran Benita <ran234@gmail.com>
660Date:   Sun Oct 12 21:58:11 2014 +0300
661
662    c_client.py: remove end-of-function comments
663    
664    Signed-off-by: Ran Benita <ran234@gmail.com>
665    Reviewed-by: Christian Linhart <chris@demorecorder.com>
666
667commit 2871d4b1b8736044ba50df2f7dacfcc65d820fa9
668Author: Ran Benita <ran234@gmail.com>
669Date:   Sun Oct 12 21:58:10 2014 +0300
670
671    c_client.py: no need to compare bools to True/False
672    
673    Signed-off-by: Ran Benita <ran234@gmail.com>
674    Reviewed-by: Christian Linhart <chris@demorecorder.com>
675
676commit 30976e5255a25117d17d4d8162e29b84913953cd
677Author: Ran Benita <ran234@gmail.com>
678Date:   Sun Oct 12 21:58:09 2014 +0300
679
680    c_client.py: use "foo".join() instead of reduce
681    
682    Signed-off-by: Ran Benita <ran234@gmail.com>
683    Reviewed-by: Christian Linhart <chris@demorecorder.com>
684
685commit 0ab52cbcc630ff8ddfa6f6b245c6b3071867b291
686Author: Ran Benita <ran234@gmail.com>
687Date:   Sun Oct 12 21:58:08 2014 +0300
688
689    c_client.py: fix indentation
690    
691    (Also remove unnecessary parens around the condition).
692    
693    Signed-off-by: Ran Benita <ran234@gmail.com>
694    Reviewed-by: Christian Linhart <chris@demorecorder.com>
695
696commit 80341d5df3e30e2cfc3066d05256af9e513e4500
697Author: Ran Benita <ran234@gmail.com>
698Date:   Sun Oct 12 21:58:07 2014 +0300
699
700    c_client.py: use comprehensions instead of map/filter
701    
702    Signed-off-by: Ran Benita <ran234@gmail.com>
703    Reviewed-by: Christian Linhart <chris@demorecorder.com>
704
705commit 86ea6645d9e388112670cf88da1fe3b350953789
706Author: Ran Benita <ran234@gmail.com>
707Date:   Sun Oct 12 21:58:06 2014 +0300
708
709    c_client.py: use print as a function for python3 compatibility
710    
711    This works for all python>=2.6, which is what configure requires.
712    
713    Signed-off-by: Ran Benita <ran234@gmail.com>
714    Reviewed-by: Christian Linhart <chris@demorecorder.com>
715
716commit 70d32ce7d8ef3ce9490d9a51b189829c8bcdb5c4
717Author: Ran Benita <ran234@gmail.com>
718Date:   Sun Oct 12 21:58:05 2014 +0300
719
720    c_client.py: fix pyflakes errors
721    
722    c_client.py:2: 'from xml.etree.cElementTree import *' used; unable to detect undefined names
723    c_client.py:3: 'basename' imported but unused
724    c_client.py:9: 'time' imported but unused
725    c_client.py:1437: local variable 'list_obj' is assigned to but never used
726    c_client.py:1745: local variable 'varfield' is assigned to but never used
727    c_client.py:2050: local variable 'length' is assigned to but never used
728    c_client.py:2416: local variable 'R_obj' is assigned to but never used
729    c_client.py:2441: local variable 'S_obj' is assigned to but never used
730    
731    Signed-off-by: Ran Benita <ran234@gmail.com>
732    Reviewed-by: Christian Linhart <chris@demorecorder.com>
733
734commit 12d23b934f189607ad77667834205dfcf89a41f0
735Author: Ran Benita <ran234@gmail.com>
736Date:   Sun Oct 12 21:58:04 2014 +0300
737
738    c_client.py: simplify maximum expression
739    
740    Signed-off-by: Ran Benita <ran234@gmail.com>
741    Reviewed-by: Christian Linhart <chris@demorecorder.com>
742
743commit 1b37d6ad3a37a9d0201e3b2caee6cd53b7b4b3dc
744Author: Ran Benita <ran234@gmail.com>
745Date:   Sun Oct 12 21:58:03 2014 +0300
746
747    c_client.py: remove unneeded call to get_serialize_params()
748    
749    The results are not used, and the function doesn't have side effects.
750    
751    Signed-off-by: Ran Benita <ran234@gmail.com>
752    Reviewed-by: Christian Linhart <chris@demorecorder.com>
753
754commit e3ec1f74637237ce500dfd0ca59f2e422da4e019
755Author: Jaya Tiwari <tiwari.jaya18@gmail.com>
756Date:   Thu Jan 22 12:16:33 2015 -0500
757
758    Adding accessors for requests
759    
760    Added accessor functions for requests the same way they were added for
761    structs,events and replies.
762    Lists for replies have accessor functions now.
763    
764    Signed-off-by: Jaya Tiwari <tiwari.jaya18@gmail.com>
765    Reviewed-by: Christian Linhart <chris@demorecorder.com>
766    
767    Comment from the Reviewer Christian Linhart:
768    I have tested your patch after fixing the issues with the patch-format.
769    It looks good:
770    * only adds new functions, and does not modify existing functions.
771      Therefore it is API and ABI compatible.
772    
773    * adds accessors for varsized-stuff in requests.
774      This is needed for server-side XCB and may be useful for implementing X11-protocol proxies.
775
776commit 5353c0216e091b64d01a43e6580e6d69b2ac16c7
777Merge: bbca7b8 c6f3fb2
778Author: Christian Linhart <chris@demorecorder.com>
779Date:   Tue Feb 10 10:13:04 2015 +0100
780
781    Merge http://git.demorecorder.com/git/free-sw/xcb/libxcb
782    branch 'ParametrizedStruct-V7'
783
784commit c6f3fb2529a6211221e8254f58c85fd67c1d8844
785Author: Christian Linhart <chris@DemoRecorder.com>
786Date:   Mon Nov 3 09:57:59 2014 +0100
787
788    generator: support parametrized structs
789    
790    Parametrized structs contain paramref expressions which
791    refer to the value of a field defined in the context
792    where the struct is used.
793    
794    Implementing the parametrized structs turned out
795    to be somewhat easier than previously thought
796    because the generator already had some support for type-parametrization
797    because this is needed when case or bitcase refers to fields outside
798    of the switch.
799    
800    So I decided to go with the flow and to implement the solution
801    which best fits the current implementation.
802    
803    I did the following:
804    * I provided a way to specify fieldref with an explicitely given type:
805      This resulted in <paramref type="CARD8>fieldname</paramref>
806      A paramref is just a fieldref with an explicit type.
807      The type is necessary because there is no local field of that
808      name where the type can be derived from.
809    
810    * then I tested it and made several changes in the generator
811      such that it really works.
812    
813    Basically the generated code is as follows:
814    * The parameter appears on the parameter list of the
815      sizeof-function of the parametrized struct.
816      When that function gets called, an appropriate argument is supplied.
817    
818    * The parameter also appears as an additional member of the iterator-struct
819      for the iterator of lists of that parametrized struct.
820      This way, the next-function can get the value of that parameter from the iterator.
821      When the iterator is created, this iterator-member is set accordingly.
822    
823    * When the paramref appears in the length-expression of a list, then
824      the parameter appears on the parameterlist of the "length" and "end" functions.
825      When these functions get called, an appropriate argument is supplied.
826    
827    Some comments:
828    * I did not implement inline structs.
829      This would probably have been more complicated, and at least some additional effort.
830      But that can be implemented later if needed.
831      (Inline structs could probably use some code from switch-case/bitcase which is already kind of
832      an inlined struct but one has to be careful not to break the functionality
833      of switch-case/bitcase. Support for inline structs inside lists must probably
834      be implemented from scratch...)
835    
836    * The paramref expression refers to a field of the same name in the struct/request/...
837      where it is used.
838      So it is not possible to pass the value of arbitrary fields or even expressions
839      to the parametrized struct.
840      This would have been possible with the previously discussed <typearg>.
841      That can be added later, if needed.
842      ( Wont be too complicated )
843    
844    * So this is pretty much like the proposal from Ran Benita.
845    
846    changes for V2 of this patch, according to suggestions from Ran Benita:
847    * replace map with list comprehension
848      because map returns an iterator instead of a list from Python 3 on,
849      so it cannot be added to a list anymore.
850    
851    * removed "self" parameter of function additional_params_to_str
852      and accessed the variable additional_params from the outer
853      function directly.
854    
855    changes for V2 of this patch:
856    * adapt to revision 2 of patchset ListInputDevices
857    * style fixes for similar things that Ran Benita has found in my previous patches
858    
859    Message-ID: <54574397.4060000@DemoRecorder.com>
860    Patch-Thread-Subject: [Xcb] parametrized structs implemented
861    Patch-Set: ParametrizedStruct
862    Patch-Number: libxcb 1/1
863    Patch-Version: V3
864    Signed-off-by: Christian Linhart <chris@DemoRecorder.com>
865
866commit 912cd97a6dd019e9e7ecf09c82c4577dd2ad7529
867Author: Christian Linhart <chris@DemoRecorder.com>
868Date:   Mon Nov 3 09:58:08 2014 +0100
869
870    generator: support listelement-ref
871    
872    Support for listelement-ref needs the following three changes
873    (in the order as they appear in the patch):
874    
875    * making the current list-element accessible with the variable
876      xcb_listelement which is a pointer to the list-element
877    
878    * supporting lists of simple-type for sumof with a nested expression
879    
880    * using the variable for resolving a listelement-ref expression
881    
882    Changes for V2 of this patch:
883    - adapt to removal of patch "libxcb 2/6" from patchset "ListInputDevices".
884    
885    Changes for V3 of this patch:
886    - adapt to V2 of patch "libxcb 5/6" from patchset "ListInputDevices"
887    
888    Changes for V4 of this patch:
889    - adapt to revision 2 of the patchset "ListInputDevices"
890    
891    Message-ID: <545743A0.50907@DemoRecorder.com>
892    Patch-Thread-Subject: [Xcb] support popcount of a list and associated xml changes
893    Patch-Set: PopcountList
894    Patch-Number: libxcb 4/4
895    Patch-Version: V4
896    Signed-off-by: Christian Linhart <chris@DemoRecorder.com>
897
898commit 422458b66380e4103c4937f0e2e8bb93e31f273a
899Author: Christian Linhart <chris@demorecorder.com>
900Date:   Thu Sep 4 17:50:50 2014 +0200
901
902    generator: _c_accessor_get_length: remove buggy special case
903    
904    The function _c_accessor_get_length had a special case handling
905    for intermixed var and fixed size fields.
906    
907    However:
908    * The implementation of that special case was buggy:
909      It tried to call a python-dict as a function which causes
910      Python to abort the program with a stacktrace and error message.
911      So this code was never used.
912    
913    * The case it tried to handle is handeled elsewhere in the
914      meantime: in _c_helper_absolute_name by previous patches
915      made by me.
916    
917    Message-ID: <1409845851-38950-3-git-send-email-chris@demorecorder.com>
918    Patch-Thread-Subject: [Xcb] support popcount of a list and associated xml changes
919    Patch-Set: PopcountList
920    Patch-Number: libxcb 3/4
921    Patch-Version: V1
922    Signed-off-by: Christian Linhart <chris@DemoRecorder.com>
923
924commit b1e4a3bbd8194d12d7fcd9705fcbbe0deb59bcba
925Author: Christian Linhart <chris@demorecorder.com>
926Date:   Thu Sep 4 17:50:49 2014 +0200
927
928    generator: generate accessors for events, too
929    
930    Accessors are generally needed for var-sized fields
931    and fields after var-sized fields.
932    
933    Generic events can have ver-sized fields.
934    Therefore they need accessors.
935    
936    Message-ID: <1409845851-38950-2-git-send-email-chris@demorecorder.com>
937    Patch-Thread-Subject: [Xcb] support popcount of a list and associated xml changes
938    Patch-Set: PopcountList
939    Patch-Number: libxcb 2/4
940    Patch-Version: V1
941    Signed-off-by: Christian Linhart <chris@DemoRecorder.com>
942
943commit 6234225b4be862c5882bf547d066c5a3885906dd
944Author: Christian Linhart <chris@demorecorder.com>
945Date:   Thu Sep 4 17:50:48 2014 +0200
946
947    generator: no type-setup for eventcopies anymore
948    
949    _c_type_setup is not called for eventcopies anymore:
950    Reasons:
951    * the type-setup of an eventcopy would overwrite members of the original
952      event object such as c_type, ...
953    * it is needed for the next patch, i.e., generating accessors:
954      type_setup would create sizeof-etc funtions which called
955      undefined accessor functions.
956    
957    Sizeof-functions are generated for compatibility:
958    Reason:
959    * Type-setup of eventcopies has previously generated
960      sizeof-functions for eventcopies.
961      So, we still need to generate these functions.
962      These new sizeof-functions simply call the sizeof-function
963      of the defining event of the eventcopy.
964    
965    Message-ID: <1409845851-38950-1-git-send-email-chris@demorecorder.com>
966    Patch-Thread-Subject: [Xcb] support popcount of a list and associated xml changes
967    Patch-Set: PopcountList
968    Patch-Number: libxcb 1/4
969    Patch-Version: V1
970    Signed-off-by: Christian Linhart <chris@DemoRecorder.com>
971
972commit 18ff453edd42712ea4d1e7218bbe8829f9f4caba
973Author: Christian Linhart <chris@DemoRecorder.com>
974Date:   Sun Nov 2 13:46:58 2014 +0100
975
976    _c_helper_fieldaccess_expr: remove handling for empty sep
977    
978    The loop-variable "sep" is never empty in function
979    "_c_helper_fieldaccess_expr", after a fix elsewhere.
980    Therefore I removed the handling of the case of "sep" being empty.
981    
982    Thanks to Ran Benita for the hint that this can be removed.
983    
984    Signed-off-by: Christian Linhart <chris@demorecorder.com>
985    Reviewed-by: Ran Benita <ran234@gmail.com>
986    
987    Message-ID: <545627C2.3050608@DemoRecorder.com>
988    Patch-Thread-Subject: [Xcb] [PATCHSET] ListInputDevices revision 2
989    Patch-Set: ListInputDevices
990    Patch-Number: libxcb 9/9
991    Patch-Version: V1
992
993commit d905b886185fd8e0d9d7f70e0d112cb58ab86f98
994Author: Christian Linhart <chris@DemoRecorder.com>
995Date:   Sun Nov 2 13:46:50 2014 +0100
996
997    function _c_helper_fieldaccess_expr: improve description
998    
999    Signed-off-by: Christian Linhart <chris@demorecorder.com>
1000    Reviewed-by: Ran Benita <ran234@gmail.com>
1001    
1002    Message-ID: <545627BA.1000909@DemoRecorder.com>
1003    Patch-Thread-Subject: [Xcb] [PATCHSET] ListInputDevices revision 2
1004    Patch-Set: ListInputDevices
1005    Patch-Number: libxcb 8/9
1006    Patch-Version: V1
1007
1008commit 17f6e04493c93014beaf3a704c8cc4d050cb13bf
1009Author: Christian Linhart <chris@DemoRecorder.com>
1010Date:   Sun Nov 2 13:46:38 2014 +0100
1011
1012    rename _c_helper_absolute_name to _c_helper_fieldaccess_expr
1013    
1014    The function _c_helper_absolute_name was named in
1015    a misleading way.
1016    It computes a C-expression for accessing a field of an xcb-type.
1017    
1018    Therefore the name _c_helper_fieldaccess_expr is more appropriate.
1019    
1020    Note: Patch 6 of this series has been removed during the review process.
1021    
1022    Signed-off-by: Christian Linhart <chris@demorecorder.com>
1023    Reviewed-by: Ran Benita <ran234@gmail.com>
1024    
1025    Message-ID: <545627AE.2040200@DemoRecorder.com>
1026    Patch-Thread-Subject: [Xcb] [PATCHSET] ListInputDevices revision 2
1027    Patch-Set: ListInputDevices
1028    Patch-Number: libxcb 7/9
1029    Patch-Version: V1
1030
1031commit 51a0d57acc6ec0c9487d2dbc2dda806f05c49884
1032Author: Christian Linhart <chris@DemoRecorder.com>
1033Date:   Sun Nov 2 13:46:16 2014 +0100
1034
1035    generator: sumof with nested expression
1036    
1037    Support sumof with a nested expression.
1038    The nested expression is computed for every list-element
1039    and the result of the computation is added to the sum.
1040    
1041    This way, sumof can be applied to a list of structs,
1042    and, e.g., compute the sum of a specific field of that struct.
1043    
1044    example:
1045    <struct name="SumofTest_Element">
1046       <field type="CARD16" name="foo" />
1047       <field type="CARD16" name="bar" />
1048    </struct>
1049    
1050    <struct name="SumofTest_FieldAccess">
1051       <field type="CARD32" name="len" />
1052       <list type="SumofTest_Element" name="mylist1">
1053               <fieldref>len</fieldref>
1054       </list>
1055       <list type="CARD16" name="mylist2">
1056            <sumof ref="mylist1">
1057                    <fieldref>bar</fieldref>
1058            </sumof>
1059       </list>
1060    </struct>
1061    
1062    generated tmpvar:
1063        int xcb_pre_tmp_1; /* sumof length */
1064        int xcb_pre_tmp_2; /* sumof loop counter */
1065        int64_t xcb_pre_tmp_3; /* sumof sum */
1066        const xcb_input_sumof_test_element_t* xcb_pre_tmp_4; /* sumof list ptr */
1067    
1068    generated code:
1069        /* mylist2 */
1070        /* sumof start */
1071        xcb_pre_tmp_1 = _aux->len;
1072        xcb_pre_tmp_3 = 0;
1073        xcb_pre_tmp_4 = xcb_input_sumof_test_field_access_mylist_1(_aux);
1074        for ( xcb_pre_tmp_2 = 0; xcb_pre_tmp_2 < xcb_pre_tmp_1; xcb_pre_tmp_2++) {
1075            xcb_pre_tmp_3 += xcb_pre_tmp_4->bar;
1076            xcb_pre_tmp_4++;
1077        }
1078        /* sumof end. Result is in xcb_pre_tmp_3 */
1079        xcb_block_len += xcb_pre_tmp_3 * sizeof(uint16_t);
1080    
1081    changes for V2 of this patch:
1082    * explicitely set the member access operator in the prefix-tuple
1083      passed to function _c_helper_field_mapping.
1084      This enables us to simplify function "_c_helper_absolute_name"
1085      (which will be renamed "_c_helper_fieldaccess_expr" soon)
1086    
1087    V3: Changed style and formatting according to suggestions from Ran Benita
1088    
1089    Signed-off-by: Christian Linhart <chris@DemoRecorder.com>
1090    Reviewed-by: Ran Benita <ran234@gmail.com>
1091    
1092    Message-ID: <54562798.8040500@DemoRecorder.com>
1093    Patch-Thread-Subject: [Xcb] [PATCHSET] ListInputDevices revision 2
1094    Patch-Set: ListInputDevices
1095    Patch-Number: libxcb 5/9
1096    Patch-Version: V3
1097
1098commit 4a915c0dbadf326ea61349e29a0029d29f4bd339
1099Author: Christian Linhart <chris@DemoRecorder.com>
1100Date:   Sun Nov 2 13:45:40 2014 +0100
1101
1102    generator: sumof: support any type, generate explicit code
1103    
1104    A sumof-expression now generates explicit code ( for-loop etc )
1105    instead of calling xcb_sumof.
1106    
1107    This way, it supports any type which can be added.
1108    Previously, only uint_8 was supported.
1109    
1110    Here's an example and the generated code:
1111    
1112    xml:
1113    <struct name="SumofTest">
1114       <field type="CARD32" name="len" />
1115       <list type="CARD16" name="mylist1">
1116               <fieldref>len</fieldref>
1117       </list>
1118       <list type="CARD8" name="mylist2">
1119               <sumof ref="mylist1"/>
1120       </list>
1121    </struct>
1122    
1123    declaration of tempvars at the start of enclosing function:
1124        int xcb_pre_tmp_1; /* sumof length */
1125        int xcb_pre_tmp_2; /* sumof loop counter */
1126        int64_t xcb_pre_tmp_3; /* sumof sum */
1127        const uint16_t* xcb_pre_tmp_4; /* sumof list ptr */
1128    
1129    code:
1130        /* mylist2 */
1131        /* sumof start */
1132        xcb_pre_tmp_1 = _aux->len;
1133        xcb_pre_tmp_3 = 0;
1134        xcb_pre_tmp_4 = xcb_input_sumof_test_mylist_1(_aux);
1135        for ( xcb_pre_tmp_2 = 0; xcb_pre_tmp_2 < xcb_pre_tmp_1; xcb_pre_tmp_2++) {
1136            xcb_pre_tmp_3 += *xcb_pre_tmp_4;
1137            xcb_pre_tmp_4++;
1138        }
1139        /* sumof end. Result is in xcb_pre_tmp_3 */
1140        xcb_block_len += xcb_pre_tmp_3 * sizeof(uint8_t);
1141    
1142    This patch is also a preparation for sumof which can access
1143    fields of lists of struct, etc.
1144    
1145    V2: Changed style and formatting according to suggestions from Ran Benita
1146    
1147    Signed-off-by: Christian Linhart <chris@DemoRecorder.com>
1148    Reviewed-by: Ran Benita <ran234@gmail.com>
1149    
1150    Message-ID: <54562774.8030306@DemoRecorder.com>
1151    Patch-Thread-Subject: [Xcb] [PATCHSET] ListInputDevices revision 2
1152    Patch-Set: ListInputDevices
1153    Patch-Number: libxcb 4/9
1154    Patch-Version: V2
1155
1156commit fda1fb4ed47a705744677a0074d83464af7aa4eb
1157Author: Christian Linhart <chris@DemoRecorder.com>
1158Date:   Sun Nov 2 13:45:29 2014 +0100
1159
1160    generator: expressions can generate pre-code
1161    
1162    This patch provides a mechanism for generating
1163    preparatory code for expressions.
1164    
1165    This is e.g. necessary when an expression needs computations
1166    which cannot be done in a C-Expression, like for-loops.
1167    
1168    This will be used for sumof expressions but may be useful
1169    elsewhere.
1170    
1171    Note: Patch 2 of this series has been removed during the review process.
1172    
1173    V2: adapt to changes in previous patches
1174    
1175    V3: some style and formatting changes according to suggestions from Ran Benita.
1176    
1177    Signed-off-by: Christian Linhart <chris@DemoRecorder.com>
1178    Reviewed-by: Ran Benita <ran234@gmail.com>
1179    
1180    Message-ID: <54562769.3090405@DemoRecorder.com>
1181    Patch-Thread-Subject: [Xcb] [PATCHSET] ListInputDevices revision 2
1182    Patch-Set: ListInputDevices
1183    Patch-Number: libxcb 3/9
1184    Patch-Version: V3
1185
1186commit 265d38882cffce597367cc8bb2160b9e2482a80f
1187Author: Christian Linhart <chris@DemoRecorder.com>
1188Date:   Sun Nov 2 13:45:12 2014 +0100
1189
1190    generator: fix absname for fields with only accessor function
1191    
1192    Fix _c_helper_absolute_name for fields which cannot be accessed
1193    as a struct/union member but which can be accessed by an
1194    accessor function.
1195    
1196    The fix generates calls to the accessor function in these cases.
1197    
1198    Example:
1199    <struct name="AbsnameTest">
1200    <field type="CARD32" name="len" />
1201    <list type="CARD8" name="mylist1">
1202       <fieldref>len</fieldref>
1203    </list>
1204    <list type="CARD8" name="mylist2">
1205       <sumof ref="mylist1"/>
1206    </list>
1207    </struct>
1208    
1209    The sumof-expression ( <sumof ref="mylist1"/> ) refers to mylist1
1210    which is only acessible by an accessor function.
1211    
1212    Previously, sumof was only used inside bitcases,
1213    where such lists are accessible by members of the
1214    deserialized parent struct.
1215    (there is a difference between deserialization of switches
1216    and structs.)
1217    
1218    V2 of this patch:
1219    * replaced "!= None" with "is not None" because that's more pythonic.
1220    (according to suggestion from Ran Benita)
1221    
1222    V3 of this patch: simplification:
1223    * fixed the recursion in _c_type_setup
1224      so that _c_helper_absolute_name does not need check
1225      a gazillion things as a workaround anymore.
1226    
1227    * simplified _c_helper_absolute_name
1228      - remove unneeded check for empty string before
1229        append of last_sep to prefix_str
1230    
1231      - removed those if-conditions which are not
1232        needed anymore after fixing the recursion
1233        in _c_type_setup.
1234    
1235      - extract functionality for checking whether a field
1236        needs an accessor ( and which type of accessor )
1237        in functions.
1238        (also extracted from _c_accessors)
1239    
1240      - rearrange the condition branches and actions for
1241        more readability.
1242    
1243    V3 generates exactly the same *.c and *.h files as V2.
1244    
1245    V4 of this patch:
1246    * improve formatting as per suggestions of Ran
1247    
1248    Signed-off-by: Christian Linhart <chris@DemoRecorder.com>
1249    Reviewed-by: Ran Benita <ran234@gmail.com>
1250    
1251    Message-ID: <54562758.5090107@DemoRecorder.com>
1252    Patch-Thread-Subject: [Xcb] [PATCHSET] ListInputDevices revision 2
1253    Patch-Set: ListInputDevices
1254    Patch-Number: libxcb 1/9
1255    Patch-Version: V4
1256
1257commit bbca7b82f803fa13fd30a2891ec06f2a213a28c2
1258Merge: 382d306 fdb291b
1259Author: Peter Harris <pharris@opentext.com>
1260Date:   Thu Oct 30 11:51:57 2014 -0400
1261
1262    Merge branch 'NestedStructTypenames-V5' of http://infra-srv1.demorecorder.com/git/free-sw/xcb/libxcb
1263
1264commit fdb291b414a7afc2c2326124b8ca11d6846cd7b9
1265Author: Christian Linhart <chris@demorecorder.com>
1266Date:   Wed Sep 3 10:10:49 2014 +0200
1267
1268    no typename for nested structs
1269    
1270    Nested structs which are generated for named case and bitcase
1271    do not get a typename anymore, i.e., they are anonymous structs.
1272    
1273    Reasons for this change:
1274    * Prior typenames have caused nameclashes
1275    * Prior typenames introduced names in the global namespace which
1276      did not start with the xcb prefix.
1277    
1278    This change is safe with respect to API compatibility because:
1279    I have searched for instances of named bitcases and there's only one place
1280    where they are used, and that's in xkb.xml: reply GetKbdByName.
1281    ( no need to search for <case> because it was introduced after the last release )
1282    
1283    The reply GetKbdByName is broken in its current form in the xkb.xml anyways,
1284    so it is most probably not used anywhere.
1285    
1286    So, my conclusion is that we can safely omit named types for nested structs.
1287    No need for an attribute.
1288    
1289    Message-ID: <1409731849-51897-1-git-send-email-chris@demorecorder.com>
1290    Patch-Thread-Subject: Re: [Xcb] names of nested structs of named bitcase/case are prone to nameclashes. Solution?
1291    Patch-Set: NestedStructTypenames
1292    Patch-Number: libxcb 1/1
1293    Patch-Version: V1
1294    Signed-off-by: Christian Linhart <chris@DemoRecorder.com>
1295    Reviewed-By: Ran Benita <ran234@gmail.com>
1296
1297commit a7c75be5b1e2da32f7ce2c255972178e7d4b7598
1298Author: Christian Linhart <chris@DemoRecorder.com>
1299Date:   Tue Sep 9 23:26:40 2014 +0200
1300
1301    generator: fix align-pads for switches which start at unaligned pos
1302    
1303    Fix the alignment computation inside switches which start at
1304    an unaligned pos.
1305    This affects both explicit and implicit align pads.
1306    
1307    The alignment offset is derived from the lowest 3 bits of
1308    the pointer to the protocol-data at the start of the switch.
1309    This is sufficient for correcting all alignments up to 8-byte alignment.
1310    As far as I know there is no bigger alignment than 8-byte for the
1311    X-protocol.
1312    
1313    Example:
1314    struct InputState, where the switch starts after two 1-byte fields,
1315    which is a 2 byte offset for 4-byte and 8-byte alignment.
1316    
1317    The previous problem can be demonstrated when adding a
1318    <pad align="4"/> at the end of case "key".
1319    
1320    (Or when finding a testcase which reports the case "valuator" not
1321    at the last position of the QueryDeviceState-reply.
1322    I didn't find such a testcase, so I have used the pad align
1323    as described above.)
1324    
1325    V2: patch modified in order to fix bugs which I found when working on the
1326    next issue:
1327    * xcb_padding_offset has to be set 0 when xcb_block_len is set 0
1328    * xcb_padding_offset cannot be "const" therefore
1329    * for unpack and unserialize, the padding_offset must computed
1330      from _buffer instead of from the aux_var.
1331    
1332    V3: patch revised according to suggestion by Ran Benita:
1333    * only create and use xcb_padding_offset for switch
1334    
1335    Message-ID: <1410298000-24734-1-git-send-email-chris@demorecorder.com>
1336    Patch-Thread-Subject: [Xcb] xinput:QueryDeviceState: full-support: generator and xml-changes
1337    Patch-Set: QueryDeviceState
1338    Patch-Number: libxcb 4/4
1339    Patch-Version: V3
1340    Signed-off-by: Christian Linhart <chris@DemoRecorder.com>
1341    Reviewed-By: Ran Benita <ran234@gmail.com>
1342
1343commit 277ea629def6728c9d826ff88e95b31c3e25915f
1344Author: Christian Linhart <chris@demorecorder.com>
1345Date:   Thu Aug 21 22:35:55 2014 +0200
1346
1347    generator: support lists of structs which contain a switch
1348    
1349    This essentially requires to have a correct sizeof-function
1350    for the struct.
1351    This in turn requires a sizeof-function for the switch, too.
1352    
1353    Making a sizeof-function for the switch is triggered by
1354    replacing "elif" by "if" in the first change of this patch.
1355    This way, c_need_sizeof is also set to True for switches if appropriate.
1356    
1357    The _c_serialize_helper_switch_field function has to support
1358    the context "sizeof":
1359    This is done in the second change of this patch
1360    
1361    The third change of this patch fixes an alignment error:
1362    It does not make sense to base the padding on the struct-type
1363    which is generated for switch because this struct does not
1364    represent the protocol. Rather it is the output of deserialization.
1365    ( The implicit padding for var-sized fields has other issues, IMHO,
1366    but I am not touching these now...)
1367    
1368    The effect on the generated code for the current xml-files
1369    is as follows:
1370    * several additional sizeof-functions are generated
1371    * the fix of the alignment error only changes one place
1372      in the XKB-extension for the GetKbdByName-reply.
1373      This is no problem because that reply in its current form
1374      is broken/unfinished anyways.
1375    
1376    Note:
1377    This patch also fixes a problem in the generator when
1378    a fixed-size list is the last field of a case or bitcase.
1379    
1380    Message-ID: <1408653356-21191-2-git-send-email-chris@demorecorder.com>
1381    Patch-Thread-Subject: [Xcb] xinput:QueryDeviceState: full-support: generator and xml-changes
1382    Patch-Set: QueryDeviceState
1383    Patch-Number: libxcb 2/3
1384    Patch-Version: V1
1385    Signed-off-by: Christian Linhart <chris@DemoRecorder.com>
1386    Reviewed-By: Ran Benita <ran234@gmail.com>
1387
1388commit 382d306d6c44a9ece5551c210a932773b5cb94a5
1389Author: Emil Velikov <emil.l.velikov@gmail.com>
1390Date:   Fri Sep 5 01:46:40 2014 +0100
1391
1392    Move internal/private dependencies to Requires.private
1393    
1394    Program using the xcb sub-modules has indirect compile and runtime
1395    dependency of core xcb. To ensure this out we currently list xcb in
1396    the Requires field of the pkg-config files. While this provides all
1397    the required dependencies for successful compilation this causes
1398    over-linking and hides potential linking miss-use against the xcb modules.
1399    
1400    By moving to Requires.private we retain the compilation and runtime
1401    compatibility and avoids any runtime problems.
1402    
1403    Cc: Keith Packard <keithp@keithp.com>
1404    Cc: Alan Coopersmith <alan.coopersmith@oracle.com>
1405    References: http://people.freedesktop.org/~dbn/pkg-config-guide.html#faq
1406    References: https://wiki.mageia.org/en/Overlinking_issues_in_packaging
1407    References: http://err.no/personal/blog/2008/Mar/25
1408    Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
1409    Reviewed-by: Julien Cristau <jcristau@debian.org>
1410    Signed-off-by: Uli Schlachter <psychon@znc.in>
1411
1412commit d74d066949dbbbbbcb03bf7764e63f4347f99974
1413Author: Christian Linhart <chris@DemoRecorder.com>
1414Date:   Sat Sep 6 20:06:15 2014 +0200
1415
1416    generator: support fixed size lists in var-sized structs
1417    
1418    V2: patch revised according to suggestions from Ran Benita:
1419    * removed blanks before an after parentheses of function-calls or tuples
1420    * replaced if by elif in "if field.type.is_list". ( this fixes old code )
1421    
1422    Message-ID: <540B4D17.1080908@DemoRecorder.com>
1423    Patch-Thread-Subject: [Xcb] xinput:QueryDeviceState: full-support: generator and xml-changes
1424    Patch-Set: QueryDeviceState
1425    Patch-Number: libxcb 1/3
1426    Patch-Version: V2
1427    Signed-off-by: Christian Linhart <chris@DemoRecorder.com>
1428    Reviewed-By: Ran Benita <ran234@gmail.com>
1429
1430commit b0e6c2de09c7474868dd7185674fa113a5c2e0aa
1431Author: Uli Schlachter <psychon@znc.in>
1432Date:   Mon Aug 18 10:38:48 2014 +0200
1433
1434    xcb_get_setup(): Never return NULL
1435    
1436    The documentation doesn't mention it and it's unlikely that a lot of code out
1437    there handles this case correctly. So, instead of returning NULL, let
1438    xcb_get_setup() return a pointer to a static, invalid, all-zero setup
1439    information structure.
1440    
1441    Signed-off-by: Uli Schlachter <psychon@znc.in>
1442
1443commit c4e40f646b8da4fd112ea54a612c880be5e942a8
1444Author: Uli Schlachter <psychon@znc.in>
1445Date:   Mon Aug 18 10:38:41 2014 +0200
1446
1447    Make some functions also work on error connections
1448    
1449    There is no technical reason why xcb_get_setup() and xcb_get_file_descriptor()
1450    shouldn't work on non-static error connections. They cannot be used for many
1451    useful things, but at least they work.
1452    
1453    This works around bugs in lots of programs out there which assume that
1454    xcb_get_setup() does not return NULL and which just happily dereference the
1455    results. Since xcb_connect() never returns NULL, it's a bit weird that
1456    xcb_get_setup() can do so. xcb_get_file_descriptor() is just modified since this
1457    can be done here equally easily and because the fd isn't closed until the final
1458    xcb_disconnect() on the error connection.
1459    
1460    Non-static error connections are connections which entered an error state after
1461    xcb_connect() succeeded. If something goes wrong in establishing a connection,
1462    xcb_connect() will return a static error connection which doesn't have the
1463    fields used here.
1464    
1465    Signed-off-by: Uli Schlachter <psychon@znc.in>
1466
1467commit 355d4d6ab9f5c12c2ee4a91e8cf6eb4a2854d73c
1468Author: Christian Linhart <chris@demorecorder.com>
1469Date:   Tue Aug 19 15:57:34 2014 +0200
1470
1471    support switch case in the generator
1472    
1473    The implementation is rather simple:
1474    When a <case> is used instead of a <bitcase>
1475    then operator "==" is used instead of "&" in the if-condition.
1476    
1477    So it creates a series of "if" statements
1478    (instead of a switch-case statement in C )
1479    
1480    In practice this does not matter because a good
1481    optimizing compiler will create the same code
1482    as for a switch-case.
1483    
1484    With this simple implementation we get additional
1485    flexibility in the following forms:
1486    * a case value may appear in multiple case branches.
1487      for example:
1488            case C1 will be selected by values 1, 4, or 5
1489            case C2 will be selected by values 3, 4, or 7
1490    
1491    * mixing of bitcase and case is possible
1492            (this will usually make no sense but there may
1493            be protocol specs where this is needed)
1494    
1495    details of the impl:
1496    * replaced "is_bitcase" with "is_case_or_bitcase" in all places
1497      so that cases are treated like bitcases.
1498    
1499    * In function "_c_serialize_helper_switch": write operator "=="
1500      instead of operator "&" if it is a case.
1501
1502commit 966fba6ba4838949d0727dfa45eeb9392d1f85d9
1503Author: Daniel Martin <consume.noise@gmail.com>
1504Date:   Tue Jul 29 22:48:44 2014 +0200
1505
1506    Disable Xevie and Xprint by default
1507    
1508    Both extensions have been dropped from the X-Server in 2008:
1509        http://cgit.freedesktop.org/xorg/xserver/commit/?id=1c8bd31
1510        http://cgit.freedesktop.org/xorg/xserver/commit/?id=f4036f6
1511    
1512    Don't build them by default.
1513    
1514    Reviewed-by: Julien Cristau <jcristau@debian.org>
1515    Signed-off-by: Daniel Martin <consume.noise@gmail.com>
1516    Signed-off-by: Uli Schlachter <psychon@znc.in>
1517
1518commit a5e90ae6a1543a681d95b831dc5c44e9c6e78610
1519Author: Gaetan Nadon <memsize@videotron.ca>
1520Date:   Wed Mar 26 15:40:57 2014 -0400
1521
1522    help text: do not report the insanly long list of Warning flags.
1523    
1524    Originally there was just one. Now that XCB has been integrated with X and
1525    uses the same compiler flags, it is a different story.
1526    
1527      Used CFLAGS:
1528        CPPFLAGS............:
1529        CFLAGS..............: -g -O2
1530        Warning CFLAGS......:  -Wall -Wpointer-arith AND SO ON FOR 8 lines...
1531    
1532    It completely defaces the otherwise excellent output.
1533    
1534    Reviewed-by: Josh Triplett <josh@joshtriplett.org>
1535    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1536    Signed-off-by: Uli Schlachter <psychon@znc.in>
1537
1538commit 529e3bfc2088dcd35e68a0a8394d0e9bff7c978b
1539Author: Gaetan Nadon <memsize@videotron.ca>
1540Date:   Wed Mar 26 15:40:56 2014 -0400
1541
1542    Add ChangeLog and INSTALL using xorg macros
1543    
1544    Same as all other X modules. The one in libxcb git is removed.
1545    
1546    Those files are created during 'make dist'
1547    
1548    Reviewed-by: Josh Triplett <josh@joshtriplett.org>
1549    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1550    Signed-off-by: Uli Schlachter <psychon@znc.in>
1551
1552commit 74f552c1b39eb6a1ab64451477a492a2b22d9d7a
1553Author: Gaetan Nadon <memsize@videotron.ca>
1554Date:   Wed Mar 26 15:24:46 2014 -0400
1555
1556    sendmsg: remove --enable-sendfds as it is superceeded by --enable-dri3
1557    
1558    DRI3 requires sendmsg support which is auto-detected. A builder can enable
1559    or disable dri3 feature. If sendmsg function is not available, dri3 cannot
1560    be enabled.
1561    
1562    This reverts af8067cbf4856 which was done at a time where --enable-dri3
1563    had not been added yet.
1564    
1565    Reviewed-by: Josh Triplett <josh@joshtriplett.org>
1566    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1567    Signed-off-by: Uli Schlachter <psychon@znc.in>
1568
1569commit 23f57ac8bf0812bbc851ec9a815e50a640b97db5
1570Author: Gaetan Nadon <memsize@videotron.ca>
1571Date:   Wed Mar 26 15:24:45 2014 -0400
1572
1573    config: issue an error if DRI3 is requested, but sendfds is not available
1574    
1575    When a user issues the --enable-dri3 option and sendfds is not available
1576    on the system, the configuration will abort with an error message.
1577    
1578    Reviewed-by: Josh Triplett <josh@joshtriplett.org>
1579    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1580    Signed-off-by: Uli Schlachter <psychon@znc.in>
1581
1582commit 7f07b57be587a2ebe0cadceba3fe67ed4a1e79db
1583Author: Gaetan Nadon <memsize@videotron.ca>
1584Date:   Wed Mar 26 15:24:44 2014 -0400
1585
1586    config: default option for enable-dri3 is not implemented
1587    
1588    The first symptom is the help text:
1589    
1590      --enable-dri3     Build XCB DRI3 Extension (default: "$sendfds")
1591    
1592    The implementation variable $sendfds leaked into the user interface.
1593    Testing the various user inputs:
1594      <nothing>                DRI3 is enabled     PASS
1595      --enable-dri3            DRI3 is enabled     PASS
1596      --enable-dri3=yes        DRI3 is enabled     PASS
1597      --enable-dri3=no         DRI3 is disabled    PASS
1598      --disable-dri3           DRI3 is disabled    PASS
1599      --enable-dri3=$sendfds   DRI3 is disabled    FAIL
1600    
1601    This patch implements the usual idiom for features that are enabled by
1602    default if the various conditions are met (sendfds is available).
1603    New help text:
1604    
1605      --enable-dri3     Build XCB DRI3 Extension (default: auto)
1606    
1607    With the additional user input:
1608    
1609      --enable-dri3=auto
1610    
1611    which is equivalent to providing no input at all.
1612    
1613    Reviewed-by: Josh Triplett <josh@joshtriplett.org>
1614    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1615    Signed-off-by: Uli Schlachter <psychon@znc.in>
1616
1617commit d1e8ec96fca4862f37ec9f0e9407bb989c4c161a
1618Author: Uli Schlachter <psychon@znc.in>
1619Date:   Fri Aug 1 15:56:52 2014 +0200
1620
1621    Release libxcb 1.11
1622
1623commit c5c6cfa4d2a27d0f9e139a1856d866433b6046bc
1624Author: Uli Schlachter <psychon@znc.in>
1625Date:   Fri Aug 1 16:03:24 2014 +0200
1626
1627    Bump xcb-proto requirement to 1.11
1628    
1629    This is needed for the new direct_imports field that we need from xcb-proto.
1630    
1631    Signed-off-by: Uli Schlachter <psychon@znc.in>
1632
1633commit 70ea5da64b34336bb0916f6c325545cb50746159
1634Author: Alexander Mezin <mezin.alexander@gmail.com>
1635Date:   Sun Jun 29 17:33:48 2014 +0700
1636
1637    xcb.h: add 'struct' before xcb_setup_t, xcb_query_extension_reply_t
1638    
1639    These structs are typedef'ed in xproto.h, so in xcb.h these types
1640    (without 'struct') are actually undefined.
1641    
1642    GCC reports this as error when building precompiled header.
1643    
1644    Signed-off-by: Alexander Mezin <mezin.alexander@gmail.com>
1645    Reviewed-by: Peter Harris <pharris@opentext.com>
1646
1647commit 7e6af51b4e984f661fe4f21596cab5cb8ee15ea0
1648Author: Ran Benita <ran234@gmail.com>
1649Date:   Tue Feb 25 14:11:35 2014 +0200
1650
1651    c_client.py: remove more trailing space from generated files
1652    
1653    Signed-off-by: Ran Benita <ran234@gmail.com>
1654    Reviewed-by: Josh Triplett <josh@joshtriplett.org>
1655    Reviewed-by: Daniel Martin <consume.noise@gmail.com>
1656
1657commit 8221d249b77131b338e3b35ce2229193f129e514
1658Author: Ran Benita <ran234@gmail.com>
1659Date:   Sun Feb 23 22:55:21 2014 +0200
1660
1661    c_client.py: remove trailing whitespace from generated files
1662    
1663    Signed-off-by: Ran Benita <ran234@gmail.com>
1664    Reviewed-by: Daniel Martin <consume.noise@gmail.com>
1665
1666commit e3c728ee3d9a2fd7478d5f57830c3483b774a16e
1667Author: Ran Benita <ran234@gmail.com>
1668Date:   Sun Feb 23 22:55:20 2014 +0200
1669
1670    c_client.py: remove useless generated comments
1671    
1672    They are bloated, don't add anything over the signature, in some cases
1673    duplicate the doxygen comments, and are not integrated with the <doc>
1674    tags in any way. Remove them and cut the generated LOC by half.
1675    
1676    Signed-off-by: Ran Benita <ran234@gmail.com>
1677    Reviewed-by: Daniel Martin <consume.noise@gmail.com>
1678
1679commit cae2e398563841c5b814596fd1f1c64354dcac71
1680Author: Ran Benita <ran234@gmail.com>
1681Date:   Sun Feb 23 22:55:19 2014 +0200
1682
1683    c_client.py: make the man page output deterministic
1684    
1685    Some parts of the man pages (SEE ALSO and ERRORS) are generated by
1686    iterating a Python dict. But the iteration order in a dict is random,
1687    so each build the output is ordered differently. Avoid that by iterating
1688    in sorted order.
1689    
1690    Signed-off-by: Ran Benita <ran234@gmail.com>
1691    Reviewed-by: Daniel Martin <consume.noise@gmail.com>
1692
1693commit bfbf83b1d8113ac398b57c2738706792946d1c03
1694Author: Ran Benita <ran234@gmail.com>
1695Date:   Sun Feb 23 22:55:18 2014 +0200
1696
1697    c_client.py: prefix all monkey-patched fields with c_
1698    
1699    The script adds many fields to the objects coming from xcbgen. To
1700    distinguish them, a c_ prefix is used, but for some it was missing.
1701    
1702    Signed-off-by: Ran Benita <ran234@gmail.com>
1703    Reviewed-by: Daniel Martin <consume.noise@gmail.com>
1704
1705commit 285d566a5c11c6edd3665beb42312e24bde77d16
1706Author: Ran Benita <ran234@gmail.com>
1707Date:   Sun Feb 23 22:55:17 2014 +0200
1708
1709    c_client.py: remove trailing whitespace
1710    
1711    These are extra annoying in python code.
1712    
1713    Signed-off-by: Ran Benita <ran234@gmail.com>
1714    Reviewed-by: Daniel Martin <consume.noise@gmail.com>
1715
1716commit 285838cfe41c212a2453d903497757d2392fd0ce
1717Author: Ran Benita <ran234@gmail.com>
1718Date:   Sun Feb 23 22:55:16 2014 +0200
1719
1720    c_client.py: remove useless 'today' variable
1721    
1722    Signed-off-by: Ran Benita <ran234@gmail.com>
1723    Reviewed-by: Daniel Martin <consume.noise@gmail.com>
1724
1725commit 49a61c8b459ab19c7f39e653bbb0d0339ea8f00f
1726Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1727Date:   Fri Jul 11 20:41:15 2014 -0700
1728
1729    Fix typos & awkward wording in tutorial
1730    
1731    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1732
1733commit 125135452a554e89e49448e2c1ee6658324e1095
1734Author: Michael Haubenwallner <michael.haubenwallner@salomon.at>
1735Date:   Fri Jun 13 16:18:34 2014 +0200
1736
1737    bug#79986: include system headers early
1738    
1739    AIX <sys/poll.h> does redefine 'events' to 'reqevents' eventually.
1740    To not have this cause compilation errors, need to include the local
1741    header files after any system header file.
1742    
1743    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1744    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1745
1746commit bc5a1047548b578624cfbc44ca192cde7664ed78
1747Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1748Date:   Fri Jun 13 21:26:21 2014 -0700
1749
1750    Document failure modes of xcb_connect*() functions
1751    
1752    Documentation was previously unclear that these always return a non-NULL
1753    pointer, and that callers need to check it for error values, instead of
1754    checking for a NULL return value.
1755    
1756    Triggered by having to dig through code to answer a user's question on
1757    the #xcb irc channel, since neither of us found it covered in the docs.
1758    
1759    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1760    Reviewed-by: Uli Schlachter <psychon@znc.in>
1761
1762commit 72e45969ff71204cee2dde3502841736cfd41c8a
1763Author: Daniel Martin <consume.noise@gmail.com>
1764Date:   Mon Jun 9 17:55:04 2014 +0200
1765
1766    Handle <pad align="n" /> between lists
1767    
1768    Without this patch we end up with invalid C code if we've a
1769    <pad align="n" /> between two variadic lists. Check for such a condition
1770    and take the alignment pad into account.
1771    
1772    Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=79808
1773    
1774    Signed-off-by: Daniel Martin <consume.noise@gmail.com>
1775    Signed-off-by: Peter Harris <pharris@opentext.com>
1776
1777commit d978a4f69b30b630f28d07f1003cf290284d24d8
1778Author: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
1779Date:   Sat Apr 5 20:54:59 2014 -0700
1780
1781    xcb_open: Improve abstraction for launchd secure sockets
1782    
1783    This changes away from hard-coding the /tmp/launch-* path to now
1784    supporting a generic <path to unix socket>[.<screen>] format for
1785    $DISPLAY.
1786    
1787    Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
1788
1789commit 29e419c5840a1eeda3336a0802686ee723dcaab3
1790Author: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
1791Date:   Sat Apr 5 21:09:42 2014 -0700
1792
1793    xcb_open: Minor code cleanup for better readability
1794    
1795    Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
1796    Reviewed-by: Uli Schlachter <psychon@znc.in>
1797
1798commit be0fe56c3bcad5124dcc6c47a2fad01acd16f71a
1799Author: Keith Packard <keithp@keithp.com>
1800Date:   Mon Dec 23 21:15:20 2013 -0800
1801
1802    Ensure xcb owns socket and no other threads are writing before send_request
1803    
1804    send_request may only write to out.queue if no other thread is busy
1805    writing to the network (as that thread may be writing from out.queue).
1806    
1807    send_request may only allocate request sequence numbers if XCB owns
1808    the socket.
1809    
1810    Therefore, send_request must make sure that both conditions are true
1811    when it holds iolock, which can only be done by looping until both
1812    conditions are true without having dropped the lock waiting for the
1813    second condition.
1814    
1815    We choose to get the socket back from Xlib first as get_socket_back
1816    has a complicated test and checking for other threads writing is a
1817    simple in-lined check.
1818    
1819    This also changes the sequence number checks (64k requests with no
1820    reply, 4M request wrapping) to ensure that both conditions are true
1821    before queueing the request.
1822    
1823    Signed-off-by: Keith Packard <keithp@keithp.com>
1824    Reviewed-by: Uli Schlachter <psychon@znc.in>
1825
1826commit e2813e1cde893f384fa620ff3c13493beebabe0c
1827Author: Keith Packard <keithp@keithp.com>
1828Date:   Wed Feb 12 14:15:46 2014 -0800
1829
1830    Update .pc file Requires lines to express full dependencies
1831    
1832    Some xcb libraries depend on others; make these dependencies explicit
1833    in the .pc files that are installed.
1834    
1835    This change was generated automatically by running 'check-pc-requires -fix'
1836    
1837    Signed-off-by: Keith Packard <keithp@keithp.com>
1838    Signed-off-by: Uli Schlachter <psychon@znc.in>
1839
1840commit 32de4c4213a49c61127c6957ea05fef3e5355291
1841Author: Keith Packard <keithp@keithp.com>
1842Date:   Wed Feb 12 14:15:45 2014 -0800
1843
1844    Validate .pc file Requires lines
1845    
1846    This walks through the .pc.in files and makes sure all of the Requires
1847    lines express sufficient dependency information.
1848    
1849    Signed-off-by: Keith Packard <keithp@keithp.com>
1850    Signed-off-by: Uli Schlachter <psychon@znc.in>
1851
1852commit 1f6cd9f1fcd3c07d323b678292c9cb00ae1f7504
1853Author: Keith Packard <keithp@keithp.com>
1854Date:   Wed Feb 12 14:15:44 2014 -0800
1855
1856    Only #include directly referenced module header files
1857    
1858    This avoids having the nested header files also included at the top
1859    level, which is more efficient.
1860    
1861    Signed-off-by: Keith Packard <keithp@keithp.com>
1862    Signed-off-by: Uli Schlachter <psychon@znc.in>
1863
1864commit cb686b576739deea00180c54697c8b62b8419ae0
1865Author: Uli Schlachter <psychon@znc.in>
1866Date:   Tue Feb 25 15:50:50 2014 +0100
1867
1868    Add doxygen documentation to functions in xcbext.h
1869    
1870    Signed-off-by: Uli Schlachter <psychon@znc.in>
1871    Reviewed-by: Josh Triplett <josh@joshtriplett.org>
1872
1873commit 2fb14e5883f2ea2f01d248674cfcc26ccb704753
1874Author: Uli Schlachter <psychon@znc.in>
1875Date:   Tue Dec 31 15:18:01 2013 +0100
1876
1877    Make xcb_disconnect(NULL) safe
1878    
1879    Code can be simplified if the deallocation functions can always be called in
1880    cleanup code. So if you have some code that does several things that can go
1881    wrong, one of which is xcb_connect(), after this change, the xcb_connection_t*
1882    variable can be initialized to NULL and xcb_disconnect() can always be called on
1883    the connection object.
1884    
1885    References: http://lists.freedesktop.org/archives/xcb/2013-September/008659.html
1886    
1887    Signed-off-by: Uli Schlachter <psychon@znc.in>
1888    Reviewed-by: Julien Cristau <jcristau@debian.org>
1889
1890commit 4dcbfd77b78ca6b016ce815af26235501f6cd75a
1891Author: Uli Schlachter <psychon@znc.in>
1892Date:   Tue Dec 31 15:05:36 2013 +0100
1893
1894    xcb_disconnect(): Fix leak with error connections
1895    
1896    There are two kind of error connections in XCB. First, if something goes wrong
1897    while the connection is being set up, _xcb_conn_ret_error() is used to return a
1898    static connection in an error state. If something goes wrong later,
1899    _xcb_conn_shutdown() is used to set c->has_error.
1900    
1901    This is important, because the static object that _xcb_conn_ret_error() returns
1902    must not be freed, while the dynamically allocated objects that go through
1903    _xcb_conn_shutdown() must obviously be properly deallocated.
1904    
1905    This used to work correctly, but in 769acff0da8, xcb_disconnect() was made to
1906    ignore all connections in an error state completely. Fix this by only ignoring
1907    the few static error connections that we have.
1908    
1909    This was tested with the following hack:
1910    
1911        xcb_connection_t *c = xcb_connect(NULL, NULL);
1912        close(xcb_get_file_descriptor(c));
1913        xcb_discard_reply(c, xcb_get_input_focus(c).sequence);
1914        xcb_flush(c);
1915        xcb_disconnect(c);
1916    
1917    Valgrind confirms that xcb has a memory leak before this patch that this patch
1918    indeed fixes.
1919    
1920    Signed-off-by: Uli Schlachter <psychon@znc.in>
1921    Reviewed-by: Julien Cristau <jcristau@debian.org>
1922
1923commit d84dd752ef571491b015443fefedca53c7f81282
1924Author: Uli Schlachter <psychon@znc.in>
1925Date:   Mon Sep 9 13:04:11 2013 +0200
1926
1927    Remove tabs and trailing whitespaces
1928    
1929    Signed-off-by: Uli Schlachter <psychon@znc.in>
1930
1931commit 4ffa6f83b92763eb901c7ddb7c20775e24d507ca
1932Author: Ran Benita <ran234@gmail.com>
1933Date:   Sat Jan 18 17:10:53 2014 +0200
1934
1935    Add comments about how _xcb_conn_ret_error() works
1936    
1937    If xcb_connect() fails, it doesn't return NULL. Instead, it always
1938    returns an xcb_connection_t*, and the user should check for errors with
1939    the xcb_connection_has_error() function. What this function does is
1940    check if conn->has_error contains a non-zero error code, and returns it.
1941    
1942    If an error did occur, xcb doesn't actually return a full
1943    xcb_connection_t though, it just returns (xcb_connection_t *)
1944    error_code. Since the 'has_error' field is the first, it is still
1945    possible to check conn->has_error.
1946    
1947    That last trick was not immediately obvious to me, so add some guiding
1948    comments. This also ensures no one obliviously rearranges the struct.
1949    
1950    Signed-off-by: Ran Benita <ran234@gmail.com>
1951    Signed-off-by: Uli Schlachter <psychon@znc.in>
1952
1953commit d7eb0bdf3b5b11ee9f40ee5e73df8fc0bdfa59f3
1954Author: Gaetan Nadon <memsize@videotron.ca>
1955Date:   Tue Jan 7 14:02:21 2014 -0500
1956
1957    generated man pages: use xorg footer and no hard coded extension
1958    
1959    The section number is no longer hard-coded
1960    The left footer is now "X Version 11".
1961    The center footer is the package name with the version, "libxcb 1.9"
1962    The three values above are provided through xorg-macros. They are passed-in
1963    to the python c_client code.
1964    
1965    Example of footer (last line, above dotted line)
1966    
1967    [...]
1968    AUTHOR
1969           Generated from xproto.xml. Contact xcb@lists.freedesktop.org for cor‐
1970           rections and improvements.
1971    
1972    X Version 11                      libxcb 1.9                 xcb_send_event(3)
1973    
1974    ------------------------------------------------------------------------------
1975    
1976    Reviewed-by: Josh Triplett <josh@joshtriplett.org>
1977    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1978
1979commit e4061b8f00d301a51d4c9eef4a07f1e87592fe85
1980Author: Gaetan Nadon <memsize@videotron.ca>
1981Date:   Tue Jan 7 14:02:16 2014 -0500
1982
1983    generated man pages: build without hard coded extension
1984    
1985    The automake MAN primary requires a hard coded extension to build
1986    man pages. Let's avoid that as the extension number may vary by platform.
1987    Take advantage of the fact that the man directory only contains man pages.
1988    Wildcards are not supported by Automake but it happens to work
1989    sufficiently well here.
1990    
1991    Normally xorg build man pages by converting a source .man file to a
1992    target file with the extension number. That would be too many files
1993    in this case.
1994    
1995    Reviewed-by: Josh Triplett <josh@joshtriplett.org>
1996    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1997
1998commit 3cdd524cadc4352ebd9e17b1f73134bec1838b40
1999Author: Gaetan Nadon <memsize@videotron.ca>
2000Date:   Tue Jan 7 14:02:05 2014 -0500
2001
2002    man: build static man pages using xorg patterns
2003    
2004    The section number is no longer hard-coded, supplied by xorg-macros.
2005    The left footer is now "X Version 11".
2006    The center footer is the package name with the version, "libxcb 1.9"
2007    The man directory is a sibbling to the doc directory. One can build
2008    or clean the man pages without disturbing the library code.
2009    
2010    Reviewed-by: Josh Triplett <josh@joshtriplett.org>
2011    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2012
2013commit c056adcd92daa06f4825d5c85a40e140a3e85b42
2014Author: Gaetan Nadon <memsize@videotron.ca>
2015Date:   Thu Jan 9 14:32:18 2014 -0500
2016
2017    autoconf: replace all tabs with spaces
2018    
2019    Reviewed-by: Josh Triplett <josh@joshtriplett.org>
2020    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2021
2022commit 412928f113c8a5e5b30c03a294a42b0b1cf5f5d7
2023Author: Gaetan Nadon <memsize@videotron.ca>
2024Date:   Tue Jan 7 14:00:44 2014 -0500
2025
2026    autoconf: use default xorg configuration for doxygen documentation
2027    
2028    No content or form changes for the xcb manual or tutorial.
2029    Only the configuration user visible bits change.
2030    
2031    Xcb will now have the same configuration options as the 30 other
2032    xorg modules.
2033    
2034    Xorg classifies documentation as "user", "developer" or "specifications".
2035    The xcb manual falls under the "developer" category. Developers docs
2036    are never installed under $prefix.
2037    
2038    A builder can selectively turn on/off any or all of the categories. He can
2039    also selectively turn on/off any of the many tools used to generate
2040    documentation such as doxygen, xmlto, etc... Each tool has an environment
2041    variable defined such as DOXYGEN.
2042    
2043    Other features are available, the user interface and the functionality
2044    is the same on all modules.
2045    
2046    --with-doxygen=FILE is replaced with DOXYGEN env variable
2047    --disable-build-docs is replaced with --disable-devel-docs
2048    
2049    The new interface displayed with ./configure --help:
2050    
2051      --enable-devel-docs     Enable building the developer documentation
2052                              (default: yes)
2053      --with-doxygen          Use doxygen to regenerate documentation (default:
2054                              auto)
2055      DOXYGEN     Path to doxygen command
2056      DOT         Path to the dot graphics utility
2057    
2058    The dot tool checking has been added to util-macros in version 1.18.
2059    
2060    Refer to the table of existing docs in xorg.
2061    XCB will be added for the doxygen generated API manual.
2062    
2063    Reviewed-by: Josh Triplett <josh@joshtriplett.org>
2064    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2065
2066commit 9ba6aa759e937e60b231b209b1293a40ad6c7a8a
2067Author: Gaetan Nadon <memsize@videotron.ca>
2068Date:   Tue Jan 7 14:00:43 2014 -0500
2069
2070    autoconf: fix warning by replacing deprecated AC_HELP_STRING
2071    
2072    Reviewed-by: Josh Triplett <josh@joshtriplett.org>
2073    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2074
2075commit 942eabaae3600e7277aa09a179ef10c9a06de62f
2076Author: Gaetan Nadon <memsize@videotron.ca>
2077Date:   Tue Jan 7 14:00:42 2014 -0500
2078
2079    autoconf: require libtool minimum level 2.2
2080    
2081    This is the updated minimum level as referenced in:
2082    http://www.x.org/wiki/Building_the_X_Window_System/#index2h3
2083    
2084    Libtool version 2 has been used for several years now. There should be
2085    no surprises.
2086    
2087    Reviewed-by: Josh Triplett <josh@joshtriplett.org>
2088    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2089
2090commit 517cb0e888eca4030b4bd00c316619db925032ea
2091Author: Gaetan Nadon <memsize@videotron.ca>
2092Date:   Tue Jan 7 14:00:41 2014 -0500
2093
2094    autoconf: comment and layout the initialization section
2095    
2096    No functional changes. Trying to make it clearer.
2097    
2098    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2099    Reviewed-by: Josh Triplett <josh@joshtriplett.org>
2100    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2101
2102commit 0a17b61a8971d3c4600a5c19fa7d753e7196abfb
2103Author: Gaetan Nadon <memsize@videotron.ca>
2104Date:   Tue Jan 7 14:00:40 2014 -0500
2105
2106    autoconf: AC_INIT: add bug url
2107    
2108    Reviewed-by: Josh Triplett <josh@joshtriplett.org>
2109    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2110
2111commit 414b1037c5a9770270022e62aa66fe7a4021a96b
2112Author: Gaetan Nadon <memsize@videotron.ca>
2113Date:   Tue Jan 7 14:00:39 2014 -0500
2114
2115    autoconf: use the warning variables from xorg
2116    
2117    The BASE_CFLAGS variable contains only warnings, just like the XCB
2118    version of CWARNFLAGS. This will result in no changes in the binaries
2119    produced. Xorg was missing -fd for SUNCC so it has been added to util-macros
2120    v 1.18.
2121    
2122    Do not get confused with the xorg deprecated CWARNFLAGS variable which
2123    contains an option that is not a warning, -fno-strict-aliasing. This
2124    option, should it be needed, can be added using the XORG_TESTSET_CFLAG
2125    macro.
2126    
2127    Reviewed-by: Josh Triplett <josh@joshtriplett.org>
2128    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2129
2130commit c4f2c70bc37a592406b7693562c7513f2f99b34d
2131Author: Gaetan Nadon <memsize@videotron.ca>
2132Date:   Tue Jan 7 14:00:38 2014 -0500
2133
2134    autoconf: use XORG_DEFAULT_OPTIONS
2135    
2136    XCB has been part of X.Org for a while now. This patch will harmonize the XCB
2137    configuration, using xorg-macros series of macros. It is already used in the
2138    XCB utils packages and is needed to build xcb-proto.
2139    
2140    The XORG_DEFAULT_OPTIONS already includes the statement for the silent
2141    rules.
2142    
2143    The AC_PROG_CC statement is removed so as not to override AC_PROG_CC_C99
2144    in XORG_DEFAULT_OPTIONS. The effective change is that xcb now uses c99 as
2145    requested.
2146    
2147    Reviewed-by: Josh Triplett <josh@joshtriplett.org>
2148    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2149
2150commit e7263931aff3e3450dc938ad465a7577f943549f
2151Author: Peter Harris <pharris@opentext.com>
2152Date:   Tue Jan 14 14:50:55 2014 -0500
2153
2154    Support <pad align="n" />
2155    
2156    Reviewed-By: Ran Benita <ran234@gmail.com>
2157    Signed-off-by: Peter Harris <pharris@opentext.com>
2158
2159commit 3b72a2c9d1d656c74c691a45689e1d637f669e3a
2160Author: Kenneth Graunke <kenneth@whitecape.org>
2161Date:   Fri Jan 3 15:08:33 2014 -0800
2162
2163    Force XCB event structures with 64-bit extended fields to be packed.
2164    
2165    With the advent of the Present extension, some events (such as
2166    PresentCompleteNotify) now use native 64-bit types on the wire.
2167    
2168    For XGE events, we insert an extra "uint32_t full_sequence" field
2169    immediately after the first 32 bytes of data.  Normally, this causes
2170    the subsequent fields to be shifted over by 4 bytes, and the structure
2171    to grow in size by 4 bytes.  Everything works fine.
2172    
2173    However, if event contains 64-bit extended fields, this may result in
2174    the compiler adding an extra 4 bytes of padding so that those fields
2175    remain aligned on 64-bit boundaries.  This causes the structure to grow
2176    by 8 bytes, not 4.  Unfortunately, XCB doesn't realize this, and
2177    always believes that the length only increased by 4.  read_packet()
2178    then fails to malloc enough memory to hold the event, and the event
2179    processing code uses the wrong offsets.
2180    
2181    To fix this, mark any event structures containing 64-bit extended
2182    fields with __attribute__((__packed__)).
2183    
2184    v2: Use any(...) instead of True in (...), as suggested by
2185        Daniel Martin.
2186    
2187    v3 (Alan Coopersmith): Fix build with Solaris Studio 12.3 by moving the
2188    attribute to after the structure definition.
2189    
2190    Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
2191    Reviewed-by: Keith Packard <keithp@keithp.com> [v1]
2192    Reviewed-by: Josh Triplett <josh@joshtriplett.org> [v1]
2193    Reviewed-by: Daniel Martin <consume.noise@gmail.com>
2194    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2195
2196commit 010872f611a044ced4e96b18a7514796b2a443df
2197Author: Uli Schlachter <psychon@znc.in>
2198Date:   Sun Dec 22 15:59:24 2013 +0100
2199
2200    Release libxcb 1.10
2201    
2202    Signed-off-by: Uli Schlachter <psychon@znc.in>
2203
2204commit f653464554469b5767f1c99abced25a76bace047
2205Author: Julien Cristau <jcristau@debian.org>
2206Date:   Sat Dec 14 06:16:37 2013 +0100
2207
2208    Add NEWS for 1.10
2209    
2210    Signed-off-by: Julien Cristau <jcristau@debian.org>
2211
2212commit 9c2a6dc20c64ce93e0acd2fceec6d3cab8fc9134
2213Author: Uli Schlachter <psychon@znc.in>
2214Date:   Fri Nov 15 22:33:12 2013 +0100
2215
2216    Add NEWS entries for releases 1.9.1 to 1.9.3
2217    
2218    libxcb 1.9.1 was released from a branch and thus its NEWS entries never made it
2219    into the master branch. The other releases didn't update NEWS.
2220    
2221    Signed-off-by: Uli Schlachter <psychon@znc.in>
2222    Signed-off-by: Julien Cristau <jcristau@debian.org>
2223
2224commit ea4406a8e0193cad8effe569e7835f8b67894e54
2225Author: Julien Cristau <jcristau@debian.org>
2226Date:   Sat Dec 14 05:54:20 2013 +0100
2227
2228    Bump xcb-proto requirement to 1.10
2229    
2230    Makes sure we generate the new generic event struct.
2231    
2232    Signed-off-by: Julien Cristau <jcristau@debian.org>
2233
2234commit a1299eb2a210b5788a2b827b82a3d825caa1f201
2235Author: PHO <pho@cielonegro.org>
2236Date:   Tue Dec 3 12:43:04 2013 +0900
2237
2238    Test the value of msg_controllen for platforms whose CMSG_FIRSTHDR() does not test it for us
2239    
2240    As RFC 2292 points out, some platforms (e.g. Darwin 9.8.0) provide
2241    CMSG_FIRSTHDR(msg) which just returns msg.msg_control without first
2242    checking if msg.msg_controllen is non-zero. We need a workaround for
2243    such platforms not to let _xcb_in_read() segfault.
2244    
2245    https://bugs.freedesktop.org/show_bug.cgi?id=72253
2246    
2247    Signed-off-by: Julien Cristau <jcristau@debian.org>
2248
2249commit b30b11ac49d934541312b03c41d1ab83047a59f4
2250Author: Uli Schlachter <psychon@znc.in>
2251Date:   Mon Nov 18 20:28:08 2013 +0100
2252
2253    Increment the "current" version info for sync, xinput and xkb
2254    
2255    Sync: Due to commit e6a246e50e62cbcba3 "sync: Change value list param of
2256    CreateAlarm and ChangeAlarm into switch", various symbols disappeared,
2257    for example xcb_sync_{change,create}_alarm_sizeof.
2258    
2259    xinput: This extension was updated from version 1.4 to 2.3. This means
2260    that lots of new things are generated. However, this change is
2261    backwards-compatible and thus age gets set to 1.
2262    
2263    xkb: In commit 37d0f55392d6 "xkb: Work around alignment problems in
2264    GetNames and GetMap replies", some padding fields were introduced into
2265    structures for which an _unpack() function is generated. This changed
2266    the size of the struct and caused offsets into this struct to change.
2267    
2268    https://bugs.freedesktop.org/show_bug.cgi?id=71507
2269    
2270    Signed-off-by: Uli Schlachter <psychon@znc.in>
2271    Signed-off-by: Julien Cristau <jcristau@debian.org>
2272
2273commit ce5395eb4611341ba7c243ed524d023a616f73bb
2274Author: Uli Schlachter <psychon@znc.in>
2275Date:   Mon Nov 18 20:30:18 2013 +0100
2276
2277    Revert "Remove xcb_ge_event_t from xcb.h"
2278    
2279    This reverts commit f4d5b84800f960831e4fbb3ad9848bbb701020be.
2280    
2281    The version of this struct that the code generator produces breaks the API,
2282    because it gives the fields different (albeit better) names. Thus, we need to
2283    restore the old version of this struct.
2284    
2285    Additionally to the revert, this struct is documented as being deprecated. The
2286    replacement was added to xcb-proto.
2287    
2288    Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=71502
2289    Signed-off-by: Uli Schlachter <psychon@znc.in>
2290    Signed-off-by: Julien Cristau <jcristau@debian.org>
2291
2292commit 18f0afab3f0de68114fe185e89d8b25a8c072a2c
2293Author: Daniel Martin <consume.noise@gmail.com>
2294Date:   Fri Nov 22 23:27:28 2013 +0100
2295
2296    c_client.py: Fix _sizeof() functions
2297    
2298    Currently, it is not possible to correctly iterate over the replies of
2299    some requests. For example, the list of XIDeviceInfo returned by
2300    the XIQueryDevice request from xinput2 is read as garbage starting from
2301    the second entry.
2302    
2303    The culprits are the _sizeof() used by the iterators. In the above case:
2304    
2305        int
2306        xcb_input_xi_device_info_sizeof (const void  *_buffer  /**< */)
2307        {
2308            char *xcb_tmp = (char *)_buffer;
2309            [...]
2310            unsigned int xcb_block_len = 0;
2311            [...]
2312    
2313            xcb_block_len += sizeof(xcb_input_xi_device_info_t);
2314            xcb_tmp += xcb_block_len;
2315            /* name */
2316            xcb_block_len += (((_aux->name_len + 3) / 4) * 4) * sizeof(char);
2317            xcb_tmp += xcb_block_len;
2318            [...]
2319        }
2320    
2321    The problem here is that `xcb_block_len` is not zero'd right above the
2322    `/* name */` comment, causing `xcb_tmp` to be incremented by
2323    `sizeof(xcb_input_xi_device_info_t)` twice. The returned size is too
2324    large.
2325    
2326    https://bugs.freedesktop.org/show_bug.cgi?id=68387
2327    
2328    Tested-by: Ran Benita <ran234@gmail.com>
2329    Reviewed-by: Ran Benita <ran234@gmail.com>
2330    Reviewed-by: Daniel Martin <consume.noise@gmail.com>
2331    Signed-off-by: Ran Benita <ran234@gmail.com>
2332    Signed-off-by: Julien Cristau <jcristau@debian.org>
2333
2334commit 5d1dbb468bb0f834eaa8adea6daf6729808ca429
2335Author: Uli Schlachter <psychon@znc.in>
2336Date:   Mon Nov 18 19:49:41 2013 +0100
2337
2338    Revert "fix deadlock with xcb_take_socket/return_socket v3"
2339    
2340    This reverts commit 9ae84ad187e2ba440c40f44b8eb21c82c2fdbf12.
2341    
2342    After this patch was merged, there were complaints about it not being a good
2343    idea. Revert this for now until we can agree on this.
2344    
2345    References: http://lists.freedesktop.org/archives/xcb/2013-June/008340.html
2346    Signed-off-by: Uli Schlachter <psychon@znc.in>
2347    
2348    Conflicts:
2349            src/xcbint.h
2350
2351commit c7c5b710f2cc0782412c9e159986c96b52aa0d02
2352Author: Mark Kettenis <kettenis@openbsd.org>
2353Date:   Mon Nov 11 23:11:56 2013 +0100
2354
2355    Fix alignment issues in FD passing code
2356    
2357    A char array on the stack is not guaranteed to have more than byte alignment.
2358    This means that casting it to a 'struct cmsghdr' and accessing its members
2359    may result in unaligned access.  This will generate SIGBUS on struct
2360    alignment architectures like OpenBSD/sparc64.  The canonical solution is to
2361    use a union to force proper alignment.
2362    
2363    Signed-off-by: Mark Kettenis <kettenis@openbsd.org>
2364    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
2365    Signed-off-by: Uli Schlachter <psychon@znc.in>
2366
2367commit e8663a935890ff366f49e356211049dfd0d9756a
2368Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2369Date:   Thu Nov 7 20:23:27 2013 -0800
2370
2371    Check if we need to define _XOPEN_SOURCE for struct msghdr.msg_control
2372    
2373    Required to expose the structure members in Solaris headers, since it
2374    was an XPG4/UNIX95 addition to the Solaris ABI.
2375    
2376    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2377
2378commit af8067cbf48561f1e2d43e153292e68e0376a8f9
2379Author: Keith Packard <keithp@keithp.com>
2380Date:   Thu Nov 7 17:36:01 2013 -0800
2381
2382    Add configure option to enable or disable fd passing with sendmsg
2383    
2384    --disable-sendfds or --enable-sendfds
2385    
2386    By default, configure auto-detects based on whether your system
2387    supports sendmsg at all.
2388    
2389    Signed-off-by: Keith Packard <keithp@keithp.com>
2390    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2391    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2392
2393commit 83f28ef8655acff746eab64eabe2e31f8cf0c892
2394Author: Keith Packard <keithp@keithp.com>
2395Date:   Thu Nov 7 17:28:45 2013 -0800
2396
2397    Switch to using the CMSG_* macros for FD passing
2398    
2399    Use these instead of computing the values directly so that it might
2400    work on BSD or other non-Linux systems
2401    
2402    Signed-off-by: Keith Packard <keithp@keithp.com>
2403    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2404    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2405
2406commit cca607409068ad0948e7283fb8d0465cabc51686
2407Author: Keith Packard <keithp@keithp.com>
2408Date:   Thu Jul 11 16:01:02 2013 -0700
2409
2410    Add Present extension
2411    
2412    Signed-off-by: Keith Packard <keithp@keithp.com>
2413    Reviewed-By: Uli Schlachter <psychon@znc.in>
2414
2415commit 7a9373078e69b2cb2753570f91e5c31062ba25f8
2416Author: Keith Packard <keithp@keithp.com>
2417Date:   Tue Apr 9 21:35:52 2013 -0700
2418
2419    Add DRI3 library
2420    
2421    Signed-off-by: Keith Packard <keithp@keithp.com>
2422    Reviewed-By: Uli Schlachter <psychon@znc.in>
2423
2424commit 93d733e85ded5e92292d36fc7025f0c8ff7b1167
2425Author: Keith Packard <keithp@keithp.com>
2426Date:   Thu Nov 7 05:20:06 2013 -0800
2427
2428    Require xcb proto version 1.9
2429    
2430    Signed-off-by: Keith Packard <keithp@keithp.com>
2431
2432commit 79019541e7c56ddfc3828b7bf96e6e5d3cf81c56
2433Author: Keith Packard <keithp@keithp.com>
2434Date:   Fri Apr 12 20:15:41 2013 -0700
2435
2436    Add event queue splitting
2437    
2438    This allows apps to peel off certain XGE events into separate queues
2439    for custom handling. Designed to support the Present extension
2440    
2441    Signed-off-by: Keith Packard <keithp@keithp.com>
2442    Reviewed-By: Uli Schlachter <psychon@znc.in>
2443
2444commit 7983bf0fbdc2725403f9db6154d0f5bc944040e5
2445Author: Keith Packard <keithp@keithp.com>
2446Date:   Fri Jan 18 01:29:40 2013 -0800
2447
2448    Add support for receiving fds in replies
2449    
2450    Requests signal which replies will have fds, and the replies report
2451    how many fds they expect in byte 1.
2452    
2453    Signed-off-by: Keith Packard <keithp@keithp.com>
2454    Reviewed-By: Uli Schlachter <psychon@znc.in>
2455
2456commit 7b53fb0f9bddae77b3ab8823743db57faee4e99b
2457Author: Keith Packard <keithp@keithp.com>
2458Date:   Mon Jan 14 11:23:00 2013 -0800
2459
2460    Add xcb_send_fd API
2461    
2462    This uses sendmsg to transmit file descriptors from the application to
2463    the X server
2464    
2465    Signed-off-by: Keith Packard <keithp@keithp.com>
2466    Reviewed-By: Uli Schlachter <psychon@znc.in>
2467
2468commit 98c227a2222fb5c7ca7e8101b1ed2bc096a33048
2469Author: Keith Packard <keithp@keithp.com>
2470Date:   Fri Jan 18 01:28:56 2013 -0800
2471
2472    -pendantic is too pendantic
2473    
2474    Many system headers have warnings when compiled with this flag.
2475    
2476    Signed-off-by: Keith Packard <keithp@keithp.com>
2477    Reviewed-By: Uli Schlachter <psychon@znc.in>
2478
2479commit d04a4a03a90f2721d507287938c90f1755d9da0e
2480Author: Keith Packard <keithp@keithp.com>
2481Date:   Fri Jul 12 10:32:03 2013 -0700
2482
2483    Make protocol C files depend on protocol XML files
2484    
2485    When new XML files get installed, make sure the C files are regenerated
2486    
2487    Signed-off-by: Keith Packard <keithp@keithp.com>
2488    Reviewed-By: Uli Schlachter <psychon@znc.in>
2489
2490commit f4d5b84800f960831e4fbb3ad9848bbb701020be
2491Author: Keith Packard <keithp@keithp.com>
2492Date:   Wed Nov 6 19:33:53 2013 -0800
2493
2494    Remove xcb_ge_event_t from xcb.h
2495    
2496    xcb proto now publishes this structure from an XML description
2497    
2498    Signed-off-by: Keith Packard <keithp@keithp.com>
2499
2500commit e4e0c6eec861f4c69da12060dc8dbe7a63fa5eb6
2501Author: Daphne Pfister <daphnediane@mac.com>
2502Date:   Sat Sep 14 17:36:22 2013 -0400
2503
2504    Use /usr/spool/sockets/X11/ on HP-UX for UNIX sockets (#69118).
2505
2506commit f1405d9fe4a6ddcae24585ba254389a4c4f4c8c9
2507Author: Daphne Pfister <daphnediane@mac.com>
2508Date:   Sun Sep 8 16:25:11 2013 -0400
2509
2510    Fix poll() if POLLIN == ROLLRDNORM|POLLRDBAND
2511    
2512    It seems like POLLIN is specified as equivalent to POLLRDNORM | POLLRDBAND. Some
2513    systems (e.g. QNX and HP-UX) take this literaly and have POLLIN defined as the
2514    above bit combination. Other systems (e.g. Linux) have POLLIN as just a single
2515    bit.
2516    
2517    This means that if no out-of-band data is available (which should never be the
2518    case), the result of poll() will not fulfil (fd.revents & POLLIN) == POLLIN on
2519    QNX, because the POLLRDBAND bit is not set.
2520    
2521    In other words, even though poll() signaled that the fd is readable, xcb would
2522    not read from the file descriptor.
2523    
2524    Fix this by checking if any bits from POLLIN are set in the result of poll(),
2525    instead of all of them.
2526    
2527    (This change was independently done by seanb@qnx.com as well)
2528    
2529    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=38001
2530    Acked-by: Julien Cristau <jcristau@debian.org>
2531    Signed-off-by: Uli Schlachter <psychon@znc.in>
2532
2533commit ac47e0ecdb46aa91b191a59364437a8f65947467
2534Author: Uli Schlachter <psychon@znc.in>
2535Date:   Sun Sep 8 22:16:39 2013 +0200
2536
2537    Fix documentation of xcb_poll_for_event()
2538    
2539    In commit 8eba8690adac2, the API documentation for xcb_poll_for_event() was
2540    fixed to remove an argument that was previously removed in commit 34168ab549.
2541    
2542    However, that commit only removed the first line of the documentation, leaving
2543    behind a spurious half-sentence. That commit happened seven years ago and now
2544    finally someone noticed...
2545    
2546    Thanks to Benjamin Herr for reporting this on IRC.
2547    
2548    v2: Thanks again to Benjamin Herr for noticing that my commit message blamed the
2549    wrong commit.
2550    
2551    Signed-off-by: Uli Schlachter <psychon@znc.in>
2552
2553commit c52f2891b43ae77008f63700982f800371458f4d
2554Author: Daniel Martin <consume.noise@gmail.com>
2555Date:   Sun Aug 11 13:25:18 2013 +0200
2556
2557    tests: Add files to .gitignore
2558    
2559    Add check_all.log, check_all.trs and test-suite.log to tests/.gitignore.
2560    
2561    Signed-off-by: Daniel Martin <consume.noise@gmail.com>
2562
2563commit a8d11c36edf5c49b718664dd7206f36be150f694
2564Author: Daniel Martin <consume.noise@gmail.com>
2565Date:   Thu Jul 25 11:09:26 2013 +0200
2566
2567    Sort gitignore, adjust pattern for config.h
2568    
2569    Don't ignore the files config.h and config.h.in, adjust the pattern to
2570    ignore config.h*. This matches an additional config.h.in~ too.
2571    
2572    Signed-off-by: Daniel Martin <consume.noise@gmail.com>
2573    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2574    Reviewed-by: Uli Schlachter <psychon@znc.in>
2575    Tested-By: Ran Benita <ran234@gmail.com>
2576
2577commit cbe54c97b3f0e4d40e0ee18796f8077cb4a6c16a
2578Author: Daniel Martin <consume.noise@gmail.com>
2579Date:   Thu Jul 25 10:56:30 2013 +0200
2580
2581    Use m4 directory
2582    
2583    - Follow the suggestion by libtoolize:
2584       "Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.ac and
2585        rerunning libtoolize, to keep the correct libtool macros in-tree.
2586        Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am."
2587      and add the macro and define.
2588    
2589    - Create the m4 directory and move acinclude.m4 as xcb.m4 there.
2590    
2591    - Ignore the m4 files libtoolize copies into the m4 directory
2592      (m4/l*.m4).
2593    
2594    Signed-off-by: Daniel Martin <consume.noise@gmail.com>
2595    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2596    Reviewed-by: Uli Schlachter <psychon@znc.in>
2597    Tested-By: Ran Benita <ran234@gmail.com>
2598
2599commit 6746ab1549d34a146c8383ed5acdabf0d48c1889
2600Author: Daniel Martin <consume.noise@gmail.com>
2601Date:   Wed Jul 24 14:13:41 2013 +0200
2602
2603    Use build-aux as autom4te cache directory
2604    
2605    Remove the generated directory ./autom4te.cache by reusing ./build-aux
2606    as cache directory.
2607    
2608    Signed-off-by: Daniel Martin <consume.noise@gmail.com>
2609    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2610    Reviewed-by: Uli Schlachter <psychon@znc.in>
2611    Tested-By: Ran Benita <ran234@gmail.com>
2612
2613commit b6d8c8fe61f25e4eb7b43d3d9b1de81a1f0638a3
2614Author: Daniel Martin <consume.noise@gmail.com>
2615Date:   Wed Jul 24 14:08:38 2013 +0200
2616
2617    Set AC_CONFIG_AUX_DIR to build-aux
2618    
2619    Do not clutter the project directory with generated/copied auxiliary
2620    files, save them in ./build-aux.
2621    
2622    Signed-off-by: Daniel Martin <consume.noise@gmail.com>
2623    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2624    Reviewed-by: Uli Schlachter <psychon@znc.in>
2625    Tested-By: Ran Benita <ran234@gmail.com>
2626
2627commit e3b34ad346efcaf0fd28b95e68d99388276802bc
2628Author: Daniel Martin <consume.noise@gmail.com>
2629Date:   Wed Jul 24 19:22:44 2013 +0200
2630
2631    Remove second AC_PREREQ, require version 2.60
2632    
2633    Remove a second AC_PREREQ and bump the required autoconf version to
2634    2.60.
2635    
2636    Version 2.59c was a testing release, published in April 2006. Version
2637    2.60 was the stable release afterwards, released in June 2006.
2638    
2639    Signed-off-by: Daniel Martin <consume.noise@gmail.com>
2640    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2641    Reviewed-by: Uli Schlachter <psychon@znc.in>
2642    Tested-By: Ran Benita <ran234@gmail.com>
2643
2644commit 50fb3a6312dd0b6b613fc886ffd6827952d1e286
2645Author: Daniel Martin <consume.noise@gmail.com>
2646Date:   Wed Jul 24 12:51:04 2013 +0200
2647
2648    Initialize automake earlier (bugfix for #66413)
2649    
2650    This fixes:
2651        https://bugs.freedesktop.org/show_bug.cgi?id=66413
2652        Bug 66413 - libxcb 1.9.1: Fails to build on Arch Linux: \
2653            /home/<user>/install-sh: No such file or directory
2654    
2655    Without that patch the search path for `install-sh` will become $HOME
2656    and the `install` target will fail, when DESTDIR doesn't exist in
2657    advance. (occured with automake 1.14 and autoconf 2.69)
2658    
2659    Initial patch by: Alain Kalker <a.c.kalker@gmail.com>
2660    Signed-off-by: Daniel Martin <consume.noise@gmail.com>
2661    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2662    Reviewed-by: Uli Schlachter <psychon@znc.in>
2663    Tested-By: Ran Benita <ran234@gmail.com>
2664
2665commit dd01db570c34dd3e2e0f5d07b8d40c837fa51057
2666Author: Daniel Martin <consume.noise@gmail.com>
2667Date:   Mon Dec 31 11:57:49 2012 +0100
2668
2669    Make xsltproc optional
2670    
2671    Fix Bug 23863 - xcb still checks for xsltproc:
2672        https://bugs.freedesktop.org/show_bug.cgi?id=23863
2673    
2674    xsltproc is used to generate the optional html page for `check` results,
2675    only. So, it's not a hard build dependency.
2676    
2677    Additionally, use yes/no instead of true/false in the HTML_CHECK_RESULT
2678    variable for consistent output after a configure run.
2679    
2680    Signed-off-by: Daniel Martin <consume.noise@gmail.com>
2681    Reviewed-by: Josh Triplett <josh@joshtriplett.org>
2682
2683commit 0289348f2c4ed3b1b286c51df19d82c6787c2b36
2684Author: Daniel Martin <consume.noise@gmail.com>
2685Date:   Fri Dec 28 23:25:16 2012 +0100
2686
2687    c_client.py: Do not create pointers in unions
2688    
2689    Do not create pointers in unions for fields of variadic length.
2690    
2691    Signed-off-by: Daniel Martin <consume.noise@gmail.com>
2692    Reviewed-by: Ran Benita <ran234@gmail.com>
2693
2694commit b9efd2a09a45616f6238e4da49b8f2127b6ec6d9
2695Author: Daniel Martin <consume.noise@gmail.com>
2696Date:   Wed Jan 9 12:52:15 2013 +0100
2697
2698    c_client.py: Always initialize xcb_align_to
2699    
2700    to get rid of:
2701        warning: 'xcb_align_to' may be used uninitialized in this function
2702    
2703    Signed-off-by: Daniel Martin <consume.noise@gmail.com>
2704    Reviewed-by: Peter Harris <pharris@opentext.com>
2705
2706commit 5648ddd2b97068f549268284129a438a6845e14c
2707Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2708Date:   Sat Aug 3 20:25:23 2013 -0700
2709
2710    Define _xcb_map_new with explicit void arg list instead of empty one
2711    
2712    Fixes Solaris Studio compiler warning:
2713    "xcb_list.c", line 50: warning: old style function definition
2714    
2715    and gcc warning:
2716    xcb_list.c: In function '_xcb_map_new':
2717    xcb_list.c:50:11: warning: old-style function definition [-Wold-style-definition]
2718    
2719    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2720    Reviewed-by: Josh Triplett <josh@joshtriplett.org>
2721
2722commit cb51f271b26c6abc76d415553f202bc5139273ca
2723Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2724Date:   Sat Aug 3 20:22:25 2013 -0700
2725
2726    Enable warnings for pre-C89 style definitions for gcc & Solaris Studio
2727    
2728    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2729    Reviewed-by: Josh Triplett <josh@joshtriplett.org>
2730
2731commit bc6a4f557ff4e497acdafdcebb006e5a7b4c5b11
2732Author: Michael Stapelberg <michael@stapelberg.de>
2733Date:   Mon Aug 5 22:14:18 2013 +0200
2734
2735    Build xcb-xkb by default
2736    
2737    There have not been any big issues with xcb-xkb recently.
2738    
2739    Also, Wayland is using xcb-xkb actively, making distributions compile
2740    libxcb with xkb support anyway, so let’s reflect reality :).
2741    
2742    Reviewed-by: Jamey Sharp <jamey@minilop.net>
2743    Signed-off-by: Daniel Martin <consume.noise@gmail.com>
2744
2745commit 45619dc71e9411a526d7c69595cf615b1b1206cf
2746Author: Daniel Martin <consume.noise@gmail.com>
2747Date:   Sat Jun 8 11:20:39 2013 +0200
2748
2749    c_client.py: Inject full_sequence into GE events
2750    
2751    The generic event structure xcb_ge_event_t has the full_sequence field
2752    at the 32byte boundary. That's why we've to inject this field into GE
2753    events while generating the structure for them. Otherwise we would read
2754    garbage (the internal full_sequence) when accessing normal event fields
2755    there.
2756    
2757    Signed-off-by: Daniel Martin <consume.noise@gmail.com>
2758    Reviewed-by: Keith Packard <keithp@keithp.com>
2759    Signed-off-by: Peter Harris <pharris@opentext.com>
2760
2761commit a1e67b141a57d39cbcaff1a703d6fc0da1fbb56d
2762Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2763Date:   Mon Jul 8 17:54:35 2013 -0700
2764
2765    Fix "indention" typos in xcb-examples.3 man page
2766    
2767    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2768
2769commit 8b6bb1a71977116d382f45eef803aedd3e313d37
2770Author: Marc Deslauriers <marc.deslauriers@canonical.com>
2771Date:   Wed Jun 5 16:38:00 2013 -0400
2772
2773    Update Makefile.am for newer automake
2774    
2775    Debian Bug #710344
2776    
2777    Reviewed-by: Daniel Martin <consume.noise@gmail.com>
2778
2779commit 9ae84ad187e2ba440c40f44b8eb21c82c2fdbf12
2780Author: Christian König <christian.koenig@amd.com>
2781Date:   Wed May 15 11:21:36 2013 +0200
2782
2783    fix deadlock with xcb_take_socket/return_socket v3
2784    
2785    To prevent different threads from stealing the socket from each other the
2786    caller of "xcb_take_socket" must hold a lock that is also acquired in
2787    "return_socket". Unfortunately xcb tries to prevent calling return_socket
2788    from multiple threads and this can lead to a deadlock situation.
2789    
2790    A simple example:
2791    - X11 has taken the socket
2792    - Thread A has locked the display.
2793    - Thread B does xcb_no_operation() and thus ends up in libX11's return_socket(),
2794      waiting for the display lock.
2795    - Thread A calls e.g. xcb_no_operation(), too, ends up in return_socket() and
2796      because socket_moving == 1, ends up waiting for thread B
2797    => Deadlock
2798    
2799    This patch allows calling return_socket from different threads at the same time
2800    an so resolves the deadlock situation.
2801    
2802    Partially fixes: https://bugs.freedesktop.org/show_bug.cgi?id=20708
2803    
2804    v2: fixes additional pthread_cond_wait dependencies,
2805        rework comments and patch description
2806    
2807    v3: separate pthread_cond_wait dependencies and unrelated whitespace
2808        change into their own patch, use unsigned for socket_seq
2809    
2810    Signed-off-by: Christian König <christian.koenig@amd.com>
2811    Signed-off-by: Uli Schlachter <psychon@znc.in>
2812
2813commit 1b33867fa996034deb50819ae54640be501f8d20
2814Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2815Date:   Wed May 1 17:59:31 2013 -0700
2816
2817    integer overflow in read_packet() [CVE-2013-2064]
2818    
2819    Ensure that when calculating the size of the incoming response from the
2820    Xserver, we don't overflow the integer used in the calculations when we
2821    multiply the int32_t length by 4 and add it to the default response size.
2822    
2823    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2824
2825commit e602b653c191e18cbb63db6526aac77c368ed70b
2826Author: Daniel Martin <consume.noise@gmail.com>
2827Date:   Mon May 13 23:33:04 2013 +0200
2828
2829    c_client.py: Handle multiple expr. in a bitcase
2830    
2831    Adopt a change from xcbgen. With that modification the expression in a
2832    bitcase became a list of expressions to support multiple <enumref> in a
2833    <bitcase>.
2834    
2835    Signed-off-by: Daniel Martin <consume.noise@gmail.com>
2836    Signed-off-by: Peter Harris <pharris@opentext.com>
2837
2838commit 6b6044cb8aacdf1b637da7b5dda392f9ff41ed39
2839Author: Christian König <christian.koenig@amd.com>
2840Date:   Wed May 15 11:21:35 2013 +0200
2841
2842    whitespace fix in xcb_take_socket
2843    
2844    Signed-off-by: Christian König <christian.koenig@amd.com>
2845    Signed-off-by: Jamey Sharp <jamey@minilop.net>
2846
2847commit 0dd8f8d26a758bc385e79d9239bf6ef2e3d7bf13
2848Author: Colin Walters <walters@verbum.org>
2849Date:   Wed Jan 4 17:37:06 2012 -0500
2850
2851    autogen.sh: Implement GNOME Build API
2852    
2853    http://people.gnome.org/~walters/docs/build-api.txt
2854    
2855    Signed-off-by: Adam Jackson <ajax@redhat.com>
2856
2857commit 76a2166de9c80b35f987fdc3f3a228bafa0de94e
2858Author: Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
2859Date:   Thu Oct 11 01:14:12 2012 +0200
2860
2861    c_client.py: Fix python-3 invalid except statement
2862    
2863    Replace except statement with a PEP-3110 compliant one. This fixes a regression
2864    introduced by c3deeaf714630531d693a6a902b8dabf791858b1
2865    https://bugs.freedesktop.org/show_bug.cgi?id=55690
2866    
2867    Reviewed-by: Peter Harris <pharris@opentext.com>
2868    Signed-off-by: Uli Schlachter <psychon@znc.in>
2869
2870commit 9db4517c87f56bb0ac82b647a08db30850ee2b04
2871Author: Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
2872Date:   Thu Oct 11 01:14:11 2012 +0200
2873
2874    c-client.py: Fix python-3 AttributeError: 'dict' object has no attribute 'iteritems'
2875    
2876    This fixes a regression introduced by ea71d7d7e3f5d8189b80747678e9ca9a417b1d37
2877    https://bugs.freedesktop.org/show_bug.cgi?id=55690
2878    
2879    Reviewed-by: Peter Harris <pharris@opentext.com>
2880    Signed-off-by: Uli Schlachter <psychon@znc.in>
2881
2882commit 4ffe54f69049e6792a35a287fd9ff83abbd4fd8d
2883Author: Uli Schlachter <psychon@znc.in>
2884Date:   Fri Oct 5 14:53:37 2012 +0200
2885
2886    Release libxcb 1.9
2887    
2888    Signed-off-by: Uli Schlachter <psychon@znc.in>
2889
2890commit 4f52f884f42b72087f3323f2bab204223664a488
2891Author: Uli Schlachter <psychon@znc.in>
2892Date:   Fri Oct 5 11:23:26 2012 +0200
2893
2894    Include static man pages in "make dist"
2895    
2896    This was found by distcheck. It tried to install src/man/xcb-examples.3 and
2897    src/man/xcb-requests.3, but those files weren't in the distribution.
2898    
2899    Fix this by explicitly telling automake to distribute those files.
2900    
2901    Signed-off-by: Uli Schlachter <psychon@znc.in>
2902
2903commit 23911a707b8845bff52cd7853fc5d59fb0823cef
2904Author: Uli Schlachter <psychon@znc.in>
2905Date:   Mon Sep 24 22:07:51 2012 +0200
2906
2907    Fix a multi-thread deadlock
2908    
2909    This fixes a deadlock which was seen in-the-wild with wine.
2910    
2911    It could happen that two threads tried to read from the socket at the same time
2912    and one of the thread got stuck inside of poll()/select().
2913    
2914    The fix works by making sure that the writing thread doesn't steal the reading
2915    thread's reply.
2916    
2917    Debugged-by: Erich Hoover <ehoover@mines.edu>
2918    Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=54671
2919    Signed-off-by: Uli Schlachter <psychon@znc.in>
2920
2921commit c16cc5467eb0af7c5cdee16e6efaee54eb53bba6
2922Author: Uli Schlachter <psychon@znc.in>
2923Date:   Mon Sep 24 22:07:30 2012 +0200
2924
2925    Add a .gitignore for src/man/
2926    
2927    Signed-off-by: Uli Schlachter <psychon@znc.in>
2928
2929commit 08cc068ead7b8e678cdb119b38ada5261d5cc3ea
2930Author: Peter Harris <pharris@opentext.com>
2931Date:   Thu Aug 16 11:59:14 2012 -0400
2932
2933    Allow xcb_send_request with >MAX_IOV iovecs
2934    
2935    This allows an application to do a scatter/gather operation on a large
2936    image buffer to avoid the extra memcpy.
2937    
2938    Use autoconf to use UIO_MAXIOV where IOV_MAX is not available (and the
2939    POSIX minimum of 16 where neither are available).
2940    
2941    Reviewed-by: Uli Schlachter <psychon@znc.in>
2942    Signed-off-by: Peter Harris <pharris@opentext.com>
2943
2944commit ff53285ae3f604e9f2cc5f4837255220459b5e44
2945Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2946Date:   Sat Aug 25 13:53:37 2012 -0700
2947
2948    Return connection failure if display string specifies non-existent screen
2949    
2950    Matches the behaviour of Xlib - if you set DISPLAY to :0.1 but only have
2951    one screen, closes connection and returns error.
2952    
2953    This introduces a new connection error code:
2954    XCB_CONN_CLOSED_INVALID_SCREEN
2955    
2956    Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
2957    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2958    Reviewed-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
2959    Reviewed-by: Josh Triplett <josh@joshtriplett.org>
2960
2961commit 90889794ad882a6847bcffe52c4cc5dfd168f1f4
2962Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2963Date:   Fri Aug 24 23:35:41 2012 -0700
2964
2965    Add AC_USE_SYSTEM_EXTENSIONS to allow use of more system functionality
2966    
2967    Copied from libX11 configure.ac
2968    
2969    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2970
2971commit b52790e8ed4bb077eabdeca803935d2910558acc
2972Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2973Date:   Fri Aug 24 23:32:32 2012 -0700
2974
2975    Always include "config.h" at the start of all C source files.
2976    
2977    Allows configure to set defines such as _POSIX_SOURCE in config.h
2978    that affect functions exposed by system headers and get consistent
2979    results across all the source files.
2980    
2981    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2982
2983commit ed93a6a2a8e23f12380709de6e04b2d833df7e71
2984Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2985Date:   Sat Aug 25 12:33:35 2012 -0700
2986
2987    Fix "sppported" typo in doxygen comment for XCB_CONN_CLOSED_EXT_NOTSUPPORTED
2988    
2989    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2990
2991commit c3deeaf714630531d693a6a902b8dabf791858b1
2992Author: Colin Walters <walters@verbum.org>
2993Date:   Mon Aug 13 15:32:31 2012 -0400
2994
2995    c_client: Fix parallel-make issue creating 'man' directory
2996    
2997    With make -j, it was possible to hit a race condition in the code to
2998    make the 'man' directory.
2999    
3000    Signed-off-by: Julien Danjou <julien@danjou.info>
3001
3002commit 5f8f2ba1c4f9ac74c8f301dcca8566e296e37995
3003Author: Jeremy Huddleston <jeremyhu@apple.com>
3004Date:   Sat Apr 21 22:42:51 2012 -0700
3005
3006    xcb_connect: launchd: Don't fall back on tcp if $DISPLAY is a path to a launchd socket
3007    
3008    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
3009
3010commit 71a295082e07ff20d4c4cc97feed03b94cceb251
3011Author: Julien Danjou <julien@danjou.info>
3012Date:   Tue Mar 27 12:10:59 2012 +0200
3013
3014    Move static man to man
3015    
3016    Signed-off-by: Julien Danjou <julien@danjou.info>
3017
3018commit df217bf7c930d4433c991d86f857ecf63cc2d25a
3019Author: Julien Danjou <julien@danjou.info>
3020Date:   Tue Mar 27 12:10:15 2012 +0200
3021
3022    Do not list manpages, use a wildcard
3023    
3024    Signed-off-by: Julien Danjou <julien@danjou.info>
3025
3026commit a4417b1611f0bf02b81b54be90ef3353010da10a
3027Author: Julien Danjou <julien@danjou.info>
3028Date:   Tue Mar 27 12:06:54 2012 +0200
3029
3030    Split manpage list in two (static/built)
3031    
3032    Signed-off-by: Julien Danjou <julien@danjou.info>
3033
3034commit cc7fab2d5e912629d4a2a6adfb7666dc2ba45db2
3035Author: Julien Danjou <julien@danjou.info>
3036Date:   Mon Mar 26 18:29:35 2012 +0200
3037
3038    Allow undocumented code to be built
3039    
3040    Signed-off-by: Julien Danjou <julien@danjou.info>
3041
3042commit ea71d7d7e3f5d8189b80747678e9ca9a417b1d37
3043Author: Michael Stapelberg <michael@stapelberg.de>
3044Date:   Sun Nov 27 10:38:26 2011 +0000
3045
3046    c_client.py: generate manpages
3047    
3048    Signed-off-by: Julien Danjou <julien@danjou.info>
3049
3050commit 57a62e99b1241d5a0e6cf0b72f52090862a9c07d
3051Author: Julien Danjou <julien@danjou.info>
3052Date:   Fri Mar 9 15:38:56 2012 +0100
3053
3054    Release libxcb 1.8.1
3055    
3056    Signed-off-by: Julien Danjou <julien@danjou.info>
3057
3058commit 236f914ea7205f5f74e87fcc1b06d87bd0789a7a
3059Author: Uli Schlachter <psychon@znc.in>
3060Date:   Thu Mar 1 20:26:39 2012 +0100
3061
3062    Fix a busy loop on BSD and Mac OS
3063    
3064    On FreeBSD MSG_WAITALL on a non-blocking socket fails immediately if less bytes
3065    than were asked for are available. This is different than the behavior on linux
3066    where as many bytes as are available are returned in this case. Other OS
3067    apparently follow the FreeBSD behavior.
3068    
3069    _xcb_in_read() is used to fill xcb's read buffer, thus this function will call
3070    recv() with a big length argument (xcb's read buffer is by default 16 KiB
3071    large). That many bytes are highly unlikely to be available in the kernel
3072    buffer.
3073    
3074    This means that _xcb_in_read() always failed on FreeBSD. Since the socket was
3075    still signaled as readable by poll(), this bug even resulted in a busy loop.
3076    
3077    The same issue is present in read_block(), but here it is slightly different.
3078    read_block() is called when we read the first few bytes of an event or a reply,
3079    so that we already know its length. This means that we should be able to use
3080    MSG_WAITALL here, because we know how many bytes there have to be.
3081    
3082    However, that function could busy loop, too, when only the first few bytes of
3083    the packet were sent while the rest is stuck somewhere on the way to us. Thus,
3084    MSG_WAITALL should be removed here, too.
3085    
3086    Thanks to Christoph Egger from Debian for noticing the problem, doing all the
3087    necessary debugging and figuring out what the problem was! This patch is 99%
3088    from debian. Thanks for all the work.
3089    
3090    This bug was introduced in commit 2dcf8b025be88a25d4333abdc28d425b88238d96.
3091    
3092    This commit also reverts commit 9061ee45b8dbe5431c23e3f628089d703ccad0b1.
3093    
3094    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=45776
3095    
3096    Signed-off-by: Uli Schlachter <psychon@znc.in>
3097    Reviewed-by: Josh Triplett <josh@joshtriplett.org>
3098
3099commit 9061ee45b8dbe5431c23e3f628089d703ccad0b1
3100Author: Jeremy Huddleston <jeremyhu@apple.com>
3101Date:   Thu Mar 8 00:50:13 2012 -0800
3102
3103    darwin: Use read(2) rather than recv(2)
3104    
3105    2dcf8b025be88a25d4333abdc28d425b88238d96 was causing some regressions on
3106    darwin, so go back to using read(2) there until I have time to investigate
3107    further.
3108    
3109    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
3110
3111commit 7d235c62f0d5bd0df1236cc52141c10c5d272a18
3112Author: Julien Cristau <jcristau@debian.org>
3113Date:   Sun Feb 19 13:43:54 2012 +0100
3114
3115    Fallback to TCP if no protocol is specified and the UNIX connection fails
3116    
3117    Signed-off-by: Julien Cristau <jcristau@debian.org>
3118    Signed-off-by: Jamey Sharp <jamey@minilop.net>
3119
3120commit f7bd139616d228b20eeb2c96b85e4093606c93fc
3121Author: Arnaud Fontaine <arnau@debian.org>
3122Date:   Wed Jan 25 17:18:20 2012 +0900
3123
3124    Add xkb_internals and xkb_issues to EXTRA_DIST.
3125
3126commit 68d30adde982f1be33a934707fa105c0db6f7f8f
3127Author: Jon TURNEY <jon.turney@dronecode.org.uk>
3128Date:   Tue Jan 17 20:59:56 2012 +0000
3129
3130    Update use of error_connection under WIN32 to _xcb_conn_ret_error()
3131    
3132    Unfortunately, commit 31b57676 adding WSACleanup/WSAShutdown on Win32 adds a new use
3133    of error_connection, which was removed in commit 769acff0, applied 5 minutes earlier.
3134    
3135    src/xcb_util.c: In function 'xcb_connect_to_display_with_auth_info':
3136    src/xcb_util.c:433:39: error: 'error_connection' undeclared (first use in this function)
3137    
3138    Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
3139    Reviewed-by: Arvind Umrao <arvind.umrao@oracle.com>
3140    Signed-off-by: Uli Schlachter <psychon@znc.in>
3141
3142commit 87b7bf875e0105924ae306e90ca79512d6c0cf47
3143Author: Jon TURNEY <jon.turney@dronecode.org.uk>
3144Date:   Wed Jan 18 14:11:07 2012 +0000
3145
3146    Fix build of xcb_auth.c with XDMCP on WIN32
3147    
3148    Fix a redefinition problem which shows up when building for _WIN32 and
3149    libXdmcp is installed, so HASXDMAUTH is enabled
3150    
3151    It seems this is a special place in xcb as it uses other X11 library headers here
3152    
3153    If HASXDMAUTH is defined, include the wrapped windows.h before any header which
3154    includes it unwrapped, to avoid conflicts with types defined in X headers
3155    
3156    We need to include config.h and check HASXDMAUTH to avoid an unconditional dependency
3157    on x11proto headers
3158    
3159    In file included from install/include/X11/Xdmcp.h:19:0,
3160                     from git/xcb/libxcb/src/xcb_auth.c:52:
3161    install/include/X11/Xmd.h:120:14: error: conflicting types for 'INT32'
3162    /usr/i686-pc-mingw32/sys-root/mingw/include/basetsd.h:54:13: note: previous declaration of 'INT32' was here
3163    install/include/X11/Xmd.h:143:15: error: conflicting types for 'BOOL'
3164    /usr/i686-pc-mingw32/sys-root/mingw/include/windef.h:234:17: note: previous declaration of 'BOOL' was here
3165    
3166    Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
3167    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
3168
3169commit 6db1a2686f0f073438d36f5fa0f97b787842b0f2
3170Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
3171Date:   Tue Jan 17 23:55:23 2012 -0800
3172
3173    Revert "Fix include order with Xdmcp on WIN32"
3174    
3175    This reverts commit 0e9246def562be97cc816f824f702233a826ec56.
3176    
3177    This change caused build failures because <X11/Xdmcp.h> was never
3178    included under any circumstance.  This is because the check for
3179    HASXDMAUTH was moved before the inclusion of config.h (via xcbint.h)
3180    which defined it.
3181    
3182    Found-by: Tinderbox
3183    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
3184    Reviewed-by: Jon TURNEY <jon.turney@dronecode.org.uk>
3185
3186commit da1d15082baab844a3b9b2d5cc48620af0b806ec
3187Author: Julien Danjou <julien@danjou.info>
3188Date:   Thu Jan 12 10:25:07 2012 +0100
3189
3190    Bump xcb-proto requirement
3191    
3192    We are now unable to build xcb-proto before 1.7.
3193    
3194    Signed-off-by: Julien Danjou <julien@danjou.info>
3195
3196commit b95b33e8c04c90c2240df19acea0c841d6e3450b
3197Author: Julien Danjou <julien@danjou.info>
3198Date:   Wed Jan 11 18:27:38 2012 +0100
3199
3200    Release libxcb 1.8
3201    
3202    Signed-off-by: Julien Danjou <julien@danjou.info>
3203
3204commit 31b57676e8d7ab6048dbfb145187833fac5e478c
3205Author: Ryan Pavlik <rpavlik@iastate.edu>
3206Date:   Wed Jan 11 18:06:50 2012 +0100
3207
3208    Use WSAStartup()/WSACleanup() on WIN32
3209    
3210    The alternative is to use these in every WIN32 application which uses xcb. Doing
3211    it this way should be safe, as, according to MSDN, "There must be a call to
3212    WSACleanup for each successful call to WSAStartup. Only the final WSACleanup
3213    function call performs the actual cleanup. The preceding calls simply decrement
3214    an internal reference count"
3215    
3216    (We should probably also include ws2_32 in Libs.private for libxcb, as anything
3217    which links with libxcb will also need that, but there seems to be some pkg-config
3218    issues to resolve first...)
3219    
3220    v2: Check for errors so WSAStartup()/WSACleanup() uses are balanced
3221    v3: Use same indentation style as surrounding code
3222    
3223    Reviewed-by: Peter Harris <pharris@opentext.com>
3224    Signed-off-by: Julien Danjou <julien@danjou.info>
3225
3226commit 0e9246def562be97cc816f824f702233a826ec56
3227Author: Ryan Pavlik <rpavlik@iastate.edu>
3228Date:   Thu Jan 5 20:57:53 2012 +0000
3229
3230    Fix include order with Xdmcp on WIN32
3231    
3232    Fix a redefinition problem due to include order which shows up when
3233    building for _WIN32 and libXdmcp is installed, so HASXDMAUTH is enabled
3234    
3235    Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
3236    Reviewed-by: Peter Harris <pharris@opentext.com>
3237    Signed-off-by: Julien Danjou <julien@danjou.info>
3238
3239commit 4aa7a2c849a9536febb2dc7773e06c12a69c5213
3240Author: Jon TURNEY <jon.turney@dronecode.org.uk>
3241Date:   Thu Jan 5 20:57:52 2012 +0000
3242
3243    Fix WIN32 compilation after commit 163c47bdc0d32785d831e4c93fea9ab7e023446b
3244    
3245    WIN32 does not have arpa/inet.h, so do not try to include it unless _WIN32 is
3246    not defined
3247    
3248    Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
3249    Reviewed-by: Peter Harris <pharris@opentext.com>
3250    Signed-off-by: Julien Danjou <julien@danjou.info>
3251
3252commit 769acff0da8b9859ebdf052dce80045465c7598c
3253Author: Arvind Umrao <arvind.umrao@oracle.com>
3254Date:   Fri Nov 4 15:42:05 2011 +0530
3255
3256    Added more error states and removed global error_connection
3257    
3258    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=41443
3259    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=42304
3260    
3261    I have added more xcb connection error states at xcb.h header.
3262    Also I have removed global error_connection variable, and added
3263    an interface that returns connection error state.
3264    
3265    TBD:
3266    I will segregate errors states in a separate header file and try to
3267    provide more precise error states, in future. Also I will give patch
3268    for libX11, in that patch xcb_connection_t::has_error will be passed
3269    to default io handler of libX11. This value can then be used for
3270    displaying error messages.
3271    
3272    Reviewed-by: Rami Ylimäki <rami.ylimaki@vincit.fi>
3273    Reviewed-by: Uli Schlachter <psychon@znc.in>
3274    Signed-off-by: Arvind Umrao <arvind.umrao@oracle.com>
3275
3276commit 9b4d6f30a339e2d18ebaea98149da81aba453216
3277Author: Keith Packard <keithp@keithp.com>
3278Date:   Thu Dec 1 10:28:51 2011 +0000
3279
3280    Make xcb_take_socket keep flushing until idle
3281    
3282    _xcb_out_flush_to will drop the iolock in pthread_cond_wait allowing
3283    other threads to queue new requests. When this happened,
3284    there would be requests queued for the socket after _xcb_out_flush_to
3285    returned, and xcb_take_socket would throw an assert.
3286    
3287    Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=29875
3288    Signed-off-by: Keith Packard <keithp@keithp.com>
3289    Signed-off-by: Julien Danjou <julien@danjou.info>
3290
3291commit 5ceeaaa4294201b3f613c07f9ec610c0e5f673c7
3292Author: Uli Schlachter <psychon@znc.in>
3293Date:   Thu Aug 25 14:18:16 2011 +0200
3294
3295    Fix a dead-lock due to xcb_poll_for_reply
3296    
3297    Imagine two threads:
3298    
3299    Thread#1: for(;;) { xcb_get_input_focus_reply(c, xcb_get_input_focus(c), 0); }
3300    
3301    Thread#2: for(;;) { xcb_poll_for_event(c); }
3302    
3303    Since xcb_poll_for_event() calls _xcb_in_read() directly without synchronizing
3304    with any other readers, this causes two threads to end up calling recv() at the
3305    same time. We now have a race because any of these two threads could get read
3306    the GetInputFocus reply.
3307    
3308    If thread#2 reads this reply, it will be put in the appropriate queue and
3309    thread#1 will still be stuck in recv(), although its reply was already received.
3310    If no other reply or event causes this thread to wake up, the process deadlocks.
3311    
3312    To fix this, we have to make sure that there is only ever one thread reading
3313    from the connection. The obvious solution is to check in poll_for_next_event()
3314    if another thread is already reading (in which case c->in.reading != 0) and not
3315    to read from the wire in this case.
3316    
3317    This solution is actually correct if we assume that the other thread is blocked
3318    in poll() which means there isn't any data which can be read. Since we already
3319    checked that there is no event in the queue this means that
3320    poll_for_next_event() didn't find any event to return.
3321    
3322    There might be a small race here where the other thread already determined that
3323    there is data to read, but it still has to wait for c->iolock. However, this
3324    means that the next poll_for_next_event() will be able to read the event, so
3325    this shouldn't cause any problems.
3326    
3327    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=40372
3328    
3329    Signed-off-by: Uli Schlachter <psychon@znc.in>
3330    Signed-off-by: Peter Harris <pharris@opentext.com>
3331
3332commit b12038e9ae5343c4176f11d68c963c752bc35c03
3333Author: Jamey Sharp <jamey@minilop.net>
3334Date:   Wed Aug 24 08:52:02 2011 -0700
3335
3336    Keep ALIGNOF definition out of the public namespace.
3337    
3338    Uli's patch is an excellent solution; I just want to keep the new
3339    ALIGNOF macro hidden from XCB's users, as they don't need it to call
3340    XCB.
3341    
3342    Signed-off-by: Jamey Sharp <jamey@minilop.net>
3343
3344commit 163c47bdc0d32785d831e4c93fea9ab7e023446b
3345Author: Markus Duft <mduft@gentoo.org>
3346Date:   Wed Aug 24 10:49:06 2011 -0400
3347
3348    Support pre-IPv6 systems (without getaddrinfo)
3349    
3350    Some of these systems (eg. Interix on XP) are still in use.
3351    
3352    Reviewed-by: Josh Triplett <josh@joshtriplett.org>
3353    Signed-off-by: Peter Harris <pharris@opentext.com>
3354
3355commit aa02096b8e7f94ad3c998a8d5af54963ee860b13
3356Author: Uli Schlachter <psychon@znc.in>
3357Date:   Wed Aug 24 12:47:16 2011 +0200
3358
3359    Compute alignment correctly
3360    
3361    The code previously assumed that everything has to be aligned to a 4 byte
3362    boundary. This assumption is wrong as e.g. the STR struct from xproto shows.
3363    
3364    Instead, each type has to be aligned to its natural alignment. So a char doesn't
3365    need any alignment, a INT16 gets aligned to a 2-byte-boundary and a INT32 gets
3366    the old 4 byte alignment.
3367    
3368    I'm not 100% sure that this commit is correct, but some quick tests with awesome
3369    and cairo-xcb went well.
3370    
3371    This commit causes lots of dead assignments to xcb_align_to since only the last
3372    field's alignment is actually used, but this simplified this patch a lot.
3373    
3374    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=34037
3375    
3376    Signed-off-by: Uli Schlachter <psychon@znc.in>
3377    Signed-off-by: Peter Harris <pharris@opentext.com>
3378
3379commit 4f25ee16443b29e1a25bd26a724e1e0a577e21ff
3380Author: Michael Stapelberg <michael@stapelberg.de>
3381Date:   Thu Aug 18 21:38:28 2011 +0200
3382
3383    Drop AI_ADDRCONFIG when resolving TCP addresses
3384    
3385    When a system is completely offline (no interface has an IP address but 'lo'),
3386    xcb could not connect to localhost via TCP, e.g. connections with
3387    DISPLAY=127.0.0.1:0 fail.
3388    
3389    AI_ADDRCONFIG will only return IPv4 addresses if the system has an IPv4
3390    address configured (likewise for IPv6). This also takes place when
3391    resolving localhost (or 127.0.0.0/8 or ::1). Also, as per RFC 3493,
3392    loopback addresses are not considered as valid addresses when
3393    determining whether to return IPv4 or IPv6 addresses.
3394    
3395    As per mailing-list discussion on the xcb list started with message
3396    20110813215405.5818a0c1@x200, the AI_ADDRCONFIG flag is there for historical
3397    reasons:
3398    
3399        In the old days, the "default on-link" assumption in IPv6 made the flag vey
3400        much indispensable for dual-stack hosts on IPv4-only networks. Without it,
3401        there would be long timeouts trying non-existent IPv6 connectivity. Nowadays,
3402        this assumption has been flagged as historic bad practice by IETF, and hosts
3403        should have been updated to not make it anymore.
3404    
3405        Then AI_ADDRCONFIG became mostly cosmetic: it avoids phony "Protocol family
3406        not supported" or "Host unreachable" errors while trying to connect to a dual-
3407        stack mode from a host with no support for source address selection.
3408    
3409        Nowadays, on up-to-date systems, this flag is completely useless. Then again,
3410        I understood only the very latest MacOS release is "up-to-date" with this
3411        definition.
3412
3413commit 662ad589c5d6f03757ae57a926d3800bfb528b30
3414Author: James Jones <jajones@nvidia.com>
3415Date:   Wed May 11 23:22:22 2011 -0700
3416
3417    Insert, not append explicit xcbgen dir python path
3418    
3419    If a the path to the xcb python generate libs is
3420    explicitly specified to c_client.py, insert it in
3421    the python path list just after the local dir entry,
3422    rather than appending it to the existing paths.
3423    This keeps a global/distro install of xcb from
3424    overriding a local build of the xcb proto files.
3425    
3426    Signed-off-by: James Jones <jajones@nvidia.com>
3427    Signed-off-by: Jamey Sharp <jamey@minilop.net>
3428
3429commit 294c9f455c3534d836b010dacd2e7aa62a7dde9d
3430Author: David Coles <dcoles@gaikai.com>
3431Date:   Fri Apr 8 17:47:05 2011 -0700
3432
3433    Add support for building with Python 3
3434    
3435    Python 3 introduces some language changes that cause issues when running
3436    c_client.py. This also breaks compatibility with Python 2.5 since it does not
3437    support the "as" statement in try/except blocks and does not have reduce() in
3438    the functools package.
3439    
3440    The main changes are:
3441    * try/except blocks require `except ... as ...:` to resolve syntactical ambiguity
3442    * map() and filter() return iterators rather than lists in Python 3
3443    * reduce() is now in functools package (and not built-in in Python 3)
3444    * Dictionaries don't have a has_key() method in Python 3
3445    * None and int types can't be directly compared in Python 3
3446    * print() is a statement in Python 3
3447    
3448    See http://diveintopython3.org/porting-code-to-python-3-with-2to3.html and
3449    PEP-3110 for details.
3450    
3451    Verified on Python 2.6.5 and 3.1.3.
3452    
3453    Signed-off-by: David Coles <dcoles@gaikai.com>
3454    Signed-off-by: Julien Danjou <julien@danjou.info>
3455
3456commit e300ee4920bf4618f58618f3063b362f811154c1
3457Author: Jamey Sharp <jamey@minilop.net>
3458Date:   Tue Apr 12 13:09:23 2011 -0700
3459
3460    Revert "Introduce xcb_wait_for_event_until, for consuming responses in wire-order."
3461    
3462    This function was intended to allow libX11 to fix a multi-threaded hang,
3463    but the corresponding libX11 patch caused single-threaded apps to spin
3464    sometimes. Since I've retracted that patch, this patch has no users and
3465    shouldn't go into a release unless/until that changes.
3466    
3467    This reverts commit 2415c11dec5e5adb0c17f98aa52fbb371a4f8f23.
3468    
3469    Conflicts:
3470    
3471            src/xcb.h
3472            src/xcb_in.c
3473    
3474    Signed-off-by: Jamey Sharp <jamey@minilop.net>
3475
3476commit 527df3c84bd71113cedc7f55089c02d1c099ecad
3477Author: Rami Ylimäki <rami.ylimaki@vincit.fi>
3478Date:   Tue Mar 22 14:33:23 2011 +0200
3479
3480    Introduce a variant of xcb_poll_for_event for examining event queue.
3481    
3482    In some circumstances using xcb_poll_for_event is suboptimal because
3483    it checks the connection for new events. This may lead to a lot of
3484    failed nonblocking read system calls.
3485    
3486    Signed-off-by: Rami Ylimäki <rami.ylimaki@vincit.fi>
3487    Signed-off-by: Jamey Sharp <jamey@minilop.net>
3488
3489commit b64cd0df884e7901ff13def0272df74962035920
3490Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3491Date:   Mon Apr 4 21:36:47 2011 -0700
3492
3493    If protocol is "unix", use a Unix domain socket, not TCP
3494    
3495    Fixes fallback to local connections from Xlib's XOpenDisplay(), which
3496    will try with protocol "unix" if a hostname is specified and tcp fails
3497    (as it usually will now that most OS'es ship with -nolisten tcp enabled).
3498    
3499    Also fixes explicitly specifying DISPLAY as "unix/foo:0", which Xlib
3500    previously accepted for Unix domain sockets.
3501    
3502    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3503
3504commit b027922ebf1931885e00629c20e26f14f184998d
3505Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3506Date:   Mon Apr 4 21:28:00 2011 -0700
3507
3508    Make launchd code in xcb_util.c match surrounding code indent levels
3509    
3510    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3511
3512commit 82b1f3919a82a730f6b2f952d4090fe15702694e
3513Author: Carlos Garnacho <carlosg@gnome.org>
3514Date:   Tue Oct 5 18:03:22 2010 +0200
3515
3516    Handle XGE events with the "send event" flag
3517    
3518    This patch is necessary so xcb reads the payload after the message
3519    for GenericEvents with the 0x80 flag turned on.
3520    
3521    Signed-off-by: Carlos Garnacho <carlosg@gnome.org>
3522    Signed-off-by: Jamey Sharp <jamey@minilop.net>
3523
3524commit 42c4adeff4a6aedfba30e22f71800c1b73942923
3525Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3526Date:   Mon Apr 4 20:20:16 2011 -0700
3527
3528    Add #include <sys/socket.h> to xcb_conn.c
3529    
3530    Solves compiler warning on Solaris:
3531    "xcb_conn.c", line 304: warning: implicit function declaration: shutdown
3532    
3533    Also provides system definition of SHUT_RDWR on Solaris 11.
3534    
3535    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3536    Reviewed-by: Jamey Sharp <jamey@minilop.net>
3537
3538commit 4b502dd696cf7f59a961bcf71c9255ae28f0765a
3539Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3540Date:   Mon Apr 4 20:12:56 2011 -0700
3541
3542    Remove unused DECnet code
3543    
3544    "unifdef -UDNETCONN src/xcb_util.c" plus re-indenting code that was
3545    formerly in the else clause after a DECnet check.
3546    
3547    DECnet support has been removed from most of the X.Org code base for
3548    several years, and it appears DNETCONN was never defined in XCB.
3549    
3550    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3551    Reviewed-by: Jamey Sharp <jamey@minilop.net>
3552
3553commit 7131d5d0706f2b63caad13c815e893627872114c
3554Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3555Date:   Mon Apr 4 16:32:45 2011 -0700
3556
3557    Use special path to sockets when running under Solaris Trusted Extensions
3558    
3559    Solaris Trusted Extensions puts the endpoints for the X server's Unix
3560    domain sockets in a special directory shared from the global zone to
3561    each of the labeled zones, since each labeled zone has a separate /tmp.
3562    
3563    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3564    Reviewed-by: Peter Harris <pharris@opentext.com>
3565
3566commit 70976d87f18d15c2ccc28eb7728e4822d3849e0d
3567Author: Rami Ylimäki <rami.ylimaki@vincit.fi>
3568Date:   Wed Mar 23 17:47:50 2011 +0200
3569
3570    Prevent theoretical double free and leak on get_peer_sock_name.
3571    
3572    Variable new_sockname will leak and sockname will be double freed if
3573    both of the cases shown below are true.
3574    
3575    1. realloc succeeds and doesn't return the original pointer
3576    2. calling socket_func fails
3577    
3578    Signed-off-by: Rami Ylimäki <rami.ylimaki@vincit.fi>
3579    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
3580    Reviewed-by: Arnaud Fontaine <arnau@debian.org>
3581    Signed-off-by: Peter Harris <pharris@opentext.com>
3582
3583commit 3678159e4ed64502f9ce218a63c8d069649f2215
3584Author: Jamey Sharp <jamey@minilop.net>
3585Date:   Sat Mar 19 20:04:55 2011 -0700
3586
3587    Delete the old c-client.xsl.
3588    
3589    It hasn't been used since libxcb 1.1.90.1, released in 2008.
3590    
3591    Signed-off-by: Jamey Sharp <jamey@minilop.net>
3592
3593commit 2415c11dec5e5adb0c17f98aa52fbb371a4f8f23
3594Author: Jamey Sharp <jamey@minilop.net>
3595Date:   Fri Mar 18 20:56:07 2011 -0700
3596
3597    Introduce xcb_wait_for_event_until, for consuming responses in wire-order.
3598    
3599    Signed-off-by: Jamey Sharp <jamey@minilop.net>
3600    Reviewed-by: Josh Triplett <josh@freedesktop.org>
3601
3602commit 29a974f212aae9eeff4fde99f110cee08f0312f3
3603Author: Jamey Sharp <jamey@minilop.net>
3604Date:   Fri Mar 18 17:36:32 2011 -0700
3605
3606    Dequeue readers that can't receive any new responses.
3607    
3608    Signed-off-by: Jamey Sharp <jamey@minilop.net>
3609    Reviewed-by: Josh Triplett <josh@freedesktop.org>
3610
3611commit 131e867fca5cda94e634af69214ad54e066ac871
3612Author: Jamey Sharp <jamey@minilop.net>
3613Date:   Fri Mar 18 15:37:34 2011 -0700
3614
3615    Factor reader_list management out of wait_for_reply.
3616    
3617    Later patches will insert reader_list entries from other entry points.
3618    
3619    Signed-off-by: Jamey Sharp <jamey@minilop.net>
3620    Reviewed-by: Josh Triplett <josh@freedesktop.org>
3621
3622commit 1469e879655b20351530059538a7b89612028ae2
3623Author: Jamey Sharp <jamey@minilop.net>
3624Date:   Fri Mar 18 18:18:41 2011 -0700
3625
3626    Enable AM_SILENT_RULES on automake 1.11 or newer.
3627    
3628    This incantation is supposed to be a no-op on earlier automake versions.
3629    
3630    Signed-off-by: Jamey Sharp <jamey@minilop.net>
3631    Reviewed-by: Josh Triplett <josh@freedesktop.org>
3632
3633commit 6310475e23eac6917db54f1425e20d8434bee679
3634Author: Rami Ylimäki <rami.ylimaki@vincit.fi>
3635Date:   Wed Oct 13 17:48:13 2010 +0300
3636
3637    Prevent reply waiters from being blocked.
3638    
3639    It's possible to call xcb_wait_for_reply more than once for a single
3640    request. In this case we are nice and let reply waiters continue so
3641    that they can notice that the reply is not available
3642    anymore. Otherwise an event waiter could just signal the reply waiter
3643    that got its reply to continue but leave a waiter for an earlier reply
3644    blocked.
3645    
3646    Below is an example sequence for reproducing this problem.
3647    
3648    thread #1 (XNextEvent)
3649      - waits for events
3650    thread #2 (XSync)
3651      - executes request #2
3652      - waits for reply #2
3653    thread #1
3654      - reads reply #2
3655      - signals waiter of reply #2 to continue
3656      - waits for events
3657    thread #2
3658      - handles reply #2
3659    thread #3 (XCloseDisplay)
3660      - executes request #3
3661      - waits for reply #2
3662    thread #1
3663      - reads reply #3
3664      - nobody is waiting for reply #3 so don't signal
3665      - wait for events
3666    
3667    Of course it may be questionable to wait for a reply twice, but XCB
3668    should be smart enough to let clients continue if they choose to do
3669    so.
3670    
3671    Signed-off-by: Rami Ylimäki <rami.ylimaki@vincit.fi>
3672    Signed-off-by: Jamey Sharp <jamey@minilop.net>
3673
3674commit 29ab5aeb9b1b1daf7f0659b134a4cfe9f42ca71a
3675Author: Jamey Sharp <jamey@minilop.net>
3676Date:   Sun Mar 13 09:41:10 2011 -0700
3677
3678    Include XKB in ./configure's summary output.
3679    
3680    Signed-off-by: Jamey Sharp <jamey@minilop.net>
3681
3682commit 2edfd5c375bf980b484b7cfbfc1f4fb751621859
3683Merge: ed37b08 8c3325f
3684Author: Jamey Sharp <jamey@minilop.net>
3685Date:   Sun Mar 13 09:18:24 2011 -0700
3686
3687    Merge branch 'master' of git+ssh://git.freedesktop.org/git/xcb/libxcb
3688    
3689    Apparently I forgot to push these months ago.
3690
3691commit 8c3325f8bbdb1e8975bdb01525a52d6b0f80cfa3
3692Author: Jeremy Huddleston <jeremyhu@apple.com>
3693Date:   Fri Mar 4 12:41:55 2011 -0800
3694
3695    darwin: Don't use poll() when expected to run on darwin10 and prior
3696    
3697    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
3698
3699commit c2e023646298da05e212056fbc6b329e4dd9a100
3700Author: Peter Harris <pharris@opentext.com>
3701Date:   Thu Dec 23 13:32:17 2010 -0500
3702
3703    Don't try to sizeof(void)
3704    
3705    sizeof(void) is a gcc extension, and not portable.
3706    
3707    Xorg Bugzilla 31959
3708    http://bugs.freedesktop.org/show_bug.cgi?id=31959
3709    http://lists.freedesktop.org/archives/xcb/2010-May/006039.html
3710    
3711    Signed-off-by: Peter Harris <pharris@opentext.com>
3712    Tested-by: Cyril Brulebois <kibi@debian.org>
3713
3714commit 9efced72a3cb8072fa60fbed4f04d61cde412494
3715Author: Vincent Torri <vincent dot torri at gmail dot com>
3716Date:   Sun Nov 28 14:02:40 2010 +0100
3717
3718    fix Windows build and installation
3719
3720commit 3c5813697169a33ecfd6ac0ab5641dec654f6612
3721Merge: 69b78ce b672d15
3722Author: Peter Harris <pharris@opentext.com>
3723Date:   Thu Dec 23 13:04:40 2010 -0500
3724
3725    Merge branch 'master' of git://anongit.freedesktop.org/~peterh/libxcb
3726
3727commit 69b78ced1a7bcdca538c0720fde9cf3e6f70d040
3728Author: Jeetu Golani <jeetu.golani@gmail.com>
3729Date:   Sun Dec 12 16:48:41 2010 -0500
3730
3731    Don't validate FD_SETSIZE on Win32
3732    
3733    Windows' file handles have never been small or consecutive, so Windows'
3734    select has always been implemented the same way as everyone else's poll.
3735    
3736    On Windows, FD_SETSIZE is the size of the poll array, not the maximum
3737    SOCKET number.
3738    
3739    Signed-off-by: Peter Harris <git@peter.is-a-geek.org>
3740
3741commit 8ecd754b168a0352783bf1ba0f0887f7ff479ee8
3742Author: Uli Schlachter <psychon@znc.in>
3743Date:   Wed Nov 17 20:26:11 2010 +0100
3744
3745    xcb_take_socket: Document sequence wrap requirements
3746    
3747    If lots of requests are send without one causing a reply, xcb can get confused
3748    about the current sequence number of a reply. Document the requirements of an
3749    external socket owner to avoid this problem.
3750    
3751    The return_socket callback for xcb_take_socket() originally was supposed to
3752    return the last sequence number used, but the version committed to libxcb never
3753    actually had this signature. This fixes the function's documentation not to
3754    mention this non-existent return value.
3755    
3756    Signed-off-by: Uli Schlachter <psychon@znc.in>
3757    Signed-off-by: Julien Danjou <julien@danjou.info>
3758
3759commit 5755582444ad0ba79e661ab3173cc38e9e588d83
3760Author: Nick Bowler <nbowler@draconx.ca>
3761Date:   Wed Nov 10 20:49:41 2010 -0500
3762
3763    xcb_auth: Fix memory leak in _xcb_get_auth_info.
3764    
3765    If the initial get_peer_sock_name(getpeername ...) succeeds, the
3766    pointer to allocated memory is overwritten by the later call to
3767    get_peer_sock_name(getsockname ...).  Fix that up by freeing
3768    the allocated memory before overwriting the pointer.
3769    
3770    Signed-off-by: Nick Bowler <nbowler@draconx.ca>
3771    Signed-off-by: Julien Danjou <julien@danjou.info>
3772
3773commit ed37b087519ecb9e74412e4df8f8a217ab6d12a9
3774Author: Jamey Sharp <jamey@minilop.net>
3775Date:   Sat Oct 9 17:13:45 2010 -0700
3776
3777    xcb_in: Use 64-bit sequence numbers internally everywhere.
3778    
3779    Widen sequence numbers on entry to those public APIs that still take
3780    32-bit sequence numbers.
3781    
3782    Signed-off-by: Jamey Sharp <jamey@minilop.net>
3783
3784commit 6c8b539c2a2e53bf3deb0e749a941ab52b7e8834
3785Author: Jamey Sharp <jamey@minilop.net>
3786Date:   Sat Oct 9 13:19:05 2010 -0700
3787
3788    xcb_discard_reply: Simplify by re-using poll_for_reply helper.
3789    
3790    If you discard a sequence number that has multiple responses already
3791    read, this will do more allocations than necessary. But nobody cares
3792    about ListFontsWithInfo.
3793    
3794    Signed-off-by: Jamey Sharp <jamey@minilop.net>
3795
3796commit 3a74b5e7a1aab0619b7e34d90d2b8b2b1e386129
3797Author: Jamey Sharp <jamey@minilop.net>
3798Date:   Sat Oct 9 12:32:05 2010 -0700
3799
3800    xcb_request_check: Hold the I/O lock while deciding to sync.
3801    
3802    Signed-off-by: Jamey Sharp <jamey@minilop.net>
3803
3804commit ee1bc1d28a1bda0526db90139edc1304d2ef3d7c
3805Author: Jamey Sharp <jamey@minilop.net>
3806Date:   Sat Oct 9 04:08:18 2010 -0700
3807
3808    xcb_send_request: Send all requests using a common internal send_request.
3809    
3810    This simplifies the critical section of xcb_send_request and fixes a
3811    couple of subtle bugs:
3812    
3813    - It's possible for xcb_send_request to need to issue two sync requests
3814      before it can issue the real request. Previously, we counted sequence
3815      numbers as if both were issued, but only one went out on the wire.
3816    
3817    - The test for whether to sync at 32-bit sequence number wrap has been
3818      incorrect since we switched to 64-bit sequence numbers internally.
3819    
3820    This change means that if the output queue was already full and the
3821    current request is bigger than the output queue, XCB will do one more
3822    write syscall than it did before. But syncs are rare and small requests
3823    are the norm, so this shouldn't be a measurable difference.
3824    
3825    Signed-off-by: Jamey Sharp <jamey@minilop.net>
3826
3827commit b672d1514c88e119f3aaeded8c8a488cad36db52
3828Author: Peter Harris <pharris@opentext.com>
3829Date:   Wed Sep 22 23:15:38 2010 -0400
3830
3831    Fix _unserialize of reply headers
3832    
3833    This cleans up a number of warnings, and passes the sequence number
3834    through correctly.
3835    
3836    Signed-off-by: Peter Harris <pharris@opentext.com>
3837
3838commit 29cca33b9001961fa2c33bb9d9fe4a9983913fce
3839Author: Peter Harris <pharris@opentext.com>
3840Date:   Wed Sep 22 22:32:34 2010 -0400
3841
3842    Clean up a couple of warnings in xprint
3843    
3844    Signed-off-by: Peter Harris <pharris@opentext.com>
3845
3846commit 8c1d2021ca611c1452a8d2ff2a705569e4ebd056
3847Author: Peter Harris <pharris@opentext.com>
3848Date:   Wed Sep 22 21:16:51 2010 -0400
3849
3850    Make *_unserialize safe to use on buffers in-place
3851    
3852    By calling memmove instead of memcpy, and walking the buffer backward
3853    from the end, *_unserialize is safe to use in-place.
3854    
3855    Signed-off-by: Peter Harris <pharris@opentext.com>
3856
3857commit 28a71c6567d08272dc9c1c2b32f0529f11f62b9e
3858Author: Peter Harris <pharris@opentext.com>
3859Date:   Fri Sep 10 15:51:56 2010 -0400
3860
3861    Fix memory leak in _sizeof implemented with _unserialize
3862    
3863    Signed-off-by: Peter Harris <pharris@opentext.com>
3864
3865commit a22909c0f513fe28347c56be65a345831c3ce744
3866Author: Peter Harris <pharris@opentext.com>
3867Date:   Wed Sep 8 15:57:00 2010 -0400
3868
3869    Don't emit out-of-module sizeof definitions
3870    
3871    Signed-off-by: Peter Harris <pharris@opentext.com>
3872
3873commit 1c4717de367fe3bf1cf56bd8ef2bd30586bed023
3874Author: Josh Triplett <josh@joshtriplett.org>
3875Date:   Sun Sep 19 20:38:06 2010 +0200
3876
3877    Allow disconnecting connections that are in error state.
3878    
3879    In support of this, consolidate the two static error_connection
3880    definitions into one so we don't try to free the static out-of-memory
3881    error_connection.
3882    
3883    Commit by Josh Triplett and Jamey Sharp.
3884    
3885    Signed-off-by: Josh Triplett <josh@joshtriplett.org>
3886    Signed-off-by: Jamey Sharp <jamey@minilop.net>
3887
3888commit 03bcccb132249142ba908a075e0bd5075fc20d97
3889Author: Peter Harris <pharris@opentext.com>
3890Date:   Fri Sep 10 15:53:13 2010 -0400
3891
3892    Add xkb.* to gitignore
3893    
3894    Signed-off-by: Peter Harris <pharris@opentext.com>
3895
3896commit 28d39258008fcc8ced84dc6c1dd2644e2c908c87
3897Merge: f0565e8 5e8a7ad
3898Author: Peter Harris <pharris@opentext.com>
3899Date:   Wed Sep 8 14:41:52 2010 -0400
3900
3901    Merge branch 'gsoc2010' of git://anongit.freedesktop.org/~chr/libxcb
3902
3903commit f0565e8f06aadf760a9065a97b8cf5ab9cbd18de
3904Author: Jamey Sharp <jamey@minilop.net>
3905Date:   Sat Sep 4 10:17:21 2010 -0700
3906
3907    _xcb_conn_wait: Shut down the connection on unexpected poll() events.
3908    
3909    If a client calls close(2) on the connection's file descriptor and then
3910    flushes writes, libxcb causes a hang in the client.
3911    
3912    Any flush eventually calls _xcb_out_send() with has the following loop:
3913       while(ret && *count)
3914           ret = _xcb_conn_wait(c, &c->out.cond, vector, count);
3915    
3916    _xcb_conn_wait(), if built with USE_POLL, gets the POLLNVAL error. It only
3917    checks for POLLIN and POLLOUT though, ignoring the error. Return value is 1,
3918    count is unmodified, leaving us with an endless loop and a client hang.
3919    
3920    XTS testcase Xlib3/XConnectionNumber triggers this bug. It creates a display
3921    connection, closes its file descriptor, tries to send a no-op, and then expects
3922    an error.
3923    http://cgit.freedesktop.org/xorg/test/xts/tree/xts5/Xlib3/XConnectionNumber.m
3924    
3925    If poll returned POLLHUP or POLLERR, we might see the same result.
3926    
3927    If poll returns any event we didn't ask for, this patch causes
3928    _xcb_conn_shutdown() to be invoked and an error returned. This matches the
3929    behaviour if select(2) is used instead of poll(2): select(2) returns -1 and
3930    EBADF for an already closed file descriptor.
3931    
3932    I believe this fix both is safe and will handle any similar error. POSIX says
3933    that the only bits poll is permitted to set in revents are those bits that were
3934    set in events, plus POLLHUP, POLLERR, and POLLNVAL. So if we see any flags we
3935    didn't ask for then something has gone wrong.
3936    
3937    Patch inspired by earlier proposals from Peter Hutterer and Aaron
3938    Plattner--thanks!
3939    
3940    Reported-by: Peter Hutterer <peter.hutterer@who-t.net>
3941    Reported-by: Aaron Plattner <aplattner@nvidia.com>
3942    Signed-off-by: Jamey Sharp <jamey@minilop.net>
3943    Reviewed-by: Aaron Plattner <aplattner@nvidia.com>
3944    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
3945    Tested-by: Aaron Plattner <aplattner@nvidia.com>
3946    Cc: Peter Hutterer <peter.hutterer@who-t.net>
3947    Cc: Dan Nicholson <dbn.lists@gmail.com>
3948    Signed-off-by: Peter Harris <pharris@opentext.com>
3949
3950commit 20da10490f8dac75ec9fe1df28cb9e862e171be5
3951Merge: 7f5cfcc 2dcf8b0
3952Author: Peter Harris <pharris@opentext.com>
3953Date:   Tue Aug 31 18:33:36 2010 -0400
3954
3955    Merge branch 'master' of git://github.com/topcat/xcb-win32
3956    
3957    Conflicts:
3958            src/xcb_conn.c
3959            src/xcb_util.c
3960    
3961    Signed-off-by: Peter Harris <pharris@opentext.com>
3962
3963commit 7f5cfcc2fd0168d505504cc088bfdcba5c71f0ea
3964Author: Aaron Plattner <aplattner@nvidia.com>
3965Date:   Tue Aug 17 08:04:41 2010 -0700
3966
3967    xcb_disconnect: call shutdown() to force a disconnect
3968    
3969    Fixes the X Test Suite's XCloseDisplay-6 test, which has this (admittedly
3970    ridiculous) behavior:
3971    
3972     1. Create a window w.
3973     2. Open two display connections, dpy1, and dpy2.
3974     3. Grab the server using dpy1.
3975     4. Fork.
3976     5 (child). XSetProperty on w using dpy2.
3977     5 (parent). Verify that no event was recieved on dpy1.
3978     6 (parent). XCloseDisplay(dpy1).
3979     6 (child). Verify that an event was received on dpy2.
3980    
3981    It was failing because at step 6 (child), the server had not actually ungrabbed
3982    yet because the file descriptor for dpy1 was still open in the child process.
3983    
3984    Shutting down the socket during XCloseDisplay matches the behavior of non-XCB
3985    Xlib, which calls shutdown() from _X11TransSocketDisconnect.
3986    
3987    Thanks to Julien Cristau for noticing this.
3988    
3989    Signed-off-by: Aaron Plattner <aplattner at nvidia.com>
3990    Reviewed-by: Julien Cristau <jcristau@debian.org>
3991    Signed-off-by: Peter Harris <pharris@opentext.com>
3992
3993commit 2040f10a4efa95092bc9409c5b20347989b5f0a2
3994Author: Jamey Sharp <jamey@minilop.net>
3995Date:   Tue Aug 24 09:17:38 2010 -0700
3996
3997    xcb_request_check: Sync even if an event was read for this sequence.
3998    
3999    This fixes the test case I have so far for Havoc's report that
4000    xcb_request_check hangs.
4001    
4002    Rationale: Since we have a void cookie, request_expected can't have been
4003    set equal to this sequence number when the request was sent; it can only
4004    have become equal due to the arrival of an event or error. If it became
4005    equal due to an event then we still need to sync. If it became equal due
4006    to an error, then request_completed will have been updated, which means
4007    we correctly won't sync.
4008    
4009    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=29599
4010    
4011    However, Havoc reports that he can still reproduce the problem, so we
4012    may be revisiting this later.
4013    
4014    Reported-by: Havoc Pennington <hp@pobox.com>
4015    Signed-off-by: Jamey Sharp <jamey@minilop.net>
4016
4017commit 5e8a7ade2dc8aeeeb8013785ca3f24c6057ae443
4018Author: Christoph Reimann <oss@arcor.de>
4019Date:   Mon Aug 16 20:24:40 2010 +0200
4020
4021    small fix to get rid of some compiler warnings
4022    also added very basic documentation for xkb
4023
4024commit b89f634ff9b321f21874cd45e398d661a6ff726e
4025Author: Christoph Reimann <oss@arcor.de>
4026Date:   Mon Aug 16 18:22:42 2010 +0200
4027
4028    small fix in the xkb pkg file
4029
4030commit 22e1013131984a217e9bddeac3a6a4183e35f0c1
4031Author: Christoph Reimann <oss@arcor.de>
4032Date:   Mon Aug 16 18:19:16 2010 +0200
4033
4034    added accessors for special cases
4035    major bugfixes include: rewrite of prefix related functions, merge of serialize/unserialize/... generators, extended field name resolution
4036
4037commit 35f901a0f2bc3f5bb30dc6ff9d791679c9e84c05
4038Author: Julien Danjou <julien@danjou.info>
4039Date:   Fri Aug 13 13:46:37 2010 +0200
4040
4041    Release libxcb 1.7
4042    
4043    Signed-off-by: Julien Danjou <julien@danjou.info>
4044
4045commit fe0e32b5fa3923fae97210e974c0f96a085116cb
4046Author: Christoph Reimann <oss@arcor.de>
4047Date:   Sun Aug 8 21:25:13 2010 +0200
4048
4049    special case 'intermixed variable and fixed size fields': fixed reply side, needs testing
4050
4051commit 77b594f9583ea0247ff27130316d8e045da7f921
4052Author: Christoph Reimann <oss@arcor.de>
4053Date:   Thu Aug 5 15:55:28 2010 +0200
4054
4055    renamed most _unserialize() functions to _sizeof() and fixed _unserialize() for the special case of intermixed variable and fixed size fields
4056
4057commit dd1a4dbe20d6b5fd33aeb65e662bb2ca18665518
4058Author: Eamon Walsh <efw@eamonwalsh.com>
4059Date:   Thu Aug 5 00:48:08 2010 -0400
4060
4061    Tutorial uses wrong function.
4062    
4063    https://bugs.freedesktop.org/show_bug.cgi?id=29392
4064    
4065    Signed-off-by: Eamon Walsh <efw@eamonwalsh.com>
4066
4067commit b187f029d6bb693f0294bad5261ec486b140f185
4068Author: Christoph Reimann <oss@arcor.de>
4069Date:   Mon Aug 2 23:30:42 2010 +0200
4070
4071    attempt to fix special case: variable fields followed by fixed size fields
4072
4073commit a700eeb502b5fe902e4c93cc707100ec868ce946
4074Author: Christoph Reimann <oss@arcor.de>
4075Date:   Sun Aug 1 23:40:20 2010 +0200
4076
4077    bug fixes for all kinds of 'special cases'
4078
4079commit 1c590d5a86ae854e53f388e40c952e92f11d59e6
4080Author: Christoph Reimann <oss@arcor.de>
4081Date:   Thu Jul 22 16:41:15 2010 +0200
4082
4083    partial rewrite of serialize helper functions completed;
4084    _serialize() & _unserialize() have been tested for switch derived from valueparam
4085
4086commit 566ae9baee20fb6147b94b89a26796087461bae8
4087Author: Christoph Reimann <oss@arcor.de>
4088Date:   Tue Jul 20 22:46:37 2010 +0200
4089
4090    preliminary handling of further special cases in unserialize
4091    first attempts to unify serialize and unserialize
4092
4093commit 4e665e1580ece7bc9505f3a2f657959669ffcd05
4094Author: Christoph Reimann <oss@arcor.de>
4095Date:   Thu Jul 15 18:43:43 2010 +0200
4096
4097    added generating code for _serialize() in case of variable sized structs (largely untested)
4098
4099commit d0031456097f009bdb82fb979924e71ca38c539b
4100Author: Christoph Reimann <oss@arcor.de>
4101Date:   Tue Jul 13 20:08:51 2010 +0200
4102
4103    xkb: added pkg config file
4104
4105commit 86704124b1fd62c30441ace1f3f8e2c316801c53
4106Author: Christoph Reimann <oss@arcor.de>
4107Date:   Tue Jul 13 20:06:08 2010 +0200
4108
4109    new and still preliminary functions for switch; feautures include
4110    - API compatibility with valueparam
4111    - request _aux() auxiliary functions
4112    - _serialize() and _unserialize() auxiliary functions
4113    - new data type that allows mixing of fixed and variable size members
4114
4115commit 80322d11636dd638902660d80481080d2fad40fe
4116Author: Christoph Reimann <oss@arcor.de>
4117Date:   Tue Jul 13 19:59:23 2010 +0200
4118
4119    xkb: updated configure.ac/Makefile.am
4120
4121commit 8c2707773b3621fb8bbda9021d23944f5be34aab
4122Author: Christoph Reimann <oss@arcor.de>
4123Date:   Tue Jul 13 19:56:44 2010 +0200
4124
4125    added xcb_sumof() with restriction to uint8_t
4126
4127commit 496efb7624d14b4ca0391f44926edc448cbd605e
4128Author: Jamey Sharp <jamey@minilop.net>
4129Date:   Tue Jul 13 07:01:06 2010 -0700
4130
4131    _xcb_conn_wait: Fix whitespace.
4132    
4133    Signed-off-by: Jamey Sharp <jamey@minilop.net>
4134
4135commit 74057c7eb6836353960ce3849703ce20e45089bc
4136Author: Jeremy Huddleston <jeremyhu@apple.com>
4137Date:   Mon Jul 12 16:53:53 2010 -0700
4138
4139    AC_CHECK_PROG(LAUNCHD, [launchd], [yes], [no], [$PATH$PATH_SEPARATOR/sbin])
4140    
4141    launchd: Explicitly search /sbin
4142    
4143    Previously, launchd wasn't found if /sbin wasn't in the user's PATH.
4144    https://bugs.freedesktop.org/show_bug.cgi?id=29028
4145    
4146    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
4147
4148commit 75ff427d41fc10d00b780c965c289fc02c81aaac
4149Author: Vincent Torri <vtorri@univ-evry.fr>
4150Date:   Sun Jun 20 20:50:06 2010 -0700
4151
4152    configure.ac: Report which extensions are being built.
4153    
4154    I was surprised to see that xinput was not installed. Looking at
4155    configure.ac, it seems that it is disabled by default. Maybe configure
4156    should output the status of the different extensions.
4157
4158commit de3cdad87a341c238c544425f4dd574b19c58ae3
4159Author: Pauli Nieminen <ext-pauli.nieminen@nokia.com>
4160Date:   Fri Jun 11 16:30:47 2010 +0300
4161
4162    xcb_connect_to_display_with_auth_info: Fix memory leak
4163    
4164    protocol and host are allocated in _xcb_parse_display but ownership of
4165    them is passed to the caller. They have to be freed in
4166    xcb_connect_to_display_with_auth_info.
4167    
4168    Signed-off-by: Pauli Nieminen <ext-pauli.nieminen@nokia.com>
4169    Signed-off-by: Peter Harris <pharris@opentext.com>
4170
4171commit 18718d483e0982c779a61c71176fb0e64f850015
4172Author: Pauli Nieminen <ext-pauli.nieminen@nokia.com>
4173Date:   Fri Jun 11 16:30:46 2010 +0300
4174
4175    _xcb_parse_display: Fix error path
4176    
4177    xcb_parse_display claims that there is no side effects when failing.
4178    That requires _xcb_parse_display to free the memory in failure case.
4179    
4180    Signed-off-by: Pauli Nieminen <ext-pauli.nieminen@nokia.com>
4181    Signed-off-by: Peter Harris <pharris@opentext.com>
4182
4183commit 3f79628becbd3b0eff1aef804902eb739fac4403
4184Author: Jeremy Huddleston <jeremyhu@apple.com>
4185Date:   Wed May 12 19:53:45 2010 -0700
4186
4187    xcb_open: Improve protocol/host parsing
4188    
4189    Support scenarios where host is not set and protocol is.  eg:
4190    
4191    DISPLAY=tcp/:0
4192    
4193    as well as the "inet" and "inet6" alias for "tcp" for compatability
4194    with Xlib
4195    
4196    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
4197    Reviewed-by: Jamey Sharp <jamey@minilop.net>
4198
4199commit e4b746ac13e89b99abd80b3d1fa2a16796da3b6d
4200Author: Marcin Kościelnicki <koriakin@0x04.net>
4201Date:   Thu May 13 21:05:57 2010 +0000
4202
4203    Add ~ operator support in code generator
4204    
4205    Reviewed-by: Julien Cristau <jcristau@debian.org>
4206    Signed-off-by: Julien Danjou <julien@danjou.info>
4207
4208commit 5e86cb05666c448de2f61c23ae94e94ef4b38d64
4209Author: Arnaud Fontaine <arnau@debian.org>
4210Date:   Fri Apr 30 18:49:18 2010 +0100
4211
4212    Fix GCC error on undeclared variable when not using abstract socket
4213    
4214    This is a regression found by tinderbox in previous commit:
4215    
4216    xcb_util.c: In function '_xcb_open':
4217    xcb_util.c:213: error: 'fd' undeclared (first use in this function)
4218
4219commit a546d00091de0ab16374dec55e8e2fa87d6bbebf
4220Author: Arnaud Fontaine <arnau@debian.org>
4221Date:   Fri Apr 30 14:47:16 2010 +0200
4222
4223    Get rid of PATH_MAX and MAXPATHLEN
4224    
4225    There could be no upper limit on the length of a path according
4226    to POSIX, therefore these macros may not be defined at all on
4227    some systems (such as GNU Hurd).
4228    
4229    Signed-off-by: Arnaud Fontaine <arnau@debian.org>
4230    Reviewed-by: Peter Harris <pharris@opentext.com>
4231
4232commit d06857217328c2283a8956788d72646fc67216fb
4233Author: Jeremy Huddleston <jeremyhu@apple.com>
4234Date:   Fri Apr 23 21:57:26 2010 -0700
4235
4236    Use limits.h instead of syslimits.h
4237    
4238    Regression found by tinderbox in 89b3485dadef47a30264a5bf150b96522183376b
4239    
4240    xcb_util.c:31:27: error: sys/syslimits.h: No such file or directory
4241    xcb_util.c: In function '_xcb_open':
4242    xcb_util.c:148: error: 'PATH_MAX' undeclared (first use in this function)
4243    
4244    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
4245
4246commit 89b3485dadef47a30264a5bf150b96522183376b
4247Author: Jeremy Huddleston <jeremyhu@apple.com>
4248Date:   Fri Apr 23 17:29:25 2010 -0700
4249
4250    Reworked launchd support to work better with _xcb_parse_display
4251    
4252    Fixes: http://xquartz.macosforge.org/trac/ticket/390
4253    
4254    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
4255
4256commit 2dcf8b025be88a25d4333abdc28d425b88238d96
4257Author: Jeetu Golani <jeetu.golani@gmail.com>
4258Date:   Fri Apr 23 00:47:16 2010 +0530
4259
4260    Replaced read() in read_block and _xcb_in_read() with recv for all
4261    platforms. MSG_WAITALL is undefined in MinGW so it's been explicitly
4262    defined in xcb_in.c
4263
4264commit 56962e42a509dc4d0d9541e46b93689dac61c4fd
4265Author: Jeetu Golani <jeetu.golani@gmail.com>
4266Date:   Thu Apr 22 23:23:27 2010 +0530
4267
4268    Set errno=0 in read_block. On Win32 there is no errno and this makes the
4269    do..while loop execute only once. Also set the return value to -1 in
4270    _xcb_open if control reaches the end - if all goes well it shouldn't
4271    reach there.
4272
4273commit b0525e242368fffbc77ebb45293f34e80847e65a
4274Author: Jamey Sharp <jamey@minilop.net>
4275Date:   Sat Apr 17 17:59:11 2010 -0700
4276
4277    Always wake up readers after writing.
4278    
4279    Since writers must make sure they read as well, threads may have gone to
4280    sleep waiting for the opportunity to read. The writer must wake up one
4281    of those readers or the application can hang.
4282    
4283    Signed-off-by: Jamey Sharp <jamey@minilop.net>
4284    Reviewed-by: Josh Triplett <josh@freedesktop.org>
4285
4286commit eff3851ba80c42b5b3ba240f7e9049d7b0fac6f0
4287Author: Jamey Sharp <jamey@minilop.net>
4288Date:   Sun Mar 28 10:31:55 2010 -0700
4289
4290    Fix strict-aliasing warning when getting generic event length.
4291    
4292    xcb_ge_event_t has its length field in the same place that
4293    xcb_generic_reply_t does, so there's no need to cast the generic reply.
4294    
4295    Signed-off-by: Jamey Sharp <jamey@minilop.net>
4296    Cc: Peter Hutterer <peter.hutterer@who-t.net>
4297    Reviewed-by: Julien Danjou <julien@danjou.info>
4298
4299commit 6dd8228a137d280ce24cec604a419129d8ed0e8e
4300Author: Jamey Sharp <jamey@minilop.net>
4301Date:   Fri Feb 12 12:25:05 2010 -0800
4302
4303    Delete a useless level of indirection from _xcb_out_send's parameters.
4304    
4305    _xcb_out_send needs _xcb_conn_wait to store back its progress so it can
4306    be reinvoked to pick up where it left off---but then _xcb_out_send
4307    guarantees that it leaves either an empty output vector or a shut-down
4308    connection, so *its* callers never care how much progress was made.
4309    
4310    Signed-off-by: Jamey Sharp <jamey@minilop.net>
4311    Reviewed-by: Josh Triplett <josh@freedesktop.org>
4312
4313commit a63fbc9d6c484e5ad7a5e9d56f81b8e1a2f38a82
4314Author: Julien Danjou <julien@danjou.info>
4315Date:   Fri Apr 9 16:57:51 2010 +0200
4316
4317    Release libxcb 1.6
4318
4319commit a1d9aa6e07a297f4108b4ad787336f74c86a3312
4320Author: Rémi Denis-Courmont <remi.denis-courmont@nokia.com>
4321Date:   Fri Mar 26 23:12:47 2010 +0200
4322
4323    Fail if fd is too big and poll() is not available
4324    
4325    Depending on the process file limit, a file descriptor can be larger
4326    than the capacity of fd_set. There is no portable way to create a
4327    large enough fd_set at run-time. So we just fail if the file descriptor
4328    number is too high and poll() is not available.
4329    
4330    Reviewed-by: Jamey Sharp <jamey@minilop.net>
4331    Signed-off-by: Julien Danjou <julien@danjou.info>
4332
4333commit 0e0c80e749eccf121e55c1e855c48d03b54f33ef
4334Author: Jeetu Golani <jeetu.golani@gmail.com>
4335Date:   Wed Mar 31 22:00:04 2010 +0530
4336
4337    xcb_in.c #ifndef _WIN32 inside of #if USE_POLL redundant and removed
4338
4339commit e8009194c9f5a6995c4a9b03a7a49d5bc09e96fc
4340Author: Jeetu Golani <jeetu.golani@gmail.com>
4341Date:   Wed Mar 31 09:50:51 2010 +0530
4342
4343    restablished inclusion of fcntl.h and netinet/tcp.h in xcb_util.c -- without these the code no longer compiled on *ix
4344
4345commit d302f1e9b158d0a51936c28e5dc66251d90d1d56
4346Author: Jeetu Golani <jeetu.golani@gmail.com>
4347Date:   Mon Mar 29 22:37:33 2010 +0530
4348
4349    changes in xcb_windefs.h - the flag  _XCB_WINDEFS_H replaces WINDEFS_H
4350
4351commit 36c9a985aaee655c118c9f7b8425d3ac9ce0f840
4352Author: Jeetu Golani <jeetu.golani@gmail.com>
4353Date:   Mon Mar 29 22:31:49 2010 +0530
4354
4355    windefs.h is now called xcb_windefs.h - changed all includes to reflect that.Replaced one instance ofWIN32 with _WIN32 in each xcb_in.c and xcb_conn.c
4356
4357commit bce72f63d2dfb61661f81e305ad3a7db0334403c
4358Author: Jeetu Golani <jeetu.golani@gmail.com>
4359Date:   Fri Mar 26 09:40:09 2010 +0530
4360
4361    Win32 code for xcb-1.5
4362
4363commit d18d03d6f37ec220805855d840950716e22354e4
4364Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
4365Date:   Fri Mar 12 23:51:32 2010 +0100
4366
4367    Fix authentication on hpux and Hurd
4368    
4369    libxcb's 010e5661 (Fix XDM-AUTHORIZATION-1 (bug #14202)) mistakenly
4370    inverted a few lines of code, making local socket authentication fail on
4371    hpux and Hurd: when getpeername fails, sockname needs to be initialized
4372    by getsockname before its address family can be checked.
4373    
4374    Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
4375    Signed-off-by: Julien Danjou <julien@danjou.info>
4376
4377commit 53a9834e4cdd11aba8c1cc49347f09a958107de8
4378Author: Rémi Denis-Courmont <remi@remlab.net>
4379Date:   Sat Feb 13 12:23:51 2010 +0200
4380
4381    Open the X11 socket with close-on-exec flag
4382    
4383    This saves the X11 connection from leaking into children processes.
4384    On Linux, this is fully thread-safe using SOCK_CLOEXEC. On other
4385    systems, there is a small race condition.
4386    
4387    Signed-off-by: Julien Danjou <julien@danjou.info>
4388
4389commit 367882fa32489ebafcd9afc04fbf732b02ceb33a
4390Author: Peter Harris <pharris@opentext.com>
4391Date:   Tue Feb 9 16:27:22 2010 -0500
4392
4393    Support xcb_discard_reply
4394    
4395    This function is useful for dynamic language garbage collectors. Frequently
4396    a GC cycle may run before you want to block wainting for a reply.
4397    
4398    This function is also marginally useful for libxcb apps that issue
4399    speculative requests (eg. xlsclients).
4400    
4401    Reviewed-by: Jamey Sharp <jamey@minilop.net>
4402    Tested-by: Eamon Walsh <efw@eamonwalsh.com>
4403    Signed-off-by: Peter Harris <pharris@opentext.com>
4404
4405commit be7e528eae62ddee14fa50f2c0e9036bafbc9f81
4406Author: Rémi Denis-Courmont <remi@remlab.net>
4407Date:   Thu Jan 7 18:08:35 2010 +0200
4408
4409    xcb_connect_to_fd: fix descriptor leak on memory error path
4410    
4411    Signed-off-by: Julien Danjou <julien@danjou.info>
4412
4413commit c7a57043da1717c18703a38772555fea6aa811bf
4414Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
4415Date:   Fri Dec 11 17:24:43 2009 -0800
4416
4417    configure.ac: Fix a typo on the last commit.
4418    
4419    Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
4420
4421commit 58c96da9283d3c2f65c818bd952f611ec4e4dad0
4422Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
4423Date:   Fri Dec 11 17:15:16 2009 -0800
4424
4425    darwin: xnu doesn't support poll on ttys on the master side.
4426    
4427    <rdar://problem/7360546>
4428    
4429    Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
4430
4431commit 1e746fd89ae93965183c759b969ff9f4d5dbc9d8
4432Author: Jim Ingram <ingramj@gmail.com>
4433Date:   Mon Dec 7 14:41:18 2009 -0600
4434
4435    Tutorial code fix
4436    
4437    Accessed elements of names[] after freeing them in the first example.
4438    
4439    Signed-off-by: Julien Danjou <julien@danjou.info>
4440
4441commit a470579ba29c8f39e77668558a08bb173297711f
4442Author: Rémi Cardona <remi@gentoo.org>
4443Date:   Fri Dec 4 22:06:20 2009 +0100
4444
4445    DRI2 extension requires xcb-proto 1.6 or newer
4446    
4447    Signed-off-by: Rémi Cardona <remi@gentoo.org>
4448    Signed-off-by: Julien Danjou <julien@danjou.info>
4449
4450commit 6e875a82a8a1a324067970a5f9d7442585ee0eef
4451Author: Julien Danjou <julien@danjou.info>
4452Date:   Thu Dec 3 11:34:18 2009 +0100
4453
4454    build: simplify extension building
4455    
4456    Signed-off-by: Julien Danjou <julien@danjou.info>
4457
4458commit 48217ac986d77eba40f3af4df597a734f4fd3690
4459Author: Julien Danjou <julien@danjou.info>
4460Date:   Thu Dec 3 10:08:59 2009 +0100
4461
4462    Release libxcb 1.5
4463    
4464    Signed-off-by: Julien Danjou <julien@danjou.info>
4465
4466commit 1cf2a87def76f4646fe05e282b45605d572f2513
4467Author: Adam Jackson <ajax@redhat.com>
4468Date:   Wed Dec 2 14:31:56 2009 -0500
4469
4470    setsockopt(SO_KEEPALIVE) on TCP display connections.
4471    
4472    This matches xtrans behaviour in SocketINETConnect, and makes it so apps
4473    don't hang forever if their display dies.
4474    
4475    Signed-off-by: Adam Jackson <ajax@redhat.com>
4476
4477commit e82c34c2f7ac3fbb23ab14cbee8df2dd9178f5a4
4478Author: Eric Anholt <eric@anholt.net>
4479Date:   Thu Oct 15 13:13:47 2009 -0700
4480
4481    Add DRI2 support. (v2)
4482    
4483    v2: Build fix from jcristau.
4484
4485commit a27c77ccae059fb64e0506648b81677858d3b05b
4486Author: Eric Anholt <eric@anholt.net>
4487Date:   Thu Oct 15 13:14:49 2009 -0700
4488
4489    Fix typo in the tutorial.
4490
4491commit 17af34b4a438a80d3dcad93bb5254366791a488f
4492Author: Paulo R. Zanoni <pzanoni@mandriva.com>
4493Date:   Fri Sep 18 15:05:46 2009 -0300
4494
4495    Don't build docs if 'dot' is not found Signed-off-by: Paulo R. Zanoni <pzanoni@mandriva.com>
4496
4497commit 29207e2943ad56fb8b4d2b7f07b1530cb1d7d9be
4498Author: Julien Cristau <jcristau@debian.org>
4499Date:   Mon Aug 31 17:51:36 2009 +0200
4500
4501    Fix check dependency
4502    
4503    Bugzilla #21992
4504    
4505    make -j check fails because the check-local rule gets executed before
4506    the tests actually ran, so CheckLog*.xml doesn't exist.
4507    
4508    Signed-off-by: Julien Danjou <julien@danjou.info>
4509
4510commit ff2e2e35bcac1d835c9eecf9ac8b3072005989a5
4511Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
4512Date:   Sat Jun 6 15:52:20 2009 +0100
4513
4514    Cygwin build fix: Add -no-undefined to libtool flags
4515    
4516    -no-undefined is needed to tell libtool a shared library can be built
4517    on platforms which require all references to be statisfied at link time.
4518    
4519    Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
4520    Signed-off-by: Julien Danjou <julien@danjou.info>
4521
4522commit 96ff5fb635bc333e80ebce6cc03008a1b9992ff6
4523Author: Arnaud Fontaine <arnau@debian.org>
4524Date:   Wed Jul 15 16:15:02 2009 +0100
4525
4526    Release libxcb 1.4
4527
4528commit f4c2794bf5990a0b2f6168f2b22b60b15e08ac44
4529Author: Arnaud Fontaine <arnau@debian.org>
4530Date:   Wed Jul 15 16:03:56 2009 +0100
4531
4532    Add majorCode, minorCode and resourceID fields to X generic error
4533
4534commit e06955ed66cb499ada52b8add6709edd38d70054
4535Author: Jamey Sharp <jamey@minilop.net>
4536Date:   Mon Jul 6 13:14:35 2009 -0700
4537
4538    Fix precedence bug: wrong length for big-requests preceded by sync.
4539    
4540    Also replace excessively clever use of bitwise OR with equivalent
4541    addition.
4542    
4543    Reported-by: Geoffrey Li <geoffrey@seitopos.com>
4544    Signed-off-by: Jamey Sharp <jamey@minilop.net>
4545    Signed-off-by: Josh Triplett <josh@joshtriplett.org>
4546
4547commit 9e191c722a0be4b5f3d993165055a71f85c21882
4548Author: Julien Cristau <jcristau@debian.org>
4549Date:   Fri May 29 14:41:59 2009 +0200
4550
4551    Fix libxcb-randr version info
4552    
4553    The SONAME shouldn't have been bumped in 1.3, only new symbols were
4554    added.
4555    
4556    Signed-off-by: Julien Danjou <julien@danjou.info>
4557
4558commit f44dc519c5b324335d05f6e7fb31b78062a8c5f5
4559Author: Julien Danjou <julien@danjou.info>
4560Date:   Fri May 29 08:26:05 2009 +0200
4561
4562    Release libxcb 1.3
4563
4564commit ee89850e68205a7f8961ace0839b5be86040dade
4565Author: elupus <elupus@ecce.se>
4566Date:   Tue May 26 16:14:48 2009 +0200
4567
4568    Disable Nagle on TCP socket
4569    
4570    Signed-off-by: Julien Danjou <julien@danjou.info>
4571
4572commit 62fe187e2d617eb0feb1ca03d8b4a64db9dd952b
4573Author: Bob Ham <rah@bash.sh>
4574Date:   Mon May 25 12:20:23 2009 +0200
4575
4576    Store xcbproto version libxcb was compiled with
4577    
4578    Signed-off-by: Julien Danjou <julien@danjou.info>
4579
4580commit efbe96ee0ab0c5511035eee99f8fe7b38d5f65fa
4581Author: Julien Danjou <julien@danjou.info>
4582Date:   Sat May 9 17:39:34 2009 +0200
4583
4584    depends on recent xcb-proto and bump version of randr
4585    
4586    Signed-off-by: Julien Danjou <julien@danjou.info>
4587
4588commit 010e566126625c56bdf9989085bacf731520ff87
4589Author: Bart Massey <bart@cs.pdx.edu>
4590Date:   Tue Apr 21 08:39:52 2009 +0200
4591
4592    Fix XDM-AUTHORIZATION-1 (bug #14202)
4593    
4594    With this patch, we know use correctly the socket address or peer
4595    address for authentication purpose.
4596    
4597    Signed-off-by: Julien Danjou <julien@danjou.info>
4598
4599commit ca978a9dae621126075712f9e2c29591208570bc
4600Author: Julien Danjou <julien@danjou.info>
4601Date:   Tue Apr 7 14:22:57 2009 +0200
4602
4603    util: remove useless strlen calls from decnet opening
4604    
4605    Signed-off-by: Julien Danjou <julien@danjou.info>
4606
4607commit cc191431412d8764c645a51b0f106c0dfe652213
4608Author: Julien Danjou <julien@danjou.info>
4609Date:   Tue Apr 7 14:18:40 2009 +0200
4610
4611    util: merge common code for xcb_connect
4612    
4613    Many code was duplicated between xcb_connect_to_display_with_auth_info
4614    and xcb_connect(). We merge both, since the difference is just about the
4615    xcb_auth_info_t pointer being supplied, or not.
4616    
4617    Signed-off-by: Julien Danjou <julien@danjou.info>
4618
4619commit 8797e053b2b2ee989f47490c7687b9a2fbdb0021
4620Author: Julien Danjou <julien@danjou.info>
4621Date:   Tue Apr 7 13:37:40 2009 +0200
4622
4623    util: open_abstract gets filelen as parameters
4624    
4625    That saves us from a couple of strlen() calls.
4626    
4627    Signed-off-by: Julien Danjou <julien@danjou.info>
4628
4629commit f0b29819749b769e5a8d313bf1bab80d6513208b
4630Author: Julien Danjou <julien@danjou.info>
4631Date:   Tue Apr 7 11:55:30 2009 +0200
4632
4633    auth: use snprintf() return value
4634    
4635    That save us from a strlen().
4636    
4637    Signed-off-by: Julien Danjou <julien@danjou.info>
4638
4639commit 9f24c91f91dd68a52e46191b686283b0df38d2f5
4640Author: Julien Danjou <julien@danjou.info>
4641Date:   Tue Apr 7 11:49:13 2009 +0200
4642
4643    auth: precompute authnameslen
4644    
4645    Signed-off-by: Julien Danjou <julien@danjou.info>
4646
4647commit 2a4f1cf3801080276694f5026d35220b65201038
4648Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
4649Date:   Thu Apr 9 05:12:02 2009 -0700
4650
4651    darwin: Don't use poll() on versions of darwin before darwin10
4652
4653commit 6e2e87d0bbdff87f127986a0666445160d52e6a5
4654Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
4655Date:   Mon Apr 6 03:31:23 2009 +0200
4656
4657    Local socket connections do not work on hurd-i386
4658    
4659    Local socket connections currently do not work on hurd-i386 because
4660    xcb_auth calls getpeername() on the client socket, but hurd-i386 does
4661    not implement anything in that case (I actually wonder what reasonable
4662    value could be returned).  In such case the xcb code does not actually
4663    need the peer name anyway.
4664    
4665    Signed-off-by: Julien Danjou <julien@danjou.info>
4666
4667commit f916062edf0e04cd4e0a78f6975892f59fae3b60
4668Author: Michael Ost <most@museresearch.com>
4669Date:   Mon Mar 30 11:09:32 2009 +0200
4670
4671    use poll() instead of select() when available
4672    
4673    Signed-off-by: Julien Danjou <julien@danjou.info>
4674
4675commit beccb0be15f5699c942a0af33307d9e4bf797e2a
4676Author: Bart Massey <bart@cs.pdx.edu>
4677Date:   Tue Mar 24 16:24:04 2009 -0700
4678
4679    kludgily hand-merged xid fixes
4680    
4681    Signed-off-by: Bart Massey <bart@cs.pdx.edu>
4682    Signed-off-by: Julien Danjou <julien@danjou.info>
4683
4684commit 1e9c0f1012b6d349f92ea7246194b8667d27f849
4685Author: Julien Danjou <julien@danjou.info>
4686Date:   Mon Mar 16 10:26:02 2009 +0100
4687
4688    Fix do_append() arguments
4689    
4690    Signed-off-by: Julien Danjou <julien@danjou.info>
4691
4692commit fcb433db80315a44154248a9229c9cfcbab63f04
4693Author: Julien Danjou <julien@danjou.info>
4694Date:   Sun Mar 15 10:18:50 2009 +0100
4695
4696    Copy full IPv4 mapping (Bug #20665)
4697    
4698    Signed-off-by: Julien Danjou <julien@danjou.info>
4699
4700commit eaa71eac02c6a862ab23e8afcce12d9f38590338
4701Author: Peter Harris <pharris@opentext.com>
4702Date:   Fri Mar 13 15:24:55 2009 -0400
4703
4704    Avoid name collisions between xidtype and enum.
4705    
4706    These changes are necessary to build with latest xcb/proto.
4707    
4708    Signed-off-by: Peter Harris <pharris@opentext.com>
4709
4710commit e986d1ee5a126dc38113125075a1e986235ba7c7
4711Author: Peter Harris <pharris@opentext.com>
4712Date:   Fri Mar 13 15:25:30 2009 -0400
4713
4714    Revert "Don't use enums in generated C code"
4715    
4716    This commit broke xcb/util.
4717    
4718    This reverts commit 9984b72888108a038d6b3f7dee374d17e26ef9e2.
4719    
4720    Signed-off-by: Peter Harris <pharris@opentext.com>
4721
4722commit 9984b72888108a038d6b3f7dee374d17e26ef9e2
4723Author: Peter Harris <pharris@opentext.com>
4724Date:   Wed Feb 25 18:48:50 2009 -0500
4725
4726    Don't use enums in generated C code - use integer constants instead.
4727    
4728    Signed-off-by: Peter Harris <pharris@opentext.com>
4729
4730commit b08e1535cf0716fc917eaa1f5d5f6d1960bf1e3c
4731Author: Julien Danjou <julien@danjou.info>
4732Date:   Tue Feb 17 13:37:29 2009 +0100
4733
4734    Release libxcb 1.2
4735    
4736    Signed-off-by: Julien Danjou <julien@danjou.info>
4737
4738commit 2e65188f91800d7e6a8d74fa077b46f8f67b6893
4739Author: Julien Danjou <julien@danjou.info>
4740Date:   Mon Feb 16 11:44:20 2009 +0100
4741
4742    Stop providing autogenerated files in tarball
4743    
4744    Signed-off-by: Julien Danjou <julien@danjou.info>
4745
4746commit 37f5ce3ef46c8af38ec0103b9d960615a0a1e058
4747Author: Julien Danjou <julien@danjou.info>
4748Date:   Thu Dec 11 11:17:13 2008 +0100
4749
4750    Release libxcb 1.1.93
4751    
4752    Signed-off-by: Julien Danjou <julien@danjou.info>
4753
4754commit f896ae8c53e99f39b347f9f0ac2b4a8cc12cad6f
4755Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
4756Date:   Sun Nov 23 17:25:21 2008 -0800
4757
4758    Shutup compiler warning about unused variable...
4759
4760commit d79621b25ba6784135b1a3aa51e9561fcf72fe7f
4761Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
4762Date:   Sun Nov 23 17:23:17 2008 -0800
4763
4764    Apple: Apple launchd cleanup
4765    Added --with-launchd option instead of just using __APPLE__
4766    Fixed opening launchd fd when displayname=NULL
4767
4768commit 9b79ae49f709707e99b8487b01f9d3f102754bd3
4769Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
4770Date:   Sat Nov 8 14:41:23 2008 -0800
4771
4772    Apple: Enable support for launchd DISPLAY socket
4773
4774commit 43b612a5e99ccdfb787a11b2b7c3179fc242edf3
4775Author: Peter Harris <peter.harris@hummingbird.com>
4776Date:   Wed Nov 12 14:45:04 2008 -0500
4777
4778    Treat XIDs the same as other cardinal values.
4779    
4780    This fixes a bug where c_client.py wasn't generating *_end functions,
4781    but expected them to exist in order to find the subsequent list's start.
4782    
4783    Signed-off-by: Peter Harris <peter.harris@hummingbird.com>
4784
4785commit 902cade8ec9e7eb5d29f6f6d61cac0470c300aec
4786Author: Julien Danjou <julien@danjou.info>
4787Date:   Tue Nov 4 10:19:14 2008 +0100
4788
4789    Release libxcb 1.1.92
4790    
4791    Signed-off-by: Julien Danjou <julien@danjou.info>
4792
4793commit fa452cc9b2bb69fa0603dfd97e00e540b6b52840
4794Author: Josh Triplett <josh@freedesktop.org>
4795Date:   Sun Mar 16 23:16:31 2008 -0700
4796
4797    Support handing off socket write permission to external code.
4798    
4799    Libraries like Xlib, some XCB language bindings, and potentially others
4800    have a common problem: they want to share the X connection with XCB. This
4801    requires coordination of request sequence numbers.  Previously, XCB had an
4802    Xlib-specific lock, and allowed Xlib to block XCB from making requests.
4803    Now we've replaced that lock with a handoff mechanism, xcb_take_socket,
4804    allowing external code to ask XCB for permission to take over the write
4805    side of the socket and send raw data with xcb_writev.  The caller of
4806    xcb_take_socket must supply a callback which XCB can call when it wants
4807    the write side of the socket back to make a request.  This callback
4808    synchronizes with the external socket owner, flushes any output queues if
4809    appropriate, and then returns the sequence number of the last request sent
4810    over the socket.
4811    
4812    Commit by Josh Triplett and Jamey Sharp.
4813    Handoff mechanism inspired by Keith Packard.
4814
4815commit baff35a04b0e8d21821850a405a550d86a8aeb6f
4816Author: Jamey Sharp <jamey@minilop.net>
4817Date:   Wed May 21 14:44:16 2008 -0700
4818
4819    Track 64-bit sequence numbers internally.
4820    
4821    External APIs that used 32-bit sequence numbers continue to do so.
4822    
4823    Commit by Josh Triplett and Jamey Sharp.
4824
4825commit 96e55444b9b9500420f9132a1ace720100a26398
4826Author: Jamey Sharp <jamey@minilop.net>
4827Date:   Fri Mar 14 20:18:52 2008 -0700
4828
4829    Use sequence number ranges in pending replies
4830    
4831    This allows optimizing adjacent pending replies with the same flags, and
4832    will help support default flags for a range of future requests.
4833    
4834    Commit by Josh Triplett and Jamey Sharp.
4835
4836commit 059ca642c76639fee958dc6054070de85e257e98
4837Author: Jamey Sharp <jamey@minilop.net>
4838Date:   Fri Mar 14 12:08:58 2008 -0700
4839
4840    Inline _xcb_lock_io, _xcb_unlock_io, and _xcb_wait_io.
4841    
4842    These functions are once again a single pthread call, so just make that
4843    call directly.
4844
4845commit d989656cde2ee7a4a66b2065209ef389495f3452
4846Author: Jamey Sharp <jamey@minilop.net>
4847Date:   Fri Mar 14 12:08:32 2008 -0700
4848
4849    Remove libxcb-xlib and xcbxlib.h.
4850
4851commit dcbef23d730b95ef7dc9ef524a4c3fc0017b63d2
4852Author: Julien Danjou <julien@danjou.info>
4853Date:   Tue Oct 14 23:39:07 2008 +0200
4854
4855    build: fix configure.ac AC_DEFINE
4856    
4857    Rather use AC_DEFINE_UNQUOTED and only once.
4858    
4859    Signed-off-by: Julien Danjou <julien@danjou.info>
4860
4861commit cebd482a20fcc2b2dae0683c38e917a3740638a6
4862Author: Julien Danjou <julien@danjou.info>
4863Date:   Fri Sep 26 15:26:42 2008 +0200
4864
4865    allow compile-time setting for XCB queue buffer size
4866    
4867    Signed-off-by: Julien Danjou <julien@danjou.info>
4868
4869commit 625ed596cae6dd8175aeb6cb6f26784928042f22
4870Author: Josh Triplett <josh@freedesktop.org>
4871Date:   Wed Oct 8 16:04:25 2008 -0700
4872
4873    Remove duplicate XCB_EXTENSION calls for Composite extension
4874
4875commit db332dcda989b5b021dc220c102666f695c772cf
4876Author: Henning Sten <henning.sten@yahoo.com>
4877Date:   Sat Sep 20 13:08:58 2008 +0200
4878
4879    fix tiny memory leak in read_packet (leak only happens when malloc returns NULL so it's very rare)
4880    
4881    Signed-off-by: Julien Danjou <julien@danjou.info>
4882
4883commit 9afadd2aef8af89a4f4ab70baeae0b848904c367
4884Author: Carsten Meier <cm@trexity.de>
4885Date:   Tue Sep 9 12:11:37 2008 +0200
4886
4887    Added generation of extern "C" for compatibility with C++
4888    
4889    The auto-generated header files now include an extern "C"
4890    declaration for compatibility with C++.
4891    
4892    Signed-off-by: Julien Danjou <julien@danjou.info>
4893
4894commit 25e59ccc0dc8baf344145d6d739229e8120330db
4895Author: Julien Cristau <jcristau@debian.org>
4896Date:   Tue Sep 9 04:42:36 2008 +0100
4897
4898    Add support for the abstract socket namespace under Linux
4899    
4900    Based on same in Xtrans.
4901    
4902    Signed-off-by: Julien Danjou <julien@danjou.info>
4903
4904commit f3f8738436d09f7e590b76e22a7a2cc4b16abd1d
4905Author: Julien Cristau <jcristau@debian.org>
4906Date:   Tue Sep 9 04:42:35 2008 +0100
4907
4908    Fix some fd leaks in _xcb_open_*()
4909    
4910    Signed-off-by: Julien Danjou <julien@danjou.info>
4911
4912commit d6d44e1bf09cca8aefbf4ce9875d7f794bf19fb1
4913Author: Bart Massey <bart@cs.pdx.edu>
4914Date:   Wed Sep 3 13:52:58 2008 -0700
4915
4916    fixed overly aggressive warning about fixed field following variable
4917
4918commit 7e0674e76186ee4491a089350511fc0d22fb3af3
4919Author: Bart Massey <bart@cs.pdx.edu>
4920Date:   Sun Aug 31 00:42:23 2008 -0700
4921
4922    added small fix to support trailing fixed fields; also warning for non-pad fixed fields
4923
4924commit 2d04a1e6cedcdc832e2db3c65ababc3aff904ec4
4925Author: Vincent Torri <vtorri at univ-evry dot fr>
4926Date:   Sun Aug 31 10:33:31 2008 +0200
4927
4928    factorize m4 macros and add one to set X extensions
4929    
4930    Signed-off-by: Julien Danjou <julien@danjou.info>
4931
4932commit bcf662c1b433b296060c66ae1656fcb5c6e697ef
4933Author: Julien Danjou <julien@danjou.info>
4934Date:   Thu Aug 28 14:35:54 2008 +0200
4935
4936    Initialize all fields of addrinfo
4937    
4938    Signed-off-by: Julien Danjou <julien@danjou.info>
4939
4940commit baf31b1bf20b49ec00d0f64bb7cc9c788a28c088
4941Author: Julien Danjou <julien@danjou.info>
4942Date:   Thu Aug 28 13:51:38 2008 +0200
4943
4944    Use ifdef instead of if for defined value
4945    
4946    Signed-off-by: Julien Danjou <julien@danjou.info>
4947
4948commit 38d5de3a5573b2e89e97d04a809a3dd38a0fe8a7
4949Author: Julien Danjou <julien@danjou.info>
4950Date:   Wed Aug 27 13:56:28 2008 +0200
4951
4952    Set namelen unsigned
4953    
4954    Signed-off-by: Julien Danjou <julien@danjou.info>
4955
4956commit 9c9c09b376fe1ddcedd03c52cfc0b06867d998c9
4957Author: Julien Danjou <julien@danjou.info>
4958Date:   Wed Aug 27 13:56:26 2008 +0200
4959
4960    Rename index to idx to avoid shadowing
4961    
4962    Signed-off-by: Julien Danjou <julien@danjou.info>
4963
4964commit c5b2e53abf0b113d4cc4105127cf848ee450aa98
4965Author: Julien Danjou <julien@danjou.info>
4966Date:   Wed Aug 27 13:56:25 2008 +0200
4967
4968    Use a signed size in read_block()
4969    
4970    Signed-off-by: Julien Danjou <julien@danjou.info>
4971
4972commit 1bbdba52116f127bed3ce812a00240b4009bbf22
4973Author: Julien Danjou <julien@danjou.info>
4974Date:   Wed Aug 27 13:56:24 2008 +0200
4975
4976    Use unsigned to compare and rename sync
4977    
4978    - i must be unsigned to be compare in the loop
4979    - sync shadow global sync() function
4980    
4981    Signed-off-by: Julien Danjou <julien@danjou.info>
4982
4983commit 6438584285de72858f97be891e16a125d13471d8
4984Author: Julien Danjou <julien@danjou.info>
4985Date:   Wed Aug 27 13:56:23 2008 +0200
4986
4987    Fix htonl() arg & convert sizeof() to signed
4988    
4989    Signed-off-by: Julien Danjou <julien@danjou.info>
4990
4991commit 1ead02e88eb9f37757eeb1cc8c762fc48d6d08ee
4992Author: Julien Danjou <julien@danjou.info>
4993Date:   Wed Aug 27 13:56:22 2008 +0200
4994
4995    initialize global_id to 0
4996    
4997    Signed-off-by: Julien Danjou <julien@danjou.info>
4998
4999commit f209d0ef7ad57a395c01ca09ecf48117a648e39c
5000Author: Peter Hutterer <peter.hutterer@who-t.net>
5001Date:   Thu Jul 17 13:57:41 2008 +0930
5002
5003    Bump to 1.1.91.
5004
5005commit cdc347938702dddbacb5af5c24988e9152b5447c
5006Author: Julien Cristau <jcristau@debian.org>
5007Date:   Wed Jul 16 23:25:04 2008 +0930
5008
5009    Make EXTHEADERS, EXTSOURCES, EXTENSION_XML unconditional of configure flags.
5010    
5011    yay, make distcheck works now even when some extensions are disabled.
5012    
5013    Acked-by: Peter Hutterer <peter.hutterer@who-t.net>
5014
5015commit a9d15a08451c76a9250642c9f662f296196f60a0
5016Author: Petr Salinger <Petr.Salinger@seznam.cz>
5017Date:   Mon Jul 7 17:57:37 2008 +0200
5018
5019    fix FreeBSD support
5020    
5021    The GNU/kFreeBSD (and BSDs in general) have a different
5022    layout of struct sockaddr, sockaddr_in, sockaddr_un ...
5023    
5024    The first member do not have to be "sa_family",
5025    they also have "sa_len" field.
5026    
5027    Signed-off-by: Julien Danjou <julien@danjou.info>
5028
5029commit ee78071902e93ce22a3170f0937c158fd16894d8
5030Author: Peter Hutterer <peter@cs.unisa.edu.au>
5031Date:   Wed May 28 17:41:35 2008 +0930
5032
5033    Bump to 1.1.90.
5034
5035commit 424ad131b7d97d6196181c31677655e6d52b41df
5036Author: Josh Triplett <josh@freedesktop.org>
5037Date:   Wed May 28 12:26:13 2008 -0700
5038
5039    Fix variable declaration formatting
5040
5041commit 6532c715c3805128b9976ab208f1426f691056a2
5042Author: Peter Hutterer <peter@cs.unisa.edu.au>
5043Date:   Tue May 15 16:28:19 2007 +0930
5044
5045    Add xcb_ge_event_t and handling for long events.
5046    
5047    GenericEvent can be more than 32 bytes long. Ensure that the required data is
5048    pulled off the wire and tack it onto the event.
5049    
5050    Due to the structure of the xcb_generic_event_t, the data is appended AFTER
5051    the full_sequence field.
5052
5053commit b08a5909daf589d5e06c17c55d044f39c1d3479a
5054Author: Oswald Buddenhagen <ossi@kde.org>
5055Date:   Thu May 1 16:17:55 2008 -0400
5056
5057    Fix libxcb/src compile with srcdir != builddir.
5058
5059commit 4a405feba8cde8490d847a57b7e833176e18b90f
5060Author: Eamon Walsh <ewalsh@tycho.nsa.gov>
5061Date:   Wed Apr 23 20:26:28 2008 -0400
5062
5063    Replace a stray c-client.xsl in the libxcb SOURCES.  Fixes make distcheck.
5064
5065commit 40566c36d543edc2118cbb358e0303d9e8862892
5066Author: Eamon Walsh <ewalsh@tycho.nsa.gov>
5067Date:   Wed Apr 23 20:25:57 2008 -0400
5068
5069    Use the python install path from xcb-xproto.pc to locate the xcbgen package.
5070
5071commit b3832bcc46d85110fdb2b553df6249a831cfe0fa
5072Author: Jeremy Kolb <jkolb@glorfindel.hsd1.ma.comcast.net>
5073Date:   Sun Apr 20 16:26:51 2008 -0400
5074
5075    Add mention of PYTHONPATH if xcbgen cannot be found.
5076
5077commit 5ee915e12a102e86e141981bbce60ed81037dfdc
5078Author: Eamon Walsh <ewalsh@tycho.nsa.gov>
5079Date:   Fri Apr 18 16:30:08 2008 -0400
5080
5081    Add Python parser C language-dependent part.
5082
5083commit 947a2e26e4217531e612a5110e6f95296c94614f
5084Author: Eamon Walsh <ewalsh@tycho.nsa.gov>
5085Date:   Thu Jan 24 16:02:34 2008 -0500
5086
5087    Add SELinux extension support, disabled by default.
5088
5089commit 0b5f684eb0f8a8ad1887514568532037bb46020c
5090Author: Eamon Walsh <ewalsh@tycho.nsa.gov>
5091Date:   Thu Jan 24 15:57:35 2008 -0500
5092
5093    Add XInput extension support, disabled by default.
5094
5095commit c72581c844efbaaa7e632377b57678f6668327fe
5096Author: Eamon Walsh <ewalsh@tycho.nsa.gov>
5097Date:   Tue Jan 15 17:06:14 2008 -0500
5098
5099    Inputs to AC_CONFIG_FILES are automatically distributed.
5100    Hence, it is not necessary to explicitly add them to EXTRA_DIST.
5101
5102commit 7a74ba3d0212f9bfe021d6da9070f71cbc53f85b
5103Author: Eamon Walsh <ewalsh@tycho.nsa.gov>
5104Date:   Fri Dec 7 16:22:04 2007 -0500
5105
5106    Generated the configure.ac and Makefile.am's in libxcb with the idea of
5107    making each extension library individually selectable for build.
5108    
5109    Signed-off-by: Eamon Walsh <ewalsh@tycho.nsa.gov>
5110
5111commit bcd1dcec9b242d7e2185c1ae83d3884844a2647f
5112Merge: baae582 9bf8329
5113Author: Eamon Walsh <ewalsh@tycho.nsa.gov>
5114Date:   Fri Dec 7 16:18:00 2007 -0500
5115
5116    Merge branch 'master' of git+ssh://git.freedesktop.org/git/xcb/libxcb
5117
5118commit 9bf8329b50a8edacf00efb074f73c3bb759f7c8d
5119Author: Bart Massey <bart@cs.pdx.edu>
5120Date:   Sat Nov 24 14:53:54 2007 -0800
5121
5122    make IPv6 optional
5123
5124commit 0593989103c48cc10165066d985c9f2d3355926b
5125Author: Eamon Walsh <ewalsh@tycho.nsa.gov>
5126Date:   Fri Nov 16 19:38:40 2007 -0500
5127
5128    Remove file that wasn't meant to be committed.
5129
5130commit baae5826a6f51490e842be931c8b9f76086c4d98
5131Merge: c3136d1 46413cd
5132Author: Eamon Walsh <ewalsh@tycho.nsa.gov>
5133Date:   Fri Nov 16 19:36:08 2007 -0500
5134
5135    Merge branch 'master' of git+ssh://git.freedesktop.org/git/xcb/libxcb
5136
5137commit 46413cd85ee4f3d51a3a3e1d8ee13bc5fa6c2d5d
5138Author: Eamon Walsh <ewalsh@tycho.nsa.gov>
5139Date:   Fri Nov 16 19:34:42 2007 -0500
5140
5141    Add comment noting the requirement to free replies when finished.
5142
5143commit c3136d18321df31caa7f582d475132c2e02155de
5144Author: Eamon Walsh <ewalsh@tycho.nsa.gov>
5145Date:   Fri Nov 16 19:33:20 2007 -0500
5146
5147    Add generated comment noting requirement to free replies after use.
5148
5149commit 3c6c8f127c2bce4f45bface7dd45cc719af9de0d
5150Author: Jamey Sharp <jamey@minilop.net>
5151Date:   Sun Nov 4 17:29:13 2007 -0800
5152
5153    Release libxcb 1.1
5154
5155commit af50de26c10c93ccc4cd3bc61e92aff47651b961
5156Author: Jamey Sharp <jamey@minilop.net>
5157Date:   Sun Nov 4 17:26:21 2007 -0800
5158
5159    Revert "Generate error constants as XCB_BAD_*, similar to Xlib."
5160    
5161    Since several extensions named their errors like "BadFoo", this patch
5162    results in names like XCB_EXT_BAD_BAD_FOO, which is really awful. Those
5163    extensions are already kind of awful, as they produce structure names
5164    like xcb_ext_bad_foo_error_t, which is redundant.
5165    
5166    A patch that removes "Bad" from the XML extension descriptions, while
5167    maintaining API and ABI compatibility in XCB, is needed before this
5168    patch can be released.
5169    
5170    This reverts commit 158c9b6ba18b39f424bd524fceb66f3fec0d1616.
5171
5172commit a29fbc2645fabb96d02c382ffef499b48fb1514a
5173Author: Jamey Sharp <jamey@minilop.net>
5174Date:   Sun Oct 28 13:28:18 2007 -0700
5175
5176    Don't hold the xlib-xcb lock while sleeping: that allows deadlock.
5177    
5178    With this patch, `ico -threads 2` runs without deadlock.
5179    
5180    Many thanks to Christoph Pfister <christophpfister@gmail.com> for
5181    pointing out the problem, providing detailed analyses, explaining it to
5182    me repeatedly until I understood what was going on, and proposing and
5183    reviewing possible solutions.
5184    
5185    Signed-off-by: Jamey Sharp <jamey@minilop.net>
5186    Acked-by: Christoph Pfister <christophpfister@gmail.com>
5187
5188commit f6b75d6090dc40918196d2b902e9616d0199af42
5189Author: Jamey Sharp <jamey@minilop.net>
5190Date:   Sun Oct 28 11:56:08 2007 -0700
5191
5192    Factor pthread_cond_wait(iolock) to _xcb_wait_io.
5193    
5194    This parallels the _xcb_lock_io and _xcb_unlock_io factoring.
5195
5196commit 4d828c5eba9fc7161c5f18650f2dbe218e1db06f
5197Author: Jamey Sharp <jamey@minilop.net>
5198Date:   Tue Oct 23 11:03:33 2007 -0700
5199
5200    Don't abort() on locking assertions if LIBXCB_ALLOW_SLOPPY_LOCK is set.
5201    
5202    But do still print a full backtrace, on platforms where that's
5203    supported.
5204    
5205    This commit follows the spirit of Novell's libxcb-sloppy-lock.diff.
5206    
5207    I strongly opposed proposals like this one for a long time. Originally I
5208    had a very good reason: libX11, when compiled to use XCB, would crash
5209    soon after a locking correctness violation, so it was better to have an
5210    informative assert failure than a mystifying crash soon after.
5211    
5212    It took some time for me to realize that I'd changed the libX11
5213    implementation (for unrelated reasons) so that it could survive most
5214    invalid locking situations, as long as it wasn't actually being used
5215    from multiple threads concurrently.
5216    
5217    The other thing that has changed is that most of the code with incorrect
5218    locking has now been fixed. The value of the assert is accordingly
5219    lower.
5220    
5221    However, remaining broken callers do need to be fixed. That's why libXCB
5222    will still noisily print a stacktrace (if possible) on each assertion
5223    failure, even when assert isn't actually invoked to abort() the program;
5224    and that's why aborting is still default. This environment variable is
5225    provided only for use as a temporary workaround for broken applications.
5226    
5227    Signed-off-by: Jamey Sharp <jamey@minilop.net>
5228    Acked-by: Josh Triplett <josh@freedesktop.org>
5229
5230commit 09045eaac34973662aaa820a94ca8ed66d9dcb4e
5231Author: Egbert Eich <eich@freedesktop.org>
5232Date:   Thu Jul 19 17:00:18 2007 +0200
5233
5234    Allow unix:<screen> style display names again.
5235    
5236    https://bugzilla.novell.com/show_bug.cgi?id=289007
5237    This notion is used in a lot of scripts.
5238
5239commit 65ffbc6cfdb97b14689d3baef183cd50fbd31a7f
5240Author: Josh Triplett <josh@freedesktop.org>
5241Date:   Wed Jun 13 23:46:37 2007 -0700
5242
5243    Send locking assertion backtraces to stderr.  Improve the heading on the backtrace.
5244
5245commit 605c778e695a4535c35c5324325f310b5faf80e2
5246Author: Christoph Pfister <christophpfister@gmail.com>
5247Date:   Wed Jun 6 17:17:49 2007 +0200
5248
5249    Print backtraces in case an assert fails inside xlib/xcb.
5250    
5251    As you know there are some nasty libs / apps doing locking
5252    incorrectly. In order to improve the information given to the user
5253    when he encounters such a situation (people don't run apps in gdb
5254    normally) I created the patch attached.
5255    It's very non-intrusive (and affects only xlib/xcb, Josh told me on
5256    irc that it could be useful for other areas too, personally I don't
5257    think that it's really needed at other places ...).
5258    
5259    Some same outputs and the discussion of them:
5260    
5261        lxuser@pdln:/tmp$ ./main
5262        Got a backtrace:
5263        #0 /tmp/usr/lib/libxcb-xlib.so.0 [0xb7f9d728]
5264        #1 /tmp/usr/lib/libxcb-xlib.so.0(xcb_xlib_unlock+0x31) [0xb7f9d861]
5265        #2 ./test.so(function_a+0x11) [0xb7f9f3fd]
5266        #3 ./test.so(function_b+0x11) [0xb7f9f410]
5267        #4 ./main [0x80484a7]
5268        #5 /lib/libc.so.6(__libc_start_main+0xdc) [0xb7e60ebc]
5269        #6 ./main [0x80483f1]
5270        main: xcb_xlib.c:82: xcb_xlib_unlock: Assertion `c->xlib.lock' failed.
5271        Aborted
5272    
5273    That's kinda the normal situation.
5274    
5275        lxuser@pdln:/tmp$ ./main
5276        Got a backtrace:
5277        #0 /tmp/usr/lib/libxcb-xlib.so.0 [0xb7f90728]
5278        #1 /tmp/usr/lib/libxcb-xlib.so.0(xcb_xlib_unlock+0x31) [0xb7f90861]
5279        #2 /tmp/test.so [0xb7f923cd]
5280        #3 /tmp/test.so(function_b+0x11) [0xb7f923e0]
5281        #4 ./main [0x80484ab]
5282        #5 /lib/libc.so.6(__libc_start_main+0xdc) [0xb7e53ebc]
5283        #6 ./main [0x80483f1]
5284        main: xcb_xlib.c:82: xcb_xlib_unlock: Assertion `c->xlib.lock' failed.
5285        Aborted
5286    
5287    There are two possible reasons that the name doesn't appear in #2:
5288    a) a hidden symbol or a symbol with statical linkage in a library
5289    b) a symbol in an app not compiled with -rdynamic.
5290    But in both cases you still know _where_ the caller is.
5291    
5292    Note that in this example test.so was compiled with
5293    -fomit-frame-pointer; this isn't an issue as _one_ (= the caller)
5294    stack trace is still valid (as long as you don't have the insane idea
5295    to compile xcb with -fo-f-p).
5296    
5297    Another issue that may appear is "tail call elimination" (some entries
5298    are mysteriously missing; this is quite ugly, but you still get enough
5299    information so that you can do something useful with the issue e.g. by
5300    disassembling the relevant parts with gdb).
5301    
5302    Signed-off-by: Jamey Sharp <jamey@minilop.net>
5303
5304commit e20a31d72b8838cdf31b568431b5ad78492c1481
5305Author: Jamey Sharp <jamey@minilop.net>
5306Date:   Sat Jun 2 18:29:37 2007 -0700
5307
5308    xcb_poll_for_event: Return already-read events before read(2)ing again.
5309
5310commit 2ec1383a68bf9f4baf7125a7d6544167f38d8d62
5311Merge: 3abd416 158c9b6
5312Author: Matthias Hopf <mhopf@suse.de>
5313Date:   Wed Apr 18 12:46:08 2007 +0200
5314
5315    Merge branch 'master' of git://anongit.freedesktop.org/git/xcb/libxcb
5316
5317commit 158c9b6ba18b39f424bd524fceb66f3fec0d1616
5318Author: Ian Osgood <iano@quirkster.com>
5319Date:   Fri Apr 13 15:14:12 2007 -0700
5320
5321    Generate error constants as XCB_BAD_*, similar to Xlib.
5322    
5323    The previous constants remain for compatibility, but should be deprecated.
5324
5325commit f7279d8c8ae33d6e3029e85b14ed8495d3b00e30
5326Merge: 0925e47 eaa380e
5327Author: TORRI Vincent <torri@alf94-3-82-66-248-160.fbx.proxad.net>
5328Date:   Thu Apr 12 15:48:44 2007 +0200
5329
5330    Merge branch 'master' of git+ssh://git.freedesktop.org/git/xcb/libxcb
5331
5332commit 0925e470b2abf8837c62e81428660a01bbb990fa
5333Author: TORRI Vincent <torri@alf94-3-82-66-248-160.fbx.proxad.net>
5334Date:   Thu Apr 12 15:46:05 2007 +0200
5335
5336    remove the 7th bit of the response_type for the event loops
5337
5338commit 3abd41625c7d6db6d01f3167d6bac2b7481965cf
5339Author: Matthias Hopf <mhopf@suse.de>
5340Date:   Wed Apr 11 17:31:31 2007 +0200
5341
5342    Update autogen.sh to one that does objdir != srcdir
5343
5344commit eaa380efefd347abcd11a6c24c008686beaf8257
5345Author: Eamon Walsh <ewalsh@tycho.nsa.gov>
5346Date:   Tue Apr 10 11:56:06 2007 -0400
5347
5348    Modify new attribute from previous patch so that it is necessary only on
5349    extensions with split names.  Tested with diff and found no difference with
5350    previous stylesheet header-file output.
5351
5352commit 91be36f845352dea7838853d0f98ae144fe571a4
5353Author: Eamon Walsh <ewalsh@tycho.nsa.gov>
5354Date:   Thu Mar 29 12:28:07 2007 -0700
5355
5356    Replaces special-casing in c-client stylesheet with support
5357    for new attribute.  Tested with diff and found no difference with
5358    previous stylesheet header-file output.
5359
5360commit 4a60950b7433eb41e08cb0c74dc8ced8f92fd78a
5361Author: TORRI Vincent <torri@alf94-3-82-66-248-160.fbx.proxad.net>
5362Date:   Tue Feb 27 13:35:02 2007 +0100
5363
5364    add the first step toward the documentation of the request/reply functions. The arguments of the requests are not found yet. Josh, can you look at it ?
5365
5366commit bca41cdcdb11e2a610d7b7a3d077cbb77bc81e45
5367Author: TORRI Vincent <torri@alf94-3-82-66-248-160.fbx.proxad.net>
5368Date:   Wed Feb 7 20:08:27 2007 +0100
5369
5370    and make the html code valid...
5371
5372commit acefe83bea9b2b17a956d68f5be504866d34196f
5373Author: TORRI Vincent <torri@alf94-3-82-66-248-160.fbx.proxad.net>
5374Date:   Wed Feb 7 20:04:10 2007 +0100
5375
5376    font part
5377
5378commit 8a8c1fa184939ef23f96421990c171b49d16ee33
5379Author: TORRI Vincent <torri@alf94-3-82-66-248-160.fbx.proxad.net>
5380Date:   Wed Feb 7 18:57:46 2007 +0100
5381
5382    no more xid or id fields
5383
5384commit 6cedaece0e294d39fe090b87e2f60569b40a4554
5385Author: TORRI Vincent <torri@alf94-3-82-66-248-160.fbx.proxad.net>
5386Date:   Tue Feb 6 09:31:54 2007 +0100
5387
5388    add the complete cursor example. Make the html code valid
5389
5390commit ab22a4d61665bbe637b8c1f349fcfaf04e386e88
5391Author: TORRI Vincent <torri@alf94-3-82-66-248-160.fbx.proxad.net>
5392Date:   Mon Jan 22 11:40:15 2007 +0100
5393
5394    add doxygen doc for the *_end functions
5395
5396commit 342e9cefcc7d942714488f6b424fee7a5bdc741f
5397Author: TORRI Vincent <torri@alf94-3-82-66-248-160.fbx.proxad.net>
5398Date:   Sat Jan 13 11:20:55 2007 +0100
5399
5400    fix all the occurence where a drawable where considered as a union
5401
5402commit 70a72f65e438888a5530e9911c36aad68833790f
5403Author: Josh Triplett <josh@freedesktop.org>
5404Date:   Sun Dec 10 21:10:06 2006 -0800
5405
5406    Add autogen.sh to EXTRA_DIST.
5407
5408commit 867ae5eb5c19091365daad621b923f56ff699415
5409Author: Josh Triplett <josh@freedesktop.org>
5410Date:   Sun Dec 10 21:09:30 2006 -0800
5411
5412    Add tools/* to EXTRA_DIST.
5413
5414commit 67af2d24e4c46580479570cf09586a54b84b1b63
5415Author: TORRI Vincent <torri@doursse.(none)>
5416Date:   Tue Nov 28 20:26:54 2006 +0100
5417
5418    add doc tag for the _next functions. It creates doxygen doc in the header files for these functions
5419
5420commit 4c8777f87a28ff5bf45cbdddce509163dbcf8137
5421Merge: e624cca f486075
5422Author: TORRI Vincent <torri@doursse.(none)>
5423Date:   Tue Nov 28 20:15:27 2006 +0100
5424
5425    Merge branch 'master' of git+ssh://git.freedesktop.org/git/xcb/libxcb
5426
5427commit e624cca7df4c2c5bc5e44af1e851e5a0d17c88bd
5428Author: TORRI Vincent <torri@doursse.(none)>
5429Date:   Tue Nov 28 20:14:16 2006 +0100
5430
5431    add some output informations to configure script
5432
5433commit f486075fa093846c3f32b3e4b9624c039ea26ba4
5434Author: Tilman Sauerbeck <tilman@code-monkey.de>
5435Date:   Fri Nov 24 15:48:08 2006 +0100
5436
5437    If enable_build_docs is "no", we don't even try to look for doxygen.
5438    
5439    Also set BUILD_DOCS in that branch. Now the disable-build-docs works
5440    as expected.
5441
5442commit 2e8e6debac39864450c0a69633086ad92459c25e
5443Author: Tilman Sauerbeck <tilman@code-monkey.de>
5444Date:   Fri Nov 24 15:43:39 2006 +0100
5445
5446    Fixed evaluation of the disable-build-docs argument.
5447    
5448    Now at least enable_build_docs is set correctly.
5449
5450commit 19dfaf93ac1b5e9d3ce09b1f8e2338e53a5d7324
5451Author: Ian Osgood <iano@quirkster.com>
5452Date:   Sun Nov 26 09:26:32 2006 -0800
5453
5454    Fix unit tests for FreeBSD
5455    
5456    putenv() string must contain '='
5457    environment failure test is invalid if argument is NULL
5458
5459commit 98e2a5617ef1c9955b3b5553224c34f55c7c5d29
5460Author: Josh Triplett <josh@freedesktop.org>
5461Date:   Sat Nov 25 22:27:33 2006 -0800
5462
5463    Use substitition variables in xcb-xinerama.pc.in, not instances of their values
5464    
5465    xcb-xinerama.pc.in looked more like a generated .pc file; replace specific
5466    instances of values provided by an invocation of configure with the general
5467    substitution variables configure replaces.
5468
5469commit e74cdcd02e6814222a76c0a237efca16c423bb26
5470Author: Ian Osgood <iano@quirkster.com>
5471Date:   Sat Nov 25 11:00:14 2006 -0800
5472
5473    Bug #9119: test xcb_popcount
5474
5475commit 05d23a724d4dde42b11d6e9dec9ccaf5a516e287
5476Author: Jamey Sharp <jamey@minilop.net>
5477Date:   Fri Nov 24 16:22:13 2006 -0800
5478
5479    libXau didn't have a correct pkg-config file until 0.99.2: fail if an older version is found.
5480
5481commit 3360d0c79e98cf6b7f30b2d84f117aea0a28595d
5482Author: Jamey Sharp <jamey@minilop.net>
5483Date:   Fri Nov 24 13:24:05 2006 -0800
5484
5485    NetBSD doesn't have AI_ADDRCONFIG: use it only if it's available.
5486
5487commit 818811a7ac660e46d0dca1cbf9e53ad0475af330
5488Author: TORRI Vincent <torri@alf94-3-82-66-248-160.fbx.proxad.net>
5489Date:   Fri Nov 24 12:33:15 2006 +0100
5490
5491    replace all the _new functions with xcb_generate_id. repalce X11/XCB with xcb. Fix a description of the default background of a window
5492
5493commit 27f98afc2f7039f8546d6cab5a72f609c72299d6
5494Author: Josh Triplett <josh@freedesktop.org>
5495Date:   Thu Nov 23 07:30:51 2006 -0800
5496
5497    Release libxcb 1.0
5498
5499commit 11738b2af0d8bfcf5b2f7c0d3e6ade1a14866b94
5500Author: Diego 'Flameeyes' Pettenò <flameeyes@gentoo.org>
5501Date:   Thu Nov 23 15:15:30 2006 +0100
5502
5503    Avoid race condition when using multiple make jobs
5504    
5505    Avoid race condition when symlinking XML files.
5506    When declaring a rule with many files as target, the rule is called
5507    when any of them is requested, resulting in multiple for loops happening
5508    during a make process using more than one job.
5509    Also, use '$(LN_S) -f' rather than removing and recreating a file,
5510    that one should be as supported as 'rm -f' and requires one less command.
5511
5512commit 30c768b322f613d697a61997e081a19aecd0b07f
5513Author: Josh Triplett <josh@freedesktop.org>
5514Date:   Thu Nov 23 02:11:02 2006 -0800
5515
5516    Rewrite automake's data installation rules, because they suck.
5517    
5518    Specifically, they didn't handle installing data from both srcdir and builddir.
5519    We have the tutorial in the srcdir, and build the manual in the builddir.
5520    
5521    Also, stop rebuilding the manual for each make target in the doc directory, and
5522    every time any of those targets get called.  This change now makes the manual
5523    never rebuild once built; we plan to fix that later, by rewriting the makefiles
5524    to avoid recursive make, and then making the manual depend on the source files.
5525    
5526    Commit by Jamey Sharp and Josh Triplett.
5527
5528commit af3a15838fc7dc5b4e52197854deb54da6baeaf1
5529Author: Josh Triplett <josh@freedesktop.org>
5530Date:   Thu Nov 23 00:08:30 2006 -0800
5531
5532    Rework doxygen build and install to work with srcdir != builddir
5533    
5534    The documentation generation with doxygen now works when built out of tree,
5535    with srcdir != builddir.  xcb.doxygen now gets generated from xcb.doxygen.in,
5536    so that it can use top_builddir and top_srcdir to find source and to output
5537    documentation.  Also fill in PROJECT_NUMBER from @VERSION@, now that we have
5538    it readily available via autoconf.
5539
5540commit 608058ec80edb041ca012d530b42d97474f80320
5541Author: Josh Triplett <josh@freedesktop.org>
5542Date:   Wed Nov 22 22:47:15 2006 -0800
5543
5544    Remove --with-opt and --with-debug options from configure.ac; use CFLAGS instead
5545    
5546    configure supports using custom CFLAGS, so remove the --with-opt and
5547    --with-debug options from configure.ac, and the corresponding usage of
5548    COPTFLAGS and CDEBUGFLAGS in src/Makefile.am.
5549
5550commit 1aade6a15f767c49db5c1b69b97a5b1bf8cdce57
5551Author: Josh Triplett <josh@freedesktop.org>
5552Date:   Wed Nov 22 21:49:52 2006 -0800
5553
5554    Check for getaddrinfo rather than gethostbyname in configure.ac
5555    
5556    Since the addition of IPv6 support, we now use getaddrinfo rather than
5557    gethostbyname; update configure.ac accordingly.
5558
5559commit 183c2ba4cca71f4b12f106f801f0bd30c4c527f1
5560Author: Jamey Sharp <jamey@minilop.net>
5561Date:   Wed Nov 22 21:27:41 2006 -0800
5562
5563    xcb-proto has no libraries or headers, so don't use XCBPROTO_CFLAGS or XCBPROTO_LIBS.
5564
5565commit e54dfd73a9652bbc103f3f874abc303aed4b5d76
5566Author: Jamey Sharp <jamey@minilop.net>
5567Date:   Wed Nov 22 20:29:04 2006 -0800
5568
5569    Use pthread-stubs as needed, and list xdmcp in Requires.private when XCB is built to use it.
5570
5571commit 3de6ab7b786775d9e7df1523c27cdfe3ffd3a25f
5572Author: Josh Triplett <josh@freedesktop.org>
5573Date:   Tue Nov 21 20:29:34 2006 -0800
5574
5575    Replace uses of "long" with uint32_t, and similar; fixes 64-bit bugs
5576
5577commit 7fbfebaa3fb3a5ca2d2a307a0a5c40c015e18115
5578Author: Ian Osgood <iano@quirkster.com>
5579Date:   Tue Nov 21 09:04:37 2006 -0800
5580
5581    Fix IP6 work for FreeBSD/Mac.
5582
5583commit 684b8271a4539527daa15da82ad0cc302fb44727
5584Author: Josh Triplett <josh@freedesktop.org>
5585Date:   Tue Nov 21 00:57:49 2006 -0800
5586
5587    Support XDM-AUTHORIZATION-1 on IPv6
5588    
5589    Commit by Jamey Sharp and Josh Triplett.
5590
5591commit d6abe93b06c421b78e92d76ceb5ca181e3adff31
5592Author: Josh Triplett <josh@freedesktop.org>
5593Date:   Mon Nov 20 23:25:41 2006 -0800
5594
5595    Refactor auth code to get display number from xcb_connect
5596    
5597    Change xcb_connect to pass the display number to _xcb_get_auth_info, which
5598    passes it to get_authptr.  This allows get_authptr to stop hacking the display
5599    number out of the sockaddrs of various address families, such as
5600    port - X_TCP_PORT, or the number after the last X in the UNIX socket path. This
5601    also removes a portability bug introduced during the IPv6 changes: relying on
5602    '\0'-termination of the UNIX socket path in a sockaddr_un.
5603    
5604    Commit by Jamey Sharp and Josh Triplett.
5605
5606commit 4a928de402a6e69886921fe428bbffb909c6405e
5607Author: Josh Triplett <josh@freedesktop.org>
5608Date:   Mon Nov 20 22:26:40 2006 -0800
5609
5610    Only use AI_NUMERICSERV if defined.
5611
5612commit 907f8c8c4906cbd2352f3bbddfe144ad81a2cfa8
5613Author: Josh Triplett <josh@freedesktop.org>
5614Date:   Mon Nov 20 22:16:24 2006 -0800
5615
5616    Support authentication for IPv6 connections
5617    
5618    Support AF_INET6 in get_authptr, and refactor to use common code for IPv4 and
5619    v4-mapped IPv6 addresses.
5620    
5621    Commit by Jamey Sharp and Josh Triplett.
5622
5623commit 48776ce233bf77fbaddbe972d2356bca69094239
5624Author: Josh Triplett <josh@freedesktop.org>
5625Date:   Mon Nov 20 17:53:30 2006 -0800
5626
5627    Support displays with IPv6 addresses or hosts which resolve to IPv6 addresses
5628    
5629    xcb_parse_display already correctly handled IPv6 displays.  Now, _xcb_open_tcp
5630    uses getaddrinfo, and correctly connects to IPv6 displays.  Displays can use
5631    bare IPv6 addresses, square-bracketed IPv6 addresses, or hostnames which
5632    resolve to IPv6 addresses.
5633    
5634    Since IPv6 addresses may include colons, including at the end, revise the
5635    DECnet display parsing code to avoid triggering on IPv6 addresses.
5636    
5637    Authorization may not work with IPv6 connections yet.
5638    
5639    This commit brought to you by the (display) number ::1:1.1, the letter X,
5640    the Gobby collaborative editor, Josh Triplett, and Jamey Sharp.
5641
5642commit 6c3a8db3f69aebf2b5c1330ec6c11b3138f9bdfe
5643Author: Josh Triplett <josh@freedesktop.org>
5644Date:   Mon Nov 20 17:48:49 2006 -0800
5645
5646    Add new xcb_parse_display test cases, most related to IPv6 addresses
5647
5648commit 3d9bb02012b35fd51ed3352d0bd974a0f6e439d8
5649Author: Jamey Sharp <jamey@minilop.net>
5650Date:   Sun Nov 19 21:48:27 2006 -0800
5651
5652    Bug #5958: Also zero out the implicit pad byte in empty requests.
5653
5654commit 3fa50020d2d9b78e22cf3597f4688c4e22df5121
5655Author: Jamey Sharp <jamey@minilop.net>
5656Date:   Sun Nov 19 18:31:48 2006 -0800
5657
5658    Remove support for the <localfield> tag: nothing needs it.
5659    
5660    Only one use of <localfield> remained, for a list length expression in
5661    xv.xml. List length parameters that don't actually appear in the
5662    protocol should be left implicit: if no length expression is given, then
5663    a localfield will be automatically created by c-client.xsl.
5664
5665commit 16e7328b4a366b29d54696aafffe62c92e0e0130
5666Author: Jamey Sharp <jamey@minilop.net>
5667Date:   Sun Nov 19 17:56:32 2006 -0800
5668
5669    Bug #5958: zero out padding bytes in requests.
5670
5671commit 6eee1707ea7bc303620e39911706d5fb71fa16b0
5672Author: Jamey Sharp <jamey@minilop.net>
5673Date:   Sun Nov 19 00:30:37 2006 -0800
5674
5675    htmldir was introduced in autoconf 2.59c: set a reasonable value for earlier versions.
5676
5677commit da4d56ef5a880eb24014a141e6e16668ab51f180
5678Author: Jamey Sharp <jamey@minilop.net>
5679Date:   Sun Nov 12 15:30:10 2006 -0800
5680
5681    Provide xcb_prefetch_maximum_request_length counterpart to xcb_get_maximum_request_length.
5682
5683commit aedfa1fe1d91a10ccfe3ee6ac6b7a25885623dc6
5684Author: Jamey Sharp <jamey@minilop.net>
5685Date:   Sat Nov 18 21:30:12 2006 -0800
5686
5687    Fix Doxygen warnings.
5688    
5689    Specifically, fixes these two warnings which were emitted for every
5690    generated source file:
5691    
5692    * Warning: end of file while inside a group
5693    * Warning: group XCB_BigRequests_API already documented. Skipping documentation.
5694
5695commit 44a2160c95f6c90d461d66c0278348c62d2d77fa
5696Author: Jamey Sharp <jamey@minilop.net>
5697Date:   Sat Nov 18 19:36:48 2006 -0800
5698
5699    Make doc installation work and simplify doc/Makefile.am.
5700    
5701    Don't override the default htmldir with an unquoted copy.
5702    
5703    Don't suppress `make` echoing on Doxygen commands.
5704    
5705    Ensure the tutorial is always installed even if Doxygen isn't
5706    available.
5707    
5708    Take better advantage of the automake installation infrastructure.
5709
5710commit 142fe9a6f2b13d42b0e4baaa25155067f45d065b
5711Author: Jamey Sharp <jamey@minilop.net>
5712Date:   Sat Nov 18 16:51:01 2006 -0800
5713
5714    Turn off Doxygen warnings for undocumented API, for now.
5715    
5716    But warn about absent parameter documentation for functions that are
5717    otherwise documented.
5718
5719commit 3634299ecc5223e8505d19468cf04770ac08ec14
5720Author: Jamey Sharp <jamey@minilop.net>
5721Date:   Thu Nov 16 17:02:17 2006 -0800
5722
5723    Switch from the old AM_PATH_CHECK macro to pkg-config.
5724    
5725    check 0.9.4 is now required to build XCB's unit tests.
5726    
5727    The version that we were requiring was not actually new enough to let
5728    our unit tests compile, and the AM_PATH_CHECK macro is now considered
5729    deprecated. We know that versions of check using pkg-config are new
5730    enough to work, and the check dependency was optional anyway, so we've
5731    dropped support for older versions.
5732
5733commit 82762555a1af0b170d01e2042eefe34086e6c132
5734Author: TORRI Vincent <torri@alf94-3-82-66-248-160.fbx.proxad.net>
5735Date:   Sun Nov 5 18:24:30 2006 +0100
5736
5737    add Makefile.am for building/installing doxygen doc
5738
5739commit f32c7131cc89c64e09e9a88c5f859824c0dfa54f
5740Author: TORRI Vincent <torri@alf94-3-82-66-248-160.fbx.proxad.net>
5741Date:   Sun Nov 5 18:22:55 2006 +0100
5742
5743    add xcb.doxygen to EXTRA_DIST
5744
5745commit e3b7009dc0be6515d23fbda9c744082506df4cb0
5746Merge: 0262cd6 32cd2d2
5747Author: TORRI Vincent <torri@alf94-3-82-66-248-160.fbx.proxad.net>
5748Date:   Sun Nov 5 18:21:34 2006 +0100
5749
5750    Merge branch 'master' of git+ssh://git.freedesktop.org/git/xcb/libxcb
5751
5752commit 0262cd63a2c10e52daa3bd71cb21a6a37017f234
5753Author: TORRI Vincent <torri@alf94-3-82-66-248-160.fbx.proxad.net>
5754Date:   Sun Nov 5 18:20:45 2006 +0100
5755
5756    add AM_CHECK_DOXYGEN macro
5757
5758commit 32cd2d20477ab17704f0a2696c2b3bc2ff8f42de
5759Author: Jamey Sharp <jamey@minilop.net>
5760Date:   Thu Nov 2 18:04:16 2006 -0800
5761
5762    Release libxcb 1.0 RC3 (0.9.93).
5763
5764commit 9d155160546798052533c277c877879e83f85979
5765Author: Jeremy Kolb jkolb@brandeis.edu <jkolb@glorfindel.(none)>
5766Date:   Sun Oct 29 19:31:09 2006 -0500
5767
5768    Added initial doxygen generation stuff.  This should probably be cleaned up later.
5769    
5770    Added support for major/minor-version attributes in the xcb tag.  This is just to give some reference and help people when using *query_version.
5771
5772commit 8eba8690adac2c4425f4cac490c77f9f3b1da6f7
5773Author: TORRI Vincent <torri@alf94-3-82-66-248-160.fbx.proxad.net>
5774Date:   Fri Oct 20 07:00:15 2006 +0200
5775
5776    fix doxy doc
5777
5778commit a5529a4f2f1a9ed117e3465f0e422b707db21c68
5779Author: Jamey Sharp <jamey@minilop.net>
5780Date:   Wed Oct 18 23:28:27 2006 -0700
5781
5782    Add doxygen config file.
5783    
5784    Thanks to Jeremy Kolb <jkolb@brandeis.edu> for the initial version.
5785
5786commit 094248405fd9c0957b92f13acb92461ab61b2c3f
5787Author: Jamey Sharp <jamey@minilop.net>
5788Date:   Wed Oct 18 23:23:00 2006 -0700
5789
5790    Quit treating xproto specially: handle it like all the extensions.
5791
5792commit 6bc0b37303f26faf6fbdcbbee444c227e83a329c
5793Author: Jamey Sharp <jamey@minilop.net>
5794Date:   Wed Oct 18 23:21:39 2006 -0700
5795
5796    Ignore generated xinerama files.
5797
5798commit 5abb10d63ffebbe34054ae17bbdfd142e0b36396
5799Author: Josh Triplett <josh@freedesktop.org>
5800Date:   Mon Oct 16 05:11:57 2006 -0700
5801
5802    Also test xcb_parse_display with NULL argument and display in $DISPLAY
5803
5804commit 9d619d14e347b9dd1d544627060023a4bca2452b
5805Author: Jamey Sharp <jamey@minilop.net>
5806Date:   Sun Oct 15 12:34:30 2006 -0700
5807
5808    Match only XCB-namespaced XID generators when converting to xcb_generate_id.
5809    
5810    Thanks to Vincent Torri for pointing out that I screwed up. :-)
5811
5812commit 5ec55dc9c0c51137d89dd870ede05cc3268f75ae
5813Author: Zephaniah E. Hull <warp@aehallh.com>
5814Date:   Sat Oct 14 19:52:23 2006 -0700
5815
5816    Define and use constants for opcode numbers.
5817    
5818    Hard coding the opcode numbers in the function just makes it harder to figure
5819    out what's going on, but much more to the point, not defining the opcodes in
5820    the header makes it impossible to use the generated headers instead of the
5821    x11proto headers in the server.
5822    
5823    The name I settled on is very simple, for an extension by the name of xconf,
5824    and a request by the name of list_devices, we get XCB_XCONF_LIST_DEVICES.  If
5825    this somehow causes problems, we can probably add a _OP somewhere in there,
5826    but.
5827    
5828    Acked-by: Jamey Sharp <jamey@minilop.net>
5829    Closes: #8641
5830
5831commit c1504691ec2786594e8ffc33f3962f460f041971
5832Author: Jeremy Kolb <jkolb@brandeis.edu>
5833Date:   Thu Oct 12 23:52:59 2006 -0400
5834
5835    Add library support for xcb-xinerama.
5836    
5837    This is version 1.1 of the Xinerama (PanoramiX) extension.
5838
5839commit 7f74dd6b643f7769701c31587bf3cfa9c5a8e980
5840Author: Josh Triplett <josh@freedesktop.org>
5841Date:   Sun Oct 8 18:16:14 2006 -0700
5842
5843    Add note to xcbxlib.h that nothing except Xlib/XCB should use it.
5844
5845commit 431f210bbb20e39a24ac879af5f2a8a7744e6a6c
5846Author: Jamey Sharp <jamey@minilop.net>
5847Date:   Sat Oct 7 19:50:55 2006 -0700
5848
5849    Release libxcb 1.0 RC2 (0.9.92).
5850
5851commit e0fac22caaf27b3e461807f8c563d0457938baa6
5852Author: Jamey Sharp <jamey@minilop.net>
5853Date:   Sat Oct 7 18:35:53 2006 -0700
5854
5855    Bugfix: make Plan 7 'checked' requests work correctly.
5856    
5857    The initial implementation of Plan 7 dumped all X errors into the event
5858    queue, because the record of a pending reply was pruned too early if an
5859    error occurred in place of the expected reply.
5860
5861commit 7b84d8b650a611d4d76083340e50cb7ea815014d
5862Author: Ian Osgood <iano@quirkster.com>
5863Date:   Sat Oct 7 14:09:29 2006 -0700
5864
5865    Document xcb_generate_id.
5866
5867commit 9e10819a678970928c9f9a1fffb4ba00f5ac7c57
5868Author: Josh Triplett <josh@freedesktop.org>
5869Date:   Sat Oct 7 13:16:43 2006 -0700
5870
5871    Move xcb_generate_id from xcbext.h to xcb.h
5872    
5873    Since extensions no longer provide type-specific XID-generation functions,
5874    xcb_generate_id now forms part of the xcb client API, rather than the
5875    extension API; move it from xcbext.h to xcb.h accordingly.
5876
5877commit b9e49b2a47e7388e20f8a5c009cdaf0b369e117c
5878Author: Josh Triplett <josh@freedesktop.org>
5879Date:   Sat Oct 7 01:27:26 2006 -0700
5880
5881    Stop implicitly importing xproto; goes with proto change to explicitly import it
5882
5883commit dd5ece606587d3e41058df803ab1804654195bbb
5884Author: Jamey Sharp <jamey@minilop.net>
5885Date:   Sat Oct 7 01:27:03 2006 -0700
5886
5887    Declare "struct foo" or "enum foo" as well as the typedef'd name "foo".
5888
5889commit 16ec51397e0711526457709605cf6b5ebf00b5e2
5890Author: Josh Triplett <josh@freedesktop.org>
5891Date:   Sat Oct 7 00:14:50 2006 -0700
5892
5893    Handle "xidunion" instead of "union" for XID unions like DRAWABLE and FONTABLE
5894
5895commit 7b786bd8f34e67617beda4f952a5a636a370396a
5896Author: Jamey Sharp <jamey@minilop.net>
5897Date:   Fri Oct 6 23:32:18 2006 -0700
5898
5899    api_conv.pl: replace xcb_*_new with calls directly to xcb_generate_id, now that we have no type-safety XID wrappers.
5900
5901commit c73ff37b907c8af6d03ab69cca27bc837c1cc189
5902Author: Josh Triplett <josh@freedesktop.org>
5903Date:   Fri Oct 6 20:11:19 2006 -0700
5904
5905    Refer to the "xlib lock" rather than the "IOLock" in xcbxlib.h
5906
5907commit 90eeb461be4975ff35d187ba64fedbb16ff13d15
5908Author: Josh Triplett <josh@freedesktop.org>
5909Date:   Fri Oct 6 17:44:53 2006 -0700
5910
5911    Remove XID wrapper structures and replace them with uint32_t typedefs
5912    
5913    After positive feedback from several people, we have decided to remove the XID
5914    wrapper structures that attempted to provide C type safety, and replace them
5915    with uint32_t typedefs.  Feedback has indicated that these type-safety hacks
5916    generated more trouble than help.
5917    
5918    We will bump the libxcb soname at the next release.
5919
5920commit 9bd2c0c58fbe4c994e76619c2d67e46ed8b43030
5921Author: Jamey Sharp <jamey@minilop.net>
5922Date:   Fri Oct 6 16:47:50 2006 -0700
5923
5924    Remove xcb_get_io_lock from the Xlib-specific API: it is no longer used.
5925
5926commit 34168ab549fdf7c6c8a6fbe39824116698d01b12
5927Author: Jamey Sharp <jamey@minilop.net>
5928Date:   Fri Oct 6 16:12:04 2006 -0700
5929
5930    Remove the 'int *error' out-parameter for xcb_poll_for_event.
5931
5932commit 40589db8124b8c72894deb86a825c6117b0a2cd2
5933Author: Jamey Sharp <jamey@minilop.net>
5934Date:   Wed Oct 4 15:01:00 2006 -0700
5935
5936    Add xcb_xlib_lock and xcb_xlib_unlock, a special-purpose two-level recursive lock just for libX11.
5937
5938commit 57b0cd8fea498a32ff2322583c7278d5e86aa4e8
5939Author: Jamey Sharp <jamey@minilop.net>
5940Date:   Wed Oct 4 12:23:45 2006 -0700
5941
5942    Factor out pthread_mutex_lock and unlock calls for the iolock.
5943
5944commit e7f473afbd02c87cc6b1fc9c7c240d6c5cc26763
5945Author: TORRI Vincent <torri@alf94-3-82-66-248-160.fbx.proxad.net>
5946Date:   Sat Sep 30 13:06:58 2006 +0200
5947
5948    fix some indentation, remove args of the main function (not needed), xcb_sync -> xcb_aux_sync. Jamey, it seems that your script transforms XCBGetSetup into a type, instead of a function. Same for XCBSetupVendor. Maybe there are other fuctions that have the same problem.
5949
5950commit 408e74538676230e289d79c6b0195b464bfc6606
5951Author: TORRI Vincent <torri@alf94-3-82-66-248-160.fbx.proxad.net>
5952Date:   Sat Sep 30 12:45:12 2006 +0200
5953
5954    update tutorial to the new api. Add some doc about cursors. Add some colors to section 6 (Opening and closing the connection to an X server). Tell me if you want to keep colors or not (colors can be modified in xcb.css)
5955
5956commit 15993fccd0b0cba870b793345fb5c5ec13ece0c8
5957Author: Jamey Sharp <jamey@minilop.net>
5958Date:   Mon Sep 25 05:12:07 2006 -0700
5959
5960    Release libxcb 1.0 RC1 (0.9.91).
5961
5962commit f7cd80142fa83d531850df2c2a3b4a514129170b
5963Author: Josh Triplett <josh@freedesktop.org>
5964Date:   Mon Sep 25 05:10:37 2006 -0700
5965
5966    Stop installing the protocol descriptions for extensions to an extensions/
5967    subdirectory
5968
5969commit 0d7beff580232d4b7adfc840bcd1cae894b57682
5970Author: Josh Triplett <josh@freedesktop.org>
5971Date:   Mon Sep 25 04:43:04 2006 -0700
5972
5973    Actually install xcb-xlib.pc, and ship xcb-xlib.pc.in in distribution tarballs
5974
5975commit d04e7777d3547de2cece0734c0b9be49d3ddb88c
5976Author: Jamey Sharp <jamey@minilop.net>
5977Date:   Mon Sep 25 04:14:26 2006 -0700
5978
5979    Ensure api_conv.pl is idempotent on names of constants: XCB_[A-Z0-9_]+.
5980
5981commit 0bccf7d2eed45ba15a012d090b9b950075e75803
5982Author: Jamey Sharp <jamey@minilop.net>
5983Date:   Mon Sep 25 04:03:01 2006 -0700
5984
5985    Move header files to $includedir/xcb (generally $prefix/include/xcb).
5986
5987commit 9100981d359f6366ab92b456e6069bac89afeb15
5988Author: Josh Triplett <josh@freedesktop.org>
5989Date:   Mon Sep 25 02:02:16 2006 -0700
5990
5991    Split the Xlib compatibility functions into a separate library libxcb-xlib
5992    
5993    We don't want to have to change the libxcb soname if we later manage to remove
5994    the Xlib compatibility functions, and nothing except Xlib should ever use
5995    them, so split them into a separate library.
5996
5997commit 810dfb886247dc4484886aff2e2e7d80ea945de4
5998Author: Jamey Sharp <jamey@minilop.net>
5999Date:   Mon Sep 25 02:10:44 2006 -0700
6000
6001    Move debian/ directory to new branch "debian".
6002
6003commit 46b7dbdd9306235ae04da9d0e3431a1b58f89048
6004Author: Jamey Sharp <jamey@minilop.net>
6005Date:   Mon Sep 25 02:00:23 2006 -0700
6006
6007    We no longer need xproto: do not list it as a dependency.
6008
6009commit cf80bab8e6410915ad27a61cef3bb5f456c7d80f
6010Author: Jamey Sharp <jamey@minilop.net>
6011Date:   Mon Sep 25 01:21:42 2006 -0700
6012
6013    Lowercase library names to correspond with the new API.
6014
6015commit a1a7646d5a791c2e918bc1a9f46d64334d5ab575
6016Author: Ian Osgood <iano@quirkster.com>
6017Date:   Sun Sep 24 14:10:20 2006 -0700
6018
6019    Add XCBAllPlanes from xcb-image util library.
6020
6021commit dfbde9a4e972ed9bbd701fd6f89c3a6e6f641740
6022Author: Josh Triplett <josh@freedesktop.org>
6023Date:   Sun Sep 24 03:15:39 2006 -0700
6024
6025    Integrate top-level .gitignore into .gitignore for each subdirectory
6026    
6027    In preparation for the repository split, move the relevant contents of the
6028    top-level .gitignore into the .gitignore for each immediate subdirectory.
6029
6030commit 905379e4474c0137e5dd535798ae0afb07070df6
6031Author: TORRI Vincent <torri@alf94-3-82-66-248-160.fbx.proxad.net>
6032Date:   Sun Sep 24 08:51:20 2006 +0200
6033
6034    now, I know how to use api_conv.pl :)
6035
6036commit 16516a5e94205edffddde546abc833106c68068e
6037Author: Josh Triplett <josh@freedesktop.org>
6038Date:   Sat Sep 23 14:44:15 2006 -0700
6039
6040    Remove the xcb_[extension]_init functions; use xcb_get_extension_data directly
6041
6042commit 9691890529fddc051c15e191a8a5f06017514c1c
6043Author: Josh Triplett <josh@freedesktop.org>
6044Date:   Sat Sep 23 14:17:52 2006 -0700
6045
6046    More fixups for incorrect API conversions by api_conv.pl
6047
6048commit 0a867d72337afa88f4ab453b6d3fbb519368c308
6049Author: Josh Triplett <josh@freedesktop.org>
6050Date:   Sat Sep 23 13:59:40 2006 -0700
6051
6052    Convert the XCB test suite to the new API
6053
6054commit 63b38f31974b0a61c923a62a2d224e7024a0fc2b
6055Author: Jamey Sharp <jamey@minilop.net>
6056Date:   Sat Sep 23 13:51:10 2006 -0700
6057
6058    Apply const-names.xsl to the un-renamed XML; replace the XSL with the result.
6059
6060commit 86a4c0cc284366bbb01898a77df360278d5a8194
6061Author: Josh Triplett <josh@freedesktop.org>
6062Date:   Sat Sep 23 13:33:27 2006 -0700
6063
6064    We do not conflict with Xmd.h anymore; remove the include hack from xcb_auth.c
6065
6066commit 4ff12a1a94895837dc85ac9e37fd1a5f40819cf3
6067Author: Josh Triplett <josh@freedesktop.org>
6068Date:   Sat Sep 23 13:31:13 2006 -0700
6069
6070    Fix some mis-conversions by api_conv.pl, and remove the now-unused Xmd types
6071
6072commit a3bd6f4760b5b3f5f360a690920839646e2b9d06
6073Author: Josh Triplett <josh@freedesktop.org>
6074Date:   Sat Sep 23 12:22:22 2006 -0700
6075
6076    The Great XCB Renaming
6077    
6078    Rename API to follow a new naming convention:
6079    * XCB_CONSTANTS_UPPERCASE_WITH_UNDERSCORES
6080    * xcb_functions_lowercase_with_underscores
6081    * xcb_types_lowercase_with_underscores_and_suffix_t
6082    * expand all abbreviations like "req", "rep", and "iter"
6083    
6084    Word boundaries for the names in the protocol descriptions fall:
6085    * Wherever the protocol descriptions already have an underscore
6086    * Between a lowercase letter and a subsequent uppercase letter
6087    * Before the last uppercase letter in a string of uppercase letters followed
6088      by a lowercase letter (such as in LSBFirst between LSB and First)
6089    * Before and after a string of digits (with exceptions for sized types like
6090      xcb_char2b_t and xcb_glx_float32_t to match the stdint.h convention)
6091    
6092    Also fix up some particular naming issues:
6093    * Rename shape_op and shape_kind to drop the "shape_" prefix, since otherwise
6094      these types end up as xcb_shape_shape_{op,kind}_t.
6095    * Remove leading underscores from enums in the GLX protocol description,
6096      previously needed to ensure a word separator, but now redundant.
6097    
6098    This renaming breaks code written for the previous API naming convention.  The
6099    scripts in XCB's tools directory will convert code written for the old API to
6100    use the new API; they work well enough that we used them to convert the
6101    non-program-generated code in XCB, and when run on the old program-generated
6102    code, they almost exactly reproduce the new program-generated code (modulo
6103    whitespace and bugs in the old code generator).
6104    
6105    Authors: Vincent Torri, Thomas Hunger, Josh Triplett
6106
6107commit ca72e777740f917753f3c180fdfdb55df91c09c4
6108Author: Jamey Sharp <jamey@minilop.net>
6109Date:   Sat Sep 23 01:33:45 2006 -0700
6110
6111    Special cases to agree with the conventions Josh and I have hashed out.
6112
6113commit 4168ddc13dff7bf2479c2229f42b114d75098112
6114Author: Jamey Sharp <jamey@minilop.net>
6115Date:   Fri Sep 22 22:53:17 2006 -0700
6116
6117    Handle remaining incorrect API translations in api_conv.pl.
6118    
6119    The big change is treating numbers as separate "words" in the
6120    translation, which leads to funny-looking names like xcb_char_2_b_t, but
6121    makes more sense than the alternative in other situations and was
6122    suggested on the mailing list.
6123    
6124    This version still disagrees with Vincent's last proposed XSL, but I
6125    think my output is now preferable. Hopefully Josh has been thinking
6126    along the same lines.
6127
6128commit 91568d7070e2c2400dfdbdff515f51da74ca3701
6129Author: Jamey Sharp <jamey@minilop.net>
6130Date:   Fri Sep 22 15:37:49 2006 -0700
6131
6132    Make xcb_conn.c agree that XCBSetupReq is now XCBSetupRequest.
6133
6134commit 2538acd8c89d73e8c074849c63857cb899a29bbb
6135Author: Alan Coopersmith <alan.coopersmith@sun.com>
6136Date:   Fri Sep 22 11:53:21 2006 -0700
6137
6138    List xproto.xml path explicitly instead of relying on GNU Make $< expansion
6139    
6140    (Some non-gnu makes, such as Solaris make, only recognize $< in implicit
6141     suffix rules, not explicit ones like this.)
6142
6143commit 2c8b5994b3fbba343199ef555594a32e29d8bcee
6144Author: Jamey Sharp <jamey@minilop.net>
6145Date:   Fri Sep 15 01:51:05 2006 -0700
6146
6147    Shut down the connection in all "fatal" error cases.
6148
6149commit 79e3227022ae3d66f9f3806d231fdeec2a06cc6b
6150Author: Jamey Sharp <jamey@minilop.net>
6151Date:   Fri Sep 15 01:57:53 2006 -0700
6152
6153    Add a private connection shutdown method for error cases.
6154
6155commit 7f71bf9c0f30536e85907b2c991cb7001861e1d3
6156Author: Jamey Sharp <jamey@minilop.net>
6157Date:   Fri Sep 15 01:09:27 2006 -0700
6158
6159    Make all public functions do nothing on an error connection.
6160
6161commit 0aa96bfc7abe18889cd85bfaa05b05d53e572bb1
6162Author: Jamey Sharp <jamey@minilop.net>
6163Date:   Fri Sep 15 00:39:51 2006 -0700
6164
6165    Convert connection functions to return error objects.
6166
6167commit ac17ae62fe1a3a29991e36e35eeee838ac4acb00
6168Author: Jamey Sharp <jamey@minilop.net>
6169Date:   Fri Sep 15 00:29:39 2006 -0700
6170
6171    Provide a "has error" property for XCBConnection.
6172
6173commit df7fb77d6e22be76ca73f111c586db99a60178ae
6174Author: Jamey Sharp <jamey@minilop.net>
6175Date:   Thu Sep 21 12:13:37 2006 -0700
6176
6177    Refactor XCBPollForEvent with a shorter critical section.
6178    
6179    This simplifies the patch for bug #8208 later.
6180
6181commit b08ca2b4b451a94ece20207766cd5262fd55179b
6182Author: Jamey Sharp <jamey@minilop.net>
6183Date:   Mon Sep 18 16:52:00 2006 -0700
6184
6185    XCB*Id is a variable, not a type: adjust API conventions accordingly.
6186
6187commit 3cc0ddf0e6b72ba553ebfc2b9126d62ef4013bd3
6188Author: Jamey Sharp <jamey@minilop.net>
6189Date:   Wed Sep 13 12:30:11 2006 -0700
6190
6191    Fix bug #7261: events do not signal the end of replies for that sequence number.
6192
6193commit c912187f15c560c46768acb88aae30e67b0f78ce
6194Author: Jamey Sharp <jamey@minilop.net>
6195Date:   Mon Sep 18 00:25:26 2006 -0700
6196
6197    Handle names of constants during API conversion.
6198    
6199    Use an XSLT stylesheet to get a list of all the constant names.
6200
6201commit 06fba014435cfbdd1ff284d6d513d114503d02c2
6202Author: Jamey Sharp <jamey@minilop.net>
6203Date:   Sun Sep 17 23:38:57 2006 -0700
6204
6205    Complete rewrite of api_conv.pl.
6206    
6207    Now handles all API changes except constant names, which are treated like type names.
6208
6209commit bf41af718d6a83532d1c2f63ac16e6484e8e8b68
6210Author: Jamey Sharp <jamey@minilop.net>
6211Date:   Thu Sep 14 00:04:47 2006 -0700
6212
6213    Simplify the API conversion tool without functionality changes.
6214
6215commit cdffbdd7ef9dee58b3c36ca46bb88aa187b46526
6216Author: Thomas Coppi <thisnukes4u@gmail.com>
6217Date:   Wed Sep 13 23:50:23 2006 -0700
6218
6219    Prototype API conversion tool for upcoming lowercased XCB API.
6220
6221commit a92716f1da2741fca850b3c37299e80032726276
6222Author: Jamey Sharp <jamey@minilop.net>
6223Date:   Wed Sep 13 12:15:23 2006 -0700
6224
6225    Finish removing deprecated functions. Fixes build failure (oops).
6226
6227commit 476ccc1ba3d20f3a545b84089b6fbd40576e7bf5
6228Author: Jamey Sharp <jamey@minilop.net>
6229Date:   Tue Sep 12 13:43:17 2006 -0700
6230
6231    Ignore xproto.xml that now gets copied in while building.
6232
6233commit 0d7fb3afdd308d714a97144125a69a5f4976916a
6234Author: Jamey Sharp <jamey@minilop.net>
6235Date:   Tue Sep 12 13:25:49 2006 -0700
6236
6237    Remove deprecated public API functions in preparation for 1.0 release. Xlib-specific deprecation remains.
6238
6239commit d4e768fc32ff9ce79a4259d252f4a4a4b11d5db8
6240Author: Bart Massey <bart@cs.pdx.edu>
6241Date:   Tue Sep 12 00:42:11 2006 -0700
6242
6243    Cleaned up previous fix for GNU Make stuff.
6244    Got "make distcheck" to work (whatever that does).
6245
6246commit 0c3e528563f8e8db45c340e7d050a1b42e65cb73
6247Author: Bart Massey <bart@bartfan.localdomain>
6248Date:   Mon Sep 11 23:29:10 2006 -0700
6249
6250    Removed GNU make dependency.
6251    Made extensions directory persist.
6252
6253commit 81d6fd64c09255e90104b3c6e37c9023bd0aa6ec
6254Author: Jamey Sharp <jamey@minilop.net>
6255Date:   Sat Sep 9 15:52:37 2006 -0700
6256
6257    Handle XC-MISC request failure when allocating new XIDs. (fixes #7001)
6258
6259commit f6d4fc007fc0f4bdf8f06ab0798aadce87d468d1
6260Author: Thomas Hunger <hto@arcor.de>
6261Date:   Mon Aug 14 06:59:46 2006 -0700
6262
6263    Tutorial corrections.
6264
6265commit dbd2d9689305ce5bf24aebd894551bb6b590f6e4
6266Author: Josh Triplett <josh@freedesktop.org>
6267Date:   Sun Jul 30 22:02:37 2006 -0700
6268
6269    Implement error handling plan 7.
6270    
6271    Needs improvement: should not duplicate the code of every request function.
6272
6273commit 65ed274f05ba670eb02a55b098aed141fa9611ec
6274Author: Josh Triplett <josh@freedesktop.org>
6275Date:   Sun Jul 30 20:28:16 2006 -0700
6276
6277    Parameterize context in cookie-type and request-matching template.
6278
6279commit f74487e34fd61d11a501c07030f8fd7ed8caeb1c
6280Author: Jamey Sharp <jamey@minilop.net>
6281Date:   Sun Jul 30 14:55:14 2006 -0700
6282
6283    Fix Keith's 32-bit wrap fix.
6284    
6285    Issue 0, 1, or 2 syncs as needed and do not handle 16-bit wrap until
6286    absolutely necessary.
6287
6288commit 13896d8f658b917e891aa18e0ac4906d630881bb
6289Author: Josh Triplett <josh@freedesktop.org>
6290Date:   Sun Jul 30 15:09:03 2006 -0700
6291
6292    Fix typo: s/request/sequence/
6293
6294commit 685d8c76c25fd9f236fa1a74bae61699eaa78579
6295Author: Josh Triplett <josh@freedesktop.org>
6296Date:   Sun Jul 30 14:41:19 2006 -0700
6297
6298    Add XCBRequestCheck function needed for Plan 7.
6299
6300commit b3a2f83f1e4d3567fcd4494e7bae31e99645ef85
6301Author: Eric Anholt <anholt@FreeBSD.org>
6302Date:   Fri Jul 28 15:29:05 2006 -0700
6303
6304    Restore netinet/in.h include that was removed in the DECnet commit.
6305
6306commit b7c96681b2bfc968b198058122c93050feb7927e
6307Author: Eric Anholt <anholt@FreeBSD.org>
6308Date:   Tue Jul 25 09:13:59 2006 -0700
6309
6310    Replace HAVE_* tests with just checking for (__solaris__)
6311    
6312    The installed headers can't be relying on the presence of the internal
6313    config.h defines, and it was breaking the xcb build for me as well due to
6314    config.h not being included early enough.
6315
6316commit 14faffc326b9ab1f738edb3ec7febdbe0f5bc079
6317Author: TORRI Vincent <torri@doursse.(none)>
6318Date:   Tue Jul 25 08:24:59 2006 +0200
6319
6320    fix closing <b> tag
6321
6322commit 8ba93ebb757706ae8dcf5af57c6e3812f72de80e
6323Author: Ian Osgood <iano@quirkster.com>
6324Date:   Fri Jul 7 07:18:41 2006 -0700
6325
6326    Fix build on Solaris (use inttypes.h)
6327
6328commit e0574a617b9133cd728be8ea3618ef1312eeebbf
6329Author: Ian Osgood <iano@quirkster.com>
6330Date:   Sat Jul 1 00:55:08 2006 -0700
6331
6332    Finally remove X.h from xcb.h, fix broken image tests.
6333
6334commit db2504130bc450bd328830060cb3a243dd06b52f
6335Author: Keith Packard <keithp@neko.keithp.com>
6336Date:   Sat Jul 1 00:16:07 2006 -0700
6337
6338    Switch sequence comparisons to handle 32-bit sequence number wrap.
6339    
6340    Create a macro, XCB_SEQUENCE_COMPARE, that accepts two sequence numbers and
6341    a comparison operator and correctly handles 32-bit wrap around.
6342    Rewrite all ordered sequence number comparisons to use this macro.
6343    Also, caught one error where a sequence was stored in a signed int variable.
6344    Push out a GetInputFocus request when the sequence number does wrap at 32
6345    bits so that applications cannot see sequence 0 (as that is an error
6346    indicator).
6347
6348commit 75fead5b868a0dfdc9e6fd5ef0dd37eb71761312
6349Author: Josh Triplett <josh@freedesktop.org>
6350Date:   Thu Jun 15 03:03:13 2006 -0700
6351
6352    Remove arbitrary division between xcb_types and xproto by merging
6353    xcb_types.xml into xproto.xml.
6354
6355commit 62749d54fd79b12123607599d58add126ce5de6e
6356Author: TORRI Vincent <torri@doursse.(none)>
6357Date:   Thu Jun 8 06:59:47 2006 +0200
6358
6359    fix compilation with c++ compilers. Remove some trailing spaces
6360
6361commit 829188cdd6274b5b5271dff5612b30c978a61a38
6362Author: Ian Osgood <iano@quirkster.com>
6363Date:   Tue May 30 11:54:25 2006 -0700
6364
6365    Deprecate XCBSync, move to XCBAuxSync.
6366
6367commit 936077cbc87addc914d33ab79a7d066f0f51d3ad
6368Author: Jamey Sharp <jamey@minilop.net>
6369Date:   Sun May 14 22:49:18 2006 -0700
6370
6371    Use correct word offset when testing for GetFBConfigsSGIX VendorPrivate.
6372
6373commit 442730a9a25644e6d09065cdde2f1595ea65caf3
6374Author: Josh Triplett <josh@freedesktop.org>
6375Date:   Sun May 14 22:37:55 2006 -0700
6376
6377    In the GLX workaround, use !strcmp to check for equality with "GLX", not strcmp.
6378
6379commit 2e49f58e4cd670e6bd6a0006833277cfb1da60e6
6380Author: Josh Triplett <josh@freedesktop.org>
6381Date:   Wed May 10 14:22:27 2006 -0700
6382
6383    Stop overwriting CFLAGS in xcb/src/Makefile.am.
6384
6385commit 92456577dbbe3874d6e40a1ef26b63dd405c160c
6386Author: Donnie Berkholz <spyderous@gentoo.org>
6387Date:   Sun May 7 15:44:37 2006 -0700
6388
6389    Fix dependencies on libXCB.la to not walk down from $(top_builddir); this fixes parallel builds.
6390
6391commit 4a891c6f4e49a04866b2cac7bf8bb679a256d3b4
6392Author: Josh Triplett <josh@freedesktop.org>
6393Date:   Sat Apr 29 17:02:43 2006 -0700
6394
6395    Work around the unsetting of CFLAGS in src/Makefile.am, by passing CFLAGS to make via DEB_MAKE_INVOKE in debian/rules.
6396
6397commit 140c30e522c664f0675b63301bea22e4062cd155
6398Author: Josh Triplett <josh@freedesktop.org>
6399Date:   Sat Apr 29 16:28:01 2006 -0700
6400
6401    Remove unnecessary dirs files.
6402
6403commit 105c6d67e6fa3d636068a2a4407bfa6adfafe0cc
6404Author: Josh Triplett <josh@freedesktop.org>
6405Date:   Sat Apr 29 16:09:06 2006 -0700
6406
6407    Stop setting DEB_CONFIGURE_EXTRA_FLAGS = --with-opt in debian/rules; cdbs does the right thing on its own, and correctly handles DEB_BUILD_OPTS.
6408
6409commit 911ae3fbdd12bcfa39e6bbd85a7327ddd1cb9287
6410Author: Josh Triplett <josh@freedesktop.org>
6411Date:   Sat Apr 29 15:57:28 2006 -0700
6412
6413    Set DEB_MAKE_CHECK_TARGET=check in debian/rules.
6414
6415commit 3b7cf7ecf8ae614d7cb833ac4ef9fbcde3df05ae
6416Author: Josh Triplett <josh@freedesktop.org>
6417Date:   Sat Apr 29 15:34:11 2006 -0700
6418
6419    Add a Section field for the source package in debian/control.
6420
6421commit 4e26eefcd9a035c4f7ee1d5f267095edc7df7c89
6422Author: Josh Triplett <josh@freedesktop.org>
6423Date:   Sat Apr 29 11:15:47 2006 -0700
6424
6425    Drop library version from source package name.
6426
6427commit eb3521283f91a84ce149fcc416720289ca37e29f
6428Author: Josh Triplett <josh@freedesktop.org>
6429Date:   Sat Apr 29 10:58:23 2006 -0700
6430
6431    Set distribution to experimental.
6432
6433commit 2a18842f0f93516ff726a2dfa44348410bb55626
6434Author: Josh Triplett <josh@freedesktop.org>
6435Date:   Sat Apr 29 10:56:56 2006 -0700
6436
6437    Remove Bugs field in debian/control, so bugs go to the Debian BTS.
6438
6439commit e6132aff2fdcd0ab1ef5d7ac84a3c597dc07d370
6440Author: Ian Osgood <iano@quirkster.com>
6441Date:   Fri Apr 28 15:27:09 2006 -0700
6442
6443    Move the remainder of the constants in X.h into XML enumerations.
6444    Fix xcb_auth to use one of the new enumerations.
6445
6446commit 162c7593adf1577ca8aecfcd53fd5644b6182609
6447Author: Josh Triplett <josh@freedesktop.org>
6448Date:   Fri Apr 28 00:51:53 2006 -0700
6449
6450    Change libxcbxvmc0-dev Depends to libxcbxv0-dev, not libxv0-dev.
6451
6452commit 4f9b6556e2b68d1f05ed4df9d2cc82edb9868872
6453Author: Josh Triplett <josh@freedesktop.org>
6454Date:   Thu Apr 27 23:40:55 2006 -0700
6455
6456    Update debian packaging to create library, -dev, and -dbg packages for each new extension library.
6457
6458commit b7d77a8de79493919281c4f742b1a65c1328b1c4
6459Author: Josh Triplett <josh@freedesktop.org>
6460Date:   Thu Apr 27 17:32:20 2006 -0700
6461
6462    Fix the year in COPYING.
6463
6464commit 5c35ea63db8dcc30bd84eb1ae8f12f0969bb8a63
6465Author: Josh Triplett <josh@freedesktop.org>
6466Date:   Thu Apr 27 17:20:52 2006 -0700
6467
6468    Add an explanation of libtool -version-info to src/Makefile.am, and add an explicit -version-info 0:0:0 for all libraries.
6469
6470commit 08f5cc389275a71821a62c1674622ca85792b3fe
6471Author: Josh Triplett <josh@freedesktop.org>
6472Date:   Thu Apr 27 16:24:35 2006 -0700
6473
6474    Fix tutorial to use XCBSetup rather than the previous deprecated name XCBConnSetupSuccessRep.
6475
6476commit 34016bcdab9b8373b4a8f9520b01d3179d35a315
6477Author: Josh Triplett <josh@freedesktop.org>
6478Date:   Thu Apr 27 16:15:50 2006 -0700
6479
6480    Remove execute bit on tutorial.
6481
6482commit 135cda6e9dafeef36efc8c4be49ae99b417034f2
6483Author: Josh Triplett <josh@freedesktop.org>
6484Date:   Thu Apr 27 13:47:21 2006 -0700
6485
6486    Fix a comment for the renaming of XCBConnSetupSuccessRep to XCBSetup, and fix another comment which had a copy-paste error.
6487
6488commit 17c3448f58c1aaf1d89b706dfa00e697061115c7
6489Author: Josh Triplett <josh@freedesktop.org>
6490Date:   Thu Apr 27 12:33:41 2006 -0700
6491
6492    Rename xcb-xfree86dri.pc.in to xcb-xf86dri.pc.in to match libXCBxf86dri, change its Libs line to use -lXCBxf86dri, and change configure.ac and Makefile.am accordingly.
6493
6494commit ef18582d83fac146b1a689bd60d580819dba0ffd
6495Author: Josh Triplett <josh@freedesktop.org>
6496Date:   Thu Apr 27 12:04:52 2006 -0700
6497
6498    Fix typo and rephrase checking message.
6499
6500commit 3e213a1becd3081e905e3711ff3fe3e4865cd7dd
6501Author: Jamey Sharp <jamey@minilop.net>
6502Date:   Thu Apr 27 10:34:22 2006 -0700
6503
6504    Declare arguments const in the various structure accessors, so XCBGetSetup is not so painful to use.
6505
6506commit dd932e025b2de0fa33b65971288c63679238e08a
6507Author: Jamey Sharp <jamey@minilop.net>
6508Date:   Wed Apr 26 23:19:16 2006 -0700
6509
6510    Rename ConnSetup* to Setup*, Setup*Rep to Setup*, and SetupSuccess* to Setup*. Provide deprecated backwards-compatability functions and typedefs for the old names, to be removed before 1.0.
6511
6512commit b825f3385becccfcde34626f872721301e82f960
6513Author: Josh Triplett <josh@freedesktop.org>
6514Date:   Wed Apr 26 11:23:32 2006 -0700
6515
6516    Add .pc.in files for all the new extension libraries.  Generate .pc files from the new .pc.in files in configure.ac.  Install the new .pc files in Makefile.am, and add the new .pc.in files to EXTRA_DIST.
6517    
6518    Based on a patch by Vincent Torri.  Changes from that patch: add Requires to the .pc.in files based on the <import>s in the extensions, add a .pc.in file for libXCBxtest, change Name and Description fields to match extension names.
6519
6520commit 1476dcecfd3e817236ae996314c10482aae8e3e9
6521Author: Ian Osgood <iano@quirkster.com>
6522Date:   Wed Apr 26 10:50:31 2006 -0700
6523
6524    Changes to makefile to build libXCBxtest
6525
6526commit bb8cf58015bae083dd77f8679f9a8299603c58a6
6527Author: Patrick Caulfield <patrick@tykepenguin.com>
6528Date:   Mon Apr 24 08:29:18 2006 -0700
6529
6530    Add support for DECnet. Still needs configure-script options to enable.
6531
6532commit 771761ccaad31d029d470dde84279e94494310b6
6533Author: Jamey Sharp <jamey@minilop.net>
6534Date:   Thu Apr 20 11:51:01 2006 -0700
6535
6536    Minor performance improvement: do not call _xcb_in_expect_reply unless it is needed. It is not often needed.
6537
6538commit 8953a14f2b1518042ed0745574e22fa2adfb6cac
6539Author: Jamey Sharp <jamey@minilop.net>
6540Date:   Wed Apr 19 22:48:10 2006 -0700
6541
6542    Add <sys/select.h> to xcb_in.c to fix bug #6122.
6543
6544commit 05a66af895442b9fceb96c9130e77694927eabaf
6545Author: Alan Coopersmith <alan.coopersmith@sun.com>
6546Date:   Wed Apr 19 21:51:33 2006 -0700
6547
6548    Bugfix: xcb_conn.c included <sys/fcntl.h> instead of the POSIX-standard <fcntl.h>.
6549
6550commit f705456744fe4beb193d27eb64fa9157102db753
6551Author: Alan Coopersmith <alan.coopersmith@sun.com>
6552Date:   Wed Apr 19 21:40:42 2006 -0700
6553
6554    Only set CWARNFLAGS to gnu flags if $GCC is set. Otherwise check for Sun compiler and use its enhanced warning flag.
6555
6556commit 6f369fde3c676e2b1a67bd71923b61942991d726
6557Merge: 922cb61 f090da9
6558Author: Ian Osgood <iano@quirkster.com>
6559Date:   Wed Apr 19 20:45:31 2006 -0700
6560
6561    Merge branch 'master' of git+ssh://iano@git.freedesktop.org/git/xcb
6562
6563commit f090da98f367ed869fd9277d2fef22555be0f91d
6564Author: Jamey Sharp <jamey@minilop.net>
6565Date:   Wed Apr 19 20:31:20 2006 -0700
6566
6567    Remove the last goto in XCB: XCBWaitForReply now permits multiple threads to force the same cookie.
6568
6569commit d5347485a55e58381781d803e19bfdd982a4685b
6570Author: Jamey Sharp <jamey@minilop.net>
6571Date:   Wed Apr 19 20:23:37 2006 -0700
6572
6573    Restructure XCBWaitForReply to eliminate two gotos.
6574
6575commit d5ab03b4b71648bf0a06e42e3c288a68c46ba497
6576Author: Jamey Sharp <jamey@minilop.net>
6577Date:   Wed Apr 19 20:15:15 2006 -0700
6578
6579    Fixed poll_for_reply, added comments, and refactored XCBWaitForReply to call poll_for_reply.
6580
6581commit 7667adbc631119ec39f3ef5a316aec42dbf5f393
6582Author: Jamey Sharp <jamey@minilop.net>
6583Date:   Wed Apr 19 16:49:32 2006 -0700
6584
6585    Add XCBPollForReply and deprecate XCBGetRequestRead and XCBGetQueuedRequestRead.
6586
6587commit 53971ea183d9d1dcfbaec18b135e49c9c118fabb
6588Merge: 71de16f 8275ac3
6589Author: Josh Triplett <josh@freedesktop.org>
6590Date:   Sun Apr 16 11:23:52 2006 -0700
6591
6592    Merge branch 'master' of git+ssh://git.freedesktop.org/git/xcb
6593
6594commit 71de16fac2a145d5ef8069d2d28d7c32cea603cf
6595Author: Josh Triplett <josh@freedesktop.org>
6596Date:   Sun Apr 16 11:05:50 2006 -0700
6597
6598    Improve package descriptions.
6599
6600commit e92bde6e5152c6d0c4efa9240604e75178c1a3db
6601Author: Josh Triplett <josh@freedesktop.org>
6602Date:   Sun Apr 16 09:59:13 2006 -0700
6603
6604    Change Depends on x-dev to x11proto-core-dev.
6605
6606commit eca61f6b5e9df7321222499a1f660f6eb7e6112e
6607Author: Josh Triplett <josh@freedesktop.org>
6608Date:   Sun Apr 16 09:25:36 2006 -0700
6609
6610    Add Build-Depends on libxdmcp-dev.
6611
6612commit a0057d7a48b90b8f11fc9d5c82b5b8d800c34db5
6613Author: Josh Triplett <josh@freedesktop.org>
6614Date:   Sun Apr 16 09:24:01 2006 -0700
6615
6616      * Debian X11R7 transition:
6617        * Change Build-Depends on x-dev to x11proto-core-dev.
6618        * Install headers to /usr/include/X11, not /usr/X11R6/include/X11.
6619        * Pre-Depends: x11-common (>= 1:1.09).
6620
6621commit 11c62f7d9d65c10c796c2199c73c8f167e53f234
6622Author: Josh Triplett <josh@freedesktop.org>
6623Date:   Sat Apr 15 22:50:33 2006 -0700
6624
6625    Stop installing the libtool .la files.
6626
6627commit 057ae541a3a73cffd58533029292c1c721fa3162
6628Author: Josh Triplett <josh@freedesktop.org>
6629Date:   Sat Apr 15 20:44:11 2006 -0700
6630
6631    Update -dbg package handling to work with debhelper compat level 5.
6632    Increase minimum version on debhelper Build-Depends to 5.0.0.
6633
6634commit 8eedb4a487dcede0e52849e36c4da13bdf0c8b51
6635Author: Josh Triplett <josh@freedesktop.org>
6636Date:   Sat Apr 15 20:22:05 2006 -0700
6637
6638    Stop running autoreconf in debian/rules, and remove Build-Depends for
6639    autoconf, automake, and libtool.
6640
6641commit cc075990f4fc2ed09c708036569049ddd24605ac
6642Author: Josh Triplett <josh@freedesktop.org>
6643Date:   Sat Apr 15 20:21:22 2006 -0700
6644
6645    Add xcbint.h to noinst_HEADERS, so it gets distributed.
6646
6647commit cb6e1849b66c17f96d79598adb740ed16325a9c1
6648Author: Josh Triplett <josh@freedesktop.org>
6649Date:   Sat Apr 15 14:17:52 2006 -0700
6650
6651    Use screensaver.xml
6652
6653commit 91aeea2a3e72af16733ddcba037541440c0c4739
6654Author: Josh Triplett <josh@freedesktop.org>
6655Date:   Sat Apr 15 12:52:05 2006 -0700
6656
6657    Put EXTHEADERS and EXTSOURCES in order.
6658
6659commit ff38c17c48c271847d12c81cbf80142c6918dc78
6660Author: Josh Triplett <josh@freedesktop.org>
6661Date:   Sat Apr 15 12:26:03 2006 -0700
6662
6663    Split all non-essential extensions into their own separate libraries, named
6664    libXCBextname.  To use extension extname, include extname.h and link with
6665    -lXCBextname.  This allows extensions to change without bumping the main
6666    libXCB version.
6667    
6668    bigreq and xc_misc remain in libXCB, because XCB uses them internally to make
6669    big requests and to allocate XIDs, respectively.
6670
6671commit 8275ac3a4a23220b5c3b4f191a45befe2d34d6bd
6672Author: Eric Anholt <anholt@FreeBSD.org>
6673Date:   Sun Apr 9 19:51:10 2006 -0700
6674
6675    Retry a select() if it returns with EINTR.  Fixes IO errors in Xephyr, which is
6676    often interrupted by timers.
6677
6678commit 66a88ed0e556ca869ddc9df5a35e3d6446d12b02
6679Author: Eric Anholt <anholt@FreeBSD.org>
6680Date:   Sun Apr 9 19:19:12 2006 -0700
6681
6682    Remove unnecessary include.  Noticed by jamey.
6683
6684commit 922cb6137a12982ecd9e1c73ecefdcbc9e193eae
6685Author: Ian Osgood <iano@quirkster.com>
6686Date:   Wed Mar 22 17:57:57 2006 -0800
6687
6688    Work on the tutorial, and update xproto.xml to match:
6689    * Fixed grammar
6690    * Answered some TODO's and added some more
6691    * Updated X.h constants to those in xproto.h
6692    * Added enumerations used in tutorial to xproto.xml
6693    * Prefered XCBFlush to XCBSync
6694    * Corrected and refactored the "events" example
6695    
6696    I extracted the examples to test them. Where should I put them?
6697
6698commit fc577b81bfeb79bb78ee529278ed52d59d489f89
6699Author: Josh Triplett <josh@freedesktop.org>
6700Date:   Tue Mar 21 14:22:21 2006 -0800
6701
6702    Remove outdated fd.o-* entries from */debian/.gitignore (obsolete since before they came from .cvsignore).
6703
6704commit df5d8adc1f18776e4417a03b465dae9273511fb1
6705Author: Jamey Sharp <jamey@minilop.net>
6706Date:   Thu Mar 16 11:27:06 2006 -0800
6707
6708    The typedefs replacing Xmd.h conflict with Xmd.h. Here is a hacky workaround: FIXME!
6709
6710commit 5ccf7216d266f22755e40a8b9858ebd60fd48f40
6711Author: Ian Osgood <iano@quirkster.com>
6712Date:   Wed Mar 15 22:41:08 2006 -0800
6713
6714    Change <bit> syntax to <bit>n</bit> as Jamey and Josh suggested
6715     and add more button, key, and graphics enumerations.
6716
6717commit 35ecaf45be75cb78fe18dd4ea9d564b03f6cea67
6718Author: Ian Osgood <iano@quirkster.com>
6719Date:   Wed Mar 15 10:09:47 2006 -0800
6720
6721    Remove proto/X11 dependencies from xcb-demo.
6722
6723commit 4142e34695310c20a8a30af64e0b40842bfb5dbe
6724Author: Ian Osgood <iano@quirkster.com>
6725Date:   Tue Mar 14 18:23:37 2006 -0800
6726
6727    Remove xcb-util dependency on proto/X11
6728    by moving many defs from X.h to <enum>s in xproto.xml
6729
6730commit f5c4956a81ed5aee3ea46e91785ec14f82e205d5
6731Author: Ian Osgood <iano@quirkster.com>
6732Date:   Tue Mar 14 11:53:01 2006 -0800
6733
6734    Fix XCBGetSetup to match prototype.
6735
6736commit 9472c251ae426bb496a3112d0ae390f1f1c35515
6737Merge: 71ddf29 0d648ac
6738Author: Ian Osgood <iano@quirkster.com>
6739Date:   Tue Mar 14 11:44:43 2006 -0800
6740
6741    Merge branch 'master' of git+ssh://iano@git.freedesktop.org/git/xcb
6742
6743commit 71ddf29d00ad8ff2323faf2cc6c354cbf3eca16c
6744Author: Ian Osgood <iano@quirkster.com>
6745Date:   Tue Mar 14 10:18:22 2006 -0800
6746
6747    Add an expression construct <bit bit="n"/>
6748    for mask enumerations such as CW flags.
6749    Replaces the C-specific use of 1<<n in xproto.xml
6750
6751commit 0d648ac0ab3a2d457284644e677fd2ed612f3e7c
6752Author: TORRI Vincent <torri@doursse.(none)>
6753Date:   Tue Mar 14 07:40:39 2006 +0100
6754
6755    doxygen documentation of the API
6756
6757commit a810d1ffe4825b9359f13ebb395f5f681961fc89
6758Author: Ian Osgood <iano@quirkster.com>
6759Date:   Mon Mar 13 17:49:17 2006 -0800
6760
6761    Remove dependencies on Xmd.h and X.h
6762    (Still including X.h until defs are moved to xproto.xml
6763     and xcb-util and xcb-demo are fixed to use them.)
6764
6765commit be1302b6efb33967bce5356af58e3e0ae3b19363
6766Author: Ian Osgood <iano@quirkster.com>
6767Date:   Mon Mar 13 10:36:13 2006 -0800
6768
6769    Remove last deprecation warning.
6770
6771commit d8de2c7c2a9b8bf59c8f1fcece5faed0b6cbf6f4
6772Merge: 5e0cfa8 e757673
6773Author: Ian Osgood <iano@quirkster.com>
6774Date:   Sun Mar 12 23:03:24 2006 -0800
6775
6776    Merge branch 'master' of git+ssh://iano@git.freedesktop.org/git/xcb
6777
6778commit e7576738c33e73fb4f29c1426c2ec49257564129
6779Author: Ian Osgood <iano@quirkster.com>
6780Date:   Sun Mar 12 23:02:45 2006 -0800
6781
6782    Restructure to remove most deprecation warnings.
6783
6784commit 5e0cfa84bec3e04f3a1991baaa29da09c7c4a02c
6785Author: Jamey Sharp <jamey@minilop.net>
6786Date:   Sun Mar 12 17:15:50 2006 -0800
6787
6788    Use libXdmcp, if available with XdmcpWrap, for XDM-AUTHORIZATION-1. Closes bug #6106.
6789
6790commit d69c403cba9bdebd1bd41b62ae7e28f5852248d4
6791Merge: b83f18a 5cdc02e
6792Author: Jamey Sharp <jamey@minilop.net>
6793Date:   Sun Mar 12 13:36:33 2006 -0800
6794
6795    Merge branch 'master' of git+ssh://git.freedesktop.org/git/xcb
6796
6797commit b83f18a4cc2303dfda59807d56e16bbc5c18b09d
6798Author: Jamey Sharp <jamey@minilop.net>
6799Date:   Sun Mar 12 13:20:29 2006 -0800
6800
6801    Only _xcb_conn_wait calls _xcb_out_write now, so move it to xcb_conn.c and make it static.
6802
6803commit fb61c94d685a254ef0702a2e2093b8cdda02d514
6804Author: Jamey Sharp <jamey@minilop.net>
6805Date:   Sun Mar 12 12:40:34 2006 -0800
6806
6807    Remove c->out.vec. Pass iovecs directly down the call tree. Add _xcb_out_flush_to, refactor other functions, make write_block static.
6808
6809commit 5cdc02e3441dc623e91ebc5d7f735565b83f8435
6810Author: Jamey Sharp <jamey@minilop.net>
6811Date:   Sat Mar 11 20:32:04 2006 -0800
6812
6813    Portability fixes. Should help DragonFly and Solaris, and should not hurt anything else. Tested only on linux so far though.
6814
6815commit 83e652f566671f96ffc53a3c0099a84a1606c695
6816Author: Jamey Sharp <jamey@minilop.net>
6817Date:   Thu Mar 9 00:02:42 2006 -0800
6818
6819    Move c->out.vec refs out of _xcb_conn_wait up to _xcb_out_flush.
6820
6821commit 5b0ae3421dd373a8575b7a0d60989edfc056cf71
6822Merge: fd1f9cb 1261a41
6823Author: Jamey Sharp <jamey@minilop.net>
6824Date:   Wed Mar 8 22:50:48 2006 -0800
6825
6826    Merge branch 'master' of git+ssh://git.freedesktop.org/git/xcb
6827
6828commit fd1f9cb13f9ab9a6bb6aa0c894d4891809bece8a
6829Author: Jamey Sharp <jamey@minilop.net>
6830Date:   Wed Mar 8 22:49:59 2006 -0800
6831
6832    Unify autofoo .gitignore bits into one top-level file, and remove resulting redundancies.
6833
6834commit 1261a4150c8bd39a6fb6887df52abbbb446f7ffb
6835Author: Ian Osgood <iosgood@Titania.local>
6836Date:   Wed Mar 8 22:26:20 2006 -0800
6837
6838    Add symbols for error and reply response_types,
6839    and use XCBKeymapNotify from xcb-proto.
6840
6841commit 6fb661f3ff2fca342b4ea76d5a583c5e4f53e076
6842Author: Ian Osgood <iosgood@Titania.local>
6843Date:   Wed Mar 8 21:56:57 2006 -0800
6844
6845    Bugfix: null-terminate the path in sockaddr_un before using it.
6846    This may fix itermittant connect failures.
6847
6848commit 621f891c49cbf4beba1e20fb9b6fb1be576d42f3
6849Author: Jamey Sharp <jamey@minilop.net>
6850Date:   Wed Mar 8 14:21:16 2006 -0800
6851
6852    Move c->out.vec refs out of _xcb_out_write up to _xcb_conn_wait.
6853
6854commit c491eeb9a9f670f7d4869d7dae7a5adce4565998
6855Author: Jamey Sharp <jamey@minilop.net>
6856Date:   Tue Mar 7 21:19:58 2006 -0800
6857
6858    Fix off-by-one error that kept the last byte(s) of the output queue from being used.
6859
6860commit 522a6e0eac9adeaac533a5b700f42d85d46e2dd7
6861Author: TORRI Vincent <Vincent.Torri@iecn.u-nancy.fr>
6862Date:   Tue Mar 7 10:25:23 2006 -0800
6863
6864    Use the GCC 4 visibility extension to mark everything in xcbint.h hidden.
6865
6866commit 5437032c7dee85da99b612a707fa94d012d40282
6867Merge: 2ad5450 d1cfd4d
6868Author: Jamey Sharp <jamey@minilop.net>
6869Date:   Tue Mar 7 00:26:38 2006 -0800
6870
6871    Merge branch 'master' of git+ssh://git.freedesktop.org/git/xcb
6872
6873commit d1cfd4d0a21feaa5ccf0a1fd693327b8c5718abf
6874Author: Jamey Sharp <jamey@minilop.net>
6875Date:   Mon Mar 6 01:10:20 2006 -0800
6876
6877    Off-by-one error in the sequence-wrapping proof, and therefore in the corresponding code.
6878
6879commit 2ad5450ff3566a6e378769d7ff68f148c992b468
6880Author: TORRI Vincent <torri@doursse.(none)>
6881Date:   Sun Mar 5 09:49:02 2006 +0100
6882
6883    wrong spaces
6884
6885commit 81ea81c6d9a67fdf664fc502fe3610b37aea8354
6886Author: TORRI Vincent <torri@doursse.(none)>
6887Date:   Sun Mar 5 09:41:11 2006 +0100
6888
6889    fix some font sizes
6890
6891commit 66364da372dc1a2e1d75729a1265d632ae642ad6
6892Author: TORRI Vincent <torri@doursse.(none)>
6893Date:   Sun Mar 5 09:40:15 2006 +0100
6894
6895    fixes + valid css
6896
6897commit 01656220ef275a811a284420121d37bf9aa85f70
6898Author: TORRI Vincent <torri@doursse.(none)>
6899Date:   Sun Mar 5 09:22:03 2006 +0100
6900
6901    fixes + valid css
6902
6903commit e5458e477db95e1e064e46ca28245ecd51b5b524
6904Author: Jamey Sharp <jamey@minilop.net>
6905Date:   Sun Mar 5 00:20:50 2006 -0800
6906
6907    Implement provably-correct sequence wrap handling. Add flag XCB_REQUEST_DISCARD_REPLY.
6908
6909commit 6659c8c63b82329468b249cc99181d72ec26c698
6910Author: TORRI Vincent <torri@doursse.(none)>
6911Date:   Sun Mar 5 09:05:21 2006 +0100
6912
6913    lots of fixes. Thanks to Indan Zupancic
6914
6915commit 6e4745bbd0c924d846550496a072b0f2b0d4482c
6916Author: TORRI Vincent <torri@doursse.(none)>
6917Date:   Sun Mar 5 07:54:20 2006 +0100
6918
6919    lots of fixes. Thanks to Indan Zupancic
6920
6921commit df9c7cb4f9b05caf07900f3c15be379d3f9979fb
6922Author: Josh Triplett <josh@freedesktop.org>
6923Date:   Sat Mar 4 18:35:53 2006 -0800
6924
6925    Add *.tar.{bz2,gz} to .gitignore for the benefit of "make distcheck".
6926
6927commit 29f9fe0fc805a1ec6860f167a45664cc1cf0c769
6928Author: Jamey Sharp <jamey@minilop.net>
6929Date:   Fri Mar 3 11:08:10 2006 -0800
6930
6931    API/ABI change: XCBSendRequest returns the sequence number instead of using an out-parameter. Now 0 is a special sequence number indicating failure.
6932
6933commit 255c21b17f61147388bab6e1d42623a008a4a8d2
6934Author: Jamey Sharp <jamey@minilop.net>
6935Date:   Fri Mar 3 01:45:00 2006 -0800
6936
6937    Add 32-bit full_sequence fields to generic errors and events, so callers can always correlate events and errors with requests correctly.
6938
6939commit 622b599c8fcf5d677f76ca03f3241a23dba58712
6940Author: Jamey Sharp <jamey@minilop.net>
6941Date:   Thu Mar 2 23:39:38 2006 -0800
6942
6943    Tweak to previous API change: Require that spare iovecs fall before vector[0]. Leave vector in well-defined state.
6944
6945commit 87905f0579e749ac6d92843780af246160318eca
6946Author: Jamey Sharp <jamey@minilop.net>
6947Date:   Thu Mar 2 23:31:35 2006 -0800
6948
6949    assert() that XCBSendRequest was handed enough space to set opcodes and short length fields.
6950
6951commit 45e1cc0935ca1d7a138e1c700db229f50205a556
6952Author: Jamey Sharp <jamey@minilop.net>
6953Date:   Thu Mar 2 23:12:21 2006 -0800
6954
6955    Bugfix: The fixed-length part needs two iovecs reserved, just like all the other parts.
6956
6957commit b46953f46c7d0fd8cbb73f922524968c1ac86fa4
6958Author: Jamey Sharp <jamey@minilop.net>
6959Date:   Thu Mar 2 23:05:08 2006 -0800
6960
6961    Use XPath position() function instead of xsl:number, to evaluate array indices while generating code for easier readability.
6962
6963commit 5e115e2441ed32f5fa495370b36b01c03bbff66d
6964Author: Jamey Sharp <jamey@minilop.net>
6965Date:   Thu Mar 2 15:35:31 2006 -0800
6966
6967    API/ABI change: XCBSendRequest callers must pad to 4-byte boundaries now. When not in RAW mode, a null pointer for iov_base is replaced by up to 3 padding bytes.
6968
6969commit ed823bf65192a72f8c3060698c9bded9f77d49c2
6970Author: Jamey Sharp <jamey@minilop.net>
6971Date:   Thu Mar 2 13:49:00 2006 -0800
6972
6973    Separate notion of request-completed from current-request, and mark requests completed more aggressively. Detects some usage errors that are otherwise undetectable.
6974
6975commit c05ae15b661bff6b95deb3abc7f48abe16892ac8
6976Author: Jamey Sharp <jamey@minilop.net>
6977Date:   Mon Feb 27 12:12:33 2006 -0800
6978
6979    Buffer a couple CARD32s on the stack instead of using an extra iovec. Also a bugfix: do not hold a reference to longlen after it goes out of scope.
6980
6981commit 8f991bdd389f6c419cb18cdaea966304529de165
6982Author: Jamey Sharp <jamey@minilop.net>
6983Date:   Mon Feb 27 11:03:13 2006 -0800
6984
6985    Add XCB_REQUEST_RAW flag for XCBSendRequest.
6986
6987commit 5e350126a728f3c0c3bc8d8673e5ad67dc174f79
6988Author: Jamey Sharp <jamey@minilop.net>
6989Date:   Mon Feb 27 10:53:08 2006 -0800
6990
6991    Bugfix: how about *not* leaking all pending_replies when no reply matches, as often happens with Xlib?
6992
6993commit 731c85762d8994119f4eaf572cc59c9adbb7abd9
6994Author: Jamey Sharp <jamey@minilop.net>
6995Date:   Mon Feb 27 02:57:36 2006 -0800
6996
6997    Move test for other writing threads *before* allocating a sequence number.
6998
6999commit 8ab4dcde9db8175ef0093123bd04c72471e205ff
7000Author: Jamey Sharp <jamey@minilop.net>
7001Date:   Mon Feb 27 02:14:48 2006 -0800
7002
7003    _xcb_list is no longer used, so remove it. Simplify _xcb_map.
7004
7005commit 76ad79a7adbb315f7c7d5f08d6f42553210868cd
7006Author: Jamey Sharp <jamey@minilop.net>
7007Date:   Mon Feb 27 01:43:07 2006 -0800
7008
7009    Replace readers generic list with hand-written typesafe version.
7010
7011commit fa71b9b835da6360c374dcb4ab93be3a27dbd737
7012Author: Jamey Sharp <jamey@minilop.net>
7013Date:   Mon Feb 27 01:06:15 2006 -0800
7014
7015    Rename struct XCBReplyData to reader_list to follow my naming conventions and better reflect its purpose.
7016
7017commit ff665b57266b9e7e9b9a366272c2115bbd516173
7018Author: Jamey Sharp <jamey@minilop.net>
7019Date:   Mon Feb 27 00:54:59 2006 -0800
7020
7021    In struct XCBReplyData, change void *data to pthread_cond_t *data. That was dumb.
7022
7023commit 50acfeae36f5f67e8b92fd7610141c489ee348c5
7024Author: Jamey Sharp <jamey@minilop.net>
7025Date:   Sun Feb 26 23:43:44 2006 -0800
7026
7027    Delete unused xcb_list functions and refactor others.
7028
7029commit 86ce18c22c8daebe8796d3c38e8a1d496ab6e8de
7030Author: Jamey Sharp <jamey@minilop.net>
7031Date:   Sun Feb 26 22:58:17 2006 -0800
7032
7033    Replace current_reply generic queue with hand-written version. No generic queues remain so delete their implementation.
7034
7035commit 0f130b4d945a27fd2b4655c351ebe70d61cac598
7036Author: Jamey Sharp <jamey@minilop.net>
7037Date:   Sun Feb 26 18:28:50 2006 -0800
7038
7039    Replace events generic queue with hand-written typesafe version.
7040
7041commit ff7b6c9124e7caf26381cc7a10fba9eaf1875652
7042Author: Jamey Sharp <jamey@minilop.net>
7043Date:   Sun Feb 26 15:45:08 2006 -0800
7044
7045    API/ABI break: Add flags to XCBSendRequest, first for error-checked requests.
7046    There's no more race condition between event and reply handling.
7047    The *RequestBlind and *RequestChecked functions are not yet implemented.
7048
7049commit 7875040fa179d8ca3fa4ec046c1b8c2a351a6621
7050Author: Jamey Sharp <jamey@minilop.net>
7051Date:   Sun Feb 26 02:00:03 2006 -0800
7052
7053    Replace pending_replies generic queue with a hand-implemented typesafe version.
7054
7055commit a1eff0c49a2dbb328a79edbeb2b851fa1dfe9e61
7056Author: Jamey Sharp <jamey@minilop.net>
7057Date:   Sun Feb 26 01:27:01 2006 -0800
7058
7059    Replace my old generic map ADT with a growable array for the extension cache.
7060
7061commit 46a754998149c5f4a1670787b3ea36731caf6506
7062Author: Jamey Sharp <jamey@minilop.net>
7063Date:   Sat Feb 25 23:27:47 2006 -0800
7064
7065    XCB has not had tracing features for a long time: remove the remnants.
7066
7067commit b6cbe837748df5819d00682330d34e2c7d24d349
7068Author: Jamey Sharp <jamey@minilop.net>
7069Date:   Sat Feb 25 23:26:55 2006 -0800
7070
7071    Rearrange an if statement that's been bothering me.
7072
7073commit f27166f49b9ef6bdcce78429bffc724d1e4fb360
7074Author: Jamey Sharp <jamey@minilop.net>
7075Date:   Fri Feb 24 02:17:36 2006 -0800
7076
7077    Coalesce _xcb_writev into _xcb_out_write and simplify.
7078
7079commit 9463653b1e6dc0a9054266aa3eecb0839129b991
7080Author: Jamey Sharp <jamey@minilop.net>
7081Date:   Fri Feb 24 01:56:18 2006 -0800
7082
7083    Take advantage of Requires and *.private fields for a more accurate pkg-config file.
7084
7085commit bae98d36040d0cda1862839410cf92bac3927280
7086Author: Jamey Sharp <jamey@minilop.net>
7087Date:   Fri Feb 24 01:50:48 2006 -0800
7088
7089    Move _xcb_set_fd_flags to xcb_conn.c and make it static. xcb_util.c now has only public functions.
7090
7091commit 67b2649dc4b6726c6d11fb0e41429ae5de82b0e8
7092Author: Jamey Sharp <jamey@minilop.net>
7093Date:   Fri Feb 24 01:40:45 2006 -0800
7094
7095    Move _xcb_read_block to xcb_in.c and make it static. Change calls in xcb_conn.c to _xcb_in_read_block instead.
7096
7097commit 838317f4d305e07f35ddd99e2ebccfa8fac680c6
7098Author: Jamey Sharp <jamey@minilop.net>
7099Date:   Fri Feb 24 01:17:03 2006 -0800
7100
7101    Remove XCB_CEIL and use a simpler definition for XCB_PAD.
7102
7103commit 1b50d2ee1ef532429674126eace88ac73d51ec23
7104Author: Jamey Sharp <jamey@minilop.net>
7105Date:   Fri Feb 24 01:04:48 2006 -0800
7106
7107    Quit using "-include config.h": use #ifdef HAVE_CONFIG_H etc. like everyone else.
7108
7109commit e1c2777abac0479ebdf06f2005120d25fff53935
7110Author: Jamey Sharp <jamey@minilop.net>
7111Date:   Fri Feb 24 00:59:08 2006 -0800
7112
7113    Coalesce readn into _xcb_in_read and simplify.
7114
7115commit 3f8d0bd5322749132626e8f203017b6da6448fd0
7116Author: Jamey Sharp <jamey@minilop.net>
7117Date:   Fri Feb 24 00:48:18 2006 -0800
7118
7119    Move _xcb_readn to xcb_in.c and make it static. Minor change to _xcb_read_block to not depend on _xcb_readn.
7120
7121commit cdf362f33a7bc4d412231de32e37ffb65a06d3f1
7122Author: Jamey Sharp <jamey@minilop.net>
7123Date:   Fri Feb 24 00:25:34 2006 -0800
7124
7125    Bugfix: protect the output queue from being written while another thread is flushing it.
7126
7127commit 4e91ae275e46e76de64ab089d6f13c1e9b6ddee6
7128Author: Jamey Sharp <jamey@minilop.net>
7129Date:   Fri Feb 24 00:02:43 2006 -0800
7130
7131    Simplify: Always use writev. (In _xcb_out_flush, convert the output queue to a single iovec if needed.)
7132
7133commit 7f0bc778c88ab2f565cc05d5d3d5ee4c8d1388a1
7134Author: Jamey Sharp <jamey@minilop.net>
7135Date:   Thu Feb 23 22:41:59 2006 -0800
7136
7137    Factor padding out of _xcb_out_write_block and into its callers, XCBSendRequest and write_setup.
7138    This requires dynamically allocating memory in XCBSendRequest, but this
7139    malloc/free pair turns out to cause a 30% speed hit for the 'x11perf -noop'
7140    test -- so for the moment I use alloca where available and fall back to malloc
7141    on other platforms. Later I think I'll change the contract of XCBSendRequest
7142    so the caller is responsible for memory allocation, because the caller ought
7143    to always be able to stack-allocate here.
7144
7145commit 6e29e5f2ee2e6158f1a9480a83e4f906ab9c04d1
7146Author: Jamey Sharp <jamey@minilop.net>
7147Date:   Thu Feb 23 17:50:53 2006 -0800
7148
7149    Add XCBGetQueuedRequestRead for Xlib that does no syscalls, just returns whatever XCB already knows about.
7150
7151commit 26ac6292ba0535ac3747d23f2f4d284c4b5f42ba
7152Author: Jamey Sharp <jamey@minilop.net>
7153Date:   Thu Feb 23 15:29:40 2006 -0800
7154
7155    Minor performance fix: Change the contract on XCBGetRequestSent so that it does not waste time re-locking. This is for Xlib, and Xlib has already locked.
7156
7157commit a736674943295245ccb90865c13d2b75dc6ecccb
7158Author: Jamey Sharp <jamey@minilop.net>
7159Date:   Thu Feb 23 14:57:46 2006 -0800
7160
7161    Minor performance fix: Only rearrange buffers for BIG-REQUESTs.
7162
7163commit e866bed9348bf3ffd480fd6ec329fd8b9581c328
7164Author: Jamey Sharp <jamey@minilop.net>
7165Date:   Thu Feb 23 14:32:11 2006 -0800
7166
7167    Move request_written update back where it was for now: doing it early can cause XCBWaitForReply to wrongly believe that the request has been flushed. Eventually, we should fix bug #6021.
7168
7169commit 1b83f8f8f326eca9d8852c82dd36696f81a720dc
7170Author: Jamey Sharp <jamey@minilop.net>
7171Date:   Thu Feb 23 14:30:08 2006 -0800
7172
7173    Remove _xcb_assert_valid_sequence. One test is trivially true, and the other may be temporarily violated without anything bad happening.
7174
7175commit 55c1842686d2e668708cd106b5e08847df0184c3
7176Author: Jamey Sharp <jamey@minilop.net>
7177Date:   Thu Feb 23 12:48:27 2006 -0800
7178
7179    Move _xcb_write and _xcb_writev to xcb_out.c and make them static, since only _xcb_out_write calls them.
7180
7181commit 213b5725928ccf8aedc807cc40a261b2d5431247
7182Author: Jamey Sharp <jamey@minilop.net>
7183Date:   Thu Feb 23 12:34:08 2006 -0800
7184
7185    Ignore test byproducts.
7186
7187commit 6149c7a6b57a193bc132fbc35b1772b75e5c7ca7
7188Author: Jamey Sharp <jamey@minilop.net>
7189Date:   Thu Feb 23 12:15:09 2006 -0800
7190
7191    More return value changes, and make _xcb_in_read_packet static since it is not called from outside xcb_in.c.
7192
7193commit 5b1d39e27b1a966df537ead248da5a57e7d9de97
7194Author: Jamey Sharp <jamey@minilop.net>
7195Date:   Thu Feb 23 11:50:12 2006 -0800
7196
7197    More return value changes.
7198
7199commit 662479760c42fc38c458381ee3eaed92e2c8b733
7200Author: Jamey Sharp <jamey@minilop.net>
7201Date:   Thu Feb 23 10:17:40 2006 -0800
7202
7203    Make the return value of _xcb_conn_wait boolean, instead of syscall-like.
7204
7205commit f8a8b465e080faf5479c0b38dc67cc9b9ae24927
7206Author: Jamey Sharp <jamey@minilop.net>
7207Date:   Wed Feb 22 23:38:16 2006 -0800
7208
7209    Bugfix: move request_written update *before* _xcb_conn_wait in _xcb_out_flush. Otherwise a reply may be read before we record that we have sent the request, and then XCB gets... confused.
7210
7211commit e0a35783837e0d4974cfa20c6a7a073698f3b0a5
7212Author: Jamey Sharp <jamey@minilop.net>
7213Date:   Wed Feb 22 23:11:36 2006 -0800
7214
7215    Remove USE_THREAD_ASSERT compile option. _xcb_conn_wait can no longer be re-entered, since we have no callback hooks now.
7216
7217commit a7d749ec3fd3303a4e7ace9d4f0f1672f9310ef2
7218Author: Jamey Sharp <jamey@minilop.net>
7219Date:   Wed Feb 22 23:09:29 2006 -0800
7220
7221    Remove vestiges of adjacent request combining implementation. It is very dead.
7222
7223commit 06c788932bb635da79076728927b7b93f64037c1
7224Author: Jamey Sharp <jamey@minilop.net>
7225Date:   Mon Feb 20 00:41:39 2006 -0800
7226
7227    Control debugging, optimization, and warning flags all independently.
7228
7229commit 3f98dae4a8274f2430c4967f8354356ef7c45024
7230Merge: e346f8c f825a32
7231Author: Jamey Sharp <jamey@minilop.net>
7232Date:   Sat Feb 18 23:57:18 2006 -0800
7233
7234    Merge branch 'master' of git+ssh://git.freedesktop.org/git/xcb
7235
7236commit e346f8c8efe6f931aa43026087d0ea406258c094
7237Author: Jamey Sharp <jamey@minilop.net>
7238Date:   Sat Feb 18 23:57:14 2006 -0800
7239
7240    Update .gitignores for .o files and autofoo stuff.
7241
7242commit f825a32135fa613dd6b6dd8553e366d8125bd7a4
7243Author: Eric Anholt <anholt@FreeBSD.org>
7244Date:   Sat Feb 18 23:05:32 2006 -0800
7245
7246    Add missing entries to .gitignore files.
7247
7248commit 9e013b564cc4479802c51f79ea5054d5f25edacc
7249Merge: d16efb5 7474473
7250Author: Eric Anholt <anholt@FreeBSD.org>
7251Date:   Sat Feb 18 22:57:42 2006 -0800
7252
7253    Merge branch 'master' of git+ssh://anholt@git.freedesktop.org/git/xcb
7254
7255commit d16efb51915d9661788c96140635514cf6314d46
7256Author: Eric Anholt <anholt@FreeBSD.org>
7257Date:   Sat Feb 18 22:56:03 2006 -0800
7258
7259    Move .cvsignore to .gitignore.
7260
7261commit 7474473f3312597f6de736b8f25cedc433427092
7262Author: Jamey Sharp <jamey@minilop.net>
7263Date:   Sat Feb 18 20:03:35 2006 -0800
7264
7265    Quit defining _XOPEN_SOURCE. We never needed it...
7266
7267commit 1d977c7b2d519e22f319075563e7faf4bbd31d58
7268Author: Jamey Sharp <jamey@id.minilop.net>
7269Date:   Sat Feb 18 19:23:33 2006 -0800
7270
7271    Remove the old ChangeLog file. GIT makes that obsolete.
7272
7273commit 5b7182c659391160239467f1041a1d755db45bd3
7274Author: Jamey Sharp <jamey@minilop.net>
7275Date:   Sat Feb 18 18:12:40 2006 -0800
7276
7277    Workaround X server bug, fd.o #3210: if a GLXGetFBConfigs request is sent, fix the length field in the reply.
7278
7279commit 47ceed78612d48dcda62cc2686fc527d61abe38b
7280Author: Josh Triplett <josh@freedesktop.org>
7281Date:   Sat Feb 18 16:49:41 2006 -0800
7282
7283    Remove xcl and CVSROOT.
7284