1commit 6013f24444d576ad263004c45edd52b4e8cec632
2Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3Date:   Sun Mar 3 09:37:16 2024 -0800
4
5    editres 1.0.9
6    
7    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8
9commit d0bc9be0ef9545b8f34a35a766c165bd7fb073f3
10Author: Peter Radisson <Radisson97@web.de>
11Date:   Wed Sep 6 14:46:40 2023 +0200
12
13    fix const error
14    
15    missing const causes 'conflicting type' error at initialisation
16    and aborted compilation.
17
18commit 6cb5bf04ccdfadef8f7acd81b41b15f0cf053c5f
19Author: Walter Harms <xt4ever@web.de>
20Date:   Fri Apr 7 14:48:42 2023 +0200
21
22    Fix shadowing box
23    
24    widgets.c: In function ‘CreateResourceBoxWidgets’:
25    widgets.c:473:18: warning: declaration of ‘box’ shadows a global declaration [-Wshadow]
26         Widget pane, box, button, viewport, pane_child;
27    
28    rename box to rbox
29
30commit c10de6efe50fcd7be57e79274889d11e6845f82e
31Author: Walter Harms <xt4ever@web.de>
32Date:   Fri Apr 7 13:09:26 2023 +0200
33
34    fix initialization discards const
35    
36    FIX warnings like:
37    
38        initialization discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
39       {"debug", "Debug", XtRBoolean, sizeof(Boolean),
40
41commit 316df270e14ce13a3a631cdfd383a5a367fe14b0
42Author: Walter Harms <xt4ever@web.de>
43Date:   Fri Apr 7 13:03:39 2023 +0200
44
45    stop const warnings
46    
47    fix  passing argument 1 of ‘RebuildMenusAndLabel’ discards ‘const’ qualifier
48    from pointer target type
49    only user is in comm.c
50
51commit 417f15e05e739e171b36dfa643b6418dc07ab6bc
52Author: Walter Harms <xt4ever@web.de>
53Date:   Fri Apr 7 12:58:05 2023 +0200
54
55    stop const warnings
56    
57        most warnings occur because XtSetArg() needs (String) aka char *
58        and the "string" is const char * these days.
59
60commit ce2c6484fec8055480cfaf99137bc9922d44373a
61Author: Walter Harms <xt4ever@web.de>
62Date:   Fri Apr 7 12:53:11 2023 +0200
63
64    stop const warnings
65    
66       The warning occurs because XtSetArg() needs (String) aka char *
67        and the "string" is const char * these days.
68
69commit d3409224807c5d779162f92465d58120c77b7840
70Author: Walter Harms <xt4ever@web.de>
71Date:   Fri Apr 7 12:44:06 2023 +0200
72
73    stop const warnings
74    
75        The warning occurs because XtSetArg() needs (String) aka char *
76        and the "string" is const char * these days.
77
78commit 07a58318ccd96c644b2748c57b285d5779fed0a8
79Author: Walter Harms <xt4ever@web.de>
80Date:   Fri Apr 7 12:38:09 2023 +0200
81
82    stop const warnings
83    
84    The warning occurs because XtSetArg() needs (String) aka char *
85    and the "string" is const char * these days.
86
87commit ce35acb5b2a0892863fc63a1315a60cbbb7f553f
88Author: Walter Harms <xt4ever@web.de>
89Date:   Fri Apr 7 12:17:22 2023 +0200
90
91    FIX some const warnings
92    
93    make type const char * to avoid warning
94
95commit 16df4dd92868ebc9663aae575df7dc3ce6e73797
96Author: Walter Harms <xt4ever@web.de>
97Date:   Fri Apr 7 11:57:37 2023 +0200
98
99    FIX const warning
100    
101    getting a bunch of warnings make i had to see the import ones.
102    So reduce the warnings by adding a few "const" no problem
103    for internals. For externals function add some casts.
104
105commit e15440c5456c798e2ba5368afcd3b17c752cc44c
106Author: Alan Coopersmith <alan.coopersmith@oracle.com>
107Date:   Thu Feb 9 11:55:52 2023 -0800
108
109    gitlab CI: stop requiring Signed-off-by in commits
110    
111    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
112
113commit 85a3ccd43c4601c9d80bea8441ec9711af9bd52d
114Author: Alan Coopersmith <alan.coopersmith@oracle.com>
115Date:   Mon Feb 6 18:20:20 2023 -0800
116
117    List which options were unrecognized before printing usage message
118    
119    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
120
121commit ad1da487b343ffdbeda09563984869cc56ab29a0
122Author: Alan Coopersmith <alan.coopersmith@oracle.com>
123Date:   Mon Feb 6 18:19:29 2023 -0800
124
125    Add -help and -version options
126    
127    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
128
129commit 80959deec664cd80cd5dbf84af86b52ded4eaee0
130Author: Alan Coopersmith <alan.coopersmith@oracle.com>
131Date:   Mon Feb 6 18:09:37 2023 -0800
132
133    Re-enable code to use XKB Bells
134    
135    Enabled by default, use ./configure --without-xkb to disable.
136    
137    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
138
139commit ca502149fb2abad58446ebf234aa5e1e40ed4517
140Author: Alan Coopersmith <alan.coopersmith@oracle.com>
141Date:   Mon Feb 6 17:55:31 2023 -0800
142
143    Ensure all *.c files include config.h before any other headers
144    
145    Makes sure that any flags set in config.h that affect system headers
146    are applied equally across all source files.
147    
148    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
149
150commit 2f248e96dcde3be96c21142c032f517aa5a06554
151Author: Alan Coopersmith <alan.coopersmith@oracle.com>
152Date:   Sun Apr 3 11:30:51 2022 -0700
153
154    editres 1.0.8
155    
156    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
157
158commit c62da59948e45ea316d74b98d33eba2a5b6265aa
159Author: Alan Coopersmith <alan.coopersmith@oracle.com>
160Date:   Fri Dec 3 14:45:39 2021 -0800
161
162    Build xz tarballs instead of bzip2
163    
164    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
165
166commit 9f60785b6091b5828ae28eb5763a1b8e5023a025
167Author: Alan Coopersmith <alan.coopersmith@oracle.com>
168Date:   Fri Dec 3 14:45:34 2021 -0800
169
170    gitlab CI: add a basic build test
171    
172    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
173
174commit ae0c5a4048bec6ebcc61a8cd4abbe79ac367c53e
175Author: Alan Coopersmith <alan.coopersmith@oracle.com>
176Date:   Sun Nov 28 14:25:45 2021 -0800
177
178    Fix spelling/wording issues
179    
180    Found by using:
181        codespell --builtin clear,rare,usage,informal,code,names
182    
183    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
184
185commit 15be5d8d295f4d7c779845cd11e06c08cfacad85
186Author: Matt Turner <mattst88@gmail.com>
187Date:   Fri Mar 27 09:56:26 2020 -0700
188
189    Add const to silence warning
190    
191    widgets.c:817:28: warning: initialization discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
192    
193    Signed-off-by: Matt Turner <mattst88@gmail.com>
194
195commit a97f306fd57878158962eb873c23f03a5c6da9db
196Author: Alan Coopersmith <alan.coopersmith@oracle.com>
197Date:   Sun Jun 2 11:38:57 2019 -0700
198
199    Clear -Wredundant-decls warnings from gcc 7.3
200    
201    comm.c:55:15: warning: redundant redeclaration of ‘CM_entries’ [-Wredundant-decls]
202     extern Widget CM_entries[NUM_CM_ENTRIES], TM_entries[NUM_TM_ENTRIES];
203                   ^~~~~~~~~~
204    In file included from comm.c:46:0:
205    editresP.h:339:15: note: previous declaration of ‘CM_entries’ was here
206     extern Widget CM_entries[NUM_CM_ENTRIES];
207                   ^~~~~~~~~~
208    comm.c:55:43: warning: redundant redeclaration of ‘TM_entries’ [-Wredundant-decls]
209     extern Widget CM_entries[NUM_CM_ENTRIES], TM_entries[NUM_TM_ENTRIES];
210                                               ^~~~~~~~~~
211    In file included from comm.c:46:0:
212    editresP.h:343:15: note: previous declaration of ‘TM_entries’ was here
213     extern Widget TM_entries[NUM_TM_ENTRIES];
214                   ^~~~~~~~~~
215    
216    handler.c:502:16: warning: redundant redeclaration of ‘do_get_values’ [-Wredundant-decls]
217     extern Boolean do_get_values;
218                    ^~~~~~~~~~~~~
219    In file included from handler.c:40:0:
220    editresP.h:334:16: note: previous declaration of ‘do_get_values’ was here
221     extern Boolean do_get_values;
222                    ^~~~~~~~~~~~~
223    
224    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
225
226commit 43c19175385f98894c1633ed57ec6778e17a38a6
227Author: Alan Coopersmith <alan.coopersmith@oracle.com>
228Date:   Sun Jun 2 11:35:43 2019 -0700
229
230    Clear 208 out of 210 -Wdiscarded-qualifiers warnings from gcc 7.3
231    
232    Depends on building with a libXt version that defines String as a
233    const char * if _CONST_X_STRING is defined.
234    
235    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
236
237commit 2b838dbd23f2ae2a3ff479003b13e03563624009
238Author: Alan Coopersmith <alan.coopersmith@oracle.com>
239Date:   Wed Nov 21 16:46:01 2018 -0800
240
241    Update configure.ac bug URL for gitlab migration
242    
243    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
244
245commit 90a95d3f6a661b76b0768b454c00468eb65e47fc
246Author: Alan Coopersmith <alan.coopersmith@oracle.com>
247Date:   Fri Nov 16 19:45:13 2018 -0800
248
249    Update README for gitlab migration
250    
251    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
252
253commit 9644bfe7f56eb8c1cc795b724a6fc95ae4172d43
254Author: Alan Coopersmith <alan.coopersmith@oracle.com>
255Date:   Sun Mar 4 18:43:17 2018 -0800
256
257    editres 1.0.7
258    
259    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
260
261commit 476ad1ea6588e277d59ae6d0fc64a17bc1b5df5a
262Author: Mihail Konev <k.mvc@ya.ru>
263Date:   Thu Jan 26 14:00:20 2017 +1000
264
265    autogen: add default patch prefix
266    
267    Signed-off-by: Mihail Konev <k.mvc@ya.ru>
268
269commit e03471032c584669d06ca4fe47f52cafd9013493
270Author: Emil Velikov <emil.l.velikov@gmail.com>
271Date:   Mon Mar 9 12:00:52 2015 +0000
272
273    autogen.sh: use quoted string variables
274    
275    Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent
276    fall-outs, when they contain space.
277    
278    Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
279    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
280    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
281
282commit 931b91c5ff7b2dedb149f0a89010b64407baabf3
283Author: Peter Hutterer <peter.hutterer@who-t.net>
284Date:   Tue Jan 24 10:32:07 2017 +1000
285
286    autogen.sh: use exec instead of waiting for configure to finish
287    
288    Syncs the invocation of configure with the one from the server.
289    
290    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
291    Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
292
293commit 3f4d7d388dce6c9783c30bcc006f73d799845c0e
294Author: Alan Coopersmith <alan.coopersmith@oracle.com>
295Date:   Fri Jan 1 11:02:42 2016 -0800
296
297    Add intro to editres to README
298    
299    Mostly copied from editres man page
300    
301    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
302
303commit a415214bf282dcc8385f2101e6f8c018e188fa41
304Author: Alan Coopersmith <alan.coopersmith@oracle.com>
305Date:   Sat May 9 13:13:32 2015 -0700
306
307    Fix -Wmissing-noreturn warnings
308    
309    editres.c:140:1: warning: function 'Syntax' could be declared with
310     attribute 'noreturn' [-Wmissing-noreturn]
311    handler.c:65:1: warning: function 'Quit' could be declared with
312     attribute 'noreturn' [-Wmissing-noreturn]
313    
314    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
315
316commit a6733f76dad52644bd45a8674bf0ea97c6e424ac
317Author: Alan Coopersmith <alan.coopersmith@oracle.com>
318Date:   Sat May 9 12:47:23 2015 -0700
319
320    Strip trailing whitespace
321    
322    'git diff -w' shows no changes for this commit
323    
324    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
325
326commit c33a44612947eb91579b24f98848812018dd8c16
327Author: Alan Coopersmith <alan.coopersmith@oracle.com>
328Date:   Sat May 9 11:38:18 2015 -0700
329
330    Fix -Wsign-compare warnings
331    
332    actions.c:291:21: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare]
333        for ( i = 0 ; i < num_table; i++ )
334                      ~ ^ ~~~~~~~~~
335    actions.c:299:19: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare]
336        for (i = 0; i < num_table; ) {
337                    ~ ^ ~~~~~~~~~
338    actions.c:302:8: warning: comparison of integers of different signs: 'int' and 'unsigned int' [-Wsign-compare]
339            if (i == (num_table - 1))
340                ~ ^   ~~~~~~~~~~~~~
341    actions.c:304:13: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare]
342            else if (i < num_table)
343                     ~ ^ ~~~~~~~~~
344    
345    geometry.c:150:19: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare]
346        for (i = 0; i < tree_info->num_nodes; i++)
347                    ~ ^ ~~~~~~~~~~~~~~~~~~~~
348    geometry.c:380:19: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare]
349        for (i = 0; i < tree_info->num_flash_widgets; i++) {
350                    ~ ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
351    geometry.c:401:19: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare]
352        for (i = 0; i < tree_info->num_flash_widgets; i++)
353                    ~ ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
354    geometry.c:423:19: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare]
355        for (i = 0; i < tree_info->num_flash_widgets; i++)
356                    ~ ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
357    geometry.c:428:19: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare]
358        for (i = 0; i < tree_info->num_flash_widgets; i++)
359                    ~ ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
360    
361    handler.c:475:13: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare]
362        if (len > malloc_size) {
363            ~~~ ^ ~~~~~~~~~~~
364    handler.c:476:58: warning: implicit conversion changes signedness: 'int' to 'unsigned long' [-Wsign-conversion]
365            malloc_string = XtRealloc(malloc_string, sizeof(char) * len);
366                                                                  ~ ^~~
367    handler.c:477:16: warning: implicit conversion changes signedness: 'int' to 'Cardinal' (aka 'unsigned int') [-Wsign-conversion]
368            malloc_size = len;
369                        ~ ^~~
370    
371    utils.c:167:37: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare]
372        for (node = top_node, i = 1 ; i < number; i++) {
373                                      ~ ^ ~~~~~~
374    utils.c:170:16: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare]
375            for (j = 0; j < node->num_children; j++) {
376                        ~ ^ ~~~~~~~~~~~~~~~~~~
377    utils.c:215:19: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare]
378        for (i = 0; i < node->num_children; i++) {
379                    ~ ^ ~~~~~~~~~~~~~~~~~~
380    utils.c:787:19: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare]
381        for (i = 0; i < top_node->num_children; i++)
382                    ~ ^ ~~~~~~~~~~~~~~~~~~~~~~
383    
384    wtree.c:129:19: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare]
385        for (i = 0; i < top->num_children; i++)
386                    ~ ^ ~~~~~~~~~~~~~~~~~
387    wtree.c:194:19: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare]
388        for (i = 0; i < info->num_nodes; i++) {
389                    ~ ^ ~~~~~~~~~~~~~~~
390    wtree.c:216:19: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare]
391        for (i = 0; i < info->num_nodes; i++)
392                    ~ ^ ~~~~~~~~~~~~~~~
393    wtree.c:270:19: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare]
394        for (i = 0; i < top->num_children; i++)
395                    ~ ^ ~~~~~~~~~~~~~~~~~
396    wtree.c:339:19: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare]
397        for (i = 0; i < num_active_nodes; i++)
398                    ~ ^ ~~~~~~~~~~~~~~~~
399    wtree.c:386:19: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare]
400        for (i = 0; i < node->num_children; i++)
401                    ~ ^ ~~~~~~~~~~~~~~~~~~
402    wtree.c:446:19: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare]
403        for (i = 0; i < node->num_children; i++)
404                    ~ ^ ~~~~~~~~~~~~~~~~~~
405    wtree.c:478:16: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare]
406            for (i = 0; i < node->num_children; i++) {
407                        ~ ^ ~~~~~~~~~~~~~~~~~~
408    wtree.c:607:19: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare]
409        for (i = 0; i < tree_info->num_nodes; i++)
410                    ~ ^ ~~~~~~~~~~~~~~~~~~~~
411    wtree.c:686:19: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare]
412        for (i = 0; i < node->num_children; i++)
413                    ~ ^ ~~~~~~~~~~~~~~~~~~
414    
415    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
416
417commit af90a105ec97c6d856d2e8a80e8822c3e192d1e9
418Author: Alan Coopersmith <alan.coopersmith@oracle.com>
419Date:   Sat May 9 11:19:33 2015 -0700
420
421    Replace remaining sprintf calls with snprintf
422    
423    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
424
425commit 9ffefd5b3d38e9ed2b5ed59bc50e8a7da761fb77
426Author: Alan Coopersmith <alan.coopersmith@oracle.com>
427Date:   Sat May 9 11:17:38 2015 -0700
428
429    Replace XtMalloc+sprintf pair with XtAsprintf call
430    
431    Raises required version of libXt to >= 1.0.99.1
432    
433    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
434
435commit 15f9d88e13bda2617c05c278a1ca9f6ce26df479
436Author: Alan Coopersmith <alan.coopersmith@oracle.com>
437Date:   Sun Jun 1 21:06:47 2014 -0700
438
439    autogen.sh: Honor NOCONFIGURE=1
440    
441    See http://people.gnome.org/~walters/docs/build-api.txt
442    
443    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
444
445commit eed2fbbfc5292b5cf02d4c4b9f10266d8a41b787
446Author: Alan Coopersmith <alan.coopersmith@oracle.com>
447Date:   Sun Jun 1 21:06:47 2014 -0700
448
449    configure: Drop AM_MAINTAINER_MODE
450    
451    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
452
453commit 57e1f1c4aa60136ab22e3faf75832c728beee4aa
454Author: Eric S. Raymond <esr@thyrsus.com>
455Date:   Thu Jun 6 15:50:08 2013 -0400
456
457    Avoid a spurious  warning during XML upconversion.
458
459commit 703edaa26044cfa0a607fa7b93396095fdfdfbaa
460Author: Alan Coopersmith <alan.coopersmith@oracle.com>
461Date:   Sat Jan 19 09:21:50 2013 -0800
462
463    config: Add missing AC_CONFIG_SRCDIR
464    
465    Regroup AC statements under the Autoconf initialization section.
466    Regroup AM statements under the Automake initialization section.
467    
468    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
469
470commit c256f5a1e82ed874d8bd068901dd9b138adb6f89
471Author: Alan Coopersmith <alan.coopersmith@oracle.com>
472Date:   Sat Jan 12 16:05:16 2013 -0800
473
474    editres 1.0.6
475    
476    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
477
478commit d2fce327fd2c308c17aa239be27dca294cb52ca0
479Author: Alan Coopersmith <alan.coopersmith@oracle.com>
480Date:   Wed Dec 28 20:17:42 2011 -0800
481
482    Remove Xorg/XFree86 CVS/RCS id tags
483    
484    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
485
486commit 0d02b3888a6a0d5f7197c17ab4bfd9d31c8799df
487Author: Gaetan Nadon <memsize@videotron.ca>
488Date:   Wed Jan 19 10:06:55 2011 -0500
489
490    config: move man pages into their own directory
491    
492    Use services provided by XORG_MANPAGE_SECTIONS.
493    Use standard Makefile for man pages.
494    
495    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
496
497commit 367bb7e6ab70fe56ace5a02541c0913a34ab79c2
498Author: Gaetan Nadon <memsize@videotron.ca>
499Date:   Thu Jan 13 17:15:36 2011 -0500
500
501    man: replace hard coded man page section with substitution strings
502    
503    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
504
505commit acdd1245782190342e5736614b2ac25c497a9312
506Author: Gaetan Nadon <memsize@videotron.ca>
507Date:   Thu Jan 13 11:15:00 2011 -0500
508
509    man: remove trailing spaces and tabs
510    
511    Using s/[ \t]*$//
512    
513    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
514
515commit b2ea5e60a7ea43fc825936f23218a77f13b67e12
516Author: Gaetan Nadon <memsize@videotron.ca>
517Date:   Wed Jan 12 16:28:01 2011 -0500
518
519    config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
520    
521    This silences an Autoconf warning
522
523commit 3b09a1e5f853c32c6784b74914e126999959168a
524Author: Gaetan Nadon <memsize@videotron.ca>
525Date:   Wed Jan 12 15:29:49 2011 -0500
526
527    config: replace deprecated AC_HELP_STRING with AS_HELP_STRING
528    
529    This silences an Automake warning.
530    
531    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
532
533commit 17332856a27d27f4ea08b99d58b8e4167b7d815f
534Author: Alan Coopersmith <alan.coopersmith@oracle.com>
535Date:   Sat Oct 30 12:43:00 2010 -0700
536
537    editres 1.0.5
538    
539    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
540
541commit 9aa7a02bafe1a56837484c0122cb96f86b08c20e
542Author: Alan Coopersmith <alan.coopersmith@oracle.com>
543Date:   Sat Oct 30 12:41:18 2010 -0700
544
545    config: Remove unnecessary calls from configure.ac
546    
547    AC_PROG_CC & AC_PROG_INSTALL are provided by XORG_DEFAULT_OPTIONS now
548    
549    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
550
551commit bc60bafbf6ec232bd006e38312c200900cc63034
552Author: Alan Coopersmith <alan.coopersmith@oracle.com>
553Date:   Sat Oct 30 12:40:44 2010 -0700
554
555    config: upgrade to util-macros 1.8 for additional man page support
556    
557    Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS
558    The value of MAN_SUBST is the same for all X.Org packages.
559    
560    Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS
561    The existing statement can now be removed from the configuration file.
562    
563    Use automake provided $(AM_V_GEN) and XORG_DEFAULT_OPTIONS provided $(SED)
564    Enables silent rule and use platform appropriate version of sed.
565    
566    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
567
568commit 737c0d053505a8ece24f41320cd2bd5ecb3a212b
569Author: Gaetan Nadon <memsize@videotron.ca>
570Date:   Sat Oct 30 12:39:00 2010 -0700
571
572    config: update AC_PREREQ statement to 2.60
573    
574    Unrelated to the previous patches, the new value simply reflects
575    the reality that the minimum level for autoconf to configure
576    all x.org modules is 2.60 dated June 2006.
577    
578    ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz
579    
580    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
581    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
582
583commit c04cfb209c6da039728f15d0b9211557a2cb556d
584Author: Gaetan Nadon <memsize@videotron.ca>
585Date:   Sat Aug 7 21:07:30 2010 -0400
586
587    config: consolidate dependencies checking
588    
589    One single equivalent statement will do the job.
590    
591    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
592
593commit 00839b44d635eb3c5d5a3d1b1d764838af22d252
594Author: Gaetan Nadon <memsize@videotron.ca>
595Date:   Sat Dec 19 20:48:47 2009 -0500
596
597    configure.ac: use backticks rather than $() for cmd subs
598    
599    Use "$PKG_CONFIG" rather than hard coded "pkg-config"
600    
601    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
602
603commit 0d9b687b1eef24ba64f8dc15febb296cae727d30
604Author: Gaetan Nadon <memsize@videotron.ca>
605Date:   Thu Nov 26 09:19:52 2009 -0500
606
607    Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
608    
609    Now that the INSTALL file is generated.
610    Allows running make maintainer-clean.
611
612commit 1cfbbce10833e7902b30c50fe1da3dc83d40b8fe
613Author: Gaetan Nadon <memsize@videotron.ca>
614Date:   Wed Oct 28 14:09:07 2009 -0400
615
616    INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
617    
618    Add missing INSTALL file. Use standard GNU file on building tarball
619    README may have been updated
620    Remove AUTHORS file as it is empty and no content available yet.
621    Remove NEWS file as it is empty and no content available yet.
622
623commit 9d6212392730f5cdec9906eb90385c766a87de9c
624Author: Gaetan Nadon <memsize@videotron.ca>
625Date:   Tue Oct 27 15:07:24 2009 -0400
626
627    Deploy the new XORG_DEFAULT_OPTIONS #24242
628    
629    This macro aggregate a number of existing macros that sets commmon
630    X.Org components configuration options. It shields the configuration file from
631    future changes.
632
633commit 49f5b0c58b5c2efa23dde717c52be5e4161e3993
634Author: Gaetan Nadon <memsize@videotron.ca>
635Date:   Mon Oct 26 22:08:37 2009 -0400
636
637    Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
638    
639    ChangeLog filename is known to Automake and requires no further
640    coding in the makefile.
641
642commit be42557f3db73875b9789f5fc7457703e97face0
643Author: Gaetan Nadon <memsize@videotron.ca>
644Date:   Thu Oct 22 12:34:14 2009 -0400
645
646    .gitignore: use common defaults with custom section # 24239
647    
648    Using common defaults will reduce errors and maintenance.
649    Only the very small or inexistent custom section need periodic maintenance
650    when the structure of the component changes. Do not edit defaults.
651
652commit 86eb733aaddc362427d533b7cf157447690152a5
653Author: Gaetan Nadon <memsize@videotron.ca>
654Date:   Sun Sep 27 15:43:39 2009 -0400
655
656    Makefile.am: do not include autogen.sh in distribution #24183
657    
658    This is a private build script that should not be distributed
659
660commit aebe52fd87925353c687fbd26c5547410d4b96c1
661Author: Alan Coopersmith <alan.coopersmith@sun.com>
662Date:   Tue Sep 22 20:05:21 2009 -0700
663
664    editres 1.0.4
665    
666    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
667
668commit e919068b70411167e3f239ad32d1fd4ad2a0c10d
669Author: Alan Coopersmith <alan.coopersmith@sun.com>
670Date:   Tue Sep 22 20:05:04 2009 -0700
671
672    Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS
673    
674    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
675
676commit 086d2257cc5ad59f1e2aa7362a912e4855edc4be
677Author: Alan Coopersmith <alan.coopersmith@sun.com>
678Date:   Tue Sep 22 20:04:19 2009 -0700
679
680    Fill in AUTHORS & README
681    
682    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
683
684commit b86d1b71813cfa582aa28356ee6a2196a67ba8d4
685Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
686Date:   Mon Jan 12 17:32:36 2009 -0200
687
688    Ansification and compile warning fixes.
689    
690      This also uses XORG_CHANGELOG and XORG_CWARNFLAGS, corrects
691    make distcheck and all gcc 4.3 and sparse warnings.
692
693commit 82c17cd232a016f0c552f38453774abfb0bf17fe
694Author: James Cloos <cloos@jhcloos.com>
695Date:   Wed Aug 20 10:32:48 2008 -0400
696
697    xaw8 is gone, use xaw7
698
699commit 332e17ae6ebec0dbb7c13d63dd4758cb2979bcdc
700Author: Julien Cristau <jcristau@debian.org>
701Date:   Fri May 16 14:20:03 2008 +0200
702
703    $(builddir) is the current directory
704    
705    Apparently automake doesn't always export the builddir variable.
706    This fixes my previous commit.
707
708commit 3b8c583e5a3d8733419cf5517d22b40f31c93e4c
709Author: Julien Cristau <jcristau@debian.org>
710Date:   Sun Apr 20 19:41:13 2008 +0200
711
712    Fix build with builddir != srcdir
713
714commit a0e6c84ab34146b71c1b52b10452987ba1cc869a
715Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
716Date:   Thu Mar 27 20:07:29 2008 -0700
717
718    Build fix for file systems that are not case sensitive
719
720commit 724c09e17dde32d5713388d6e9de0ad3fc004870
721Author: James Cloos <cloos@jhcloos.com>
722Date:   Thu Dec 6 15:51:04 2007 -0500
723
724    Add missing PHONY line for automatic ChangeLog generation
725
726commit 4c6a0418e2499f01a1b2ef06bdec77ef208fe15b
727Author: Alan Coopersmith <alan.coopersmith@sun.com>
728Date:   Fri Aug 10 16:16:43 2007 -0700
729
730    Change editres_CFLAGS to AM_CFLAGS to make automake-1.10 happier
731    
732    Makefile.am:27: compiling `actions.c' with per-target flags requires `AM_PROG_CC_C_O' in `configure.ac'
733
734commit 960a84a735daedd7b4df009c46d2f8a751335676
735Author: Alan Coopersmith <alan.coopersmith@sun.com>
736Date:   Tue Jan 23 17:00:54 2007 -0800
737
738    Version bump: 1.0.3
739
740commit 6894715b043dbbbf0b622561f2de57cd89bf408d
741Author: Alan Coopersmith <alan.coopersmith@sun.com>
742Date:   Tue Jan 23 17:00:22 2007 -0800
743
744    Fill in COPYING file with copyright/license from *.c files
745
746commit d134cf4e83beccea282c49d1768e4ecf6b1ea52e
747Author: Alan Coopersmith <alan.coopersmith@sun.com>
748Date:   Tue Jan 23 16:57:59 2007 -0800
749
750    Replace static ChangeLog with dist-hook to generate from git log
751
752commit f8e170f16e591f349482ebfe166a639f60b78a19
753Author: Alan Coopersmith <alan.coopersmith@sun.com>
754Date:   Tue Jan 2 18:44:34 2007 -0800
755
756    renamed: .cvsignore -> .gitignore
757
758commit f29f6eb20486b84ab0f73dbbc4295a2193fdf451
759Author: Eric S. Raymond <esr@thyrsus.com>
760Date:   Tue Jan 2 18:43:21 2007 -0800
761
762    Bug 9513: Unknown macro & other formatting fixes in editres.1x
763    
764    <https://bugs.freedesktop.org/show_bug.cgi?id=9513>
765
766commit 0a067639699a5639516200e780a68a779a82bde0
767Author: Daniel Stone <daniel@fooishbar.org>
768Date:   Sat Dec 16 00:33:35 2006 +0200
769
770    bump to 1.0.2
771
772commit 54a41faa66c411e9f82fb00333cd407cb94f4c3e
773Author: Daniel Stone <daniel@fooishbar.org>
774Date:   Fri Dec 15 23:51:21 2006 +0200
775
776    remove config.h from _SOURCES
777    Remove config.h from _SOURCES, so it doesn't get distributed.
778
779commit 67b0dc56b4d0ce6d5ffe36a8b638c79b7f89cf30
780Author: Kevin E Martin <kem@kem.org>
781Date:   Wed Dec 21 02:29:42 2005 +0000
782
783    Update package version for X11R7 release.
784
785commit 80b0ef68994d37db8a43fb8862969111c2ef3170
786Author: Adam Jackson <ajax@nwnk.net>
787Date:   Mon Dec 19 16:22:40 2005 +0000
788
789    Stub COPYING files
790
791commit 084dc660379fe0d2cd8833d3a8967c45d793f48e
792Author: Kevin E Martin <kem@kem.org>
793Date:   Thu Dec 15 00:24:01 2005 +0000
794
795    Update package version number for final X11R7 release candidate.
796
797commit 8113fde1cc66413534f82820c363f7a142ca7b08
798Author: Kevin E Martin <kem@kem.org>
799Date:   Wed Dec 7 16:17:58 2005 +0000
800
801    Change to use the app-defaults default dir configured in libXt.
802
803commit 81d4322158703bcccc10040984a48db852e489c4
804Author: Kevin E Martin <kem@kem.org>
805Date:   Tue Dec 6 22:48:16 2005 +0000
806
807    Change *man_SOURCES ==> *man_PRE to fix autotools warnings.
808
809commit 9a5d8daff97901931aa983afe060be6c4583d36f
810Author: Kevin E Martin <kem@kem.org>
811Date:   Sat Dec 3 05:49:15 2005 +0000
812
813    Update package version number for X11R7 RC3 release.
814
815commit 500b5abb8c280b2f9450157822f2080d94d1f754
816Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
817Date:   Mon Nov 28 22:01:36 2005 +0000
818
819    Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4
820        update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir)
821
822commit 5700b32bf8a970ccbcc4c6204dfa74f6c1b795cc
823Author: Eric Anholt <anholt@freebsd.org>
824Date:   Mon Nov 21 10:34:55 2005 +0000
825
826    Another pass at .cvsignores for apps.
827
828commit dc8c4e03c64c0aaad4101cbf737d333049e0ade3
829Author: Eric Anholt <anholt@freebsd.org>
830Date:   Sun Nov 20 22:08:48 2005 +0000
831
832    Add/improve .cvsignore files for apps.
833
834commit ab7ebeb62f2d9cf3934bcc6c91d7f2ca29603bec
835Author: Kevin E Martin <kem@kem.org>
836Date:   Wed Oct 19 02:47:48 2005 +0000
837
838    Update package version number for RC1 release.
839
840commit 6b6f7ea565d3d034ff3406be3c8538a058100203
841Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
842Date:   Tue Oct 18 00:32:53 2005 +0000
843
844    Change default install dir for app-default files from
845        $(sysconfdir)/X11/app-defaults to $(libdir)/X11/app-defaults to match
846        the monolith & allow localization
847
848commit ee6d1e9b005eaf30cff6ac3dd9cc40919e90d884
849Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
850Date:   Mon Oct 17 23:56:19 2005 +0000
851
852    Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions to
853        work better with BSD make
854
855commit 860f17c45f423b7d19ad78061ec1d785fa9fedf5
856Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
857Date:   Fri Oct 14 00:25:41 2005 +0000
858
859    Use sed to fill in variables in man page
860
861commit 3d586c48b217f6f783cd8b39bedd6b34f047444c
862Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
863Date:   Thu Oct 13 20:10:59 2005 +0000
864
865    Fix app-default files to install under the same names as in the monolith
866        instead of their short names used only for 14-character filename length
867        limited ancient filesystems
868
869commit 18a1a2898c1124d8ec359b5320e00e58d0758c56
870Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
871Date:   Mon Aug 1 20:25:27 2005 +0000
872
873    Install man pages to section 1 instead of section m (Patch from Donnie
874        Berkholz)
875
876commit 46c342a910eed04ed23ea5b3ccf3280818c098a9
877Author: Kevin E Martin <kem@kem.org>
878Date:   Fri Jul 29 21:22:28 2005 +0000
879
880    Various changes preparing packages for RC0:
881    - Verify and update package version numbers as needed
882    - Implement versioning scheme
883    - Change bug address to point to bugzilla bug entry form
884    - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to
885        reenable it)
886    - Fix makedepend to use pkgconfig and pass distcheck
887    - Update build script to build macros first
888    - Update modular Xorg version
889
890commit 3f55c0717f22df8c36bc2d64fc2ace1b5e9b34a6
891Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
892Date:   Tue Jul 26 15:44:01 2005 +0000
893
894    Replace more GNU make-ism's with more portable macros
895
896commit 193cf93becd97779c8d6ee790efa78387c71b258
897Author: Adam Jackson <ajax@nwnk.net>
898Date:   Wed Jul 20 19:31:48 2005 +0000
899
900    Use a unique token for PKG_CHECK_MODULES. Otherwise, if you use a global
901        configure cache, you cache it, and the cached value is probably wrong.
902
903commit 3fbfc8390e09c5d63a8ab37342f09784acc13485
904Author: Matthieu Herrb <matthieu.herrb@laas.fr>
905Date:   Sun Jul 17 20:11:01 2005 +0000
906
907    fix rules to work with non-GNU make and outside of $srcdir
908
909commit d15169a6a4c05a63b17ae630c9ade3b14a3d7181
910Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
911Date:   Mon Jun 27 22:30:58 2005 +0000
912
913    Use $(foreach ) instead of listing the appdefaults files twice
914
915commit 349b2847900798cacdfe358eb8eb4773106657e8
916Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
917Date:   Mon Jun 27 21:35:04 2005 +0000
918
919    - Fix string test in lib/Xaw/xaw.m4
920    - Xaw/Xaw7/Makefile.am: add -DXAW7
921    - add build system for editres
922
923commit 9391b5d706fe66ac05cb3af1fd0263eed13776c8
924Author: Egbert Eich <eich@suse.de>
925Date:   Mon Apr 4 10:17:07 2005 +0000
926
927    Fixed sentinels in Xt, editres and xedit to reduce number of warnings with
928        gcc4 (Andreas Schwab).
929
930commit 3528e71f7e176f696c360bee56dd78b7b9f95fc3
931Author: Egbert Eich <eich@suse.de>
932Date:   Fri Apr 23 19:54:32 2004 +0000
933
934    Merging XORG-CURRENT into trunk
935
936commit 9ba152d28e1a57bd0e0c841ba35e6374070ba2dc
937Author: Egbert Eich <eich@suse.de>
938Date:   Sun Mar 14 08:34:50 2004 +0000
939
940    Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004
941
942commit 9ad041dcc1fa1e142b9f688463f93fb1ecc31fd5
943Author: Egbert Eich <eich@suse.de>
944Date:   Wed Mar 3 12:12:50 2004 +0000
945
946    Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004
947
948commit 18876207a03f0a8c2210ba1decc726db1cf53702
949Author: Egbert Eich <eich@suse.de>
950Date:   Thu Feb 26 13:36:15 2004 +0000
951
952    readding XFree86's cvs IDs
953
954commit 82de5e8b51be2df116d3d9c8cdea65f8468f7298
955Author: Egbert Eich <eich@suse.de>
956Date:   Thu Feb 26 09:23:53 2004 +0000
957
958    Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
959
960commit f35a8fcb820cbe4cfb1ded89677d5828a34ddec0
961Author: Kaleb Keithley <kaleb@freedesktop.org>
962Date:   Tue Nov 25 19:29:02 2003 +0000
963
964    XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks
965
966commit 6e4057717156adf6dba781d30db3f60a475ea7e4
967Author: Kaleb Keithley <kaleb@freedesktop.org>
968Date:   Fri Nov 14 16:48:57 2003 +0000
969
970    XFree86 4.3.0.1
971
972commit efce7cb078dd34e9e9f7d6f5f5cdd0c8ef267691
973Author: Kaleb Keithley <kaleb@freedesktop.org>
974Date:   Fri Nov 14 15:54:52 2003 +0000
975
976    R6.6 is the Xorg base-line
977