ChangeLog revision 3458e6c2
1commit 8067bc3bd82c1bd3b50e03b7f1614907509495cb
2Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3Date:   Sun Jul 10 14:54:38 2022 -0700
4
5    xcmsdb 1.0.6
6    
7    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8
9commit 337a55d303d76aa4f3f6d1e4d7885544436ee2be
10Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11Date:   Sat Apr 30 11:38:44 2022 -0700
12
13    LoadSCCData: avoid leaking memory if we give up early
14    
15    Resolves issues reported by Oracle Parfait static analyser:
16    
17    Error: Memory leak
18       Memory leak [memory-leak] (CWE 401):
19          Memory leak of pointer pCurrent allocated with calloc(1, 112)
20            at line 1615 of app/xcmsdb/loadData.c in function 'LoadSCCData'.
21              pCurrent allocated at line 1600 with calloc(1, 112)
22    Error: Memory leak
23       Memory leak [memory-leak] (CWE 401):
24          Memory leak of pointer pCurrent allocated with calloc(1, 112)
25            at line 1634 of app/xcmsdb/loadData.c in function 'LoadSCCData'.
26              pCurrent allocated at line 1600 with calloc(1, 112)
27              pCurrent leaks when VisualFlag == 0 at line 1618
28                  and VisualFlag == 0 at line 1626.
29    Error: Memory leak
30       Memory leak [memory-leak] (CWE 401):
31          Memory leak of pointer pCurrent allocated with calloc(1, 112)
32            at line 1656 of app/xcmsdb/loadData.c in function 'LoadSCCData'.
33              pCurrent allocated at line 1600 with calloc(1, 112)
34              pCurrent leaks when VisualFlag == 0 at line 1618
35                  and VisualFlag == 0 at line 1626
36                  and pCurrent->nTables != 0 at line 1628
37                  and pCurrent->nTables != 1 at line 1628
38                  and token3 == NULL at line 1642
39                  and pCurrent->nTables is 3 at line 1648
40                  and pCurrent->pRedTbl == NULL at line 1651.
41       Memory leak [memory-leak] (CWE 401):
42          Memory leak of pointer pCurrent allocated with calloc(1, 112)
43            at line 1664 of app/xcmsdb/loadData.c in function 'LoadSCCData'.
44              pCurrent allocated at line 1600 with calloc(1, 112)
45              pCurrent leaks when VisualFlag == 0 at line 1618
46                  and VisualFlag == 0 at line 1626
47                  and pCurrent->nTables != 0 at line 1628
48                  and pCurrent->nTables != 1 at line 1628
49                  and token3 == NULL at line 1642
50                  and pCurrent->nTables is 3 at line 1648
51                  and pCurrent->pGreenTbl == NULL at line 1659.
52       Memory leak [memory-leak] (CWE 401):
53          Memory leak of pointer pCurrent allocated with calloc(1, 112)
54            at line 1672 of app/xcmsdb/loadData.c in function 'LoadSCCData'.
55              pCurrent allocated at line 1600 with calloc(1, 112)
56              pCurrent leaks when VisualFlag == 0 at line 1618
57                  and VisualFlag == 0 at line 1626
58                  and pCurrent->nTables != 0 at line 1628
59                  and pCurrent->nTables != 1 at line 1628
60                  and token3 == NULL at line 1642
61                  and pCurrent->nTables is 3 at line 1648
62                  and pCurrent->pBlueTbl == NULL at line 1667.
63       Memory leak [memory-leak] (CWE 401):
64          Memory leak of pointer pCurrent allocated with calloc(1, 112)
65            at line 1685 of app/xcmsdb/loadData.c in function 'LoadSCCData'.
66              pCurrent allocated at line 1600 with calloc(1, 112)
67              pCurrent leaks when VisualFlag == 0 at line 1618
68                  and VisualFlag == 0 at line 1626
69                  and pCurrent->nTables != 0 at line 1628
70                  and pCurrent->nTables == 1 at line 1628
71                  and token3 == NULL at line 1642
72                  and pCurrent->nTables is 1 at line 1648
73                  and pCurrent->pRedTbl == NULL at line 1680.
74    
75    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
76
77commit 6ff9e623b48a8998324a75ebaadb6adc97b189ae
78Author: Alan Coopersmith <alan.coopersmith@oracle.com>
79Date:   Sat Apr 30 11:31:33 2022 -0700
80
81    Remove unnecessary casts and make allocation failure checks more consistent
82    
83    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
84
85commit 54b7f6247be611d1f357220a59be05322d78998a
86Author: Alan Coopersmith <alan.coopersmith@oracle.com>
87Date:   Sat Apr 30 11:02:27 2022 -0700
88
89    Adopt X.Org standard coding style
90    
91    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
92
93commit 63f48f29a8c93ead05b53823fc62fa909d527431
94Author: Alan Coopersmith <alan.coopersmith@oracle.com>
95Date:   Sun Apr 3 14:33:19 2022 -0700
96
97    Fix -Wsign-compare warnings in PrintTableType1()
98    
99    xcmsdb.c: In function ‘PrintTableType1’:
100    xcmsdb.c:299:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
101      for (count = 0; count < max_index+1; count++) {
102                            ^
103    xcmsdb.c:307:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
104      for (count = 0; count < max_index+1; count++) {
105                            ^
106    xcmsdb.c:315:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
107      for (count = 0; count < max_index+1; count++) {
108                            ^
109    
110    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
111
112commit 6c5d7d7ba21b69f606b832e38efe64a4805bd94e
113Author: Alan Coopersmith <alan.coopersmith@oracle.com>
114Date:   Sat Dec 4 11:13:16 2021 -0800
115
116    Build xz tarballs instead of bzip2
117    
118    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
119
120commit 8e7a36cb750e2ef619885225e937224a5949928f
121Author: Alan Coopersmith <alan.coopersmith@oracle.com>
122Date:   Sat Dec 4 11:13:13 2021 -0800
123
124    gitlab CI: add a basic build test
125    
126    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
127
128commit b8c157bf095fa8be00c9b8d0ee7550610ae79c86
129Author: Alan Coopersmith <alan.coopersmith@oracle.com>
130Date:   Sun Nov 28 11:38:16 2021 -0800
131
132    Fix spelling/wording issues
133    
134    Found by using:
135        codespell --builtin clear,rare,usage,informal,code,names
136    
137    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
138
139commit 5d9c61bbc5f5c485df099e1b8536c25ec3afd741
140Author: Alan Coopersmith <alan.coopersmith@oracle.com>
141Date:   Wed Nov 21 17:00:09 2018 -0800
142
143    Update configure.ac bug URL for gitlab migration
144    
145    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
146
147commit d4de6604ab692cc1a70a330efa5b15f3e88c47ed
148Author: Alan Coopersmith <alan.coopersmith@oracle.com>
149Date:   Fri Nov 16 21:18:18 2018 -0800
150
151    Update README for gitlab migration
152    
153    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
154
155commit 97a1bb6e0b22c9ae3be1694711acf052b927766c
156Author: Mihail Konev <k.mvc@ya.ru>
157Date:   Thu Jan 26 14:00:20 2017 +1000
158
159    autogen: add default patch prefix
160    
161    Signed-off-by: Mihail Konev <k.mvc@ya.ru>
162
163commit 5ef3260cbf8a6b097467a72aa6d16befe9095b78
164Author: Emil Velikov <emil.l.velikov@gmail.com>
165Date:   Mon Mar 9 12:00:52 2015 +0000
166
167    autogen.sh: use quoted string variables
168    
169    Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent
170    fall-outs, when they contain space.
171    
172    Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
173    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
174    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
175
176commit 7c2442e5332b7edeb8f6855b8cce2001c91df04f
177Author: Peter Hutterer <peter.hutterer@who-t.net>
178Date:   Tue Jan 24 10:32:07 2017 +1000
179
180    autogen.sh: use exec instead of waiting for configure to finish
181    
182    Syncs the invocation of configure with the one from the server.
183    
184    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
185    Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
186
187commit 152d7f3992fc0982006f7024589c1491feb273ee
188Author: Alan Coopersmith <alan.coopersmith@oracle.com>
189Date:   Thu Apr 16 22:49:23 2015 -0700
190
191    xcmsdb 1.0.5
192    
193    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
194
195commit aa02eb3d4f0c5722b8f9012ec08512daa7420184
196Author: Erkki Seppälä < <erkki.seppala@vincit.fi>
197Date:   Sun Jan 4 12:51:10 2015 -0800
198
199    _XcmsGetProperty: don't deal with uninitialized values, fail instead
200    
201    Import commit 502d414118c97d35a44f8e295709682022876331 from the
202    master copy of this code in libX11.
203    
204    Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi>
205    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
206
207commit 88135312d0cdfd624dfdd029539959849302a1f4
208Author: Alan Coopersmith <alan.coopersmith@oracle.com>
209Date:   Sat Jan 3 14:56:48 2015 -0800
210
211    Only use results from GetWindowProperty if it returned Success
212    
213    Since Xlib prior to 1.6 didn't always clear values on failure, don't
214    assume they're safe to use unless we succeeded.
215    
216    Reported by Oracle Parfait 1.5.1:
217    Error: Uninitialised memory
218       Uninitialised memory variable (CWE 457): Possible access to uninitialised memory variable 'ret_format'
219            at line 743 of app/xcmsdb/xcmsdb.c in function 'RemoveSCCData'.
220              ret_format allocated at line 733.
221            at line 757 of app/xcmsdb/xcmsdb.c in function 'RemoveSCCData'.
222              ret_format allocated at line 733.
223       Uninitialised memory variable (CWE 457): Possible access to uninitialised memory variable 'ret_prop'
224            at line 748 of app/xcmsdb/xcmsdb.c in function 'RemoveSCCData'.
225              ret_prop allocated at line 731.
226            at line 762 of app/xcmsdb/xcmsdb.c in function 'RemoveSCCData'.
227              ret_prop allocated at line 731.
228    
229    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
230    Reviewed-by: Hans de Goede <hdegoede@redhat.com>
231
232commit 09bb2c8287e6cafc7acb8e1680ce7b0cc5e36a3d
233Author: Alan Coopersmith <alan.coopersmith@oracle.com>
234Date:   Wed Dec 31 10:20:07 2014 -0800
235
236    Strip trailing whitespace from source files
237    
238    git ls-files | xargs gsed -i 's/[ \t]*$//'
239    
240    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
241
242commit 1a67ecc569db633a43cf2bbd7c5633b4455b4f4b
243Author: Alan Coopersmith <alan.coopersmith@oracle.com>
244Date:   Mon Jun 2 22:14:40 2014 -0700
245
246    autogen.sh: Honor NOCONFIGURE=1
247    
248    See http://people.gnome.org/~walters/docs/build-api.txt
249    
250    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
251
252commit 4e083547f90259fe7e855a4fcad1dd22253b7a2d
253Author: Alan Coopersmith <alan.coopersmith@oracle.com>
254Date:   Mon Jun 2 22:14:40 2014 -0700
255
256    configure: Drop AM_MAINTAINER_MODE
257    
258    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
259
260commit dee634b8eb0d1777baf48cfc12d892db778be587
261Author: Alan Coopersmith <alan.coopersmith@oracle.com>
262Date:   Tue Nov 26 21:44:20 2013 -0800
263
264    config: Add missing AC_CONFIG_SRCDIR
265    
266    Regroup AC statements under the Autoconf initialization section.
267    Regroup AM statements under the Automake initialization section.
268    
269    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
270
271commit 953e12eab18c50001fcabeac9f3a9008a2858bc1
272Author: Alan Coopersmith <alan.coopersmith@oracle.com>
273Date:   Tue Nov 26 21:39:00 2013 -0800
274
275    Remove break statements immediately after return statements
276    
277    Silences clang -Wunreachable-code warnings
278    
279    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
280
281commit c715abbca4885d03e8f9d6b71cf8fb54e5be5667
282Author: Alan Coopersmith <alan.coopersmith@oracle.com>
283Date:   Tue Nov 26 21:34:01 2013 -0800
284
285    Fix const char * warnings
286    
287    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
288    Reviewed-by: Mark Kettenis <kettenis@openbsd.org>
289
290commit 93fcd59757e87cb79db8a98e0379c0a90eddae4c
291Author: Alan Coopersmith <alan.coopersmith@oracle.com>
292Date:   Tue Nov 26 21:26:54 2013 -0800
293
294    Add -version option to print program version
295    
296    Adds both -version and previously undocumented -help to man page
297    
298    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
299
300commit dfd9fa8720cb8001d6569cd8b4d65819ff9d5ba5
301Author: Alan Coopersmith <alan.coopersmith@oracle.com>
302Date:   Tue Nov 26 21:22:38 2013 -0800
303
304    Print which option was in error along with usage message
305    
306    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
307
308commit 9ee59de6b0ab352e22d89edee361af40b85a1c79
309Author: Alan Coopersmith <alan.coopersmith@oracle.com>
310Date:   Tue Nov 26 21:13:41 2013 -0800
311
312    Combine usage message strings
313    
314    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
315
316commit db25a4a75d4a3ea5c904ec63669c47bd5f467d98
317Author: Alan Coopersmith <alan.coopersmith@oracle.com>
318Date:   Tue Feb 14 18:39:28 2012 -0800
319
320    xcmsdb 1.0.4
321    
322    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
323
324commit 9e7799634dd8149b741583672f9bb75fa2451489
325Author: Jeremy Huddleston <jeremyhu@apple.com>
326Date:   Sat May 7 21:36:59 2011 -0700
327
328    Dead code removal
329    
330    loadData.c:1497:2: warning: Value stored to 'token1' is never read
331            token1 = token2 = token3 = (char*)NULL;
332            ^        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
333    
334    Found-by: clang static analyzer
335    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
336
337commit 08c8b7a6ee4232c5a6614b8fc4aac2b337623de0
338Author: Jeremy Huddleston <jeremyhu@apple.com>
339Date:   Sat May 7 19:57:53 2011 -0700
340
341    Improved error handling for corrupt intensity profiles
342    
343    loadData.c:661:15: warning: Access to field 'value' results in a dereference of a null pointer (loaded from variable 'pIRec')
344                                pIRec->value = tmp;
345                                ~~~~~  ^
346    loadData.c:682:19: warning: The right operand of '>' is a garbage value
347                        if (++count > size) {
348                                    ^ ~~~~
349    
350    Found-by: clang static analyzer
351    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
352
353commit f872b47cb606d448766c1fa750709fd06a8a6904
354Author: Jeremy Huddleston <jeremyhu@apple.com>
355Date:   Sat May 7 19:48:04 2011 -0700
356
357    Coding style cleanup to appease static analyzer
358    
359    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
360
361commit 7ff5997a990e1c82c723ac08fc2d8a70c4839619
362Author: Gaetan Nadon <memsize@videotron.ca>
363Date:   Wed Jan 19 10:06:55 2011 -0500
364
365    config: move man pages into their own directory
366    
367    Use services provided by XORG_MANPAGE_SECTIONS.
368    Use standard Makefile for man pages.
369    
370    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
371
372commit 8b88bdd918413590962fc14a249b8963c183fcb0
373Author: Gaetan Nadon <memsize@videotron.ca>
374Date:   Thu Jan 13 17:15:36 2011 -0500
375
376    man: replace hard coded man page section with substitution strings
377    
378    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
379
380commit 005c3fd93440eb653744ca50da3c02ac40ea1062
381Author: Gaetan Nadon <memsize@videotron.ca>
382Date:   Thu Jan 13 11:15:47 2011 -0500
383
384    man: remove trailing spaces and tabs
385    
386    Using s/[ \t]*$//
387    
388    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
389
390commit 22d71915e74cbea51d46aaf0922abe4de5ec368f
391Author: Gaetan Nadon <memsize@videotron.ca>
392Date:   Wed Jan 12 16:28:02 2011 -0500
393
394    config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
395    
396    This silences an Autoconf warning
397
398commit b9ddf66b520bfadb3ce65e7d988474e2acfd6048
399Author: Alan Coopersmith <alan.coopersmith@oracle.com>
400Date:   Thu Sep 23 19:03:34 2010 -0700
401
402    xcmsdb 1.0.3
403    
404    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
405
406commit d279151713bd7f3023ebd24494a8021c7f9b896b
407Author: Alan Coopersmith <alan.coopersmith@oracle.com>
408Date:   Thu Sep 23 18:58:16 2010 -0700
409
410    config: Remove unnecessary calls from configure.ac
411    
412    AC_PROG_CC & AC_PROG_INSTALL are provided by XORG_DEFAULT_OPTIONS now
413    PKG_CONFIG_MODULES handles AC_SUBST of the CFLAGS & LIBS variables
414    
415    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
416
417commit 0f3e8ddb7ba7b0cd0b07f16a41f38dec47a25f27
418Author: Alan Coopersmith <alan.coopersmith@oracle.com>
419Date:   Thu Sep 23 18:57:04 2010 -0700
420
421    config: upgrade to util-macros 1.8 for additional man page support
422    
423    Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS
424    The value of MAN_SUBST is the same for all X.Org packages.
425    
426    Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS
427    The existing statement can now be removed from the configuration file.
428    
429    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
430
431commit 4d06455d3b31d1d721805526c4a05f143f7d92ef
432Author: Gaetan Nadon <memsize@videotron.ca>
433Date:   Tue Jul 20 18:45:18 2010 -0400
434
435    config: update AC_PREREQ statement to 2.60
436    
437    Unrelated to the previous patches, the new value simply reflects
438    the reality that the minimum level for autoconf to configure
439    all x.org modules is 2.60 dated June 2006.
440    
441    ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz
442    
443    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
444
445commit 68ca4762f91601feb8369a54234e2957ca1f9a48
446Author: Alan Coopersmith <alan.coopersmith@oracle.com>
447Date:   Fri Aug 6 08:42:45 2010 -0700
448
449    Add Open Group notice to COPYING for man page
450    
451    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
452
453commit 8d26b362b4172d3e5cc1760d051f480bf9932be5
454Author: Gaetan Nadon <memsize@videotron.ca>
455Date:   Thu Jan 7 21:31:03 2010 -0500
456
457    COPYING: replace stub with actual copyright notice
458    
459    Refer to xcmsdb.c
460    Copyright 1990 Tektronix Inc.
461    
462    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
463
464commit 50dfd44f0c1f9e66d8378298580a32d01a3e5fce
465Author: Gaetan Nadon <memsize@videotron.ca>
466Date:   Thu Nov 26 09:19:53 2009 -0500
467
468    Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
469    
470    Now that the INSTALL file is generated.
471    Allows running make maintainer-clean.
472
473commit 6038a8d561337d2fd275135dfadb26aa691024e6
474Author: Gaetan Nadon <memsize@videotron.ca>
475Date:   Wed Oct 28 14:09:08 2009 -0400
476
477    INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
478    
479    Add missing INSTALL file. Use standard GNU file on building tarball
480    README may have been updated
481    Remove AUTHORS file as it is empty and no content available yet.
482    Remove NEWS file as it is empty and no content available yet.
483
484commit a0d137251dec348557a33e758f40419955f674ad
485Author: Gaetan Nadon <memsize@videotron.ca>
486Date:   Mon Oct 26 22:08:38 2009 -0400
487
488    Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
489    
490    ChangeLog filename is known to Automake and requires no further
491    coding in the makefile.
492
493commit 537a1fdd08991d82f0e6e8e52f2fa80672abbb8d
494Author: Gaetan Nadon <memsize@videotron.ca>
495Date:   Thu Oct 22 12:34:15 2009 -0400
496
497    .gitignore: use common defaults with custom section # 24239
498    
499    Using common defaults will reduce errors and maintenance.
500    Only the very small or inexistent custom section need periodic maintenance
501    when the structure of the component changes. Do not edit defaults.
502
503commit 0929f650a140ff25ac7f3e337e2784891f851ca4
504Author: Alan Coopersmith <alan.coopersmith@sun.com>
505Date:   Wed Oct 14 23:16:12 2009 -0700
506
507    xcmsdb 1.0.2
508    
509    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
510
511commit 19d201b8d1661f447bf9c0ce6ee761e3c34661dc
512Author: Alan Coopersmith <alan.coopersmith@sun.com>
513Date:   Wed Oct 14 23:11:15 2009 -0700
514
515    Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS
516    
517    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
518
519commit 0590764cd3922620888043dde186619d7e8688b1
520Author: Alan Coopersmith <alan.coopersmith@sun.com>
521Date:   Thu Oct 1 14:54:21 2009 -0700
522
523    Add README with pointers to mailing lists, bugzilla, & git
524    
525    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
526
527commit 1ff763d1f34c3027969f9f09d3226fc447435c04
528Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
529Date:   Mon Jan 19 19:23:43 2009 -0200
530
531    Ansification and compile warning fixes.
532    
533      This also uses XORG_CHANGELOG and XORG_CWARNFLAGS, corrects
534    make distcheck and all gcc 4.3 and sparse warnings.
535
536commit 89508e83db03b45a8b1d1a5191084ddb93ea34f8
537Author: James Cloos <cloos@jhcloos.com>
538Date:   Thu Dec 6 16:37:10 2007 -0500
539
540    Replace static ChangeLog with dist-hook to generate from git log
541
542commit be13ab935be74f19c4f98c3b51b61154f7da9dcc
543Author: walter <wharms@bfs.de>
544Date:   Thu Nov 22 17:37:09 2007 -0800
545
546    X.Org Bug #13357: xcmsdb segfaults on xcms.txt
547    
548    <http://bugs.freedesktop.org/show_bug.cgi?id=13357>
549
550commit 235821c4198dc101cc52c83295dab96c0bcc3e8c
551Author: James Cloos <cloos@jhcloos.com>
552Date:   Mon Sep 3 05:51:17 2007 -0400
553
554    Add *~ to .gitignore to skip patch/emacs droppings
555
556commit cab0ea9ef7c2d05d2659dff7337f00e47113747e
557Author: James Cloos <cloos@jhcloos.com>
558Date:   Thu Aug 23 19:24:41 2007 -0400
559
560    Rename .cvsignore to .gitignore
561
562commit 78daad2bcf798bd6e5bcfb495b4343e8455997fc
563Author: Kevin E Martin <kem@kem.org>
564Date:   Wed Dec 21 02:29:48 2005 +0000
565
566    Update package version for X11R7 release.
567
568commit a33a162c915f7385b8f48b7d4929a2d3fc6f4d7b
569Author: Adam Jackson <ajax@nwnk.net>
570Date:   Mon Dec 19 16:22:42 2005 +0000
571
572    Stub COPYING files
573
574commit 35e4edaa3c87edaa94162bbb4e1f432622955a69
575Author: Kevin E Martin <kem@kem.org>
576Date:   Thu Dec 15 00:24:05 2005 +0000
577
578    Update package version number for final X11R7 release candidate.
579
580commit d958222d35aca227ef7911c2e2932e1969c5e102
581Author: Kevin E Martin <kem@kem.org>
582Date:   Tue Dec 6 22:48:20 2005 +0000
583
584    Change *man_SOURCES ==> *man_PRE to fix autotools warnings.
585
586commit 36493b79df32c0b5bc5c641a99ca0d30798a2b30
587Author: Kevin E Martin <kem@kem.org>
588Date:   Sat Dec 3 05:49:18 2005 +0000
589
590    Update package version number for X11R7 RC3 release.
591
592commit c11f5a3a0f44b6e8cbf0bfcdf9ad874d6e21af04
593Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
594Date:   Mon Nov 28 22:01:40 2005 +0000
595
596    Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4
597        update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir)
598
599commit b85ceb853c042a78d7a9b48959ed02d24505b57b
600Author: Eric Anholt <anholt@freebsd.org>
601Date:   Mon Nov 21 10:34:59 2005 +0000
602
603    Another pass at .cvsignores for apps.
604
605commit ac026c20643e7d2027cec49929217cdc76fc1d00
606Author: Eric Anholt <anholt@freebsd.org>
607Date:   Sun Nov 20 22:08:51 2005 +0000
608
609    Add/improve .cvsignore files for apps.
610
611commit 06f46e63686b043c219be0b80fea765a96485e4d
612Author: Kevin E Martin <kem@kem.org>
613Date:   Wed Oct 19 02:47:52 2005 +0000
614
615    Update package version number for RC1 release.
616
617commit 4438e30eade44b6fb2b3f73f1f292737133c4951
618Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
619Date:   Mon Oct 17 23:56:21 2005 +0000
620
621    Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions to
622        work better with BSD make
623
624commit 55836b1773cc45cbf172e3daf741e762fc946c69
625Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
626Date:   Fri Oct 14 00:25:43 2005 +0000
627
628    Use sed to fill in variables in man page
629
630commit 5390e06bb50207203a1e188b27b8eeb1281ea535
631Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
632Date:   Mon Aug 1 20:25:29 2005 +0000
633
634    Install man pages to section 1 instead of section m (Patch from Donnie
635        Berkholz)
636
637commit 5f54f305d92a3181d486cf97854997961c7d4977
638Author: Kevin E Martin <kem@kem.org>
639Date:   Fri Jul 29 21:22:31 2005 +0000
640
641    Various changes preparing packages for RC0:
642    - Verify and update package version numbers as needed
643    - Implement versioning scheme
644    - Change bug address to point to bugzilla bug entry form
645    - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to
646        reenable it)
647    - Fix makedepend to use pkgconfig and pass distcheck
648    - Update build script to build macros first
649    - Update modular Xorg version
650
651commit b2775e434a61617f0d7af4ed758605fa30b5f1fc
652Author: Adam Jackson <ajax@nwnk.net>
653Date:   Wed Jul 20 19:31:52 2005 +0000
654
655    Use a unique token for PKG_CHECK_MODULES. Otherwise, if you use a global
656        configure cache, you cache it, and the cached value is probably wrong.
657
658commit bdf7beaadb08e4599d28433a49422825949b8295
659Author: Søren Sandmann Pedersen  <sandmann@daimi.au.dk>
660Date:   Wed Jul 6 20:07:41 2005 +0000
661
662    Build system for xcmsdb
663
664commit 946ee35bc34efb4fc3aa1eacf7201e97381c1d6a
665Author: Egbert Eich <eich@suse.de>
666Date:   Fri Apr 23 19:54:41 2004 +0000
667
668    Merging XORG-CURRENT into trunk
669
670commit d6f6a730752c355e1c07980cdf0320043b0bf0b8
671Author: Egbert Eich <eich@suse.de>
672Date:   Sun Mar 14 08:35:01 2004 +0000
673
674    Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004
675
676commit 28a93a124d494cac6408a45a6a618bbf312f67de
677Author: Egbert Eich <eich@suse.de>
678Date:   Wed Mar 3 12:12:55 2004 +0000
679
680    Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004
681
682commit d131f6a211a2ee442bab02e5aae3fea157a067dc
683Author: Egbert Eich <eich@suse.de>
684Date:   Thu Feb 26 13:36:16 2004 +0000
685
686    readding XFree86's cvs IDs
687
688commit 193d40571385ff202b3254f044838ba210fd3ccf
689Author: Egbert Eich <eich@suse.de>
690Date:   Thu Feb 26 09:23:58 2004 +0000
691
692    Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
693
694commit 8f708f1adacba44502ff465cda0c0e3c0a4490b0
695Author: Kaleb Keithley <kaleb@freedesktop.org>
696Date:   Tue Nov 25 19:29:03 2003 +0000
697
698    XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks
699
700commit c68d579b627ff85dbb60061d9befca014d3e5096
701Author: Kaleb Keithley <kaleb@freedesktop.org>
702Date:   Fri Nov 14 16:48:58 2003 +0000
703
704    XFree86 4.3.0.1
705
706commit 71194c9839debbb6c1baaa4d5d8105af39907803
707Author: Kaleb Keithley <kaleb@freedesktop.org>
708Date:   Fri Nov 14 15:54:53 2003 +0000
709
710    R6.6 is the Xorg base-line
711