resetting manifest requested domain to floor
[platform/upstream/libICE.git] / ChangeLog
1 commit f166e8bbf16ec214fefdcf02ce81f80442899cb7
2 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3 Date:   Fri Mar 2 19:59:50 2012 -0800
4
5     libICE 1.0.8
6     
7     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8
9 commit c87ecd959d61ae97d8a2bd82efc761bb3e299061
10 Author: Matt Dew <marcoz@osource.org>
11 Date:   Mon Jan 9 21:25:18 2012 -0700
12
13     informaltable cleanup
14     
15     On certain tables, add top and bottom borders to table header
16     and a bottom border to the table. This matches what those
17     tables in the old pdfs looked like.
18     
19     the <?dbfo keep-together='always'> prevents tables from
20     splitting across pages. Useful for tiny tables.
21     
22     Converting the colwidth to a floating point, IE, 1* -> 1.0*
23     cleans up these build errors:
24     WARNING: table-layout="fixed" and column-width unspecified =>
25     falling back to proportional-column-width(1)
26     
27     Signed-off-by: Matt Dew <marcoz@osource.org>
28
29 commit 8b4321a37a9fa2ad24bf87afabba6b08dcfded12
30 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
31 Date:   Thu Nov 24 12:42:36 2011 -0800
32
33     Plug minor memory leak in unusual path through ProcessConnectionSetup
34     
35     Error: Memory leak (CWE 401)
36        Memory leak of pointer 'release' allocated with malloc((_len + 1))
37             at line 1100 of src/process.c in function 'ProcessConnectionSetup'.
38               'release' allocated at line 920 with malloc((_len + 1)).
39               release leaks when _i >= hisAuthCount at line 925
40                   and i >= _IceAuthCount at line 973
41                   and found != 0 at line 998
42                   and status != 0 at line 1053
43                   and status != 1 at line 1070
44                   and accept_setup_now == 0 at line 1082
45                   and i >= hisAuthCount at line 1093.
46        Memory leak of pointer 'vendor' allocated with malloc((_len + 1))
47             at line 1100 of src/process.c in function 'ProcessConnectionSetup'.
48               'vendor' allocated at line 919 with malloc((_len + 1)).
49               vendor leaks when _i >= hisAuthCount at line 925
50                   and i >= _IceAuthCount at line 973
51                   and found != 0 at line 998
52                   and status != 0 at line 1053
53                   and status != 1 at line 1070
54                   and accept_setup_now == 0 at line 1082
55                   and i >= hisAuthCount at line 1093.
56     
57     [ This bug was found by the Parfait 0.3.7 bug checking tool.
58       For more information see http://labs.oracle.com/projects/parfait/ ]
59     
60     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
61     Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
62
63 commit caf9e3393d5d517ea129392d001a2c46a7c1f325
64 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
65 Date:   Sat Nov 19 00:26:29 2011 -0800
66
67     Constify protocol, vendor & release string args to IceRegisterForProtocol*
68     
69     Needed to resolve gcc -Wwrite-strings warnings in callers.
70     These functions only pass the strings to strcmp before calling
71     strdup to make their own private copy for storing away.
72     
73     While fixing the API docs to match, also fix them to match the existing
74     function prototypes, where there were several errors before (including
75     just plain missing most of the args to IceRegisterForProtocolReply).
76     
77     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
78     Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
79
80 commit 59c1555dff34804c78c7e7443ad13f27300927eb
81 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
82 Date:   Wed Nov 9 22:07:34 2011 -0800
83
84     Remove ancient workaround for System V/386 Release 4.2 compiler bug
85     
86     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
87     Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
88     Reviewed-by: walter <wharms@bfs.de>
89     Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
90
91 commit bec4e9c9089fa4cc5a50fc513a3544cf6fd59bf1
92 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
93 Date:   Wed Nov 9 22:06:36 2011 -0800
94
95     Fix gcc -Wwrite-strings warnings in process.c
96     
97     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
98     Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
99
100 commit ffa659dd6dd1fb8847bfdcc5e1e2be353b6395b6
101 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
102 Date:   Wed Nov 9 21:37:48 2011 -0800
103
104     Fix gcc -Wwrite-strings warnings in AuthNames handling
105     
106     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
107     Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
108
109 commit 902a52ea9d7b6e6f56f7023009859072854a0fc7
110 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
111 Date:   Wed Nov 9 21:55:17 2011 -0800
112
113     constify arguments to IceGetAuthFileEntry
114     
115     Needed to clear gcc -Wwrite-strings warnings in callers
116     
117     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
118     Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
119
120 commit 9ff1f97e46903f8f83363f07cf021989bfa6a9f0
121 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
122 Date:   Wed Nov 9 21:43:59 2011 -0800
123
124     Fix gcc -Wwrite-strings warnings in _IceError* functions
125     
126     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
127     Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
128
129 commit e8a16534a9406d5096d9c0ea515d979c7c15e084
130 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
131 Date:   Wed Nov 9 21:23:33 2011 -0800
132
133     Fix gcc -Wwrite-strings warnings in _IceDefaultErrorHandler
134     
135     Had to split char *str into two variables, const char *str for the
136     string literals just being passed to fprintf etal.  and char *estr
137     for use by EXTRACT_STRING for the results of malloc calls that get
138     written to and then freed.
139     
140     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
141     Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
142
143 commit 4fbcba4ee19a49c05440861e1278bc97d29048e0
144 Author: Matt Dew <marcoz@osource.org>
145 Date:   Tue Oct 4 23:32:02 2011 -0600
146
147     Cleanup IDs and links in doc
148     
149     1 - fix the capitalization of the ID attributes to match either the
150          <title> or <funcdef> string it goes with.
151     2 - fix any <linkend>'s that were affected by 1.
152     3 - any <function> in the docs that has an actual funcdef,
153     will become an olink.
154     
155     Signed-off-by: Matt Dew <marcoz@osource.org>
156
157 commit d4e161e35335df82f412d2d2bb1ef95ff3e88401
158 Author: Gaetan Nadon <memsize@videotron.ca>
159 Date:   Mon Sep 19 15:34:47 2011 -0400
160
161     As of 1997, X Window System is a trademark of The Open Group.
162     
163     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
164
165 commit fc0fc948d25dfa0f6f445a3b55610ea5b864dd60
166 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
167 Date:   Fri Sep 16 22:09:18 2011 -0700
168
169     Strip trailing whitespace
170     
171     Performed with: find * -type f | xargs perl -i -p -e 's{[ \t]+$}{}'
172     git diff -w & git diff -b show no diffs from this change
173     
174     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
175
176 commit 22601de3f38d035eb874d4bd9f649ddd2b3f0ae2
177 Author: Gaetan Nadon <memsize@videotron.ca>
178 Date:   Sun Sep 11 17:20:20 2011 -0400
179
180     specs: remove <productnumber> which is not used by default
181     
182     This element is not rendered by default on the title. A template
183     customization is required to display it.
184     X Window System does not have a product number.
185     
186     Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
187     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
188
189 commit 7f330738f1f5862950b3baa35ff08446093bfd4e
190 Author: Gaetan Nadon <memsize@videotron.ca>
191 Date:   Sun Sep 11 17:06:00 2011 -0400
192
193     specs: use DocBook suggested markup for Copyrights
194     
195     Puts the statement on a single line, using commas to separate years
196        --> Copyright © 1993, 1994, 1996 X Consortium
197     
198     As opposed to 3 double-spaced lines.
199     
200     Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
201     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
202
203 commit d68d2d2031f623a969784e702c97a07b8cd99010
204 Author: Gaetan Nadon <memsize@videotron.ca>
205 Date:   Sun Sep 11 16:56:21 2011 -0400
206
207     specs: remove orphan <corpname>
208     
209     It does not display on the title page and is redundant.
210     No visible change on the doc.
211     
212     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
213
214 commit 87c934b9b7973a814763670e2dfad0579a8dcc78
215 Author: Gaetan Nadon <memsize@videotron.ca>
216 Date:   Sun Sep 11 16:27:09 2011 -0400
217
218     specs: use the &fullrelvers; entity to set X11 release information
219     
220     Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
221     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
222
223 commit 41f04fd8673db5c2d8e587ab2c169a694bd7528f
224 Author: Gaetan Nadon <memsize@videotron.ca>
225 Date:   Sun Sep 11 14:13:35 2011 -0400
226
227     ice.xml: version number is 1.1, not 1.0
228     
229     This is what it was before the conversion from roff to docbook.
230     
231     Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
232     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
233
234 commit 9e2a596b4ff06fc9c70dfcd94506e536e351ee0b
235 Author: Gaetan Nadon <memsize@videotron.ca>
236 Date:   Sun Sep 11 14:11:28 2011 -0400
237
238     ice.xml: fix orphan affiliation
239     
240     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
241
242 commit 1309d477a061d165345b602e122990eaab71a0d4
243 Author: Gaetan Nadon <memsize@videotron.ca>
244 Date:   Fri Sep 9 21:21:57 2011 -0400
245
246     ICElib doc: remove empty revision list and specify the doc version number
247     
248     Revision histories are not used, only 3 docs out of 63 have one.
249     
250     Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
251     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
252
253 commit e9d57773df26ad9440a49f58941b511e594605a4
254 Author: Gaetan Nadon <memsize@videotron.ca>
255 Date:   Thu Sep 8 20:00:00 2011 -0400
256
257     docbook.am: embed css styles inside the HTML HEAD element
258     
259     Rather than referring to the external xorg.css stylesheet, embed the content
260     of the file in the html output produced. This is accomplished by using
261     version 1.10 of xorg-xhtml.xsl.
262     
263     This makes the whole html docs tree much more relocatable.
264     In addition, it eliminates xorg.css as a runtime file which makes
265     xorg-sgml-doctools a build time only package.
266     
267     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
268
269 commit b83cbed755315f6300133f2621cbe99bdc06345a
270 Author: Gaetan Nadon <memsize@videotron.ca>
271 Date:   Wed Sep 7 10:31:04 2011 -0400
272
273     docbook.am: global maintenance update - entities, images and olinking
274     
275     Adding support in libX11 for html chunking caused a reorg of docbook.am
276     as well as the xorg-sgml-doctools masterdb for olinking.
277     The parameter img.src.path is added for pdf images.
278     A searchpath to the root builddir is added for local entities, if present.
279     
280     The docbook.am makefile hides all the details and is identical for
281     all 22 modules having DocBook documentation. It is included by a thin
282     Makefile.am which requires no docbook knowledge.
283     
284     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
285
286 commit f35b8b8be16f1903beed34fe23fa53d102329342
287 Author: Gaetan Nadon <memsize@videotron.ca>
288 Date:   Sun Jun 12 17:54:50 2011 -0400
289
290     Install xml versions of specs even if HAVE_XMLTO is false
291     
292     DocBook/XML input source is also a usefull output format that can be viewed
293     with an XML viewer or editor and by some O/S help system.
294     
295     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
296
297 commit 4c9cbdb1b40799121456c692d960135d741f13c7
298 Author: Gaetan Nadon <memsize@videotron.ca>
299 Date:   Sun Jun 5 16:27:36 2011 -0400
300
301     Install target dbs alongside generated documents
302     
303     This matches a change in xorg-sgml-docs whereby the masterdb will look for
304     the target dbs into the same location as the generated documents.
305     
306     The target dbs are now installed alongside the generated documents.
307     Previously they are installed in $prefix/sgml/X11/dbs alongside masterdb which
308     has the potential of installing outside the package prefix and cause
309     distcheck to fail when user does not have write permission in this package.
310     
311     Requires XORG_CHECK_SGML_DOCTOOLS(1.8) which was released 2011-06-11
312
313 commit 72d668dd2ec4db9b75973ba24f42ab49851dbc6d
314 Author: Matt Dew <marcoz@osource.org>
315 Date:   Wed May 25 22:54:51 2011 -0600
316
317     add id attributes to funcsynopsis to allow other docs to olink to them
318     
319     Signed-off-by: Matt Dew <marcoz@osource.org>
320     Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
321     Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
322
323 commit dd7f2beaa753541aefba499813f25de38cbd17b7
324 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
325 Date:   Tue Apr 19 18:36:58 2011 -0700
326
327     IceWritePad: Zero fill pad bytes used when buffer is full
328     
329     Should be rarely hit, since it's only in the case where most of the
330     message fits in the buffer, but there's not room left for the padding
331     bytes, but better than sending uninitialized bytes off the stack when
332     it happens.
333     
334     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
335     Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
336
337 commit 663782989be82e7893c99eaa7cbe98ec25a23c38
338 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
339 Date:   Tue Apr 19 18:19:19 2011 -0700
340
341     Fix reads outside array bounds in error handlers
342     
343     Error: Buffer overrun
344        Read outside array bounds (CWE 125): In call to memcpy(<unknown>, &mOp, 8), (size(&mOp) < (unsigned) 8)
345           Array size is 1 bytes
346             at line 296 of src/error.c in function '_IceErrorMajorOpcodeDuplicate'.
347     Error: Buffer overrun
348        Read outside array bounds (CWE 125): In call to memcpy(<unknown>, &maj, 8), (size(&maj) < (unsigned) 8)
349           Array size is 1 bytes
350             at line 346 of src/error.c in function '_IceErrorBadMajor'.
351     
352     [ This bug was found by the Parfait 0.3.7 bug checking tool.
353       For more information see http://labs.oracle.com/projects/parfait/ ]
354     
355     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
356     Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
357
358 commit daf686b7639919289b07a575a0d88efcb91d9732
359 Author: Gaetan Nadon <memsize@videotron.ca>
360 Date:   Wed Mar 30 20:15:07 2011 -0400
361
362     doc: xorg-sgml-doctools package at version 1.7 is required
363     
364     This version contains support for external references
365     
366     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
367
368 commit fadb927532556adb471300c89de29d268aae9102
369 Author: Gaetan Nadon <memsize@videotron.ca>
370 Date:   Sun Feb 27 15:06:18 2011 -0500
371
372     Documentation: add Docbook external references support
373     
374     When writing technical documentation, it is often necessary to cross
375     reference to other information. When that other information is not in the
376     current document, additional support is needed, namely <olink>.
377     
378     A new feature with version 1.7 of xorg-sgml-doctools adds references to
379     other documents within or outside this package.
380     
381     This patch adds technical support for this feature but does not change
382     the content of the documentation as seen by the end user.
383     
384     Each book or article must generate a database containing the href
385     of sections that can be referred to from another document. This database
386     is installed in DATAROOTDIR/sgml/X11/dbs. There is a requirement that
387     the value of DATAROOTDIR for xorg-sgml-doctools and for the package
388     documentation is the same. This forms a virtual document tree.
389     
390     This database is consulted by other documents while they are being generated
391     in order to fulfill the missing information for linking.
392     Refer to the xorg-sgml-doctools for further technical information.
393     
394     Co-authored-by: Matt Dew <marcoz@osource.org>
395     
396     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
397
398 commit 483d32621c06bcba0c7aa7794633b46b151fd5bf
399 Author: Gaetan Nadon <memsize@videotron.ca>
400 Date:   Fri Feb 25 08:58:54 2011 -0500
401
402     Docbook: change the book id to match the xml file basename
403     
404     This is required for the up-coming external references support.
405     
406     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
407
408 commit 4852c5bb1603fb6d401fe6895d9318555a8d4523
409 Author: Gaetan Nadon <memsize@videotron.ca>
410 Date:   Wed Feb 2 19:13:54 2011 -0500
411
412     config: splitting ICE and XTRANS compiler options is not required
413     
414     Simplify configuration by using a single PKG_CHECK_MODULES statement.
415     
416     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
417
418 commit 87d34a2f04c9d920da01802cd9707c8107746fa5
419 Author: Gaetan Nadon <memsize@videotron.ca>
420 Date:   Wed Feb 2 11:43:40 2011 -0500
421
422     config: comment, minor upgrade, quote and layout configure.ac
423     
424     Group statements per section as per Autoconf standard layout
425     Quote statements where appropriate.
426     Autoconf recommends not using dnl instead of # for comments
427     
428     Use AC_CONFIG_FILES to replace the deprecated AC_OUTPUT with parameters.
429     
430     This helps automated maintenance and release activities.
431     Details can be found in http://wiki.x.org/wiki/NewModuleGuidelines
432     
433     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
434
435 commit 548eded10385ccc336e66dac8bbabe05f3225ec2
436 Author: Gaetan Nadon <memsize@videotron.ca>
437 Date:   Fri Jan 28 14:42:12 2011 -0500
438
439     config: remove unrequired AC_HEADER_STDC
440     
441     Autoconf says:
442     "This macro is obsolescent, as current systems have conforming
443     header files. New programs need not use this macro".
444
445 commit 78b8e6b772685a2ed567ac2d30f96116f050dad5
446 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
447 Date:   Fri Jan 7 19:29:03 2011 -0800
448
449     Resync fallback asprintf with updated version put into xrdb
450     
451     Fixes issues found during xrdb review on xorg-devel
452     Also make sure <stdarg.h> is #included for varargs macros
453     
454     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
455
456 commit dc63c253e33b1012c08cd274e6e37bf0fa87c624
457 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
458 Date:   Tue Dec 21 18:28:36 2010 -0800
459
460     Add AC_USE_SYSTEM_EXTENSIONS to make asprintf() visible in GNU libc
461     
462     asprintf is considered a GNU extension and thus one needs to define
463     _GNU_SOURCE before including stdio.h.
464     
465     Reported-by: Cyril Brulebois <kibi@debian.org>
466     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
467     Reviewed-by: Mark Kettenis <kettenis@openbsd.org>
468     Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
469
470 commit 4b4ec3aeaa7cf5f5a6490ad2ddc2b07d090214cb
471 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
472 Date:   Sun Dec 19 09:57:05 2010 -0800
473
474     Use correct string pointer in asprintf() fallback
475     
476     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
477
478 commit 308c8d3d5fbf96c1d4f313def50d4b001ac0d685
479 Author: Paulo Zanoni <przanoni@gmail.com>
480 Date:   Fri Dec 17 14:59:22 2010 -0200
481
482     Remove useless line from a table in specs/ice.xml
483     
484     This seems to be a leftover from a manpage/groff conversion.
485     
486     Signed-off-by: Paulo Zanoni <pzanoni@mandriva.com>
487     Reviewed-by: Matt Dew
488     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
489
490 commit a72467b21662a63c81418731b540a8843d138750
491 Author: Paulo Zanoni <pzanoni@mandriva.com>
492 Date:   Thu Dec 16 13:59:52 2010 -0200
493
494     Use docbookx.dtd version 4.3 for all docs
495     
496     Signed-off-by: Paulo Zanoni <pzanoni@mandriva.com>
497     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
498
499 commit e0280caf7cc9d0e1c2df3ab7c5a4fbe4e42696a9
500 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
501 Date:   Sun Dec 5 01:15:42 2010 -0800
502
503     Convert src/process.c from malloc + sprintf to asprintf
504     
505     Includes simple local implemenation of asprintf if configure doesn't
506     find one in system libraries
507     
508     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
509     Reviewed-by: Julien Cristau <jcristau@debian.org>
510
511 commit a5669dcb488db19b1ba4f1ef4d4565b6c3d1ea09
512 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
513 Date:   Sat Nov 20 19:47:53 2010 -0800
514
515     config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
516     
517     Regroup AC statements under the Autoconf initialization section.
518     Regroup AM statements under the Automake initialization section.
519     
520     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
521
522 commit d902a9f27369fc8388774e73f4bee6ab0ad86ef5
523 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
524 Date:   Sat Nov 20 19:45:42 2010 -0800
525
526     config: Remove unnecessary calls from configure.ac
527     
528     AC_PROG_CC is provided by XORG_DEFAULT_OPTIONS now
529     PKG_CONFIG_MODULES handles AC_SUBST of the CFLAGS & LIBS variables
530     
531     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
532
533 commit fd56c4e00a564d6385ccb2f8fadf10de201ae411
534 Author: Gaetan Nadon <memsize@videotron.ca>
535 Date:   Tue Nov 9 11:28:48 2010 -0500
536
537     config: HTML file generation: use the installed copy of xorg.css
538     
539     Currenlty the xorg.css file is copied in each location
540     where a DocBook/XML file resides. This produces about
541     70 copies in the $(docdir) install tree.
542     
543     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
544
545 commit 9856f5679b2b2d458cf830c1e8fdd206c724dfc5
546 Author: Adam Jackson <ajax@redhat.com>
547 Date:   Tue Oct 19 11:19:08 2010 -0400
548
549     libICE 1.0.7
550     
551     Signed-off-by: Adam Jackson <ajax@redhat.com>
552
553 commit 59a8d5609398824c81b72deb82735a55332ca239
554 Author: Jeremy Huddleston <jeremyhu@apple.com>
555 Date:   Sun Oct 17 21:26:31 2010 -0700
556
557     Fix include ordering, so -I../include precedes $CPPFLAGS which could
558     cause us to include installed rather than packaged headers.
559     
560     Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
561
562 commit 4a6f7a357222b2c1fa289d6e7b5fcc8c361e20e9
563 Author: Jesse Adkins <jesserayadkins@gmail.com>
564 Date:   Tue Sep 28 13:30:01 2010 -0700
565
566     Purge cvs tags.
567     
568     Signed-off-by: Jesse Adkins <jesserayadkins@gmail.com>
569     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
570
571 commit 5bb806a65bf23a507b135abe1e4a8b3cabc7b8aa
572 Author: Matt Dew <matt@osource.org>
573 Date:   Wed Jun 30 16:52:22 2010 -0400
574
575     specs: convert ICE doc/specs from xorg-docs module to DocBook XML
576     
577     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
578
579 commit 9b54f509832c50c1fac0edc0cb78e1a3454a56dc
580 Author: Alan Coopersmith <alan.coopersmith@oracle.com>
581 Date:   Tue Jun 8 20:12:53 2010 -0700
582
583     Move ICE protocol & API specs from xorg-docs module
584     
585     For now, just checked in and included in dist tarballs, not processed
586     into a usable format - same as it was in xorg-docs
587     
588     Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
589
590 commit 1967c04c021a4cfd7b3cdd4efdc13610b4385a65
591 Author: Julien Cristau <jcristau@debian.org>
592 Date:   Tue May 11 16:36:20 2010 +0200
593
594     Set the close-on-exec flag for listening sockets
595     
596     This prevents xsm from leaking file descriptors to the processes it
597     starts.
598     
599     X.Org bug#22932 <http://bugs.freedesktop.org/show_bug.cgi?id=22932>
600     
601     Reported-by: Kalle Olavi Niemitalo <kon@iki.fi>
602     Signed-off-by: Julien Cristau <jcristau@debian.org>
603
604 commit b6478dbedcca4d4cf44bd588c050bcc70c2f4963
605 Author: Gaetan Nadon <memsize@videotron.ca>
606 Date:   Mon Apr 5 19:50:40 2010 -0400
607
608     config: update AC_PREREQ statement to 2.60
609     
610     Unrelated to the previous patches, the new value simply reflects
611     the reality that the minimum level for autoconf to configure
612     all x.org modules is 2.60 dated June 2006.
613     
614     ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz
615     
616     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
617
618 commit 8e175ff18649bd30e862b6a6a5f82a4ed4d5241a
619 Author: Gaetan Nadon <memsize@videotron.ca>
620 Date:   Mon Mar 29 14:53:48 2010 -0400
621
622     config: remove the pkgconfig pc.in file from EXTRA_DIST
623     
624     Automake always includes it in the tarball.
625     
626     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
627
628 commit 09d61dc024d9846525e4c97d33cdf03c9f06c151
629 Author: Gaetan Nadon <memsize@videotron.ca>
630 Date:   Tue Feb 16 10:37:21 2010 -0500
631
632     config: move CWARNFLAGS from configure.ac to Makefile.am
633     
634     Compiler warning flags should be explicitly set in the makefile
635     rather than being merged with other packages compiler flags.
636     
637     Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
638
639 commit 72b8a2d39a57eb0640929b9bb9f276c6032f8213
640 Author: Gaetan Nadon <memsize@videotron.ca>
641 Date:   Fri Nov 27 20:56:03 2009 -0500
642
643     Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
644     
645     Now that the INSTALL file is generated.
646     Allows running make maintainer-clean.
647
648 commit 68231f8574e197a12eff1ddde37166d101567269
649 Author: Gaetan Nadon <memsize@videotron.ca>
650 Date:   Wed Oct 28 14:09:10 2009 -0400
651
652     INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
653     
654     Add missing INSTALL file. Use standard GNU file on building tarball
655     README may have been updated
656     Remove AUTHORS file as it is empty and no content available yet.
657     Remove NEWS file as it is empty and no content available yet.
658
659 commit b5cfc1cdd367c93660259a86b3b6683c57e5d76a
660 Author: Gaetan Nadon <memsize@videotron.ca>
661 Date:   Tue Oct 27 15:07:25 2009 -0400
662
663     Deploy the new XORG_DEFAULT_OPTIONS #24242
664     
665     This macro aggregate a number of existing macros that sets commmon
666     X.Org components configuration options. It shields the configuration file from
667     future changes.
668
669 commit 5524fa4d543932e4565b2235515fef9a5d9a501d
670 Author: Gaetan Nadon <memsize@videotron.ca>
671 Date:   Mon Oct 26 22:08:41 2009 -0400
672
673     Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
674     
675     ChangeLog filename is known to Automake and requires no further
676     coding in the makefile.
677
678 commit 82ad2d2053af2ad37697793b9718721aa3ff80a0
679 Author: Gaetan Nadon <memsize@videotron.ca>
680 Date:   Thu Oct 22 12:34:18 2009 -0400
681
682     .gitignore: use common defaults with custom section # 24239
683     
684     Using common defaults will reduce errors and maintenance.
685     Only the very small or inexistent custom section need periodic maintenance
686     when the structure of the component changes. Do not edit defaults.
687
688 commit 4b2289ad5481de7fa51941cf6c2ca7a2a3202690
689 Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
690 Date:   Wed Oct 21 12:47:23 2009 -0700
691
692     This is not a GNU project, so declare it foreign.
693     
694     On Wed, 2009-10-21 at 13:36 +1000, Peter Hutterer wrote:
695     > On Tue, Oct 20, 2009 at 08:23:55PM -0700, Jeremy Huddleston wrote:
696     > > I noticed an INSTALL file in xlsclients and libXvMC today, and it
697     > > was quite annoying to work around since 'autoreconf -fvi' replaces
698     > > it and git wants to commit it.  Should these files even be in git?
699     > > Can I nuke them for the betterment of humanity and since they get
700     > > created by autoreconf anyways?
701     >
702     > See https://bugs.freedesktop.org/show_bug.cgi?id=24206
703     
704     As an interim measure, replace AM_INIT_AUTOMAKE([dist-bzip2]) with
705     AM_INIT_AUTOMAKE([foreign dist-bzip2]). This will prevent the generation
706     of the INSTALL file. It is also part of the 24206 solution.
707     
708     Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
709
710 commit 94992c686a6850f2303aa78057a64a6369b64692
711 Author: Peter Hutterer <peter.hutterer@who-t.net>
712 Date:   Fri Aug 28 14:17:50 2009 +1000
713
714     libICE 1.0.6
715     
716     Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
717
718 commit 7a8bb2a2c991919bcdef63359c74e239045a3f4c
719 Author: Alan Coopersmith <alan.coopersmith@sun.com>
720 Date:   Mon Feb 2 20:34:30 2009 -0800
721
722     Add README with pointers to mailing list, bugzilla & git repos
723     
724     Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
725
726 commit dbb950061f185e1ccf27bff9c71adc34ab4cfae0
727 Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
728 Date:   Wed Jan 28 16:55:37 2009 -0200
729
730     Janitor: Correct sparse warnings.
731     
732       Also reorders some code in configure.ac and Makefile.am to
733     match pattern used on other packages.
734
735 commit 2f41ddb3a917c4e71184452b68561a15593d33b8
736 Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
737 Date:   Tue Jan 6 17:25:25 2009 -0200
738
739     Update .gitignore.
740     
741       Don't warn about files left after a build and/or make distcheck
742     in 'git status -a'.
743
744 commit ab9dff549534c6d7b33f440bff7a841d60c1206c
745 Author: Peter Breitenlohner <peb@mppmu.mpg.de>
746 Date:   Mon Dec 8 18:45:44 2008 +0100
747
748     bump to 1.0.5
749
750 commit 71695c4bf7ae07228605683f6cdeca0457c8495a
751 Author: Peter Breitenlohner <peb@mppmu.mpg.de>
752 Date:   Mon Dec 8 18:44:26 2008 +0100
753
754     remove ChangeLog from EXTRA_DIST and CLEANFILES
755
756 commit 653f659fe65ae8c2a9fe5b1fdbfc78da43f2cf90
757 Author: Peter Breitenlohner <peb@mppmu.mpg.de>
758 Date:   Mon Dec 8 18:41:34 2008 +0100
759
760     use memcmp instead of binaryEqual
761     
762     suggested by Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
763     http://lists.freedesktop.org/archives/xorg/2008-December/041222.html
764
765 commit bf138553afe6eecd0e6c218dc6ae4f63065e4196
766 Author: Peter Breitenlohner <peb@mppmu.mpg.de>
767 Date:   Tue Dec 2 22:06:15 2008 +0100
768
769     Use NULL, not zero, for pointers
770     
771     From Magnus Kessler <Magnus.Kessler@gmx.net>
772     http://lists.freedesktop.org/archives/xorg/2008-October/039799.html
773     http://lists.freedesktop.org/archives/xorg/attachments/20081030/b2ea5b1c/attachment-0001.bin
774
775 commit b01e82ce1deedb36c9696d4d27a3b9a5d5a52d08
776 Author: Peter Breitenlohner <peb@mppmu.mpg.de>
777 Date:   Thu Oct 30 12:01:06 2008 +0100
778
779     ANSI C
780     
781     convert all old style function declarations
782     
783     see also: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
784     http://bugs.freedesktop.org/show_bug.cgi?id=14683
785     http://bugs.freedesktop.org/attachment.cgi?id=14582
786     
787     see also: Magnus Kessler <Magnus.Kessler@gmx.net>
788     http://lists.freedesktop.org/archives/xorg/2008-October/039799.html
789     http://lists.freedesktop.org/archives/xorg/attachments/20081030/b2ea5b1c/attachment-0001.bin
790
791 commit 2aba1bc0583aeb3ee6e26e3bfacd123abef744d9
792 Author: Peter Breitenlohner <peb@mppmu.mpg.de>
793 Date:   Mon Dec 1 23:06:22 2008 +0100
794
795     towards ANSI C
796     
797     make _IceProcessCoreMessage and default error handlers static
798
799 commit 69a1b4b6d34291738dfbc3aa19d0ce3f2842ec8f
800 Author: Peter Breitenlohner <peb@mppmu.mpg.de>
801 Date:   Mon Dec 1 22:22:12 2008 +0100
802
803     Activate CWARNFLAGS with lots of gcc warnings
804
805 commit 898ed95cad1133940a83dcf428865c5d3fb2c939
806 Author: Peter Breitenlohner <peb@mppmu.mpg.de>
807 Date:   Mon Dec 1 22:18:45 2008 +0100
808
809     use xorg-macros-1.2.1
810     
811     Use XORG_CHANGELOG for rule to generate ChangeLog from git log
812     Use XORG_CWARNFLAGS for compiler warning flags, leave CFLAGS to user
813
814 commit a99fbad09ab850e65ddd57e4d4488e4726295e14
815 Author: Peter Breitenlohner <peb@mppmu.mpg.de>
816 Date:   Tue Oct 7 13:21:48 2008 -0700
817
818     Constify some arguments in libICE to clear warnings in libSM
819     
820     This patch avoids the gcc (3.4.6) warnings:
821      ../../libSM-1.0.3/src/sm_client.c:104: warning: passing arg 7 of `IceRegisterForProtocolSetup' from incompatible pointer type
822      ../../libSM-1.0.3/src/sm_manager.c:168: warning: passing arg 7 of `IceRegisterForProtocolReply' from incompatible pointer type
823     when compiling libSM
824
825 commit 3bceaeb3192ca75a14854d614e1621d28fb82274
826 Author: Peter Breitenlohner <peb@mppmu.mpg.de>
827 Date:   Tue Oct 7 11:25:42 2008 -0700
828
829     define macros to 1 in icetrans.c to avoid redefined macro warnings
830     
831     X.Org Bug #17947 <http://bugs.freedesktop.org/show_bug.cgi?id=17947>
832     Patch #19444 <http://bugs.freedesktop.org/attachment.cgi?id=19444>
833     
834     Define as 1 (one) as done by autoconf and the command line
835     option, e.g. -DICE_t, not as empty.
836     
837     This avoids the gcc (3.4.6) warnings:
838      ../../libICE-1.0.4/src/icetrans.c:29:1: warning: "ICE_t" redefined
839      ../config.h:38:1: warning: this is the location of the previous definition
840      ../../libICE-1.0.4/src/icetrans.c:30:1: warning: "TRANS_CLIENT" redefined
841      <command line>:6:1: warning: this is the location of the previous definition
842      ../../libICE-1.0.4/src/icetrans.c:31:1: warning: "TRANS_SERVER" redefined
843      <command line>:7:1: warning: this is the location of the previous definition
844
845 commit b707104f4dba0963ab17c1d6a29c1e3a848ea408
846 Author: Alan Hourihane <alanh@tungstengraphics.com>
847 Date:   Tue Apr 29 00:41:40 2008 +0100
848
849     silence warning
850
851 commit e6b525aefc05b5203391699b00053ad52243cc6b
852 Author: Colin Harrison <colin.harrison-at-virgin.net>
853 Date:   Tue Apr 29 00:40:48 2008 +0100
854
855     include for sleep()
856
857 commit ef58f37724b841ef2246757be27111775aa86559
858 Author: Matthieu Herrb <matthieu.herrb@laas.fr>
859 Date:   Sun Mar 9 09:02:40 2008 +0100
860
861     nuke RCS Ids
862
863 commit 47d86e8343d3d0201166c4d75da2ec9c12638cc1
864 Author: James Cloos <cloos@jhcloos.com>
865 Date:   Thu Dec 6 15:51:13 2007 -0500
866
867     Add missing PHONY line for automatic ChangeLog generation
868
869 commit f415da71dd26f128df7d550ecd7631f8888eb1d2
870 Author: Alan Coopersmith <alan.coopersmith@sun.com>
871 Date:   Mon Aug 20 13:21:07 2007 -0700
872
873     Version bump: 1.0.4
874
875 commit 8e08d3e4b8f00151b3a8b7eb88015dc15170e154
876 Author: Alan Coopersmith <alan.coopersmith@sun.com>
877 Date:   Mon Jun 4 15:40:22 2007 -0700
878
879     Add $(AM_CFLAGS) to lint flags to get correct Xtrans flags
880
881 commit cd900e40b5676874d076c35466fd7baa6a49b1f6
882 Author: Alan Coopersmith <alan.coopersmith@sun.com>
883 Date:   Thu Apr 5 15:05:52 2007 -0700
884
885     Replace many malloc(strlen()); strcpy() pairs with strdup()
886
887 commit 27f9a9324d58c9a7472c724c62f5b7ea0e1f4681
888 Author: Alan Coopersmith <alan.coopersmith@sun.com>
889 Date:   Thu Apr 5 14:43:05 2007 -0700
890
891     Provide ANSI C prototypes for more static functions
892
893 commit bb639803a779ceace05d183b653da88f010ab29c
894 Author: Alan Coopersmith <alan.coopersmith@sun.com>
895 Date:   Thu Apr 5 14:32:31 2007 -0700
896
897     Convert authutil.c static helpers to ANSI C prototypes to clear sparse warnings
898
899 commit 2179b2d467d69e45559b8e4f161a904a21f05321
900 Author: Alan Coopersmith <alan.coopersmith@sun.com>
901 Date:   Thu Apr 5 14:28:06 2007 -0700
902
903     Add hooks for checking source code with lint/sparse/etc.
904
905 commit 6b361c028b5ad931b61df86fae570f3ef9f41c15
906 Author: Alan Coopersmith <alan.coopersmith@sun.com>
907 Date:   Thu Apr 5 14:19:56 2007 -0700
908
909     Coverity #1086: Double free of pointer "*listenObjsRet"
910     
911     Same bug, different function.
912
913 commit c9b3d016681d81aff32c74cdad75151bd538e6ab
914 Author: Alan Coopersmith <alan.coopersmith@sun.com>
915 Date:   Thu Apr 5 14:07:42 2007 -0700
916
917     Coverity #1085: Double free of pointer "*listenObjsRet"
918     
919     If malloc failed in the loop in IceListenForConnections, the error path
920     would free all previous allocations, then loop around and try again, and
921     if it failed again, free the previous allocations again.   On the other
922     hand, if it succeeded on the later tries, then the memory would just be
923     leaked, since the error would be returned and not the pointer to them.
924
925 commit 6039e865470af23948b0fe7d5dc0ea72da436b0e
926 Author: Alan Coopersmith <alan.coopersmith@sun.com>
927 Date:   Thu Apr 5 14:04:01 2007 -0700
928
929     Add *~ to .gitignore to skip emacs/patch droppings
930
931 commit bed718894bed98cbd45b02bd57fb7fc6fd5089aa
932 Author: Daniel Stone <daniel@fooishbar.org>
933 Date:   Sat Dec 16 01:21:17 2006 +0200
934
935     bump to 1.0.3
936
937 commit cac788981906186442ddfb57a41f45911eb8223b
938 Author: Daniel Stone <daniel@fooishbar.org>
939 Date:   Wed Dec 6 18:58:09 2006 +0200
940
941     Makefile.am: make ChangeLog hook safer
942     Make ChangeLog hook as safe as possible.
943
944 commit 011d632e8ef3f738b9158e66d6da6876e3b53905
945 Author: Adam Jackson <ajax@benzedrine.nwnk.net>
946 Date:   Fri Oct 13 15:49:52 2006 -0400
947
948     Bump to 1.0.2
949
950 commit 445661cd714685009ee9ba2358a274351381eabf
951 Author: Adam Jackson <ajax@benzedrine.nwnk.net>
952 Date:   Thu Oct 12 18:37:57 2006 -0400
953
954     Fix ChangeLog hook to distcheck.
955
956 commit 5cba1c763ac9f79062523227b49a29f72e6069cf
957 Author: Matthieu Herrb <matthieu.herrb@laas.fr>
958 Date:   Sun Jul 16 10:52:30 2006 +0200
959
960     set GIT_DIR=${srcdir}/.git for git-log
961
962 commit 86e0a93714a6ccdb8555fc2c48231d958cba383d
963 Author: Alan Coopersmith <alan.coopersmith@sun.com>
964 Date:   Thu Jul 13 14:58:44 2006 -0700
965
966     renamed: .cvsignore -> .gitignore
967
968 commit c87cb98979356fc55607c05a2b23207afc9beeb1
969 Author: Alan Coopersmith <alan.coopersmith@sun.com>
970 Date:   Tue Jul 11 13:48:08 2006 -0700
971
972     Replace static ChangeLog with rule copied from libX11 to generate from git log
973
974 commit 6066ab9b9914ec0cca3b8f36fa3f5ba323414621
975 Author: Derek Wang <derek.wang@sun.com>
976 Date:   Tue Nov 23 12:00:32 2004 -0800
977
978     Sun bug #6193975: kde session manager core dumps in _IceWrite()
979
980 commit be25425ca38d23655a5a854c053e750e1cbd3dea
981 Author: Alan Coopersmith <alan.coopersmith@sun.com>
982 Date:   Tue Jul 11 13:42:07 2006 -0700
983
984     renamed: .cvsignore -> .gitignore
985
986 commit 9b1bb5ab99bd386cc030cd456a576b37406da91c
987 Author: Adam Jackson <ajax@nwnk.net>
988 Date:   Wed Apr 26 23:57:50 2006 +0000
989
990     Bump to 1.0.1
991
992 commit 96d7763487da6624ed85bee10b081e7138d2060d
993 Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
994 Date:   Mon Apr 10 16:44:40 2006 +0000
995
996     Coverity #664: Free memory allocated by EXTRACT_STRING in
997         _IceDefaultErrorHandler after we're done fprintf()'ing it.
998
999 commit 2a30ec82f3bd2aa1f2566e97fee70403a8448de8
1000 Author: Kevin E Martin <kem@kem.org>
1001 Date:   Thu Dec 15 00:24:27 2005 +0000
1002
1003     Update package version number for final X11R7 release candidate.
1004
1005 commit 881573d429c0a9ecfa2d6286d4eaece36ee50675
1006 Author: Kevin E Martin <kem@kem.org>
1007 Date:   Sat Dec 3 05:49:42 2005 +0000
1008
1009     Update package version number for X11R7 RC3 release.
1010
1011 commit a15b179f2e8e359161d9133bac58dde57b7e78ae
1012 Author: Kevin E Martin <kem@kem.org>
1013 Date:   Sat Nov 19 07:15:39 2005 +0000
1014
1015     Update pkgconfig files to separate library build-time dependencies from
1016         application build-time dependencies, and update package deps to work
1017         with separate build roots.
1018
1019 commit c386a08047582240adefafd3afc062e52fccae6f
1020 Author: Kevin E Martin <kem@kem.org>
1021 Date:   Wed Nov 9 21:19:12 2005 +0000
1022
1023     Update package version number for X11R7 RC2 release.
1024
1025 commit c361e3919f2de3f4742904b04e73178edc76bf95
1026 Author: Adam Jackson <ajax@nwnk.net>
1027 Date:   Sun Oct 23 20:12:19 2005 +0000
1028
1029     Bug #1893: Fix replies when peers use different major opcodes for the same
1030         subprotocol. (016_ICE_subprotocol_reply_fix.diff from Debian, by Jochen
1031         Voss)
1032
1033 commit 0b8ff6fbd8cd7f47ab9e6ccb6d4917564a2d13ee
1034 Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
1035 Date:   Sat Jul 30 19:15:15 2005 +0000
1036
1037     Add -D flags to clear various warnings (Stefan Dirsch)
1038
1039 commit 260d470a128c7eaa6d7484bb143aab353c4e98ec
1040 Author: Kevin E Martin <kem@kem.org>
1041 Date:   Fri Jul 29 21:22:50 2005 +0000
1042
1043     Various changes preparing packages for RC0:
1044     - Verify and update package version numbers as needed
1045     - Implement versioning scheme
1046     - Change bug address to point to bugzilla bug entry form
1047     - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to
1048         reenable it)
1049     - Fix makedepend to use pkgconfig and pass distcheck
1050     - Update build script to build macros first
1051     - Update modular Xorg version
1052
1053 commit cf687b775f580a84a4a8e962814abe7bc47a3c52
1054 Author: Daniel Stone <daniel@fooishbar.org>
1055 Date:   Sat Jul 16 06:22:34 2005 +0000
1056
1057     Set soversion to 6.3.0.
1058
1059 commit 6d1704defa0e57715bd22d30d6e789b36233dcf8
1060 Author: Keith Packard <keithp@keithp.com>
1061 Date:   Sat Jul 9 05:59:01 2005 +0000
1062
1063     Add .cvsignore files
1064
1065 commit 2b6b8e40a63dd69a13f87c19dcf8dc2f477c304d
1066 Author: Daniel Stone <daniel@fooishbar.org>
1067 Date:   Sun Jul 3 07:00:55 2005 +0000
1068
1069     Add Xtrans definitions (FONT_t, TRANS_CLIENT) to clean up warnings.
1070     Add XSERV_t, TRANS_SERVER, TRANS_REOPEN to quash warnings.
1071     Add #include <dix-config.h> or <xorg-config.h>, as appropriate, to all
1072         source files in the xserver/xorg tree, predicated on defines of
1073         HAVE_{DIX,XORG}_CONFIG_H. Change all Xfont includes to
1074         <X11/fonts/foo.h>.
1075
1076 commit 608ad35f102b188f554daf8c160a5edcf4e8031c
1077 Author: Daniel Stone <daniel@fooishbar.org>
1078 Date:   Fri Jun 10 14:11:36 2005 +0000
1079
1080     Remove pointless include of Xlib.h.
1081     Fix #include path to bigreqstr.h.
1082
1083 commit 795460992b0dcd4aa2591be462a94942415c6028
1084 Author: Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de>
1085 Date:   Thu Jun 9 15:54:47 2005 +0000
1086
1087     Replace <X11/transport.c> with <X11/Xtrans/transport.c>
1088
1089 commit ae7b4cca6bd5c1f4edea8cde80d7a3dfaaf2c4d3
1090 Author: Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de>
1091 Date:   Thu Jun 9 15:52:02 2005 +0000
1092
1093     Replace <X11/Xtrans.h> with <X11/Xtrans/Xtrans.h>
1094     Copy Xtrans.h to exports/include/X11/Xtrans only
1095
1096 commit a0637be926e6da5db8d131e7914f1300f484c626
1097 Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
1098 Date:   Sat May 21 23:07:47 2005 +0000
1099
1100     xtrans:
1101     Create autoconf macro XTRANS_CONNECTION_FLAGS to provide standard set of
1102         --enable flags for which transports to support and common place to
1103         update for required libraries for platforms that need certain libs for
1104         certain transports
1105     ICE:
1106     Add ICE_t #define required by Xtrans headers. Replace static defines of
1107         LOCALCONN & UNIXCONN with new XTRANS_CONNECTION_FLAGS macro.
1108     X11:
1109     Moved transport type checks to new macro XTRANS_CONNECTION_FLAGS in
1110         xtrans.m4 in xtrans module so they can be shared by all modules using
1111         xtrans.
1112
1113 commit efdb2468119be0c62a379d91088a708ca8d37e1b
1114 Author: Adam Jackson <ajax@nwnk.net>
1115 Date:   Thu May 19 00:22:32 2005 +0000
1116
1117     revert last change, didn't do right thing at all, sorry for the noise
1118
1119 commit ccf4efa5e204d4569b9b590f72baae807ec19903
1120 Author: Adam Jackson <ajax@nwnk.net>
1121 Date:   Thu May 19 00:10:02 2005 +0000
1122
1123     Require automake 1.7 in AM_INIT_AUTOMAKE
1124
1125 commit 3458da101c943530861485c798538ce014eee6b0
1126 Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
1127 Date:   Tue May 17 21:25:15 2005 +0000
1128
1129     - Conditionally include config.h in xc/lib/SM
1130     - Add libSM to symlink.sh
1131     - Add SM build system
1132
1133 commit cae06ca0ce523eeb9a667ce3ae5bff066cf6ecd7
1134 Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
1135 Date:   Tue May 17 20:53:58 2005 +0000
1136
1137     - Conditionally include config.h in the ICE source.
1138     - Add ICE to symlink.sh
1139
1140 commit 9dd90f8f8e29bb1dd6fe84b4b1d2d75ef91bc336
1141 Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
1142 Date:   Tue May 17 20:52:35 2005 +0000
1143
1144     Add ICE directory + build system.
1145
1146 commit d1cfe2a6d4a392f64b6b9d9255ec329fb2a6a39a
1147 Author: Daniel Stone <daniel@fooishbar.org>
1148 Date:   Fri Jan 28 19:15:39 2005 +0000
1149
1150     Move _IceGetPeerName into the ICE public API as IceGetPeerName; bump ICE
1151         soversion to 6.4 accordingly. Change SM's use to the public version.
1152         The old version will be retained for compatibility.
1153
1154 commit 8f0babf8450aa8097e063e13c95b1581843b2dd8
1155 Author: Egbert Eich <eich@suse.de>
1156 Date:   Fri Apr 23 18:43:22 2004 +0000
1157
1158     Merging XORG-CURRENT into trunk
1159
1160 commit 111949a4a1d5b62e26016b555e12f8862c90ae44
1161 Author: Egbert Eich <eich@suse.de>
1162 Date:   Sun Mar 14 08:31:52 2004 +0000
1163
1164     Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004
1165
1166 commit d4054eea34b2f4d345796ecadec8a96af93c4d0d
1167 Author: Egbert Eich <eich@suse.de>
1168 Date:   Wed Mar 3 12:11:10 2004 +0000
1169
1170     Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004
1171
1172 commit 569bf16d182b043e7ab914202d4195baf4a8413a
1173 Author: Egbert Eich <eich@suse.de>
1174 Date:   Thu Feb 26 13:35:18 2004 +0000
1175
1176     readding XFree86's cvs IDs
1177
1178 commit 14c9e41e551ab1b3a00807dbb8f2f215b96bcc81
1179 Author: Egbert Eich <eich@suse.de>
1180 Date:   Thu Feb 26 09:22:34 2004 +0000
1181
1182     Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
1183
1184 commit 45b73c360dc68b023194758bbb1cc59c021742a6
1185 Author: Kaleb Keithley <kaleb@freedesktop.org>
1186 Date:   Thu Dec 4 22:02:52 2003 +0000
1187
1188     XFree86 4.3.99.901 (RC 1)
1189
1190 commit c919c3d0b355ef67dfa0b511eb1da488e5786d1b
1191 Author: Kaleb Keithley <kaleb@freedesktop.org>
1192 Date:   Tue Nov 25 19:28:07 2003 +0000
1193
1194     XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks
1195
1196 commit 72e353567f8927996a26e72848d86f692c3f0737
1197 Author: Kaleb Keithley <kaleb@freedesktop.org>
1198 Date:   Fri Nov 14 16:48:46 2003 +0000
1199
1200     XFree86 4.3.0.1
1201
1202 commit ee452992357329f7af846eba8f5bbe61c5d27bfa
1203 Author: Kaleb Keithley <kaleb@freedesktop.org>
1204 Date:   Fri Nov 14 15:54:36 2003 +0000
1205
1206     R6.6 is the Xorg base-line