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