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