Mercurial > ~dholland > hg > tradcpp > index.cgi
annotate CHANGES @ 183:4c3375895c6e
Don't use <stdbool.h> unless __STDC__ is large enough.
Works around Solaris's broken environment.
author | David A. Holland |
---|---|
date | Fri, 12 Jun 2015 03:28:19 -0400 |
parents | f7814226906c |
children | d359d9b86327 |
rev | line source |
---|---|
151 | 1 pending |
183
4c3375895c6e
Don't use <stdbool.h> unless __STDC__ is large enough.
David A. Holland
parents:
182
diff
changeset
|
2 - Don't rely on <stdbool.h> existing, as (predictably) it doesn't |
4c3375895c6e
Don't use <stdbool.h> unless __STDC__ is large enough.
David A. Holland
parents:
182
diff
changeset
|
3 work on Solaris. |
182 | 4 - Typo fix in man page from Jason McIntyre; and change "Usage" to |
5 "usage" in usage for pedantic reasons, from Igor Sobrado. | |
181
44ea61019069
Accept "-" as the input file, or as the output file.
David A. Holland
parents:
176
diff
changeset
|
6 - Accept "-" as either input or output file name to mean stdin or |
44ea61019069
Accept "-" as the input file, or as the output file.
David A. Holland
parents:
176
diff
changeset
|
7 stdout respectively. Suggested by Jonathan Gray. |
176
a2f047301c15
Replace Joerg's place_setfile with something that at least sort of works.
David A. Holland
parents:
151
diff
changeset
|
8 - Fix output spacing behavior to match gcc when newlines appear in or |
a2f047301c15
Replace Joerg's place_setfile with something that at least sort of works.
David A. Holland
parents:
151
diff
changeset
|
9 while looking for macro arguments. Partly from Joerg Sonnenberger. |
a2f047301c15
Replace Joerg's place_setfile with something that at least sort of works.
David A. Holland
parents:
151
diff
changeset
|
10 - Implement __FILE__ and __LINE__ macros. Mostly from Joerg Sonnenberger. |
a2f047301c15
Replace Joerg's place_setfile with something that at least sort of works.
David A. Holland
parents:
151
diff
changeset
|
11 - Implement #line. Partly from Joerg Sonnenberger. |
151 | 12 - Declare usage() with PF(). From wiz. |
13 | |
147 | 14 release 0.4 (20130713) |
141 | 15 - Fix stupid build problem introduced in 0.3.1. |
145 | 16 - Accept and ignore -m32, which imake issues willy-nilly on a bunch |
17 of platforms. I thought this had already been done, but apparently | |
18 not. | |
143 | 19 - Don't use the <err.h> functions. There are still people out there |
145 | 20 using legacy systems missing them. |
21 - Sort out some more issues pertaining to handling quoted strings. | |
22 - Add some more tests. | |
141 | 23 |
138 | 24 release 0.3.1 (20130709) |
135
eaae8014a94a
Don't assert and leak memory if failing during argument collection.
David A. Holland
parents:
133
diff
changeset
|
25 - Don't leak memory and assert if a bad command-line option comes |
eaae8014a94a
Don't assert and leak memory if failing during argument collection.
David A. Holland
parents:
133
diff
changeset
|
26 after a -D or a -include foo. |
137 | 27 - Since imake is a principal application for tradcpp and imake carefully |
28 hides what it's doing when you run it, when rejecting an invalid option | |
29 be sure to report *what* that option is. | |
135
eaae8014a94a
Don't assert and leak memory if failing during argument collection.
David A. Holland
parents:
133
diff
changeset
|
30 |
133 | 31 release 0.3 (20130616) |
128
1cda505ddc78
Don't expand macros within character constants.
David A. Holland
parents:
127
diff
changeset
|
32 - Don't eval the control expression of the first #if of a block when |
127 | 33 already in a false block; it might not be valid. Reported by |
34 Baptiste Daroussin. | |
128
1cda505ddc78
Don't expand macros within character constants.
David A. Holland
parents:
127
diff
changeset
|
35 - Don't recognize comments within character constants. |
129
2e1496dd96c4
Don't recognize macro argument parens or commas within quotes.
David A. Holland
parents:
128
diff
changeset
|
36 - Don't recognize macro argument parentheses or commas within strings, |
2e1496dd96c4
Don't recognize macro argument parens or commas within quotes.
David A. Holland
parents:
128
diff
changeset
|
37 or within character constants either. |
127 | 38 |
124 | 39 release 0.2 (20130611) |
102 | 40 - auto-recognize more builtin PowerPC and mips macros |
103 | 41 - pass -Wunused (partly from Baptiste Daroussin) |
104 | 42 - allow absolute paths in include files (partly from Baptiste Daroussin) |
105
600f36cd7353
don't use getprogname() in the name of portability
David A. Holland
parents:
104
diff
changeset
|
43 - don't use getprogname() in the name of portability |
106
ecec7c16e3ba
add a couple more tests, taken from the 2010 tech-toolchain thread
David A. Holland
parents:
105
diff
changeset
|
44 - add tests arising from December 2010 tech-toolchain thread (one |
ecec7c16e3ba
add a couple more tests, taken from the 2010 tech-toolchain thread
David A. Holland
parents:
105
diff
changeset
|
45 from der Mouse, one of mine) |
107 | 46 - clean out usage of sys/cdefs.h macros and don't use the implementation |
47 namespace | |
109 | 48 - make -Wcomment work again |
112 | 49 - fix handling of relative includes |
110 | 50 - provide a man page |
115 | 51 - other minor improvements |
102 | 52 |
53 release 0.1 (20130610) | |
54 - first release, works with at least some imake templates |