ChangeLog revision 75ebec6d
1commit 3f0de269abe59353acbd7a5587d68ce0da91db67
2Author: Hans de Goede <hdegoede@redhat.com>
3Date:   Thu Jan 23 11:47:25 2014 +0100
4
5    xtrans 1.3.3
6    
7    Signed-off-by: Hans de Goede <hdegoede@redhat.com>
8
9commit 8f3bbed42c308f9c90293f23b7eaceff006aa232
10Author: Jon TURNEY <jon.turney@dronecode.org.uk>
11Date:   Wed Jul 10 16:29:12 2013 +0100
12
13    Add TransIsListening()
14    
15    libxtrans provides TransNoListen() to set the 'don't listen' flag for a
16    particular transport, but there is no interface to query the state of that flag
17    
18    This is a bit of a problem for the XWin server, as it wants to start some helper
19    clients (for clipboard integration and integrated window management), so needs
20    to know what transports the server is listening on to construct appropriate
21    display names for those clients.
22    
23    Add TransIsListening() to discover if TransNoListen() has been called for a
24    particular protocol or not
25    
26    HdG:
27    -Invert the final check so that TransIsListening returns True when
28     TRANS_NOLISTEN is not set, as one would expect of it.
29    -Make the protocol argument a const char * as similar functions do
30    -Fix "warning: too many arguments for format" warning
31    
32    Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
33    Signed-off-by: Hans de Goede <hdegoede@redhat.com>
34
35commit e1e6121a1638d43d9929589b4723da2b38cb6b44
36Author: Łukasz Stelmach <l.stelmach@samsung.com>
37Date:   Mon Nov 25 11:11:54 2013 +0100
38
39    Enable systemd socket activation
40    
41    Receive file descriptors of open sockets from systemd instead of
42    creating them.
43    
44    Signed-off-by: Łukasz Stelmach <l.stelmach@samsung.com>
45    Cc: Kyungmin Park <kyungmin.park@samsung.com>
46    Cc: MyungJoo Ham <myungjoo.ham@samsung.com>
47    Cc: Piort Bereza <p.bereza@samsung.com>
48    Cc: Karol Lewandowski <k.lewandowsk@samsung.com>
49    Cc: Lennart Poettering <lennart@poettering.net>
50    Cc: Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
51    Cc: Peter Hutterer <peter.hutterer@who-t.net>
52    Cc: walter harms <wharms@bfs.de>
53    Signed-off-by: Hans de Goede <hdegoede@redhat.com>
54    Acked-by: Peter Hutterer <peter.hutterer@who-t.net>
55
56commit b895d45e225dd3d1bf9d598774d3ae4f29fcbc25
57Author: Łukasz Stelmach <l.stelmach@samsung.com>
58Date:   Thu Nov 28 12:57:21 2013 +0100
59
60    Define TRANS_RECEIVED flag for transports
61    
62    The flag is to be used to mark transports related to sockets
63    received from systemd.
64    
65    Signed-off-by: Łukasz Stelmach <l.stelmach@samsung.com>
66    Signed-off-by: Hans de Goede <hdegoede@redhat.com>
67    Acked-by: Peter Hutterer <peter.hutterer@who-t.net>
68
69commit 2c0a7840a28ae696e80e73157856d7a049fdf6c7
70Author: Gaetan Nadon <memsize@videotron.ca>
71Date:   Sun Dec 15 19:49:59 2013 -0500
72
73    xtrans.m4: remove AC_TYPE_SIGNAL and Imake SIGNALRETURNSINT
74    
75    Assume signal handlers return void, as C89 requires
76    
77    Drops use of autoconf's obsolete AC_TYPE_SIGNAL and Imake's even more
78    obsolete SIGNALRETURNSINT.
79    
80    None of the modules including xtrans.m4 uses RETSIGTYPE from autoconf.
81    
82    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
83
84commit 87547e43189301e3dd42feb9d7ff32a75d0e727f
85Author: Gaetan Nadon <memsize@videotron.ca>
86Date:   Sun Dec 15 16:11:00 2013 -0500
87
88    xtrans.m4: replace deprecated AC_HAVE_LIBRARY with AC_CHECK_LIB
89    
90    The #define HAVE_LIBWS2_32 is still done and the lib ws2_32 is
91    prepended to LIBS if found.
92    
93    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
94
95commit 88433eb1abe887000d34315c2f55aa42fcddfdee
96Author: Gaetan Nadon <memsize@videotron.ca>
97Date:   Sun Dec 15 15:36:48 2013 -0500
98
99    xtrans.m4: fix warning by replacing obsolete AC_HELP_STRING
100    
101    with AS_HELP_STRING
102    
103    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
104
105commit 9487701904b71985549f60c9d8bc5df48682b55a
106Author: Mark Kettenis <kettenis@openbsd.org>
107Date:   Thu Nov 21 11:55:17 2013 +0100
108
109    Don't restrict FD passing to Linux & Solaris
110    
111    Signed-off-by: Mark Kettenis <kettenis@openbsd.org>
112    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
113    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
114
115commit 8b2c8aabe27bcaa4de6432b53c4a1296010ea823
116Author: Mark Kettenis <kettenis@openbsd.org>
117Date:   Mon Nov 11 23:18:01 2013 +0100
118
119    Fix alignment issues in FD passing code
120    
121    A char array on the stack is not guaranteed to have more than byte
122    alignment.  This means that casting it to a 'struct cmsghdr' and
123    accessing its members may result in unaligned access.  This will
124    generate SIGBUS on strict alignment architectures like OpenBSD/sparc64.
125    The solution is to use a union to force proper alignment.
126    
127    Signed-off-by: Mark Kettenis <kettenis@openbsd.org>
128    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
129
130commit 81662d2018a35a161a5e9707563ee7f503f8d3e0
131Author: Mark Kettenis <kettenis@openbsd.org>
132Date:   Mon Nov 11 23:16:15 2013 +0100
133
134    Remove unused static inlines
135    
136    Signed-off-by: Mark Kettenis <kettenis@openbsd.org>
137    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
138
139commit 0153d1670e4a1883e1bb6dd971435d6268eac5ba
140Author: Alan Coopersmith <alan.coopersmith@oracle.com>
141Date:   Thu Nov 7 20:16:53 2013 -0800
142
143    xtrans 1.3.2
144    
145    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
146
147commit 426049c30162ed620cc16bb58edef6aac4e2ee5d
148Author: Alan Coopersmith <alan.coopersmith@oracle.com>
149Date:   Thu Nov 7 19:17:44 2013 -0800
150
151    Allow XTRANS_SEND_FDS on Solaris as well
152    
153    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
154
155commit 76b4f4430f9a857a1b54bfde9ef57a95b87789f5
156Author: Alan Coopersmith <alan.coopersmith@oracle.com>
157Date:   Wed Nov 6 22:34:03 2013 -0800
158
159    Check if we need to define _XOPEN_SOURCE for struct msghdr.msg_control
160    
161    Required to expose the structure members in Solaris headers, since it
162    was an XPG4/UNIX95 addition to the Solaris ABI.
163    
164    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
165
166commit 32070a64ba99fb89ec039e26444b1e026d6a978e
167Author: Alan Coopersmith <alan.coopersmith@oracle.com>
168Date:   Wed Nov 6 21:52:21 2013 -0800
169
170    Add stubs for send/recv fd functions in local transports
171    
172    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
173
174commit 08bf85958fab64951a9ba9e27dcb6b8eb818cc7e
175Author: Keith Packard <keithp@keithp.com>
176Date:   Thu Nov 7 18:04:30 2013 -0800
177
178    Switch to CMSG_* macros for FD passing
179    
180    This should be portable to non-Linux systems
181    
182    Signed-off-by: Keith Packard <keithp@keithp.com>
183    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
184    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
185
186commit 6b54b5cf8086f127aa87096e2bdd2263d1c81683
187Author: Keith Packard <keithp@keithp.com>
188Date:   Thu Nov 7 03:49:05 2013 -0800
189
190    Actually disable all of the FD passing code unless XTRANS_SEND_FDS is set
191    
192    Stick all of the functions relating to FD passing inside
193    
194    Signed-off-by: Keith Packard <keithp@keithp.com>
195
196commit f3709f3e0b883a0b4956313f89fa931e9264c346
197Author: Keith Packard <keithp@keithp.com>
198Date:   Wed Nov 6 23:16:11 2013 -0800
199
200    Update to version 1.3.1
201    
202    Signed-off-by: Keith Packard <keithp@keithp.com>
203
204commit 074614940c570524e1446f55fc12a64415057e1f
205Author: Mark Kettenis <kettenis@openbsd.org>
206Date:   Wed Nov 6 23:13:28 2013 -0800
207
208    Don't include file descriptor passing code by default
209    
210    Leave it up to the consumer to request this functionality by defining
211    XTRANS_SEND_FDS.
212    
213    Signed-off-by: Mark Kettenis <kettenis@openbsd.org>
214    Reviewed-by: Keith Packard <keithp@keithp.com>
215    Signed-off-by: Keith Packard <keithp@keithp.com>
216    
217    v2 - make sure this is only defined on systems where the code actually
218    works (Linux for now)
219
220commit a7094c389ac9fd5ca265996f76eb55cb1133974b
221Author: Keith Packard <keithp@keithp.com>
222Date:   Sat Nov 2 19:23:41 2013 -0700
223
224    Add SEND_FDS version of Readv
225    
226    Now that we've found that libFS uses readv, we can test whether this
227    readv implementation works correctly.
228    
229    Signed-off-by: Keith Packard <keithp@keithp.com>
230
231commit 58151f63553faf81babd1371770b7a7f33cecac1
232Author: Keith Packard <keithp@keithp.com>
233Date:   Sat Nov 2 19:10:11 2013 -0700
234
235    Revert "Remove 'Readv' interface"
236    
237    This reverts commit 9e8d99c2e27f2c8acbbfb5b760649aa1bfad665e.
238    
239    libFS still uses this API...
240
241commit 1fb0fd555a16dd8fce4abc6d3fd22b315f46762a
242Author: Keith Packard <keithp@keithp.com>
243Date:   Thu Oct 31 17:21:53 2013 -0700
244
245    Update to version 1.3.0
246    
247    Adds FD passing interfaces and pulls in current patches past 1.2.7
248    
249    Signed-off-by: Keith Packard <keithp@keithp.com>
250
251commit adf920aa25c1709998c7c9276927061bd58e2dfc
252Author: Keith Packard <keithp@keithp.com>
253Date:   Tue Jan 8 16:47:05 2013 -0800
254
255    Add APIs to send file descriptors through the network
256    
257    Exposes new TRANS(SendFd)/TRANS(RecvFd) APIs.
258    
259    Signed-off-by: Keith Packard <keithp@keithp.com>
260
261commit 9e8d99c2e27f2c8acbbfb5b760649aa1bfad665e
262Author: Keith Packard <keithp@keithp.com>
263Date:   Fri Jan 18 16:47:30 2013 -0800
264
265    Remove 'Readv' interface
266    
267    No-one uses this, so there's no reason for it to be in the library
268    
269    Signed-off-by: Keith Packard <keithp@keithp.com>
270
271commit f6a161f2a003f4da0a2e414b4faa0ee0de0c01f0
272Author: Łukasz Stelmach <l.stelmach@samsung.com>
273Date:   Tue Jul 9 16:24:43 2013 +0200
274
275    Add const qualifier to unix_nolisten
276    
277    Signed-off-by: Łukasz Stelmach <l.stelmach@samsung.com>
278    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
279    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
280    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
281
282commit bd53f4c8543faf910a7a151241ee07661b4d57ad
283Author: Alan Coopersmith <alan.coopersmith@oracle.com>
284Date:   Sun Jan 27 22:11:40 2013 -0800
285
286    Docs: Drop pre-C89 TRANS() from docs since it's no longer in the headers
287    
288    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
289
290commit 3c4e0455425d5afd546c4a3f2cc9f8c7e60f2fca
291Author: Alan Coopersmith <alan.coopersmith@oracle.com>
292Date:   Sun Jan 27 21:39:34 2013 -0800
293
294    Docs: convert function synopses to docbook funcsynopsis markup
295    
296    Also add some cross-reference links and various other markup improvements.
297    
298    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
299
300commit d9f3728ff74ceb956f6cf8dc24b38611f9a4868a
301Author: Colin Walters <walters@verbum.org>
302Date:   Wed Jan 4 17:37:06 2012 -0500
303
304    autogen.sh: Implement GNOME Build API
305    
306    http://people.gnome.org/~walters/docs/build-api.txt
307    
308    Signed-off-by: Adam Jackson <ajax@redhat.com>
309
310commit 575e1e901ca842ba8ff7417f48175fb6a8d70859
311Author: Adam Jackson <ajax@redhat.com>
312Date:   Tue Jan 15 14:28:48 2013 -0500
313
314    configure: Remove AM_MAINTAINER_MODE
315    
316    Signed-off-by: Adam Jackson <ajax@redhat.com>
317
318commit ec3136232f7ce930f9ca812b6ab42a71b60af4af
319Author: Alan Coopersmith <alan.coopersmith@oracle.com>
320Date:   Wed Dec 26 19:08:16 2012 -0800
321
322    Remove unused TLI ("STREAMSCONN") code from xtrans
323    
324    Has never been converted to build in modular builds, so has been unusable
325    since X11R7.0 release in 2005.  All known platforms with TLI/XTI support
326    that X11R7 & later releases run on also have (and mostly prefer) BSD
327    socket support for their networking API.
328    
329    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
330
331commit 8ce5ecd33b05becc054dbd07f87e385165b6c979
332Author: Alan Coopersmith <alan.coopersmith@oracle.com>
333Date:   Thu Mar 22 20:04:07 2012 -0700
334
335    xtrans 1.2.7
336    
337    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
338
339commit f8eea0bf256de59602790b6a7c7877b31520440f
340Author: Matt Dew <marcoz@osource.org>
341Date:   Wed Jan 11 22:23:32 2012 -0700
342
343    informaltable cleanup
344    
345    On certain tables, add top and bottom borders to table
346    header and a bottom border to the table. This matches
347    what those tables in the old pdfs looked like.
348    
349    the <?dbfo keep-together='always'> prevents tables from
350    splitting across pages. Useful for tiny tables.
351    
352    Converting the colwidth to a floating point,
353    IE, 1* -> 1.0* cleans up these build errors:
354    WARNING: table-layout="fixed" and column-width unspecified
355    => falling back to proportional-column-width(1)
356    
357    Signed-off-by: Matt Dew <marcoz@osource.org>
358
359commit 6086f6c1d0e0a1c9e590879acb2319dea0eb6e96
360Author: Robert Bragg <robert@linux.intel.com>
361Date:   Mon Dec 12 00:30:43 2011 +0000
362
363    Xtranssock.c: avoid buffer overrun in SocketReopen
364    
365    This function was constructing an address from a port string allocating
366    a buffer according to the size of the string but then later copying
367    the address according to sizeof(struct sockaddr).
368    
369    This patch ensures that we allocate a struct sockaddr buffer with enough
370    space for the port string to be copied into sa_data[] and uses that
371    combined length to determine how much should be copied at the end of the
372    function.
373    
374    This fixes a crash when using xwayland which uses ListenOnOpenFD() that
375    will call _XSERVTransReopenCOTSServer() with a short port string like
376    ":1".
377    
378    Signed-off-by: Robert Bragg <robert@linux.intel.com>
379    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
380    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
381
382commit a04a45cb94f7f569e6dd77df93258fa167d0a4ea
383Author: Alan Coopersmith <alan.coopersmith@oracle.com>
384Date:   Wed Nov 30 18:40:46 2011 -0800
385
386    Remove unnecessary casts on malloc, calloc & free calls
387    
388    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
389    Reviewed-by: Mark Kettenis <kettenis@openbsd.org>
390
391commit a0bfb4fefd20b396e3d88eff0c60602fc436dad5
392Author: Alan Coopersmith <alan.coopersmith@oracle.com>
393Date:   Wed Nov 30 18:11:15 2011 -0800
394
395    Replace malloc(strlen)+strcpy with strdup
396    
397    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
398    Reviewed-by: Mark Kettenis <kettenis@openbsd.org>
399
400commit b89e1b45198c48996750b5da3d715c10f974243f
401Author: Alan Coopersmith <alan.coopersmith@oracle.com>
402Date:   Wed Nov 30 18:05:05 2011 -0800
403
404    Finish conversion to standard C allocation functions
405    
406    Commit 4ac40cd5451 started this, by no longer special casing the
407    xserver to include it's former custom allocation functions, this
408    just takes the remaining #defines and pre-substitutes them into
409    the code.
410    
411    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
412
413commit ff992be7b05483f9a0586a27ee0edb6d99580b84
414Author: Alan Hourihane <alanh@fairlite.co.uk>
415Date:   Thu Dec 1 12:04:22 2011 +0000
416
417    Fix some resource & memory leaks in libxtrans.
418    
419    Signed-off-by: Alan Hourihane <alanh@vmware.com>
420    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
421    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
422
423commit 29c9e101f7ad72556aa6b3dbc17d66a1ace9b2b1
424Author: Matt Dew <marcoz@osource.org>
425Date:   Tue Oct 4 21:59:50 2011 -0600
426
427    Cleanup IDs and links in doc
428    
429    1 - fix the capitalization of the ID attributes to match either the
430         <title> or <funcdef> string it goes with.
431    2 - fix any <linkend>'s that were affected by 1.
432    3 - any <function> in the docs that has an actual funcdef,
433    will become an olink.
434    
435    Signed-off-by: Matt Dew <marcoz@osource.org>
436
437commit 0f942e5f015cb3270e6f2e17c308bee894cb5fe3
438Author: Alan Coopersmith <alan.coopersmith@oracle.com>
439Date:   Sun Sep 25 11:39:13 2011 -0700
440
441    Convert a bunch of sprintf calls to snprintf
442    
443    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
444    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
445
446commit eb9a8904fbef61a57ff01c90627ead57055ed62b
447Author: Alan Coopersmith <alan.coopersmith@oracle.com>
448Date:   Sun Sep 25 11:18:26 2011 -0700
449
450    Add const attributes to fix gcc -Wwrite-strings warnings
451    
452    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
453    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
454
455commit 4e610d4bbcf29cca9dc5dbad29ca820996aaa8c7
456Author: Alan Coopersmith <alan.coopersmith@oracle.com>
457Date:   Sun Sep 25 10:59:45 2011 -0700
458
459    Fix warning: unused variable 'tmpport' with various configurations
460    
461    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
462    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
463
464commit a74c5d915c3095059356f83d1b845192e5c472c2
465Author: Alan Coopersmith <alan.coopersmith@oracle.com>
466Date:   Sun Sep 25 10:57:00 2011 -0700
467
468    Add _X_UNUSED attributes to silence unused parameter warnings
469    
470    Not all the transport variants use all the arguments to every function,
471    but as long as one transport type needs it, they all get the args passed.
472    
473    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
474    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
475
476commit 64f765de138cb9b757df315469b3136d32222ea2
477Author: Alan Coopersmith <alan.coopersmith@oracle.com>
478Date:   Sat Sep 24 00:04:40 2011 -0700
479
480    Mark __xtransname strings for debug messages as const char *
481    
482    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
483    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
484
485commit ea921932dae7049b231bead7f8f3f088d7beaf9e
486Author: Alan Coopersmith <alan.coopersmith@oracle.com>
487Date:   Fri Sep 23 23:03:09 2011 -0700
488
489    Fix unused variable warnings
490    
491    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
492    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
493
494commit c1968d10f97d62ac05d698822c2688151f70a9eb
495Author: Alan Coopersmith <alan.coopersmith@oracle.com>
496Date:   Fri Sep 23 22:59:11 2011 -0700
497
498    Fix warning: ISO C90 forbids mixed declarations and code
499    
500    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
501    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
502
503commit 225c45b3accab56fab361104a3d14b80f6cec954
504Author: Alan Coopersmith <alan.coopersmith@oracle.com>
505Date:   Fri Sep 23 22:57:56 2011 -0700
506
507    Fix printf format string warnings
508    
509    Now that prmsg lets arguments types actually be checked, fix
510    the warnings found.
511    
512    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
513    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
514
515commit b1b69ce8e8e4fe0f190c8bd85b537309e71055c8
516Author: Alan Coopersmith <alan.coopersmith@oracle.com>
517Date:   Fri Sep 23 22:35:03 2011 -0700
518
519    Convert PRMSG macro to prmsg inline function
520    
521    Allows using varargs to have the correct number of arguments passed to
522    get rid of the many gcc warnings about variable printf format strings,
523    and to reduce the duplication from having 5 implementations of the
524    PRMSG macro depending on the debug options defined & output method used.
525    
526    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
527    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
528
529commit cbdb434033da1725a69014cc6e4d89c691a6fd95
530Author: Alan Coopersmith <alan.coopersmith@oracle.com>
531Date:   Sat Sep 24 07:43:07 2011 -0700
532
533    Fix warnings about static functions declared but never defined
534    
535    Add #define XTRANS_TRANSPORT_C to transport.c and check for it
536    before making static function declarations and other bits needed
537    only when compiling the Xtrans code itself, not from other sources
538    that include the Xtransint.h header for the struct definitions.
539    
540    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
541    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
542
543commit cf39d738086b0a7c668fb3720d64de8d711a1a97
544Author: Arvind Umrao <arvind.umrao@oracle.com>
545Date:   Tue Sep 20 22:56:52 2011 +0530
546
547    Removing SUN specific code, let solaris create .X11-pipe with sticky bit on
548    
549    Alan told me, named pipe support was added around Solaris 2.6 when that was a much better performing transport than Unix sockets on the Solaris kernels of the time. By Solaris 10, Unix sockets had been reimplemented in the kernel to be faster, so they became the default again. In Solaris 11, we don't even have named pipe support in the libxcb library that implements X client connection code now, so the named pipes would only be accessed by code with a different libX11 or a statically linked libX11 from Solaris 2.6-9
550    
551    Signed-off-by: Arvind Umrao <arvind.umrao@oracle.com>
552    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
553
554commit a477713b89686480cf59a9c75c0aaeeba2386d0a
555Author: Gaetan Nadon <memsize@videotron.ca>
556Date:   Tue Sep 20 18:56:47 2011 -0400
557
558    specs: regroup <author> <editor> <othercredit> under authorgroup
559    
560    Some elements are not displayed when outside authorgroup
561    
562    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
563
564commit 1ad48fb9bc18d0c7a8fbec1d2cd232877e945047
565Author: Gaetan Nadon <memsize@videotron.ca>
566Date:   Tue Sep 20 15:47:09 2011 -0400
567
568    specs: refactor copyright legal text for multi licensing
569    
570    we can use <copyright> markup for the first holder
571    
572    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
573
574commit bd93bf86fd914a9cc54e2bedec5b063e5a38b732
575Author: Gaetan Nadon <memsize@videotron.ca>
576Date:   Mon Sep 19 10:58:40 2011 -0400
577
578    doc: support multi licensed copyright notice and license text
579    
580    For documentation having multiple licenses, the copyright and legalnotice
581    elements sequence cannot instantiated multiple times.
582    The copyright notice and license text are therefore coded inside a
583    legalnotice element. The role attribute on the paragraph is used to allow
584    styling of the copyright notice text which should not be italicized.
585    
586    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
587
588commit eb9ec458b7fb5332f7ae7b8faf59443a9075ec60
589Author: Alan Coopersmith <alan.coopersmith@oracle.com>
590Date:   Fri Sep 16 22:54:41 2011 -0700
591
592    Strip trailing whitespace
593    
594    Performed with: find * -type f | xargs perl -i -p -e 's{[ \t]+$}{}'
595    git diff -w & git diff -b show no diffs from this change
596    
597    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
598
599commit 36174eb06e805fa51c9c2e9e914fdfad4a99f50f
600Author: Gaetan Nadon <memsize@videotron.ca>
601Date:   Wed Sep 14 15:29:19 2011 -0400
602
603    docs: fix authors affiliation
604    
605    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
606
607commit 9b6c2473be2848ce0a4986ddaa59e5f5ef028bfc
608Author: Gaetan Nadon <memsize@videotron.ca>
609Date:   Mon Sep 12 16:37:24 2011 -0400
610
611    docs: use the &fullrelvers; entity to set X11 release information
612    
613    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
614
615commit b5754cdf64f3396a5853413eda1943cf75ff3cbd
616Author: Gaetan Nadon <memsize@videotron.ca>
617Date:   Sun Sep 11 19:49:54 2011 -0400
618
619    docs: remove <productnumber> which is not used by default
620    
621    This element is not rendered by default on the title. A template
622    customization is required to display it.
623    X Window System does not have a product number.
624    
625    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
626
627commit 20f338c548e5fcb16650a4e2c25c2008c1fdac36
628Author: Gaetan Nadon <memsize@videotron.ca>
629Date:   Thu Sep 8 20:00:00 2011 -0400
630
631    docbook.am: embed css styles inside the HTML HEAD element
632    
633    Rather than referring to the external xorg.css stylesheet, embed the content
634    of the file in the html output produced. This is accomplished by using
635    version 1.10 of xorg-xhtml.xsl.
636    
637    This makes the whole html docs tree much more relocatable.
638    In addition, it eliminates xorg.css as a runtime file which makes
639    xorg-sgml-doctools a build time only package.
640    
641    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
642
643commit 8eb827af1b57ec52be183cddaf32257968c02878
644Author: Gaetan Nadon <memsize@videotron.ca>
645Date:   Wed Sep 7 10:31:04 2011 -0400
646
647    docbook.am: global maintenance update - entities, images and olinking
648    
649    Adding support in libX11 for html chunking caused a reorg of docbook.am
650    as well as the xorg-sgml-doctools masterdb for olinking.
651    The parameter img.src.path is added for pdf images.
652    A searchpath to the root builddir is added for local entities, if present.
653    
654    The docbook.am makefile hides all the details and is identical for
655    all 22 modules having DocBook documentation. It is included by a thin
656    Makefile.am which requires no docbook knowledge.
657    
658    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
659
660commit b710cdadc92fc212af361bee48f5af6333ec3e6d
661Author: Gaetan Nadon <memsize@videotron.ca>
662Date:   Sun Jun 12 18:39:46 2011 -0400
663
664    Install xml versions of specs even if HAVE_XMLTO is false
665    
666    DocBook/XML input source is also a usefull output format that can be viewed
667    with an XML viewer or editor and by some O/S help system.
668    
669    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
670
671commit 78d1f7d29145567e11b985042e917a435bef95f9
672Author: Gaetan Nadon <memsize@videotron.ca>
673Date:   Sun Jun 5 16:27:37 2011 -0400
674
675    Install target dbs alongside generated documents
676    
677    This matches a change in xorg-sgml-docs whereby the masterdb will look for
678    the target dbs into the same location as the generated documents.
679    
680    The target dbs are now installed alongside the generated documents.
681    Previously they are installed in $prefix/sgml/X11/dbs alongside masterdb which
682    has the potential of installing outside the package prefix and cause
683    distcheck to fail when user does not have write permission in this package.
684    
685    Requires XORG_CHECK_SGML_DOCTOOLS(1.8) which was released 2011-06-11
686
687commit e05d7abbcf880099058b699ac52f65edcac95582
688Author: Jeremy Huddleston <jeremyhu@apple.com>
689Date:   Sun Apr 24 19:39:26 2011 -0700
690
691    Silence warnings when building with clang
692    
693    /usr/X11/include/X11/Xtrans/Xtransint.h:349:12: error: unused function 'is_numeric' [-Werror,-Wunused-function]
694    static int is_numeric (
695              ^
696    /usr/X11/include/X11/Xtrans/Xtransint.h:354:12: error: unused function 'trans_mkdir' [-Werror,-Wunused-function]
697    static int trans_mkdir (
698              ^
699    
700    In file included from /usr/X11/include/X11/Xtrans/transport.c:67:
701    ...
702    fatal error: too many errors emitted, stopping now [-ferror-limit=]
703    
704    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
705
706commit 27ae0ad1406a33919ea9f76034495bca7cccf051
707Author: Gaetan Nadon <memsize@videotron.ca>
708Date:   Sun Feb 27 15:06:18 2011 -0500
709
710    Documentation: add Docbook external references support
711    
712    When writing technical documentation, it is often necessary to cross
713    reference to other information. When that other information is not in the
714    current document, additional support is needed, namely <olink>.
715    
716    A new feature with version 1.7 of xorg-sgml-doctools adds references to
717    other documents within or outside this package.
718    
719    This patch adds technical support for this feature but does not change
720    the content of the documentation as seen by the end user.
721    
722    Each book or article must generate a database containing the href
723    of sections that can be referred to from another document. This database
724    is installed in DATAROOTDIR/sgml/X11/dbs. There is a requirement that
725    the value of DATAROOTDIR for xorg-sgml-doctools and for the package
726    documentation is the same. This forms a virtual document tree.
727    
728    This database is consulted by other documents while they are being generated
729    in order to fulfill the missing information for linking.
730    Refer to the xorg-sgml-doctools for further technical information.
731    
732    Co-authored-by: Matt Dew <marcoz@osource.org>
733    
734    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
735
736commit cc199c31465b258032bdb9083879699202db7ee9
737Author: Adam Jackson <ajax@redhat.com>
738Date:   Mon Feb 21 12:44:06 2011 -0500
739
740    Remove a decnet leftover
741    
742    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
743    Reviewed-by: Daniel Stone <daniel@fooishbar.org>
744    Signed-off-by: Adam Jackson <ajax@redhat.com>
745
746commit 91620213d2bd75fe322df06c5b6f55b85a10e55a
747Author: Adam Jackson <ajax@redhat.com>
748Date:   Tue Mar 15 15:47:08 2011 -0400
749
750    Remove K&R token pasting macros
751    
752    Reviewed-by: Julien Cristau <jcristau@debian.org>
753    Signed-off-by: Adam Jackson <ajax@redhat.com>
754
755commit 4ac40cd5451983e6f62527700cdf9e2f8a29c013
756Author: Adam Jackson <ajax@redhat.com>
757Date:   Tue Mar 15 15:45:56 2011 -0400
758
759    Don't special-case allocation for the X server
760    
761    xserver uses malloc/free directly now, don't route through the Xalloc
762    wrappers.
763    
764    Reviewed-by: Julien Cristau <jcristau@debian.org>
765    Signed-off-by: Adam Jackson <ajax@redhat.com>
766
767commit 638caa2053330038c5ba5a5682ff02be6aa0faa6
768Author: Gaetan Nadon <memsize@videotron.ca>
769Date:   Wed Feb 2 11:43:46 2011 -0500
770
771    config: comment, minor upgrade, quote and layout configure.ac
772    
773    Group statements per section as per Autoconf standard layout
774    Quote statements where appropriate.
775    Autoconf recommends not using dnl instead of # for comments
776    
777    Use AC_CONFIG_FILES to replace the deprecated AC_OUTPUT with parameters.
778    Add AC_CONFIG_SRCDIR([Makefile.am])
779    
780    This helps automated maintenance and release activities.
781    Details can be found in http://wiki.x.org/wiki/NewModuleGuidelines
782
783commit a26753b7b20cd5cadc1e7fa007cec063f39a49e8
784Author: Alan Coopersmith <alan.coopersmith@oracle.com>
785Date:   Thu Dec 16 23:59:20 2010 -0800
786
787    doc: Correct column count in transport configuration table
788    
789    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
790
791commit 59f57d1a19d4091fef115b9eafa139bf620332cb
792Author: Alan Coopersmith <alan.coopersmith@oracle.com>
793Date:   Mon Nov 8 16:33:45 2010 -0800
794
795    xtrans 1.2.6
796    
797    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
798
799commit 05cd71c899e83022147f27085ee652d26f5462cb
800Author: Jesse Adkins <jesserayadkins@gmail.com>
801Date:   Sat Nov 6 12:53:24 2010 -0700
802
803    Remove ISCFuncs, fix SCOFuncs inclusion (bug 23324)
804    
805    ISCFuncs was removed by commit 339ddc413559d4cb117a72f87b2a70dae6911c32.
806    SCOFuncs should be for SCO only, instead of !sun.
807    
808    Also, remove comments that suggest ISC support.
809    
810    Signed-off-by: Jesse Adkins <jesserayadkins@gmail.com>
811    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
812    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
813
814commit 0e5a66c82535dd8e9beee9fc4c42c52f90d05f50
815Author: Alan Coopersmith <alan.coopersmith@oracle.com>
816Date:   Sat Nov 6 13:22:59 2010 -0700
817
818    doc: Update for X11R7/modularization
819    
820    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
821
822commit 1858516e9f0f3e65cc3d1f6cedfe8bfa614c8082
823Author: Alan Coopersmith <alan.coopersmith@oracle.com>
824Date:   Sat Nov 6 11:22:15 2010 -0700
825
826    doc: Markup & typo cleanups
827    
828    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
829
830commit 16bdc50ca85bbae065a32647e2410a5ca47b4924
831Author: Alan Coopersmith <alan.coopersmith@oracle.com>
832Date:   Sat Nov 6 09:53:08 2010 -0700
833
834    doc: Correct legal notices
835    
836    Restore both copyright/license notices from troff version
837    Move implementation note out of legalnotice section
838    
839    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
840
841commit d01d081538d04ac60b9e14f6e2faa60fe6bed5ff
842Author: Alan Coopersmith <alan.coopersmith@oracle.com>
843Date:   Sat Nov 6 09:23:26 2010 -0700
844
845    doc: Use installed css stylesheet instead of making another copy
846    
847    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
848
849commit ea6977f4a51612172ba51c3bd35aa150ad9ff158
850Author: Alan Coopersmith <alan.coopersmith@oracle.com>
851Date:   Sat Nov 6 12:41:48 2010 -0700
852
853    Xtransint.h: Add missing ' in comment
854    
855    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
856
857commit 862d2de24950d2658158ebc4cf8307e73f80bc8d
858Author: Alan Coopersmith <alan.coopersmith@oracle.com>
859Date:   Fri Oct 29 18:22:33 2010 -0700
860
861    Sun's copyrights now belong to Oracle
862    
863    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
864
865commit cbb59ebc916d0be18c322eec782b694f4dc2e685
866Author: Gaetan Nadon <memsize@videotron.ca>
867Date:   Sun Jun 27 20:27:39 2010 -0400
868
869    Update README to reflect docs converted from nroff to DocBook XML
870    
871    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
872
873commit 3441142714b2640d1e143fcb5d089a2a42bd5321
874Author: Gaetan Nadon <memsize@videotron.ca>
875Date:   Sun Jun 27 20:21:20 2010 -0400
876
877    doc: remove trailing spaces in xtrans.xml
878    
879    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
880
881commit 7761846c7fd97f15d7207e1b9fd9d42c9e58a0c4
882Author: Gaetan Nadon <memsize@videotron.ca>
883Date:   Sat Jun 26 13:06:22 2010 -0400
884
885    doc: replace groff input format with docbook xml format
886    
887    Initial version of xtrans docbook xml.
888    Requires util-macros 1.10
889    
890    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
891
892commit 4f557036253ac5750576c88e5b9a86759a49d247
893Author: Gaetan Nadon <memsize@videotron.ca>
894Date:   Fri Jun 18 21:47:52 2010 -0400
895
896    config: XORG_WITH_GROFF: use HAVE_GROFF_HTML conditional
897    
898    Groff uses grohtml to generate html output format. This program, in turn,
899    uses a number of pnm* commands from the netpbm package, psselect
900    from the psutils package and the ghostscript package.
901    
902    These are independently installed, so they could be missing.
903    Skip the HTML output format if one of the dependencies is missing.
904    The version 1.9 of the util-macros package is required.
905    
906    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
907
908commit 1e9b958a096682b1ec111d400bd25048e3f95ed4
909Author: Alan Coopersmith <alan.coopersmith@oracle.com>
910Date:   Fri May 21 18:54:20 2010 -0700
911
912    Update README to reflect docs moved here from xorg-docs module
913    
914    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
915
916commit d400e69526c1c331e8e23893e2ba8658979376e8
917Author: Gaetan Nadon <memsize@videotron.ca>
918Date:   Mon Mar 29 14:53:49 2010 -0400
919
920    config: remove the pkgconfig pc.in file from EXTRA_DIST
921    
922    Automake always includes it in the tarball.
923    
924    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
925
926commit 373922e1529b3d55513fbc0ec24527600f7b529c
927Author: Gaetan Nadon <memsize@videotron.ca>
928Date:   Tue Feb 16 18:18:06 2010 -0500
929
930    doc: use HAVE_GROFF_MM to skip doc when 'm.tmac' macros missing
931    
932    This conditional is defined in XORG_WITH_GROFF macro.
933    
934    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
935
936commit b531ff3ed2ad841b716ba370fd43bbe8f06f1185
937Author: Gaetan Nadon <memsize@videotron.ca>
938Date:   Fri Jan 29 15:05:37 2010 -0500
939
940    doc: use new macros XORG_WITH_GROFF and PS2PDF
941    
942    These control the usage of doc tools
943    Also use XORG_ENABLE_DOCS to control generation of docs
944    
945    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
946
947commit 5922556f408fbcd14e7ad23bbe46db2ae8dcdee6
948Author: Alan Coopersmith <alan.coopersmith@sun.com>
949Date:   Thu Jan 14 21:11:43 2010 -0800
950
951    Update Sun license notices to current X.Org standard form
952    
953    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
954
955commit dab2bcdaf60977643ec55d71a81e67c1e3a162a9
956Author: Rémi Cardona <remi@gentoo.org>
957Date:   Thu Dec 17 08:31:20 2009 +0100
958
959    require autoconf 2.60 because of $(docdir) use
960    
961    Signed-off-by: Rémi Cardona <remi@gentoo.org>
962    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
963    Reviewed-by: Alan Coopersmith <alan.coopersmith@sun.com>
964    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
965
966commit 197ec0dc83e775e42fce4966142ae3a641f2db69
967Author: Gaetan Nadon <memsize@videotron.ca>
968Date:   Fri Nov 27 20:56:05 2009 -0500
969
970    Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
971    
972    Now that the INSTALL file is generated.
973    Allows running make maintainer-clean.
974
975commit 27a18fb2c9356cc44bdd892f87200c3ea230109b
976Author: Gaetan Nadon <memsize@videotron.ca>
977Date:   Wed Oct 28 14:09:11 2009 -0400
978
979    INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
980    
981    Add missing INSTALL file. Use standard GNU file on building tarball
982    README may have been updated
983    Remove AUTHORS file as it is empty and no content available yet.
984    Remove NEWS file as it is empty and no content available yet.
985
986commit 92da89326d26e0924d4c6efe2ebd26ceb527f4f7
987Author: Gaetan Nadon <memsize@videotron.ca>
988Date:   Mon Oct 26 22:08:43 2009 -0400
989
990    Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
991    
992    ChangeLog filename is known to Automake and requires no further
993    coding in the makefile.
994
995commit 9aeff40d0722b4fedc4ab9ccc1aaff75368020fe
996Author: Gaetan Nadon <memsize@videotron.ca>
997Date:   Thu Oct 22 12:34:20 2009 -0400
998
999    .gitignore: use common defaults with custom section # 24239
1000    
1001    Using common defaults will reduce errors and maintenance.
1002    Only the very small or inexistent custom section need periodic maintenance
1003    when the structure of the component changes. Do not edit defaults.
1004
1005commit f0f7c47055eecac35786ec616c7632604da204b5
1006Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
1007Date:   Wed Oct 21 12:47:27 2009 -0700
1008
1009    This is not a GNU project, so declare it foreign.
1010    
1011    On Wed, 2009-10-21 at 13:36 +1000, Peter Hutterer wrote:
1012    > On Tue, Oct 20, 2009 at 08:23:55PM -0700, Jeremy Huddleston wrote:
1013    > > I noticed an INSTALL file in xlsclients and libXvMC today, and it
1014    > > was quite annoying to work around since 'autoreconf -fvi' replaces
1015    > > it and git wants to commit it.  Should these files even be in git?
1016    > > Can I nuke them for the betterment of humanity and since they get
1017    > > created by autoreconf anyways?
1018    >
1019    > See https://bugs.freedesktop.org/show_bug.cgi?id=24206
1020    
1021    As an interim measure, replace AM_INIT_AUTOMAKE([dist-bzip2]) with
1022    AM_INIT_AUTOMAKE([foreign dist-bzip2]). This will prevent the generation
1023    of the INSTALL file. It is also part of the 24206 solution.
1024    
1025    Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
1026
1027commit 7d98b9b03c5fd5a82f9f4d215b10c0926edeab00
1028Author: Eric Sesterhenn <eric.sesterhenn@lsexperts.de>
1029Date:   Mon Oct 19 09:53:18 2009 -0700
1030
1031    Bug 24612: Memory & fd leaks in local transports
1032    
1033    X.Org bug #24612 <http://bugs.freedesktop.org/show_bug.cgi?id=24612>
1034    Patch #30548 <http://bugs.freedesktop.org/attachment.cgi?id=30548>
1035    
1036    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
1037
1038commit 1127b8ec766ed8c48cc49b0779647fb697a07ebd
1039Author: Alan Coopersmith <alan.coopersmith@sun.com>
1040Date:   Sat Oct 17 13:14:03 2009 -0700
1041
1042    xtrans 1.2.5
1043    
1044    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
1045
1046commit 628b125ff9c72ec93090005b06228690f0dd6004
1047Author: Alan Coopersmith <alan.coopersmith@sun.com>
1048Date:   Sat Oct 17 13:06:26 2009 -0700
1049
1050    Move Xtrans interface docs from xorg-docs module
1051    
1052    Only built/installed if --enable-docs is requested, since few people should
1053    be writing code using xtrans interfaces directly.
1054    
1055    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
1056
1057commit 3b0fc7a5a6d4b4b6903a9ad6685e2441f9fe83a7
1058Author: Alan Coopersmith <alan.coopersmith@sun.com>
1059Date:   Thu Oct 15 17:07:10 2009 -0700
1060
1061    Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS
1062    
1063    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
1064
1065commit 69334376346a96beb3df120a3eeeb7935923c388
1066Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
1067Date:   Thu Oct 15 15:25:58 2009 -0500
1068
1069    Silence root ownership warnings on Cygwin
1070    
1071    XWin need not be run as root, nor do Administrators have uid of 0.
1072    
1073    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
1074
1075commit d009d995d85dc499dc3f1add34da551fdf703b60
1076Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
1077Date:   Thu Oct 15 15:25:57 2009 -0500
1078
1079    Don't use -lws2_32 on Cygwin
1080    
1081    On Cygwin, both the (builtin) *NIX socket API and WinSock (via w32api) are
1082    available, but they cannot be mixed.  We use *NIX APIs for everything else,
1083    so we do not want to mix in WinSock here.
1084    
1085    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
1086
1087commit 773478581913bafa5e98a7bff3260efb0c4f2ab6
1088Author: Mikhail Gusarov <dottedmag@dottedmag.net>
1089Date:   Sat Sep 26 04:39:20 2009 +0700
1090
1091    Move xtrans.pc to /usr/share/pkg-config
1092    
1093    This fixes configuration in cross-compilation mode:
1094    pkg-config does not look for .pc in /usr/lib/pkg-config during
1095    cross-compilation to avoid picking up wrong libraries.
1096    
1097    Signed-off-by: Mikhail Gusarov <dottedmag@dottedmag.net>
1098    Acked-by: Julien Cristau <jcristau@debian.org>
1099
1100commit 336d4cfb58c784a81beca74fe03a0af0abb224ba
1101Author: Julien Cristau <jcristau@debian.org>
1102Date:   Fri Aug 7 16:58:58 2009 +0200
1103
1104    Xtranssock: assume that we have getaddrinfo if ipv6 is enabled
1105    
1106    If IPv6 is enabled at build time, assume that the C library will have
1107    getaddrinfo at runtime.
1108    
1109    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
1110
1111commit 4f82ca502d8ec33b0038700675d54539d85d723c
1112Author: Alan Coopersmith <alan.coopersmith@sun.com>
1113Date:   Fri Jul 31 17:24:25 2009 -0700
1114
1115    Version 1.2.4
1116    
1117    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
1118
1119commit e5f52f206916b7c5264b9371f9bd0113632a4a16
1120Author: Alan Coopersmith <alan.coopersmith@sun.com>
1121Date:   Thu Jul 30 16:07:39 2009 -0700
1122
1123    Fix ifdef checks for SVR4 to do the right thing on Solaris
1124    
1125    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
1126
1127commit 6d1ad967b894a37f423fd52247df5fcc3bfab1a8
1128Author: Alan Coopersmith <alan.coopersmith@sun.com>
1129Date:   Mon May 18 18:26:36 2009 -0700
1130
1131    xfs segfaults in _FontTransSocketReopen when cloning itself
1132    
1133    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
1134
1135commit 1e32f79670a6dc0baae2c2622d2b562f41266ea5
1136Author: Alan Coopersmith <alan.coopersmith@sun.com>
1137Date:   Fri Apr 24 02:10:53 2009 -0700
1138
1139    Constify path argument to trans_mkdir()
1140    
1141    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
1142
1143commit 732f3366c40c4bea258b11b96c4763f5948a4844
1144Author: Benjamin Close <Benjamin.Close@clearchain.com>
1145Date:   Mon Feb 9 16:34:00 2009 +1030
1146
1147    Update is_numeric base on the declaration change in 389e01fb51ba2d708015e27d8fc17c88a0e55802
1148    
1149    Signed-off-by: Benjamin Close <Benjamin.Close@clearchain.com>
1150
1151commit 300893171ca7ad684472e5961a7b2ba0eb291f6b
1152Author: Benjamin Close <Benjamin.Close@clearchain.com>
1153Date:   Mon Feb 9 16:33:59 2009 +1030
1154
1155    Revert "Fix "XXX declared 'static' but not defined""
1156    
1157    This reverts commit d192bac409fe5ef99fa9fb9b5a0d5f656f0f1412.
1158    
1159    When transport.c is directly include (as in the case of libICE:icetrans.c:32)
1160    Xtranssock.c must be included before Xtransutil.c in order for the socket
1161    structures to be included. Including Xtransutil.c after Xtranssock.c requires
1162    is_number and trans_mkdir to be defined.
1163    
1164    This reintroduces the warning until a cleaner solution can be found
1165    but fixes the build.
1166    
1167    Found by: Tinderbox
1168    
1169    Signed-off-by: Benjamin Close <Benjamin.Close@clearchain.com>
1170
1171commit 389e01fb51ba2d708015e27d8fc17c88a0e55802
1172Author: Alan Coopersmith <alan.coopersmith@sun.com>
1173Date:   Fri Feb 6 11:31:06 2009 -0800
1174
1175    Constify string argument to is_numeric
1176    
1177    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
1178
1179commit cca91ddaae2121f42b2d5c08867bb93df8f9de13
1180Author: Alan Coopersmith <alan.coopersmith@sun.com>
1181Date:   Fri Feb 6 11:27:02 2009 -0800
1182
1183    Fix libICE build after code motion in d192bac409...
1184    
1185    The #ifdef ICE_t case in Xtransutil.c depended on some #includes that
1186    are done in files that transport.c previously included before Xtransutil.c
1187    but are now after Xtransutil.c is included.
1188    
1189    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
1190
1191commit d192bac409fe5ef99fa9fb9b5a0d5f656f0f1412
1192Author: Tomas Carnecky <tom@dbservice.com>
1193Date:   Wed Feb 4 15:26:18 2009 +0100
1194
1195    Fix "XXX declared 'static' but not defined"
1196    
1197    The functions are declared static in Xtransint.h but are defined
1198    in Xtransutil.c. So when someone (xserver/os/connection.c)
1199    incuded Xtransint.h, gcc would throw the warning.
1200    I removed the declarations from the header and rearranged includes
1201    in transport.c so that Xtransutil.c is included just after
1202    Xtransint.h. This way the functions are still defined for the
1203    files that need them (Xtranssock.c, Xtranstli.c).
1204    
1205    Signed-off-by: Tomas Carnecky <tom@dbservice.com>
1206    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
1207
1208commit 77784ae71b6af1ec270198cfdd5f2eab1fe4a0c0
1209Author: Tomas Carnecky <tom@dbservice.com>
1210Date:   Wed Feb 4 15:22:28 2009 +0100
1211
1212    Fix "warning: format not a string literal and no format arguments"
1213    
1214    Signed-off-by: Tomas Carnecky <tom@dbservice.com>
1215    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
1216
1217commit c893bc4aa7a674c6888aacc8249b3c4a8f6bf12a
1218Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
1219Date:   Fri Jan 30 18:47:32 2009 -0200
1220
1221    Janitor: Correct make distcheck and compiler warnings.
1222    
1223      Compiler warnings are spread on other packages, with a
1224    warning in the format:
1225    /usr/include/X11/Xtrans/Xtranssock.c:548: warning: 'ciptr' may be used uninitialized in this function
1226    so the code was slightly changed so that the compiler
1227    would not "think" it could be used without initialization.
1228
1229commit 1cf4a1a6716f2c0adf5ee4d0a194a1013be53105
1230Author: Alan Coopersmith <alan.coopersmith@sun.com>
1231Date:   Sun Jan 11 10:54:52 2009 -0800
1232
1233    Version 1.2.3
1234
1235commit d0c5592142369afa93dcd58ca6f390dbd127a28a
1236Author: Alan Coopersmith <alan.coopersmith@sun.com>
1237Date:   Sun Jan 11 10:51:49 2009 -0800
1238
1239    Add bugzilla, mailing list & git repo pointers to README
1240
1241commit 9f12a154437554938a4fa18b7d3948c7dff8d631
1242Author: Alan Coopersmith <alan.coopersmith@sun.com>
1243Date:   Mon Dec 1 13:58:31 2008 -0800
1244
1245    Switch ChangeLog generation to use XORG_CHANGELOG from xorg-macros 1.2
1246
1247commit 8c313881a0c586179c09922a7e00a1f8d669a68a
1248Author: Alan Coopersmith <alan.coopersmith@sun.com>
1249Date:   Mon Dec 1 08:37:42 2008 -0800
1250
1251    18748: xtrans.m4 causes configure --help to list --enable-ipv6 in wrong case.
1252    
1253    X.Org Bug #18748 <http://bugs.freedesktop.org/show_bug.cgi?id=18748>
1254
1255commit c626a4298e98f4988701dd587bc8355c62542ec4
1256Author: Alan Hourihane <alanh@tungstengraphics.com>
1257Date:   Wed Oct 15 11:19:41 2008 +0100
1258
1259    add winsock check for windows builds
1260
1261commit 005bd80a9eab736aea737869b8a1079c565e1cd6
1262Author: Adam Jackson <ajax@redhat.com>
1263Date:   Tue Oct 7 09:56:49 2008 -0400
1264
1265    xtrans 1.2.2
1266
1267commit 1185dd2966521e1a19474dfd4206306cb383fc89
1268Author: Adam Jackson <ajax@redhat.com>
1269Date:   Tue Oct 7 09:55:22 2008 -0400
1270
1271    Finish removing OS/2 support
1272
1273commit 51b2e85aeb172f4a058d8ceceec91021ffd0b2a5
1274Author: Adam Jackson <ajax@redhat.com>
1275Date:   Tue Oct 7 09:51:27 2008 -0400
1276
1277    Remove DECNET support.
1278    
1279    This hasn't been consumed in the server or libs since 7.0.
1280
1281commit 892ec928da3a0653ae54c321e4c3b1aa06c4e678
1282Author: Adam Jackson <ajax@redhat.com>
1283Date:   Thu Aug 7 10:32:11 2008 -0400
1284
1285    Drastically simplify TRANS_OPEN_MAX.
1286    
1287    If your OS doesn't have sysconf(3), then life is already hard for you.
1288
1289commit 339ddc413559d4cb117a72f87b2a70dae6911c32
1290Author: Adam Jackson <ajax@redhat.com>
1291Date:   Thu Aug 7 10:23:19 2008 -0400
1292
1293    Massive ifdef cleanup, dropping a ton of unsupported platform code.
1294
1295commit a78b9819cbbbddccb4a6bf364b88ec4f27d25c1f
1296Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
1297Date:   Tue Aug 5 17:46:37 2008 -0700
1298
1299    Added a flag to enable "The OS already took care of securing this, please skip checking xauth" for use with Apple launchd sockets.
1300
1301commit 3db805979b476d233baa881e83950ef1d2731841
1302Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
1303Date:   Tue Jul 15 16:56:12 2008 -0700
1304
1305    Apple: Allow Xquartz to provide an additional fd to xtrans since the dynamic addition code in the server isn't bulletproof yet.
1306
1307commit 81d8bdced6b45ab2ab3d3a0bc164ddbf1659fea1
1308Author: Adam Jackson <ajax@redhat.com>
1309Date:   Wed Jul 2 15:24:20 2008 -0400
1310
1311    xtrans 1.2.1
1312
1313commit 302af17c4d5f0293a9af4d6c1097ab57a57d3f0f
1314Author: Alan Coopersmith <alan.coopersmith@sun.com>
1315Date:   Tue Jun 24 15:45:38 2008 -0700
1316
1317    Clear some pointer type mismatch warnings
1318
1319commit 4d184e41d30a8fe27380e04beb24f775d4a40782
1320Author: Alan Coopersmith <alan.coopersmith@sun.com>
1321Date:   Tue Jun 24 15:45:18 2008 -0700
1322
1323    LocalClose() takes a ConnInfoPtr, not an fd
1324
1325commit 177c2fd41727bd0110b493933dcbdbf21878fe09
1326Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
1327Date:   Fri May 23 09:48:59 2008 -0700
1328
1329    Launchd: This functionality has been moved into xorg-server
1330
1331commit 02fcb08803dca5bb2df4f8be490a845659bd7ed3
1332Author: Adam Jackson <ajax@redhat.com>
1333Date:   Mon May 12 17:49:41 2008 -0400
1334
1335    Connection failure for abstract socket is ECONNREFUSED, not ENOENT.
1336    
1337    Apropos of bug #15884.
1338
1339commit 906294025573d07c739894fa3b2eedc82813a379
1340Author: Bill Nottingham <notting@redhat.com>
1341Date:   Mon May 12 17:43:36 2008 -0400
1342
1343    Ignore mkdir() errors when creating the abstract socket.
1344    
1345    Red Hat bug #445303.
1346
1347commit 08134c2ce72bc43c172b6ae134d8a94a40b45c9b
1348Author: James Cloos <cloos@jhcloos.com>
1349Date:   Sat May 10 07:02:09 2008 -0400
1350
1351    Remove extraneous execute bit from .c file
1352
1353commit e75b9dad0ae4bc0869af81652d8259675a3c5cac
1354Author: Julien Cristau <jcristau@debian.org>
1355Date:   Thu May 8 16:27:29 2008 +0200
1356
1357    Bump to 1.2
1358
1359commit 962ad4d3f8096f5ffa14b32b3ee094f250790c77
1360Author: Alan Hourihane <alanh@tungstengraphics.com>
1361Date:   Mon Apr 28 23:46:05 2008 +0100
1362
1363    disable UNIXCONN on MINGW
1364
1365commit 9e8c0e3356bc6359368b7655d3a717d6c000387e
1366Author: Alan Hourihane <alanh@tungstengraphics.com>
1367Date:   Sat Apr 26 16:23:19 2008 +0100
1368
1369    fix build for MAKEWORD
1370
1371commit 568c5ea02ee1de437833ee0b53a7b3fd7ece084f
1372Author: Colin Harrison <colin.harrison-at-virgin.net>
1373Date:   Sat Apr 26 08:53:13 2008 +0100
1374
1375    Update to winsock2
1376
1377commit 960902584a3ef125946beb5ebe331b54d697e9d9
1378Author: James Cloos <cloos@jhcloos.com>
1379Date:   Fri Apr 25 15:53:20 2008 -0400
1380
1381    Fix length calculation for the path for abstract unix domain sockets
1382    
1383    Since the struct has a fixed-lenght char[] its sizeof() contains
1384    trailing NUL octets which results in corrupt abstract sockets.
1385    
1386    Instead, take the strlen(3) of the path, plus the single NUL octet
1387    (which identifies the path as an abstract path rather than a file-
1388    system path) plus the offset from the start of the struct to the
1389    start of the char array.
1390    
1391    This fixes:
1392    
1393    https://bugs.freedesktop.org/show_bug.cgi?id=15677
1394
1395commit 3a2a5375b8aab85697b4f2644ab99c3ccf79e658
1396Author: Colin Harrison <colin.harrison-at-virgin.net>
1397Date:   Wed Apr 23 10:39:30 2008 +0100
1398
1399    Only call WSAGetLastError() if there has been an
1400    error condition.
1401
1402commit ac13a1a34b61247a21da130f0ba9922f35d3dc3b
1403Author: Alan Coopersmith <alan.coopersmith@sun.com>
1404Date:   Tue Apr 15 12:32:35 2008 -0700
1405
1406    Sun bug #6688467: _X11TransConvertAddress: Unknown family type on 64-bit SPARC
1407    
1408    Check for socklen_t definition and if found use it instead of size_t or
1409    int for the length argument to getpeername/getsockname/etc.
1410    
1411    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6688467>
1412
1413commit 556a351de83fc6f401b02213dae95731553c216d
1414Author: Loïc Minier <lool@dooz.org>
1415Date:   Mon Mar 24 15:38:27 2008 -0400
1416
1417    Bug #10489: Don't retry unix socket connect()s on ENOENT.
1418    
1419    If the socket isn't there, it's not gonna magically appear.  Either it's
1420    a server socket and you should have just waited for the SIGUSR1 from the
1421    server, or it's a stale reference to an ICE socket.
1422    
1423    However, do retry once, so fallback from abstract to filesystem namespace
1424    works.
1425    
1426    Originally Debian bug #385976.
1427
1428commit 3de3e666e0653d4e8ae23fc3e6e31864ddad4059
1429Author: Julien Cristau <jcristau@debian.org>
1430Date:   Sun Mar 23 19:43:32 2008 +0100
1431
1432    BSD44SOCKETS is the wrong check for SOCK_MAXADDRLEN
1433    
1434    GNU/kFreeBSD defines BSD44SOCKETS, but doesn't have SOCK_MAXADDRLEN.
1435    Check for the latter directly.
1436
1437commit 662994b9096181117cec4cae88f24bf6da806159
1438Author: Adam Jackson <ajax@redhat.com>
1439Date:   Wed Mar 5 21:02:28 2008 -0500
1440
1441    xtrans 1.1
1442
1443commit 2afe206ec9569e0d62caa6d91c3fb057b0efa23d
1444Author: Adam Jackson <ajax@redhat.com>
1445Date:   Wed Mar 5 20:48:59 2008 -0500
1446
1447    Add support for the abstract socket namespace under Linux.
1448    
1449    Unlike normal unix sockets, the abstract namespace is not bound to the
1450    filesystem.  This has some notable advantages; /tmp need not exist, the
1451    socket directory need not have magic permissions, etc.  xtrans servers
1452    will listen on both the normal and abstract socket endpoints; clients
1453    will attempt to connect to the abstract socket before connecting to the
1454    corresponding filesystem socket.
1455    
1456    Based on a patch by Bill Crawford.
1457
1458commit c8ed67f16f71042ef134a4d2189c20dd200a0648
1459Author: Jeremy Huddleston <jeremy@tifa.local>
1460Date:   Sun Feb 10 19:04:40 2008 -0800
1461
1462    Fixed #ifdef checks that were using i386 to use __i386__
1463    
1464    """
1465    
1466    It's simply obsolete, sloppy, compiler namespace pollution.  The
1467    compiler is not allowed to predefine symbols that might conflict with
1468    ordinary identifiers.  For backwards compatibility gcc currently
1469    predefines i386 when compiling for x86 32-bit (but not 64-bit), but that
1470    will go away.  It is also not defined if you specify -ansi when invoking
1471    the compiler, because then it is seriously standards compliant.  Other
1472    compilers shouldn't define it either.  Correct code shouldn't rely on it
1473    being defined.  However __i386__ is safe and proper.
1474    
1475    """
1476
1477commit 9970b5b6f8237685267b7972282319cf266661ea
1478Author: Ben Byer <bbyer@bbyer.local>
1479Date:   Sun Dec 2 07:36:51 2007 -0800
1480
1481    make launchd error messages less scary
1482
1483commit cd1da5cec49fb7fe6238a00d9ba550b3ed78fa08
1484Author: Ben Byer <bbyer@bbyer.local>
1485Date:   Wed Nov 14 03:57:57 2007 -0800
1486
1487    Fix for incorrect processing of recycled launchd socket on OS X
1488
1489commit 3da4d6c1dc05f9e1291b023a97535eb67f0830e2
1490Author: Ben Byer <bbyer@bbyer.local>
1491Date:   Wed Nov 14 03:55:42 2007 -0800
1492
1493    removed cvs tags
1494
1495commit 496cf2c46d2123c3bed3e6878f8f9a62e87ce559
1496Author: Dodji Seketeli <dodji@seketeli.org>
1497Date:   Tue Sep 11 12:52:44 2007 +0200
1498
1499    libxtrans: fixed a typo in my last commit
1500    
1501            * Xtranssock.c: (SocketReopen): oops fix a typo in my last commit.
1502
1503commit 88e141225113fcc4ebe5e8fe361e75673cdbf9ff
1504Author: Dodji Seketeli <dodji@seketeli.org>
1505Date:   Tue Sep 11 08:48:03 2007 +0200
1506
1507    libxtrans: fix linux compilation breakage
1508    
1509            * Xtranssock.c:
1510              (SocketReopen): protect use of BSD4.4 socket with BSD44SOCKETS macro.
1511              protect use of strlcnpy with HAVE_STRLCPY macro.
1512              That one is defined (or not) by the xserver configure.
1513
1514commit 6217f34977bfa17b66b89df5d45420774abedcb3
1515Author: Ben Byer <bbyer@bbyer.apple.com>
1516Date:   Wed Sep 5 18:29:44 2007 -0700
1517
1518    changes to support launchd on OS X
1519
1520commit 4d0cfe491046df26027db291530b247b7f24df5b
1521Author: Ben Byer <bbyer@bbyer.apple.com>
1522Date:   Wed Sep 5 18:04:01 2007 -0700
1523
1524    suppress warning about socket directory ownership on OS X
1525    
1526    We don't need to warn the user about the fact that the socket
1527    directory is not owned by root under OS X; on that platform,
1528    it's never owned by root, as the X server runs as the normal user.
1529
1530commit de93d67f6d48c7c08f2554cb85515bcf7dfbffb2
1531Author: Alan Coopersmith <alan.coopersmith@sun.com>
1532Date:   Tue Aug 21 17:54:23 2007 -0700
1533
1534    Version bump: 1.0.4
1535
1536commit 5e16b0ebccb233f7aeaf3928a853ee966b7cbb39
1537Author: Kean Johnston <kean@armory.com>
1538Date:   Wed Jul 18 09:27:06 2007 -0700
1539
1540    Fix typo in Xtranslcl.c (sprintf with size argument should be snprintf)
1541
1542commit 1abc981349140260d6fb643d29cf2b851fc06ac9
1543Author: Daniel Stone <daniel@fooishbar.org>
1544Date:   Sat Dec 16 01:15:21 2006 +0200
1545
1546    bump to 1.0.3
1547
1548commit 8172528bb894856aa5b133f61444294dc5a347e6
1549Author: Daniel Stone <daniel@fooishbar.org>
1550Date:   Wed Dec 6 18:51:59 2006 +0200
1551
1552    Makefile.am: make ChangeLog hook safer
1553    Make ChangeLog hook as safe as possible.
1554
1555commit 5ffb704b1df9ec44a448d53d4c20b9d4c5d825d4
1556Author: Adam Jackson <ajax@benzedrine.nwnk.net>
1557Date:   Fri Oct 13 17:01:59 2006 -0400
1558
1559    Bump to 1.0.2
1560
1561commit ae3b57953f5c1fa875d19fb42a2178d7e594ea44
1562Author: Adam Jackson <ajax@benzedrine.nwnk.net>
1563Date:   Thu Oct 12 20:36:52 2006 -0400
1564
1565    Fix the ChangeLog hook to distcheck.
1566
1567commit 4a2f176da3e2171f4feea2e6c8787e24fdf204f3
1568Author: Alan Coopersmith <alan.coopersmith@sun.com>
1569Date:   Fri Sep 15 14:59:15 2006 -0700
1570
1571    Remove GIT_DIR setting from git log command
1572
1573commit ec3abba0e351278876909bb5250d490b807d904a
1574Author: Alan Coopersmith <alan.coopersmith@sun.com>
1575Date:   Fri Sep 15 13:54:18 2006 -0700
1576
1577    Copy additional copyright/license statements from source to COPYING
1578
1579commit b4c6bd92b3a8bed746da641c59a9f040e1d83768
1580Author: Alan Coopersmith <alan.coopersmith@sun.com>
1581Date:   Wed Sep 13 14:09:22 2006 -0700
1582
1583    Bug 728: RUI in _X11TransSocketINETGetAddr in file "Xtranssock.c"
1584    
1585    Bug #728: <https://bugs.freedesktop.org/show_bug.cgi?id=728>
1586    Patch #3527: <https://bugs.freedesktop.org/attachment.cgi?id=3527>
1587    bzero sockaddr structures before passing to kernel to convince memory
1588    checkers that they are initialized before use
1589
1590commit 5d006baadf213e91f131ffedc53c88a973fb1cba
1591Author: Alan Coopersmith <alan.coopersmith@sun.com>
1592Date:   Thu Aug 24 17:40:24 2006 -0700
1593
1594    Use SUN_LEN if it is defined on non-BSD44SOCKETS systems
1595
1596commit 2495789d6c290e2037b2836f28b027786ea5b605
1597Author: Petr Salinger <petr.salinger@t-systems.cz>
1598Date:   Sun Apr 23 01:31:00 2006 -0700
1599
1600    Bug 4982: use offsetof for manipulating struct sockaddr_un
1601    
1602    X.Org Bugzilla #4982 <https://bugs.freedesktop.org/show_bug.cgi?id=4982>
1603    Patch #5424 <https://bugs.freedesktop.org/attachment.cgi?id=5424>
1604
1605commit 2633eaf8824828433a0eb9c9f3c4263b50342473
1606Author: Alan Coopersmith <alan.coopersmith@sun.com>
1607Date:   Thu Aug 24 16:53:08 2006 -0700
1608
1609    Try to capture the insanity of xtrans in a short README document
1610
1611commit 02ffb657b023d9b2a2c6c1d2417da8dcb96aa4b2
1612Author: Alan Coopersmith <alan.coopersmith@sun.com>
1613Date:   Thu Aug 24 14:46:42 2006 -0700
1614
1615    More sprintf -> snprintf conversions
1616
1617commit 3d5e7dd18c8836065c4835740211c10747b18abd
1618Author: Alan Coopersmith <alan.coopersmith@sun.com>
1619Date:   Wed Aug 23 19:14:35 2006 -0700
1620
1621    Replace static ChangeLog with dist-hook to generate from git-log
1622
1623commit 92807fe90aad2303cec4b54bec40ce6edf671654
1624Author: Alan Coopersmith <alan.coopersmith@sun.com>
1625Date:   Wed Aug 23 16:59:33 2006 -0700
1626
1627    Add ResetListener for named pipe transport
1628    
1629    (more merging of Xtrans code from Solaris xtrans)
1630
1631commit e11b861fcf3a295e5cb390cbac3a44d8ce4fad4f
1632Author: Alan Coopersmith <alan.coopersmith@sun.com>
1633Date:   Tue Aug 22 11:29:46 2006 -0700
1634
1635    Merge more fixes from Solaris xtrans
1636    
1637    Convert sprintf -> snprintf
1638    Don't use fake readv/writev on Solaris x86.
1639
1640commit 049932c0171855aa6d55222947f4d47495b6f173
1641Author: Alan Coopersmith <alan.coopersmith@sun.com>
1642Date:   Mon Aug 21 19:08:19 2006 -0700
1643
1644    Merge Solaris named pipe transport support into LOCALCONN
1645    
1646    Also clean up #ifdefs in Xtranslcl for which transport types are supported
1647    Add "pipe" alias for named pipe transport on Solaris to match Solaris Xlib.
1648
1649commit 11391a1ffe4c633507406d2a1ed5abe57c8698db
1650Author: Alan Coopersmith <alan.coopersmith@sun.com>
1651Date:   Mon Aug 21 19:05:49 2006 -0700
1652
1653    Add --enable-local-transport and set it on by default on SVR4 OS'es
1654
1655commit c0ebfcde0dd3f82c0e5712764e4403b2837e09b5
1656Author: Alan Coopersmith <alan.coopersmith@sun.com>
1657Date:   Mon Aug 21 19:04:54 2006 -0700
1658
1659    Add *~ to .gitignore to skip emacs droppings
1660
1661commit fe7054f2f5ce74ce9b8c1704899894bc1c9f32b7
1662Author: Alan Coopersmith <alan.coopersmith@sun.com>
1663Date:   Thu Jul 13 14:59:21 2006 -0700
1664
1665    renamed: .cvsignore -> .gitignore
1666
1667commit 0eea51ea11381ba07d5e6953c7bf6519a3ded829
1668Author: Donnie Berkholz <spyderous@gentoo.org>
1669Date:   Fri Jun 30 04:05:45 2006 +0000
1670
1671    Bump to 1.0.1.
1672
1673commit 8d37f63810fc12f113bfcf37065ac9da09702b46
1674Author: Matthieu Herrb <matthieu.herrb@laas.fr>
1675Date:   Tue Jun 20 19:11:16 2006 +0000
1676
1677    Check setuild() return value. Bugzilla #7116.
1678
1679commit f9a47b508a89c647829266aacb19a0fc2dbb6158
1680Author: Jeremy C. Reed <reed@reedmedia.net>
1681Date:   Thu May 25 20:20:54 2006 +0000
1682
1683    No code change. Just fix comment that said SOCKCONN to become TCPCONN.
1684        (This dates back to 1994 or before.)
1685
1686commit 2b7124954f5bedc8625c2f144bbbab4bbba7701c
1687Author: Kevin E Martin <kem@kem.org>
1688Date:   Thu Dec 15 00:24:36 2005 +0000
1689
1690    Update package version number for final X11R7 release candidate.
1691
1692commit 3d3228a24513ea75c73f6d58ba50097f32b297a1
1693Author: Kevin E Martin <kem@kem.org>
1694Date:   Wed Nov 9 21:19:14 2005 +0000
1695
1696    Update package version number for X11R7 RC2 release.
1697
1698commit 2cac02b2fe1ceaec2a2f1cd601d9ab4afcf3cb66
1699Author: Kean Johnson <kean@armory.com>
1700Date:   Tue Nov 8 06:33:26 2005 +0000
1701
1702    See ChangeLog entry 2005-11-07 for details.
1703
1704commit 063a39b0e1e615387fd7baa570265ed71ca87c22
1705Author: Kevin E Martin <kem@kem.org>
1706Date:   Wed Oct 19 02:48:13 2005 +0000
1707
1708    Update package version number for RC1 release.
1709
1710commit 21a498d25f567ada296d0321f65536dfc816482b
1711Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
1712Date:   Mon Oct 3 17:45:28 2005 +0000
1713
1714    Bug #3813 <https://bugs.freedesktop.org/show_bug.cgi?id=3813> GNU/kFreeBSD
1715        fix for xtrans (Robert Millan)
1716
1717commit e41835b4b2fe03d8a1997bd8e8eabab2a94bccd5
1718Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
1719Date:   Sun Oct 2 21:01:35 2005 +0000
1720
1721    //bugs.freedesktop.org/show_bug.cgi?id=4256> Patch #3046
1722        <https://bugs.freedesktop.org/attachment.cgi?id=3046> Define
1723        MAXHOSTNAMELEN if platform doesn't (Michael Banck)
1724
1725commit 4683f28f0c9d1a1ee0338a32011219ed1fb3c565
1726Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
1727Date:   Fri Aug 19 23:53:22 2005 +0000
1728
1729    Bugzilla #3957 <https://bugs.freedesktop.org/show_bug.cgi?id=3957> Patch
1730        #2924 <https://bugs.freedesktop.org/attachment.cgi?id=2924> xtrans
1731        changes for AIX (Dan McNichol, IBM)
1732    Bugzilla #3957 <https://bugs.freedesktop.org/show_bug.cgi?id=3957> Patch
1733        #2925 <https://bugs.freedesktop.org/attachment.cgi?id=2925> xtrans
1734        changes for AIX (Dan McNichol, IBM)
1735
1736commit 79db37c65905823b66411533152ab54407f04004
1737Author: Eric Anholt <anholt@freebsd.org>
1738Date:   Wed Aug 17 19:10:49 2005 +0000
1739
1740    On FreeBSD, some of the symbols necessary for secure RPC support are in
1741        librpcsvc, so check for their presence in rpcsvc so that the library
1742        will be added.
1743
1744commit 5165ebdb8144cd5be706e49957f5c8b51b762821
1745Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
1746Date:   Tue Aug 16 02:23:41 2005 +0000
1747
1748    Define BSD44SOCKETS if struct sockaddr_in has a sin_len member
1749
1750commit 4ce01dc794022e74b01aac7b902acbbfebc74ed1
1751Author: Kevin E Martin <kem@kem.org>
1752Date:   Fri Jul 29 21:22:54 2005 +0000
1753
1754    Various changes preparing packages for RC0:
1755    - Verify and update package version numbers as needed
1756    - Implement versioning scheme
1757    - Change bug address to point to bugzilla bug entry form
1758    - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to
1759        reenable it)
1760    - Fix makedepend to use pkgconfig and pass distcheck
1761    - Update build script to build macros first
1762    - Update modular Xorg version
1763
1764commit 4ddee2d488f8bdcee624be96fa52ca03a7e64b83
1765Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
1766Date:   Tue Jul 26 18:59:11 2005 +0000
1767
1768    Use AC_TYPE_SIGNAL to replace Imake's SIGNAL_DEFINES (used in Xtransutil.c)
1769
1770commit 0a80fbc1eb80343eaff27c48f9531f5ba709b6ef
1771Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
1772Date:   Tue Jul 26 18:55:41 2005 +0000
1773
1774    Add config.h includes for modularization Use RETSIGTYPE if defined by
1775        autoconf in addition to Imake's SIGNALRETURNSINT. Use
1776        HAVE_WORKING_VFORK if defined by autoconf in addition to Imake's
1777        HAS_VFORK
1778
1779commit 9a44d60cb031f1779c228f13697fb17e17df10d5
1780Author: Matthieu Herrb <matthieu.herrb@laas.fr>
1781Date:   Sat Jul 23 19:52:56 2005 +0000
1782
1783    typo
1784
1785commit 65ca78f15fe7f1640f3610245957eac9bca0bf04
1786Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
1787Date:   Sun Jul 17 02:01:55 2005 +0000
1788
1789    Move AC_MSG_RESULT so it shows up in the right place, not after other tests
1790        are executed
1791
1792commit f1d56df5736087eafa3db255437c918f6b9075a1
1793Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
1794Date:   Thu Jul 14 22:44:31 2005 +0000
1795
1796    Split out TCP library/IPv6 support checks into XTRANS_TCP_FLAGS for sharing
1797        with code like xdm that doesn't use Xtrans but accesses TCP sockets
1798        directly. Clean up --enable flags and report settings in configure
1799        output.
1800
1801commit 9552877bf0a7be02c781ef8fb2f271573a55e297
1802Author: Keith Packard <keithp@keithp.com>
1803Date:   Sat Jul 9 21:22:30 2005 +0000
1804
1805    Add .cvsignore files
1806
1807commit 586cc58eff6d3c68313e5c8aedb8ec2464069f2f
1808Author: Daniel Stone <daniel@fooishbar.org>
1809Date:   Sun Jul 3 23:51:24 2005 +0000
1810
1811    Change <X11/os.h> to "os.h".
1812
1813commit 926367f82972bd94a64ef76c8e036f27ca61fb14
1814Author: Daniel Stone <daniel@fooishbar.org>
1815Date:   Sun Jul 3 07:01:01 2005 +0000
1816
1817    Add Xtrans definitions (FONT_t, TRANS_CLIENT) to clean up warnings.
1818    Add XSERV_t, TRANS_SERVER, TRANS_REOPEN to quash warnings.
1819    Add #include <dix-config.h> or <xorg-config.h>, as appropriate, to all
1820        source files in the xserver/xorg tree, predicated on defines of
1821        HAVE_{DIX,XORG}_CONFIG_H. Change all Xfont includes to
1822        <X11/fonts/foo.h>.
1823
1824commit 40b7e438e4b441204ff47e1e25755162921d7c3e
1825Author: Daniel Stone <daniel@fooishbar.org>
1826Date:   Sat Jul 2 18:00:50 2005 +0000
1827
1828    Make includedir=@includedir@ in xtrans.pc.in, not with /X11/Xtrans.
1829
1830commit b413f4c1dddc467014adf16bfe31627e65508c12
1831Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
1832Date:   Wed Jun 22 22:46:39 2005 +0000
1833
1834    Apply these patches from Theo van Klaveren:
1835    lib-dmx.patch lib-FS.patch lib-X11.patch lib-XRes.patch
1836        lib-XScrnSaver.patch lib-xtrans.patch
1837    to make the libraries distcheck.
1838
1839commit 57aac0006e27624a41f04c5d0c458b9f0108a084
1840Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
1841Date:   Wed Jun 22 22:36:51 2005 +0000
1842
1843    Add the rest of my patch from bugzilla #1605 to define INADDR_NONE on
1844        platforms that don't define it in the system headers.
1845
1846commit f5a6a188407cec6e567070d192aac2db72cacd92
1847Author: Kristian Høgsberg <krh@redhat.com>
1848Date:   Wed Jun 22 01:21:24 2005 +0000
1849
1850    Apply patch by Alan Coopersmith from #1605 to fix address resolution of
1851        hostnames starting with a digit for 64 bit architechtures.
1852
1853commit 5bad61831b1c06888d80d92a0bf34acbeecda026
1854Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
1855Date:   Sat Jun 18 07:48:43 2005 +0000
1856
1857    Move Secure RPC flags from X11/configure.ac to xtrans/xtrans.m4 since
1858        multiple modules will need them
1859
1860commit 62438b14130e0f8de6939767a108ef12558653a3
1861Author: Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de>
1862Date:   Thu Jun 9 15:56:48 2005 +0000
1863
1864    Use $(includedir)/X11/Xtrans for Xtransincludedir
1865
1866commit 7c8e397ddcbd0ae998cc4f23868726022d1aa47b
1867Author: Eric Anholt <anholt@freebsd.org>
1868Date:   Wed Jun 8 06:24:53 2005 +0000
1869
1870    Install the xtrans.m4 to the directory returned by aclocal --print-ac-dir,
1871        so that the aclocal calls in other modules will pick it up if this
1872        prefix's aclocal dir is not in a default path for system aclocal.
1873
1874commit 58c7263ca5b64a21dc101bb4b24201ba67a8d068
1875Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
1876Date:   Wed May 25 21:47:56 2005 +0000
1877
1878    - Add FSlib to symlink.sh
1879    - Change Xtrans includedir back to be X11/Xtrans, so that users of it can
1880        continue to include <X11/*>
1881    - Add build system for FSlib
1882    - Conditionally include config.h in xc/lib/FS
1883    - Remove redundant include of FSproto.h in xc/lib/FS
1884    - Add check to proto/X11/configure.ac whether -D_XOPEN_SOURCE is needed.
1885
1886commit b2e662de63948928e4cbc7e3ba90631f150c5137
1887Author: Josh Triplett <josh@speakeasy.net>
1888Date:   Mon May 23 01:53:21 2005 +0000
1889
1890    Change xtransincludedir in pkg-config file to match change in Makefile.am.
1891
1892commit 83d29f6e0c1587c8ad008672e7ae5631942559eb
1893Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
1894Date:   Sat May 21 23:07:48 2005 +0000
1895
1896    xtrans:
1897    Create autoconf macro XTRANS_CONNECTION_FLAGS to provide standard set of
1898        --enable flags for which transports to support and common place to
1899        update for required libraries for platforms that need certain libs for
1900        certain transports
1901    ICE:
1902    Add ICE_t #define required by Xtrans headers. Replace static defines of
1903        LOCALCONN & UNIXCONN with new XTRANS_CONNECTION_FLAGS macro.
1904    X11:
1905    Moved transport type checks to new macro XTRANS_CONNECTION_FLAGS in
1906        xtrans.m4 in xtrans module so they can be shared by all modules using
1907        xtrans.
1908
1909commit bd79d86fb50233e0cd41a57b553f12b6d490ac7e
1910Author: Adam Jackson <ajax@nwnk.net>
1911Date:   Thu May 19 00:22:33 2005 +0000
1912
1913    revert last change, didn't do right thing at all, sorry for the noise
1914
1915commit 10776fa562c060d74fdd4434a16408fe4bd34ab9
1916Author: Adam Jackson <ajax@nwnk.net>
1917Date:   Thu May 19 00:10:08 2005 +0000
1918
1919    Require automake 1.7 in AM_INIT_AUTOMAKE
1920
1921commit daa7168e9e0cdff5eb06b0c9a7155f8880681fff
1922Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
1923Date:   Fri May 13 22:53:43 2005 +0000
1924
1925    - For now put xtrans in X11/Xtrans/X11, since libX11 is looking for it in
1926        <X11/...>
1927    - For Xcomposite and Xdamage, don't link the build system out of the xc
1928        tree
1929    - Link the public X11 headers into their own directory
1930    - Add links to XKeysymDB and XErrorDB
1931    - Add links to all the Xlib man pages
1932    - Add links to the lcUniConv subdirectory
1933    - Conditionally include config.h in Xlib source
1934
1935commit d11d95fa4faec21655625b7de27d8a71c08ffe2d
1936Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
1937Date:   Fri May 13 15:16:43 2005 +0000
1938
1939    Dummy changes to ChangeLog/configure.ac to see if that fixes group
1940        permissions
1941
1942commit b8a8c31f63a543d1c1c6bb4ae26a4019b4400edc
1943Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
1944Date:   Fri May 13 15:04:52 2005 +0000
1945
1946    Re-adding ChangeLog and configure.ac files
1947
1948commit 798c08054ce5a8238f35fee3e69218ece74441fa
1949Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
1950Date:   Fri May 13 15:02:19 2005 +0000
1951
1952    Temporarily remove ChangeLog configure.ac
1953
1954commit b3da86ae588df14dde916674a4f6593edf1964f7
1955Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
1956Date:   Fri May 13 14:43:37 2005 +0000
1957
1958    Dummy commit to see if that fixes the group execute permissions
1959
1960commit ea04267da780c2c3f08a710d15468565897420c4
1961Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
1962Date:   Thu May 12 16:12:34 2005 +0000
1963
1964    Make xtrans install in $(includedir)/X11/Xtrans. Remove all references to
1965        Xtransdef.
1966    Add Xdmcp build files
1967    Add Wrap.h to lib/dmcp part of symlink script.
1968
1969commit f25791629f3f443d2552bdb05bea1a960b530342
1970Author: Daniel Stone <daniel@fooishbar.org>
1971Date:   Thu May 12 02:49:16 2005 +0000
1972
1973    Add Xtransdef.h.in as an AM_CONFIG_HEADER.
1974
1975commit d628bf24f2bf0d017394b6961784d7ac5b33f46b
1976Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
1977Date:   Wed May 11 22:44:52 2005 +0000
1978
1979    lib/Xau:
1980    - Update AUTHORS, COPYING from Keith's tree
1981    - Don't use gcc specific "-include config.h"
1982    - Add autogen.sh
1983    lib/xtrans:
1984    - Add AUTHORS, COPYING, ChangeLog, Makefile.am, NEWS, README, autogen.sh,
1985        configure.ac, xtrans.pc.in
1986    xc/lib/Xau:
1987    - Add conditionalized #include <config.h>
1988    util/modular/symlink.sh
1989    - Add functions symlink_lib_xau() and symlink_lib_xtrans()
1990    util/modular/addconfig.h
1991    - New script that adds #include <config.h> to files
1992
1993commit c814f30e9a5dc48a24c20517334cf5f9c37e066a
1994Author: Roland Mainz <roland.mainz@nrubsig.org>
1995Date:   Wed Mar 2 11:20:29 2005 +0000
1996
1997    xc/config/cf/DragonFly.cf
1998    xc/config/cf/Imake.cf
1999    xc/config/cf/Imakefile
2000    xc/config/imake/imake.c
2001    xc/config/imake/imakemdep.h
2002    xc/extras/drm/shared/drm.h
2003    xc/include/Xos_r.h
2004    xc/lib/xtrans/Xtranssock.c
2005    xc/programs/Xserver/hw/xfree86/os-support/xf86_OSlib.h
2006    xc/programs/Xserver/hw/xfree86/os-support/xf86_libc.h
2007    xc/programs/Xserver/hw/xfree86/os-support/linux/lnx_agp.c
2008    //bugs.freedesktop.org/show_bug.cgi?id=1712) attachment #2004
2009        (https://bugs.freedesktop.org/attachment.cgi?id=2004): Add support for
2010        DragonFly/BSD platform. Patch by Jeroen Ruigrok <asmodai@tendra.org>
2011        and Mike Verona <firedragonfly@gmail.com>.
2012
2013commit 92e80a5a67273fc60623b17a5f34c239f1ed6947
2014Author: Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de>
2015Date:   Mon Nov 15 15:06:56 2004 +0000
2016
2017    Bufzilla #1802, http://freedesktop.org/bugzilla/show_bug.cgi?id=1802 Added
2018        mingw (Win32) port
2019
2020commit d92a9d31416a8366cd065886d7ff352fefce646d
2021Author: Egbert Eich <eich@suse.de>
2022Date:   Fri Aug 27 22:47:45 2004 +0000
2023
2024    Set the define XtransFailSoft to restore the old behavior to fail softly
2025        when socket directory cannot chowned/chmod to correct user/group. This
2026        should be added on a per OS basis which hasn't been done.
2027
2028commit 48ffd91cff9a07c68194f6d0b380dd2acd46a8ca
2029Author: Egbert Eich <eich@suse.de>
2030Date:   Fri Jul 30 21:00:20 2004 +0000
2031
2032    fail hard if socket directories cannot be chowned to root or chmod'ed to
2033        the requested mode if 'sticky' bit is requested for this directory
2034        instead of just print a warning that will remain unnoticed most of the
2035        times.
2036
2037commit c3e50fa69ea7a2d08a298866e8a63c0f07c8248d
2038Author: Egbert Eich <eich@suse.de>
2039Date:   Fri Jul 30 18:40:36 2004 +0000
2040
2041    Fixed typo in a comment.
2042    Deleted bogus comment.
2043    Added debugging support.
2044
2045commit 79d38d618406ecc5228730a57ad406b280a5a189
2046Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
2047Date:   Sat Jul 17 01:13:31 2004 +0000
2048
2049    Fix typo in debug message in MakeAllCLTSServerListeners
2050    Add $(GETPEER_DEFINES) to DEPEND_DEFINES for makedepend
2051    Add "localuser" and "localgroup" access types to server-interpreted
2052        authentication scheme.
2053
2054commit 8d0820e2058545e27f95d9fdc581262822799193
2055Author: Egbert Eich <eich@suse.de>
2056Date:   Fri Apr 23 18:44:27 2004 +0000
2057
2058    Merging XORG-CURRENT into trunk
2059
2060commit c594d3393cd355f52545b05bcc27ee8a2c533caa
2061Author: Egbert Eich <eich@suse.de>
2062Date:   Sun Mar 14 08:32:40 2004 +0000
2063
2064    Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004
2065
2066commit 2d51220fae172d2b8d28b971a853605b41038533
2067Author: Egbert Eich <eich@suse.de>
2068Date:   Wed Mar 3 12:11:46 2004 +0000
2069
2070    Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004
2071
2072commit 6e2cb92d192171961165c8e5a24b00f35f56aaeb
2073Author: Egbert Eich <eich@suse.de>
2074Date:   Thu Feb 26 13:35:36 2004 +0000
2075
2076    readding XFree86's cvs IDs
2077
2078commit 93f13d69958cb9c9adfe1244e478521269f9258b
2079Author: Egbert Eich <eich@suse.de>
2080Date:   Thu Feb 26 09:22:54 2004 +0000
2081
2082    Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
2083
2084commit 7a10db6531003055886e0e994c2ef8e46a010eb2
2085Author: Kaleb Keithley <kaleb@freedesktop.org>
2086Date:   Mon Feb 23 20:34:44 2004 +0000
2087
2088    Import most of XFree86 4.4RC3. This import excludes files which have the
2089        new license. If we want to, later we can import 4.4RC3 again and pick
2090        up the files that have the new license, but for now the vendor branch
2091        is "pure."
2092
2093commit 871b8c33f2ab8c98b95aa3324bb70055f5207c61
2094Author: Egbert Eich <eich@suse.de>
2095Date:   Thu Jan 29 08:08:15 2004 +0000
2096
2097    Importing vendor version xf86-012804-2330 on Thu Jan 29 00:06:33 PST 2004
2098
2099commit 352e5de72e125d7d474907f354462cc1442e0989
2100Author: Kaleb Keithley <kaleb@freedesktop.org>
2101Date:   Fri Dec 19 20:54:45 2003 +0000
2102
2103    XFree86 4.3.99.902 (RC 2)
2104
2105commit d223c1bb16c503e58f07dfef14b8e79fe7c358ff
2106Author: Kaleb Keithley <kaleb@freedesktop.org>
2107Date:   Thu Dec 4 22:03:05 2003 +0000
2108
2109    XFree86 4.3.99.901 (RC 1)
2110
2111commit 6c36ea2d54ea6b6f0cbece06d867d0b884783d0c
2112Author: Kaleb Keithley <kaleb@freedesktop.org>
2113Date:   Tue Nov 25 19:28:21 2003 +0000
2114
2115    XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks
2116
2117commit 3b0d3a905e39624abe9ddd1ce20542097601e4c2
2118Author: Kaleb Keithley <kaleb@freedesktop.org>
2119Date:   Tue Nov 25 19:28:21 2003 +0000
2120
2121    Initial revision
2122
2123commit 3bd236a07c0ebaabb7337dd5d56bc57a028a9c0e
2124Author: Kaleb Keithley <kaleb@freedesktop.org>
2125Date:   Fri Nov 14 16:48:50 2003 +0000
2126
2127    XFree86 4.3.0.1
2128
2129commit 26781c4f009a4b448dca3ab4912cbf01182e3d92
2130Author: Kaleb Keithley <kaleb@freedesktop.org>
2131Date:   Fri Nov 14 15:54:40 2003 +0000
2132
2133    R6.6 is the Xorg base-line
2134