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