ChangeLog revision 47a4502c
1commit 0dc46e7ed5bdd876467f9dbb314ba6b8094e541b
2Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3Date:   Sat Nov 9 09:04:34 2024 -0800
4
5    xtrans 1.5.2
6    
7    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8
9commit d312424a6f2d5bff18f150dfecfc632b334fb878
10Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11Date:   Tue Oct 22 14:44:46 2024 -0700
12
13    is_numeric: Add !defined(IPv6) to checks
14    
15    Fixes builds without IPv6 support, since old IPv4 code uses is_numeric()
16    
17    Closes: #6
18    Fixes: 0f15306 ("is_numeric: Add TRANS_SERVER to required ifdefs")
19    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
20    Part-of: <https://gitlab.freedesktop.org/xorg/lib/libxtrans/-/merge_requests/23>
21
22commit ae99ac32f61e0db92a45179579030a23fe1b5770
23Author: Peter Harris <pharris2@rocketsoftware.com>
24Date:   Tue Oct 15 09:51:33 2024 -0400
25
26    Fix build when HAVE_STRCASECMP is not defined
27    
28    Regression introduced in commit 4792e9e798de327572aba1575438b6936a55c7ef
29    "Clear numerous -Wsign-compare warnings from gcc 14.1".
30    
31    Part-of: <https://gitlab.freedesktop.org/xorg/lib/libxtrans/-/merge_requests/22>
32
33commit df6ae7c7e0b6241a05ad2814bced637b00b1a83f
34Author: Alan Coopersmith <alan.coopersmith@oracle.com>
35Date:   Sat Oct 12 13:39:19 2024 -0700
36
37    xtrans 1.5.1
38    
39    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
40
41commit 0f153064bfa4bb69e86f3f2383f2f421f2360319
42Author: Alan Coopersmith <alan.coopersmith@oracle.com>
43Date:   Sat Aug 24 18:19:45 2024 -0700
44
45    is_numeric: Add TRANS_SERVER to required ifdefs
46    
47    Avoids -Wunused-function warnings when only building for TRANS_CLIENT
48    code, such as libFS.
49    
50    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
51    Part-of: <https://gitlab.freedesktop.org/xorg/lib/libxtrans/-/merge_requests/20>
52
53commit 957adac35fb77d5a72f676d697f32ce94ab7392f
54Author: Alan Coopersmith <alan.coopersmith@oracle.com>
55Date:   Sat Aug 24 18:12:16 2024 -0700
56
57    SocketOpen: avoid leak of out-of-range fd
58    
59    Clears gcc 14.1 warning:
60    
61    /usr/include/X11/Xtrans/Xtranssock.c: In function ‘_FSTransSocketOpen’:
62    /usr/include/X11/Xtrans/Xtranssock.c:425:9: warning: leak of file descriptor
63     [CWE-775] [-Wanalyzer-fd-leak]
64      425 |         free (ciptr);
65          |         ^~~~~~~~~~~~
66    [...]
67                      |  415 |        || ciptr->fd >= sysconf(_SC_OPEN_MAX)
68                      |      |        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
69                      |      |        |       |
70                      |      |        |       (62) ...to here
71                      |      |        (63) following ‘true’ branch...
72    [...]
73    
74    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
75    Part-of: <https://gitlab.freedesktop.org/xorg/lib/libxtrans/-/merge_requests/20>
76
77commit bea5a32105aebdc99f84f9ee4b70de7a116eb1d7
78Author: Alan Coopersmith <alan.coopersmith@oracle.com>
79Date:   Sat Aug 24 17:49:58 2024 -0700
80
81    GetPeerNetworkId: avoid calling strlen() on a NULL pointer
82    
83    Various failure states may leave addr set to NULL instead of a string.
84    
85    Clears warnings from gcc 14.1:
86    
87    /usr/include/X11/Xtrans/Xtransutil.c: In function ‘_IceTransGetPeerNetworkId’:
88    /usr/include/X11/Xtrans/Xtransutil.c:402:62: warning: use of NULL ‘addr’
89     where non-null expected [CWE-476] [-Wanalyzer-null-argument]
90      402 |     hostname = malloc (strlen (ciptr->transptr->TransName) + strlen (addr) + 2);
91          |                                                              ^~~~~~~~~~~~
92    <built-in>: note: argument 1 of ‘__builtin_strlen’ must be non-null
93    
94    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
95    Part-of: <https://gitlab.freedesktop.org/xorg/lib/libxtrans/-/merge_requests/20>
96
97commit e5390ab716fb470ac4b5fd7a4133eabbfaac994e
98Author: Alan Coopersmith <alan.coopersmith@oracle.com>
99Date:   Sat Aug 24 17:44:41 2024 -0700
100
101    GetPeerNetworkId: Avoid writing to NULL pointer if malloc() fails
102    
103    Clears gcc 14.1 warning:
104    
105    /usr/include/X11/Xtrans/Xtransutil.c:403:5: warning: use of possibly-NULL
106     ‘hostname’ where non-null expected [CWE-690]
107     [-Wanalyzer-possible-null-argument]
108      403 |     strcpy (hostname, ciptr->transptr->TransName);
109          |     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
110    <built-in>: note: argument 1 of ‘__builtin_strcpy’ must be non-null
111    
112    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
113    Part-of: <https://gitlab.freedesktop.org/xorg/lib/libxtrans/-/merge_requests/20>
114
115commit 215e8db07d05d425714b05b8a439c73735f9d04f
116Author: Alan Coopersmith <alan.coopersmith@oracle.com>
117Date:   Sat Aug 24 17:40:10 2024 -0700
118
119    GetMyNetworkId: Avoid writing to NULL pointer if malloc() fails
120    
121    Clears warnings from gcc 14.1:
122    
123    In file included from /usr/include/X11/Xtrans/transport.c:70:
124    /usr/include/X11/Xtrans/Xtransutil.c: In function ‘_IceTransGetMyNetworkId’:
125    /usr/include/X11/Xtrans/Xtransutil.c:253:9: warning: use of possibly-NULL
126     ‘networkId’ where non-null expected [CWE-690]
127     [-Wanalyzer-possible-null-argument]
128      253 |         sprintf (networkId, "%s/%s:%s", transName,
129          |         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
130      254 |             hostnamebuf, saddr->sun_path);
131          |             ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
132    <built-in>: note: argument 1 of ‘__builtin_sprintf’ must be non-null
133    
134    /usr/include/X11/Xtrans/Xtransutil.c:283:9: warning: use of possibly-NULL
135     ‘networkId’ where non-null expected [CWE-690]
136     [-Wanalyzer-possible-null-argument]
137      283 |         sprintf (networkId, "%s/%s:%s", transName, hostnamebuf, portnumbuf);
138          |         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
139    <built-in>: note: argument 1 of ‘__builtin_sprintf’ must be non-null
140    
141    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
142    Part-of: <https://gitlab.freedesktop.org/xorg/lib/libxtrans/-/merge_requests/20>
143
144commit 376744aa60ff8df0ddbcf090f0177c15706df71e
145Author: Alan Coopersmith <alan.coopersmith@oracle.com>
146Date:   Sat Aug 24 17:33:13 2024 -0700
147
148    MakeAllCOTSServerListeners: Initialize temp_ciptrs
149    
150    I don't think this is strictly necessary, but it shouldn't hurt and
151    makes gcc 14.1 stop warning about:
152    
153    /usr/include/X11/Xtrans/Xtrans.c: In function
154     ‘_IceTransMakeAllCOTSServerListeners’:
155    /usr/include/X11/Xtrans/Xtrans.h:108:21: warning: use of uninitialized
156     value ‘temp_ciptrs[j]’ [CWE-457] [-Wanalyzer-use-of-uninitialized-value]
157      108 | #define TRANS(func) _IceTrans##func
158    /usr/include/X11/Xtrans/Xtrans.c:1203:21: note: in expansion of macro ‘TRANS’
159     1203 |                     TRANS(Close) (temp_ciptrs[j]);
160          |                     ^~~~~
161    
162    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
163    Part-of: <https://gitlab.freedesktop.org/xorg/lib/libxtrans/-/merge_requests/20>
164
165commit 742462a572e524ae82a8c18106c03820da322102
166Author: Alan Coopersmith <alan.coopersmith@oracle.com>
167Date:   Sat Aug 24 17:23:10 2024 -0700
168
169    ParseAddress: return failure when strdup() fails
170    
171    Clears warning from gcc 14.1:
172    In file included from /usr/include/X11/Xtrans/transport.c:69:
173    /usr/include/X11/Xtrans/Xtrans.c: In function ‘_IceTransParseAddress’:
174    /usr/include/X11/Xtrans/Xtrans.c:246:19: warning: use of possibly-NULL ‘mybuf’
175     where non-null expected [CWE-690] [-Wanalyzer-possible-null-argument]
176      246 |    if ( ((mybuf = strchr (mybuf,'/')) == NULL) &&
177          |                   ^~~~~~~~~~~~~~~~~~
178    
179    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
180    Part-of: <https://gitlab.freedesktop.org/xorg/lib/libxtrans/-/merge_requests/20>
181
182commit e9ead32308c588e5c12dbfb6a6452e0f2c88bafd
183Author: Alan Coopersmith <alan.coopersmith@oracle.com>
184Date:   Sat Aug 24 17:18:01 2024 -0700
185
186    SocketINETConnect: return failure when malloc() fails
187    
188    Clears warning from gcc 14.1:
189    In file included from /usr/include/X11/Xtrans/transport.c:67:
190    /usr/include/X11/Xtrans/Xtranssock.c: In function ‘_IceTransSocketINETConnect’:
191    /usr/include/X11/Xtrans/Xtranssock.c:1385:33: warning: dereference of
192     possibly-NULL ‘addrlist’ [CWE-690] [-Wanalyzer-possible-null-dereference]
193     1385 |             addrlist->firstaddr = NULL;
194          |                                 ^
195    
196    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
197    Part-of: <https://gitlab.freedesktop.org/xorg/lib/libxtrans/-/merge_requests/20>
198
199commit 4792e9e798de327572aba1575438b6936a55c7ef
200Author: Alan Coopersmith <alan.coopersmith@oracle.com>
201Date:   Sat Aug 24 17:11:28 2024 -0700
202
203    Clear numerous -Wsign-compare warnings from gcc 14.1
204    
205    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
206    Part-of: <https://gitlab.freedesktop.org/xorg/lib/libxtrans/-/merge_requests/20>
207
208commit 9ad6c6764f0517f91492c04ae03a59f53229ef69
209Author: Alan Coopersmith <alan.coopersmith@oracle.com>
210Date:   Sat Aug 24 16:52:05 2024 -0700
211
212    SocketCreateListener: Fix -Wuseless-cast warning in bind() call
213    
214    sockname is defined as struct sockaddr * in the arguments to
215    SocketCreateListener so we don't need to cast to that when calling bind()
216    
217    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
218    Part-of: <https://gitlab.freedesktop.org/xorg/lib/libxtrans/-/merge_requests/20>
219
220commit 9ed4f5ec909cf262a2404012768858792f976e36
221Author: Alan Coopersmith <alan.coopersmith@oracle.com>
222Date:   Sat Aug 24 16:51:17 2024 -0700
223
224    LocalInitTransports: Fix -Wuseless-cast warning for getenv() call
225    
226    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
227    Part-of: <https://gitlab.freedesktop.org/xorg/lib/libxtrans/-/merge_requests/20>
228
229commit edd3f51328df9c621277168c9dd77b1e80ccfd7c
230Author: Robert Royals <robert.royals@protonmail.com>
231Date:   Sun Jul 21 22:54:27 2024 +0100
232
233    Fix string length check
234    
235    Part-of: <https://gitlab.freedesktop.org/xorg/lib/libxtrans/-/merge_requests/19>
236
237commit 656d27ed32af4082e8062c1d7c42b65ea3a6b80f
238Author: Kim Woelders <kim@woelders.dk>
239Date:   Thu Mar 28 18:01:20 2024 +0100
240
241    TRANS(GetHostname): Fix "‘strncpy’ output truncated.." warning
242    
243    Occurs when compiling xserver master with gcc 13.2.1.
244    
245    In file included from /local/stuff/xorg/include/X11/Xtrans/transport.c:69:
246    In function ‘_XSERVTransGetHostname’,
247        inlined from ‘_XSERVTransConvertAddress’ at /local/stuff/xorg/include/X11/Xtrans/Xtransutil.c:188:12:
248    /local/stuff/xorg/include/X11/Xtrans/Xtrans.c:1352:5: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation]
249     1352 |     strncpy (buf, name.nodename, len);
250          |     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
251    /local/stuff/xorg/include/X11/Xtrans/Xtrans.c:1350:11: note: length computed here
252     1350 |     len = strlen (name.nodename);
253          |           ^~~~~~~~~~~~~~~~~~~~~~
254    
255    Signed-off-by: Kim Woelders <kim@woelders.dk>
256    Part-of: <https://gitlab.freedesktop.org/xorg/lib/libxtrans/-/merge_requests/16>
257
258commit 6171150fe9f8edad3f1cfb14cec59e6a42a9c15b
259Author: Kim Woelders <kim@woelders.dk>
260Date:   Thu Mar 28 17:29:26 2024 +0100
261
262    TRANS(ParseAddress): Fix "assignment discards ‘const’ qualifier" warnings
263    
264    Occurs when compiling xserver master with gcc 13.2.1.
265    
266    In file included from /local/stuff/xorg/include/X11/Xtrans/transport.c:69,
267                     from ../os/xstrans.c:17:
268    /local/stuff/xorg/include/X11/Xtrans/Xtrans.c: In function ‘_XSERVTransParseAddress’:
269    /local/stuff/xorg/include/X11/Xtrans/Xtrans.c:216:15: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
270      216 |         _host = "";
271          |               ^
272    /local/stuff/xorg/include/X11/Xtrans/Xtrans.c:217:15: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
273      217 |         _port = address;
274          |               ^
275    /local/stuff/xorg/include/X11/Xtrans/Xtrans.c:229:15: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
276      229 |         _host = "";
277          |               ^
278    /local/stuff/xorg/include/X11/Xtrans/Xtrans.c:230:15: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
279      230 |         _port = address + 5;
280          |               ^
281    
282    Signed-off-by: Kim Woelders <kim@woelders.dk>
283    Part-of: <https://gitlab.freedesktop.org/xorg/lib/libxtrans/-/merge_requests/16>
284
285commit c219be946b1d8a641dcbc7a60904293f105e2866
286Author: Enrico Weigelt, metux IT consult <info@metux.net>
287Date:   Wed Apr 3 12:11:48 2024 +0200
288
289    update .gitignore
290    
291    Add some yet missing auto-generated files.
292    
293    Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
294
295commit 806f04c6e4529358f160e53135baf105e4ecf3b8
296Author: Alan Coopersmith <alan.coopersmith@oracle.com>
297Date:   Fri Oct 13 13:37:49 2023 -0700
298
299    gitlab CI: add libc-dev to required packages in build container
300    
301    Resolves configure failure:
302    configure:3823: checking whether the C compiler works
303    configure:3845: gcc    conftest.c  >&5
304    /usr/bin/ld: cannot find Scrt1.o: No such file or directory
305    /usr/bin/ld: cannot find crti.o: No such file or directory
306    collect2: error: ld returned 1 exit status
307    configure:3849: $? = 1
308    configure:3889: result: no
309    
310    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
311
312commit 3aa3c318ded5da802e181f0d29b94ab6a692e387
313Author: Alan Coopersmith <alan.coopersmith@oracle.com>
314Date:   Fri Oct 13 13:32:15 2023 -0700
315
316    gitlab CI: collect config.log to help diagnose failures
317    
318    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
319
320commit 6d5a4512b5ee4757a474df3f5e938784da963de1
321Author: Alan Coopersmith <alan.coopersmith@oracle.com>
322Date:   Fri Oct 13 13:26:49 2023 -0700
323
324    gitlab CI: add xz-utils to container for "make distcheck"
325    
326    Also update to latest ci-templates
327    
328    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
329
330commit 3b3a3bd75d86aec78f6ef893b198c3efc378bc64
331Author: Alan Coopersmith <alan.coopersmith@oracle.com>
332Date:   Fri Jun 2 17:29:41 2023 -0700
333
334    xtrans 1.5.0
335    
336    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
337
338commit 232a11a947564762689e63c3a6603d3f956f696d
339Author: Demi Marie Obenour <demiobenour@gmail.com>
340Date:   Thu Dec 15 14:48:13 2022 -0500
341
342    DISPLAY starting with unix: or / is always a socket path
343    
344    Do not consider anything else in this case.
345    
346    Signed-off-by: Demi Marie Obenour <demiobenour@gmail.com>
347
348commit b898f415e7c31de5b4beb06b22a5498049852e53
349Author: Demi Marie Obenour <demiobenour@gmail.com>
350Date:   Thu Dec 15 14:43:37 2022 -0500
351
352    Allow full paths to sockets on non-macOS
353    
354    This adds explicit checks for addresses that start with / or unix: and
355    uses full paths in this case.
356    
357    Signed-off-by: Demi Marie Obenour <demiobenour@gmail.com>
358
359commit e24adec1203cd25423ab2835a5be4f6b828b72a5
360Author: Demi Marie Obenour <demiobenour@gmail.com>
361Date:   Thu Dec 17 03:28:45 2020 +0000
362
363    Remove client-side abstract socket support
364    
365    CVE-2020-25697 and the Flatpak documentation show that clients using
366    abstract sockets without mutual authentication is unsafe.
367    TRANS_ABSTRACT remains supported, but it is now a no-op on the client
368    side.  Abstract sockets are still supported for servers, as the X server
369    authenticates the client via other methods.
370    
371    Signed-off-by: Demi Marie Obenour <demiobenour@gmail.com>
372
373commit 9d77996f9f972da63c06099fd8c0f0529159b98f
374Author: Alan Coopersmith <alan.coopersmith@oracle.com>
375Date:   Sat Feb 25 09:33:29 2023 -0800
376
377    Remove "All rights reserved" from Oracle copyright notices
378    
379    Oracle no longer includes this term in our copyright & license notices.
380    
381    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
382
383commit 9ae32feef793082a302e65d31514a958604c761d
384Author: Olivier Fourdan <ofourdan@redhat.com>
385Date:   Tue Jun 25 14:59:59 2019 +0200
386
387    Allow partial connection to succeed
388    
389    Xwayland can optionally be socket-activated by the Wayland compositor,
390    in which case it would use only the sockets provided by the compositor.
391    
392    However, that prevents other transport protocols from working, because
393    when it's given a socket from the Wayland compositor, it would disable
394    all other connections and rely solely on the given socket.
395    
396    Change `MakeAllCOTSServerListeners` to allow for partial connections so
397    that if `partial` is set to a non-zero value by the caller, we do not
398    bail out in the address is already in use.
399    
400    That allows to continue trying with other protocols even if the local
401    connection fails (as this is already handled by the socket from the
402    Wayland compositor).
403    
404    Related: https://gitlab.freedesktop.org/xorg/xserver/issues/817
405    Signed-off-by: Olivier Fourdan <ofourdan@redhat.com>
406
407commit c761c6505d49e8381a3eae94f2e5e118cbdf6487
408Author: Keith Packard <keithp@keithp.com>
409Date:   Wed Jan 29 12:54:26 2014 -0800
410
411    Use font server ErrorF/VErrorF instead of private versions
412    
413    XTrans creates custom ErrorF/VErrorF functions when the including
414    project doesn't provide them, however the test for that is weak and xtrans
415    ends up using the private versions for the font server as well.
416    
417    This means that all xtrans error messages will not be included in the
418    font server log. It also causes redefinition warnings when building
419    the font server (which is how this problem was identified).
420    
421    However, the font server doesn't currently provide a VErrorF function,
422    so instead of just always relying on the font server to provide these
423    functions, this patch uses a new TRANS_HAS_ERRORF define to select
424    whether the project-provided or internal versions will be used. A
425    patch to the font server that adds VErrorF and defines
426    TRANS_HAS_ERRORF will be required to fix this bug.
427    
428    Signed-off-by: Keith Packard <keithp@keithp.com>
429
430commit 8c0f5228e75aa949963aa8d27dcfa2648db2e197
431Author: Keith Packard <keithp@keithp.com>
432Date:   Wed Jan 29 12:54:25 2014 -0800
433
434    move is_numeric to Xtranssock.c and only define for TCPCONN or TRANS_REOPEN
435    
436    Don't define this function unless it is actually going to be used.
437    
438    Signed-off-by: Keith Packard <keithp@keithp.com>
439
440commit 3309c75906a56de86607f59481304b3a2812162f
441Author: Alan Coopersmith <alan.coopersmith@oracle.com>
442Date:   Tue May 10 09:18:15 2022 -0700
443
444    gitlab CI: add a basic build test
445    
446    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
447
448commit c069ede3c97f543d9bbe9ed67e56c74142921cc5
449Author: Alan Coopersmith <alan.coopersmith@oracle.com>
450Date:   Tue May 10 09:15:11 2022 -0700
451
452    Fix spelling/wording issues
453    
454    Found by using:
455        codespell --builtin clear,rare,usage,informal,code,names
456    
457    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
458
459commit 16a015524f3820f969362c2d10a3664999a12c3b
460Author: Alan Coopersmith <alan.coopersmith@oracle.com>
461Date:   Tue May 10 09:11:07 2022 -0700
462
463    Build xz tarballs instead of bzip2
464    
465    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
466
467commit 7898badde44cf518da6879c2622b6db9cd709c7d
468Author: Ray Strode <rstrode@redhat.com>
469Date:   Fri May 6 14:23:59 2022 -0400
470
471    Automatically disable inet6 transport if ipv6 is disabled on machine
472    
473    If a machine is booted with ipv6.disable=1, trying to bind to an
474    AF_INET6 socket will fail with AFNOSUPPORT.
475    
476    The tcp transport automatically falls back to ipv4 in this case, but
477    the more specific inet6 transport just fails.
478    
479    This failure leads to MakeAllCOTSServerListeners returning a partial
480    success.
481    
482    Unfortunately, the X server can't really contiue with partial successes
483    from this function if -displayfd is in use, since that would, in other
484    cases, potentially lead to the -displayfd electing a display number that
485    is potentially partially in use by a rogue program.
486    
487    This commit addresses the issue by automatically disabling transports
488    when they fail with AFNOSUPPORT, leading them to get ignored, rather than
489    proceeding and ultimately returning from MakeAllCOTSServerListerns with
490    partial=TRUE.
491
492commit 3b5df889f58a99980a35a7b4a18eb4e7d2abeac4
493Author: Adam Jackson <ajax@redhat.com>
494Date:   Wed Oct 9 14:05:47 2019 -0400
495
496    TEST_t is never defined
497    
498    This didn't even correspond to any of the testing protocol extensions!
499    Apparently there used to be some test programs in xtrans itself, and
500    they've not been a thing since 1994:
501    
502    https://cgit.freedesktop.org/~alanc/xc-historical/commit/?id=73bf4832c427855b2ce111d47dd1f181564b8d06
503    
504    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
505
506commit d0d471579ca69365d4cd5a548ce6fc8b4662d467
507Author: Adam Jackson <ajax@redhat.com>
508Date:   Wed Sep 25 11:09:52 2019 -0400
509
510    Remove non-Solaris SysV support
511    
512    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
513
514commit 521682b8b72e3ad50c9ae66a9b35249100188eb2
515Author: Adam Jackson <ajax@redhat.com>
516Date:   Tue Sep 24 21:29:46 2019 -0400
517
518    Delete SCO support
519    
520    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
521
522commit 3f8b27a9dff68792fdc448782459a6d41cade9ff
523Author: Adam Jackson <ajax@redhat.com>
524Date:   Tue Sep 24 19:48:17 2019 -0400
525
526    unifdef USG and NCR
527    
528    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
529
530commit c4262efc9688e495261d8b23a12f956ab38e006f
531Author: Alan Coopersmith <alan.coopersmith@oracle.com>
532Date:   Sat Mar 16 14:25:35 2019 -0700
533
534    xtrans 1.4.0
535    
536    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
537
538commit faa42207a0653535ab80825b0acb50b417702ec4
539Author: Alan Coopersmith <alan.coopersmith@oracle.com>
540Date:   Fri Dec 7 19:52:43 2018 -0800
541
542    Update configure.ac bug URL for gitlab migration
543    
544    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
545
546commit cd22de616c77328da3410b1eaab541c2d331ffdb
547Author: Alan Coopersmith <alan.coopersmith@oracle.com>
548Date:   Mon Nov 19 23:12:07 2018 -0800
549
550    Update README for gitlab migration
551    
552    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
553
554commit 06cfa80fb3d03ca03fd92f9687a77958338e012c
555Author: Alan Coopersmith <alan.coopersmith@oracle.com>
556Date:   Sun Sep 30 17:04:51 2018 -0700
557
558    Use fchmod() instead of chmod() when creating named pipes
559    
560    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
561
562commit 7bd504f7ab7799ab77ad50eb39f6afdbaf2f9e50
563Author: Alan Coopersmith <alan.coopersmith@oracle.com>
564Date:   Sat Aug 25 11:18:52 2018 -0700
565
566    Use strcasecmp if it's available, instead of lowercasing strings
567    
568    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
569
570commit 941cfa50bc2d45f20943fd21bab98e2eceeeb259
571Author: Alan Coopersmith <alan.coopersmith@oracle.com>
572Date:   Sat Aug 25 10:45:04 2018 -0700
573
574    Set freeXLOCAL to NULL after freeing it to prevent double frees
575    
576    We shouldn't be calling the LocalEndTransports routine twice, but
577    just make sure if we do, we don't call free twice on the same pointer.
578    
579    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
580
581commit a97e5fc6e4f294294d75500068892aea11952773
582Author: Rin Okuyama <rin@NetBSD.org>
583Date:   Tue Feb 21 06:18:37 2017 +0000
584
585    avoid -Wformat errors from clang
586    
587    https://bugs.freedesktop.org/show_bug.cgi?id=99882
588    
589    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
590    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
591
592commit 28366676effaa512e43bfd2276a317389a992511
593Author: Emil Velikov <emil.l.velikov@gmail.com>
594Date:   Mon Mar 9 12:00:52 2015 +0000
595
596    autogen.sh: use quoted string variables
597    
598    Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent
599    fall-outs, when they contain space.
600    
601    Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
602    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
603    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
604
605commit 8554cf05262ab6ad6e8da5f11022e5dc2a452e38
606Author: Peter Hutterer <peter.hutterer@who-t.net>
607Date:   Tue Jan 24 10:32:07 2017 +1000
608
609    autogen.sh: use exec instead of waiting for configure to finish
610    
611    Syncs the invocation of configure with the one from the server.
612    
613    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
614    Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
615
616commit 560d7550e23e9b14056b4a9b2569c2f256015f8a
617Author: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
618Date:   Sat Sep 10 22:09:51 2016 -0700
619
620    Update strlcpy macro check to also check HAVE_STRLCPY
621    
622    xorg-server moved from HAS_STRLCPY to HAVE_STRLCPY in 2011
623    
624    cf-xserver: d829a7c5cb42c979b58f3547136df5b05d906423
625    
626    Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
627
628commit 2e4c338eda8ec6996b7bacc1d0c7dfe7de925864
629Author: Adam Jackson <ajax@redhat.com>
630Date:   Thu Sep 1 09:28:58 2016 -0400
631
632    Revert "Make FreeConnInfo static"
633    
634    <anholt> ajax: 75419e6b6d985ea8796f05d1acb5e154b065c9b9 of xtrans also
635             seems to have broken xtest.
636    
637    And indeed it does, xts5 knows a fair amount about xlib internals for
638    some reason. Whether that's cromulent or not, we want to be able to run
639    automatic tests from top-of-tree, so we can't leave this broken.
640    
641    This reverts commit 75419e6b6d985ea8796f05d1acb5e154b065c9b9.
642    
643    Signed-off-by: Adam Jackson <ajax@redhat.com>
644
645commit 3810e026323210df6ec6cf818f01832a63e9fbb9
646Author: Adam Jackson <ajax@redhat.com>
647Date:   Wed May 18 12:58:31 2016 -0400
648
649    Remove GetMyAddr
650    
651    Again, pre-xcb libX11 was the only consumer.
652    
653    Reviewed-by: Keith Packard <keithp@keithp.com>
654    Signed-off-by: Adam Jackson <ajax@redhat.com>
655
656commit 75419e6b6d985ea8796f05d1acb5e154b065c9b9
657Author: Adam Jackson <ajax@redhat.com>
658Date:   Wed May 18 12:50:48 2016 -0400
659
660    Make FreeConnInfo static
661    
662    libX11 used to need this in the XOpenDisplay code, but hasn't since xcb
663    became mandatory.
664    
665    Reviewed-by: Keith Packard <keithp@keithp.com>
666    Signed-off-by: Adam Jackson <ajax@redhat.com>
667
668commit 0794b1b712a90b40e2b019c9edc6f96874493c52
669Author: Adam Jackson <ajax@redhat.com>
670Date:   Wed May 18 12:41:41 2016 -0400
671
672    unifdef LBXPROXY_t and TEST_t
673    
674    LBX is dead, and TEST_t is unused.
675    
676    Reviewed-by: Keith Packard <keithp@keithp.com>
677    Signed-off-by: Adam Jackson <ajax@redhat.com>
678
679commit 473e77563b16fa7c42db9403c1382e9483e3666c
680Author: Adam Jackson <ajax@redhat.com>
681Date:   Wed May 18 12:38:02 2016 -0400
682
683    Remove CLTS code
684    
685    Never been used, as far as I can tell.
686    
687    Reviewed-by: Keith Packard <keithp@keithp.com>
688    Signed-off-by: Adam Jackson <ajax@redhat.com>
689
690commit b167145a51153eccc16a3e43f7ed0faea7e6c762
691Author: Adam Jackson <ajax@redhat.com>
692Date:   Wed May 18 15:19:50 2016 -0400
693
694    autogen: Add a default patch prefix
695    
696    Signed-off-by: Adam Jackson <ajax@redhat.com>
697
698commit cc29fbc1fe86ae4dfe2f4eaae7352ea86aa4acac
699Author: Alan Coopersmith <alan.coopersmith@oracle.com>
700Date:   Sat Nov 28 13:04:21 2015 -0800
701
702    Remove support for SysV on x86 platforms other than Solaris & SCO
703    
704    No other x86 SysV platforms have ever been supported in the modular
705    build systems, so we don't need to keep carrying around a bunch of
706    ifdef's for them.
707    
708    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
709    Reviewed-by: Mark Kettenis <kettenis@openbsd.org>
710
711commit 3ba0b7a37b9053662ff42f0b4caa856856098475
712Author: Richard PALO <richard@NetBSD.org>
713Date:   Tue Nov 17 07:02:27 2015 +0100
714
715    Replace 'sun' with '__sun'
716    
717    Globally replace #ifdef and #if defined usage of 'sun' with '__sun' such
718    that strict ISO compiler modes such as -ansi or -std=c99 can be used.
719    
720    Signed-off-by: Richard PALO <richard@NetBSD.org>
721    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
722    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
723
724commit 1d31b87e8045f3fc89b1914187a9a13861d35f2d
725Author: Julien Cristau <jcristau@debian.org>
726Date:   Wed Jul 29 20:36:13 2015 +0200
727
728    Make sure LONG64 is defined in Xtrans.h
729    
730    Xtrans.h defines BytesReadable_t as int or long depending on whether
731    LONG64 is defined.  We need to make sure Xmd.h is included so our idea
732    of BytesReadable_t is consistent across compilation units.
733    
734    Debian bug#749120
735    
736    Reported-by: Michael Tautschnig <mt@debian.org>
737    Signed-off-by: Julien Cristau <jcristau@debian.org>
738    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
739
740commit 7cbad9fe2e61cd9d5caeaf361826a6f4bd320f03
741Author: Keith Packard <keithp@keithp.com>
742Date:   Sat Sep 20 10:02:05 2014 -0700
743
744    xtrans 1.3.5
745    
746    Signed-off-by: Keith Packard <keithp@keithp.com>
747
748commit fb7f198c88e97d22c8c89e76e9cd06b2b2720a96
749Author: Keith Packard <keithp@keithp.com>
750Date:   Fri Sep 12 11:27:39 2014 -0700
751
752    Add TRANS(Listen) function to re-enable specific listen sockets
753    
754    This will allow a server to disable listeners by default and then
755    let later configuration re-enable them. In particular, this lets the X
756    server disable inet and unix listen sockets by default while still
757    providing a '-listen' command line option to re-enable them later on.
758    
759    Signed-off-by: Keith Packard <keithp@keithp.com>
760    Reviewed-by: Hans de Goede <hdegoede@redhat.com>
761
762commit 17491de45c352c833442cccf17a9bd65909889db
763Author: Alan Coopersmith <alan.coopersmith@oracle.com>
764Date:   Sat Aug 23 12:28:14 2014 -0700
765
766    Add const qualifiers to TRANS(OpenC{L,O}TS{Server,Client}) args
767    
768    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
769
770commit 305d20f2ee888d1c890f902da978176b8ec58a8d
771Author: Alan Coopersmith <alan.coopersmith@oracle.com>
772Date:   Sat Aug 23 12:10:48 2014 -0700
773
774    Add const qualifiers to TRANS(MakeAll*ServerListeners) port args
775    
776    Required also changing receive_listening_fds to specify port as const,
777    which we can do now that TRANS(ReopenCOTSServer) takes it as const.
778    
779    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
780
781commit ba70d48951fb925fb3082d81afb08c330333aa51
782Author: Alan Coopersmith <alan.coopersmith@oracle.com>
783Date:   Sat Aug 23 11:33:57 2014 -0700
784
785    Add const qualifiers to TRANS(Connect) args
786    
787    Also required constifying UnixHostReallyLocal, since SocketUNIXConnect
788    passes the host arg through to it.
789    
790    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
791
792commit 63b65a20706def951dd25e531949b7bc556419eb
793Author: Alan Coopersmith <alan.coopersmith@oracle.com>
794Date:   Sat Aug 23 10:17:57 2014 -0700
795
796    Add const qualifiers to TRANS(CreateListener) port args
797    
798    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
799
800commit fd90a4e00321b22c96565cfa354b8b0efa376979
801Author: Alan Coopersmith <alan.coopersmith@oracle.com>
802Date:   Sat Aug 23 10:07:22 2014 -0700
803
804    Add const qualifiers to TRANS(Reopen...) port args
805    
806    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
807
808commit a56ec9d720a7964bada837790e9c1f6ceef97861
809Author: Alan Coopersmith <alan.coopersmith@oracle.com>
810Date:   Sat Aug 23 09:58:05 2014 -0700
811
812    Add const qualifiers to TRANS(Open...) address args
813    
814    Required also adding const to static TRANS(ParseAddress) function which
815    they pass the address arg to for parsing.
816    
817    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
818
819commit 30b3fd74a27c80993e81dfcb33e33520ae8684fb
820Author: Alan Coopersmith <alan.coopersmith@oracle.com>
821Date:   Sat Aug 23 12:46:44 2014 -0700
822
823    Update docs to note that TransName is now const char *
824    
825    Missed when the code was updated in commit eb9a8904fbef61a57ff0.
826    
827    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
828
829commit a57a7f62242e1ea972b81414741729bf3dbae0a4
830Author: Hans de Goede <hdegoede@redhat.com>
831Date:   Mon Mar 31 12:37:43 2014 +0200
832
833    xtrans 1.3.4
834    
835    Signed-off-by: Hans de Goede <hdegoede@redhat.com>
836
837commit 1cd9cbe9b404e6c3e73dc0239d11547a5e2c02c4
838Author: Mark Kettenis <kettenis@openbsd.org>
839Date:   Sat Mar 29 23:51:49 2014 +0100
840
841    Increase UNIX socket buffer size
842    
843    Some systems provide a really small default buffer size for UNIX sockets.
844    Bump it up to 64k if necessary such that large transfers (such as
845    XGetImage() on a 8-megapixel image) don't take tens of seconds.
846    
847    Signed-off-by: Hans de Goede <hdegoede@redhat.com>
848
849commit 68f60238c4224f954ff6556ae778c72e420175f0
850Author: Thomas Klausner <wiz@NetBSD.org>
851Date:   Wed Mar 26 13:21:49 2014 +0100
852
853    Add missing headers for free() and strlen().
854    
855    Reviewed-by: Mark Kettenis <kettenis@openbsd.org>
856    Signed-off-by: Thomas Klausner <wiz@NetBSD.org>
857
858commit 34463baacb3cafc096e0e0859bc10d6868cb2299
859Author: Thomas Klausner <wiz@NetBSD.org>
860Date:   Wed Mar 26 13:21:23 2014 +0100
861
862    Cast ctype(3) function arguments to unsigned char.
863    
864    Fixes warnings on at least NetBSD.
865    
866    Reviewed-by: Mark Kettenis <kettenis@openbsd.org>
867    Signed-off-by: Thomas Klausner <wiz@NetBSD.org>
868
869commit f20a9bb2ea25408ce9f1166b3b6e48759960fe86
870Author: Hans de Goede <hdegoede@redhat.com>
871Date:   Mon Mar 3 08:42:45 2014 +0100
872
873    configure: Also add -D_DEFAULT_SOURCE to .pc cflags to shut up glibc warnings
874    
875    The latest glibc considers _BSD_SOURCE deprecated, leading to the following
876    warning being issued for pretty much every C-file in the xserver:
877    
878    In file included from /usr/include/stdint.h:25:0,
879                     from /usr/lib/gcc/x86_64-redhat-linux/4.8.2/include/stdint.h:9,
880                     from ../include/misc.h:81,
881                     from miexpose.c:82:
882    /usr/include/features.h:145:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp]
883     # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE"
884       ^
885    
886    I've discussed this with the glibc developers and the prefered way of fixing
887    this is by also defining _DEFAULT_SOURCE which is the new way of stating
888    _BSD_SOURCE / _SVID_SOURCE .
889    
890    Signed-off-by: Hans de Goede <hdegoede@redhat.com>
891    Reviewed-by: Mark Kettenis <kettenis@openbsd.org>
892    Tested-by: Kristian Høgsberg <krh@bitplanet.net>
893    Reviewed-by: Kristian Høgsberg <krh@bitplanet.net>
894
895commit 3f0de269abe59353acbd7a5587d68ce0da91db67
896Author: Hans de Goede <hdegoede@redhat.com>
897Date:   Thu Jan 23 11:47:25 2014 +0100
898
899    xtrans 1.3.3
900    
901    Signed-off-by: Hans de Goede <hdegoede@redhat.com>
902
903commit 8f3bbed42c308f9c90293f23b7eaceff006aa232
904Author: Jon TURNEY <jon.turney@dronecode.org.uk>
905Date:   Wed Jul 10 16:29:12 2013 +0100
906
907    Add TransIsListening()
908    
909    libxtrans provides TransNoListen() to set the 'don't listen' flag for a
910    particular transport, but there is no interface to query the state of that flag
911    
912    This is a bit of a problem for the XWin server, as it wants to start some helper
913    clients (for clipboard integration and integrated window management), so needs
914    to know what transports the server is listening on to construct appropriate
915    display names for those clients.
916    
917    Add TransIsListening() to discover if TransNoListen() has been called for a
918    particular protocol or not
919    
920    HdG:
921    -Invert the final check so that TransIsListening returns True when
922     TRANS_NOLISTEN is not set, as one would expect of it.
923    -Make the protocol argument a const char * as similar functions do
924    -Fix "warning: too many arguments for format" warning
925    
926    Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
927    Signed-off-by: Hans de Goede <hdegoede@redhat.com>
928
929commit e1e6121a1638d43d9929589b4723da2b38cb6b44
930Author: Łukasz Stelmach <l.stelmach@samsung.com>
931Date:   Mon Nov 25 11:11:54 2013 +0100
932
933    Enable systemd socket activation
934    
935    Receive file descriptors of open sockets from systemd instead of
936    creating them.
937    
938    Signed-off-by: Łukasz Stelmach <l.stelmach@samsung.com>
939    Cc: Kyungmin Park <kyungmin.park@samsung.com>
940    Cc: MyungJoo Ham <myungjoo.ham@samsung.com>
941    Cc: Piort Bereza <p.bereza@samsung.com>
942    Cc: Karol Lewandowski <k.lewandowsk@samsung.com>
943    Cc: Lennart Poettering <lennart@poettering.net>
944    Cc: Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
945    Cc: Peter Hutterer <peter.hutterer@who-t.net>
946    Cc: walter harms <wharms@bfs.de>
947    Signed-off-by: Hans de Goede <hdegoede@redhat.com>
948    Acked-by: Peter Hutterer <peter.hutterer@who-t.net>
949
950commit b895d45e225dd3d1bf9d598774d3ae4f29fcbc25
951Author: Łukasz Stelmach <l.stelmach@samsung.com>
952Date:   Thu Nov 28 12:57:21 2013 +0100
953
954    Define TRANS_RECEIVED flag for transports
955    
956    The flag is to be used to mark transports related to sockets
957    received from systemd.
958    
959    Signed-off-by: Łukasz Stelmach <l.stelmach@samsung.com>
960    Signed-off-by: Hans de Goede <hdegoede@redhat.com>
961    Acked-by: Peter Hutterer <peter.hutterer@who-t.net>
962
963commit 2c0a7840a28ae696e80e73157856d7a049fdf6c7
964Author: Gaetan Nadon <memsize@videotron.ca>
965Date:   Sun Dec 15 19:49:59 2013 -0500
966
967    xtrans.m4: remove AC_TYPE_SIGNAL and Imake SIGNALRETURNSINT
968    
969    Assume signal handlers return void, as C89 requires
970    
971    Drops use of autoconf's obsolete AC_TYPE_SIGNAL and Imake's even more
972    obsolete SIGNALRETURNSINT.
973    
974    None of the modules including xtrans.m4 uses RETSIGTYPE from autoconf.
975    
976    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
977
978commit 87547e43189301e3dd42feb9d7ff32a75d0e727f
979Author: Gaetan Nadon <memsize@videotron.ca>
980Date:   Sun Dec 15 16:11:00 2013 -0500
981
982    xtrans.m4: replace deprecated AC_HAVE_LIBRARY with AC_CHECK_LIB
983    
984    The #define HAVE_LIBWS2_32 is still done and the lib ws2_32 is
985    prepended to LIBS if found.
986    
987    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
988
989commit 88433eb1abe887000d34315c2f55aa42fcddfdee
990Author: Gaetan Nadon <memsize@videotron.ca>
991Date:   Sun Dec 15 15:36:48 2013 -0500
992
993    xtrans.m4: fix warning by replacing obsolete AC_HELP_STRING
994    
995    with AS_HELP_STRING
996    
997    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
998
999commit 9487701904b71985549f60c9d8bc5df48682b55a
1000Author: Mark Kettenis <kettenis@openbsd.org>
1001Date:   Thu Nov 21 11:55:17 2013 +0100
1002
1003    Don't restrict FD passing to Linux & Solaris
1004    
1005    Signed-off-by: Mark Kettenis <kettenis@openbsd.org>
1006    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1007    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1008
1009commit 8b2c8aabe27bcaa4de6432b53c4a1296010ea823
1010Author: Mark Kettenis <kettenis@openbsd.org>
1011Date:   Mon Nov 11 23:18:01 2013 +0100
1012
1013    Fix alignment issues in FD passing code
1014    
1015    A char array on the stack is not guaranteed to have more than byte
1016    alignment.  This means that casting it to a 'struct cmsghdr' and
1017    accessing its members may result in unaligned access.  This will
1018    generate SIGBUS on strict alignment architectures like OpenBSD/sparc64.
1019    The solution is to use a union to force proper alignment.
1020    
1021    Signed-off-by: Mark Kettenis <kettenis@openbsd.org>
1022    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
1023
1024commit 81662d2018a35a161a5e9707563ee7f503f8d3e0
1025Author: Mark Kettenis <kettenis@openbsd.org>
1026Date:   Mon Nov 11 23:16:15 2013 +0100
1027
1028    Remove unused static inlines
1029    
1030    Signed-off-by: Mark Kettenis <kettenis@openbsd.org>
1031    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
1032
1033commit 0153d1670e4a1883e1bb6dd971435d6268eac5ba
1034Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1035Date:   Thu Nov 7 20:16:53 2013 -0800
1036
1037    xtrans 1.3.2
1038    
1039    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1040
1041commit 426049c30162ed620cc16bb58edef6aac4e2ee5d
1042Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1043Date:   Thu Nov 7 19:17:44 2013 -0800
1044
1045    Allow XTRANS_SEND_FDS on Solaris as well
1046    
1047    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1048
1049commit 76b4f4430f9a857a1b54bfde9ef57a95b87789f5
1050Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1051Date:   Wed Nov 6 22:34:03 2013 -0800
1052
1053    Check if we need to define _XOPEN_SOURCE for struct msghdr.msg_control
1054    
1055    Required to expose the structure members in Solaris headers, since it
1056    was an XPG4/UNIX95 addition to the Solaris ABI.
1057    
1058    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1059
1060commit 32070a64ba99fb89ec039e26444b1e026d6a978e
1061Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1062Date:   Wed Nov 6 21:52:21 2013 -0800
1063
1064    Add stubs for send/recv fd functions in local transports
1065    
1066    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1067
1068commit 08bf85958fab64951a9ba9e27dcb6b8eb818cc7e
1069Author: Keith Packard <keithp@keithp.com>
1070Date:   Thu Nov 7 18:04:30 2013 -0800
1071
1072    Switch to CMSG_* macros for FD passing
1073    
1074    This should be portable to non-Linux systems
1075    
1076    Signed-off-by: Keith Packard <keithp@keithp.com>
1077    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1078    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1079
1080commit 6b54b5cf8086f127aa87096e2bdd2263d1c81683
1081Author: Keith Packard <keithp@keithp.com>
1082Date:   Thu Nov 7 03:49:05 2013 -0800
1083
1084    Actually disable all of the FD passing code unless XTRANS_SEND_FDS is set
1085    
1086    Stick all of the functions relating to FD passing inside
1087    
1088    Signed-off-by: Keith Packard <keithp@keithp.com>
1089
1090commit f3709f3e0b883a0b4956313f89fa931e9264c346
1091Author: Keith Packard <keithp@keithp.com>
1092Date:   Wed Nov 6 23:16:11 2013 -0800
1093
1094    Update to version 1.3.1
1095    
1096    Signed-off-by: Keith Packard <keithp@keithp.com>
1097
1098commit 074614940c570524e1446f55fc12a64415057e1f
1099Author: Mark Kettenis <kettenis@openbsd.org>
1100Date:   Wed Nov 6 23:13:28 2013 -0800
1101
1102    Don't include file descriptor passing code by default
1103    
1104    Leave it up to the consumer to request this functionality by defining
1105    XTRANS_SEND_FDS.
1106    
1107    Signed-off-by: Mark Kettenis <kettenis@openbsd.org>
1108    Reviewed-by: Keith Packard <keithp@keithp.com>
1109    Signed-off-by: Keith Packard <keithp@keithp.com>
1110    
1111    v2 - make sure this is only defined on systems where the code actually
1112    works (Linux for now)
1113
1114commit a7094c389ac9fd5ca265996f76eb55cb1133974b
1115Author: Keith Packard <keithp@keithp.com>
1116Date:   Sat Nov 2 19:23:41 2013 -0700
1117
1118    Add SEND_FDS version of Readv
1119    
1120    Now that we've found that libFS uses readv, we can test whether this
1121    readv implementation works correctly.
1122    
1123    Signed-off-by: Keith Packard <keithp@keithp.com>
1124
1125commit 58151f63553faf81babd1371770b7a7f33cecac1
1126Author: Keith Packard <keithp@keithp.com>
1127Date:   Sat Nov 2 19:10:11 2013 -0700
1128
1129    Revert "Remove 'Readv' interface"
1130    
1131    This reverts commit 9e8d99c2e27f2c8acbbfb5b760649aa1bfad665e.
1132    
1133    libFS still uses this API...
1134
1135commit 1fb0fd555a16dd8fce4abc6d3fd22b315f46762a
1136Author: Keith Packard <keithp@keithp.com>
1137Date:   Thu Oct 31 17:21:53 2013 -0700
1138
1139    Update to version 1.3.0
1140    
1141    Adds FD passing interfaces and pulls in current patches past 1.2.7
1142    
1143    Signed-off-by: Keith Packard <keithp@keithp.com>
1144
1145commit adf920aa25c1709998c7c9276927061bd58e2dfc
1146Author: Keith Packard <keithp@keithp.com>
1147Date:   Tue Jan 8 16:47:05 2013 -0800
1148
1149    Add APIs to send file descriptors through the network
1150    
1151    Exposes new TRANS(SendFd)/TRANS(RecvFd) APIs.
1152    
1153    Signed-off-by: Keith Packard <keithp@keithp.com>
1154
1155commit 9e8d99c2e27f2c8acbbfb5b760649aa1bfad665e
1156Author: Keith Packard <keithp@keithp.com>
1157Date:   Fri Jan 18 16:47:30 2013 -0800
1158
1159    Remove 'Readv' interface
1160    
1161    No-one uses this, so there's no reason for it to be in the library
1162    
1163    Signed-off-by: Keith Packard <keithp@keithp.com>
1164
1165commit f6a161f2a003f4da0a2e414b4faa0ee0de0c01f0
1166Author: Łukasz Stelmach <l.stelmach@samsung.com>
1167Date:   Tue Jul 9 16:24:43 2013 +0200
1168
1169    Add const qualifier to unix_nolisten
1170    
1171    Signed-off-by: Łukasz Stelmach <l.stelmach@samsung.com>
1172    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1173    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
1174    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1175
1176commit bd53f4c8543faf910a7a151241ee07661b4d57ad
1177Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1178Date:   Sun Jan 27 22:11:40 2013 -0800
1179
1180    Docs: Drop pre-C89 TRANS() from docs since it's no longer in the headers
1181    
1182    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1183
1184commit 3c4e0455425d5afd546c4a3f2cc9f8c7e60f2fca
1185Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1186Date:   Sun Jan 27 21:39:34 2013 -0800
1187
1188    Docs: convert function synopses to docbook funcsynopsis markup
1189    
1190    Also add some cross-reference links and various other markup improvements.
1191    
1192    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1193
1194commit d9f3728ff74ceb956f6cf8dc24b38611f9a4868a
1195Author: Colin Walters <walters@verbum.org>
1196Date:   Wed Jan 4 17:37:06 2012 -0500
1197
1198    autogen.sh: Implement GNOME Build API
1199    
1200    http://people.gnome.org/~walters/docs/build-api.txt
1201    
1202    Signed-off-by: Adam Jackson <ajax@redhat.com>
1203
1204commit 575e1e901ca842ba8ff7417f48175fb6a8d70859
1205Author: Adam Jackson <ajax@redhat.com>
1206Date:   Tue Jan 15 14:28:48 2013 -0500
1207
1208    configure: Remove AM_MAINTAINER_MODE
1209    
1210    Signed-off-by: Adam Jackson <ajax@redhat.com>
1211
1212commit ec3136232f7ce930f9ca812b6ab42a71b60af4af
1213Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1214Date:   Wed Dec 26 19:08:16 2012 -0800
1215
1216    Remove unused TLI ("STREAMSCONN") code from xtrans
1217    
1218    Has never been converted to build in modular builds, so has been unusable
1219    since X11R7.0 release in 2005.  All known platforms with TLI/XTI support
1220    that X11R7 & later releases run on also have (and mostly prefer) BSD
1221    socket support for their networking API.
1222    
1223    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1224
1225commit 8ce5ecd33b05becc054dbd07f87e385165b6c979
1226Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1227Date:   Thu Mar 22 20:04:07 2012 -0700
1228
1229    xtrans 1.2.7
1230    
1231    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1232
1233commit f8eea0bf256de59602790b6a7c7877b31520440f
1234Author: Matt Dew <marcoz@osource.org>
1235Date:   Wed Jan 11 22:23:32 2012 -0700
1236
1237    informaltable cleanup
1238    
1239    On certain tables, add top and bottom borders to table
1240    header and a bottom border to the table. This matches
1241    what those tables in the old pdfs looked like.
1242    
1243    the <?dbfo keep-together='always'> prevents tables from
1244    splitting across pages. Useful for tiny tables.
1245    
1246    Converting the colwidth to a floating point,
1247    IE, 1* -> 1.0* cleans up these build errors:
1248    WARNING: table-layout="fixed" and column-width unspecified
1249    => falling back to proportional-column-width(1)
1250    
1251    Signed-off-by: Matt Dew <marcoz@osource.org>
1252
1253commit 6086f6c1d0e0a1c9e590879acb2319dea0eb6e96
1254Author: Robert Bragg <robert@linux.intel.com>
1255Date:   Mon Dec 12 00:30:43 2011 +0000
1256
1257    Xtranssock.c: avoid buffer overrun in SocketReopen
1258    
1259    This function was constructing an address from a port string allocating
1260    a buffer according to the size of the string but then later copying
1261    the address according to sizeof(struct sockaddr).
1262    
1263    This patch ensures that we allocate a struct sockaddr buffer with enough
1264    space for the port string to be copied into sa_data[] and uses that
1265    combined length to determine how much should be copied at the end of the
1266    function.
1267    
1268    This fixes a crash when using xwayland which uses ListenOnOpenFD() that
1269    will call _XSERVTransReopenCOTSServer() with a short port string like
1270    ":1".
1271    
1272    Signed-off-by: Robert Bragg <robert@linux.intel.com>
1273    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1274    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1275
1276commit a04a45cb94f7f569e6dd77df93258fa167d0a4ea
1277Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1278Date:   Wed Nov 30 18:40:46 2011 -0800
1279
1280    Remove unnecessary casts on malloc, calloc & free calls
1281    
1282    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1283    Reviewed-by: Mark Kettenis <kettenis@openbsd.org>
1284
1285commit a0bfb4fefd20b396e3d88eff0c60602fc436dad5
1286Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1287Date:   Wed Nov 30 18:11:15 2011 -0800
1288
1289    Replace malloc(strlen)+strcpy with strdup
1290    
1291    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1292    Reviewed-by: Mark Kettenis <kettenis@openbsd.org>
1293
1294commit b89e1b45198c48996750b5da3d715c10f974243f
1295Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1296Date:   Wed Nov 30 18:05:05 2011 -0800
1297
1298    Finish conversion to standard C allocation functions
1299    
1300    Commit 4ac40cd5451 started this, by no longer special casing the
1301    xserver to include it's former custom allocation functions, this
1302    just takes the remaining #defines and pre-substitutes them into
1303    the code.
1304    
1305    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1306
1307commit ff992be7b05483f9a0586a27ee0edb6d99580b84
1308Author: Alan Hourihane <alanh@fairlite.co.uk>
1309Date:   Thu Dec 1 12:04:22 2011 +0000
1310
1311    Fix some resource & memory leaks in libxtrans.
1312    
1313    Signed-off-by: Alan Hourihane <alanh@vmware.com>
1314    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1315    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1316
1317commit 29c9e101f7ad72556aa6b3dbc17d66a1ace9b2b1
1318Author: Matt Dew <marcoz@osource.org>
1319Date:   Tue Oct 4 21:59:50 2011 -0600
1320
1321    Cleanup IDs and links in doc
1322    
1323    1 - fix the capitalization of the ID attributes to match either the
1324         <title> or <funcdef> string it goes with.
1325    2 - fix any <linkend>'s that were affected by 1.
1326    3 - any <function> in the docs that has an actual funcdef,
1327    will become an olink.
1328    
1329    Signed-off-by: Matt Dew <marcoz@osource.org>
1330
1331commit 0f942e5f015cb3270e6f2e17c308bee894cb5fe3
1332Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1333Date:   Sun Sep 25 11:39:13 2011 -0700
1334
1335    Convert a bunch of sprintf calls to snprintf
1336    
1337    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1338    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
1339
1340commit eb9a8904fbef61a57ff01c90627ead57055ed62b
1341Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1342Date:   Sun Sep 25 11:18:26 2011 -0700
1343
1344    Add const attributes to fix gcc -Wwrite-strings warnings
1345    
1346    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1347    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
1348
1349commit 4e610d4bbcf29cca9dc5dbad29ca820996aaa8c7
1350Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1351Date:   Sun Sep 25 10:59:45 2011 -0700
1352
1353    Fix warning: unused variable 'tmpport' with various configurations
1354    
1355    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1356    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
1357
1358commit a74c5d915c3095059356f83d1b845192e5c472c2
1359Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1360Date:   Sun Sep 25 10:57:00 2011 -0700
1361
1362    Add _X_UNUSED attributes to silence unused parameter warnings
1363    
1364    Not all the transport variants use all the arguments to every function,
1365    but as long as one transport type needs it, they all get the args passed.
1366    
1367    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1368    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
1369
1370commit 64f765de138cb9b757df315469b3136d32222ea2
1371Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1372Date:   Sat Sep 24 00:04:40 2011 -0700
1373
1374    Mark __xtransname strings for debug messages as const char *
1375    
1376    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1377    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
1378
1379commit ea921932dae7049b231bead7f8f3f088d7beaf9e
1380Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1381Date:   Fri Sep 23 23:03:09 2011 -0700
1382
1383    Fix unused variable warnings
1384    
1385    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1386    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
1387
1388commit c1968d10f97d62ac05d698822c2688151f70a9eb
1389Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1390Date:   Fri Sep 23 22:59:11 2011 -0700
1391
1392    Fix warning: ISO C90 forbids mixed declarations and code
1393    
1394    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1395    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
1396
1397commit 225c45b3accab56fab361104a3d14b80f6cec954
1398Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1399Date:   Fri Sep 23 22:57:56 2011 -0700
1400
1401    Fix printf format string warnings
1402    
1403    Now that prmsg lets arguments types actually be checked, fix
1404    the warnings found.
1405    
1406    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1407    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
1408
1409commit b1b69ce8e8e4fe0f190c8bd85b537309e71055c8
1410Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1411Date:   Fri Sep 23 22:35:03 2011 -0700
1412
1413    Convert PRMSG macro to prmsg inline function
1414    
1415    Allows using varargs to have the correct number of arguments passed to
1416    get rid of the many gcc warnings about variable printf format strings,
1417    and to reduce the duplication from having 5 implementations of the
1418    PRMSG macro depending on the debug options defined & output method used.
1419    
1420    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1421    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
1422
1423commit cbdb434033da1725a69014cc6e4d89c691a6fd95
1424Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1425Date:   Sat Sep 24 07:43:07 2011 -0700
1426
1427    Fix warnings about static functions declared but never defined
1428    
1429    Add #define XTRANS_TRANSPORT_C to transport.c and check for it
1430    before making static function declarations and other bits needed
1431    only when compiling the Xtrans code itself, not from other sources
1432    that include the Xtransint.h header for the struct definitions.
1433    
1434    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1435    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
1436
1437commit cf39d738086b0a7c668fb3720d64de8d711a1a97
1438Author: Arvind Umrao <arvind.umrao@oracle.com>
1439Date:   Tue Sep 20 22:56:52 2011 +0530
1440
1441    Removing SUN specific code, let solaris create .X11-pipe with sticky bit on
1442    
1443    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
1444    
1445    Signed-off-by: Arvind Umrao <arvind.umrao@oracle.com>
1446    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1447
1448commit a477713b89686480cf59a9c75c0aaeeba2386d0a
1449Author: Gaetan Nadon <memsize@videotron.ca>
1450Date:   Tue Sep 20 18:56:47 2011 -0400
1451
1452    specs: regroup <author> <editor> <othercredit> under authorgroup
1453    
1454    Some elements are not displayed when outside authorgroup
1455    
1456    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1457
1458commit 1ad48fb9bc18d0c7a8fbec1d2cd232877e945047
1459Author: Gaetan Nadon <memsize@videotron.ca>
1460Date:   Tue Sep 20 15:47:09 2011 -0400
1461
1462    specs: refactor copyright legal text for multi licensing
1463    
1464    we can use <copyright> markup for the first holder
1465    
1466    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1467
1468commit bd93bf86fd914a9cc54e2bedec5b063e5a38b732
1469Author: Gaetan Nadon <memsize@videotron.ca>
1470Date:   Mon Sep 19 10:58:40 2011 -0400
1471
1472    doc: support multi licensed copyright notice and license text
1473    
1474    For documentation having multiple licenses, the copyright and legalnotice
1475    elements sequence cannot instantiated multiple times.
1476    The copyright notice and license text are therefore coded inside a
1477    legalnotice element. The role attribute on the paragraph is used to allow
1478    styling of the copyright notice text which should not be italicized.
1479    
1480    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1481
1482commit eb9ec458b7fb5332f7ae7b8faf59443a9075ec60
1483Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1484Date:   Fri Sep 16 22:54:41 2011 -0700
1485
1486    Strip trailing whitespace
1487    
1488    Performed with: find * -type f | xargs perl -i -p -e 's{[ \t]+$}{}'
1489    git diff -w & git diff -b show no diffs from this change
1490    
1491    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1492
1493commit 36174eb06e805fa51c9c2e9e914fdfad4a99f50f
1494Author: Gaetan Nadon <memsize@videotron.ca>
1495Date:   Wed Sep 14 15:29:19 2011 -0400
1496
1497    docs: fix authors affiliation
1498    
1499    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1500
1501commit 9b6c2473be2848ce0a4986ddaa59e5f5ef028bfc
1502Author: Gaetan Nadon <memsize@videotron.ca>
1503Date:   Mon Sep 12 16:37:24 2011 -0400
1504
1505    docs: use the &fullrelvers; entity to set X11 release information
1506    
1507    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1508
1509commit b5754cdf64f3396a5853413eda1943cf75ff3cbd
1510Author: Gaetan Nadon <memsize@videotron.ca>
1511Date:   Sun Sep 11 19:49:54 2011 -0400
1512
1513    docs: remove <productnumber> which is not used by default
1514    
1515    This element is not rendered by default on the title. A template
1516    customization is required to display it.
1517    X Window System does not have a product number.
1518    
1519    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1520
1521commit 20f338c548e5fcb16650a4e2c25c2008c1fdac36
1522Author: Gaetan Nadon <memsize@videotron.ca>
1523Date:   Thu Sep 8 20:00:00 2011 -0400
1524
1525    docbook.am: embed css styles inside the HTML HEAD element
1526    
1527    Rather than referring to the external xorg.css stylesheet, embed the content
1528    of the file in the html output produced. This is accomplished by using
1529    version 1.10 of xorg-xhtml.xsl.
1530    
1531    This makes the whole html docs tree much more relocatable.
1532    In addition, it eliminates xorg.css as a runtime file which makes
1533    xorg-sgml-doctools a build time only package.
1534    
1535    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1536
1537commit 8eb827af1b57ec52be183cddaf32257968c02878
1538Author: Gaetan Nadon <memsize@videotron.ca>
1539Date:   Wed Sep 7 10:31:04 2011 -0400
1540
1541    docbook.am: global maintenance update - entities, images and olinking
1542    
1543    Adding support in libX11 for html chunking caused a reorg of docbook.am
1544    as well as the xorg-sgml-doctools masterdb for olinking.
1545    The parameter img.src.path is added for pdf images.
1546    A searchpath to the root builddir is added for local entities, if present.
1547    
1548    The docbook.am makefile hides all the details and is identical for
1549    all 22 modules having DocBook documentation. It is included by a thin
1550    Makefile.am which requires no docbook knowledge.
1551    
1552    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1553
1554commit b710cdadc92fc212af361bee48f5af6333ec3e6d
1555Author: Gaetan Nadon <memsize@videotron.ca>
1556Date:   Sun Jun 12 18:39:46 2011 -0400
1557
1558    Install xml versions of specs even if HAVE_XMLTO is false
1559    
1560    DocBook/XML input source is also a usefull output format that can be viewed
1561    with an XML viewer or editor and by some O/S help system.
1562    
1563    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1564
1565commit 78d1f7d29145567e11b985042e917a435bef95f9
1566Author: Gaetan Nadon <memsize@videotron.ca>
1567Date:   Sun Jun 5 16:27:37 2011 -0400
1568
1569    Install target dbs alongside generated documents
1570    
1571    This matches a change in xorg-sgml-docs whereby the masterdb will look for
1572    the target dbs into the same location as the generated documents.
1573    
1574    The target dbs are now installed alongside the generated documents.
1575    Previously they are installed in $prefix/sgml/X11/dbs alongside masterdb which
1576    has the potential of installing outside the package prefix and cause
1577    distcheck to fail when user does not have write permission in this package.
1578    
1579    Requires XORG_CHECK_SGML_DOCTOOLS(1.8) which was released 2011-06-11
1580
1581commit e05d7abbcf880099058b699ac52f65edcac95582
1582Author: Jeremy Huddleston <jeremyhu@apple.com>
1583Date:   Sun Apr 24 19:39:26 2011 -0700
1584
1585    Silence warnings when building with clang
1586    
1587    /usr/X11/include/X11/Xtrans/Xtransint.h:349:12: error: unused function 'is_numeric' [-Werror,-Wunused-function]
1588    static int is_numeric (
1589              ^
1590    /usr/X11/include/X11/Xtrans/Xtransint.h:354:12: error: unused function 'trans_mkdir' [-Werror,-Wunused-function]
1591    static int trans_mkdir (
1592              ^
1593    
1594    In file included from /usr/X11/include/X11/Xtrans/transport.c:67:
1595    ...
1596    fatal error: too many errors emitted, stopping now [-ferror-limit=]
1597    
1598    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
1599
1600commit 27ae0ad1406a33919ea9f76034495bca7cccf051
1601Author: Gaetan Nadon <memsize@videotron.ca>
1602Date:   Sun Feb 27 15:06:18 2011 -0500
1603
1604    Documentation: add Docbook external references support
1605    
1606    When writing technical documentation, it is often necessary to cross
1607    reference to other information. When that other information is not in the
1608    current document, additional support is needed, namely <olink>.
1609    
1610    A new feature with version 1.7 of xorg-sgml-doctools adds references to
1611    other documents within or outside this package.
1612    
1613    This patch adds technical support for this feature but does not change
1614    the content of the documentation as seen by the end user.
1615    
1616    Each book or article must generate a database containing the href
1617    of sections that can be referred to from another document. This database
1618    is installed in DATAROOTDIR/sgml/X11/dbs. There is a requirement that
1619    the value of DATAROOTDIR for xorg-sgml-doctools and for the package
1620    documentation is the same. This forms a virtual document tree.
1621    
1622    This database is consulted by other documents while they are being generated
1623    in order to fulfill the missing information for linking.
1624    Refer to the xorg-sgml-doctools for further technical information.
1625    
1626    Co-authored-by: Matt Dew <marcoz@osource.org>
1627    
1628    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1629
1630commit cc199c31465b258032bdb9083879699202db7ee9
1631Author: Adam Jackson <ajax@redhat.com>
1632Date:   Mon Feb 21 12:44:06 2011 -0500
1633
1634    Remove a decnet leftover
1635    
1636    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1637    Reviewed-by: Daniel Stone <daniel@fooishbar.org>
1638    Signed-off-by: Adam Jackson <ajax@redhat.com>
1639
1640commit 91620213d2bd75fe322df06c5b6f55b85a10e55a
1641Author: Adam Jackson <ajax@redhat.com>
1642Date:   Tue Mar 15 15:47:08 2011 -0400
1643
1644    Remove K&R token pasting macros
1645    
1646    Reviewed-by: Julien Cristau <jcristau@debian.org>
1647    Signed-off-by: Adam Jackson <ajax@redhat.com>
1648
1649commit 4ac40cd5451983e6f62527700cdf9e2f8a29c013
1650Author: Adam Jackson <ajax@redhat.com>
1651Date:   Tue Mar 15 15:45:56 2011 -0400
1652
1653    Don't special-case allocation for the X server
1654    
1655    xserver uses malloc/free directly now, don't route through the Xalloc
1656    wrappers.
1657    
1658    Reviewed-by: Julien Cristau <jcristau@debian.org>
1659    Signed-off-by: Adam Jackson <ajax@redhat.com>
1660
1661commit 638caa2053330038c5ba5a5682ff02be6aa0faa6
1662Author: Gaetan Nadon <memsize@videotron.ca>
1663Date:   Wed Feb 2 11:43:46 2011 -0500
1664
1665    config: comment, minor upgrade, quote and layout configure.ac
1666    
1667    Group statements per section as per Autoconf standard layout
1668    Quote statements where appropriate.
1669    Autoconf recommends not using dnl instead of # for comments
1670    
1671    Use AC_CONFIG_FILES to replace the deprecated AC_OUTPUT with parameters.
1672    Add AC_CONFIG_SRCDIR([Makefile.am])
1673    
1674    This helps automated maintenance and release activities.
1675    Details can be found in http://wiki.x.org/wiki/NewModuleGuidelines
1676
1677commit a26753b7b20cd5cadc1e7fa007cec063f39a49e8
1678Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1679Date:   Thu Dec 16 23:59:20 2010 -0800
1680
1681    doc: Correct column count in transport configuration table
1682    
1683    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1684
1685commit 59f57d1a19d4091fef115b9eafa139bf620332cb
1686Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1687Date:   Mon Nov 8 16:33:45 2010 -0800
1688
1689    xtrans 1.2.6
1690    
1691    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1692
1693commit 05cd71c899e83022147f27085ee652d26f5462cb
1694Author: Jesse Adkins <jesserayadkins@gmail.com>
1695Date:   Sat Nov 6 12:53:24 2010 -0700
1696
1697    Remove ISCFuncs, fix SCOFuncs inclusion (bug 23324)
1698    
1699    ISCFuncs was removed by commit 339ddc413559d4cb117a72f87b2a70dae6911c32.
1700    SCOFuncs should be for SCO only, instead of !sun.
1701    
1702    Also, remove comments that suggest ISC support.
1703    
1704    Signed-off-by: Jesse Adkins <jesserayadkins@gmail.com>
1705    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1706    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1707
1708commit 0e5a66c82535dd8e9beee9fc4c42c52f90d05f50
1709Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1710Date:   Sat Nov 6 13:22:59 2010 -0700
1711
1712    doc: Update for X11R7/modularization
1713    
1714    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1715
1716commit 1858516e9f0f3e65cc3d1f6cedfe8bfa614c8082
1717Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1718Date:   Sat Nov 6 11:22:15 2010 -0700
1719
1720    doc: Markup & typo cleanups
1721    
1722    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1723
1724commit 16bdc50ca85bbae065a32647e2410a5ca47b4924
1725Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1726Date:   Sat Nov 6 09:53:08 2010 -0700
1727
1728    doc: Correct legal notices
1729    
1730    Restore both copyright/license notices from troff version
1731    Move implementation note out of legalnotice section
1732    
1733    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1734
1735commit d01d081538d04ac60b9e14f6e2faa60fe6bed5ff
1736Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1737Date:   Sat Nov 6 09:23:26 2010 -0700
1738
1739    doc: Use installed css stylesheet instead of making another copy
1740    
1741    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1742
1743commit ea6977f4a51612172ba51c3bd35aa150ad9ff158
1744Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1745Date:   Sat Nov 6 12:41:48 2010 -0700
1746
1747    Xtransint.h: Add missing ' in comment
1748    
1749    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1750
1751commit 862d2de24950d2658158ebc4cf8307e73f80bc8d
1752Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1753Date:   Fri Oct 29 18:22:33 2010 -0700
1754
1755    Sun's copyrights now belong to Oracle
1756    
1757    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1758
1759commit cbb59ebc916d0be18c322eec782b694f4dc2e685
1760Author: Gaetan Nadon <memsize@videotron.ca>
1761Date:   Sun Jun 27 20:27:39 2010 -0400
1762
1763    Update README to reflect docs converted from nroff to DocBook XML
1764    
1765    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1766
1767commit 3441142714b2640d1e143fcb5d089a2a42bd5321
1768Author: Gaetan Nadon <memsize@videotron.ca>
1769Date:   Sun Jun 27 20:21:20 2010 -0400
1770
1771    doc: remove trailing spaces in xtrans.xml
1772    
1773    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1774
1775commit 7761846c7fd97f15d7207e1b9fd9d42c9e58a0c4
1776Author: Gaetan Nadon <memsize@videotron.ca>
1777Date:   Sat Jun 26 13:06:22 2010 -0400
1778
1779    doc: replace groff input format with docbook xml format
1780    
1781    Initial version of xtrans docbook xml.
1782    Requires util-macros 1.10
1783    
1784    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1785
1786commit 4f557036253ac5750576c88e5b9a86759a49d247
1787Author: Gaetan Nadon <memsize@videotron.ca>
1788Date:   Fri Jun 18 21:47:52 2010 -0400
1789
1790    config: XORG_WITH_GROFF: use HAVE_GROFF_HTML conditional
1791    
1792    Groff uses grohtml to generate html output format. This program, in turn,
1793    uses a number of pnm* commands from the netpbm package, psselect
1794    from the psutils package and the ghostscript package.
1795    
1796    These are independently installed, so they could be missing.
1797    Skip the HTML output format if one of the dependencies is missing.
1798    The version 1.9 of the util-macros package is required.
1799    
1800    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1801
1802commit 1e9b958a096682b1ec111d400bd25048e3f95ed4
1803Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1804Date:   Fri May 21 18:54:20 2010 -0700
1805
1806    Update README to reflect docs moved here from xorg-docs module
1807    
1808    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1809
1810commit d400e69526c1c331e8e23893e2ba8658979376e8
1811Author: Gaetan Nadon <memsize@videotron.ca>
1812Date:   Mon Mar 29 14:53:49 2010 -0400
1813
1814    config: remove the pkgconfig pc.in file from EXTRA_DIST
1815    
1816    Automake always includes it in the tarball.
1817    
1818    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1819
1820commit 373922e1529b3d55513fbc0ec24527600f7b529c
1821Author: Gaetan Nadon <memsize@videotron.ca>
1822Date:   Tue Feb 16 18:18:06 2010 -0500
1823
1824    doc: use HAVE_GROFF_MM to skip doc when 'm.tmac' macros missing
1825    
1826    This conditional is defined in XORG_WITH_GROFF macro.
1827    
1828    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1829
1830commit b531ff3ed2ad841b716ba370fd43bbe8f06f1185
1831Author: Gaetan Nadon <memsize@videotron.ca>
1832Date:   Fri Jan 29 15:05:37 2010 -0500
1833
1834    doc: use new macros XORG_WITH_GROFF and PS2PDF
1835    
1836    These control the usage of doc tools
1837    Also use XORG_ENABLE_DOCS to control generation of docs
1838    
1839    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1840
1841commit 5922556f408fbcd14e7ad23bbe46db2ae8dcdee6
1842Author: Alan Coopersmith <alan.coopersmith@sun.com>
1843Date:   Thu Jan 14 21:11:43 2010 -0800
1844
1845    Update Sun license notices to current X.Org standard form
1846    
1847    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
1848
1849commit dab2bcdaf60977643ec55d71a81e67c1e3a162a9
1850Author: Rémi Cardona <remi@gentoo.org>
1851Date:   Thu Dec 17 08:31:20 2009 +0100
1852
1853    require autoconf 2.60 because of $(docdir) use
1854    
1855    Signed-off-by: Rémi Cardona <remi@gentoo.org>
1856    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
1857    Reviewed-by: Alan Coopersmith <alan.coopersmith@sun.com>
1858    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
1859
1860commit 197ec0dc83e775e42fce4966142ae3a641f2db69
1861Author: Gaetan Nadon <memsize@videotron.ca>
1862Date:   Fri Nov 27 20:56:05 2009 -0500
1863
1864    Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
1865    
1866    Now that the INSTALL file is generated.
1867    Allows running make maintainer-clean.
1868
1869commit 27a18fb2c9356cc44bdd892f87200c3ea230109b
1870Author: Gaetan Nadon <memsize@videotron.ca>
1871Date:   Wed Oct 28 14:09:11 2009 -0400
1872
1873    INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
1874    
1875    Add missing INSTALL file. Use standard GNU file on building tarball
1876    README may have been updated
1877    Remove AUTHORS file as it is empty and no content available yet.
1878    Remove NEWS file as it is empty and no content available yet.
1879
1880commit 92da89326d26e0924d4c6efe2ebd26ceb527f4f7
1881Author: Gaetan Nadon <memsize@videotron.ca>
1882Date:   Mon Oct 26 22:08:43 2009 -0400
1883
1884    Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
1885    
1886    ChangeLog filename is known to Automake and requires no further
1887    coding in the makefile.
1888
1889commit 9aeff40d0722b4fedc4ab9ccc1aaff75368020fe
1890Author: Gaetan Nadon <memsize@videotron.ca>
1891Date:   Thu Oct 22 12:34:20 2009 -0400
1892
1893    .gitignore: use common defaults with custom section # 24239
1894    
1895    Using common defaults will reduce errors and maintenance.
1896    Only the very small or inexistent custom section need periodic maintenance
1897    when the structure of the component changes. Do not edit defaults.
1898
1899commit f0f7c47055eecac35786ec616c7632604da204b5
1900Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
1901Date:   Wed Oct 21 12:47:27 2009 -0700
1902
1903    This is not a GNU project, so declare it foreign.
1904    
1905    On Wed, 2009-10-21 at 13:36 +1000, Peter Hutterer wrote:
1906    > On Tue, Oct 20, 2009 at 08:23:55PM -0700, Jeremy Huddleston wrote:
1907    > > I noticed an INSTALL file in xlsclients and libXvMC today, and it
1908    > > was quite annoying to work around since 'autoreconf -fvi' replaces
1909    > > it and git wants to commit it.  Should these files even be in git?
1910    > > Can I nuke them for the betterment of humanity and since they get
1911    > > created by autoreconf anyways?
1912    >
1913    > See https://bugs.freedesktop.org/show_bug.cgi?id=24206
1914    
1915    As an interim measure, replace AM_INIT_AUTOMAKE([dist-bzip2]) with
1916    AM_INIT_AUTOMAKE([foreign dist-bzip2]). This will prevent the generation
1917    of the INSTALL file. It is also part of the 24206 solution.
1918    
1919    Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
1920
1921commit 7d98b9b03c5fd5a82f9f4d215b10c0926edeab00
1922Author: Eric Sesterhenn <eric.sesterhenn@lsexperts.de>
1923Date:   Mon Oct 19 09:53:18 2009 -0700
1924
1925    Bug 24612: Memory & fd leaks in local transports
1926    
1927    X.Org bug #24612 <http://bugs.freedesktop.org/show_bug.cgi?id=24612>
1928    Patch #30548 <http://bugs.freedesktop.org/attachment.cgi?id=30548>
1929    
1930    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
1931
1932commit 1127b8ec766ed8c48cc49b0779647fb697a07ebd
1933Author: Alan Coopersmith <alan.coopersmith@sun.com>
1934Date:   Sat Oct 17 13:14:03 2009 -0700
1935
1936    xtrans 1.2.5
1937    
1938    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
1939
1940commit 628b125ff9c72ec93090005b06228690f0dd6004
1941Author: Alan Coopersmith <alan.coopersmith@sun.com>
1942Date:   Sat Oct 17 13:06:26 2009 -0700
1943
1944    Move Xtrans interface docs from xorg-docs module
1945    
1946    Only built/installed if --enable-docs is requested, since few people should
1947    be writing code using xtrans interfaces directly.
1948    
1949    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
1950
1951commit 3b0fc7a5a6d4b4b6903a9ad6685e2441f9fe83a7
1952Author: Alan Coopersmith <alan.coopersmith@sun.com>
1953Date:   Thu Oct 15 17:07:10 2009 -0700
1954
1955    Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS
1956    
1957    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
1958
1959commit 69334376346a96beb3df120a3eeeb7935923c388
1960Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
1961Date:   Thu Oct 15 15:25:58 2009 -0500
1962
1963    Silence root ownership warnings on Cygwin
1964    
1965    XWin need not be run as root, nor do Administrators have uid of 0.
1966    
1967    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
1968
1969commit d009d995d85dc499dc3f1add34da551fdf703b60
1970Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
1971Date:   Thu Oct 15 15:25:57 2009 -0500
1972
1973    Don't use -lws2_32 on Cygwin
1974    
1975    On Cygwin, both the (builtin) *NIX socket API and WinSock (via w32api) are
1976    available, but they cannot be mixed.  We use *NIX APIs for everything else,
1977    so we do not want to mix in WinSock here.
1978    
1979    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
1980
1981commit 773478581913bafa5e98a7bff3260efb0c4f2ab6
1982Author: Mikhail Gusarov <dottedmag@dottedmag.net>
1983Date:   Sat Sep 26 04:39:20 2009 +0700
1984
1985    Move xtrans.pc to /usr/share/pkg-config
1986    
1987    This fixes configuration in cross-compilation mode:
1988    pkg-config does not look for .pc in /usr/lib/pkg-config during
1989    cross-compilation to avoid picking up wrong libraries.
1990    
1991    Signed-off-by: Mikhail Gusarov <dottedmag@dottedmag.net>
1992    Acked-by: Julien Cristau <jcristau@debian.org>
1993
1994commit 336d4cfb58c784a81beca74fe03a0af0abb224ba
1995Author: Julien Cristau <jcristau@debian.org>
1996Date:   Fri Aug 7 16:58:58 2009 +0200
1997
1998    Xtranssock: assume that we have getaddrinfo if ipv6 is enabled
1999    
2000    If IPv6 is enabled at build time, assume that the C library will have
2001    getaddrinfo at runtime.
2002    
2003    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
2004
2005commit 4f82ca502d8ec33b0038700675d54539d85d723c
2006Author: Alan Coopersmith <alan.coopersmith@sun.com>
2007Date:   Fri Jul 31 17:24:25 2009 -0700
2008
2009    Version 1.2.4
2010    
2011    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
2012
2013commit e5f52f206916b7c5264b9371f9bd0113632a4a16
2014Author: Alan Coopersmith <alan.coopersmith@sun.com>
2015Date:   Thu Jul 30 16:07:39 2009 -0700
2016
2017    Fix ifdef checks for SVR4 to do the right thing on Solaris
2018    
2019    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
2020
2021commit 6d1ad967b894a37f423fd52247df5fcc3bfab1a8
2022Author: Alan Coopersmith <alan.coopersmith@sun.com>
2023Date:   Mon May 18 18:26:36 2009 -0700
2024
2025    xfs segfaults in _FontTransSocketReopen when cloning itself
2026    
2027    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
2028
2029commit 1e32f79670a6dc0baae2c2622d2b562f41266ea5
2030Author: Alan Coopersmith <alan.coopersmith@sun.com>
2031Date:   Fri Apr 24 02:10:53 2009 -0700
2032
2033    Constify path argument to trans_mkdir()
2034    
2035    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
2036
2037commit 732f3366c40c4bea258b11b96c4763f5948a4844
2038Author: Benjamin Close <Benjamin.Close@clearchain.com>
2039Date:   Mon Feb 9 16:34:00 2009 +1030
2040
2041    Update is_numeric base on the declaration change in 389e01fb51ba2d708015e27d8fc17c88a0e55802
2042    
2043    Signed-off-by: Benjamin Close <Benjamin.Close@clearchain.com>
2044
2045commit 300893171ca7ad684472e5961a7b2ba0eb291f6b
2046Author: Benjamin Close <Benjamin.Close@clearchain.com>
2047Date:   Mon Feb 9 16:33:59 2009 +1030
2048
2049    Revert "Fix "XXX declared 'static' but not defined""
2050    
2051    This reverts commit d192bac409fe5ef99fa9fb9b5a0d5f656f0f1412.
2052    
2053    When transport.c is directly include (as in the case of libICE:icetrans.c:32)
2054    Xtranssock.c must be included before Xtransutil.c in order for the socket
2055    structures to be included. Including Xtransutil.c after Xtranssock.c requires
2056    is_number and trans_mkdir to be defined.
2057    
2058    This reintroduces the warning until a cleaner solution can be found
2059    but fixes the build.
2060    
2061    Found by: Tinderbox
2062    
2063    Signed-off-by: Benjamin Close <Benjamin.Close@clearchain.com>
2064
2065commit 389e01fb51ba2d708015e27d8fc17c88a0e55802
2066Author: Alan Coopersmith <alan.coopersmith@sun.com>
2067Date:   Fri Feb 6 11:31:06 2009 -0800
2068
2069    Constify string argument to is_numeric
2070    
2071    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
2072
2073commit cca91ddaae2121f42b2d5c08867bb93df8f9de13
2074Author: Alan Coopersmith <alan.coopersmith@sun.com>
2075Date:   Fri Feb 6 11:27:02 2009 -0800
2076
2077    Fix libICE build after code motion in d192bac409...
2078    
2079    The #ifdef ICE_t case in Xtransutil.c depended on some #includes that
2080    are done in files that transport.c previously included before Xtransutil.c
2081    but are now after Xtransutil.c is included.
2082    
2083    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
2084
2085commit d192bac409fe5ef99fa9fb9b5a0d5f656f0f1412
2086Author: Tomas Carnecky <tom@dbservice.com>
2087Date:   Wed Feb 4 15:26:18 2009 +0100
2088
2089    Fix "XXX declared 'static' but not defined"
2090    
2091    The functions are declared static in Xtransint.h but are defined
2092    in Xtransutil.c. So when someone (xserver/os/connection.c)
2093    incuded Xtransint.h, gcc would throw the warning.
2094    I removed the declarations from the header and rearranged includes
2095    in transport.c so that Xtransutil.c is included just after
2096    Xtransint.h. This way the functions are still defined for the
2097    files that need them (Xtranssock.c, Xtranstli.c).
2098    
2099    Signed-off-by: Tomas Carnecky <tom@dbservice.com>
2100    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
2101
2102commit 77784ae71b6af1ec270198cfdd5f2eab1fe4a0c0
2103Author: Tomas Carnecky <tom@dbservice.com>
2104Date:   Wed Feb 4 15:22:28 2009 +0100
2105
2106    Fix "warning: format not a string literal and no format arguments"
2107    
2108    Signed-off-by: Tomas Carnecky <tom@dbservice.com>
2109    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
2110
2111commit c893bc4aa7a674c6888aacc8249b3c4a8f6bf12a
2112Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
2113Date:   Fri Jan 30 18:47:32 2009 -0200
2114
2115    Janitor: Correct make distcheck and compiler warnings.
2116    
2117      Compiler warnings are spread on other packages, with a
2118    warning in the format:
2119    /usr/include/X11/Xtrans/Xtranssock.c:548: warning: 'ciptr' may be used uninitialized in this function
2120    so the code was slightly changed so that the compiler
2121    would not "think" it could be used without initialization.
2122
2123commit 1cf4a1a6716f2c0adf5ee4d0a194a1013be53105
2124Author: Alan Coopersmith <alan.coopersmith@sun.com>
2125Date:   Sun Jan 11 10:54:52 2009 -0800
2126
2127    Version 1.2.3
2128
2129commit d0c5592142369afa93dcd58ca6f390dbd127a28a
2130Author: Alan Coopersmith <alan.coopersmith@sun.com>
2131Date:   Sun Jan 11 10:51:49 2009 -0800
2132
2133    Add bugzilla, mailing list & git repo pointers to README
2134
2135commit 9f12a154437554938a4fa18b7d3948c7dff8d631
2136Author: Alan Coopersmith <alan.coopersmith@sun.com>
2137Date:   Mon Dec 1 13:58:31 2008 -0800
2138
2139    Switch ChangeLog generation to use XORG_CHANGELOG from xorg-macros 1.2
2140
2141commit 8c313881a0c586179c09922a7e00a1f8d669a68a
2142Author: Alan Coopersmith <alan.coopersmith@sun.com>
2143Date:   Mon Dec 1 08:37:42 2008 -0800
2144
2145    18748: xtrans.m4 causes configure --help to list --enable-ipv6 in wrong case.
2146    
2147    X.Org Bug #18748 <http://bugs.freedesktop.org/show_bug.cgi?id=18748>
2148
2149commit c626a4298e98f4988701dd587bc8355c62542ec4
2150Author: Alan Hourihane <alanh@tungstengraphics.com>
2151Date:   Wed Oct 15 11:19:41 2008 +0100
2152
2153    add winsock check for windows builds
2154
2155commit 005bd80a9eab736aea737869b8a1079c565e1cd6
2156Author: Adam Jackson <ajax@redhat.com>
2157Date:   Tue Oct 7 09:56:49 2008 -0400
2158
2159    xtrans 1.2.2
2160
2161commit 1185dd2966521e1a19474dfd4206306cb383fc89
2162Author: Adam Jackson <ajax@redhat.com>
2163Date:   Tue Oct 7 09:55:22 2008 -0400
2164
2165    Finish removing OS/2 support
2166
2167commit 51b2e85aeb172f4a058d8ceceec91021ffd0b2a5
2168Author: Adam Jackson <ajax@redhat.com>
2169Date:   Tue Oct 7 09:51:27 2008 -0400
2170
2171    Remove DECNET support.
2172    
2173    This hasn't been consumed in the server or libs since 7.0.
2174
2175commit 892ec928da3a0653ae54c321e4c3b1aa06c4e678
2176Author: Adam Jackson <ajax@redhat.com>
2177Date:   Thu Aug 7 10:32:11 2008 -0400
2178
2179    Drastically simplify TRANS_OPEN_MAX.
2180    
2181    If your OS doesn't have sysconf(3), then life is already hard for you.
2182
2183commit 339ddc413559d4cb117a72f87b2a70dae6911c32
2184Author: Adam Jackson <ajax@redhat.com>
2185Date:   Thu Aug 7 10:23:19 2008 -0400
2186
2187    Massive ifdef cleanup, dropping a ton of unsupported platform code.
2188
2189commit a78b9819cbbbddccb4a6bf364b88ec4f27d25c1f
2190Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
2191Date:   Tue Aug 5 17:46:37 2008 -0700
2192
2193    Added a flag to enable "The OS already took care of securing this, please skip checking xauth" for use with Apple launchd sockets.
2194
2195commit 3db805979b476d233baa881e83950ef1d2731841
2196Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
2197Date:   Tue Jul 15 16:56:12 2008 -0700
2198
2199    Apple: Allow Xquartz to provide an additional fd to xtrans since the dynamic addition code in the server isn't bulletproof yet.
2200
2201commit 81d8bdced6b45ab2ab3d3a0bc164ddbf1659fea1
2202Author: Adam Jackson <ajax@redhat.com>
2203Date:   Wed Jul 2 15:24:20 2008 -0400
2204
2205    xtrans 1.2.1
2206
2207commit 302af17c4d5f0293a9af4d6c1097ab57a57d3f0f
2208Author: Alan Coopersmith <alan.coopersmith@sun.com>
2209Date:   Tue Jun 24 15:45:38 2008 -0700
2210
2211    Clear some pointer type mismatch warnings
2212
2213commit 4d184e41d30a8fe27380e04beb24f775d4a40782
2214Author: Alan Coopersmith <alan.coopersmith@sun.com>
2215Date:   Tue Jun 24 15:45:18 2008 -0700
2216
2217    LocalClose() takes a ConnInfoPtr, not an fd
2218
2219commit 177c2fd41727bd0110b493933dcbdbf21878fe09
2220Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
2221Date:   Fri May 23 09:48:59 2008 -0700
2222
2223    Launchd: This functionality has been moved into xorg-server
2224
2225commit 02fcb08803dca5bb2df4f8be490a845659bd7ed3
2226Author: Adam Jackson <ajax@redhat.com>
2227Date:   Mon May 12 17:49:41 2008 -0400
2228
2229    Connection failure for abstract socket is ECONNREFUSED, not ENOENT.
2230    
2231    Apropos of bug #15884.
2232
2233commit 906294025573d07c739894fa3b2eedc82813a379
2234Author: Bill Nottingham <notting@redhat.com>
2235Date:   Mon May 12 17:43:36 2008 -0400
2236
2237    Ignore mkdir() errors when creating the abstract socket.
2238    
2239    Red Hat bug #445303.
2240
2241commit 08134c2ce72bc43c172b6ae134d8a94a40b45c9b
2242Author: James Cloos <cloos@jhcloos.com>
2243Date:   Sat May 10 07:02:09 2008 -0400
2244
2245    Remove extraneous execute bit from .c file
2246
2247commit e75b9dad0ae4bc0869af81652d8259675a3c5cac
2248Author: Julien Cristau <jcristau@debian.org>
2249Date:   Thu May 8 16:27:29 2008 +0200
2250
2251    Bump to 1.2
2252
2253commit 962ad4d3f8096f5ffa14b32b3ee094f250790c77
2254Author: Alan Hourihane <alanh@tungstengraphics.com>
2255Date:   Mon Apr 28 23:46:05 2008 +0100
2256
2257    disable UNIXCONN on MINGW
2258
2259commit 9e8c0e3356bc6359368b7655d3a717d6c000387e
2260Author: Alan Hourihane <alanh@tungstengraphics.com>
2261Date:   Sat Apr 26 16:23:19 2008 +0100
2262
2263    fix build for MAKEWORD
2264
2265commit 568c5ea02ee1de437833ee0b53a7b3fd7ece084f
2266Author: Colin Harrison <colin.harrison-at-virgin.net>
2267Date:   Sat Apr 26 08:53:13 2008 +0100
2268
2269    Update to winsock2
2270
2271commit 960902584a3ef125946beb5ebe331b54d697e9d9
2272Author: James Cloos <cloos@jhcloos.com>
2273Date:   Fri Apr 25 15:53:20 2008 -0400
2274
2275    Fix length calculation for the path for abstract unix domain sockets
2276    
2277    Since the struct has a fixed-lenght char[] its sizeof() contains
2278    trailing NUL octets which results in corrupt abstract sockets.
2279    
2280    Instead, take the strlen(3) of the path, plus the single NUL octet
2281    (which identifies the path as an abstract path rather than a file-
2282    system path) plus the offset from the start of the struct to the
2283    start of the char array.
2284    
2285    This fixes:
2286    
2287    https://bugs.freedesktop.org/show_bug.cgi?id=15677
2288
2289commit 3a2a5375b8aab85697b4f2644ab99c3ccf79e658
2290Author: Colin Harrison <colin.harrison-at-virgin.net>
2291Date:   Wed Apr 23 10:39:30 2008 +0100
2292
2293    Only call WSAGetLastError() if there has been an
2294    error condition.
2295
2296commit ac13a1a34b61247a21da130f0ba9922f35d3dc3b
2297Author: Alan Coopersmith <alan.coopersmith@sun.com>
2298Date:   Tue Apr 15 12:32:35 2008 -0700
2299
2300    Sun bug #6688467: _X11TransConvertAddress: Unknown family type on 64-bit SPARC
2301    
2302    Check for socklen_t definition and if found use it instead of size_t or
2303    int for the length argument to getpeername/getsockname/etc.
2304    
2305    <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6688467>
2306
2307commit 556a351de83fc6f401b02213dae95731553c216d
2308Author: Loïc Minier <lool@dooz.org>
2309Date:   Mon Mar 24 15:38:27 2008 -0400
2310
2311    Bug #10489: Don't retry unix socket connect()s on ENOENT.
2312    
2313    If the socket isn't there, it's not gonna magically appear.  Either it's
2314    a server socket and you should have just waited for the SIGUSR1 from the
2315    server, or it's a stale reference to an ICE socket.
2316    
2317    However, do retry once, so fallback from abstract to filesystem namespace
2318    works.
2319    
2320    Originally Debian bug #385976.
2321
2322commit 3de3e666e0653d4e8ae23fc3e6e31864ddad4059
2323Author: Julien Cristau <jcristau@debian.org>
2324Date:   Sun Mar 23 19:43:32 2008 +0100
2325
2326    BSD44SOCKETS is the wrong check for SOCK_MAXADDRLEN
2327    
2328    GNU/kFreeBSD defines BSD44SOCKETS, but doesn't have SOCK_MAXADDRLEN.
2329    Check for the latter directly.
2330
2331commit 662994b9096181117cec4cae88f24bf6da806159
2332Author: Adam Jackson <ajax@redhat.com>
2333Date:   Wed Mar 5 21:02:28 2008 -0500
2334
2335    xtrans 1.1
2336
2337commit 2afe206ec9569e0d62caa6d91c3fb057b0efa23d
2338Author: Adam Jackson <ajax@redhat.com>
2339Date:   Wed Mar 5 20:48:59 2008 -0500
2340
2341    Add support for the abstract socket namespace under Linux.
2342    
2343    Unlike normal unix sockets, the abstract namespace is not bound to the
2344    filesystem.  This has some notable advantages; /tmp need not exist, the
2345    socket directory need not have magic permissions, etc.  xtrans servers
2346    will listen on both the normal and abstract socket endpoints; clients
2347    will attempt to connect to the abstract socket before connecting to the
2348    corresponding filesystem socket.
2349    
2350    Based on a patch by Bill Crawford.
2351
2352commit c8ed67f16f71042ef134a4d2189c20dd200a0648
2353Author: Jeremy Huddleston <jeremy@tifa.local>
2354Date:   Sun Feb 10 19:04:40 2008 -0800
2355
2356    Fixed #ifdef checks that were using i386 to use __i386__
2357    
2358    """
2359    
2360    It's simply obsolete, sloppy, compiler namespace pollution.  The
2361    compiler is not allowed to predefine symbols that might conflict with
2362    ordinary identifiers.  For backwards compatibility gcc currently
2363    predefines i386 when compiling for x86 32-bit (but not 64-bit), but that
2364    will go away.  It is also not defined if you specify -ansi when invoking
2365    the compiler, because then it is seriously standards compliant.  Other
2366    compilers shouldn't define it either.  Correct code shouldn't rely on it
2367    being defined.  However __i386__ is safe and proper.
2368    
2369    """
2370
2371commit 9970b5b6f8237685267b7972282319cf266661ea
2372Author: Ben Byer <bbyer@bbyer.local>
2373Date:   Sun Dec 2 07:36:51 2007 -0800
2374
2375    make launchd error messages less scary
2376
2377commit cd1da5cec49fb7fe6238a00d9ba550b3ed78fa08
2378Author: Ben Byer <bbyer@bbyer.local>
2379Date:   Wed Nov 14 03:57:57 2007 -0800
2380
2381    Fix for incorrect processing of recycled launchd socket on OS X
2382
2383commit 3da4d6c1dc05f9e1291b023a97535eb67f0830e2
2384Author: Ben Byer <bbyer@bbyer.local>
2385Date:   Wed Nov 14 03:55:42 2007 -0800
2386
2387    removed cvs tags
2388
2389commit 496cf2c46d2123c3bed3e6878f8f9a62e87ce559
2390Author: Dodji Seketeli <dodji@seketeli.org>
2391Date:   Tue Sep 11 12:52:44 2007 +0200
2392
2393    libxtrans: fixed a typo in my last commit
2394    
2395            * Xtranssock.c: (SocketReopen): oops fix a typo in my last commit.
2396
2397commit 88e141225113fcc4ebe5e8fe361e75673cdbf9ff
2398Author: Dodji Seketeli <dodji@seketeli.org>
2399Date:   Tue Sep 11 08:48:03 2007 +0200
2400
2401    libxtrans: fix linux compilation breakage
2402    
2403            * Xtranssock.c:
2404              (SocketReopen): protect use of BSD4.4 socket with BSD44SOCKETS macro.
2405              protect use of strlcnpy with HAVE_STRLCPY macro.
2406              That one is defined (or not) by the xserver configure.
2407
2408commit 6217f34977bfa17b66b89df5d45420774abedcb3
2409Author: Ben Byer <bbyer@bbyer.apple.com>
2410Date:   Wed Sep 5 18:29:44 2007 -0700
2411
2412    changes to support launchd on OS X
2413
2414commit 4d0cfe491046df26027db291530b247b7f24df5b
2415Author: Ben Byer <bbyer@bbyer.apple.com>
2416Date:   Wed Sep 5 18:04:01 2007 -0700
2417
2418    suppress warning about socket directory ownership on OS X
2419    
2420    We don't need to warn the user about the fact that the socket
2421    directory is not owned by root under OS X; on that platform,
2422    it's never owned by root, as the X server runs as the normal user.
2423
2424commit de93d67f6d48c7c08f2554cb85515bcf7dfbffb2
2425Author: Alan Coopersmith <alan.coopersmith@sun.com>
2426Date:   Tue Aug 21 17:54:23 2007 -0700
2427
2428    Version bump: 1.0.4
2429
2430commit 5e16b0ebccb233f7aeaf3928a853ee966b7cbb39
2431Author: Kean Johnston <kean@armory.com>
2432Date:   Wed Jul 18 09:27:06 2007 -0700
2433
2434    Fix typo in Xtranslcl.c (sprintf with size argument should be snprintf)
2435
2436commit 1abc981349140260d6fb643d29cf2b851fc06ac9
2437Author: Daniel Stone <daniel@fooishbar.org>
2438Date:   Sat Dec 16 01:15:21 2006 +0200
2439
2440    bump to 1.0.3
2441
2442commit 8172528bb894856aa5b133f61444294dc5a347e6
2443Author: Daniel Stone <daniel@fooishbar.org>
2444Date:   Wed Dec 6 18:51:59 2006 +0200
2445
2446    Makefile.am: make ChangeLog hook safer
2447    Make ChangeLog hook as safe as possible.
2448
2449commit 5ffb704b1df9ec44a448d53d4c20b9d4c5d825d4
2450Author: Adam Jackson <ajax@benzedrine.nwnk.net>
2451Date:   Fri Oct 13 17:01:59 2006 -0400
2452
2453    Bump to 1.0.2
2454
2455commit ae3b57953f5c1fa875d19fb42a2178d7e594ea44
2456Author: Adam Jackson <ajax@benzedrine.nwnk.net>
2457Date:   Thu Oct 12 20:36:52 2006 -0400
2458
2459    Fix the ChangeLog hook to distcheck.
2460
2461commit 4a2f176da3e2171f4feea2e6c8787e24fdf204f3
2462Author: Alan Coopersmith <alan.coopersmith@sun.com>
2463Date:   Fri Sep 15 14:59:15 2006 -0700
2464
2465    Remove GIT_DIR setting from git log command
2466
2467commit ec3abba0e351278876909bb5250d490b807d904a
2468Author: Alan Coopersmith <alan.coopersmith@sun.com>
2469Date:   Fri Sep 15 13:54:18 2006 -0700
2470
2471    Copy additional copyright/license statements from source to COPYING
2472
2473commit b4c6bd92b3a8bed746da641c59a9f040e1d83768
2474Author: Alan Coopersmith <alan.coopersmith@sun.com>
2475Date:   Wed Sep 13 14:09:22 2006 -0700
2476
2477    Bug 728: RUI in _X11TransSocketINETGetAddr in file "Xtranssock.c"
2478    
2479    Bug #728: <https://bugs.freedesktop.org/show_bug.cgi?id=728>
2480    Patch #3527: <https://bugs.freedesktop.org/attachment.cgi?id=3527>
2481    bzero sockaddr structures before passing to kernel to convince memory
2482    checkers that they are initialized before use
2483
2484commit 5d006baadf213e91f131ffedc53c88a973fb1cba
2485Author: Alan Coopersmith <alan.coopersmith@sun.com>
2486Date:   Thu Aug 24 17:40:24 2006 -0700
2487
2488    Use SUN_LEN if it is defined on non-BSD44SOCKETS systems
2489
2490commit 2495789d6c290e2037b2836f28b027786ea5b605
2491Author: Petr Salinger <petr.salinger@t-systems.cz>
2492Date:   Sun Apr 23 01:31:00 2006 -0700
2493
2494    Bug 4982: use offsetof for manipulating struct sockaddr_un
2495    
2496    X.Org Bugzilla #4982 <https://bugs.freedesktop.org/show_bug.cgi?id=4982>
2497    Patch #5424 <https://bugs.freedesktop.org/attachment.cgi?id=5424>
2498
2499commit 2633eaf8824828433a0eb9c9f3c4263b50342473
2500Author: Alan Coopersmith <alan.coopersmith@sun.com>
2501Date:   Thu Aug 24 16:53:08 2006 -0700
2502
2503    Try to capture the insanity of xtrans in a short README document
2504
2505commit 02ffb657b023d9b2a2c6c1d2417da8dcb96aa4b2
2506Author: Alan Coopersmith <alan.coopersmith@sun.com>
2507Date:   Thu Aug 24 14:46:42 2006 -0700
2508
2509    More sprintf -> snprintf conversions
2510
2511commit 3d5e7dd18c8836065c4835740211c10747b18abd
2512Author: Alan Coopersmith <alan.coopersmith@sun.com>
2513Date:   Wed Aug 23 19:14:35 2006 -0700
2514
2515    Replace static ChangeLog with dist-hook to generate from git-log
2516
2517commit 92807fe90aad2303cec4b54bec40ce6edf671654
2518Author: Alan Coopersmith <alan.coopersmith@sun.com>
2519Date:   Wed Aug 23 16:59:33 2006 -0700
2520
2521    Add ResetListener for named pipe transport
2522    
2523    (more merging of Xtrans code from Solaris xtrans)
2524
2525commit e11b861fcf3a295e5cb390cbac3a44d8ce4fad4f
2526Author: Alan Coopersmith <alan.coopersmith@sun.com>
2527Date:   Tue Aug 22 11:29:46 2006 -0700
2528
2529    Merge more fixes from Solaris xtrans
2530    
2531    Convert sprintf -> snprintf
2532    Don't use fake readv/writev on Solaris x86.
2533
2534commit 049932c0171855aa6d55222947f4d47495b6f173
2535Author: Alan Coopersmith <alan.coopersmith@sun.com>
2536Date:   Mon Aug 21 19:08:19 2006 -0700
2537
2538    Merge Solaris named pipe transport support into LOCALCONN
2539    
2540    Also clean up #ifdefs in Xtranslcl for which transport types are supported
2541    Add "pipe" alias for named pipe transport on Solaris to match Solaris Xlib.
2542
2543commit 11391a1ffe4c633507406d2a1ed5abe57c8698db
2544Author: Alan Coopersmith <alan.coopersmith@sun.com>
2545Date:   Mon Aug 21 19:05:49 2006 -0700
2546
2547    Add --enable-local-transport and set it on by default on SVR4 OS'es
2548
2549commit c0ebfcde0dd3f82c0e5712764e4403b2837e09b5
2550Author: Alan Coopersmith <alan.coopersmith@sun.com>
2551Date:   Mon Aug 21 19:04:54 2006 -0700
2552
2553    Add *~ to .gitignore to skip emacs droppings
2554
2555commit fe7054f2f5ce74ce9b8c1704899894bc1c9f32b7
2556Author: Alan Coopersmith <alan.coopersmith@sun.com>
2557Date:   Thu Jul 13 14:59:21 2006 -0700
2558
2559    renamed: .cvsignore -> .gitignore
2560
2561commit 0eea51ea11381ba07d5e6953c7bf6519a3ded829
2562Author: Donnie Berkholz <spyderous@gentoo.org>
2563Date:   Fri Jun 30 04:05:45 2006 +0000
2564
2565    Bump to 1.0.1.
2566
2567commit 8d37f63810fc12f113bfcf37065ac9da09702b46
2568Author: Matthieu Herrb <matthieu.herrb@laas.fr>
2569Date:   Tue Jun 20 19:11:16 2006 +0000
2570
2571    Check setuild() return value. Bugzilla #7116.
2572
2573commit f9a47b508a89c647829266aacb19a0fc2dbb6158
2574Author: Jeremy C. Reed <reed@reedmedia.net>
2575Date:   Thu May 25 20:20:54 2006 +0000
2576
2577    No code change. Just fix comment that said SOCKCONN to become TCPCONN.
2578        (This dates back to 1994 or before.)
2579
2580commit 2b7124954f5bedc8625c2f144bbbab4bbba7701c
2581Author: Kevin E Martin <kem@kem.org>
2582Date:   Thu Dec 15 00:24:36 2005 +0000
2583
2584    Update package version number for final X11R7 release candidate.
2585
2586commit 3d3228a24513ea75c73f6d58ba50097f32b297a1
2587Author: Kevin E Martin <kem@kem.org>
2588Date:   Wed Nov 9 21:19:14 2005 +0000
2589
2590    Update package version number for X11R7 RC2 release.
2591
2592commit 2cac02b2fe1ceaec2a2f1cd601d9ab4afcf3cb66
2593Author: Kean Johnson <kean@armory.com>
2594Date:   Tue Nov 8 06:33:26 2005 +0000
2595
2596    See ChangeLog entry 2005-11-07 for details.
2597
2598commit 063a39b0e1e615387fd7baa570265ed71ca87c22
2599Author: Kevin E Martin <kem@kem.org>
2600Date:   Wed Oct 19 02:48:13 2005 +0000
2601
2602    Update package version number for RC1 release.
2603
2604commit 21a498d25f567ada296d0321f65536dfc816482b
2605Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
2606Date:   Mon Oct 3 17:45:28 2005 +0000
2607
2608    Bug #3813 <https://bugs.freedesktop.org/show_bug.cgi?id=3813> GNU/kFreeBSD
2609        fix for xtrans (Robert Millan)
2610
2611commit e41835b4b2fe03d8a1997bd8e8eabab2a94bccd5
2612Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
2613Date:   Sun Oct 2 21:01:35 2005 +0000
2614
2615    //bugs.freedesktop.org/show_bug.cgi?id=4256> Patch #3046
2616        <https://bugs.freedesktop.org/attachment.cgi?id=3046> Define
2617        MAXHOSTNAMELEN if platform doesn't (Michael Banck)
2618
2619commit 4683f28f0c9d1a1ee0338a32011219ed1fb3c565
2620Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
2621Date:   Fri Aug 19 23:53:22 2005 +0000
2622
2623    Bugzilla #3957 <https://bugs.freedesktop.org/show_bug.cgi?id=3957> Patch
2624        #2924 <https://bugs.freedesktop.org/attachment.cgi?id=2924> xtrans
2625        changes for AIX (Dan McNichol, IBM)
2626    Bugzilla #3957 <https://bugs.freedesktop.org/show_bug.cgi?id=3957> Patch
2627        #2925 <https://bugs.freedesktop.org/attachment.cgi?id=2925> xtrans
2628        changes for AIX (Dan McNichol, IBM)
2629
2630commit 79db37c65905823b66411533152ab54407f04004
2631Author: Eric Anholt <anholt@freebsd.org>
2632Date:   Wed Aug 17 19:10:49 2005 +0000
2633
2634    On FreeBSD, some of the symbols necessary for secure RPC support are in
2635        librpcsvc, so check for their presence in rpcsvc so that the library
2636        will be added.
2637
2638commit 5165ebdb8144cd5be706e49957f5c8b51b762821
2639Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
2640Date:   Tue Aug 16 02:23:41 2005 +0000
2641
2642    Define BSD44SOCKETS if struct sockaddr_in has a sin_len member
2643
2644commit 4ce01dc794022e74b01aac7b902acbbfebc74ed1
2645Author: Kevin E Martin <kem@kem.org>
2646Date:   Fri Jul 29 21:22:54 2005 +0000
2647
2648    Various changes preparing packages for RC0:
2649    - Verify and update package version numbers as needed
2650    - Implement versioning scheme
2651    - Change bug address to point to bugzilla bug entry form
2652    - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to
2653        reenable it)
2654    - Fix makedepend to use pkgconfig and pass distcheck
2655    - Update build script to build macros first
2656    - Update modular Xorg version
2657
2658commit 4ddee2d488f8bdcee624be96fa52ca03a7e64b83
2659Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
2660Date:   Tue Jul 26 18:59:11 2005 +0000
2661
2662    Use AC_TYPE_SIGNAL to replace Imake's SIGNAL_DEFINES (used in Xtransutil.c)
2663
2664commit 0a80fbc1eb80343eaff27c48f9531f5ba709b6ef
2665Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
2666Date:   Tue Jul 26 18:55:41 2005 +0000
2667
2668    Add config.h includes for modularization Use RETSIGTYPE if defined by
2669        autoconf in addition to Imake's SIGNALRETURNSINT. Use
2670        HAVE_WORKING_VFORK if defined by autoconf in addition to Imake's
2671        HAS_VFORK
2672
2673commit 9a44d60cb031f1779c228f13697fb17e17df10d5
2674Author: Matthieu Herrb <matthieu.herrb@laas.fr>
2675Date:   Sat Jul 23 19:52:56 2005 +0000
2676
2677    typo
2678
2679commit 65ca78f15fe7f1640f3610245957eac9bca0bf04
2680Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
2681Date:   Sun Jul 17 02:01:55 2005 +0000
2682
2683    Move AC_MSG_RESULT so it shows up in the right place, not after other tests
2684        are executed
2685
2686commit f1d56df5736087eafa3db255437c918f6b9075a1
2687Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
2688Date:   Thu Jul 14 22:44:31 2005 +0000
2689
2690    Split out TCP library/IPv6 support checks into XTRANS_TCP_FLAGS for sharing
2691        with code like xdm that doesn't use Xtrans but accesses TCP sockets
2692        directly. Clean up --enable flags and report settings in configure
2693        output.
2694
2695commit 9552877bf0a7be02c781ef8fb2f271573a55e297
2696Author: Keith Packard <keithp@keithp.com>
2697Date:   Sat Jul 9 21:22:30 2005 +0000
2698
2699    Add .cvsignore files
2700
2701commit 586cc58eff6d3c68313e5c8aedb8ec2464069f2f
2702Author: Daniel Stone <daniel@fooishbar.org>
2703Date:   Sun Jul 3 23:51:24 2005 +0000
2704
2705    Change <X11/os.h> to "os.h".
2706
2707commit 926367f82972bd94a64ef76c8e036f27ca61fb14
2708Author: Daniel Stone <daniel@fooishbar.org>
2709Date:   Sun Jul 3 07:01:01 2005 +0000
2710
2711    Add Xtrans definitions (FONT_t, TRANS_CLIENT) to clean up warnings.
2712    Add XSERV_t, TRANS_SERVER, TRANS_REOPEN to quash warnings.
2713    Add #include <dix-config.h> or <xorg-config.h>, as appropriate, to all
2714        source files in the xserver/xorg tree, predicated on defines of
2715        HAVE_{DIX,XORG}_CONFIG_H. Change all Xfont includes to
2716        <X11/fonts/foo.h>.
2717
2718commit 40b7e438e4b441204ff47e1e25755162921d7c3e
2719Author: Daniel Stone <daniel@fooishbar.org>
2720Date:   Sat Jul 2 18:00:50 2005 +0000
2721
2722    Make includedir=@includedir@ in xtrans.pc.in, not with /X11/Xtrans.
2723
2724commit b413f4c1dddc467014adf16bfe31627e65508c12
2725Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
2726Date:   Wed Jun 22 22:46:39 2005 +0000
2727
2728    Apply these patches from Theo van Klaveren:
2729    lib-dmx.patch lib-FS.patch lib-X11.patch lib-XRes.patch
2730        lib-XScrnSaver.patch lib-xtrans.patch
2731    to make the libraries distcheck.
2732
2733commit 57aac0006e27624a41f04c5d0c458b9f0108a084
2734Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
2735Date:   Wed Jun 22 22:36:51 2005 +0000
2736
2737    Add the rest of my patch from bugzilla #1605 to define INADDR_NONE on
2738        platforms that don't define it in the system headers.
2739
2740commit f5a6a188407cec6e567070d192aac2db72cacd92
2741Author: Kristian Høgsberg <krh@redhat.com>
2742Date:   Wed Jun 22 01:21:24 2005 +0000
2743
2744    Apply patch by Alan Coopersmith from #1605 to fix address resolution of
2745        hostnames starting with a digit for 64 bit architechtures.
2746
2747commit 5bad61831b1c06888d80d92a0bf34acbeecda026
2748Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
2749Date:   Sat Jun 18 07:48:43 2005 +0000
2750
2751    Move Secure RPC flags from X11/configure.ac to xtrans/xtrans.m4 since
2752        multiple modules will need them
2753
2754commit 62438b14130e0f8de6939767a108ef12558653a3
2755Author: Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de>
2756Date:   Thu Jun 9 15:56:48 2005 +0000
2757
2758    Use $(includedir)/X11/Xtrans for Xtransincludedir
2759
2760commit 7c8e397ddcbd0ae998cc4f23868726022d1aa47b
2761Author: Eric Anholt <anholt@freebsd.org>
2762Date:   Wed Jun 8 06:24:53 2005 +0000
2763
2764    Install the xtrans.m4 to the directory returned by aclocal --print-ac-dir,
2765        so that the aclocal calls in other modules will pick it up if this
2766        prefix's aclocal dir is not in a default path for system aclocal.
2767
2768commit 58c7263ca5b64a21dc101bb4b24201ba67a8d068
2769Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
2770Date:   Wed May 25 21:47:56 2005 +0000
2771
2772    - Add FSlib to symlink.sh
2773    - Change Xtrans includedir back to be X11/Xtrans, so that users of it can
2774        continue to include <X11/*>
2775    - Add build system for FSlib
2776    - Conditionally include config.h in xc/lib/FS
2777    - Remove redundant include of FSproto.h in xc/lib/FS
2778    - Add check to proto/X11/configure.ac whether -D_XOPEN_SOURCE is needed.
2779
2780commit b2e662de63948928e4cbc7e3ba90631f150c5137
2781Author: Josh Triplett <josh@speakeasy.net>
2782Date:   Mon May 23 01:53:21 2005 +0000
2783
2784    Change xtransincludedir in pkg-config file to match change in Makefile.am.
2785
2786commit 83d29f6e0c1587c8ad008672e7ae5631942559eb
2787Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
2788Date:   Sat May 21 23:07:48 2005 +0000
2789
2790    xtrans:
2791    Create autoconf macro XTRANS_CONNECTION_FLAGS to provide standard set of
2792        --enable flags for which transports to support and common place to
2793        update for required libraries for platforms that need certain libs for
2794        certain transports
2795    ICE:
2796    Add ICE_t #define required by Xtrans headers. Replace static defines of
2797        LOCALCONN & UNIXCONN with new XTRANS_CONNECTION_FLAGS macro.
2798    X11:
2799    Moved transport type checks to new macro XTRANS_CONNECTION_FLAGS in
2800        xtrans.m4 in xtrans module so they can be shared by all modules using
2801        xtrans.
2802
2803commit bd79d86fb50233e0cd41a57b553f12b6d490ac7e
2804Author: Adam Jackson <ajax@nwnk.net>
2805Date:   Thu May 19 00:22:33 2005 +0000
2806
2807    revert last change, didn't do right thing at all, sorry for the noise
2808
2809commit 10776fa562c060d74fdd4434a16408fe4bd34ab9
2810Author: Adam Jackson <ajax@nwnk.net>
2811Date:   Thu May 19 00:10:08 2005 +0000
2812
2813    Require automake 1.7 in AM_INIT_AUTOMAKE
2814
2815commit daa7168e9e0cdff5eb06b0c9a7155f8880681fff
2816Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
2817Date:   Fri May 13 22:53:43 2005 +0000
2818
2819    - For now put xtrans in X11/Xtrans/X11, since libX11 is looking for it in
2820        <X11/...>
2821    - For Xcomposite and Xdamage, don't link the build system out of the xc
2822        tree
2823    - Link the public X11 headers into their own directory
2824    - Add links to XKeysymDB and XErrorDB
2825    - Add links to all the Xlib man pages
2826    - Add links to the lcUniConv subdirectory
2827    - Conditionally include config.h in Xlib source
2828
2829commit d11d95fa4faec21655625b7de27d8a71c08ffe2d
2830Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
2831Date:   Fri May 13 15:16:43 2005 +0000
2832
2833    Dummy changes to ChangeLog/configure.ac to see if that fixes group
2834        permissions
2835
2836commit b8a8c31f63a543d1c1c6bb4ae26a4019b4400edc
2837Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
2838Date:   Fri May 13 15:04:52 2005 +0000
2839
2840    Re-adding ChangeLog and configure.ac files
2841
2842commit 798c08054ce5a8238f35fee3e69218ece74441fa
2843Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
2844Date:   Fri May 13 15:02:19 2005 +0000
2845
2846    Temporarily remove ChangeLog configure.ac
2847
2848commit b3da86ae588df14dde916674a4f6593edf1964f7
2849Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
2850Date:   Fri May 13 14:43:37 2005 +0000
2851
2852    Dummy commit to see if that fixes the group execute permissions
2853
2854commit ea04267da780c2c3f08a710d15468565897420c4
2855Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
2856Date:   Thu May 12 16:12:34 2005 +0000
2857
2858    Make xtrans install in $(includedir)/X11/Xtrans. Remove all references to
2859        Xtransdef.
2860    Add Xdmcp build files
2861    Add Wrap.h to lib/dmcp part of symlink script.
2862
2863commit f25791629f3f443d2552bdb05bea1a960b530342
2864Author: Daniel Stone <daniel@fooishbar.org>
2865Date:   Thu May 12 02:49:16 2005 +0000
2866
2867    Add Xtransdef.h.in as an AM_CONFIG_HEADER.
2868
2869commit d628bf24f2bf0d017394b6961784d7ac5b33f46b
2870Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
2871Date:   Wed May 11 22:44:52 2005 +0000
2872
2873    lib/Xau:
2874    - Update AUTHORS, COPYING from Keith's tree
2875    - Don't use gcc specific "-include config.h"
2876    - Add autogen.sh
2877    lib/xtrans:
2878    - Add AUTHORS, COPYING, ChangeLog, Makefile.am, NEWS, README, autogen.sh,
2879        configure.ac, xtrans.pc.in
2880    xc/lib/Xau:
2881    - Add conditionalized #include <config.h>
2882    util/modular/symlink.sh
2883    - Add functions symlink_lib_xau() and symlink_lib_xtrans()
2884    util/modular/addconfig.h
2885    - New script that adds #include <config.h> to files
2886
2887commit c814f30e9a5dc48a24c20517334cf5f9c37e066a
2888Author: Roland Mainz <roland.mainz@nrubsig.org>
2889Date:   Wed Mar 2 11:20:29 2005 +0000
2890
2891    xc/config/cf/DragonFly.cf
2892    xc/config/cf/Imake.cf
2893    xc/config/cf/Imakefile
2894    xc/config/imake/imake.c
2895    xc/config/imake/imakemdep.h
2896    xc/extras/drm/shared/drm.h
2897    xc/include/Xos_r.h
2898    xc/lib/xtrans/Xtranssock.c
2899    xc/programs/Xserver/hw/xfree86/os-support/xf86_OSlib.h
2900    xc/programs/Xserver/hw/xfree86/os-support/xf86_libc.h
2901    xc/programs/Xserver/hw/xfree86/os-support/linux/lnx_agp.c
2902    //bugs.freedesktop.org/show_bug.cgi?id=1712) attachment #2004
2903        (https://bugs.freedesktop.org/attachment.cgi?id=2004): Add support for
2904        DragonFly/BSD platform. Patch by Jeroen Ruigrok <asmodai@tendra.org>
2905        and Mike Verona <firedragonfly@gmail.com>.
2906
2907commit 92e80a5a67273fc60623b17a5f34c239f1ed6947
2908Author: Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de>
2909Date:   Mon Nov 15 15:06:56 2004 +0000
2910
2911    Bufzilla #1802, http://freedesktop.org/bugzilla/show_bug.cgi?id=1802 Added
2912        mingw (Win32) port
2913
2914commit d92a9d31416a8366cd065886d7ff352fefce646d
2915Author: Egbert Eich <eich@suse.de>
2916Date:   Fri Aug 27 22:47:45 2004 +0000
2917
2918    Set the define XtransFailSoft to restore the old behavior to fail softly
2919        when socket directory cannot chowned/chmod to correct user/group. This
2920        should be added on a per OS basis which hasn't been done.
2921
2922commit 48ffd91cff9a07c68194f6d0b380dd2acd46a8ca
2923Author: Egbert Eich <eich@suse.de>
2924Date:   Fri Jul 30 21:00:20 2004 +0000
2925
2926    fail hard if socket directories cannot be chowned to root or chmod'ed to
2927        the requested mode if 'sticky' bit is requested for this directory
2928        instead of just print a warning that will remain unnoticed most of the
2929        times.
2930
2931commit c3e50fa69ea7a2d08a298866e8a63c0f07c8248d
2932Author: Egbert Eich <eich@suse.de>
2933Date:   Fri Jul 30 18:40:36 2004 +0000
2934
2935    Fixed typo in a comment.
2936    Deleted bogus comment.
2937    Added debugging support.
2938
2939commit 79d38d618406ecc5228730a57ad406b280a5a189
2940Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
2941Date:   Sat Jul 17 01:13:31 2004 +0000
2942
2943    Fix typo in debug message in MakeAllCLTSServerListeners
2944    Add $(GETPEER_DEFINES) to DEPEND_DEFINES for makedepend
2945    Add "localuser" and "localgroup" access types to server-interpreted
2946        authentication scheme.
2947
2948commit 8d0820e2058545e27f95d9fdc581262822799193
2949Author: Egbert Eich <eich@suse.de>
2950Date:   Fri Apr 23 18:44:27 2004 +0000
2951
2952    Merging XORG-CURRENT into trunk
2953
2954commit c594d3393cd355f52545b05bcc27ee8a2c533caa
2955Author: Egbert Eich <eich@suse.de>
2956Date:   Sun Mar 14 08:32:40 2004 +0000
2957
2958    Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004
2959
2960commit 2d51220fae172d2b8d28b971a853605b41038533
2961Author: Egbert Eich <eich@suse.de>
2962Date:   Wed Mar 3 12:11:46 2004 +0000
2963
2964    Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004
2965
2966commit 6e2cb92d192171961165c8e5a24b00f35f56aaeb
2967Author: Egbert Eich <eich@suse.de>
2968Date:   Thu Feb 26 13:35:36 2004 +0000
2969
2970    readding XFree86's cvs IDs
2971
2972commit 93f13d69958cb9c9adfe1244e478521269f9258b
2973Author: Egbert Eich <eich@suse.de>
2974Date:   Thu Feb 26 09:22:54 2004 +0000
2975
2976    Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
2977
2978commit 7a10db6531003055886e0e994c2ef8e46a010eb2
2979Author: Kaleb Keithley <kaleb@freedesktop.org>
2980Date:   Mon Feb 23 20:34:44 2004 +0000
2981
2982    Import most of XFree86 4.4RC3. This import excludes files which have the
2983        new license. If we want to, later we can import 4.4RC3 again and pick
2984        up the files that have the new license, but for now the vendor branch
2985        is "pure."
2986
2987commit 871b8c33f2ab8c98b95aa3324bb70055f5207c61
2988Author: Egbert Eich <eich@suse.de>
2989Date:   Thu Jan 29 08:08:15 2004 +0000
2990
2991    Importing vendor version xf86-012804-2330 on Thu Jan 29 00:06:33 PST 2004
2992
2993commit 352e5de72e125d7d474907f354462cc1442e0989
2994Author: Kaleb Keithley <kaleb@freedesktop.org>
2995Date:   Fri Dec 19 20:54:45 2003 +0000
2996
2997    XFree86 4.3.99.902 (RC 2)
2998
2999commit d223c1bb16c503e58f07dfef14b8e79fe7c358ff
3000Author: Kaleb Keithley <kaleb@freedesktop.org>
3001Date:   Thu Dec 4 22:03:05 2003 +0000
3002
3003    XFree86 4.3.99.901 (RC 1)
3004
3005commit 6c36ea2d54ea6b6f0cbece06d867d0b884783d0c
3006Author: Kaleb Keithley <kaleb@freedesktop.org>
3007Date:   Tue Nov 25 19:28:21 2003 +0000
3008
3009    XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks
3010
3011commit 3b0d3a905e39624abe9ddd1ce20542097601e4c2
3012Author: Kaleb Keithley <kaleb@freedesktop.org>
3013Date:   Tue Nov 25 19:28:21 2003 +0000
3014
3015    Initial revision
3016
3017commit 3bd236a07c0ebaabb7337dd5d56bc57a028a9c0e
3018Author: Kaleb Keithley <kaleb@freedesktop.org>
3019Date:   Fri Nov 14 16:48:50 2003 +0000
3020
3021    XFree86 4.3.0.1
3022
3023commit 26781c4f009a4b448dca3ab4912cbf01182e3d92
3024Author: Kaleb Keithley <kaleb@freedesktop.org>
3025Date:   Fri Nov 14 15:54:40 2003 +0000
3026
3027    R6.6 is the Xorg base-line
3028