OSDN Git Service

* mkfixinc.sh: Check error code from 'cat'. Don't try running
[pf3gnuchains/gcc-fork.git] / fixincludes / ChangeLog
1 2004-11-23  Geoffrey Keating  <geoffk@apple.com>
2
3         * mkfixinc.sh: Check error code from 'cat'.  Don't try running
4         built fixincl program.
5         * mkheaders.in: Use @SHELL@ rather than ${SHELL} to avoid picking
6         up csh from user.
7
8 2004-11-20  Roger Sayle  <roger@eyesopen.com>
9
10         * inclhack.def (alpha_pthread_init): Fix technical problems with
11         the last check-in caused by CVS variable substitution.
12         * fixincl.x: Likewise.
13         * tests/base/pthread.h: Likewise.
14
15 2004-11-20  Roger Sayle  <roger@eyesopen.com>
16             Bruce Korb  <bkorb@gnu.org>
17
18         * inclhack.def (alpha_pthread_init): New fix.
19         * fixincl.x: Regenerate.
20         * tests/base/pthread.h: Update for new test.
21
22 2004-11-15  Bruce Korb  <bkorb@gnu.org>
23
24         * fixincl.c(fix_with_system): correct misuse of variables and
25         incorrect application of "sizeof()".
26
27 2004-11-13  Joseph S. Myers  <joseph@codesourcery.com>
28
29         * inclhack.def (hpux_maxint, limits_ifndefs, math_huge_val_ifndef,
30         svr4__p, undefine_null): Remove.
31         * fixincl.x: Regenerate.
32         * tests/base/AvailabilityMacros.h, tests/base/com_err.h: New.
33         * tests/base/sys/param.h: Remove.
34         * tests/base/curses.h, tests/base/math.h, tests/base/testing.h,
35         tests/base/sys/limits.h: Update.
36
37 2004-11-12  Mike Stump  <mrs@apple.com>
38
39         * Makefile.in (html): Add html generation support.
40
41 2004-11-12  Joseph S. Myers  <joseph@codesourcery.com>
42
43         * inclhack.def (sco_math): Bypass on __GNUG__.
44         (sysz_stdlib_for_sun): Bypass on _CLASSIC_ANSI_TYPES.
45         * fixincl.x: Regenerate.
46
47 2004-11-09  Joseph S. Myers  <joseph@codesourcery.com>
48
49         * inclhack.def (hpux8_bogus_inlines): Bypass on __GNUG__.
50         (int_abort_free_and_exit, sun_malloc, sysv68_string): Bypass on
51         _CLASSIC_ANSI_TYPES.
52         (sun_auth_proto): Bypass on __cplusplus.
53         * fixincl.x: Regenerate.
54
55 2004-11-05  Geoffrey Keating  <geoffk@apple.com>
56
57         * Makefile.in (mostlyclean): Add fixinc.sh.
58         (clean): Add mkheaders.
59         (distclean): New.
60         (dvi): New.
61         (info): New.
62         (installcheck): New.
63
64 2004-11-05  Paolo Bonzini  <bonzini@gnu.org>
65
66         * Makefile.in (mostlyclean, distclean): New targets.
67
68 2004-11-04  Geoffrey Keating  <geoffk@apple.com>
69
70         * configure.ac: Add code to determine noncanonical_target,
71         local_prefix, gcc_version; process mkheaders.in to make mkheaders.
72         * configure: Regenerate.
73         * fixinc.in: Move here from gcc/; fix many cross-hosting bugs.
74         * mkfixinc.sh: Move here from gcc/; update for changes to fixinc.in.
75         * mkheaders.in: Move here from gcc/; remove some unnecessary macros;
76         update for changes to fixinc.in.
77         * Makefile.in: Add many new macros.
78         (install): New target.
79         (mkheaders): New target.
80         (fixinc.sh): New target.
81         (all): Add mkheaders and fixinc.sh.
82         * README-fixinc: Move here from gcc/.
83
84 2004-11-01  Mike Stump  <mrs@apple.com>
85
86         * inclhack.def (stdio_va_list): Break out clients from here...
87         (stdio_va_list_clients): ...to here.  Also, don't fix if stdarg.h is
88         included or ifdef va_start.
89         * fixincl.x: Regenerate.
90
91 2004-10-28  Mike Stump  <mrs@apple.com>
92
93         * inclhack.def (void_null): Avoid changing NULL on C++ friendly
94         systems.
95         * fixincl.x: Regenerate.
96
97 2004-10-27  Geoffrey Keating  <geoffk@apple.com>
98
99         * inclhack.def (darwin_gcc4_breakage): New.
100         * fixincl.x: Regenerate.
101
102 2004-10-27  Aaron W. LaFramboise  <aaronavay62@aaronwl.com>
103
104         PR bootstrap/17832
105
106         * fixfixes.c (main): Check for _PC_NAME_MAX.
107
108 2004-10-27  Paolo Bonzini  <bonzini@gnu.org>
109
110         PR other/17991
111
112         * configure.ac: Fix typo.
113         * configure: Regenerate.
114         * fixincl.c (fix_with_system): tSCC is not a pointer.  Fix.
115
116 2004-10-20  Aaron W. LaFramboise  <aaronavay62@aaronwl.com>
117
118         PR bootstrap/17832
119
120         * fixincl.c (SIGCHLD): Remove definition.
121         (initialize): Remove SIGIOT and SIGPIPE checks.
122         (create_file): Fix mkdir() for Win32.
123         (internal_fix): Use dup2() instead of fcntl().
124
125         * fixlib.h (SIGQUIT): Define if undefined.
126         (SIGIOT): Same.
127         (SIGPIPE): Same.
128         (SIGALRM): Same.
129         (SIGKILL): Same.
130
131         * procopen.c (chain_open): Use dup2() instead of fcntl().
132
133 2004-08-14  Paolo Bonzini  <bonzini@gnu.org>
134
135         PR other/17991
136
137         * Makefile.in (ALLOBJ, TESTOBJ, FIXOBJ): Add fixopts.o.
138         Update copyright year.
139         * fixfixes.c (main): Call initialize_opts from fixopts.c.
140         * fixincl.c (initialize): Call initialize_opts from fixopts.c,
141         do not include code for parsing options (environment vars).
142         (fix_with_system): Use a search path for applyfix, so that you
143         can run the test suite with two-process fixincludes.
144         * fixopts.c: New file.
145         * configure.ac: Add --enable-twoprocess.  Export ac_exeext
146         to config.h.  Default to --enable-twoprocess for MinGW32.
147         * config.h.in: Regenerate.
148         * configure: Regenerate.
149
150 2004-10-04  Loren J. Rittle  <ljrittle@acm.org>
151
152         * tests/base/sys/cdefs.h: Update from test area.
153
154 2004-09-17  Roger Sayle  <roger@eyesopen.com>
155
156         * inclhack.def (linux_ia64_ucontext): New fix.
157         * fixincl.x: Regenerate.
158         * tests/base/sys/ucontext.h: New file.
159
160 2004-09-15  Roger Sayle  <roger@eyesopen.com>
161
162         * tests/base/sys/time.h: Correct mismatch in 2004-09-10 check-in.
163         * tests/base/stdlib.h: Likewise.
164
165 2004-09-13  Loren J. Rittle  <ljrittle@acm.org>
166
167         * inclhack.def (freebsd_gcc4_breakage): Add.
168         * fixincl.x: Regenerate.
169         * tests/base/sys/cdefs.h: Update for new test.
170
171 2004-09-10  Adam Nemet  <anemet@lnxw.com>
172
173         * inclhack.def (lynx_void_int): Remove.
174         (lynxos_fcntl_proto): Remove.
175         (lynxos_no_warning_in_sys_time_h): New fix.
176         (lynxos_missing_putenv): New fix.
177         * fixincl.x: Regenerate.
178         * tests/base/fcntl.h: Remove.
179         * tests/base/sys/time.h: Update from test area.
180         * tests/base/curses.h: Likewise.
181         * tests/base/stdlib.h: Likewise.
182
183 2004-09-03  Jan Beulich  <jbeulich@novell.com>
184
185         * inclhack.def: Suppress exception_structure and math_exception
186         for NetWare headers.
187         * fixincl.x: Regenerate.
188
189 2004-08-31  Paolo Bonzini  <bonzini@gnu.org>
190
191         * .cvsignore: New.
192         * Makefile.in: From gcc/fixinc/Makefile.in, making it fully
193         autoconfiscated.
194         * configure.ac: New.
195         * config.h.in: Generate.
196         * configure: Generate.
197         * aclocal.m4: New.
198         * fixlib.h: Remove inclusions of gcc files.
199         * system.h: New.
200
201         Other files copied from gcc/fixinc.