ChangeLog revision 6bea0e4f
1commit 5f6da959a34bcefc425b6e37462553acf44369a3
2Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3Date:   Sat Mar 8 17:35:22 2025 -0800
4
5    libSM 1.2.6
6    
7    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8
9commit 00040325385ab326b306477bcb175fd47468ac34
10Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11Date:   Sat Jan 18 16:18:05 2025 -0800
12
13    SmsGenerateClientID: simplify code to convert IPv4 address to hex string
14    
15    Instead of calling the deprecated inet_ntoa() to convert to an ascii
16    string, which we then break into 4 dotted segments and call atoi()
17    on each segment, just get the byte values from the in_addr_t directly,
18    much like we've long done for IPv6 addreses.
19    
20    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
21    Part-of: <https://gitlab.freedesktop.org/xorg/lib/libsm/-/merge_requests/11>
22
23commit 91d1015f723e437b032eec95f5d82a0d5d52f43c
24Author: Alan Coopersmith <alan.coopersmith@oracle.com>
25Date:   Mon Jan 13 16:41:28 2025 -0800
26
27    if getaddrinfo() is available, use it, even if IPv6 support is disabled
28    
29    Support for using getaddrinfo() was originally added to support IPv6,
30    and only used if IPv6 support was enabled.  Two decades later, support
31    for getaddrinfo() is ubiquitous and OS'es have marked gethostbyname()
32    as deprecated, so use the modern interface whenever we can now.
33    
34    Of course, in libSM, this only matters if one of the UUID generation
35    interfaces isn't being used instead.
36    
37    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
38    Part-of: <https://gitlab.freedesktop.org/xorg/lib/libsm/-/merge_requests/11>
39
40commit 220fda5f4888b148b51ac6be3457670dd60a3c45
41Author: Alan Coopersmith <alan.coopersmith@oracle.com>
42Date:   Mon Jan 13 15:41:40 2025 -0800
43
44    Simplify ifdefs for IPv6 support
45    
46    Instead of checking for AF_INET6 at every ifdef, just check once for it
47    and report that IPv6 support is not available, instead of silently not
48    building support for it that configure said we were going to build.
49    
50    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
51    Part-of: <https://gitlab.freedesktop.org/xorg/lib/libsm/-/merge_requests/11>
52
53commit 8f133b4f0b03e32c044cda7c56f81c85d7b46c2d
54Author: Alan Coopersmith <alan.coopersmith@oracle.com>
55Date:   Mon Jan 13 16:44:56 2025 -0800
56
57    sm_genid.c: simplify final fallback case
58    
59    Remove one level of #ifdef nesting to reach the final fallback of
60    return(NULL) if no id generation method was configured, neither
61    a UUID-based method nor the TCPCONN IP-address-based method.
62    
63    Part-of: <https://gitlab.freedesktop.org/xorg/lib/libsm/-/merge_requests/11>
64
65commit c68a06e0637244a81d7cce3797b22ece15c2fa2b
66Author: Alan Coopersmith <alan.coopersmith@oracle.com>
67Date:   Mon Jan 13 16:28:22 2025 -0800
68
69    Skip network checks/headers/libraries if using UUID-based ids
70    
71    Currently network host address based ids are only used if neither
72    of the UUID generation methods is found by configure, so check them
73    first, and only do network checks as a fallback.
74    
75    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
76    Part-of: <https://gitlab.freedesktop.org/xorg/lib/libsm/-/merge_requests/11>
77
78commit 83644d01d64a93a1fc463affc8bd9b30dc023a83
79Author: Alan Coopersmith <alan.coopersmith@oracle.com>
80Date:   Fri Dec 13 14:11:23 2024 -0800
81
82    libSM 1.2.5
83    
84    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
85
86commit f1e6fc8e62a5da42ea713ee970028be3d32fcf85
87Author: Alan Coopersmith <alan.coopersmith@oracle.com>
88Date:   Mon Aug 26 10:10:37 2024 -0700
89
90    IceReadCompleteMessage callers need to check if malloc() failed
91    
92    The IceReadCompleteMessage() macro may try to malloc() a buffer and
93    assign it to the final argument.
94    
95    Clears up 6 -Wanalyzer-null-dereference warnings from gcc 14.1
96    of the form:
97    
98    sm_process.c: In function ‘extractArray8’:
99    SMlibint.h:128:12: warning: dereference of NULL ‘pData’ [CWE-476]
100     [-Wanalyzer-null-dereference]
101      128 |     _val = *((CARD32 *) _pBuf); \
102          |            ^~~~~~~~~~~~~~~~~~~
103    sm_process.c:66:5: note: in expansion of macro ‘EXTRACT_CARD32’
104       66 |     EXTRACT_CARD32 (*pBuf, swap, n);
105          |     ^~~~~~~~~~~~~~
106    
107    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
108    Part-of: <https://gitlab.freedesktop.org/xorg/lib/libsm/-/merge_requests/9>
109
110commit bd243359c390b02bdb89e38779917996c6a38476
111Author: Alan Coopersmith <alan.coopersmith@oracle.com>
112Date:   Mon Aug 26 09:36:41 2024 -0700
113
114    SmcOpenConnection: remove cast of return value from getenv()
115    
116    getenv() is defined as returning char *, so the cast isn't necessary
117    if you've included the header with the proper prototype for it.
118    
119    Clears gcc 14.1 warning:
120    
121    sm_client.c: In function ‘SmcOpenConnection’:
122    sm_client.c:114:20: warning: useless cast to type ‘char *’ [-Wuseless-cast]
123      114 |         if ((ids = (char *) getenv ("SESSION_MANAGER")) == NULL)
124          |                    ^
125    
126    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
127    Part-of: <https://gitlab.freedesktop.org/xorg/lib/libsm/-/merge_requests/9>
128
129commit 5edd20b307ce70ccb14c360f1b94914c49544a24
130Author: Alan Coopersmith <alan.coopersmith@oracle.com>
131Date:   Sat Feb 17 15:05:20 2024 -0800
132
133    unifdef MNX_TCPCONN
134    
135    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
136
137commit d7783633c5935a2e45c065b1f385a35bbf56e7b1
138Author: Alan Coopersmith <alan.coopersmith@oracle.com>
139Date:   Sat Feb 17 15:03:49 2024 -0800
140
141    unifdef __UNIXWARE__
142    
143    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
144
145commit d0b0f5e46af6da18a93a27a71e193fad8c7308b4
146Author: Alan Coopersmith <alan.coopersmith@oracle.com>
147Date:   Fri Oct 13 13:11:28 2023 -0700
148
149    gitlab CI: add xz-utils to container for "make distcheck"
150    
151    Also update to latest ci-templates
152    
153    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
154
155commit f3706322c5c948cbbe434dd67d86de71eee25e17
156Author: Alan Coopersmith <alan.coopersmith@oracle.com>
157Date:   Sat Mar 4 10:44:45 2023 -0800
158
159    configure: Use LT_INIT from libtool 2 instead of deprecated AC_PROG_LIBTOOL
160    
161    AC_PROG_LIBTOOL was replaced by LT_INIT in libtool 2 in 2008,
162    so it's time to rely on it.
163    
164    Clears autoconf warnings:
165    
166    configure.ac:13: warning: The macro `AC_PROG_LIBTOOL' is obsolete.
167    configure.ac:13: You should run autoupdate.
168    aclocal.m4:3640: AC_PROG_LIBTOOL is expanded from...
169    configure.ac:13: the top level
170    
171    libtoolize: Consider adding 'AC_CONFIG_MACRO_DIRS([m4])' to configure.ac,
172    libtoolize: and rerunning libtoolize and aclocal.
173    
174    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
175
176commit e0628f5ca2168a413b8b39f20ec62ae4f725bc63
177Author: Alan Coopersmith <alan.coopersmith@oracle.com>
178Date:   Sat Feb 25 09:20:43 2023 -0800
179
180    Remove "All rights reserved" from Oracle copyright notices
181    
182    Oracle no longer includes this term in our copyright & license notices.
183    
184    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
185
186commit dc882ac7b748048f12b033d0d8e5267a6e36036a
187Author: Alan Coopersmith <alan.coopersmith@oracle.com>
188Date:   Mon Dec 19 18:17:34 2022 -0800
189
190    libSM 1.2.4
191    
192    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
193
194commit 12812dca0f852178d8cc3813e4056b396a8f3ab5
195Author: Alan Coopersmith <alan.coopersmith@oracle.com>
196Date:   Wed Sep 7 12:44:33 2022 -0700
197
198    Handle arrays too large to fit in iceConn buffers
199    
200    Fixes numerous gcc warnings of the form:
201    
202    sm_client.c: In function ‘SmcOpenConnection’:
203    SMlibint.h:109:25: warning: potential null pointer dereference [-Wnull-dereference]
204         *((CARD32 *) _pBuf) = _val; \
205    SMlibint.h:160:5: note: in expansion of macro ‘STORE_CARD32’
206         STORE_CARD32 (_pBuf, (CARD32) _len); \
207         ^~~~~~~~~~~~
208    sm_client.c:207:5: note: in expansion of macro ‘STORE_ARRAY8’
209         STORE_ARRAY8 (pData, len, previousId);
210         ^~~~~~~~~~~~
211    
212    v2: Raise required libICE version to 1.1.0 to get the updated
213    IceGetHeaderExtra macro definition needed for this to work correctly.
214    
215    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
216
217commit bb02359ff464d51cbb29d3c93e7e55f3649e5b91
218Author: Alan Coopersmith <alan.coopersmith@oracle.com>
219Date:   Sun Dec 4 12:07:40 2022 -0800
220
221    gitlab CI: build current libICE, to meet dependency on >= 1.1.0
222    
223    Allow us to pass CI without waiting for Debian to pick up yesterday's
224    release of libICE 1.1.0.
225    
226    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
227
228commit 6e541c8fa782ca816f8bf78a54eea27dab27e4a2
229Author: Alan Coopersmith <alan.coopersmith@oracle.com>
230Date:   Thu Jul 28 17:30:21 2022 -0700
231
232    gitlab CI: stop requiring Signed-off-by in commits
233    
234    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
235
236commit 449fdba5482549361a4cd6376d877ebd5162988a
237Author: Alan Coopersmith <alan.coopersmith@oracle.com>
238Date:   Wed Sep 7 11:07:56 2022 -0700
239
240    SmcCloseConnection: remove unnecessary cast from free()
241    
242    commit b17f93a1d041e63261ff followed the style of the time it was
243    written, before commit e77dd2e4bc8227 had removed them.
244    
245    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
246
247commit b17f93a1d041e63261ff63419796136a26489549
248Author: Kim Woelders <kim@woelders.dk>
249Date:   Sat Oct 30 10:00:13 2010 +0200
250
251    Fix some potential memory leaks in SmcCloseConnection().
252    
253    Signed-off-by: Kim Woelders <kim@woelders.dk>
254    Reviewed-by: Corbin Simpson <MostAwesomeDude@gmail.com>
255
256commit a32df086f823099a5e0c00b20f0bb965fed5aa60
257Author: Alan Coopersmith <alan.coopersmith@oracle.com>
258Date:   Sat Mar 5 10:49:14 2022 -0800
259
260    Add uuid as private dependency to sm.pc for static linking
261    
262    If a uuid.pc file was found, add it to Requires.private.
263    Otherwise, add $LIBUUID_LIBS to Libs.private.
264    
265    Fixes: #1
266    
267    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
268
269commit d2076f6a990acc295f2e98bdc2c95649978e7b5f
270Author: Alan Coopersmith <alan.coopersmith@oracle.com>
271Date:   Sat Mar 5 08:16:08 2022 -0800
272
273    gitlab CI: add a basic build test
274    
275    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
276
277commit 0b6048d790499477b6a2907bf3fe755a54cbe68d
278Author: Alan Coopersmith <alan.coopersmith@oracle.com>
279Date:   Sat Mar 5 08:09:47 2022 -0800
280
281    Build xz tarballs instead of bzip2
282    
283    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
284
285commit 56cdb14923310bfa4d393f2acfffeadb04d806c0
286Author: Alan Coopersmith <alan.coopersmith@oracle.com>
287Date:   Sat Mar 5 08:09:19 2022 -0800
288
289    Fix spelling/wording issues
290    
291    Found by using:
292        codespell --builtin clear,rare,usage,informal,code,names
293    
294    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
295
296commit e6ccf19f8d1f71ef79f192b4ca9debf7280232a3
297Author: Alan Coopersmith <alan.coopersmith@oracle.com>
298Date:   Fri Dec 7 19:32:18 2018 -0800
299
300    Update configure.ac bug URL for gitlab migration
301    
302    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
303
304commit 90df350229d3a687de8d65dc450bceb78eceb014
305Author: Alan Coopersmith <alan.coopersmith@oracle.com>
306Date:   Mon Nov 19 17:15:03 2018 -0800
307
308    Update README for gitlab migration
309    
310    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
311
312commit 82ed8b7d73f306835b951410f5c309a5774ab9d4
313Author: Alan Coopersmith <alan.coopersmith@oracle.com>
314Date:   Sat Nov 10 13:19:14 2018 -0800
315
316    Remove obsolete B16 & B32 tags in struct definitions
317    
318    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
319
320commit a52c79544fcd6b5e2242b9122dfaa34be07aebb2
321Author: Matthieu Herrb <matthieu@herrb.eu>
322Date:   Sun Sep 30 11:03:41 2018 +0200
323
324    libSM 1.2.3
325    
326    Signed-off-by: Matthieu Herrb <matthieu@herrb.eu>
327
328commit d86106f2369ecf81155decaa360f9162c0c3cd53
329Author: Tobias Stoeckmann <tobias@stoeckmann.org>
330Date:   Wed Aug 15 21:21:09 2018 +0200
331
332    Fixed out ouf boundary accesses.
333    
334    Out of boundary accesses can occur while processing messages. This
335    affects clients and the session server.
336    
337    Generally, the code tries to prevent out of boundary accesses. It
338    initially "skips" over the memory areas by parsing supplied lengths.
339    Then, it checks if it skipped over the memory boundary. If not, then
340    data is actually read and memory allocated, etc.
341    
342    The problem is that while initially skipping over the memory,
343    subsequent lengths are already parsed, i.e. accessed. This results in
344    out of boundary reads on hostile messages.
345    
346    Lengths could also overflow on 32 bit systems, leading to out of
347    boundary writes if not enough bytes have been allocated.
348    
349    Authentication is handled by libICE, which is not affected, because the
350    macros for skipping already take care about memory boundaries.
351    
352    Therefore, this flaw can only be used by authenticated clients or by
353    hostile servers (which could simply accept every MIT cookie). Most
354    session managers only use Unix sockets, so in many cases it takes a
355    local authenticated user.
356    
357    In order to fix this, I decided to move the macros from SMlibint.h to
358    its only callers in sm_process.c, turning them into functions for much
359    easier error handling and readability.
360    
361    Instead of skipping over the memory, validation happens during actual
362    read and memory allocation operations, as it's rather unlikely to
363    encounter hostile code anyway, i.e. my code has more error cleanup
364    handling in it.
365    
366    Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
367    Reviewed-by: Matthieu Herrb <matthieu@herrb.eu>
368
369commit 75ffafb4e04661fb890a9e8088b743cb077050a6
370Author: Fab <netbox253@free.fr>
371Date:   Sat Oct 7 14:23:52 2017 +0000
372
373    Fix callbacks signatures in libSM documentation
374    
375    https://bugs.freedesktop.org/show_bug.cgi?id=103135
376    
377    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
378    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
379
380commit b347e9f8ef3ae027c049741ab5c0c8dac45c9eb2
381Author: Mihail Konev <k.mvc@ya.ru>
382Date:   Thu Jan 26 13:52:49 2017 +1000
383
384    autogen: add default patch prefix
385    
386    Signed-off-by: Mihail Konev <k.mvc@ya.ru>
387
388commit d34f694e810d11f95cd61e4209cd6e38f70bce58
389Author: Emil Velikov <emil.l.velikov@gmail.com>
390Date:   Mon Mar 9 12:00:52 2015 +0000
391
392    autogen.sh: use quoted string variables
393    
394    Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent
395    fall-outs, when they contain space.
396    
397    Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
398    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
399    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
400
401commit e27964e499f31f48782a6db7421660a230471b2c
402Author: Peter Hutterer <peter.hutterer@who-t.net>
403Date:   Tue Jan 24 10:32:07 2017 +1000
404
405    autogen.sh: use exec instead of waiting for configure to finish
406    
407    Syncs the invocation of configure with the one from the server.
408    
409    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
410    Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
411
412commit b64aa0ef375f2df3ce166733fe92429ba43b6145
413Author: Matthieu Herrb <matthieu@herrb.eu>
414Date:   Tue Oct 20 14:48:52 2015 -0400
415
416    Get rid of strcpy() in the HAVE_UUID_CREATE case
417    
418    Even though this use was safe, some linkers produce a warning
419    when strcpy() is used, and this is the only use in libSM.
420    
421    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
422
423commit 0bf5d26d1d55029846514758f2ffd80e816bd9fb
424Author: Matthieu Herrb <matthieu@herrb.eu>
425Date:   Tue Oct 20 14:47:50 2015 -0400
426
427    Fix uuid_to_string(3) type
428    
429    It should be char *.
430    
431    Reviewed-by: Adam Jackson <ajax@redhat.com>
432
433commit 29ea6247434a85934986e7d4fc60862231c5d77d
434Author: Jon TURNEY <jon.turney@dronecode.org.uk>
435Date:   Sat Sep 13 19:38:12 2014 +0100
436
437    Include unistd.h for getpid()
438    
439    Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
440    Reviewed-by: David Macek <david.macek.0@gmail.com>
441
442commit f2dd6934c38414bc448ee49b47604f135f5487ea
443Author: Alan Coopersmith <alan.coopersmith@oracle.com>
444Date:   Sat Nov 16 19:35:15 2013 -0800
445
446    Stop compiling empty sm_auth.c stub
447    
448    File exists as a placeholder in case someone someday decides to add
449    additional auth methods on top of what libICE provides, but it's been
450    two decades and no one has, so stop spending time compiling & linking
451    for now.
452    
453    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
454    Reviewed-by: Adam Jackson <ajax@redhat.com>
455
456commit 0fd7aa17da41779129a3acfdad28e07c0072a160
457Author: Alan Coopersmith <alan.coopersmith@oracle.com>
458Date:   Sat Sep 7 23:05:16 2013 -0700
459
460    libSM 1.2.2
461    
462    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
463
464commit 95cb4dcd618774b3f7b5b915c5ce5aa72f853b53
465Author: Alan Coopersmith <alan.coopersmith@oracle.com>
466Date:   Fri Aug 9 17:24:16 2013 -0700
467
468    Fix some clang warnings about integer size/sign conversions
469    
470    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
471
472commit 5a06ff257f72a629539f23b35026fbcdb8bb372e
473Author: Alan Coopersmith <alan.coopersmith@oracle.com>
474Date:   Fri Aug 9 00:09:30 2013 -0700
475
476    unifdef WORD64 (leftover bits of Cray support)
477    
478    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
479
480commit 759bbd43f0fdc9a96ba1676d7830164bc9954be2
481Author: Alan Coopersmith <alan.coopersmith@oracle.com>
482Date:   Fri Aug 9 00:06:01 2013 -0700
483
484    Constify previous_id argument to SmcOpenConnection
485    
486    Clears gcc warning of:
487    sm_client.c: In function 'SmcOpenConnection':
488    sm_client.c:199:13: warning: assignment discards 'const' qualifier from
489     pointer target type [enabled by default]
490    
491    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
492
493commit 77ddd273239a629eeed7bd1d5b4509b1bd6d4e37
494Author: Colin Walters <walters@verbum.org>
495Date:   Wed Jan 4 17:37:06 2012 -0500
496
497    autogen.sh: Implement GNOME Build API
498    
499    http://people.gnome.org/~walters/docs/build-api.txt
500    
501    Signed-off-by: Adam Jackson <ajax@redhat.com>
502
503commit 49eb906eee49f68dcf5b358546924b7085c9d75d
504Author: Adam Jackson <ajax@redhat.com>
505Date:   Tue Jan 15 14:28:48 2013 -0500
506
507    configure: Remove AM_MAINTAINER_MODE
508    
509    Signed-off-by: Adam Jackson <ajax@redhat.com>
510
511commit 3cb1f18a6a2657f9c8e74fb2195558abca0652bd
512Author: Alan Coopersmith <alan.coopersmith@oracle.com>
513Date:   Fri Jan 4 19:36:53 2013 -0800
514
515    unifdef -U__UNIXOS2__
516    
517    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
518
519commit 4cbd659505f2acafe2645c59532e52d4cfa00e1d
520Author: Alan Coopersmith <alan.coopersmith@oracle.com>
521Date:   Wed Dec 26 23:42:30 2012 -0800
522
523    Remove unused TLI ("STREAMSCONN") code from libSM
524    
525    Has never been converted to build in modular builds, so has been unusable
526    since X11R7.0 release in 2005.  All known platforms with TLI/XTI support
527    that X11R7 & later releases run on also have (and mostly prefer) BSD
528    socket support for their networking API.
529    
530    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
531
532commit b3d1f4896cab54717acd691b62b7fa3122a5fd8c
533Author: Alan Coopersmith <alan.coopersmith@oracle.com>
534Date:   Fri Mar 2 20:53:41 2012 -0800
535
536    libSM 1.2.1
537    
538    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
539
540commit 6475d9eff0bfbb6446eff205fd52c5ba82c5819c
541Author: Matt Dew <marcoz@osource.org>
542Date:   Wed Jan 11 20:33:41 2012 -0700
543
544    informaltable cleanup
545    
546    On certain tables, add top and bottom borders to table
547    header and a bottom border to the table. This matches
548    what those tables in the old pdfs looked like.
549    
550    the <?dbfo keep-together='always'> prevents tables from
551    splitting across pages. Useful for tiny tables.
552    
553    Converting the colwidth to a floating point,
554    IE, 1* -> 1.0* cleans up these build errors:
555    WARNING: table-layout="fixed" and column-width unspecified
556    => falling back to proportional-column-width(1)
557    
558    Signed-off-by: Matt Dew <marcoz@osource.org>
559
560commit 3ca545c7835b71b63f8c5a8f758b08418a65a5bb
561Author: Alan Coopersmith <alan.coopersmith@oracle.com>
562Date:   Mon Dec 5 20:04:51 2011 -0800
563
564    unifdef -ULynx
565    
566    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
567    Reviewed-by: Mark Kettenis <kettenis@openbsd.org>
568    Reviewed-by: James Cloos <cloos@jhcloos.com>
569
570commit 4af9e4a71f7c07da86ef1940cba69e92b11ba337
571Author: Alan Coopersmith <alan.coopersmith@oracle.com>
572Date:   Sat Nov 19 11:33:30 2011 -0800
573
574    SmsInitialize: Mark vendor & release args as const char *
575    
576    Needed to fix gcc -Wwrite-strings arguments in callers such as xsm.
577    
578    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
579    Reviewed-by: James Cloos <cloos@jhcloos.com>
580
581commit e77dd2e4bc8227ebdab70b4233cb33ed690fa264
582Author: Alan Coopersmith <alan.coopersmith@oracle.com>
583Date:   Sat Nov 19 10:33:15 2011 -0800
584
585    Remove a bunch of unnecessary casts with malloc & free calls
586    
587    With modern compilers and headers, they cause more problems than they
588    solve and just hide real issues.
589    
590    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
591    Reviewed-by: Mark Kettenis <kettenis@openbsd.org>
592    Reviewed-by: James Cloos <cloos@jhcloos.com>
593
594commit 46f3ef4460aa2c1c2cba22897694a1cea572d506
595Author: Alan Coopersmith <alan.coopersmith@oracle.com>
596Date:   Sat Nov 19 10:23:24 2011 -0800
597
598    Replace malloc(strlen) + strcpy sets with strdup calls
599    
600    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
601    Reviewed-by: Mark Kettenis <kettenis@openbsd.org>
602    Reviewed-by: James Cloos <cloos@jhcloos.com>
603
604commit fb3ef5844d392f70cc6bd9b0d8770ca17bde1428
605Author: Alan Coopersmith <alan.coopersmith@oracle.com>
606Date:   Sat Nov 19 10:13:02 2011 -0800
607
608    Reindent IPv4 code to match IPv6 code
609    
610    Takes care of the other block of code confusingly sharing indent levels
611    
612    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
613    Reviewed-by: James Cloos <cloos@jhcloos.com>
614
615commit 638496507882f0afe506fe294f68ad5290ef95db
616Author: Alan Coopersmith <alan.coopersmith@oracle.com>
617Date:   Sat Nov 19 10:07:32 2011 -0800
618
619    Move variable declarations to get rid of unnecessary scope brackets
620    
621    Gets rid of one of the multiple levels of bracketing that confusingly
622    shared the same indent level.
623    
624    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
625    Reviewed-by: James Cloos <cloos@jhcloos.com>
626
627commit 9f350d75a4553d8e2bc365f8de4110bb79ec7b32
628Author: Alan Coopersmith <alan.coopersmith@oracle.com>
629Date:   Sat Nov 19 10:01:50 2011 -0800
630
631    Move and rename temp[4] definition to reduce confusion with temp[256]
632    
633    Both variables were locals in different scope levels of the same
634    function, leading to both confusing code and gcc -Wshadow warnings:
635    
636    sm_genid.c: In function 'SmsGenerateClientID':
637    sm_genid.c:160:10: warning: declaration of 'temp' shadows a previous local
638    
639    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
640    Reviewed-by: James Cloos <cloos@jhcloos.com>
641
642commit 079de6fd4bd0423e20e472d7342f919eebce0517
643Author: Alan Coopersmith <alan.coopersmith@oracle.com>
644Date:   Sat Nov 19 09:52:17 2011 -0800
645
646    Use imdent to make multiple levels of nested #if easier to follow
647    
648    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
649    Reviewed-by: James Cloos <cloos@jhcloos.com>
650
651commit 79c785adf86ef06f09910b68019bc8a1e6fcb122
652Author: Matt Dew <marcoz@osource.org>
653Date:   Tue Oct 4 22:42:05 2011 -0600
654
655    Cleanup IDs and links in doc
656    
657    1 - fix the capitalization of the ID attributes to match either the
658         <title> or <funcdef> string it goes with.
659    2 - fix any <linkend>'s that were affected by 1.
660    3 - any <function> in the docs that has an actual funcdef,
661    will become an olink.
662    
663    Signed-off-by: Matt Dew <marcoz@osource.org>
664
665commit 4708d636de50281ab2c52c32b81b7ecb67657820
666Author: Alan Coopersmith <alan.coopersmith@oracle.com>
667Date:   Fri Sep 16 22:03:00 2011 -0700
668
669    Strip trailing whitespace
670    
671    Performed with: find * -type f | xargs perl -i -p -e 's{[ \t]+$}{}'
672    git diff -w & git diff -b show no diffs from this change
673    
674    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
675
676commit 44eecd93986368e71c404d8faa264a514bf88ab1
677Author: Gaetan Nadon <memsize@videotron.ca>
678Date:   Wed Sep 14 14:59:27 2011 -0400
679
680    docs: fix author affiliation
681    
682    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
683
684commit 7ed7ef36b7e1fdd29554db122e4eb07323e27dee
685Author: Gaetan Nadon <memsize@videotron.ca>
686Date:   Mon Sep 12 16:54:45 2011 -0400
687
688    docs: use the &fullrelvers; entity to set X11 release information
689    
690    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
691
692commit 7601182a252b44d0b04435f1eb4d574dfcf5fabb
693Author: Gaetan Nadon <memsize@videotron.ca>
694Date:   Sun Sep 11 19:49:53 2011 -0400
695
696    docs: remove <productnumber> which is not used by default
697    
698    This element is not rendered by default on the title. A template
699    customization is required to display it.
700    X Window System does not have a product number.
701    
702    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
703
704commit cbca5fad657122d1a9f370d0640acb66ef80aaef
705Author: Gaetan Nadon <memsize@videotron.ca>
706Date:   Thu Sep 8 20:00:00 2011 -0400
707
708    docbook.am: embed css styles inside the HTML HEAD element
709    
710    Rather than referring to the external xorg.css stylesheet, embed the content
711    of the file in the html output produced. This is accomplished by using
712    version 1.10 of xorg-xhtml.xsl.
713    
714    This makes the whole html docs tree much more relocatable.
715    In addition, it eliminates xorg.css as a runtime file which makes
716    xorg-sgml-doctools a build time only package.
717    
718    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
719
720commit b88a9949fa6e1b12348541c6293535cc7ff931f4
721Author: Gaetan Nadon <memsize@videotron.ca>
722Date:   Wed Sep 7 10:31:04 2011 -0400
723
724    docbook.am: global maintenance update - entities, images and olinking
725    
726    Adding support in libX11 for html chunking caused a reorg of docbook.am
727    as well as the xorg-sgml-doctools masterdb for olinking.
728    The parameter img.src.path is added for pdf images.
729    A searchpath to the root builddir is added for local entities, if present.
730    
731    The docbook.am makefile hides all the details and is identical for
732    all 22 modules having DocBook documentation. It is included by a thin
733    Makefile.am which requires no docbook knowledge.
734    
735    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
736
737commit 64e002e55555205fdcdb9e6d78d6eadd4136cb7a
738Author: Gaetan Nadon <memsize@videotron.ca>
739Date:   Sun Jun 12 17:54:50 2011 -0400
740
741    Install xml versions of specs even if HAVE_XMLTO is false
742    
743    DocBook/XML input source is also a usefull output format that can be viewed
744    with an XML viewer or editor and by some O/S help system.
745    
746    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
747
748commit bef231eefedae448255b705aa2f687f49e371b71
749Author: Gaetan Nadon <memsize@videotron.ca>
750Date:   Sun Jun 5 16:27:36 2011 -0400
751
752    Install target dbs alongside generated documents
753    
754    This matches a change in xorg-sgml-docs whereby the masterdb will look for
755    the target dbs into the same location as the generated documents.
756    
757    The target dbs are now installed alongside the generated documents.
758    Previously they are installed in $prefix/sgml/X11/dbs alongside masterdb which
759    has the potential of installing outside the package prefix and cause
760    distcheck to fail when user does not have write permission in this package.
761    
762    Requires XORG_CHECK_SGML_DOCTOOLS(1.8) which was released 2011-06-11
763
764commit f7473da7b1ff6a5295a145f808c327e655e574a9
765Author: Matt Dew <marcoz@osource.org>
766Date:   Wed May 25 23:46:36 2011 -0600
767
768    add id attributes to funcsynopsis to allow other docs to olink to them.
769    
770    Signed-off-by: Matt Dew <marcoz@osource.org>
771    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
772    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
773
774commit 8683bdd74d3e40c7db92efd25acf345f6331b252
775Author: Gaetan Nadon <memsize@videotron.ca>
776Date:   Sun Feb 27 15:06:18 2011 -0500
777
778    Documentation: add Docbook external references support
779    
780    When writing technical documentation, it is often necessary to cross
781    reference to other information. When that other information is not in the
782    current document, additional support is needed, namely <olink>.
783    
784    A new feature with version 1.7 of xorg-sgml-doctools adds references to
785    other documents within or outside this package.
786    
787    This patch adds technical support for this feature but does not change
788    the content of the documentation as seen by the end user.
789    
790    Each book or article must generate a database containing the href
791    of sections that can be referred to from another document. This database
792    is installed in DATAROOTDIR/sgml/X11/dbs. There is a requirement that
793    the value of DATAROOTDIR for xorg-sgml-doctools and for the package
794    documentation is the same. This forms a virtual document tree.
795    
796    This database is consulted by other documents while they are being generated
797    in order to fulfill the missing information for linking.
798    Refer to the xorg-sgml-doctools for further technical information.
799    
800    Co-authored-by: Matt Dew <marcoz@osource.org>
801    
802    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
803
804commit 252f6d2add7c926cdcf0cea43da04f182720b0b4
805Author: Gaetan Nadon <memsize@videotron.ca>
806Date:   Fri Feb 25 09:04:45 2011 -0500
807
808    Docbook: change the book id to match the xml file basename
809    
810    This is required for the up-coming external references support.
811    
812    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
813
814commit 2cd30c36c080217c20addf311510881c8eecf374
815Author: Gaetan Nadon <memsize@videotron.ca>
816Date:   Wed Feb 2 19:25:52 2011 -0500
817
818    config: splitting SM and XTRANS compiler options is not required
819    
820    Simplify configuration by using a single PKG_CHECK_MODULES statement.
821    
822    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
823
824commit 3c923881f415651d75434efd209003d602253437
825Author: Gaetan Nadon <memsize@videotron.ca>
826Date:   Wed Feb 2 11:43:40 2011 -0500
827
828    config: comment, minor upgrade, quote and layout configure.ac
829    
830    Group statements per section as per Autoconf standard layout
831    Quote statements where appropriate.
832    Autoconf recommends not using dnl instead of # for comments
833    
834    Use AC_CONFIG_FILES to replace the deprecated AC_OUTPUT with parameters.
835    
836    This helps automated maintenance and release activities.
837    Details can be found in http://wiki.x.org/wiki/NewModuleGuidelines
838    
839    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
840
841commit b29f5c9f3a728c5b7673cf54ad60d988b5dd93e7
842Author: Alan Coopersmith <alan.coopersmith@oracle.com>
843Date:   Thu Jan 27 22:05:40 2011 -0800
844
845    Bug 33390 - sm.pc: don't export a dependency on ice
846    
847    https://bugs.freedesktop.org/show_bug.cgi?id=33390
848    
849    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
850    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
851
852commit fe43b6de5bb4423ce99d2df1ab37ea8ece39a9fa
853Author: Gaetan Nadon <memsize@videotron.ca>
854Date:   Fri Jan 28 16:07:07 2011 -0500
855
856    config: replace deprecated AC_HELP_STRING with AS_HELP_STRING
857    
858    This silences an Automake warning.
859    
860    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
861
862commit 57b6f700378a001e1aff9b83f6cb396c7c4a7368
863Author: Gaetan Nadon <memsize@videotron.ca>
864Date:   Fri Jan 28 14:59:04 2011 -0500
865
866    config: remove unrequired AC_HEADER_STDC
867    
868    Autoconf says:
869    "This macro is obsolescent, as current systems have conforming
870    header files. New programs need not use this macro".
871
872commit 8f9878c06e359d21715a3e4358895b589466bc46
873Author: Paulo Zanoni <pzanoni@mandriva.com>
874Date:   Thu Dec 16 14:03:06 2010 -0200
875
876    Use docbookx.dtd version 4.3 for all docs
877    
878    Signed-off-by: Paulo Zanoni <pzanoni@mandriva.com>
879    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
880
881commit 6d093e2397ecdbbba044fe7ef2fd922c8c8261de
882Author: Alan Coopersmith <alan.coopersmith@oracle.com>
883Date:   Sun Nov 21 11:19:45 2010 -0800
884
885    config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
886    
887    Regroup AC statements under the Autoconf initialization section.
888    Regroup AM statements under the Automake initialization section.
889    
890    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
891
892commit b8ef6cea0ccae4d88a9cb91cd836188ae781cda8
893Author: Alan Coopersmith <alan.coopersmith@oracle.com>
894Date:   Sun Nov 21 11:17:25 2010 -0800
895
896    config: Remove unnecessary calls from configure.ac
897    
898    AC_PROG_CC are provided by XORG_DEFAULT_OPTIONS now
899    PKG_CONFIG_MODULES handles AC_SUBST of the CFLAGS & LIBS variables
900    
901    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
902
903commit 15dc32dd7b57315f9e319f3e346ba28a1e69c646
904Author: Alan Coopersmith <alan.coopersmith@oracle.com>
905Date:   Sun Nov 21 11:16:14 2010 -0800
906
907    Sun's copyrights belong to Oracle now
908    
909    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
910
911commit 8480764c94d15673c884b90c7a10bc86635dec63
912Author: Gaetan Nadon <memsize@videotron.ca>
913Date:   Tue Nov 9 13:04:40 2010 -0500
914
915    config: HTML file generation: use the installed copy of xorg.css
916    
917    Currenlty the xorg.css file is copied in each location
918    where a DocBook/XML file resides. This produces about
919    70 copies in the $(docdir) install tree.
920    
921    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
922
923commit d2327760a52fdbcd3759211578e3663e00e4a31e
924Author: Alan Coopersmith <alan.coopersmith@oracle.com>
925Date:   Wed Oct 27 22:26:41 2010 -0700
926
927    libSM 1.2.0
928    
929    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
930
931commit 784a330e337af16c1e385d0fbeee1e5369413656
932Author: Alan Coopersmith <alan.coopersmith@oracle.com>
933Date:   Sun Oct 24 20:31:54 2010 -0700
934
935    SMlib.xml: Use <simplelist> instead of <synopsis> for lists of mask values
936    
937    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
938
939commit 12af18dd9a731a816e7b074bbecaa5549bfdba31
940Author: Alan Coopersmith <alan.coopersmith@oracle.com>
941Date:   Sun Oct 24 19:57:32 2010 -0700
942
943    SMlib.xml: Tag function names, parameters, constant values, etc.
944    
945    Includes correcting <function> tags on things that aren't functions
946    as some stylesheets may add () after <function> tagged items so we
947    shouldn't use them for constants, variables, filenames, etc.
948    
949    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
950
951commit ed9331e10babdd70da51134f0eaee8625a469ffe
952Author: Alan Coopersmith <alan.coopersmith@oracle.com>
953Date:   Sun Oct 24 18:54:05 2010 -0700
954
955    SMlib.xml: Line wrapping & other whitespace cleanup
956    
957    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
958
959commit 763b01e8e69d6132b3b4b57263f19de9de985f99
960Author: Alan Coopersmith <alan.coopersmith@oracle.com>
961Date:   Sat Oct 23 00:47:27 2010 -0700
962
963    xsmp.xml: add internal cross-reference links
964    
965    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
966
967commit 506af19b86af2a7960a3bb5cf72287349012c869
968Author: Alan Coopersmith <alan.coopersmith@oracle.com>
969Date:   Sat Oct 23 00:43:28 2010 -0700
970
971    xsmp.xml: Use <synopsis> and related markup for protocol message definition
972    
973    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
974
975commit 75443d72b4944391b809f429cc4cef2ffb76f7bf
976Author: Alan Coopersmith <alan.coopersmith@oracle.com>
977Date:   Sat Oct 23 00:10:01 2010 -0700
978
979    xsmp.xml: Use <errorname> instead of <function> for error names
980    
981    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
982
983commit 2ed7704e7d4b0086edc8667a80780c6c51ba84cb
984Author: Alan Coopersmith <alan.coopersmith@oracle.com>
985Date:   Fri Oct 22 23:52:15 2010 -0700
986
987    xsmp.xml: Restore note titles (example/rationale/advice)
988    
989    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
990
991commit 489566ca0e69ed6068fb4bdbaccd413ec2ee8319
992Author: Alan Coopersmith <alan.coopersmith@oracle.com>
993Date:   Fri Oct 22 23:39:54 2010 -0700
994
995    xsmp.xml: Clean up tables
996    
997    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
998
999commit c5b211d9a01438958546669f95a5215784348534
1000Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1001Date:   Fri Oct 22 08:44:46 2010 -0700
1002
1003    xsmp.xml: Misc markup tag cleanups
1004    
1005    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1006
1007commit a18973e643b0916a2f4bf6fb8fc29508429635bb
1008Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1009Date:   Fri Oct 22 08:34:49 2010 -0700
1010
1011    Coalesce copyright notices in xml docs
1012    
1013    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1014
1015commit e3f357dbd39036766765e1de110a876adc2f8226
1016Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1017Date:   Fri Oct 22 08:32:04 2010 -0700
1018
1019    xsmp.xml: Convert -> & <- to &rarr; & &larr;
1020    
1021    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1022
1023commit 29e2ac62cb6a152499d1b3f9fe871b1252f3c22f
1024Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1025Date:   Fri Oct 22 08:21:27 2010 -0700
1026
1027    xsmp.xml: Line wrapping & other whitespace cleanup
1028    
1029    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1030
1031commit c83363e83a937ba2ddd99e732bfde5f8d39bd648
1032Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1033Date:   Thu Oct 21 23:48:42 2010 -0700
1034
1035    SMlib.xml: fix a couple parameter list entries
1036    
1037    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1038
1039commit 862e2b220bc928d6ab2f3bb6159bc4be03914979
1040Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1041Date:   Thu Oct 21 23:43:49 2010 -0700
1042
1043    SMlib.xml: misc markup cleanups
1044    
1045    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1046
1047commit 0b15c3773db651863dc8374d45095bc5aa53d41d
1048Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1049Date:   Thu Oct 21 23:16:14 2010 -0700
1050
1051    SMlib.xml: fix typo: SmProc -> SmProp
1052    
1053    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1054
1055commit cd4739acb0c6d1bca2d3a7adc5c52324928a5561
1056Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1057Date:   Thu Oct 21 22:55:04 2010 -0700
1058
1059    SMlib.xml: add internal cross-reference links
1060    
1061    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1062
1063commit 33a86926ae3a7ddcea817eda8c4b1aac7c518d10
1064Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1065Date:   Thu Oct 21 16:31:08 2010 -0700
1066
1067    SMlib.xml: Convert remaining `` quotes to &ldquo; style
1068    
1069    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1070
1071commit 5abbdcde8a9ed3e489e2f9e5b9161dc9ebc5801f
1072Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1073Date:   Thu Oct 21 16:29:21 2010 -0700
1074
1075    SMlib.xml: Convert remaining literallayout tags to synopsis tags
1076    
1077    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1078
1079commit 62bc296fefd0465c1f3eef283f3bf0a43d132ef9
1080Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1081Date:   Thu Oct 21 16:17:09 2010 -0700
1082
1083    SMlib.xml: Convert function prototypes to <funcprototype> tags
1084    
1085    Provides automatic ansifaction & better formatted output
1086    
1087    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1088
1089commit ee77c1932c0cd2050371117c3724d66072cbdbee
1090Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1091Date:   Thu Oct 21 15:43:33 2010 -0700
1092
1093    SMlib.xml: Remove some nroff macros left in tables by mistake
1094    
1095    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1096
1097commit 24e9d8a2a35452c67ba2e2e34857ce3691d9a22d
1098Author: Jesse Adkins <jesserayadkins@gmail.com>
1099Date:   Tue Sep 28 13:30:02 2010 -0700
1100
1101    Purge cvs tags.
1102    
1103    Signed-off-by: Jesse Adkins <jesserayadkins@gmail.com>
1104    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1105
1106commit e0be9c9dfb60f21edb37ff77d766395aa57a96e4
1107Author: Gaetan Nadon <memsize@videotron.ca>
1108Date:   Sun Jun 27 20:31:28 2010 -0400
1109
1110    doc: remove trailing spaces in DocBook XML docs
1111    
1112    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1113
1114commit 8c42c25b90b10b2c5f20c93ebd9cf1df622b009f
1115Author: Gaetan Nadon <memsize@videotron.ca>
1116Date:   Fri Jun 25 21:43:08 2010 -0400
1117
1118    doc: replace groff input format with docbook xml format
1119    
1120    Initial version of SMlib and xsmp docbook xml.
1121    Requires util-macros 1.10
1122    
1123    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1124
1125commit fd37bd0ac012e15bffad7e83d36b87ee3941d6f5
1126Author: Alexander Kabaev <kan@FreeBSD.org>
1127Date:   Wed May 26 13:28:03 2010 -0400
1128
1129    Fix off by one error in SmsGenerateClientID when uuid_create is used
1130    
1131    Fix apparent typo in SmsGenerateClientID which always leaves the
1132    first byte of allocated id string uninitialized. If that byte
1133    happens to be 0, SmsGenerateClientId appears to return an empty
1134    string to the caller, instead of proper GUID in text form.
1135    
1136    Reviewed-by: James CLoos <cloos@jhcloos.com>
1137    Signed-off-by: Adam Jackson <ajax@redhat.com>
1138
1139commit af7364c20d91615251b1ec2b19e0cb38e9094ba0
1140Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1141Date:   Thu Apr 22 07:42:30 2010 -0700
1142
1143    Update README now that docs are in this module, not xorg-docs
1144    
1145    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1146
1147commit 7464514f60ff7754e5c1e91d6913000fb5d366c9
1148Author: Gaetan Nadon <memsize@videotron.ca>
1149Date:   Mon Mar 29 14:53:48 2010 -0400
1150
1151    config: remove the pkgconfig pc.in file from EXTRA_DIST
1152    
1153    Automake always includes it in the tarball.
1154    
1155    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1156
1157commit 39f4ed794168c824015754e451b4b191fddad643
1158Author: Gaetan Nadon <memsize@videotron.ca>
1159Date:   Tue Feb 16 19:57:27 2010 -0500
1160
1161    doc: use HAVE_GROFF_MS to skip doc when 's.tmac' macros missing
1162    
1163    This conditional is defined in XORG_WITH_GROFF macro.
1164    
1165    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1166
1167commit 64f201ae65de7024bce0a85d6380ac158a3b5852
1168Author: Gaetan Nadon <memsize@videotron.ca>
1169Date:   Tue Feb 16 14:41:22 2010 -0500
1170
1171    specs: change install cmd due to automake 1.11
1172    
1173    docData_INSTALL is defined in 1.9 and 1.10 but not 1.11
1174    
1175    Reported-by: Tobias Droste <tdroste@gmx.de>
1176    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1177
1178commit 98f205119011c016ec902c69d882a26dd7185a43
1179Author: Gaetan Nadon <memsize@videotron.ca>
1180Date:   Tue Feb 9 17:39:46 2010 -0500
1181
1182    doc: use $(mkdir_p) rather than $(MKDIR_P) due to automake 1.9.6
1183    
1184    $(MKDIR_P) is not defined in automake 1.9.
1185    
1186    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1187
1188commit c22a324b4c1e1ac38b1c04656ecdcf9127343e8d
1189Author: Gaetan Nadon <memsize@videotron.ca>
1190Date:   Mon Feb 1 14:58:21 2010 -0500
1191
1192    doc: install generated images in $docdir
1193    
1194    The html installed doc is incomplete without the generated images.
1195    
1196    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1197
1198commit 844a1de311492a7666c60f39c6cbe23a5c3f22da
1199Author: Gaetan Nadon <memsize@videotron.ca>
1200Date:   Sat Jan 30 14:11:36 2010 -0500
1201
1202    doc: use new macros to control doc generation
1203    
1204    Namely XORG_WITH_GROFF for the groff generation tool
1205    XORG_ENABLE_DOCS for the generation of all docs
1206    
1207    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1208
1209commit 626788435d4a49eeea9fa2382f7ec554a0b92197
1210Author: Gaetan Nadon <memsize@videotron.ca>
1211Date:   Tue Jan 26 16:32:00 2010 -0500
1212
1213    doc: clean-up generated html images
1214    
1215    Generate images in /images as is the convention
1216    Provide a base file name for images rather than process ID
1217    Remove images directory when running make clean
1218    
1219    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
1220
1221commit b5af7f362e30b1bbde4eef4216385ae2b2ea1bee
1222Author: Alan Coopersmith <alan.coopersmith@sun.com>
1223Date:   Thu Jan 14 21:00:53 2010 -0800
1224
1225    Update Sun license notices to current X.Org standard form
1226    
1227    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
1228
1229commit 0b2e5ca9da6b35f5cf98ac879601cf8083c72dde
1230Author: Rémi Cardona <remi@gentoo.org>
1231Date:   Thu Dec 17 08:26:28 2009 +0100
1232
1233    require autoconf 2.60 because of $(docdir) use
1234    
1235    Signed-off-by: Rémi Cardona <remi@gentoo.org>
1236    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
1237    Reviewed-by: Alan Coopersmith <alan.coopersmith@sun.com>
1238    Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
1239
1240commit 7f92faa03910bf74fbebefb5d543c09958fb3b28
1241Author: Gaetan Nadon <memsize@videotron.ca>
1242Date:   Fri Nov 27 20:56:03 2009 -0500
1243
1244    Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
1245    
1246    Now that the INSTALL file is generated.
1247    Allows running make maintainer-clean.
1248
1249commit 802f5e2a67ef3d214a0560c36985f8fed3ab92f1
1250Author: Gaetan Nadon <memsize@videotron.ca>
1251Date:   Wed Nov 11 18:56:57 2009 -0500
1252
1253    Update .gitignore for the /doc directory #24239
1254
1255commit 7309ebe123d05955d81318bca5c58ee90b9887dd
1256Author: Gaetan Nadon <memsize@videotron.ca>
1257Date:   Wed Oct 28 14:09:10 2009 -0400
1258
1259    INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
1260    
1261    Add missing INSTALL file. Use standard GNU file on building tarball
1262    README may have been updated
1263    Remove AUTHORS file as it is empty and no content available yet.
1264    Remove NEWS file as it is empty and no content available yet.
1265
1266commit 2fb04f8726ddf8ad0749a6b733ab87c5e1bc06dc
1267Author: Gaetan Nadon <memsize@videotron.ca>
1268Date:   Mon Oct 26 22:08:41 2009 -0400
1269
1270    Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
1271    
1272    ChangeLog filename is known to Automake and requires no further
1273    coding in the makefile.
1274
1275commit e88afa3327621f8eb00d920c45536e08b7bc1898
1276Author: Gaetan Nadon <memsize@videotron.ca>
1277Date:   Thu Oct 22 12:34:18 2009 -0400
1278
1279    .gitignore: use common defaults with custom section # 24239
1280    
1281    Using common defaults will reduce errors and maintenance.
1282    Only the very small or inexistent custom section need periodic maintenance
1283    when the structure of the component changes. Do not edit defaults.
1284
1285commit d4e3653ff1eed208ea6f35158ad03da7729622b9
1286Author: Alan Coopersmith <alan.coopersmith@sun.com>
1287Date:   Mon Nov 16 14:57:19 2009 -0800
1288
1289    Revert "Fix memory leak for SM_DeleteProperties"
1290    
1291    This reverts commit 58aa8879e10b12e478ab14b90afd1001b4abd316.
1292    
1293    Fixes gnome-session crashes due to double frees, as reported in
1294    http://bugs.freedesktop.org/show_bug.cgi?id=24964
1295
1296commit 41d5bb13119b36a7ce6a344372df1b788994e2c7
1297Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
1298Date:   Wed Oct 21 12:47:23 2009 -0700
1299
1300    This is not a GNU project, so declare it foreign.
1301    
1302    On Wed, 2009-10-21 at 13:36 +1000, Peter Hutterer wrote:
1303    > On Tue, Oct 20, 2009 at 08:23:55PM -0700, Jeremy Huddleston wrote:
1304    > > I noticed an INSTALL file in xlsclients and libXvMC today, and it
1305    > > was quite annoying to work around since 'autoreconf -fvi' replaces
1306    > > it and git wants to commit it.  Should these files even be in git?
1307    > > Can I nuke them for the betterment of humanity and since they get
1308    > > created by autoreconf anyways?
1309    >
1310    > See https://bugs.freedesktop.org/show_bug.cgi?id=24206
1311    
1312    As an interim measure, replace AM_INIT_AUTOMAKE([dist-bzip2]) with
1313    AM_INIT_AUTOMAKE([foreign dist-bzip2]). This will prevent the generation
1314    of the INSTALL file. It is also part of the 24206 solution.
1315    
1316    Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
1317
1318commit 58aa8879e10b12e478ab14b90afd1001b4abd316
1319Author: Michael Jansen <kde@michael-jansen.biz>
1320Date:   Wed Oct 14 11:01:46 2009 -0700
1321
1322    Fix memory leak for SM_DeleteProperties
1323    
1324    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
1325
1326commit 6d43663bf01e055cfe713dccac39b651a0ccfacf
1327Author: Alan Coopersmith <alan.coopersmith@sun.com>
1328Date:   Sat Oct 10 00:37:41 2009 -0700
1329
1330    Move session management protocol docs from xorg-docs here too
1331    
1332    Since we don't have a smproto package, but ship the protocol headers
1333    in this module, might as well keep the protocol docs with the headers
1334    
1335    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
1336
1337commit b1363f9fa47e1564aa5e4fe822bd6a04b5a44954
1338Author: Alan Coopersmith <alan.coopersmith@sun.com>
1339Date:   Sat Oct 10 00:02:04 2009 -0700
1340
1341    Move docs from xorg-docs, use groff to format for installation
1342    
1343    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
1344
1345commit c8e29f4a18041c7a649f701a7cfdd37080d7c6f6
1346Author: Alan Coopersmith <alan.coopersmith@sun.com>
1347Date:   Fri Oct 9 23:28:11 2009 -0700
1348
1349    Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS
1350    
1351    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
1352
1353commit 7fc343e70202279fd3daa3adf789ca35b0ec8891
1354Author: Rémi Cardona <remi@gentoo.org>
1355Date:   Fri Aug 14 11:20:34 2009 +0200
1356
1357    require libICE >= 1.0.5
1358    
1359    During the ansification (commit 896aeb5dd128), 2 extern decls for
1360    _IcePaMagicCookie1Proc and _IcePoMagicCookie1Proc were dropped from
1361    sm_client.c and sm_manager.c. Both decls were added between libICE 1.0.4
1362    and 1.0.5.
1363    
1364    Signed-off-by: Rémi Cardona <remi@gentoo.org>
1365
1366commit 82bbf42a2ba0401a8346505b1292ddb7b58f4507
1367Author: Rémi Cardona <remi@gentoo.org>
1368Date:   Fri Aug 7 14:19:50 2009 +0200
1369
1370    libSM 1.1.1, update libtool version
1371
1372commit 45720a2e266748ac15bc0544b56e035383695588
1373Author: Diego Elio 'Flameeyes' Pettenò <flameeyes@gmail.com>
1374Date:   Sat May 16 01:01:39 2009 +0200
1375
1376    Use FreeBSD uuid functions when available.
1377    
1378    If the system provide the uuid_create function assume building on FreeBSD
1379    or another OS with a compatible uuid interface. If that's the case, ignore
1380    libuuid and just use the system functions without extra deps.
1381
1382commit 0389dbec3b738fa7e1dbef2b5317124b95bdfb20
1383Author: Julien Cristau <jcristau@debian.org>
1384Date:   Mon Feb 16 01:27:24 2009 +0100
1385
1386    Typo fix
1387    
1388    This makes us really error out if we want libuuid but can't find it.
1389
1390commit b75eae83221465bd0da4d21d0bab5af379dc31c1
1391Author: Alan Coopersmith <alan.coopersmith@sun.com>
1392Date:   Mon Feb 2 20:34:30 2009 -0800
1393
1394    Add README with pointers to mailing list, bugzilla & git repos
1395    
1396    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
1397
1398commit 896aeb5dd128fc8e489106fa7aaa5cee1e589106
1399Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
1400Date:   Wed Jan 28 18:48:47 2009 -0200
1401
1402    Janitor: ansification, make distcheck, compiler warnings.
1403
1404commit 1dcf5502137efe36d01b30169d4387438ad47be0
1405Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
1406Date:   Sat Nov 29 04:55:58 2008 -0200
1407
1408    avoid gcc warnings for libSM
1409    
1410      Patch from http://bugs.freedesktop.org/show_bug.cgi?id=17968 adapted
1411    to current sources.
1412      This corrects a potential (hypothetical) segmentation fault.
1413
1414commit 8bed01275a7c7caf8f777e4074a5ee1ba1c2b3e7
1415Author: Caolan McNamara <caolanm@redhat.com>
1416Date:   Fri Oct 17 17:21:49 2008 -0400
1417
1418    Bug #17644: Fix valgrind warning in _SmcProcessMessage
1419
1420commit 8ce4f47adb343aed069862a05b5e315173b17823
1421Author: Julien Cristau <jcristau@debian.org>
1422Date:   Fri Jul 18 16:35:57 2008 +0200
1423
1424    If we don't have libuuid, build without it instead of failing
1425    
1426    Only error out if configure was given --with-libuuid but we
1427    don't find it.
1428
1429commit e3166eecfe7a04f0f622bd93e8a6a1faa672a029
1430Author: Adam Jackson <ajax@redhat.com>
1431Date:   Wed Jul 2 14:24:24 2008 -0400
1432
1433    Avoid memcpy(foo, NULL, n), that's just nonsense.
1434
1435commit 27ebe517cabaf038fa65edff0140317f9438adec
1436Author: Adam Jackson <ajax@redhat.com>
1437Date:   Wed Jul 2 14:00:54 2008 -0400
1438
1439    libSM 1.1.0
1440
1441commit 2e8a41efb10ae462e5e43e13e479ca4da0fb0103
1442Author: Alan Coopersmith <alan.coopersmith@sun.com>
1443Date:   Wed Jun 25 09:55:14 2008 -0700
1444
1445    Fix --without-libuuid to not call PKG_CHECK_MODULES for libuuid
1446
1447commit 6702e2a15992f4cb85dfa7ac8214125eb0a2bb2d
1448Author: Dan Williams <dcbw@redhat.com>
1449Date:   Tue Jun 24 13:11:42 2008 -0400
1450
1451    Bug #14949: Don't use gethostbyname() for client IDs.
1452    
1453    gethostbyname() will hit the network, which leads to DNS timeouts, which
1454    leads to fail.  Just use UUIDs.
1455
1456commit 2a827d26cfb10dc6b1203b77c0cc91dc838d97a3
1457Author: James Cloos <cloos@jhcloos.com>
1458Date:   Thu Dec 6 16:38:16 2007 -0500
1459
1460    Replace static ChangeLog with dist-hook to generate from git log
1461
1462commit 9b7029aba10356badeef134af2de7e26e6ae2ab9
1463Author: James Cloos <cloos@jhcloos.com>
1464Date:   Mon Sep 3 05:53:30 2007 -0400
1465
1466    Add *~ to .gitignore to skip patch/emacs droppings
1467
1468commit 837384e09dae2beda6ac3b8e1d10698dc0d23db4
1469Author: Tilman Sauerbeck <tilman@code-monkey.de>
1470Date:   Sun May 13 14:21:39 2007 +0200
1471
1472    Bumped version to 1.0.3.
1473
1474commit 6c50f3639d74edd757dc72dbe6a29cb8aa3b87a3
1475Author: Tilman Sauerbeck <tilman@code-monkey.de>
1476Date:   Sun May 13 11:47:47 2007 +0200
1477
1478    Another tiny char* vs const char* fix.
1479
1480commit 9bfa1101ac5dbb8d2de1d0431d7e7b281428168f
1481Author: Tilman Sauerbeck <tilman@code-monkey.de>
1482Date:   Sun May 13 11:46:16 2007 +0200
1483
1484    Revert "Don't reinvent the wheel and just use strdup()."
1485    
1486    This reverts commit 57ea148fdbf047a012b361acdc7954e70679dad3.
1487
1488commit 24ac7974ef77d7832a8b3ddd300083c41a03cb79
1489Author: Tilman Sauerbeck <tilman@code-monkey.de>
1490Date:   Sun May 13 01:44:12 2007 +0200
1491
1492    Added object files to .gitignore.
1493
1494commit 48d23e452780f327439a859fa941b1598eb249c8
1495Author: Tilman Sauerbeck <tilman@code-monkey.de>
1496Date:   Sun May 13 01:43:49 2007 +0200
1497
1498    Removed some global writable variables.
1499
1500commit 57ea148fdbf047a012b361acdc7954e70679dad3
1501Author: Tilman Sauerbeck <tilman@code-monkey.de>
1502Date:   Sun May 13 00:49:58 2007 +0200
1503
1504    Don't reinvent the wheel and just use strdup().
1505
1506commit 8ba3325ed15154a933c064831abf8f412a5154a7
1507Author: Tilman Sauerbeck <tilman@code-monkey.de>
1508Date:   Sun May 13 00:44:50 2007 +0200
1509
1510    Fixed some const vs non-const mix ups.
1511
1512commit 2ded69bb857ae453d90534203e5857ac3a31a1c3
1513Author: Tilman Sauerbeck <tilman@code-monkey.de>
1514Date:   Sun May 13 00:16:36 2007 +0200
1515
1516    Sanitized hex string conversion in SmsGenerateClientID().
1517    
1518    This reduces the size of the DSO by almost 4K and gets rid of 255
1519    relocations on load.
1520
1521commit 34b3d538061cd648d90eb2bc7284000d980c8d3e
1522Author: Adam Jackson <ajax@benzedrine.nwnk.net>
1523Date:   Fri Oct 13 15:55:08 2006 -0400
1524
1525    Bump to 1.0.2
1526
1527commit 2116811afe339a9b806f04debf2b6241fd00456f
1528Author: Alan Coopersmith <alan.coopersmith@sun.com>
1529Date:   Thu Jul 13 14:58:45 2006 -0700
1530
1531    renamed: .cvsignore -> .gitignore
1532
1533commit ff57e5d728c2f409b8852ee58d622c2c3323e2a8
1534Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
1535Date:   Mon Jun 26 17:30:22 2006 +0000
1536
1537    From Patch #6046 <https://bugs.freedesktop.org/attachment.cgi?id=6046>
1538        freeaddrinfo() in error handling return (Peter Breitenlohner)
1539
1540commit d03116c682567dac793d52e65a1f0698ae6848f6
1541Author: Adam Jackson <ajax@nwnk.net>
1542Date:   Thu Apr 27 00:01:01 2006 +0000
1543
1544    Bump to 1.0.1
1545
1546commit c46e8ae80540713ec24fd6d1eea68744937ef158
1547Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
1548Date:   Fri Mar 17 03:05:32 2006 +0000
1549
1550    Specs say SmsInitialize & SmcOpenConnection return NULL terminated strings
1551        in errorStringRet, but were just calling strncpy and not making sure
1552        strings were NULL terminated if errorLength wasn't long enough.
1553        (Noticed while evaluating Coverity ids 196 & 201.)
1554
1555commit 6842e89f85b1fa30344e2bf3d28e51dbfd978370
1556Author: Kevin E Martin <kem@kem.org>
1557Date:   Thu Dec 15 00:24:27 2005 +0000
1558
1559    Update package version number for final X11R7 release candidate.
1560
1561commit 2f62b1a35756301469de62b8830733ebeec2e908
1562Author: Kevin E Martin <kem@kem.org>
1563Date:   Sat Dec 3 05:49:42 2005 +0000
1564
1565    Update package version number for X11R7 RC3 release.
1566
1567commit 69c50fbc49f7589aa6afcf1be00be22a78ec3daa
1568Author: Kevin E Martin <kem@kem.org>
1569Date:   Sat Nov 19 07:15:39 2005 +0000
1570
1571    Update pkgconfig files to separate library build-time dependencies from
1572        application build-time dependencies, and update package deps to work
1573        with separate build roots.
1574
1575commit dea915c93437443b6bd4933263df44e734e40320
1576Author: Kevin E Martin <kem@kem.org>
1577Date:   Wed Nov 9 21:19:12 2005 +0000
1578
1579    Update package version number for X11R7 RC2 release.
1580
1581commit 922e2dc3116a88cc1e49d5e2486fe1ca21f888c7
1582Author: Kean Johnson <kean@armory.com>
1583Date:   Tue Nov 8 06:33:25 2005 +0000
1584
1585    See ChangeLog entry 2005-11-07 for details.
1586
1587commit df1260d8710f497e766ac52162585345f2d7669f
1588Author: Kevin E Martin <kem@kem.org>
1589Date:   Wed Oct 19 02:48:08 2005 +0000
1590
1591    Update package version number for RC1 release.
1592
1593commit 601c38a8b0bbe92db6374e00e485435316dce1cb
1594Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
1595Date:   Mon Aug 15 18:31:16 2005 +0000
1596
1597    Add XTRANS_CONNECTION_FLAGS to set TCP & IPv6 flags needed by libSM
1598
1599commit 0a00119745bef1bd67b53124a6a41b76454c5503
1600Author: Kevin E Martin <kem@kem.org>
1601Date:   Fri Jul 29 21:22:50 2005 +0000
1602
1603    Various changes preparing packages for RC0:
1604    - Verify and update package version numbers as needed
1605    - Implement versioning scheme
1606    - Change bug address to point to bugzilla bug entry form
1607    - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to
1608        reenable it)
1609    - Fix makedepend to use pkgconfig and pass distcheck
1610    - Update build script to build macros first
1611    - Update modular Xorg version
1612
1613commit c6f143cc14840ca029e651d84f6c9a68c003cf07
1614Author: Daniel Stone <daniel@fooishbar.org>
1615Date:   Sat Jul 16 06:24:02 2005 +0000
1616
1617    Set soversion to 6.0.0 using -version-number.
1618
1619commit 9c370ec68d2606468296efc1f0a093c036e8d7ff
1620Author: Keith Packard <keithp@keithp.com>
1621Date:   Wed Jul 13 07:28:02 2005 +0000
1622
1623    Eliminate xtrans CFLAGS from .pc file as xtrans is not part of the public
1624        API.
1625
1626commit 7b45eec97e390d8c8124b0a95b83ff7614903979
1627Author: Keith Packard <keithp@keithp.com>
1628Date:   Sat Jul 9 05:59:54 2005 +0000
1629
1630    Add .cvsignore files
1631
1632commit 0a4f43e5170110519bd34d01f1f20a72ea615485
1633Author: Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de>
1634Date:   Thu Jun 9 15:52:02 2005 +0000
1635
1636    Replace <X11/Xtrans.h> with <X11/Xtrans/Xtrans.h>
1637    Copy Xtrans.h to exports/include/X11/Xtrans only
1638
1639commit 8abfaa0bb923231da3dd2c0e245f8feec41a621f
1640Author: Adam Jackson <ajax@nwnk.net>
1641Date:   Thu May 19 00:22:32 2005 +0000
1642
1643    revert last change, didn't do right thing at all, sorry for the noise
1644
1645commit a2e7e1bb26e8a87b822acbeeff114beec4705fb0
1646Author: Adam Jackson <ajax@nwnk.net>
1647Date:   Thu May 19 00:10:07 2005 +0000
1648
1649    Require automake 1.7 in AM_INIT_AUTOMAKE
1650
1651commit 0b4b811191a1e74356b7ff78a09107e29a7ef695
1652Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
1653Date:   Tue May 17 21:25:16 2005 +0000
1654
1655    - Conditionally include config.h in xc/lib/SM
1656    - Add libSM to symlink.sh
1657    - Add SM build system
1658
1659commit 5004ef0b757c1cd7e4ceaa1759914f938d5ea295
1660Author: Adam Jackson <ajax@nwnk.net>
1661Date:   Sun Apr 3 18:24:25 2005 +0000
1662
1663    Bug #1447: Fix a use-after-free case in libSM. (Mark McLoughlin)
1664
1665commit c9f8774f04b398ac963b23ce1d5a12e703977064
1666Author: Daniel Stone <daniel@fooishbar.org>
1667Date:   Fri Jan 28 19:15:39 2005 +0000
1668
1669    Move _IceGetPeerName into the ICE public API as IceGetPeerName; bump ICE
1670        soversion to 6.4 accordingly. Change SM's use to the public version.
1671        The old version will be retained for compatibility.
1672
1673commit 52435fb9fdaecfdc9b11d54e74388520dacc4b0b
1674Author: Egbert Eich <eich@suse.de>
1675Date:   Mon Oct 18 14:21:44 2004 +0000
1676
1677    Made handling of DevelDrivers for x86-64 more conformant to other
1678        platforms.
1679    Compress all font encodings (Stefan Dirsch).
1680    Fixed warnings.
1681    Turn on forwarding XNSpotLocation event to XIM server in OffTheSpot and
1682        Root mode (bugzilla #1580, James Su).
1683    Added another compose key combination for the Euro symbol (Stefan Dirsch).
1684    Added support for UTF-8 in ja_JP, ko_KR and zh_TW locales (Mike Fabian).
1685    Changed default encoding for ru from KOI8-R to ISO8859-5 (Mike Fabian).
1686        This is the encoding that is also used by glibc. We may break other
1687        libcs - lets see who complains.
1688    Added explanation for DESTDIR to install to a different directory than /.
1689    Added some early bailouts to atiprobe if PCI structure pointer is NULL to
1690        prevent sig11.
1691    XV support doesn't depend on 2D acceleration any more. This patch removes
1692        this limitation from the NSC driver. This is a patch that I have
1693        committed to XFree86 a while ago but never ported over to X.Org.
1694        Matthieu Herrb contributed some build fixes.
1695    Fixing SetDPMSTimers() so that DPMS*Time == 0 disables the appropriate
1696        timer. This takes advantage of the fact that TimerSet() with a timeout
1697        argument 0 behaves like TimerCanel().
1698    Use /dev/xconsole (named pipe) or devpts for system logger (Werner Fink).
1699    Create missing links for backward compatibility to XFree86 (Stefan Dirsch).
1700    Changed comment to mention xorg.
1701    Changed cursor for the 'kill' action from XC_draped_box to XC_Pirate. If
1702        you don't like it we can change it back (original author unkown).
1703    Added 'pic' to the man page rendering command pipeline (Werner Fink).
1704    Added missing return value (Stefan Dirsch, Roland Mainz)
1705
1706commit 76d276193a610e4decf2f39b88e9ccf886d4c492
1707Author: Kevin E Martin <kem@kem.org>
1708Date:   Wed Aug 18 18:41:40 2004 +0000
1709
1710    Fix AIX build problems (Bugs #1020, 1102, 1103, Dan McNichol).
1711    Remove old config files (Bug #1123, Jim Gettys).
1712    Remove old log message (Bug #1123, Jim Gettys).
1713
1714commit 61bafb140eda240e69e3df28f47567af71ad1296
1715Author: Egbert Eich <eich@suse.de>
1716Date:   Mon May 24 19:06:58 2004 +0000
1717
1718    Fix build glitches when building modules independently using Imake.
1719
1720commit f161cb4a8a567d3ec93677689b6c5440b3027ab6
1721Author: Egbert Eich <eich@suse.de>
1722Date:   Fri Apr 23 18:43:23 2004 +0000
1723
1724    Merging XORG-CURRENT into trunk
1725
1726commit 19fe7606b46b0bbce96837c0ade7018e601fd73e
1727Author: Egbert Eich <eich@suse.de>
1728Date:   Sun Mar 14 08:31:52 2004 +0000
1729
1730    Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004
1731
1732commit 0a04145c6f313d9a9d670716e2529d2dd0341598
1733Author: Egbert Eich <eich@suse.de>
1734Date:   Wed Mar 3 12:11:10 2004 +0000
1735
1736    Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004
1737
1738commit 26ea9c0731055cc478337431353afb8a0a3122ae
1739Author: Egbert Eich <eich@suse.de>
1740Date:   Thu Feb 26 13:35:18 2004 +0000
1741
1742    readding XFree86's cvs IDs
1743
1744commit aa72cf15a99e09fc3e41184e01cbcceced4ef592
1745Author: Egbert Eich <eich@suse.de>
1746Date:   Thu Feb 26 09:22:34 2004 +0000
1747
1748    Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
1749
1750commit ea5d51824610a0b5205871a158b055d58879fc0c
1751Author: Egbert Eich <eich@suse.de>
1752Date:   Thu Jan 29 08:08:04 2004 +0000
1753
1754    Importing vendor version xf86-012804-2330 on Thu Jan 29 00:06:33 PST 2004
1755
1756commit a968ef24dfc9ddd1322f91acb4a6a1898fc15490
1757Author: Kaleb Keithley <kaleb@freedesktop.org>
1758Date:   Tue Nov 25 19:28:07 2003 +0000
1759
1760    XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks
1761
1762commit 8e18f1cdc21fe0e125620a912e946ec1031fa2c5
1763Author: Kaleb Keithley <kaleb@freedesktop.org>
1764Date:   Fri Nov 14 16:48:46 2003 +0000
1765
1766    XFree86 4.3.0.1
1767
1768commit abe0fd5d586b52a851a423a79b95070da418eb10
1769Author: Kaleb Keithley <kaleb@freedesktop.org>
1770Date:   Fri Nov 14 15:54:36 2003 +0000
1771
1772    R6.6 is the Xorg base-line
1773