1commit 0de70ff2270fc363b0c0acf7bdb9fea0299bfc01
2Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3Date:   Mon Jan 8 10:29:48 2024 -0800
4
5    imake 1.0.10
6    
7    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8
9commit f730aecd3d939655f28ebd292b98eed754d8ad36
10Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11Date:   Mon Dec 11 13:46:56 2023 -0800
12
13    Fix -Wincompatible-pointer-types warning (Issue #3)
14    
15    Fixes warning from gcc 13 that is becoming an error in gcc 14
16    
17    imake.c: In function ‘doit’:
18    imake.c:797:29: error: passing argument 2 of ‘execvp’ from incompatible
19     pointer type [-Werror=incompatible-pointer-types]
20      797 |                 execvp(cmd, argv);
21          |                             ^~~~
22          |                             |
23          |                             const char **
24    In file included from imake.c:172:
25    /usr/include/unistd.h:359:33: note: expected ‘char * const*’
26     but argument is of type ‘const char **’
27      359 | extern int execvp(const char *, char *const *);
28          |                                 ^~~~~~~~~~~~~
29    
30    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
31
32commit 1d789120225d8ce63c368797e644cc9ccc003ce4
33Author: Alan Coopersmith <alan.coopersmith@oracle.com>
34Date:   Thu Dec 15 16:50:35 2022 -0800
35
36    configure: Use AC_SYS_LARGEFILE to enable large file support
37    
38    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
39
40commit 828185ebd754270c5391d5646d986fe0a82ced23
41Author: Alan Coopersmith <alan.coopersmith@oracle.com>
42Date:   Thu Jul 28 17:30:21 2022 -0700
43
44    gitlab CI: stop requiring Signed-off-by in commits
45    
46    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
47
48commit d9b33435847e27b44b8e357327728cb3e39d5822
49Author: Alan Coopersmith <alan.coopersmith@oracle.com>
50Date:   Wed Oct 19 10:29:38 2022 -0700
51
52    imake 1.0.9
53    
54    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
55
56commit 323bc318e9bfb5cea24dfca0a47031d1861506dd
57Author: Alan Coopersmith <alan.coopersmith@oracle.com>
58Date:   Sat Sep 17 09:44:37 2022 -0700
59
60    Add .git-blame-ignore-revs to hide whitespace commits from git blame
61    
62    To use this in your local repo clone, you will need to either run
63    `git blame --ignore-revs-file .git-blame-ignore-revs`
64    or set it permanently with
65    `git config blame.ignoreRevsFile .git-blame-ignore-revs`
66    
67    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
68
69commit 187945b6f93f193d7b8a4580191a040186de0f18
70Author: Alan Coopersmith <alan.coopersmith@oracle.com>
71Date:   Sat Sep 17 09:36:45 2022 -0700
72
73    unifdef SIGNALRETURNSINT
74    
75    Signal handlers have been required to have a void return, not int,
76    since C89.  This #define hadn't been set in many years.
77    
78    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
79
80commit a511600f0391e7ecc2fa55e5cda222b5535422e8
81Author: Alan Coopersmith <alan.coopersmith@oracle.com>
82Date:   Sat Sep 17 09:30:20 2022 -0700
83
84    Simplify HAVE_MKSTEMP block
85    
86    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
87
88commit 4945a09e914c48a2a55dacdb24ffe2806378641b
89Author: Alan Coopersmith <alan.coopersmith@oracle.com>
90Date:   Sat Sep 17 09:24:18 2022 -0700
91
92    Make Emalloc() argument a size_t to match malloc()
93    
94    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
95
96commit 8c0dfb819569baf3c388bf9915fea1d332a29908
97Author: Alan Coopersmith <alan.coopersmith@oracle.com>
98Date:   Sat Sep 17 09:18:31 2022 -0700
99
100    Fix -Wshadow warnings
101    
102    imake.c: In function ‘FindImakefile’:
103    imake.c:662:27: warning: declaration of ‘Imakefile’ shadows a global declaration [-Wshadow]
104     FindImakefile(const char *Imakefile)
105                               ^~~~~~~~~
106    imake.c:319:13: note: shadowed declaration is here
107     const char *Imakefile = NULL;
108                 ^~~~~~~~~
109    
110    imake.c: In function ‘define_os_defaults’:
111    imake.c:1636:9: warning: declaration of ‘name’ shadows a previous local [-Wshadow]
112        char name[PATH_MAX];
113             ^~~~
114    imake.c:1430:18: note: shadowed declaration is here
115      struct utsname *name = NULL;
116                      ^~~~
117    
118    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
119
120commit 0db44a83b2bb9b74a266d41e8b7d2731713d7eac
121Author: Alan Coopersmith <alan.coopersmith@oracle.com>
122Date:   Sat Sep 17 09:11:05 2022 -0700
123
124    Fix -Wsign-compare warnings
125    
126    imake.c: In function ‘ask_sun_compiler_for_versions’:
127    imake.c:1200:11: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
128       if (len < sizeof(cmdtorun)) {
129               ^
130    imake.c: In function ‘get_gcc’:
131    imake.c:1380:16: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
132      for (i = 0; i < sizeof (gcc_path) / sizeof gcc_path[0]; i++) {
133                    ^
134    imake.c: In function ‘writetmpfile’:
135    imake.c:2027:41: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
136      if (fwrite(buf, sizeof(char), cnt, fd) == -1)
137                                             ^~
138    
139    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
140
141commit 793d9d83620c50308f128e0a635224a2fbb14a62
142Author: Emil Velikov <emil.l.velikov@gmail.com>
143Date:   Mon Mar 9 12:00:52 2015 +0000
144
145    autogen.sh: use quoted string variables
146    
147    Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent
148    fall-outs, when they contain space.
149    
150    Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
151    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
152    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
153    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
154
155commit 3cee0855e54d539e042177a1ff64e08cc29c34b7
156Author: Peter Hutterer <peter.hutterer@who-t.net>
157Date:   Tue Jan 24 10:32:07 2017 +1000
158
159    autogen.sh: use exec instead of waiting for configure to finish
160    
161    Syncs the invocation of configure with the one from the server.
162    
163    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
164    Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
165    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
166
167commit 279d6a683ceed4e07a00acce2d122f48a6428dac
168Author: Alan Coopersmith <alan.coopersmith@oracle.com>
169Date:   Sat Jun 18 09:38:25 2022 -0700
170
171    Use AC_CONFIG_FILES to replace the deprecated AC_OUTPUT with parameters
172    
173    configure.ac:130: warning: AC_OUTPUT should be used without arguments.
174    configure.ac:130: You should run autoupdate.
175    
176    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
177
178commit eebb170e09a82982027ed50acf6f48e82f90a29e
179Author: Alan Coopersmith <alan.coopersmith@oracle.com>
180Date:   Sat Jan 15 16:10:21 2022 -0800
181
182    Fix spelling/wording issues
183    
184    Found by using:
185        codespell --builtin clear,rare,usage,informal,code,names
186    
187    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
188
189commit 9b3cb72304be1d79b865890a9bd05765806a05a5
190Author: Alan Coopersmith <alan.coopersmith@oracle.com>
191Date:   Sat Jan 15 15:18:43 2022 -0800
192
193    gitlab CI: add a basic build test
194    
195    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
196
197commit 6861335df1bc9483a077bc81c4b327e009b63626
198Author: Alan Coopersmith <alan.coopersmith@oracle.com>
199Date:   Sat Jan 15 15:16:26 2022 -0800
200
201    Build xz tarballs instead of bzip2
202    
203    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
204
205commit 5d1d5150e5863f019e407d572556a8a08e834c1e
206Author: Alan Coopersmith <alan.coopersmith@oracle.com>
207Date:   Sat Mar 16 16:25:02 2019 -0700
208
209    imake 1.0.8
210    
211    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
212
213commit 5366d1c2e0865b84e009127e75a5bd9a2d278fe3
214Author: Alan Coopersmith <alan.coopersmith@oracle.com>
215Date:   Fri Dec 7 20:28:00 2018 -0800
216
217    Update configure.ac bug URL for gitlab migration
218    
219    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
220
221commit ed90f727ce513717b5d4809ecbc1909a7281dd3d
222Author: Alan Coopersmith <alan.coopersmith@oracle.com>
223Date:   Fri Dec 7 20:27:55 2018 -0800
224
225    Update README for gitlab migration
226    
227    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
228
229commit 67ec423f8f617ddd09f304b1966114049c81833e
230Author: Andrew Savchenko <bircoph@gmail.com>
231Date:   Fri Feb 16 17:31:16 2018 +0000
232
233    imake support for lcc compiler
234    
235    https://bugs.freedesktop.org/show_bug.cgi?id=105136
236    
237    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
238    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
239
240commit 373a53cdcb59c53599cc95f2dccf8cd42e748443
241Author: Mihail Konev <k.mvc@ya.ru>
242Date:   Thu Jan 26 14:00:22 2017 +1000
243
244    autogen: add default patch prefix
245    
246    Signed-off-by: Mihail Konev <k.mvc@ya.ru>
247
248commit 94430c9cffc4ba5780f76c8130878f23d499811e
249Author: Alan Coopersmith <alan.coopersmith@oracle.com>
250Date:   Fri Dec 11 17:02:10 2015 -0800
251
252    README: reword status section
253    
254    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
255
256commit b1e8e29448467d875b2efe5c83043ec2770e18d6
257Author: Alan Coopersmith <alan.coopersmith@oracle.com>
258Date:   Sat Nov 8 09:41:42 2014 -0800
259
260    Use SEEK_* names instead of raw numbers for fseek whence argument
261    
262    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
263
264commit 6d42b63eb7c9c7da89d431db6f28aff1928bb22a
265Author: Alan Coopersmith <alan.coopersmith@oracle.com>
266Date:   Wed Jun 4 18:14:59 2014 -0700
267
268    autogen.sh: Honor NOCONFIGURE=1
269    
270    See http://people.gnome.org/~walters/docs/build-api.txt
271    
272    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
273
274commit 5e32ede6f904e024f3956484aceb4a4be37d423f
275Author: Alan Coopersmith <alan.coopersmith@oracle.com>
276Date:   Wed Jun 4 18:14:59 2014 -0700
277
278    configure: Drop AM_MAINTAINER_MODE
279    
280    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
281
282commit 4063190bf2fd7e3c61b80e98d72e134609612bf8
283Author: Julien Cristau <jcristau@debian.org>
284Date:   Wed May 21 20:51:03 2014 +0200
285
286    Bump to 1.0.7
287    
288    Signed-off-by: Julien Cristau <jcristau@debian.org>
289
290commit 16e54de5d8c58a1d051a5f4bcb7357aa9f9facff
291Author: Greg Turner <gmt@be-evil.net>
292Date:   Mon Mar 24 20:37:15 2014 +0100
293
294    Pass files to cpp via CLI arg instead of stdin to workaround gcc 4.8 change
295    
296    Replicates Alan Coopersmith's fix for xinit.
297    
298    Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=74031
299    
300    Signed-off-by: Julien Cristau <jcristau@debian.org>
301
302commit f231ed52c4adeb071de0553af7a575687a6d3dc5
303Author: Julien Cristau <jcristau@debian.org>
304Date:   Sat Aug 17 12:12:08 2013 +0200
305
306    Replace fprintf with fputs
307    
308    Fix build failure with -Werror=format-security:
309    imake.c:1008:5: error: format not a string literal and no format arguments [-Werror=format-security]
310         fprintf (inFile, command);
311         ^
312    
313    Signed-off-by: Julien Cristau <jcristau@debian.org>
314    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
315
316commit 89494a51d006c20d16d3f08225a0345fecaae546
317Author: Alan Coopersmith <alan.coopersmith@oracle.com>
318Date:   Mon Jul 22 21:52:56 2013 -0700
319
320    imake 1.0.6
321    
322    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
323
324commit bb9cbad3cfaee60bf88ef50b5a165ed9321d4548
325Author: Eric S. Raymond <esr@thyrsus.com>
326Date:   Thu Jun 6 16:11:33 2013 -0400
327
328    Avoid use of low-level troff markup that can't be lifted structurally.
329
330commit 4db5afc933064ab165cd081c0d5a83bef87b770e
331Author: Alan Coopersmith <alan.coopersmith@oracle.com>
332Date:   Sat Jan 19 09:15:52 2013 -0800
333
334    config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
335    
336    Regroup AC statements under the Autoconf initialization section.
337    Regroup AM statements under the Automake initialization section.
338    Add missing AC_CONFIG_SRCDIR
339    
340    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
341
342commit 6cb46d6d9c7ce6fbf32381edec5bfa993f8bdda9
343Author: Alan Coopersmith <alan.coopersmith@oracle.com>
344Date:   Fri Jan 4 19:59:14 2013 -0800
345
346    unifdef -U__UNIXOS2__
347    
348    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
349
350commit 1675120e31e1e54f184da2c0cce9d6f6ddb0c892
351Author: Alan Coopersmith <alan.coopersmith@oracle.com>
352Date:   Thu Dec 27 17:00:43 2012 -0800
353
354    Let configure pick cpp path on Solaris, instead of hardcoding in imakemdep.h
355    
356    Simply removing the definition lets the path found by configure be used,
357    seems to be the simplest way to handle the move from /usr/ccs/lib/cpp on
358    Solaris 10 and older to /usr/lib/cpp on Solaris 11 & later.
359    
360    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
361
362commit 5a9246d6804ab8a6f2f23f3f4ace84a415140937
363Author: Alan Coopersmith <alan.coopersmith@oracle.com>
364Date:   Sat Aug 25 11:19:39 2012 -0700
365
366    Ensure inFile is always closed on error in cppit()
367    
368    Another instance of the can-return-in-rare-cases nature of LogFatal()
369    raising red flags in static analysis.
370    
371    Resolves warning from Parfait 1.0.1:
372    Error: File Leak
373       File Leak: Leaked File inFile
374            at line 1719 of imake.c in function 'cppit'.
375              inFile initialized at line 1699 with fopen
376              inFile leaks when inFile != NULL at line 1700
377                  and fprintf(inFile, "%s\n", "/* imake - temporary file */") < 0 at line 1702.
378    
379    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
380
381commit 464ba911c3b84abb0140e9f66756d1cc887f78ad
382Author: Alan Coopersmith <alan.coopersmith@oracle.com>
383Date:   Sat Aug 25 11:10:46 2012 -0700
384
385    Avoid closing inFile twice in CheckImakefileC if LogFatal returns
386    
387    Imake's LogFatal() checks if it's being re-entered and if so, returns,
388    so we can't mark it NORETURN, leading to static analyzers believing it
389    can return even in call paths it shouldn't.
390    
391    Resolves warning from Parfait 1.0.1:
392    Error: File Invalid
393       File not Initialized: The value inFile is not initialized as a file.
394            at line 748 of imake.c in function 'CheckImakefileC'.
395              inFile initialized at line 738 with fopen(masterc, "r").
396              inFile destroyed at line 745 with fclose(inFile).
397    
398    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
399
400commit 061960e38cb0d6873bda2550f6a8952668193888
401Author: Alan Coopersmith <alan.coopersmith@oracle.com>
402Date:   Wed Mar 7 21:47:27 2012 -0800
403
404    imake 1.0.5
405    
406    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
407
408commit 575c3788c8b770a2c32c9d8461bc7422e3b89676
409Author: Alan Coopersmith <alan.coopersmith@oracle.com>
410Date:   Fri Feb 10 18:05:36 2012 -0800
411
412    xmkmf.man: Remove instructions for "X Consortium" monolithic build tree
413    
414    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
415
416commit d33b96db427a2305bd230360c9653a91dbff79e0
417Author: Alan Coopersmith <alan.coopersmith@oracle.com>
418Date:   Fri Oct 7 18:55:13 2011 -0700
419
420    Fix a bunch of "too many arguments for format" warnings
421    
422    Now that the log functions take variable arguments, don't need to pass
423    empty strings when there is no argument for the format string.
424    
425    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
426
427commit 4e3e7fec072591389b4f7b89475ea81e6a4e0ee5
428Author: Alan Coopersmith <alan.coopersmith@oracle.com>
429Date:   Fri Oct 7 18:50:48 2011 -0700
430
431    Convert error logging functions to normal idioms
432    
433    Allows use of printf attributes for checking format strings/arguments,
434    gets rid of LogFatalI wrapper just used for casting int to char *.
435    
436    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
437
438commit 5aed95badf1bab68b848234fdd25da1ea7025264
439Author: Alan Coopersmith <alan.coopersmith@oracle.com>
440Date:   Fri Oct 7 18:36:53 2011 -0700
441
442    Rework temp filename pointers into const & non-const parts
443    
444    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
445
446commit bfdbd65cf45eae6ba3565348cec1eeb09927cf5e
447Author: Alan Coopersmith <alan.coopersmith@oracle.com>
448Date:   Fri Oct 7 18:31:52 2011 -0700
449
450    Add const attributes to fix gcc -Wwrite-strings warnings
451    
452    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
453
454commit 7f299010c9327ab1a65a6b781c58b4c3098d13b7
455Author: Alan Coopersmith <alan.coopersmith@oracle.com>
456Date:   Fri Oct 7 18:11:43 2011 -0700
457
458    Strip trailing whitespace
459    
460    Performed with: find * -type f | xargs perl -i -p -e 's{[ \t]+$}{}'
461    git diff -w & git diff -b show no diffs from this change
462    
463    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
464
465commit 99bb38c528f87a2692253ede9f54c4320c6f0986
466Author: Alan Coopersmith <alan.coopersmith@oracle.com>
467Date:   Fri Jan 7 20:21:30 2011 -0800
468
469    Remove unused variable in get_sun_compiler_versions
470    
471    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
472
473commit d2e1f5ca4614afbc1ca30581fcb1f6e50423fc06
474Author: Adam Jackson <ajax@nwnk.net>
475Date:   Mon Nov 1 14:29:33 2010 +1000
476
477    Silence useless pedantry warning from find(1) when running cleanlinks.
478    
479    "find: warning: you have specified the -depth option after a non-option
480    argument -type, but options are not positional (-depth affects tests
481    specified before it as well as those specified after it).  Please specify
482    options before other arguments."
483    
484    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
485    Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr>
486
487commit bf237073d39629599cb77bf0144f862c175bb640
488Author: Alan Coopersmith <alan.coopersmith@oracle.com>
489Date:   Sat Oct 30 19:10:35 2010 -0700
490
491    imake 1.0.4
492    
493    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
494
495commit 29c3c8f2fc3859b1c8e1dd1f2327ab51c40fca21
496Author: Gaetan Nadon <memsize@videotron.ca>
497Date:   Sat Oct 30 19:08:31 2010 -0700
498
499    config: update AC_PREREQ statement to 2.60
500    
501    Unrelated to the previous patches, the new value simply reflects
502    the reality that the minimum level for autoconf to configure
503    all x.org modules is 2.60 dated June 2006.
504    
505    ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz
506    
507    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
508    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
509
510commit 3a3c6e584a1fee04a6bc4c11581c283d5fa8c603
511Author: Alan Coopersmith <alan.coopersmith@oracle.com>
512Date:   Sat Oct 30 19:04:22 2010 -0700
513
514    Use autoconf standard HAVE_MKSTEMP instead of HAS_MKSTEMP
515    
516    We no longer need to maintain compatibility with the monolith
517    Imakefile -D flags in the sources.
518    
519    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
520
521commit f6587b17a6aef0404853ad5113158fddf4a90219
522Author: Alan Coopersmith <alan.coopersmith@oracle.com>
523Date:   Sat Oct 30 18:59:39 2010 -0700
524
525    config: Remove unnecessary calls from configure.ac
526    
527    AC_PROG_CC, AC_PROG_SED, & AC_PROG_INSTALL are provided by
528     XORG_DEFAULT_OPTIONS now
529    PKG_CONFIG_MODULES handles AC_SUBST of the CFLAGS & LIBS variables
530    
531    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
532
533commit bdf937d11774595eefc2ded78dcdf52dfe420443
534Author: Alan Coopersmith <alan.coopersmith@oracle.com>
535Date:   Sat Oct 30 18:57:15 2010 -0700
536
537    config: upgrade to util-macros 1.8 for additional man page support
538    
539    Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS
540    The value of MAN_SUBST is the same for all X.Org packages.
541    
542    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
543
544commit ca3374aee64c71c810159839c9b54c84b2bced24
545Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
546Date:   Tue Apr 27 20:18:10 2010 -0500
547
548    Nuke RCS tags
549    
550    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
551    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
552
553commit 01a05f973d52edc461c1100a939a70ea0ce9b048
554Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
555Date:   Tue Apr 27 20:38:15 2010 -0500
556
557    mkdirhier: use mkdir -p
558    
559    The '-p' option to mkdir(1) is required by SUSv2/Unix98, so we should be
560    able to rely on it on all systems we support.  Some parts need to be
561    left in place in order to not alter some of its ancient, shall we say,
562    quirks.
563    
564    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
565    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
566
567commit 098bf61eb89c3d93d2ed814d3e39e6412f6fcf9e
568Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
569Date:   Tue Apr 27 19:18:27 2010 -0500
570
571    Use standard .gitignore with custom section for imake
572    
573    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
574    Reviewed-by: Gaetan Nadon <gaetan.nadon@videotron.ca>
575
576commit 04da52fb5c4721c0218dbe6537c9ad0f7bd2ab04
577Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
578Date:   Tue Apr 27 19:14:35 2010 -0500
579
580    Use AC_PROG_SED to find sed
581    
582    AC_PROG_SED sets SED as the path to a fully-functional 'sed' (which may
583    also be called 'gsed' if GNU sed is installed alongside a proprietary
584    version).
585    
586    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
587    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
588
589commit 1127a5cb3166f4d5d0564732b3842fe81bf3e701
590Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
591Date:   Tue Apr 27 19:06:32 2010 -0500
592
593    Allow for EXEEXT in appman_DATA rule
594    
595    As a result of commit 22578c3718e41da72c66ce6a4186ec7315d6e3ad:
596    
597    make[1]: *** No rule to make target `imake.exe.1', needed by `all-am'.
598    make[1]: *** No rule to make target `revpath.exe.1', needed by `all-am'.
599    
600    On PE/COFF platforms EXEEXT is set to ".exe" and is appended by automake
601    to all *_PROGRAMS.  For portability this must be accounted for in any
602    custom rules which refer to any *_PROGRAMS.
603    
604    Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
605    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
606
607commit 48145e04d24b1c575a22bac69c3c3033f72322fc
608Author: Alan Coopersmith <alan.coopersmith@oracle.com>
609Date:   Thu Apr 15 19:52:20 2010 -0700
610
611    imake 1.0.3
612    
613    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
614
615commit 6a71b39eb5a425aeee13f0e62d225dd0c6bf4e05
616Author: Alan Coopersmith <alan.coopersmith@oracle.com>
617Date:   Thu Apr 15 19:38:50 2010 -0700
618
619    Fill in COPYING file with notices from code & man pages
620    
621    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
622
623commit 8d8c90973f5862e8d324a4e1cd94896a43d0c27e
624Author: Alan Coopersmith <alan.coopersmith@oracle.com>
625Date:   Thu Apr 15 19:22:57 2010 -0700
626
627    Use $(AM_V_GEN) to silence commands for generating scripts & man pages
628    
629    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
630
631commit a00cc6e7bd60eb81aeee4fa7dcbb3a07b352760d
632Author: Alan Coopersmith <alan.coopersmith@oracle.com>
633Date:   Thu Apr 15 19:20:36 2010 -0700
634
635    Migrate to xorg-macros 1.4, with XORG_DEFAULT_OPTIONS & INSTALL
636    
637    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
638
639commit 4e25c6af47bfac6e2b6910f5d415d788cf3398c4
640Author: Gaetan Nadon <memsize@videotron.ca>
641Date:   Wed Jul 8 10:25:14 2009 -0400
642
643    imake: use XORG_CHANGELOG macro to create ChangeLog. #22611
644    
645    Build break: Makefile.am: command not found: git-log
646    
647    Adding the macro in configure.ac and use it in Makefile.am
648    Refer to: https://bugs.freedesktop.org/show_bug.cgi?id=22611
649    Tested: running autogen.sh, make and 'make dist'
650    
651    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
652    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
653
654commit 2e164f61a461a21a74f2050f8da886373307cc5a
655Author: Alan Coopersmith <alan.coopersmith@sun.com>
656Date:   Wed Jun 24 13:49:13 2009 -0700
657
658    Make cpp statement indenting more consistent
659    
660    Auto-fixed with imdent from Paul Dubois (of imake book infamy)
661    Also stripped trailing whitespace to make git happier
662    
663    git diff -w shows no changes in this patch other than whitespace
664    
665    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
666
667commit 29e3bccdb5dbc5ea45d58bd3d454a4b8cda36398
668Author: Alan Coopersmith <alan.coopersmith@sun.com>
669Date:   Wed Jun 24 13:45:09 2009 -0700
670
671    Drop some ancient SunOS 4 & A/UX support bits
672    
673    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
674
675commit 209bab8478a5a205d715a5f2f50cd32c4b69581e
676Author: Alan Coopersmith <alan.coopersmith@sun.com>
677Date:   Wed Jun 24 13:43:15 2009 -0700
678
679    Drop some unused #if 0 & #ifdef MONOLITH sections
680    
681    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
682
683commit 5667fbb0f85f2b34aaba7ea702e7d252f2d4adb6
684Author: Alan Coopersmith <alan.coopersmith@sun.com>
685Date:   Mon Jun 22 18:59:09 2009 -0700
686
687    Convert HAS_MKSTEMP check from #if ...OS list... to autoconf
688    
689    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
690
691commit 22578c3718e41da72c66ce6a4186ec7315d6e3ad
692Author: Alan Coopersmith <alan.coopersmith@sun.com>
693Date:   Mon Jun 22 18:26:21 2009 -0700
694
695    Only install man pages for programs/scripts being installed
696    
697    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
698
699commit 705178e8f8414730739386f8841cd99f49184d56
700Author: Alan Coopersmith <alan.coopersmith@sun.com>
701Date:   Mon Jun 22 18:18:50 2009 -0700
702
703    Add .gitignore
704    
705    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
706
707commit 8f0d3c8cb5e74faffbb546b0a0b47a883859fd24
708Author: Alan Coopersmith <alan.coopersmith@sun.com>
709Date:   Mon Jun 22 18:15:26 2009 -0700
710
711    Doc updates: reflect current state, pointers to Paul Dubois website/book
712    
713    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
714
715commit eb8e41c3b3f280c34947579a5ee9fa511aee9acf
716Merge: e215b32 9653950
717Author: Jeremy C. Reed <reed@tx.reedmedia.net>
718Date:   Thu Feb 14 23:27:42 2008 -0600
719
720    Merge branch 'master' of git+ssh://git.freedesktop.org/git/xorg/util/imake
721
722commit e215b32a5b46a0c49be1baa4595f258f275c3fb0
723Author: Jeremy C. Reed <reed@tx.reedmedia.net>
724Date:   Thu Feb 14 22:41:51 2008 -0600
725
726    Stop core dump.
727    
728    Don't abort() if pclose(). Because pipe may have already closed.
729    
730    This is in get_stackprotector (only on OpenBSD and DragonFly).
731
732commit 96539504eec3e6e1e43a6f894770835765b0007d
733Author: Jeremy C. Reed <reed@tx.reedmedia.net>
734Date:   Thu Feb 14 22:41:51 2008 -0600
735
736    Stop core dump.
737    
738    Don't abort() if pclose(). Because pipe may have already closed.
739    
740    This is in get_stackprotector (only on OpenBSD and DragonFly).
741    
742    I doubt this function even worked, because gcc -v goes to stderr so
743    it reads nothing.
744
745commit 7e541aa0efe7000972d992a3c1569c4f7a8d9201
746Author: James Cloos <cloos@jhcloos.com>
747Date:   Thu Dec 6 16:39:16 2007 -0500
748
749    Replace static ChangeLog with dist-hook to generate from git log
750
751commit e10ad52b0a0d4fc63120e6b301d21f0829beef77
752Author: Adam Jackson <ajax@nwnk.net>
753Date:   Fri May 19 18:44:42 2006 +0000
754
755    Bump to 1.0.2
756
757commit ef2ef80f564098fe244c5a2065930b8502879043
758Author: Donnie Berkholz <spyderous@gentoo.org>
759Date:   Sat Apr 8 21:43:31 2006 +0000
760
761    Allow specifying TMPDIR environment variable to use instead of /tmp, for
762        systems on which /tmp is mounted noexec (Martin Schlemmer).
763
764commit b8d8f49ba2660d4d84ca9c3e4a82118a07c4e889
765Author: Kevin E Martin <kem@kem.org>
766Date:   Wed Dec 21 02:30:08 2005 +0000
767
768    Update package version for X11R7 release.
769
770commit 7dd15a5adbad23deba0a7c2b5bb39a7bb39e70d6
771Author: Adam Jackson <ajax@nwnk.net>
772Date:   Mon Dec 19 16:36:01 2005 +0000
773
774    Stub COPYING files
775
776commit bad47fc3927b766cde5af54c6c9786f2dac5345c
777Author: Kevin E Martin <kem@kem.org>
778Date:   Thu Dec 15 00:24:40 2005 +0000
779
780    Update package version number for final X11R7 release candidate.
781
782commit 4c12f30420340a4a4f0f6f0d21d20da988982820
783Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
784Date:   Sun Dec 11 17:18:40 2005 +0000
785
786    Fix mkhtmlindex rules to not use $< so they work with non-GNU makes.
787
788commit b87a680569dd388ad108d43087aee6c8a50ff663
789Author: Kevin E Martin <kem@kem.org>
790Date:   Sat Dec 10 16:30:35 2005 +0000
791
792    Add support for building imake config utilities.
793
794commit 15cb7c3dfb5b7d4a9e5d84514c8c5140ff6050c8
795Author: Kevin E Martin <kem@kem.org>
796Date:   Tue Dec 6 22:48:46 2005 +0000
797
798    Change *man_SOURCES ==> *man_PRE to fix autotools warnings.
799
800commit bab6d99929b6dfa339993093ea7dacffc98c5acd
801Author: Kevin E Martin <kem@kem.org>
802Date:   Sat Dec 3 05:49:47 2005 +0000
803
804    Update package version number for X11R7 RC3 release.
805
806commit a7790a9fc6e70f5dcefbe58219b5192857c88c45
807Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
808Date:   Mon Nov 28 22:00:24 2005 +0000
809
810    Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4
811        update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir)
812
813commit c9db5d7eb65a59b7e4bae091acb8194bd01de284
814Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
815Date:   Thu Nov 24 18:06:39 2005 +0000
816
817    Add makeg script & man page to imake package
818
819commit d6313cf27320281f24d6f852fc7f8d0bb8aacd6b
820Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
821Date:   Sat Nov 12 19:55:28 2005 +0000
822
823    Substitute variables in man pages Set CPP_PROGRAM to path to cpp
824
825commit cd8ef36c4862f710621c35a4732ca3d0e49e8d5e
826Author: Kevin E Martin <kem@kem.org>
827Date:   Wed Nov 9 21:25:57 2005 +0000
828
829    Update package version number for X11R7 RC2 release.
830
831commit e53156a68f0138a8b0af408436fd54826b677cc6
832Author: Kean Johnson <kean@armory.com>
833Date:   Tue Nov 8 06:33:24 2005 +0000
834
835    See ChangeLog entry 2005-11-07 for details.
836
837commit 009b63897b8d2bc4fd27ff04bc3884317cf0b17d
838Author: Kevin E Martin <kem@kem.org>
839Date:   Wed Oct 19 02:48:16 2005 +0000
840
841    Update package version number for RC1 release.
842
843commit 19f4715eb18c20d357f03ca6b245bec5e58833e5
844Author: Kevin E Martin <kem@kem.org>
845Date:   Sat Oct 8 20:46:40 2005 +0000
846
847    Updates for modular build
848
849commit f4937241d85b026f0beca69eba8ce448143e3f0f
850Author: Kevin E Martin <kem@kem.org>
851Date:   Sat Oct 8 20:38:57 2005 +0000
852
853    Build system for imake
854
855commit 5acc1119e447c0855f649b9d8ae8ddb9cf8373b7
856Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
857Date:   Mon Oct 3 16:17:10 2005 +0000
858
859    Bug #3812 <https://bugs.freedesktop.org/show_bug.cgi?id=3812> Patch #3462
860        <https://bugs.freedesktop.org/attachment.cgi?id=3462> GNU/kFreeBSD
861        Imake support (Robert Millan)
862
863commit ea133dd95dbd63d5db79af1f364e9678331989e2
864Author: Daniel Stone <daniel@fooishbar.org>
865Date:   Fri Aug 26 05:01:37 2005 +0000
866
867    Make makedepend excruciatingly safe (Debian #011).
868
869commit 5f90561e8ddcccec3d35355c7b4ad5925031f5d5
870Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
871Date:   Mon Aug 1 02:13:55 2005 +0000
872
873    Pass through __BUILTIN_VA_STRUCT and __BUILTIN_VA_ARG_INCR defines in
874        makedepend so it doesn't issue errors when source files include
875        <varargs.h> or <stdarg.h> on Solaris 10.
876
877commit 65ea7b4cc68153673dcdce016acd6ee6acc4aec3
878Author: Roland Mainz <roland.mainz@nrubsig.org>
879Date:   Wed Mar 2 11:20:29 2005 +0000
880
881    xc/config/cf/DragonFly.cf
882    xc/config/cf/Imake.cf
883    xc/config/cf/Imakefile
884    xc/config/imake/imake.c
885    xc/config/imake/imakemdep.h
886    xc/extras/drm/shared/drm.h
887    xc/include/Xos_r.h
888    xc/lib/xtrans/Xtranssock.c
889    xc/programs/Xserver/hw/xfree86/os-support/xf86_OSlib.h
890    xc/programs/Xserver/hw/xfree86/os-support/xf86_libc.h
891    xc/programs/Xserver/hw/xfree86/os-support/linux/lnx_agp.c
892    //bugs.freedesktop.org/show_bug.cgi?id=1712) attachment #2004
893        (https://bugs.freedesktop.org/attachment.cgi?id=2004): Add support for
894        DragonFly/BSD platform. Patch by Jeroen Ruigrok <asmodai@tendra.org>
895        and Mike Verona <firedragonfly@gmail.com>.
896
897commit ecdad73b62bb3222d02667d2add16d7417a5da9b
898Author: Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de>
899Date:   Thu Feb 24 15:31:09 2005 +0000
900
901    enable detection of gcc compiler for cygwin and mingw
902
903commit af6a6a1c8a30b88b2eb80aa47f58fd8ae26d9677
904Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
905Date:   Wed Jan 19 22:28:20 2005 +0000
906
907    Pass through additional #defines for Solaris. (Sun bug id #5097074 - Alan
908        Coopersmith)
909
910commit 19e94341580c4c108c8d1615ae4542e2ee27431a
911Author: Markus Kuhn <Markus.Kuhn@cl.cam.ac.uk>
912Date:   Sat Dec 4 00:42:46 2004 +0000
913
914    Encoding of numerous files changed to UTF-8
915
916commit eb6967199448890591bec799d70c45827bc188eb
917Author: Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de>
918Date:   Mon Nov 15 15:06:52 2004 +0000
919
920    Bufzilla #1802, http://freedesktop.org/bugzilla/show_bug.cgi?id=1802 Added
921        mingw (Win32) port
922
923commit 36fbf892d1c2740afa51911b6f2c2e4bf8f871c0
924Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
925Date:   Sat Oct 30 20:33:43 2004 +0000
926
927    Add -d flag for compilers like the Sun C compilers that produce dependency
928        lists themselves. To use with the Sun compilers, add to host.def: #
929        define UseCCMakeDepend YES # define DependFlags -cc $(CC) -d -xM (Sun
930        bug id #4245688 - fix by Alan Coopersmith)
931    Add Solaris to the platforms on which mprotect is run to set execute
932        permissions when necessary. (Sun bug id #6175128 - fix by Alan
933        Coopersmith)
934    Internationalize digital output (Sun bug id #4119396 - fix by Steve
935        Swales), add -bgpixmap option to set XPM file as background (originally
936        from STSF project version of xclock by Alan Coopersmith)
937    xc/programs/xmodmap/handle.c,pf.c xmodmap was printing line numbers which
938        are one too low in error messages (Xorg bugzilla #1739, Sun bug id
939        4637857 - fix by Sam Lau)
940
941commit 02fa88c73e7df616e1c620996d613b56a119ea4d
942Author: Egbert Eich <eich@suse.de>
943Date:   Tue Oct 19 13:50:06 2004 +0000
944
945    Enabling modules and DRI for Linux HPPA.
946    Removing hpsocket.c as it isn't used anywhere any more (Bugzilla #1584).
947
948commit 8be49ad988e8072389042bb9240b074b89a828ad
949Author: Egbert Eich <eich@suse.de>
950Date:   Mon Oct 18 14:26:35 2004 +0000
951
952    powerpc/powerpc64 build fixes.
953
954commit 53f7aa94ebd7864b411320efe8a615580fad7085
955Author: Matthieu Herrb <matthieu.herrb@laas.fr>
956Date:   Sat Oct 9 22:04:13 2004 +0000
957
958    Fix ProPolice support for OpenBSD (merge with the HasGccStackProtector
959        define that was used on OpenBSD).
960    remove -ansi from DefaultCCOptions on OpenBSD.
961
962commit a60680db574e2e6c910352c4093c06dc562741ef
963Author: Kevin E Martin <kem@kem.org>
964Date:   Wed Aug 11 21:14:02 2004 +0000
965
966    Apply PPC64 build patch (Bug #303, Mike A. Harris, Alan Coopersmith).
967
968commit e3174f16ac5aabc0da0c22c79b138103eaba0c28
969Author: Eric Anholt <anholt@freebsd.org>
970Date:   Fri Jun 11 17:59:30 2004 +0000
971
972    Allow overriding of os version with OSREL env var on FreeBSD. Used in the
973        ports cluster and cross-version testing.
974
975commit 73f12a29fbfdac7f1cb7956f32564e253e313527
976Author: Egbert Eich <eich@suse.de>
977Date:   Thu May 6 17:31:17 2004 +0000
978
979    BugZilla #601: Fixing makedepend choking on floating point exception
980        because CHAR_BIT is defined to __CHAR_BIT__ which is a compiler
981        intrinsic define. BugZilla #605: Fixing build on IA64 which is broken
982        due to the inclusion of the kernel header asm/page.h. Kernel headers
983        however don't work with
984    -ansi. The inclusion of asm/page.h can however savely be removed as it
985        there are plenty of other ways to determine the page size.
986
987commit e825f4eabd82155a1327c42f16a6e3bcba96b311
988Author: Egbert Eich <eich@suse.de>
989Date:   Fri Apr 23 18:42:00 2004 +0000
990
991    Merging XORG-CURRENT into trunk
992
993commit fa8f86352aab5825ca289969cfd11d90e56eb579
994Author: Egbert Eich <eich@suse.de>
995Date:   Sun Mar 14 08:27:28 2004 +0000
996
997    Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004
998
999commit 6c30fa731ba63151d792f278bf0b4dc3d2010d43
1000Author: Egbert Eich <eich@suse.de>
1001Date:   Wed Mar 3 12:09:38 2004 +0000
1002
1003    Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004
1004
1005commit aa4808e4d4245d9ef0e6dae09670295da49972d0
1006Author: Egbert Eich <eich@suse.de>
1007Date:   Thu Feb 26 13:34:16 2004 +0000
1008
1009    readding XFree86's cvs IDs
1010
1011commit cb1cabdedcd488a729923ef6677b5e7b13cb3d5a
1012Author: Egbert Eich <eich@suse.de>
1013Date:   Thu Feb 26 09:21:15 2004 +0000
1014
1015    Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
1016
1017commit b1abaa61cb80aa0c282dbb15c8d834c36c2c9443
1018Author: Egbert Eich <eich@suse.de>
1019Date:   Thu Jan 29 08:06:33 2004 +0000
1020
1021    Importing vendor version xf86-012804-2330 on Thu Jan 29 00:06:33 PST 2004
1022
1023commit 91f4b859c20d25898da3324921758c2d35523fd5
1024Author: Kaleb Keithley <kaleb@freedesktop.org>
1025Date:   Tue Nov 25 19:26:56 2003 +0000
1026
1027    XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks
1028
1029commit e5ab5c93d3178aa82b66e2c086b54e042930725e
1030Author: Kaleb Keithley <kaleb@freedesktop.org>
1031Date:   Fri Nov 14 16:48:20 2003 +0000
1032
1033    XFree86 4.3.0.1
1034
1035commit 1bc16368b0ff5701fa740aba943ac47a4f99b258
1036Author: Kaleb Keithley <kaleb@freedesktop.org>
1037Date:   Fri Nov 14 16:48:20 2003 +0000
1038
1039    Initial revision
1040
1041commit 86fae01174ab672736557a4bb1b2188cf3cec064
1042Author: Kaleb Keithley <kaleb@freedesktop.org>
1043Date:   Fri Nov 14 15:54:29 2003 +0000
1044
1045    R6.6 is the Xorg base-line
1046