OSDN Git Service

PR debug/13272
[pf3gnuchains/gcc-fork.git] / libiberty / ChangeLog
1 2003-12-22  Daniel Jacobowitz  <drow@mvista.com>
2
3         PR debug/13272
4         * Makefile.in (lbasename.o): Depend on filenames.h.
5         * lbasename.c: Include "filenames.h" instead of defining
6         its macros locally.
7
8 2003-12-22  Ian Lance Taylor  <ian@wasabisystems.com>
9
10         * cp-demangle.c (CP_DYNAMIC_ARRAYS): Define if compiler supports
11         dynamic arrays.
12         (struct d_operator_info): Add len field.
13         (struct d_builtin_type_info): Add len and java_len fields.
14         (struct d_standard_sub_info): Add simple_len, full_len, and
15         set_last_name_len fields.
16         (struct d_comp): Add len field to s_string.
17         (struct d_info): Add send, did_subs, and expansion fields.
18         (d_append_string_constant): Define.
19         (d_append_string): Remove.  Change all users to use
20         d_append_string_constant or d_append_buffer instead.
21         (d_make_sub): Add len parameter.  Change all callers.
22         (d_name): Increase expansion when substituting std::.
23         (d_unqualified_name): Increase expansion for an operator.
24         (d_number): Don't use multiplication for negative numbers.
25         (d_identifier): Make sure there are enough characters in the
26         string for the specified length.  Adjust expansion for an
27         anonymous namespace.
28         (d_operators): Initialize len field.
29         (d_special_name, d_ctor_dtor_name): Increase expansion.
30         (d_builtin_types): Initialize len and java_len fields.
31         (d_type): Increase expansion for a builtin type.
32         (d_cv_qualifiers): Increase expansion for each qualifier.
33         (d_bare_function_type): Decrease expansion when removing single
34         void parameter.
35         (d_template_param): Increment did_subs.
36         (d_expression): Increase expansion for an operator.
37         (d_expr_primary): Decrease expansion for a type we will print
38         specially.
39         (standard_subs): Initialize new fields.
40         (d_substitution): Increment did_subs when doing a normal
41         substitution.  Increase expansion for a special substitution.
42         (d_print): Add estimate parameter.  Change all callers.
43         (d_print_comp) [D_COMP_NAME]: Handle C++ case inline.
44         (d_print_comp) [D_COMP_BINARY]: Use length to avoid strcmp call.
45         (d_print_java_identifier): Rename from d_print_identifier.  Handle
46         only Java case.  Change caller.
47         (d_init_info): Change return type to void.  Change all callers.
48         Initialize send, did_subs, and expansion fields.  Do not
49         initialize comps and subs fields.
50         (d_demangle): Ifdef CP_DYNAMIC_ARRAYS, allocate comps and subs
51         arrays on stack.  Make an estimate of the length of the demangled
52         name.  Ifdef CP_DEMANGLE_DEBUG, print estimation failures.
53         (is_ctor_or_dtor): Ifdef CP_DYNAMIC_ARRAYS, allocate comps and
54         subs arrays on stack.
55
56 2003-12-20  Ian Lance Taylor  <ian@wasabisystems.com>
57
58         * cp-demangle.c (d_identifier): In Java mode, skip an optional '$'
59         after the identifier.
60         * testsuite/demangle-expected: Add test case.
61
62 2003-12-19  Ian Lance Taylor  <ian@wasabisystems.com>
63
64         Fix for PR c++/13447:
65         * cp-demangle.c (enum d_comp_type): Add D_COMP_LOCAL_NAME.
66         (d_dump, d_make_comp): Handle D_COMP_LOCAL_NAME.
67         (is_ctor_dtor_or_conversion): Handle D_COMP_LOCAL_NAME like
68         D_COMP_QUAL_NAME.
69         (is_ctor_or_dtor): Likewise.
70         (d_local_name): Use D_COMP_LOCAL_NAME rather than
71         D_COMP_QUAL_NAME.
72         (d_print_comp) [D_COMP_LOCAL_NAME]: New.
73         (d_prinT_comp) [D_COMP_TYPED_NAME]: If the left tree is
74         D_COMP_LOCAL_NAME, pull any qualifiers off its right subtree.
75         (d_print_mod_list): Handle D_COMP_LOCAL_NAME.
76         * testsuite/demangle-expected: Add two test cases.
77
78         * cp-demangle.c (d_print_function_type): Clear the global modifier
79         list when printing the modifiers, not just when printing the
80         function parameters.
81         * testsuite/demangle-expected: Add two test cases.
82
83 2003-12-15  Ian Lance Taylor  <ian@wasabisystems.com>
84
85         * cp-demangle.c (d_print_function_type): Print the function
86         parameters with no modifiers.
87         * testsuite/demangle-expected: Add test case.
88
89         * cp-demangle.c (d_demangle): If DMGL_PARAMS is not set, don't
90         expect that we've read the entire string.
91         (is_ctor_or_dtor): Don't expect that we've read the entire
92         string--reverse patch of 2003-11-29.
93
94 2003-12-15  Brendan Kehoe  <brendan@zen.org>
95
96         * libiberty/Makefile.in (floatformat.o): Add dependency on
97         config.h to accompany change of 2003-12-03.
98
99 2003-12-15  Ian Lance Taylor  <ian@wasabisystems.com>
100
101         Fix handling of constructor/destructor of standard substitution:
102         * cp-demangle.c (struct d_standard_sub_info): Define.
103         (d_substitution): Add prefix argument.  Change all callers.
104         Rework handling of standard substitutions to print full name when
105         qualifying a constructor/destructor, or when DMGL_VERBOSE is set.
106         * testsuite/demangle-expected: Add test case.
107
108         Fix handling of negative literal constants:
109         * cp-demangle.c (enum d_comp_type): Add D_COMP_LITERAL_NEG.
110         (d_dump, d_make_comp): Handle D_COMP_LITERAL_NEG.
111         (d_expr_primary): Use D_COMP_LITERAL_NEG for a negative number.
112         (d_print_comp): Handle D_COMP_LITERAL_NEG.
113         * testsuite/demangle-expected: Add test case.
114
115 2003-12-04  Ian Lance Taylor  <ian@wasabisystems.com>
116
117         * cp-demangle.c (IS_UPPER, IS_LOWER): Define.
118         (d_last_char): Define new macro.
119         (d_make_name): Reject an empty name.
120         (d_prefix, d_unqualified_name, d_type): Use new IS_* macros.
121         (d_substitution, d_print_identifier): Likewise.
122         (d_print_comp) [D_COMP_OPERATOR]: Likewise.
123         (d_print_comp) [D_COMP_TEMPLATE]: Use new d_last_char macro.
124         (d_print_mod) Use new d_last_char macro.
125         (d_print_cast): Use new d_last_char macro.
126         (is_ctor_or_dtor): Don't leak memory.
127
128         Fix handling of member function modifiers:
129         * cp-demangle.c (enum d_comp_type): Add D_COMP_RESTRICT_THIS,
130         D_COMP_VOLATILE_THIS, and D_COMP_CONST_THIS.
131         (d_dump): Dump new d_comp_type values.
132         (d_make_comp): Accept new d_comp_type values.
133         (has_return_type): Only accept _THIS variants of qualifiers.
134         (d_encoding): Without DMGL_PARAMS, only remove _THIS variants of
135         qualifiers.
136         (d_cv_qualifiers): Add member_fn parameter.  Change all callers.
137         (d_print_comp) [D_COMP_TYPED_NAME]: Rather than removing
138         qualifiers and printing them at the end, add _THIS qualifiers to
139         the modifier list.
140         (d_print_comp) [D_COMP_*_THIS]: New cases.
141         (d_print_comp) [D_COMP_PTRMEM_TYPE]: Remove special handling of
142         qualifiers.
143         (d_print_mod_list): Add suffix parameter.  Change all callers.
144         Keep walking the list even if the current modifier has been
145         printed.
146         (d_print_mod): Handle new _THIS qualifiers.
147         (d_print_function_type): Handle new _THIS qualifiers when deciding
148         whether to print a parenthesis.  Put a space before the
149         parenthesis in some cases.  Call d_print_mod_list again at the
150         end, passing suffix as 1.
151         (is_ctor_or_dtor): Look for new _THIS qualifiers.
152         * testsuite/demangle-expected: Add test case.
153
154         Fix for PR gcc/13304:
155         * cp-demangle.c (d_print_comp) [D_COMP_TEMPLATE]: If the character
156         before the '<' is itself a '<', insert a space.
157         (d_print_cast): Likewise.
158         * testsuite/demangle-expected: Add test case.
159
160         Fix for PR gcc/13244:
161         * cp-demangle.c (d_print_comp) [D_COMP_BINARY]: Wrap an expression
162         which uses the '>' operator in an extra layer of parens.
163         * testsuite/demangle-expected: Add test case.
164
165 2003-12-03  Ian Lance Taylor  <ian@wasabisystems.com>
166
167         * floatformat.c: Include "config.h" and <string.h> if available.
168         (INFINITY, NAN): Define if not defined by <math.h>.
169         (floatformat_to_double): Handle NaN, infinity, and denormalized
170         numbers.
171         (floatformat_from_double): Likewise.
172         (ieee_test): In debugging code, use little endian rather than big
173         endian.  Correct tests to handle NaN and to check correct sign of
174         zero.  Omit m68k extended test.
175         (main): Add more debugging cases.
176
177 2003-11-29  Ian Lance Taylor  <ian@wasabisystems.com>
178
179         * cp-demangle.c (d_demangle): Only return success if we consumed
180         the entire demangled string.
181         (is_ctor_or_dtor): Likewise.
182
183         * testsuite/demangle-expected: Revert one part of 2003-06-26 patch
184         to restore expected result of EDG test case to original expected
185         result.
186
187 2003-11-26  Ian Lance Taylor  <ian@wasabisystems.com>
188
189         * cp-demangle.c (struct d_print_mod): Add templates field.
190         (d_make_builtin_type): Check for NULL type.
191         (d_make_extended_operator): Check for NULL name.
192         (d_make_ctor, d_make_dtor): Likewise.
193         (d_mangled_name): Add top_level parameter.  Change all callers.
194         (d_encoding): If DMGL_PARAMS is not set, strip off initial
195         CV-qualifiers.
196         (d_type): Check some return values we rely on.
197         (d_bare_function_type, d_array_type): Likewise.
198         (d_pointer_to_member_type, d_template_args): Likewise.
199         (d_add_substitution): Fail if argument is NULL.
200         (d_print_resize): Check whether buf is NULL.
201         (d_print_comp): Save current templates list with each modifier.
202         Don't pass the modifier list down when printing a template.
203         (d_print_cast): Don't pass the modifier list down when printing a
204         template.
205         (d_print_mod_list): Temporarily set templates list while printing
206         a modifier.
207         (d_print_mod): Check that buf is not NULL before using it.
208         (d_print_function_type): Print parens if there is no modifier.
209         (d_init_info): Permit as many substitutions as there are
210         characters in the mangled name.
211         * testsuite/demangle-expected: Add two new test cases.
212
213 2003-11-25  Ian Lance Taylor  <ian@wasabisystems.com>
214
215         * cp-demangle.c (java_demangle_v3): Pass DMGL_PARAMS to
216         d_demangle.
217
218 2003-11-22  Ian Lance Taylor  <ian@wasabisystems.com>
219
220         * cp-demangle.c (d_encoding): Add top_level parameter.  Change all
221         callers.
222         (print_usage): Display new -p option.
223         (long_options): Add --no-params.
224         (main): Accept and handle -p.
225
226 2003-11-21  Ian Lance Taylor  <ian@wasabisystems.com>
227
228         * cp-demangle.c (has_return_type): Skip qualifiers when checking
229         whether we have a template.
230         * testsuite/demangle-expected: Add four new tests.
231
232 2003-11-20  Ian Lance Taylor  <ian@wasabisystems.com>
233
234         * testsuite/demangle-expected: Minor changes to match output of
235         new demangler: adjust whitespace in four tests, and change order
236         of qualifiers in one test.
237
238         * cp-demangle.c: Complete rewrite.
239
240 2003-11-19  Mark Mitchell  <mark@codesourcery.com>
241
242         * cp-demangle.c (demangle_type): Correct thinko in substitution
243         processing.
244
245 2003-11-18  Ian Lance Taylor  <ian@wasabisystems.com>
246
247         * cp-demangle.c (demangle_operator_name): Remove space before
248         "sizeof".
249         (demangle_type_ptr): Put qualifiers in the right place.  Handle
250         qualifiers in pointer to member specially.
251         (demangle_type): Handle qualifiers for pointer or reference
252         specially.  Handle function type.
253         (demangle_local_name): Save and restore caret around demangling of
254         initial encoding.
255
256         * testsuite/test-demangle.c (main): Don't pass DMGL_VERBOSE to
257         cplus_demangle.
258
259         * testsuite/Makefile.in (test-demangle): Depend upon libiberty.a.
260
261 2003-10-31  Andreas Jaeger  <aj@suse.de>
262
263         * floatformat.c (floatformat_always_valid): Add unused attribute.
264
265 2003-10-30  Josef Zlomek  <zlomekj@suse.cz>
266
267         Jan Hubicka <jh@suse.cz>
268         * vasprintf.c (int_vasprintf): Pass va_list by value.
269         Use va_copy for copying va_list.
270         (vasprintf): Pass va_list by value.
271
272 2003-10-30  Josef Zlomek  <zlomekj@suse.cz>
273
274         * hashtab.c (htab_find_slot_with_hash): Decrease n_deleted
275         instead of increasing n_elements when inserting to deleted slot.
276
277 2003-10-20  J. Brobecker  <brobecker@gnat.com>
278
279         * cplus-dem.c (demangle_template): Register a new Btype only
280         when needed.
281         * testsuite/demangle-expected: Add a new test.
282
283 2003-10-16  H.J. Lu  <hongjiu.lu@intel.com>
284
285         * testsuite/demangle-expected: Update the expected output of
286         _GLOBAL__I__Z2fnv.
287
288 2003-10-02  Daniel Jacobowitz  <drow@mvista.com>
289
290         * strerror.c: Revert last change.  Declare static sys_nerr
291         and sys_errlist using different names.
292
293 2003-10-01  Daniel Jacobowitz  <drow@mvista.com>
294
295         * strerror.c: Don't provide or reference sys_errlist if
296         strerror is available.
297
298 2003-10-01  H.J. Lu  <hongjiu.lu@intel.com>
299
300         * configure.in: Check if $MAKEINFO is missing.
301         * configure: Regenerated.
302
303 2003-09-24  Daniel Jacobowitz  <drow@mvista.com>
304
305         * configure.in: Use AC_PROG_CPP_WERROR.
306         * configure: Regenerated.
307
308 2003-09-22  Andrew Cagney  <cagney@redhat.com>
309
310         * floatformat.c (floatformat_i387_ext_is_valid): New function.
311         (floatformat_always_valid): New function.
312         (floatformat_i387_ext): Initialize new "is_valid" field to
313         "floatformat_i387_ext_is_valid".
314         (floatformat_ieee_single_little): Initialize "is_valid" field to
315         floatformat_always_valid.
316         (floatformat_ieee_double_big): Ditto.
317         (floatformat_ieee_double_little): Ditto.
318         (floatformat_ieee_double_little): Ditto.
319         (floatformat_ieee_double_littlebyte_bigword): Ditto.
320         (floatformat_i960_ext): Ditto.
321         (floatformat_m88110_ext): Ditto.
322         (floatformat_m88110_harris_ext): Ditto.
323         (floatformat_arm_ext_big): Ditto.
324         (floatformat_arm_ext_littlebyte_bigword): Ditto.
325         (floatformat_ia64_spill_big): Ditto.
326         (floatformat_ia64_spill_little): Ditto.
327         (floatformat_ia64_quad_big): Ditto.
328         (floatformat_ia64_quad_little): Ditto.
329         (floatformat_ia64_quad_little): Ditto.
330         (floatformat_is_valid): Call "is_valid".
331
332 2003-09-15  Andrew Cagney  <cagney@redhat.com>
333
334         * floatformat.c (get_field): Make "data" constant.
335         (floatformat_is_valid, floatformat_to_double): Make "from"
336         constant, fix casts.
337         (floatformat_from_double): Make "from" constant.
338
339 2003-09-15  Daniel Jacobowitz  <drow@mvista.com>
340
341         * floatformat.c (floatformat_is_valid): New function.
342         (get_field, put_field): Correct comments.
343
344 2003-09-06  Josef Zlomek  <zlomekj@suse.cz>
345
346         * fibheap.c (fibheap_replace_key_data): Change type of OKEY to
347         FIBHEAPKEY_T.
348
349 2003-09-02  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
350
351         PR bootstrap/12100
352         * aclocal.m4 (AC_LANG_FUNC_LINK_TRY): Define.
353         * configure: Rebuilt.
354
355 2003-08-27  Daniel Jacobowitz  <drow@mvista.com>
356
357         * aclocal.m4: Include acx.m4 and no-executables.m4.
358         (libiberty_AC_FUNC_STRNCMP): Use AC_LIBOBJ.
359         (LIB_AC_PROG_CC): Remove.
360         * configure.in: Update AC_PREREQ to 2.57.  Use GCC_NO_EXECUTABLES.
361         Use AC_PROG_CC and set ac_libiberty_warn_cflags instead of using
362         LIB_AC_PROG_CC.  Use AC_LIBOBJ.  Call AC_ISC_POSIX later, only if
363         performing link tests.
364         * configure: Regenerated.
365
366 2003-08-12  Nathanael Nerode  <neroden@gcc.gnu.org>
367
368         * cp-demangle.c: Clarify what package(s) this is part of.
369
370 2003-07-05  Danny Smith  <dannysmith@users.sourceforge.net>
371
372         * pex-win32.c (pexecute): Mark parameters this_pname and
373         temp_base as unused. Remove unused variables retries,
374         sleep_interval. Initialize org_stdin, org_stdout.
375         (pwait): Mark parameter flags as unused.
376
377 2003-07-02  Danny Smith  <dannysmith@users.sourceforge.net>
378
379         * pex-win32.c (fix_argv): Ensure that the executable pathname
380         uses Win32 backslashes.
381         (pexecute): Cast away constness when assigning *errmsg_arg.
382
383 2003-06-26  H.J. Lu <hongjiu.lu@intel.com>
384
385         * testsuite/demangle-expected: Add more GNU V3 testcases.
386
387 2003-06-22  Zack Weinberg  <zack@codesourcery.com>
388
389         * safe-ctype.c: Use HOST_CHARSET_ASCII and HOST_CHARSET_EBCDIC,
390         not HC_ASCII and HC_EBCDIC.
391         Add documentation in form expected by gather-docs.
392         * hex.c: Use HOST_CHARSET, not hand-coded check of character set.
393         * Makefile.in, functions.texi: Regenerate.
394
395 2003-06-21  Zack Weinberg  <zack@codesourcery.com>
396
397         * safe-ctype.c: Separate out EOF==-1 check.  Use HOST_CHARSET
398         for charset determination.
399
400 2003-06-19  Dara Hazeghi  <dhazeghi@yahoo.com>
401
402         * configure.in: Add check for malloc.h needed by
403         m68k for function free().
404         * configure: Regenerated.
405         * config.in: Add HAVE_MALLOC_H.
406         * hashtab.c: include malloc.h were available for
407         free().
408
409 2003-06-09  Albert Chin-A-Young  <china@thewrittenword.com>
410
411         PR bootstrap/10974
412         * physmem.c: Update comment.
413         * configure.in: Modify test for _system_configuration for older
414         AIX systems.
415
416         * config.in, configure: Regenerated.
417
418 2003-06-05  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
419
420         PR other/10810
421         * test-demangle.c (getline): Fix fence-post error.
422
423 2003-06-03  Nick Clifton  <nickc@redhat.com>
424
425         * asprintf.c: Change comment to note that -1 is returned upon
426         error.
427         * vasprintf.c: Likewise.
428         (vasprintf): Return -1 upon error.
429         * functions.texi: Document changes to asprintf and vasprintf.
430
431 2003-05-19  Kelley Cook  <kelleycook@wideopenwest.com>
432
433         * config.table: Accept i[345867]86 variant.
434
435 2003-05-15  Jim Blandy  <jimb@redhat.com>
436
437         * hex.c (_hex_value): Make this unsigned.
438         (hex_value): Update documentation for new return type.  hex_value
439         now expands to an unsigned int expression, to avoid unexpected
440         sign extension when we store it in a bfd_vma, which is larger than
441         int on some platforms.
442         * functions.texi: Regenerated.
443
444 2003-05-07  Josef Zlomek  <zlomekj@suse.cz>
445
446         * splay-tree.c (splay_tree_predecessor): Fix comment.
447         (splay_tree_successor): Fix comment.
448
449 2003-05-07  Jason Merrill  <jason@redhat.com>
450
451         * hashtab.c (iterative_hash): New fn.
452         * configure.in: Add AC_C_BIGENDIAN_CROSS.
453         * aclocal.m4: Include accross.m4.
454         * configure, config.in: Regenerate.
455
456 2003-05-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
457
458         * configure.in (AC_CHECK_FUNCS): Don't make multiple calls.
459         * configure: Regenerate.
460
461 2003-05-03  Carlo Wood  <carlo@alinoe.com>
462
463         * cp-demangle.c: Fix typo in "char_traints" string-literal.
464
465 2003-04-22  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
466
467         * vsnprintf.c (vsnprintf): Don't pad string with extra nulls.
468         (main): Test that we don't write too much data.
469
470 2003-04-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
471
472         * configure.in (funcs, AC_CHECK_FUNCS): Add snprintf and
473         vsnprintf.
474         * snprintf.c, vsnprintf.c: New files.
475         * Makefile.in (CFILES): Add snprintf.c and vsnprintf.c.
476         (CONFIGURED_OFILES): Add snprintf.o and vsnprintf.o.
477         Regenerate dependencies.
478
479         * functions.texi, configure, config.in: Regenerated.
480
481 2003-04-15  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
482
483         * mempcpy.c, stpcpy.c, stpncpy.c: New files.
484         * configure.in (funcs, AC_CHECK_FUNCS): Add mempcpy, stpcpy
485         and stpncpy.
486         * Makefile.in (CFILES): Add mempcpy.c, stpcpy.c and stpncpy.c.
487         (CONFIGURED_OFILES): Add mempcpy.o, stpcpy.o and stpncpy.o.
488         Regenerate dependencies.
489
490         * functions.texi, configure, config.in: Regenerated.
491
492 2003-04-15  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
493
494         * argv.c: Fix comments.
495         * calloc.c: Don't unnecessarily include "libiberty.h".
496         (bzero): Add prototype.
497         * floatformat.c: Include "ansidecl.h", rely on ANSI_PROTOTYPES.
498         * getcwd.c (getcwd): Use standard definition to avoid conflicts
499         with system headers.
500         * hashtab.c (htab_traverse): Delete unused variables.
501         * rename.c: Include "ansidecl.h".
502         (rename): Use standard definition to avoid conflicts with system
503         headers.
504         * strsignal.c: Rely on ANSI_PROTOTYPES.
505         * strstr.c: Check GNUC >= 2, not GNUC == 2.
506         * vfprintf.c: Include "ansidecl.h", rely on ANSI_PROTOTYPES.
507         * vprintf.c: Include "ansidecl.h" earlier, rely on
508         ANSI_PROTOTYPES.
509         * vsprintf.c: Include "ansidecl.h" earlier, rely on
510         ANSI_PROTOTYPES and possibly include <stdarg.h>.
511
512         * Makefile.in: Regenerate dependencies.
513
514 2003-04-15  DJ Delorie  <dj@redhat.com>
515
516         * maint-tool (deps): Scan for headers in $srcdir also.
517
518 2003-04-15  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
519
520         PR target/10338
521         PR bootstrap/10198
522         PR bootstrap/10140
523         * getopt.c (exchange, _getopt_initialize): Use mempcpy not
524         __mempcpy.
525         * regex.c (regerror): Likewise.
526
527 2003-04-14  Roger Sayle  <roger@eyesopen.com>
528
529         * argv.c: Use ANSI_PROTOTYPES instead of __STDC__.
530         * memchr.c: Likewise.
531         * strcasecmp.c: Likewise.
532         * strncasecmp.c: Likewise.
533         * strncmp.c: Likewise.
534         * xatexit.c: Likewise.
535         * xmalloc.c: Likewise.
536
537         * copysign.c: Use traditional function declaration instead of DEFUN.
538         * sigsetmask.c: Likewise.
539
540         * memcmp.c: Both of the above, ANSI_PROTOTYPES and DEFUN.
541         * memset.c: Likewise.
542
543         * memcpy.c: ANSI_PROTOTYPES, DEFUN and prototype bcopy.
544         * memmove.c: Likewise.
545
546 2003-04-14  Roger Sayle  <roger@eyesopen.com>
547
548         * strdup.c (strdup): Tweak implementation to use memcpy.
549
550 2003-04-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
551
552         * configure.in (HAVE_UINTPTR_T): Always define.
553         * configure: Regenerated.
554
555 2003-03-23  Alexandre Oliva  <aoliva@redhat.com>
556
557         * Makefile.in (MULTIOSDIR): New macro.  Use $(CC) $(LIBCFLAGS)
558         instead of $$CC alone.
559         (install_to_tooldir): Use it.
560
561 2003-17-03  Jan Hubicka  <jh@suse.cz>
562
563         * hashtab.c (htab_traverse_noresize): Break out from ...
564         * hashtab.c (htab_traverse): ... here.
565
566 2003-12-03  Jan Hubicka  <jh@suse.cz>
567
568         * hashtab.c (htab_expand): Fix warning.
569
570         * hashtab.c (htab_expand): Compute the size of hashtable based
571         on the number of elements actually used.
572         (htab_traverse):  Call htab_expand when table is too empty.
573
574 2003-03-11  Carlo Wood  <carlo@gnu.org>
575
576         * cplus-dem.c (demangle_integral_value): Correction to reflect
577         patch of 2002-01-10 in order to also make negative multi-digits
578         without leading underscore work.
579
580 2003-03-03  Mark Mitchell  <mark@codesourcery.com>
581
582         * cplus-dem.c: Add license exception to copyright notice.
583
584 2003-02-27  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
585
586         * physmem.c: Formatting changes from upstream.
587
588 2003-02-24  Danny Smith  <dannysmith@users.source.forge.net>
589
590         * physmem.c (physmem_total): Add _WIN32 support.
591         (physmem_available): Likewise.
592
593 2003-02-24  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
594
595         * physmem.c (physmem_total) [HAVE_GETSYSINFO]: Test for
596         GSI_PHYSMEM.
597         (physmem_available) [HAVE_TABLE]: Test for TBL_VMSTATS.
598
599 2003-02-22  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
600
601         * configure.in: Check for sys/systemcfg.h and
602         _system_configuration.
603         * physmem.c: Add support for AIX.  Tweek formatting as per
604         upstream coreutils beta.
605
606 2003-02-22  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
607             Richard Earnshaw  <rearnsha@arm.com>
608             Geoffrey Keating  <geoffk@apple.com>
609
610         * configure.in: Check for sys/sysctl.h and sysctl.
611         * physmem.c: Add support for *bsd and darwin.
612         * Makefile.in: Generate depedency for physmem.o.
613
614 2003-02-21  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
615
616         * physmem.c (physmem_total) [HAVE_GETSYSINFO]: Use getsysinfo on
617         Tru64 UNIX.
618         (physmem_available) [HAVE_TABLE && HAVE_SYS_TABLE_H]: Use table on
619         Tru64 UNIX.
620
621         * configure.in (AC_CHECK_HEADERS): Check for sys/sysinfo.h,
622         machine/hal_sysinfo.h, sys/table.h.
623         (checkfuncs, AC_CHECKFUNCS): Check for getsysinfo, table.
624         * configure, config.in: Regenerate.
625
626 2003-02-21  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
627
628         * configure.in: Check for sys/sysmp.h and sysmp.
629         * physmem.c: Pull upstream copy, add support for irix6.
630
631         * config.in, configure: Regenerated.
632
633 2003-02-21  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
634
635         * physmem.c (physmem_total, physmem_available): De-ANSI-fy.
636         * configure.in (AC_CHECK_FUNCS): Add pstat_getstatic and
637         pstat_getdynamic.
638
639 2003-02-20  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
640
641         * Makefile.in (CFILES): Add physmem.c.
642         (REQUIRED_OFILES): Add physmem.o.
643         * configure.in: Check for sys/pstat.h.
644         (checkfuncs): Add pstat_getstatic and pstat_getdynamic.
645         * physmem.c: New file, copied from textutils.
646
647         * config.in, configure: Regenerated.
648
649 2003-02-20  Daniel Jacobowitz  <drow@mvista.com>
650
651         * Makefile.in (CFILES): Add lrealpath.c.
652         (REQUIRED_OFILES): Add lrealpath.o.
653         (lrealpath.o): Add rule.
654         * aclocal.m4 (libiberty_NEED_DECLARATION): Add.
655         * configure.in: Add realpath and canonicalize_file_name to
656         checkfuncs and AC_CHECK_FUNCS.  Use libiberty_NEED_DECLARATION
657         for canonicalize_file_name.
658         * lrealpath.c: New file.
659         * make-relative-prefix.c: Update documentation.
660         (make_relative_prefix): Simplify.  Use lbasename and lrealpath.
661         * config.in: Regenerated.
662         * configure: Regenerated.
663         * functions.texi: Regenerated.
664
665 2003-02-20  jmc  <jmc@prioris.mini.pw.edu.pl>
666
667         * cplus_dem.c: Fix typo: intializes -> initializes.
668
669 2003-02-20  Alexandre Oliva  <aoliva@redhat.com>
670
671         * configure.in: Propagate ORIGINAL_LD_FOR_MULTILIBS to
672         config.status.
673         * configure: Rebuilt.
674
675 2003-02-13  Daniel Jacobowitz  <drow@mvista.com>
676
677         Fix PR c++/7612.
678         * cplus-dem.c (demangle_signature): Call string_delete.
679         Remove extra string_init.
680         (demangle_arm_hp_template): Call string_delete instead of
681         string_clear.  Add missing string_delete call.
682         (demangle_qualified): Add missing string_delete call.
683         (do_type): Remove unused variable btype.  Add missing string_delete
684         call.  Call string_delete instead of string_clear.
685         (demangle_fund_type): Move variable btype inside of the switch
686         statement.  Add missing string_delete call.
687         (do_arg): Call string_delete instead of string_clear.  Remove extra
688         string_init.
689         (demangle_nested_args): Free work->previous_argument.
690
691 2003-02-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
692
693         * acconfig.h: New file.  Add uintptr_t.
694         * config.in: Regenerated.
695
696 2003-02-04  Joseph S. Myers  <jsm@polyomino.org.uk>
697
698         * libiberty.texi: Update to GFDL 1.2.
699
700 2003-01-30  Christian Cornelssen  <ccorn@cs.tu-berlin.de>
701
702         * Makefile.in (libiberty_topdir): New subst.
703         (mkinstalldirs): Redefine in terms of the above.
704         * configure.in: AC_SUBST it.
705         * configure: Regenerate.
706
707 2003-01-28  Christian Cornelssen  <ccorn@cs.tu-berlin.de>
708
709         * Makefile.in (all-subdir, check-subdir, installcheck-subdir)
710         (info-subdir, install-info-subdir, clean-info-subdir)
711         (dvi-subdir, install-subdir, etags-subdir, mostlyclean-subdir)
712         (clean-subdir, distclean-subdir, maintainer-clean-subdir):
713         Pass $(FLAGS_TO_PASS).
714
715 2003-01-27  Alexandre Oliva  <aoliva@redhat.com>
716
717         * Makefile.in (install_to_tooldir): Instead of $(MULTISUBDIR), use
718         /`$$CC -print-multi-os-directory`.
719
720 2003-01-26  Daniel Jacobowitz  <drow@mvista.com>
721
722         * hashtab.c (htab_create_alloc_ex): New function.
723         (hatab_set_functions_ex): New function.
724         (htab_delete, htab_expand): Support alternate allocation functions.
725
726 2003-01-24  Christopher Faylor  <cgf@redhat.com>
727
728         * configure.in: Remove special pex-cygwin consideration.
729         * configure: Regenerate.
730         * pex-cygwin.c: Remove.
731         * Makefile.in: Remove pex-cygwin.[co] lines.
732
733 2003-01-24  Zack Weinberg  <zack@codesourcery.com>
734
735         * Makefile.in (CFILES): Add pex-*.c.
736         (REQUIRED_OFILES): Change pexecute.o to @pexecute@
737         (CONFIGURED_OFILES): Add pex-*.o.
738         (TEXIFILES): Add pexecute.txh.
739         (pexecute.o): Delete rule.
740         (pex-cygwin.o, pex-djgpp.o, pex-mpw.o, pex-msdos.o, pex-os2.o,
741         pex-unix.o, pex-win32.o): New rules.
742         * configure.in: Change AC_INIT argument to xmalloc.c.
743         Compute appropriate pexecute implementation and substitute it
744         as @pexecute@.
745
746         * pexecute.c: Split up into...
747         * pex-cygwin.c, pex-djgpp.c, pex-mpw.c, pex-msdos.c, pex-os2.c,
748         pex-unix.c, pex-win32.c, pex-common.h, pexecute.txh: ... these
749         new files.
750
751         * functions.texi: Regenerate.
752         * configure: Regenerate.
753
754 2003-01-20  Josef Zlomek  <zlomekj@suse.cz>
755
756         * hashtab.c (htab_expand): Fix allocation of new entries.
757
758 2003-01-09  Christian Cornelssen  <ccorn@cs.tu-berlin.de>
759
760         * Makefile.in (FLAGS_TO_PASS): Also pass DESTDIR.
761
762         * Makefile.in (install_to_libdir, install_to_tooldir): Add a
763         mkinstalldirs command.
764
765 2002-12-04  Danny Smith  <dannysmith@users.sourceforge.net>
766
767         * make-relative-prefix.c (HAVE_HOST_EXECUTABLE_SUFFIX):
768         Define for hosts with HOST_EXECUTABLE_SUFFIX.
769
770 2002-11-24  Nick Clifton  <nickc@redhat.com>
771
772         * make-relative-prefix.c (make_relative_prefix): Ensure return
773         string is empty before using strcat to construct it.
774
775 2002-11-22  Daniel Jacobowitz  <drow@mvista.com>
776
777         * Makefile.in: Add make-relative-prefix.c.
778         * make-relative-prefix.c: New file.
779         * functions.texi: Rebuilt.
780
781 2002-11-16  Jakub Jelinek  <jakub@redhat.com>
782
783         * md5.c (md5_process_block): Avoid `function-like macro "F{G,H,I}" must be
784         used with arguments in traditional C' warnings.
785
786 2002-10-16  Jakub Jelinek  <jakub@redhat.com>
787
788         * config.table: Use mh-s390pic for s390x too.
789
790 2002-10-06  Andreas Jaeger  <aj@suse.de>
791
792         * libiberty/cplus-dem.c (ada_demangle): Get rid of unneeded
793         variable and of strict-aliasing warning.
794         (grow_vect): Use char as first parameter.
795
796 2002-09-22  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
797
798         * Makefile.in (all): Fix multilib parallel build.
799
800 2002-09-19  John David Anglin  <dave@hiuly1.hia.nrc.ca>
801
802         * cp-demangle.c (demangling_new): Cast 0 to enum.
803         (demangle_char): Cast return of strdup to char *.
804         (is_gnu_v3_mangled_ctor): Cast 0 to enum.
805         (is_gnu_v3_mangled_dtor): Likewise.
806         * cplus-dem.c (grow_vect): Cast return of xrealloc to void *.
807         (work_stuff_copy_to_from): Cast return of xmalloc to char **.
808         * fibheap.c (fibnode_new): Cast return of xcalloc to fibnode_t.
809         * md5.c (md5_process_bytes): Cast results back to const void *.
810         (md5_process_block): Add cast to const md5_uint32 *.
811         * regex.c (re_compile_fastmap): Cast enum to UCHAR_T.
812         * safe-ctype.c (L, XL, U, XU, D, P, _, C, Z, M, V, T, S): Add cast to
813         unsigned short.
814         * splay-tree.c (splay_tree_xmalloc_allocate): Cast return of xmalloc
815         to void *.
816         * vasprintf.c (int_vasprintf): Cast return of malloc to char *.
817
818 2002-09-19  Nick Clifton  <nickc@redhat.com>
819
820         * README: Update email addresses for bugs and patches.
821
822 2002-09-10  Mike Stump  <mrs@apple.com>
823
824         * splay-tree.c (splay_tree_successor): Fix comments.
825
826 2002-09-11  Zack Weinberg  <zack@codesourcery.com>
827
828         * cplus-dem.c: Code under #ifdef MAIN moved to gcc/cp/cxxfilt.c.
829         * testsuite/Makefile.in: Adjust for test-demangle.
830         * testsuite/regress-demangle: Deleted.
831         * testsuite/test-demangle.c: New file.
832         * testsuite/demangle-expected: Change \$ to $ throughout, now that
833         this file is not being read by a shell script.
834
835 2002-09-05  Roger Sayle  <roger@eyesopen.com>
836
837         * regex.c: Only use "#pragma alloca" on AIX when not using gcc.
838
839 2002-08-07  DJ Delorie  <dj@redhat.com>
840
841         * regex.c (re_error_msgid): Just use a simple array of strings.
842         (re_compile_pattern): Compensate.
843         (re_comp): Likewise.
844         (re_comp): Likewise.
845         (regerror): Likewise.
846
847 2002-07-29  Neil Booth  <neil@daikokuya.co.uk>
848
849         * cplus-dem.c (PREPEND_BLANK): Remove.
850
851 2002-07-10  Jason Merrill  <jason@redhat.com>
852
853         * cp-demangle.c (demangle_identifier): Support extended Unicode
854         characters.
855
856 2002-07-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
857
858         * cp-demangle.c (demangle_v3_with_details): Wrap in
859         !defined IN_GLIBCPP_V3.
860
861 2002-07-01  Mark Mitchell  <mark@codesourcery.com>
862
863         * cp-demangle.c (demangle_operator_name): Add type_arg parameter.
864         Set it for the "st" operator.
865         (demangle_expression): Handle expressions with types as arguments.
866
867 2002-06-30  Douglas Rupp  <rupp@gnat.com>
868
869         * configure.in (OUTPUT_OPTION,NO_MINUS_C_MINUS_O): Configure.
870         * Makefile.in (OUTPUT_OPTION): Use.
871
872 2002-06-22  Peter Breitenlohner <peb@mppmu.mpg.de>
873
874         * Makefile.in (install_to_libdir): Add $(DESTDIR).
875         (install_to_tooldir): Likewise.
876
877 2002-06-17  Douglas Rupp  <rupp@gnat.com>
878
879         * lbasename.c: Add 2002 to copyright.
880         (IS_DIR_SEPARATOR): Remove VMS junk.
881
882 2002-06-05  Geoffrey Keating  <geoffk@redhat.com>
883
884         * hashtab.c (htab_create): New stub function for backward
885         compatibility.
886         (htab_try_create): Likewise.
887
888 2002-06-03  Geoffrey Keating  <geoffk@redhat.com>
889
890         * hashtab.c (htab_create): Delete.
891         (htab_try_create): Delete.
892         (htab_create_alloc): New.
893         (htab_delete): Support user-specified memory allocation.
894         (htab_expand): Likewise.
895
896 2002-05-22  Roman Lechtchinsky  <rl@cs.tu-berlin.de>
897
898         * configure.in: Fix typo in the code checking for sys_errlist.
899         * configure: Regenerated.
900
901 2002-05-13  Andreas Schwab  <schwab@suse.de>
902
903         * config.table: Use mh-x86pic also for x86-64.
904
905 2002-05-08  Alexandre Oliva  <aoliva@redhat.com>
906
907         * configure.in (ORIGINAL_LD_FOR_MULTILIBS): Preserve LD at
908         script entry, and set LD to it when configuring multilibs.
909         * configure: Rebuilt.
910
911 2002-05-07  Mark Mitchell  <mark@codesourcery.com>
912
913         * configure.in (AC_TYPE_PID_T): Use it.
914         * configure: Regenerated.
915         * getruntime.c: Include <sys/types.h>.
916         * waitpid.c: Likewise.  Use pid_t, not int, as the type of "pid".
917
918 2002-04-09  Richard Henderson  <rth@redhat.com>
919
920         * hashtab.c (higher_prime_number): Use 7 as minimum.
921         (find_empty_slot_for_expand): Don't compute hash2 unless needed.
922         (htab_find_slot_with_hash): Likewise.
923
924 2002-04-01  Phil Edwards  <pme@gcc.gnu.org>
925
926         * cp-demangle.c (__cxa_demangle):  Also protect with IN_GLIBCPP_V3.
927         (is_gnu_v3_mangled_ctor, is_gnu_v3_mangled_ctor):  Conditionally
928         not compile if IN_GLIBCPP_V3 defined.
929         * dyn-string.c:  Also allow IN_GLIBCPP_V3 to change allocation scheme.
930
931 2002-03-30  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
932
933         * cp-demangle.c (java_demangle_v3): Don't try to release "demangled"
934         if it is NULL.
935
936 2002-03-27  DJ Delorie  <dj@redhat.com>
937
938         * hex.c: Add documentation.
939         (_hex_value): Provide non-ASCII empty table.
940         (hex_init): Initialize the non-ASCII table.
941         * functions.texi: Regenerate.
942
943 2002-03-27  Mark Mitchell  <mark@codesourcery.com>
944
945         * dyn-string.c: Add libgcc exception to copyright notice.
946
947 2002-03-26  H.J. Lu  (hjl@gnu.org)
948
949         * config.table: Support --with-build-subdir.
950         * configure.in: Likewise.
951         * configure: Rebuild.
952
953 2002-03-18  Stuart Griffith  <Stuart_Griffith@credence.com>
954
955         * strtod.c (strtod): Increment 8 chars, not 7, when `infinity'
956         seen.
957
958 2002-03-12  Mark Mitchell  <mark@codesourcery.com>
959
960         * cp-demangle.c: Add libgcc exception to cp-demangle.c copyright
961         notice.
962
963 2002-03-11  Douglas B Rupp  <rupp@gnat.com>
964
965         * xatexit.c [VMS]: Include stdlib.h and unixlib.h.
966
967 2002-03-06  Jim Blandy  <jimb@redhat.com>
968
969         * splay-tree.c (splay_tree_xmalloc_allocate,
970         splay_tree_xmalloc_deallocate): Use K&R-style definitions, not
971         prototyped definitions.  Mark `data' arguments as unused.
972
973 2002-03-06  Andrew Cagney  <ac131313@redhat.com>
974
975         * floatformat.c (floatformat_arm_ext_big): Delete definition.
976
977 2002-03-04  Phil Edwards  <pme@gcc.gnu.org>
978
979         * configure.in:  Add --enable-install-libiberty option.
980         * Makefile.in (INSTALLED_HEADERS):  New variable.
981         (install_to_libdir):  Possibly also copy headers.
982         * configure:  Regenerated.
983
984 2002-03-04  Neil Booth  <neil@daikokuya.demon.co.uk>
985
986         * xmalloc.c (xmalloc_fail): Clarify error message further.
987
988 2002-03-03  Neil Booth  <neil@daikokuya.demon.co.uk>
989
990         * xmalloc.c (xmalloc_fail): Clarify error message.
991
992 2002-02-22  Jim Blandy  <jimb@redhat.com>
993
994         * splay-tree.c (splay_tree_xmalloc_allocate,
995         splay_tree_xmalloc_deallocate): New functions.
996         (splay_tree_new): Call splay_tree_new_with_allocator, passing the
997         above functions and a dummy data pointer.
998         (splay_tree_new_with_allocator): New function.
999         (splay_tree_delete_helper, splay_tree_delete, splay_tree_insert,
1000         splay_tree_remove): Use the splay tree's allocation and
1001         deallocation functions.
1002
1003 2002-02-19  Scott Snyder  <snyder@fnal.gov>
1004
1005         * testsuite/demangle-expected: Add test case for infinite loop in
1006         demangler.
1007         * cplus-dem.c (demangle_arm_hp_template): Stop trying to demangle
1008         if do_type() doesn't make any progress --- prevents an infinite
1009         loop.
1010
1011 2002-02-18  Carlo Wood  <carlo@gnu.org>
1012
1013         PR c++/5390
1014         * cplus-dem.c (demangle_integral_value): Accept multi-digit
1015         numbers that do not start with an underscore; This is needed
1016         for integer template parameters. This doesn't break anything
1017         because multi-digit numbers are never followed by a digit.
1018         * testsuite/demangle-expected: Corrected all mangled test
1019         cases with multi-digit template parameters: g++ 2.95.x does
1020         not generate underscores around these parameters.
1021
1022 2002-02-05  Jason Merrill  <jason@redhat.com>
1023
1024         * cplus-dem.c (flags): Add DMGL_VERBOSE
1025         (cplus_demangle_v3_p): Remove.
1026         (demangle_it): Add DMGL_TYPES to passed flags.
1027         * cp-demangle.c (cplus_demangle_v3_all): Remove.
1028         (cplus_demangle_v3_type): Remove.
1029         (cplus_demangle_v3): Add options parm.
1030
1031 2002-02-02  H.J. Lu  (hjl@gnu.org)
1032
1033         * cp-demangle.c (cp_demangle_type): Do not protect with
1034         IN_LIBGCC2.
1035         (cplus_demangle_v3_all): New.
1036         (cplus_demangle_v3): Call cplus_demangle_v3_all.
1037         (cplus_demangle_v3_type): Call cplus_demangle_v3_all.
1038
1039         * cplus-dem.c (cplus_demangle_v3_p): New function pointer.
1040         Initialized to cplus_demangle_v3.
1041         (cplus_demangle_with_style): Call cplus_demangle_v3_p instead
1042         of cplus_demangle_v3.
1043         (main): Set cplus_demangle_v3_p to cplus_demangle_v3_type for
1044         command line symbol.
1045
1046         * testsuite/regress-demangle: Pass the mangled name at the
1047         command line.
1048
1049 2002-02-01  H.J. Lu  <hjl@gnu.org>
1050
1051         * cp-demangle.c (cp_demangle_type): Call demangling_new with
1052         DMGL_GNU_V3.
1053
1054 2002-01-31  Phil Edwards  <pme@gcc.gnu.org>
1055
1056         * cp-demangle.c:  Revert yesterday's change.
1057
1058 2002-01-31  Adam Megacz  <adam@xwt.org>
1059
1060         * gcc/libiberty/configure.in: Treat mingw the same as cywin
1061         wrt HAVE_SYS_ERRLIST.
1062
1063 2002-01-30  Phil Edwards  <pme@gcc.gnu.org>
1064
1065         * cp-demangle.c (cp_demangle_type):  Do not protect with IN_LIBGCC2.
1066         (cplus_demangle_v3):  Mimic __cxa_demangle and fall back on
1067         cp_demangle_type.
1068         * testsuite/demangle-expected:  New gnu-v3 test.
1069
1070 2002-01-22  Momchil Velikov  <velco@fadata.bg>
1071
1072         * configure.in (variable detection): Use arrays of unspecified
1073         size instead of plain integers.
1074
1075 2002-01-18  DJ Delorie  <dj@redhat.com>
1076
1077         * Makefile.in (TESTLIB): New.  This library is for future
1078         testsuites.
1079         (CFILES, REQUIRED_OFILES, CONFIGURED_OFILES): Re-alphabetize,
1080         break down by letter.
1081         (REQUIRED_OFILES): List long-to-compile files first.
1082         (maint-deps): New, target for updating dependencies.
1083         (dependencies): Update.
1084         * maint-tool: Add dependency-generating option.
1085         * configure.in: Check for _doprnt even if we're not providing it.
1086         * configure: Regenerate.
1087
1088         * _doprnt.c: Modifications to allow compiling on any platform.
1089         * copysign.c: Likewise.
1090         * putenv.c: Likewise.
1091         * setenv.c: Likewise.
1092         * vsprintf.c: Likewise.
1093
1094 2002-01-15  Douglas B Rupp  <rupp@gnat.com>
1095
1096         * mkstemps.c (mkstemps): On VMS, open temp file with option
1097         that causes it to be deleted when closed.
1098
1099 2002-01-02  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1100
1101         * cp-demangle.c (long_options): Const-ify.
1102         * cplus-dem.c (long_options): Likewise.
1103
1104         * cplus-dem.c (mystrstr): Delete.  All callers changed to use
1105         strstr instead.
1106
1107 2001-12-31  Ira Ruben   <ira@apple.com>
1108
1109         * aclocal.m4 (libiberty_AC_FUNC_STRNCMP): Use anon mmap as 2nd try.
1110         * configure: Regenerated.
1111
1112 2001-12-24  Douglas B. Rupp  <rupp@gnat.com>
1113
1114         * configure.in (uintptr_t): Use AC_CHECK_TYPE.
1115         * configure: Regenerated.
1116
1117 2001-12-12  Craig Rodrigues  <rodrigc@gcc.gnu.org>
1118
1119         PR other/2719
1120         * cplus-dem.c (consume_count): Treat negative count as an error.
1121         * testsuite/demangle-expected: Added testcase.
1122
1123 Tue Dec 11 07:08:57 2001  Douglas B. Rupp  <rupp@gnat.com>
1124
1125         * configure.in: Hardcode that vfork works on VMS host.
1126         * configure: Regenerated.
1127
1128 2001-12-06  Richard Henderson  <rth@redhat.com>
1129
1130         * cplus-dem.c (libiberty_demanglers): Add no_demangling case.
1131         (cplus_demangle): Support no_demangling.
1132
1133 2001-11-27  Zack Weinberg  <zack@codesourcery.com>
1134
1135         * _doprnt.c: Moved here from gcc/doprint.c.  Adjust to build
1136         in libiberty context.  Fix typo in leading comment.
1137         * configure.in: Fix various AC_DEFINEs so autoheader works.
1138         If any of vprintf, vsprintf, vfprintf is missing from libc,
1139         then AC_REPLACE_FUNCS(_doprnt).
1140
1141 2001-11-26  DJ Delorie  <dj@redhat.com>
1142             Daniel Jacobowitz  <drow@mvista.com>
1143
1144         * Makefile.in (stamp-h): Depend on Makefile for proper
1145         serialization.
1146         (*-subdir): Depend on config.h for proper serialization.
1147
1148 2001-11-26  DJ Delorie  <dj@redhat.com>
1149
1150         * configure.in: Check for alloca.h (for regex.c and putenv.c).
1151         * configure: Regenerate.
1152         * config.h: Add HAVE_ALLOCA_H.
1153
1154 2001-11-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1155
1156         * regex.c: Check defined(__STDC__) || defined(ALMOST_STDC) ||
1157         defined(HAVE_STRINGIZE) to determine whether ISO CPP token pasting
1158         is available.
1159
1160 Thu Nov 15 11:06:25 2001  Jeffrey A Law  (law@cygnus.com)
1161
1162         * config.in (HAVE_UINTPTR_T): Provide autoconf stub.
1163         * configure.in (HAVE_UINTPTR_T): Test for system defining
1164         uintptr_t and define HAVE_UINTPTR_T appropriately.
1165         * regex.c (uintptr_t): Do not provide a definition if the
1166         system provided one.
1167
1168         * regex.c (PREFIX): Provide an alternate definition for
1169         non-ANSI/ISO compilers.
1170         (ARG_PREFIX): Likewise.
1171
1172 2001-11-12  Jim Meyering  <meyering@lucent.com>
1173
1174         * obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
1175         this code would end up calling gettext even in packages built
1176         with --disable-nls.
1177         * getopt.c (_): Likewise.
1178         * regex.c (_): Likewise.
1179
1180 2001-11-03  Alan Modra  <amodra@bigpond.net.au>
1181
1182         * configure.in: Cope with missing makeinfo.
1183         * configure: Regenerate.
1184
1185 2001-10-22  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1186
1187         * hex.c (hex_init): Provide empty stub.
1188
1189         * hex.c (hex_init): Delete.
1190         (_hex_value): Const-ify and initialize at compile-time.
1191
1192 2001-10-19  H.J. Lu <hjl@gnu.org>
1193
1194         * Makefile.in ($(TARGETLIB)): Also generate pic/$(TARGETLIB) if
1195         necessary.
1196
1197 2001-10-17  DJ Delorie  <dj@redhat.com>
1198
1199         * argv.c, asprintf.c, choose-temp.c, concat.c, cplus-dem.c,
1200         ffs.c, fnmatch.txh, getruntime.c, make-temp-file.c,
1201         mkstemps.c, pexecute.c, random.c, strsignal.c, vasprintf.c:
1202         Improve manual formatting.
1203         * functions.texi: Regenerate.
1204
1205 2001-10-15  DJ Delorie  <dj@redhat.com>
1206
1207         * Makefile.in (TEXIFILES): Add fnmatch.txh.
1208         (maint-undoc): New.
1209         maint-tool: Add "undoc" tool.
1210         * alloca.c, argv.c, asprintf.c, choose-temp.c, concat.c,
1211         fdmatch.c, ffs.c, getruntime.c, insque.c, lbasename.c,
1212         make-temp-file.c, mkstemps.c, pexecute.c, random.c, spaces.c,
1213         strerror.s, strsignal.c, strtol.c, vasprintf.c: Add or update
1214         documentation.
1215         * fnmatch.txh: New.
1216         * functions.texi: Regenerate.
1217
1218 2001-10-10  Joseph S. Myers  <jsm28@cam.ac.uk>
1219
1220         * bcmp.c, setenv.c: Use "nonzero" instead of "non-zero".
1221         * strtod.c: Use "ISO C" instead of "ANSI C".
1222         * functions.texi: Regenerate.
1223
1224 2001-10-07  Joseph S. Myers  <jsm28@cam.ac.uk>
1225
1226         * alloca.c, clock.c, getcwd.c, getpagesize.c, getpwd.c, index.c,
1227         libiberty.texi, memchr.c, putenv.c, rindex.c, strchr.c, strdup.c,
1228         strerror.c, strrchr.c, strstr.c, strtod.c, tmpnam.c, vfork.c,
1229         xatexit.c, xmalloc.c, xstrerror.c: Improve manual formatting.  Fix
1230         spelling.  Give names to function arguments in documentation.  Use
1231         (void) prototypes in documentation.
1232         * functions.texi: Regenerate.
1233
1234 2001-10-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1235
1236         * argv.c (buildargv, tests, main): Const-ify.
1237         * cp-demangle.c (operator_code): Likewise.
1238         * cplus-dem.c (optable, libiberty_demanglers,
1239         cplus_demangle_set_style, cplus_demangle_name_to_style,
1240         print_demangler_list): Likewise.
1241         * hashtab.c (higher_prime_number): Likewise.
1242         * strcasecmp.c (charmap): Likewise.
1243         * strerror.c (error_info, strerror, main): Likewise.
1244         * strncasecmp.c (charmap): Likewise.
1245         * strsignal.c (signal_info): Likewise.
1246
1247 2001-09-29  DJ Delorie  <dj@redhat.com>
1248
1249         * configure: Regenerate.
1250
1251 2001-09-28  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1252
1253         * concat.c: Include stdlib.h.
1254
1255 2001-09-27  Eli Zaretskii  <eliz@is.elta.co.il>
1256
1257         * libiberty.texi: (Top level): Add syncodeindex pg.  Add
1258         @dircategory and @direntry directives.  Add @finalout.
1259         (many nodes): Lose the next,prev,up pointers on the @nide line.
1260         (Using, Supplemental Functions, Replacement Functions): Fix
1261         markup.
1262         (Functions): Move around, to allow makeinfo to build the manual
1263         without next,prev,up pointers in thye node lines.
1264         (Licenses): Fix typos.
1265
1266         * index.c, rindex.c, strchr.c, strerror.c, strrchr.c, strstr.c,
1267         strtol.c, xatexit.c, xexit.c, xmalloc.c: Fix spelling and markup.
1268         * functions.texi: Regenerate.
1269
1270         * copying-lib.texi: Lose the next,prev,up pointers on the @node
1271         line.
1272
1273 2001-09-27  DJ Delorie  <dj@redhat.com>
1274
1275         * configure.in: Don't use in-tree texinfo, because libiberty must
1276         be built before it.  Check for makeinfo version 4 or higher.
1277         * functions.texi: Regenerate.
1278
1279 2001-09-20  DJ Delorie  <dj@redhat.com>
1280             Phil Edwards  <pedwards@disaster.jaj.com>
1281
1282         * configure.in (MAKEINFO, PERL): Detect these.
1283         (--enable-maintainer-mode): Add.
1284         * configure: Regenerate.
1285         * Makefile.in (MAKEINFO, PERL): Define.
1286         (libiberty.info, libiberty.dvi, libiberty.html): New.
1287         (CFILES): Add bsearch.c.
1288         (CONFIGURED_OFILES): New, list of objects configure might add.
1289         (maint-missing, maint-buildall): New, for maintainers only.
1290         (clean, mostlyclean): Add info/dvi/html files.
1291         * libiberty.texi, copying-lib.texi, obstacks.texi, functions.texi: New.
1292         * gather-docs: New, for maintainers.
1293         * maint-tool: New, for maintainers.
1294         * alloca.c, atexit.c, basename.c, bcmp.c, bcopy.c, bsearch.c,
1295         bzero.c, calloc.c, clock.c, configure.in, configure, getcwd.c,
1296         getpagesize.c, getpwd.c, index.c, memchr.c, memcmp.c, memcpy.c,
1297         memmove.c, memset.c, putenv.c, rename.c, rindex.c, setenv.c,
1298         sigsetmask.c, strcasecmp.c, strchr.c, strdup.c, strerror.c,
1299         strncasecmp.c, strncmp.c, strrchr.c, strstr.c, strtod.c, strtol.c,
1300         tmpnam.c, vfork.c, vprintf.c, waitpid.c, xatexit.c, xexit.c,
1301         xmalloc.c, xmemdup.c, xstrdup.c, xstrerror.c: Add or update
1302         documentation.
1303
1304 2001-09-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1305
1306         * concat.c (reconcat): Fix for traditional C.
1307
1308 2001-09-24  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1309
1310         * concat.c (reconcat): New function.
1311
1312 2001-09-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1313
1314         * concat.c (vconcat_length, vconcat_copy, concat_length,
1315         concat_copy, concat_copy2): New functions.
1316         (concat): Use vconcat_length/vconcat_copy.
1317
1318         * alloca.c (libiberty_optr, libiberty_nptr, libiberty_len):
1319         Define.
1320
1321 2001-09-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1322
1323         * asprintf.c: Don't define USE_STDARG.  Use VPARAMS, VA_OPEN,
1324         VA_FIXEDARG & VA_CLOSE.
1325
1326         * vasprintf.c: Check HAVE_STRING_H when including string.h.
1327         (checkit): Delete redundant prototype.  Add ATTRIBUTE_PRINTF_1.
1328         Use VA_OPEN, VA_FIXEDARG & VA_CLOSE.  Free allocated string.
1329
1330 2001-08-27  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1331
1332         * concat.c (concat): Use VPARAMS, VA_OPEN, VA_FIXEDARG & VA_CLOSE.
1333
1334 2001-08-23  Ulrich Drepper  <drepper@redhat.com>
1335
1336         * regex.c (truncate_wchar): Use wcrtomb not wctomb.
1337
1338 2001-08-23  Ulrich Drepper  <drepper@redhat.com>
1339
1340         * posix/regex.c [_LIBC] (convert_mbs_to_wcs): Use __mbrtowc
1341         instead of mbrtowc.
1342         [_LIBC]: Use __iswctype instead of iswctype, __wcslen instead of
1343         wcslen, and __wcscoll instead of wcscoll.
1344
1345 2001-08-22  Matt Kraai  <kraai@alumni.carnegiemellon.edu>
1346
1347         * fibheap.c (fibheap_init, fibnode_init): Remove.
1348         (fibheap_new, fibnode_new): Use xcalloc to allocate and
1349         initialize memory.
1350         (fibheap_insert): Remove check for node allocation failure.
1351
1352 2001-08-21  Richard Henderson  <rth@redhat.com>
1353
1354         * Makefile.in (fibheap.o): Depend on config.h.
1355         * fibheap.c: Tidy formatting.  Use config.h.` Rearrange some
1356         functions for inlining.
1357
1358 Tue Aug 21 12:35:04 2001  Christopher Faylor <cgf@cygnus.com>
1359
1360         * configure.in: Need to set HAVE_SYS_ERRLIST and HAVE_SYS_NERR whenever
1361         hosting on cygwin.
1362         * configure: Regenerate.
1363
1364 2001-08-20  Andrew Cagney  <ac131313@redhat.com>
1365
1366         * floatformat.c (floatformat_m88110_ext): Remove #ifdef
1367         HARRIS_FLOAT_FORMAT.
1368         (floatformat_ia64_spill_little, floatformat_ia64_quad_little)
1369         (floatformat_ia64_spill_big, floatformat_ia64_quad_big)
1370         (floatformat_arm_ext_big, floatformat_arm_ext_littlebyte_bigword)
1371         (floatformat_m88110_harris_ext): New float formats.
1372
1373 2001-08-20  Daniel Berlin  <dan@cgsoftware.com>
1374
1375         * fibheap.c: New file. Fibonacci heap.
1376
1377         * Makefile.in (CFILES): Add fibheap.c.
1378         (REQUIRED_OFILES): Add fibheap.o.
1379         (fibheap.o): Add dependencies for fibheap.o.
1380
1381 2001-08-17  Christopher Faylor <cgf@cygnus.com>
1382
1383         * configure.in: Always set HAVE_SYS_ERRLIST when targetting cygwin.
1384         * configure: Regenerate.
1385
1386 2001-08-16  Richard Henderson  <rth@redhat.com>
1387
1388         * hashtab.c (htab_hash_string): New.
1389
1390 2001-08-13  Andrew Cagney  <ac131313@redhat.com>
1391
1392         * floatformat.c (floatformat_ieee_double_littlebyte_bigword): Fix
1393         name.
1394
1395 2001-08-12  Isamu Hasegawa  <isamu@yamato.ibm.com>
1396
1397         * regex.c (wcs_regex_compile): Use appropriate string
1398         to compare with collating element.
1399         Fix the padding for the alignment.
1400
1401 2001-08-10  Andrew Cagney  <ac131313@redhat.com>
1402
1403         * lbasename.c (lbasename): Change function definition to return a
1404         const char pointer.
1405
1406 2001-08-07  Jason Merrill  <jason_merrill@redhat.com>
1407
1408         * cp-demangle.c (demangle_special_name): "GR" -> "reference temporary
1409         for".
1410
1411 2001-08-03  Richard Henderson  <rth@redhat.com>
1412
1413         * Makefile.in (concat.o): Depend on config.h.
1414
1415 2001-07-30  Andreas Jaeger  <aj@suse.de>
1416
1417         * concat.c: Include "config.h".
1418
1419 2001-07-30  Andreas Jaeger  <aj@suse.de>
1420
1421         * regex.c: Declare wcs functions only if compiling with
1422         MBS_SUPPORT.
1423         Don't use #elif for traditional C.
1424
1425 2001-07-23  Ulrich Drepper  <drepper@redhat.com>
1426
1427         * regex.c: Revamp memory allocation for WCHAR functions to
1428         not use too much stack.
1429
1430 2001-07-30  Andreas Jaeger  <aj@suse.de>
1431
1432         * regex.c: Declare wcs functions only if compiling with
1433         MBS_SUPPORT.
1434         Don't use #elif for traditional C.
1435
1436 2001-07-25  Daniel Jacobowitz  <drow@mvista.com>
1437
1438         * Makefile.in (regex.o): Add dependency on config.h.
1439
1440 2001-07-18  Andreas Schwab  <schwab@suse.de>
1441
1442         * regex.c (WORDCHAR_P) [WCHAR]: Also return true for the
1443         underscore character.
1444
1445 2001-07-18  Ulrich Drepper  <drepper@redhat.com>
1446
1447         * regex.c: Limit string length printed in debug messages to 100
1448         chars.
1449
1450 2001-07-18  Andreas Jaeger  <aj@suse.de>
1451
1452         * regex.c: Place under LGPL version 2.1.
1453
1454 2001-07-10  Jeff Johnston  <jjohnstn@redhat.com>
1455
1456         * Makefile.in: Add support for regex code.
1457         * regex.c: New file.
1458
1459 2001-07-05  Mark Klein  <mklein@dis.com>
1460
1461         * Makefile.in: Add ffs.c dependency.
1462         * configure.in: Add ffs.c.
1463         * ffs.c: New file.
1464
1465 2001-06-18  Richard Henderson  <rth@redhat.com>
1466
1467         * concat.c: Include <sys/types.h>.
1468
1469 2001-06-11  Loren J. Rittle  <ljrittle@acm.org>
1470
1471         bootstrap/3106
1472         * strerror.c (sys_nerr): Hide the OS header version.
1473         * strsignal.c (sys_nsig): Likewise.
1474
1475 2001-06-10  Richard Henderson  <rth@redhat.com>
1476
1477         * concat.c: Include string.h.  Fix int vs size_t usage.
1478         Simplify the iteration loops.  Use memcpy.
1479
1480 2001-05-16  Matt Kraai  <kraai@alumni.carnegiemellon.edu>
1481
1482         * partition.c: Fix misspelling of `implementation'.
1483
1484 2001-05-09  Thiemo Seufer  <seufer@csv.ica.uni-stuttgart.de>
1485
1486         * md5.c (md5_init_ctx): Declare constants as unsigned.
1487         (md5_process_block): Likewise.
1488
1489 2001-05-07  Zack Weinberg  <zackw@stanford.edu>
1490
1491         * cp-demangle.c (demangle_v3_with_details,
1492         is_gnu_v3_mangled_ctor, is_gnu_v3_mangled_dtor): Use K+R style
1493         function definition.
1494         * ternary.c: Use K+R style function definitions.  Use PTR, not
1495         void *.  Make arguments constant where possible.
1496
1497 2001-05-07  Mark Mitchell  <mark@codesourcery.com>
1498
1499         * splay-tree.h (splay_tree_max): New function.
1500         (splay_tree_min): Likewise.
1501
1502 2001-04-15  Daniel Berlin  <dan@cgsoftware.com>
1503
1504         * ternary.c: New file - Ternary search tree implementation.
1505
1506         * Makefile.in: Add ternary.o, and ternary.c dependencies.
1507
1508 2001-04-03  Zack Weinberg  <zackw@stanford.edu>
1509
1510         * make-temp-file.c (try): Inline.
1511
1512 2001-02-28  Richard Henderson  <rth@redhat.com>
1513
1514         * Makefile.in (make-temp-file.o): Depend on config.h.
1515
1516 2001-03-27  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1517
1518         * memchr.c (memchr): Adjust condition to avoid infinite loop.
1519
1520 2001-03-23  Jakub Jelinek  <jakub@redhat.com>
1521
1522         * cp-demangle.c (demangle_discriminator): `_0' is discriminator #1,
1523         `_' not followed by a digit is invalid.
1524
1525 2001-03-22  Jim Blandy  <jimb@redhat.com>
1526
1527         * cp-demangle.c (string_list_delete): Use dyn_string_delete
1528         instead of free, to free the contents as well as the string
1529         structure.
1530
1531 2001-03-21  Zack Weinberg  <zackw@stanford.edu>
1532
1533         * make-temp-file.c: Always default DIR_SEPARATOR to '/'.
1534         Don't default P_tmpdir to anything.  Try /var/tmp before
1535         /usr/tmp.
1536
1537 2001-03-20  Zack Weinberg  <zackw@stanford.edu>
1538
1539         * choose-temp.c: Split off make_temp_file, and the code
1540         duplicated between it and choose_temp_base, into...
1541         * make-temp-file.c: ... here; new file.
1542
1543         * Makefile.in (CFILES): Add make-temp-file.c.
1544         (REQUIRED_OFILES): Add make-temp-file.o.
1545
1546 2001-03-20  Jim Blandy  <jimb@redhat.com>
1547
1548         * cp-demangle.c (struct demangling_def): New fields:
1549         is_constructor and is_destructor.
1550         (demangling_new): Initialize them.
1551         (demangle_ctor_dtor_name): Set them, if we detect a constructor
1552         or destructor.
1553         (demangle_v3_with_details, is_gnu_v3_mangled_ctor,
1554         is_gnu_v3_mangled_dtor): New functions.
1555
1556 2001-03-20  Jason Merrill  <jason@redhat.com>
1557
1558         * cplus-dem.c (main): Skip initial $.
1559
1560 2001-03-15  Michael Meissner  <meissner@redhat.com>
1561
1562         * hashtab.c (higher_prime_number): Silence warning that 4294967291
1563         might be a signed integer under pre-ISO C systems.
1564
1565 2001-03-10  Neil Booth  <neil@daikokuya.demon.co.uk>
1566             John David Anglin  <dave@hiauly1.hia.nrc.ca>
1567
1568         * libiberty/lbasename.c: New file.
1569         * libiberty/Makefile.in: Update for lbasename.
1570
1571 2001-03-06  Zack Weinberg  <zackw@stanford.edu>
1572
1573         * aclocal.m4 (libiberty_AC_FUNC_C_ALLOCA): New.
1574         * configure.in: Replace all alloca logic with a simple use of
1575         the above new macro.
1576         * config.table: Kill *-*-beos* entry.
1577         * config/mh-beos: Delete.
1578         * configure, config.in: Regenerate.
1579
1580         * Makefile.in (ALLOCA, HFILES): Kill.
1581         (REQUIRED_OFILES): Add alloca.o.
1582         (alloca.o): Depend on libiberty.h.
1583         (argv.o): Don't depend on alloca-conf.h.
1584         * alloca-conf.h: Delete.
1585         * alloca.c: Include libiberty.h.  Kill all #ifdef emacs
1586         blocks.  Provide the C alloca unconditionally.  Use PTR where
1587         appropriate.  Make i00afunc static.
1588         * argv.c: Don't include alloca-conf.h.
1589
1590 2001-03-04  John David Anglin  <dave@hiauly1.hia.nrc.ca>
1591
1592         * cplus-dem.c (main): Cast enum style to int.
1593
1594 2001-02-16  Loren J. Rittle  <ljrittle@acm.org>
1595
1596         * cplus-dem.c (main): Initialize style.
1597
1598 2001-02-02  Phil Edwards  <pme@sources.redhat.com>
1599
1600         * COPYING.LIB:  Update to LGPL 2.1 from the FSF.
1601
1602 2001-01-31  Bryce McKinlay  <bryce@albatross.co.nz>
1603
1604         Add support for Java demangling under the v3 ABI:
1605         * cp-demangle.c (NAMESPACE_SEPARATOR): New define.
1606         (struct demangling_def): Add `style' field.
1607         (demangling_new): New parameter `style'. Set it in demangling_t.
1608         (demangle_prefix): Use NAMESPACE_SEPARATOR.
1609         (demangle_type_ptr): Don't emit pointer symbol if doing Java output.
1610         (cp_demangle): New parameter `style'. Pass it to demangling_new().
1611         (main): Call cp_demangle with extra parameter.
1612         (java_demangle_v3): New function.
1613         (java_builtin_type_names): New. Table of primitive type names used
1614         for Java demangling.
1615         (demangle_builtin_type): Look up in java_builtin_type_names if doing
1616         Java output.
1617         * cplus-dem.c (cplus_demangle): Use java_demangle_v3 to do Java
1618         demangling.
1619         (long_options): Remove obsolete `java' option.
1620         (main): Remove explicit handling of `java' option. Instead, pass style
1621         parameter in cplus_demangle flags as gdb does.
1622         * testsuite/demangle.expected: Add some Java test cases.
1623
1624 2000-12-29  DJ Delorie  <dj@redhat.com>
1625
1626         * fnmatch.c: Make the note about the origins of this file more
1627         accurate, at least until we can sync with glibc.
1628         * getopt.c: Ditto.
1629         * getopt1.c: Ditto.
1630         * md5.c: Ditto.
1631         * obstack.c: Ditto.
1632
1633 2000-12-26  Michael Sokolov  <msokolov@ivan.Harhan.ORG>
1634
1635         * bsearch.c: New file.
1636         * configure.in (funcs): Add bsearch.
1637         (AC_CHECK_FUNCS): Likewise.
1638         * configure, config.in: Regenerate.
1639
1640 2000-12-13  Michael Sokolov  <msokolov@ivan.Harhan.ORG>
1641
1642         * safe-ctype.c: #include "ansidecl.h".
1643         * strtod.c: Likewise.
1644
1645 2000-12-13  Michael Sokolov  <msokolov@ivan.Harhan.ORG>
1646
1647         * strtoul.c: Include safe-ctype.h, not ctype.h.
1648
1649 2000-12-07  Zack Weinberg  <zack@wolery.stanford.edu>
1650
1651         * safe-ctype.c: New file.
1652         * Makefile.in (CFILES): Add safe-ctype.c.
1653         (REQUIRED_OFILES): Add safe-ctype.o.
1654
1655         * argv.c: Define ISBLANK and use it, not isspace.
1656         * basename.c, cplus-dem.c, fnmatch.c, pexecute.c, strtod.c,
1657         strtol.c, strtoul.c: Include safe-ctype.h, not ctype.h.  Use
1658         uppercase ctype macros.  Don't test ISUPPER(c)/ISLOWER(c)
1659         before calling TOLOWER(c)/TOUPPER(c).
1660
1661 2000-12-07  Mike Stump  <mrs@wrs.com>
1662
1663         * Makefile.in (distclean): When cleaning, remove testsuite.
1664
1665 2000-12-05  Jason Merrill  <jason@redhat.com>
1666
1667         * cp-demangle.c (cplus_demangle_v3): Check that it's a v3 mangled
1668         name before allocating the dyn_string.
1669
1670 2000-12-04  Jason Merrill  <jason@redhat.com>
1671
1672         * cp-demangle.c: s/new_abi/v3/.
1673         * cplus-dem.c: Likewise.
1674         (current_demangling_style): Now auto_demangling.
1675         (cplus_demangle): Try v3 demangling if AUTO_DEMANGLING.
1676         (main): Use standard symbol chars for auto_demangling.
1677
1678 2000-11-26  Mark Mitchell  <mark@codesourcery.com>
1679
1680         * hashtab.c (higher_prime_number): Use a table, rather than a
1681         seive, to find the next prime.
1682
1683 2000-11-22  H.J. Lu  <hjl@gnu.org>
1684
1685         * cplus-dem.c (main): Handle gnat_demangling.
1686
1687 2000-11-22  Zack Weinberg  <zack@wolery.stanford.edu>
1688
1689         * aclocal.m4 (LIB_AC_PROG_CC): Moved here from configure.in.
1690         (AC_DEFINE_NOAUTOHEADER): New - work around bug in autoheader.
1691         * configure.in: Call AC_C_INLINE and AC_C_CONST.  Use three
1692         argument form of AC_DEFINE in dummy definitions block.  Use
1693         AC_DEFINE_NOAUTOHEADER for real definitions of things defined
1694         in dummy block.  Preload cache variables instead of bypassing
1695         tests, where possible.
1696         * acconfig.h: Removed.
1697
1698         * xmalloc.c (xmalloc_failed): New function, does error
1699         reporting on failed allocation.
1700         (xmalloc, xcalloc, xrealloc): Use it.
1701
1702 2000-11-21  Hans-Peter Nilsson  <hp@bitrange.com>
1703
1704         * cplus-dem.c (cplus_demangle): Fix formatting.
1705         (grow_vect): Ditto.
1706         (ada_demangle): Ditto.
1707         (internal_cplus_demangle): Ditto.
1708         (mop_up): Ditto.
1709
1710 2000-11-21  H.J. Lu  <hjl@gnu.org>
1711
1712         * cplus-dem.c (main): Handle java_demangling.
1713
1714 2000-11-19  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1715
1716         * cplus-dem.c (grow_vect): Prototype.
1717         (ada_demangle): Cast the arg of ctype macros to unsigned char.
1718
1719 2000-11-15  Hans-Peter Nilsson  <hp@bitrange.com>
1720
1721         * cplus-dem.c (ada_demangle): Add back ATTRIBUTE_UNUSED for
1722         parameter `option'.
1723
1724 2000-11-15  Kenneth Block  <kenneth.block@compaq.com>
1725
1726         * cplus-dem.c: Eliminate use of DEFUN, it is obsolete and cannot
1727         be used in GCC.
1728
1729 2000-11-15  Kenneth Block  <kenneth.block@compaq.com>
1730
1731         * cplus-dem.c: Add gnat demangler.  Add java to demangle style
1732         list.
1733
1734 2000-11-04  Hans-Peter Nilsson  <hp@bitrange.com>
1735
1736         * hashtab.c (htab_expand): Change to return int.  Use calloc or
1737         xcalloc depending on htab->return_allocation_failure.  Return zero
1738         if calloc fails.
1739         (htab_create): Update comment to cover memory allocation.
1740         (htab_try_create): New.
1741         (htab_find_slot_with_hash): Return NULL if htab_expand fails.
1742         Update comment to cover this.
1743
1744 2000-11-03  Hans-Peter Nilsson  <hp@bitrange.com>
1745
1746         * hashtab.c: Change void * to PTR where necessary.
1747         (htab_create, htab_expand): Correct formatting of comment before
1748         function.
1749
1750 2000-10-22  Alex Samuel  <samuel@codesourcery.com>
1751
1752         * cp-demangle.c (string_list_def): Add caret_position and comments.
1753         (result_caret_pos): New macro.
1754         (result_append_string): Rename to...
1755         (result_add_string): ... this, and insert at caret position.
1756         Rename throughout.
1757         (result_append): Rename to...
1758         (result_add): ... this, and insert at caret position.  Rename
1759         throughout.
1760         (result_append_char): Rename to...
1761         (result_add_char): ... this, and insert at caret position.  Rename
1762         throughout.
1763         (result_append_space): Remove.
1764         (string_list_new): Initialize caret position.
1765         (result_add_separated_char): Use caret position.
1766         (result_get_caret): New funtion.
1767         (result_set_caret): Likewise.
1768         (result_shift_caret): Likewise.
1769         (result_previous_char_is_space): Likewise.
1770         (substitution_start): Use caret position.
1771         (substitution_add): Likewise.
1772         (demangling_new): Initialize caret position.
1773         (demangle_encoding): Use caret position.
1774         (demanglin_nested_name): Put CV qualifiers after name.
1775         (demangle_type_ptr): Use switch statement.  Handle pointers to
1776         arrays.  Don't use result_append_space.  Use caret position.
1777         (demangle_type): Emit CV qualifiers after underlying type.  Adjust
1778         call to demangle_array_type.
1779         (demangle_array_type): Add parameter to handle pointers to arrays.
1780
1781 2000-10-01  Mark Mitchell  <mark@codesourcery.com>
1782
1783         * splay-tree.c (splay_tree_insert): Fix formatting.
1784
1785 2000-09-16  Mark Mitchell  <mark@codesourcery.com>
1786
1787         * splay-tree.c (splay_tree_predecessor): Fix typo in comment.
1788
1789 2000-09-14  Michael Sokolov  <msokolov@ivan.Harhan.ORG>
1790
1791         * splay-tree.c: #include <stdio.h>.
1792
1793 2000-09-14  Hans-Peter Nilsson  <hp@axis.com>
1794
1795         * testsuite/demangle-expected: Add two tests for anonymous
1796         namespaces.
1797         * cplus-dem.c (gnu_special): Handle anonymous namespaces.
1798
1799 2000-09-10  Mark Mitchell  <mark@codesourcery.com>
1800
1801         * splay-tree.c (splay_tree_predecessor): New function.
1802         (splay_tree_successor): Likewise.
1803
1804 2000-09-10  Hans-Peter Nilsson  <hp@axis.com>
1805
1806         * testsuite/demangle-expected: Add four tests for type_info
1807         mangling.
1808         * cplus-dem.c (gnu_special): Use do_type, not demangle_fund_type,
1809         for a non-template non-qualified type_info function or node.
1810
1811 2000-09-08  Alex Samuel  <samuel@codesourcery.com>
1812
1813         * cp-demangle.c: Fix copyright banner.
1814
1815 2000-09-07  Michael Sokolov  <msokolov@ivan.Harhan.ORG>
1816
1817         * md5.c: #include "ansidecl.h".
1818
1819 2000-09-06  Alex Samuel  <samuel@codesourcery.com>
1820
1821         * cp-demangle.c (status_allocation_failed): Rearrange whitespace.
1822         (demangle_type): Handle substitution candidates correctly in the
1823         face of special substitutions.
1824
1825 2000-09-05  Alex Samuel  <samuel@codesourcery.com>
1826
1827         * cp-demangle.c (demangle_encoding): Rename variable.
1828         (demangle_name): Rename parameter.  Handle return type
1829         suppression.
1830         (demangle_nested_name): Rename parameter.
1831         (demangle_prefix): Likewise.  Change return type suppression.
1832         (demangle_unqualified_name): Add parameter.  Flag constructors and
1833         conversion operators.
1834         (demangle_special_name): Fix comment.
1835         (demangle_type): Rename variable.
1836         (demangle_bare_function_type): Check for missing return type and
1837         parameter.
1838         (demangle_class_enum_type): Rename parameter.
1839         (demangle_discriminator): Fix misspelling in comment.
1840
1841 2000-08-31  DJ Delorie  <dj@redhat.com>
1842
1843         * configure.in (Cygwin): special case cygwin only when we're
1844         building cygwin, not when we're hosting cygwin.
1845
1846 2000-09-04  Alex Samuel  <samuel@codesourcery.com>
1847
1848         * cp-demangle.c (demangle_template_arg): Eat an `E' after an
1849         <expression>.
1850
1851 2000-09-04  Alex Samuel  <samuel@codesourcery.com>
1852
1853         * cp-demangle.c (demangle_type_ptr): Increment position past
1854         pointer and reference characters.
1855
1856 2000-09-04  Alex Samuel  <samuel@codesourcery.com>
1857
1858         * cp-demangle.c (demangle_nv_offset): New function.
1859         (demangle_v_offset): Likewise.
1860         (demangle_call_offset): Likewise.
1861         (demangle_special_name): Update thunk demangling to comply with
1862         ABI changes.
1863
1864 2000-09-03  Alex Samuel  <samuel@codesourcery.com>
1865
1866         * cp-demangle.c (ANONYMOUS_NAMESPACE_PREFIX): New macro.
1867         (substitution_def): Remove template_parm_number.
1868         (NOT_TEMPLATE_PARM): Remove.
1869         (result_insert_string): New macro.
1870         (result_insert): Likewise.
1871         (result_insert_char): Likewise.
1872         (substitution_add): Remove last parameter.  Don't store template
1873         parm number.
1874         (BFT_NO_RETURN_TYPE): Define as NULL.
1875         (demangle_encoding): Adjust call to demangle_bare_function_type.
1876         (demangle_name): Adjust substitution.  Adjust call to
1877         substitution_add.
1878         (demangle_prefix): Adjust call to substitution_add.
1879         (demangle_identifier): Handle anonymous namespaces.
1880         (demangle_operator_name): Change demangling of vendor-extended
1881         operator to match ABI changes.
1882         (demangle_type_ptr): Change parameters.  Make recursive.  Handle
1883         substitutions here.
1884         (demangle_type): Adjust calls to demangle_template_param,
1885         substitution_add, and demangle_type_ptr.  Fix substitution of
1886         templated types.
1887         (demangle_function_type): Change parameter to a pointer.
1888         (demangle_bare_function_type): Likewise.  Adjust insertion point.
1889         (demangle_template_param): Remove last parameter.
1890         (demangle_expr_primary): Remove unused variable.  Adjust call to
1891         demangle_template_param.
1892         (is_mangled_char): Accept `$' and `.'.
1893         * cplus-dem.c (gnu_new_abi_symbol_characters): Add '$' and '.'.
1894         * dyn-string.c (dyn_string_insert_char): New function.
1895
1896 2000-08-31  Hans-Peter Nilsson  <hp@axis.com>
1897
1898         * testsuite/demangle-expected: Add nine tests for
1899         underscore-after-number followed by five tests for name-signature
1900         delimiter.
1901
1902 2000-08-28  Richard Henderson  <rth@cygnus.com>
1903
1904         * Makefile.in (md5.o): Depend on config.h.
1905
1906 2000-08-28  Jason Merrill  <jason@redhat.com>
1907
1908         * Makefile.in (REQUIRED_OFILES): Add md5.o.
1909         (CFILES): Add md5.c.
1910         * md5.c: New file.
1911
1912 2000-08-27  Alex Samuel  <samuel@codesourcery.com>
1913
1914         * cp-demangle.c (demangle_name): Initialize template_p in local
1915         name case.  Don't re-add substitutions as candidates.
1916         (demangle_nested_name): Use <unqualified-name>.
1917         (demangle_prefix): Likewise.  Don't add template names as
1918         substitution candidates twice, or re-add a substitution or the
1919         last prefix component.
1920         (demangle_local_name): Adjust output format.
1921
1922 2000-08-25  Alex Samuel  <samuel@codesourcery.com>
1923
1924         * cp-demangle.c (result_add_separated_char): Change parameter to
1925         int.
1926         (substitution_add): Don't check for duplicates.  Check if
1927         previously allocated size is zero.
1928         (demangle_name): Remove duplicate check for std substitution.
1929         Clear template flag appropriately.
1930         (demangle_prefix): Remove argument to demangle_substitution.
1931         Don't check that template flag is already set.
1932         (demangle_operator_name): Add pt operator.
1933         (demangle_type): Don't treat r as built-in type.  Remove argument
1934         to demangle_substitution.  Fix substitution candidate mechanics.
1935         Handle <template-template-parm>s.  Improve comments.
1936         (demangle_template_param): Don't handle template arg lists here.
1937         (demangle_substitution): Remove parameter.
1938         (print_usage): Remove extra fprintf option.
1939
1940 2000-08-24  Greg McGary  <greg@mcgary.org>
1941
1942         * libiberty/random.c (end_ptr): Revert previous change.
1943
1944 2000-08-24  Greg McGary  <greg@mcgary.org>
1945
1946         * libiberty/cplus-dem.c (cplus_demangle_opname, cplus_mangle_opname,
1947         demangle_expression, demangle_function_name): Use ARRAY_SIZE.
1948         * libiberty/random.c (end_ptr): Likewise.
1949
1950 2000-08-23  Alex Samuel  <samuel@codesourcery.com>
1951
1952         * cp-demangle.c (result_close_template_list): Remove function.
1953         (result_add_separated_char): New function.
1954         (result_open_template_list): New macro.
1955         (result_close_template_list): Likewise.
1956         (demangle_prefix): Don't set template_p if the
1957         prefix ends with a ctor name.
1958         (demangle_type_ptr): Remove duplicate RETURN_IF_ERROR.
1959         (demangle_type): Check for template args after substitution.
1960         (demangle_template_args): Use result_open_template_list.
1961
1962 2000-08-02  Zack Weinberg  <zack@wolery.cumb.org>
1963
1964         * pexecute.c:  Don't use vfork.  Initialize 'pid' before retry loop.
1965
1966 2000-07-26  Dave Pitts  <dpitts@cozx.com>
1967
1968         * config/mh-openedition.h: Added -DLE370 definition.
1969
1970 2000-07-26 Mark Elbrecht <snowball3@bigfoot.com>
1971
1972         * pexecute.c (pexecute) [__MSDOS__]: Change __GO32__ to
1973         __DJGPP__. Use P_WAIT instead of constant in the spawnv* call.
1974         Cast program to 'char *' in errmsg_arg assignment.
1975         (PWAIT_ERROR): Define.
1976         (pwait): Use PWAIT_ERROR.  Adjust DJGPP's status code to conform
1977         to DJGPP's WIF* macros.
1978
1979 2000-07-27  RodneyBrown  <RodneyBrown@pmsc.com>
1980             Jeff Law <law@cygnus.com>
1981
1982         * getcwd.c: Include string.h, stdlib.h for prototypes
1983
1984         * Makefile.in (rename.o, waitpid.o): Depend on config.h
1985         * rename.c: Include config.h, unistd.h
1986         * waitpid.c: Include config.h, sys/wait.h
1987
1988 2000-07-24  Hans-Peter Nilsson  <hp@axis.com>
1989
1990         * cplus-dem.c (work_stuff_copy_to_from): New.
1991         (delete_non_B_K_work_stuff): New.
1992         (delete_work_stuff): New.
1993         (mop_up): Break out work_stuff partly destruction to
1994         delete_non_B_K_work_stuff.
1995         (iterate_demangle_function): New.
1996         (demangle_prefix): Call iterate_demangle_function instead of
1997         demangle_function_name.  Leave handling of name-signature
1998         __-delimiters to iterate_demangle_function.
1999         (demangle_integral_value): Strip an optional
2000         following underscore cautiously.  Handle negative numbers.
2001
2002 2000-07-24  Daniel Berlin <dberlin@redhat.com>
2003
2004         * cplus-dem.c (demangle_signature): Change if (GNU_DEMANGLING) to
2005         if (AUTO_DEMANGLING || GNU_DEMANGLING)
2006
2007 2000-07-21  Alex Samuel  <samuel@codesourcery.com>
2008
2009         * cp-demangle.c (demangle_ctor_dtor_name): Remove not-in-charge
2010         allocating ctor mangling.
2011         (demangle_array_type): Handle empty and non-constant array length.
2012
2013 2000-07-23  Michael Sokolov  <msokolov@ivan.Harhan.ORG>
2014             Jeff Law <law@cygnus.com>
2015
2016         * configure.in (AC_CHECK_HEADERS): Add time.h.
2017         (AC_HEADER_TIME): Add check.
2018         * configure, config.in: Regenerate.
2019         * getruntime.c: Portably #include <sys/time.h> and/or <time.h>.
2020
2021         * configure.in (AC_CHECK_HEADERS): Add limits.h.
2022         * configure, config.in: Regenerate.
2023         * sort.c: Portably #include <limits.h> and/or <sys/param.h>.
2024         * strtol.c, strtoul.c: #include "config.h". Portably #include
2025         <limits.h> and/or <sys/param.h>.
2026         * Makefile.in (strtol.o, strtoul.o): Update dependencies.
2027
2028         * aclocal.m4 (libiberty_AC_DECLARE_ERRNO): New macro.
2029         * configure.in (libiberty_AC_DECLARE_ERRNO): Add check.
2030         * configure, config.in: Regenerate.
2031         * pexecute.c, strtol.c, strtoul.c: Declare errno if necessary.
2032
2033         * cp-demangle.c, mkstemps.c: #include <sys/types.h>.
2034
2035 2000-07-21  Mike Stump  <mrs@wrs.com>
2036
2037         * Makefile.in (xexit.o): Add dependency for config.h in xexit.c.
2038         * (vasprintf.o): Add dependency for config.h in vasprintf.c.
2039
2040 2000-07-21  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2041
2042         * cp-demangle.c (cp_demangle_type): Wrap in IN_LIBGCC2.
2043
2044         * setenv.c (setenv): Initialize variable `ep'.
2045
2046         * sigsetmask.c (abort): Prototype.
2047
2048         * vasprintf.c: Include config.h.  Check ANSI_PROTOTYPES, not
2049         __STDC__ for stdarg.h include.
2050         (int_vasprintf): Prototype.
2051         (checkit): Prototype.  Use VPARAMS/ANSI_PROTOTYPES/VA_START in
2052         definition.  Cast `global_total_width' in comparison.
2053         (main): Prototype.  Return a value.
2054
2055         * vfork.c (fork): Prototype.
2056
2057         * xexit.c: Include config.h.
2058
2059 2000-07-20  Joseph S. Myers  <jsm28@cam.ac.uk>
2060
2061         * cplus-dem.c (demangle_fund_type): Make 'dec' an unsigned int,
2062         and print it with %u.
2063
2064 2000-07-17  Hans-Peter Nilsson  <hp@axis.com>
2065
2066         * testsuite/regress-demangle (failed test): Show result and
2067         expected output.
2068
2069 2000-07-07  Andrew Haley  <aph@cygnus.com>
2070
2071         * cplus-dem.c (main): fflush() after emitting last char before
2072         waiting for input.
2073
2074 2000-06-28  Alex Samuel  <samuel@codesourcery.com>
2075
2076         * cp-demangle.c (demangle_encoding): Accept no substitutions.
2077         (demangle_name): Handle <substitution> followed by
2078         <unqualified-template-name>.
2079         (demangle_type): Follow special substitutions with
2080         <class-enum-type>
2081         (demangle_subtitution): Set template_p for special substitutions.
2082         (main): Fix typos.
2083
2084 2000-06-27  Alex Samuel  <samuel@codesourcery.com>
2085
2086         * cp-demangle.c (demangle_special_name): Swap base and derived
2087         class when demangling construction vtables.
2088
2089 2000-06-21  Alex Samuel  <samuel@codesourcery.com>
2090
2091         * cp-demangle.c: Don't include ctype.h.
2092         (IS_DIGIT): New macro.
2093         (IS_ALPHA): Likewise.  Use IS_DIGIT and IS_ALPHA throughout
2094         instead of isdigit and isalpanum.
2095         (demangling_def): Make name and next const pointers.
2096         (STATUS_ALLOCATION_FAILED): New status code.
2097         (dyn_string_append_space): Handle failure in
2098         dyn_string_append_char.
2099         (int_to_dyn_string): Likewise.  Change return value to status_t.
2100         (string_list_new): Handle failure of dyn_string_init.
2101         (result_close_template_list): Change return type to status_t.
2102         Handle failure in dyn_string_append.
2103         (result_push): Change return value to status_t.  Handle failure in
2104         string_list_new.  Handle failure of result_push throughout.
2105         (substitution_add): Change return value to status_t.  Handle
2106         dyn_string failures.  Handle failure of substitution_add
2107         throughout.
2108         (template_arg_list_new): Return NULL on allocation failure.
2109         (result_append_string): Return STATUS_ALLOCATION_FAILED on error.
2110         Handle error result throughout.
2111         (result_append): Likewise.
2112         (result_append_char): Likewise.
2113         (result_append_space): Likewise.
2114         (demangling_new): Make argument a const pointer.  Handle
2115         allocation failures.
2116         (demangle_template_args): Handle failure in template_arg_list_new
2117         and result_close_template_list.
2118         (demangle_discriminator): Return if int_to_dyn_string fails.
2119         (cp_demangle): Likewise.
2120         (cp_demangle_type): New function.
2121         (cplus_demangle_new_abi): Don't call dyn_string_delete.  Abort on
2122         memory allocation failure.
2123         (main): Likewise.
2124         * dyn-string.c (RETURN_ON_ALLOCATION_FAILURE): Define if
2125         IN_LIBGCC2.
2126         (dyn_string_init): Change return value to int.  Handle
2127         RETURN_ON_ALLOCATION_FAILURE case.
2128         (dyn_string_new): Handle RETURN_ON_ALLOCATION_FAILURE case.
2129         (dyn_string_release): Delete the dyn_string.
2130         (dyn_string_resize): Handle RETURN_ON_ALLOCATION_FAILURE case.
2131         (dyn_string_copy): Change return type to int.
2132         (dyn_string_copy_cstr): Likewise.
2133         (dyn_string_prepend): Likewise.
2134         (dyn_string_prepend_cstr): Likewise.
2135         (dyn_string_insert): Likewise.
2136         (dyn_string_insert_cstr): Likewise.
2137         (dyn_string_append): Likewise.
2138         (dyn_string_append_cstr): Likewise.
2139         (dyn_string_append_char): Likewise.
2140         (dyn_string_substring): Likewise.
2141
2142 2000-06-09  Zack Weinberg  <zack@wolery.cumb.org>
2143
2144         * cp-demangle.c (demangle_operator_name): Add spaces before
2145         names beginning with a letter: delete, delete[], new, new[],
2146         sizeof.
2147         (demangle_special_name): Handle TF <type> and TJ <type>.
2148
2149 Thu Jun  8 18:52:24 2000  Philippe De Muyter  <phdm@macqel.be>
2150
2151         * cp-demangle.c (template_arg_list_new): Revert previous PARAMS patch.
2152
2153 Thu Jun  8 09:25:54 2000  Philippe De Muyter  <phdm@macqel.be>
2154
2155         * cp-demangle.c (stdio.h): File included unconditionaly.
2156         (template_arg_list_new): Parameter list is PARAMS ((void)), not ().
2157         * dyn-string.c (stdio.h): File included.
2158         * partition.c (partition_print): No `&' needed to take the address of
2159         a function.
2160
2161 2000-06-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2162
2163         * configure.in (ac_libiberty_warn_cflags): Add -pedantic.
2164
2165         * choose-temp.c (try, choose_temp_base, make_temp_file): Constify.
2166
2167         * cp-demangle.c (demangle_char): Change parameter from char to int.
2168         (demangle_expression, demangle_expr_primary): Remove extra
2169         semi-colon in prototype.
2170
2171         * dyn-string.c (dyn_string_append_char): Change parameter from
2172         char to int.
2173
2174         * memcmp.c (memcmp): Constify.
2175
2176         * mkstemps.c (gcc_uint64_t): Mark GNUC `long long' case with
2177         __extension__.
2178
2179         * partition.c (elem_compare): Prototype.  Don't cast away
2180         const-ness.
2181
2182         * setenv.c (setenv): Use braces to avoid ambiguous `else'.
2183
2184 2000-06-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2185
2186         * Makefile.in (cp-demangle.o): Depend on $(INCDIR)/demangle.h.
2187
2188         * cp-demangle.c: Include demangle.h.
2189         (template_arg_list_new): DeANSIfy.
2190         (cp_demangle): Make static and add prototype.
2191         (operator_code, operators): Constify.
2192         (demangle_operator_name): Likewise for variables `p1', `p2' and `p'.
2193
2194 2000-06-05  Alex Samuel  <samuel@codesourcery.com>
2195
2196         * cp-demangle.c (demangle_prefix): Cast argument to isdigit to
2197         unsigned char.
2198         (demangle_unqualified_name): Likewise.
2199         (demangle_number_literally): Likewise.
2200         (demangle_type): Likewise.
2201         (demangle_substitution): Likewise.
2202         (is_mangled_char): Likewise, for isalnum.
2203
2204 2000-06-04  Alex Samuel  <samuel@codesourcery.com>
2205
2206         * Makefile.in (CFILES): Add cp-demangle.c and dyn-string.c.
2207         (REQUIRED_OFILES): Add cp-demangle.o and dyn-string.o.
2208         (cp-demangle.o): New dependency.
2209         (dyn-string.o): Likewise.
2210
2211         * dyn-string.c: Move here from gcc/dyn-string.c.  Add new functions.
2212
2213         * cplus-dem.c (libiberty_demanglers): Add initializer for new-ABI
2214         demangler.
2215         (cplus_demangle): Call cplus_demangle_new_abi if in new-ABI
2216         demangling mode.
2217         (gnu_new_abi_symbol_characters): New function.
2218         (main): Use gnu_new_abi_symbol_characters.  * cp-demangle.c: New
2219         file.
2220         * cp-demangle.c: New file.
2221
2222 Tue May 30 16:45:25 2000  Andrew Cagney  <cagney@b1.cygnus.com>
2223
2224         * floatformat.c: Add name to each floatformat field.
2225
2226 Tue May 30 15:07:52 2000  Jeffrey A Law  (law@cygnus.com)
2227
2228         * Makefile.in (objalloc.o): Depend on config.h
2229
2230 2000-05-29  Zack Weinberg  <zack@wolery.cumb.org>
2231
2232         * hashtab.c, partition.c, sort.c, xmemdup.c: Include string.h
2233         if HAVE_STRING_H.
2234         * pexecute.c, xexit.c: Include stdlib.h if HAVE_STDLIB_H.
2235         * objalloc.c: Include config.h.  Include stdlib.h and don't
2236         declare malloc or free if HAVE_STDLIB_H.
2237         * strerror.c, strsignal.c: Include stdlib.h if HAVE_STDLIB_H,
2238         else declare malloc without prototype.  Include string.h if
2239         HAVE_STRING_H, else declare memset without prototype.  Don't
2240         include stddef.h.
2241
2242 2000-05-23  Mike Stump  <mrs@wrs.com>
2243
2244         * Makefile.in (xmalloc.o): Add dependency for config.h, fixes make
2245         -j3.
2246
2247 2000-05-18  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
2248
2249         * xmalloc.c: Include config.h for HAVE_SBRK definition.
2250
2251 2000-05-16  Horst von Brand <vonbrand@sleipnir.valparaiso.cl>
2252
2253         * hashtab.c (hash_pointer): Delete low-order bits which are
2254         probably zero, also eliminate a warning on alpha.
2255
2256 2000-05-15  David Edelsohn  <edelsohn@gnu.org>
2257
2258         * Makefile.in: Change "pic" to depend on $(PICFLAG), not
2259         on $(enable_shared).
2260
2261 2000-05-10  Jakub Jelinek  <jakub@redhat.com>
2262
2263         * config.table: Use mh-sparcpic for sparc*-*-*.
2264
2265 2000-05-08  Nick Clifton  <nickc@cygnus.com>
2266
2267         * Makefile.in (CFILES): Add strncmp.c.
2268         (NEEDED): Add strncmp.
2269
2270 2000-05-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2271
2272         * cplus-dem.c (cplus_demangle_opname, demangle_function_name):
2273         Cast the arguments to `islower' to `unsigned char'.
2274         (print_demangler_list): Prototype.
2275
2276 Thu May  4 17:14:41 2000  Philippe De Muyter  <phdm@macqel.be>
2277
2278         * sort.c (UCHAR_MAX): Provide fallback definition.
2279
2280 2000-04-29  Alexandre Oliva  <aoliva@cygnus.com>
2281
2282         * Makefile.in (maintainer-clean-subdir): Fix handling of empty
2283         SUBDIRS.
2284
2285 2000-04-28  Kenneth Block  <block@zk3.dec.com>
2286             Jason Merrill  <jason@casey.cygnus.com>
2287
2288         * cplus-dem.c (libiberty_demanglers): New table for demangle styles.
2289         (cplus_demangle_set_style): New function for setting style.
2290         (cplus_demangle_name_to_style): New function to translate name.
2291
2292 2000-04-27  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2293
2294         * aclocal.m4: New file with new test libiberty_AC_FUNC_STRNCMP.
2295
2296         * configure.in (AC_CHECK_HEADERS): Add sys/mman.h fcntl.h.
2297         (libiberty_AC_FUNC_STRNCMP): Invoke.
2298
2299         * strncmp.c: New file.
2300
2301 Thu Apr 27 16:58:43 MET DST 2000  Jan Hubicka  <jh@suse.cz>
2302
2303         * hashtab.c (htab_expand): Add prototype.
2304         (find_empty_slot_for_expand): Likewise.
2305
2306 2000-04-24  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2307
2308         * hashtab.c (hash_pointer, eq_pointer): Make definition static to
2309         match prototype.
2310         (htab_expand): Cast the return value of xcalloc.
2311
2312 2000-04-24  Mark Mitchell  <mark@codesourcery.com>
2313
2314         * hashtab.c (hash_pointer): New function.
2315         (eq_pointer): Likewise.
2316         (htab_hash_pointer): New variable.
2317         (htab_eq_pointer): Likewise.
2318
2319 2000-04-23  Mark Mitchell  <mark@codesourcery.com>
2320
2321         * sort.c (sort_pointers): Fix endianness bugs.
2322
2323         * sort.c: New file.
2324         * Makefile.in (CFILES): Add sort.c
2325         (REQUIRED_OFILES): Add sort.o.
2326         (sort.o): New target.
2327
2328 2000-04-21  Michael Sokolov  <msokolov@ivan.Harhan.ORG>
2329
2330         * Makefile.in (*-subdir): Revamp slightly to avoid losing on
2331         4.3BSD systems.
2332
2333 Tue Apr 18 16:23:31 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2334
2335         * hashtab.c: Various minor cleanups.
2336         (htab_find_slot_with_hash): INSERT is now enum insert_option.
2337         (htab_find_slot): Likewise.
2338
2339 2000-04-16  Dave Pitts  <dpitts@cozx.com>
2340
2341         * cplus-dem.c (cplus_demangle_opname): Changed to use islower.
2342
2343 2000-04-05  Richard Henderson  <rth@cygnus.com>
2344
2345         * splay-tree.c (splay_tree_remove): New.
2346
2347 2000-03-30  Mark Mitchell  <mark@codesourcery.com>
2348
2349         * hashtab.c (find_empty_slot_for_expand): Use hashval_t for hash
2350         codes.
2351         (htab_find_with_hash): Likewise.
2352         (htab_find_slot_with_hash): Likewise.
2353
2354 2000-03-29  Zack Weinberg  <zack@wolery.cumb.org>
2355
2356         * hashtab.c (htab_find_with_hash): Avoid calculating hash2
2357         unless it will be used.  Rearrange loop for better
2358         optimization.
2359         (higher_prime_number): Add static prototype.
2360
2361 Thu Mar 16 01:33:58 2000  Jeffrey A Law  (law@cygnus.com)
2362
2363         * Makefile.in (partition.o): Depend on config.h
2364
2365 2000-03-14  Bernd Schmidt  <bernds@cygnus.co.uk>
2366
2367         * hashtab.c (find_empty_slot_for_expand): New function.
2368         (htab_expand): Use it instead of htab_find_slot.
2369         (htab_find_with_hash): Renamed from htab_find; now accepts extra
2370         argument HASH.
2371         (htab_find_slot_with_hash): Likewise for htab_find_slot.
2372         (htab_find): New wrapper function.
2373         (htab_find_slot): Likewise.
2374         (htab_traverse): Pass slot, not entry, to called function.
2375
2376 2000-03-09  Alex Samuel  <samuel@codesourcery.com>
2377
2378         * Makefile.in (CFILES): Add partition.c.
2379         (REQUIRED_OFILES): Add partition.o.
2380         (partition.o): New rule.
2381         * partition.c: New file.
2382
2383 2000-03-09  Zack Weinberg  <zack@wolery.cumb.org>
2384
2385         * hashtab.c (htab_create): Set del_f.
2386         (htab_delete, htab_empty, htab_remove_elt, htab_clear_slot):
2387         Use it.
2388
2389 2000-03-08  Zack Weinberg  <zack@wolery.cumb.org>
2390
2391         * hashtab.c: Remove debugging variables (all_searches,
2392         all_collisions, all_expansions). Delete
2393         all_hash_table_collisions.
2394         (create_hash_table, delete_hash_table, empty_hash_table,
2395         find_hash_table_entry, remove_element_from_hash_table_entry,
2396         clear_hash_table_slot, traverse_hash_table, hash_table_size,
2397         hash_table_elements_number, hash_table_collisions): Rename to:
2398         htab_create, htab_delete, htab_empty, htab_find_slot,
2399         htab_remove_elt, htab_clear_slot, htab_traverse, htab_size,
2400         htab_elements, htab_collisions.
2401         (htab_find): New function, handles common case where you don't
2402         plan to add or delete an entry.
2403         (htab_expand): Don't create a whole new table, just a new
2404         entry vector.
2405         (htab_find_slot): Simplify logic.
2406
2407 1999-08-03  Ian Lance Taylor  <ian@zembu.com>
2408
2409         * floatformat.c: Add casts to avoid signed/unsigned warnings.
2410         * pexecute.c: Add ATTRIBUTE_UNUSED as needed on Unix.
2411
2412         * Makefile.in (install_to_libdir): Change $(TARGETLIB).n to
2413         $(TARGETLIB)n so it works on MSDOS.
2414         (install_to_tooldir): Likewise.
2415
2416 1999-07-21  Ian Lance Taylor  <ian@zembu.com>
2417
2418         From Mark Elbrecht:
2419         * makefile.dos: Remove; obsolete.
2420         * configure.bat: Remove; obsolete.
2421
2422 1999-07-11  Ian Lance Taylor  <ian@zembu.com>
2423
2424         * splay-tree.c (splay_tree_insert): Add initialization to avoid
2425         warning.
2426
2427 2000-01-04  Mumit Khan  <khan@xraylith.wisc.edu>
2428
2429         * pexecute.c: Conditionally include string.h.
2430         (fix_argv): Handle embedded whitespace in args for Mingw32.
2431
2432 2000-01-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2433
2434         * configure.in (ac_libiberty_warn_cflags): Turn on warnings if
2435         we're using gcc.
2436
2437         * Makefile.in (COMPILE.c): Add @ac_libiberty_warn_cflags@
2438
2439 1999-12-27  Geoff Keating  <geoffk@cygnus.com>
2440
2441         * vasprintf.c (int_vasprintf): Don't re-read the format character
2442         as this mishandles strings like '%%s'.
2443
2444 1999-12-05  Mark Mitchell  <mark@codesourcery.com>
2445
2446         * splay-tree.c (splay_tree_new): Use struct splay_tree_node_s
2447         rather than struct splay_tree_node.
2448         (splay_tree_insert): Use struct splay_tree_s rather than struct
2449         splay_tree.
2450
2451 Sun Nov 28 00:59:39 1999  Philippe De Muyter  <phdm@macqel.be>
2452
2453         * hashtab.c (sys/types.h): File included.
2454
2455 1999-11-22  Jason Merrill  <jason@casey.cygnus.com>
2456
2457         * strtoul.c, strtol.c, random.c: Remove advertising clause from
2458         BSD license, pursuant with
2459
2460           ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change
2461
2462 Wed Nov 10 09:42:39 1999  Jeffrey A Law  (law@cygnus.com)
2463
2464         * hashtab.c: Include stdio.h.
2465
2466 Mon Nov  8 09:23:41 1999  Jeffrey A Law  (law@cygnus.com)
2467
2468         * hashtab.c (traverse_hash_table): Protect prototype with PARAMS.
2469
2470 Tue Nov  2 03:23:13 1999  Philippe De Muyter  <phdm@macqel.be>
2471
2472         * xstrdup (sys/types.h): Include this file.
2473
2474 1999-10-28  Nathan Sidwell  <nathan@acm.org>
2475
2476         * Makefile.in (SUBDIRS): New macro.
2477         (mostlyclean, clean, distclean, maintainer-clean): Adjust to
2478         avoid multiple subdirectory cleaning.
2479         (*-subdir): Use SUBDIRS.
2480
2481 1999-10-25  Jim Kingdon  <http://developer.redhat.com/>
2482
2483         * cplus-dem.c: Move declarations of standard_symbol_characters and
2484         hp_symbol_characters inside #ifdef MAIN to avoid compiler
2485         warnings.
2486
2487 1999-10-23 08:51 -0700  Zack Weinberg  <zack@bitmover.com>
2488
2489         * hashtab.c (find_hash_table_entry): When returning a
2490         DELETED_ENTRY slot, change it to EMPTY_ENTRY first.
2491         (clear_hash_table_slot): New function which deletes an entry
2492         by its position in the table, not its value.
2493         (traverse_hash_table): New function which calls a hook
2494         function for every live entry in the table.
2495
2496 1999-10-19  Mark Mitchell  <mark@codesourcery.com>
2497
2498         * cplus-dem.c (INTBUF_SIZE): New macro.
2499         (string_append_template_idx): New function.
2500         (demangle_expression): Likewise.
2501         (demangle_integral_value): Use it.
2502         (demangle_real_value): New function, split out from ...
2503         (demangle_template_value_parm): ... here.  Use
2504         string_append_template_idx.  Use demangle_real_value.
2505         (demangle_template): Use string_append_template_idx.
2506         (demangle_qualified): Use consume_count_with_underscores.
2507         (get_count): Tweak formatting.
2508         (do_type): Use string_append_template_idx.
2509
2510 1999-10-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2511
2512         * calloc.c: Add a public domain notice.
2513
2514 Mon Oct 18 02:30:47 1999  Philippe De Muyter  <phdm@macqel.be>
2515
2516         * setenv.c (sys/types.h, stdio.h): Include those files unconditionaly.
2517
2518 Fri Oct 15 01:47:51 1999  Vladimir Makarov  <vmakarov@loony.cygnus.com>
2519
2520         * Makefile.in (CFILES): Add hashtab.c
2521         (REQUIRED_OFILES): Add hashtab.o
2522         (hashtab.o): Add dependencies.
2523         * hashtab.c: New file
2524
2525 Wed Oct 13 01:16:47 1999  Mumit Khan  <khan@xraylith.wisc.edu>
2526
2527         * basename.c (DIR_SEPARATOR): New macro.
2528         (DIR_SEPARATOR_2): Likewise.
2529         (HAVE_DOS_BASED_FILESYSTEM): Likewise.
2530         (IS_DIR_SEPARATOR): Likewise.
2531         (main): Handle MSDOS style pathname.
2532
2533 1999-10-11  Mark Mitchell  <mark@codesourcery.com>
2534
2535         * cplus-dem.c (do_type): Handle pointer to member types whose
2536         enclosing classes have namespace scope.
2537
2538 Sun Oct 10 01:23:50 1999  Marc Espie <espie@cvs.openbsd.org>
2539
2540         * config.table:  Provide a backup shell for executing move-if-change.
2541
2542 1999-10-02  Mark Mitchell  <mark@codesourcery.com>
2543
2544         * xmalloc.c (xmalloc): Fix spelling error.
2545         (xcalloc, xrealloc): Likewise.
2546
2547 1999-10-02  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2548
2549         * cplus-dem.c (fancy_abort, demangle_integral_value,
2550         demangle_arm_hp_template, recursively_demangle,
2551         standard_symbol_characters, hp_symbol_characters, main): Add prototype.
2552         (program_name, program_version, fatal): Constify a char*.
2553         (usage, fatal): Mark with ATTRIBUTE_NORETURN.
2554         (main): Call return, not exit.
2555
2556 1999-09-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2557
2558         * choose-temp.c: Remove obsolete comment about gcc.
2559         (make_temp_file): Constify a char*.
2560
2561 Wed Sep  8 20:03:28 1999  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2562
2563         * xmemdup.c: Include sys/types.h.
2564
2565 1999-09-07  Jeff Garzik  <jgarzik@pobox.com>
2566
2567         * xmemdup.c: New xmemdup function.
2568         * Makefile.in, makefile.vms, vmsbuild.com:  Use xmemdup.[co].
2569
2570 Tue Sep  7 23:32:18 1999  Linas Vepstas  <linas@linas.org>
2571
2572         * config.table: Add openedition target.
2573         * config/mh-openedition: New file.
2574
2575 Thu Sep  2 01:36:12 1999  Marc Espie <espie@cvs.openbsd.org>
2576
2577         * pexecute.c (pexecute):  Fill in temp_base when needed.
2578
2579 1999-08-31  Richard Henderson  <rth@cygnus.com>
2580
2581         * getpwd.c: Check HAVE_GETCWD before defining it away.
2582
2583 1999-08-30  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2584
2585         * Makefile.in (CFILES): Add calloc.c and getpwd.c.
2586         (REQUIRED_OFILES): Add getpwd.o.
2587         (getpwd.o): Add target.
2588
2589         * configure.in (AC_PREREQ): Bump to 2.13.
2590         (AC_CHECK_HEADERS): Add check for <sys/stat.h>.
2591
2592         * getpwd.c: New file, moved here from gcc.
2593
2594 1999-08-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2595
2596         * cplus-dem.c (gnu_special): Cast a `size_t' to `long' when
2597         comparing against a signed quantity.
2598         (arm_special): Likewise.
2599         (demangle_fund_type): Likewise.
2600         (do_hpacc_template_const_value): Mark parameter `work' with
2601         ATTRIBUTE_UNUSED.
2602         (main): Constify variable `valid_symbols'.
2603
2604 Tue Aug 24 02:50:45 1999  Philippe De Muyter  <phdm@macqel.be>
2605
2606         * strtoul.c (strtoul): Add parentheses around && within ||.
2607
2608 Fri Aug  6 23:32:29 1999  Daniel Jacobowitz <drow@drow.them.org>
2609
2610         * Makefile.in (FLAGS_TO_PASS): Include prefix, exec_prefix,
2611         libdir, libsubdir and tooldir.
2612
2613 1999-08-01  Mark Mitchell  <mark@codesourcery.com>
2614
2615         * splay-tree.c (splay_tree_insert): Return the new node.
2616
2617 1999-07-14  Richard Henderson  <rth@cygnus.com>
2618
2619         * argv.c: Include stdlib.h and string.h instead of
2620         prototyping directly.
2621         * choose-temp.c: Conditionally include string.h.
2622
2623 1999-07-12  Jason Merrill  <jason@yorick.cygnus.com>
2624
2625         * Makefile.in (NEEDED): Add bcmp, bcopy, bzero.
2626
2627 1999-07-11  Ian Lance Taylor  <ian@zembu.com>
2628
2629         * splay-tree.c (splay_tree_insert): Add initialization to avoid
2630         warning.
2631
2632 1999-07-07  Jason Merrill  <jason@yorick.cygnus.com>
2633
2634         * Makefile.in (needed-list): Only include stuff we actually need
2635         for libstdc++.
2636
2637 1999-06-21  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
2638
2639         * configure.in (checkfuncs): Add gettimeofday.
2640         * config.in, configure: Regenerated.
2641
2642 Mon Jun 21 05:56:01 1999  Mumit Khan  <khan@xraylith.wisc.edu>
2643
2644         * configure.in (*-*-uwin*): UWIN has sys_{errlist,nerr} even if
2645         the test fails.
2646         * configure: Regenerate.
2647
2648 1999-06-10  Mike Stump  <mrs@wrs.com>
2649
2650         * Makefile.in (setenv.o): Add config.h dep for setenv.o to fix
2651         parallel builds.
2652
2653 1999-05-28  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2654
2655         * putenv.c: Include ansidecl.h to define `const'.
2656         * setenv.c: Likewise.
2657
2658 Wed May 26 03:58:20 1999  "Melissa O'Neill" <oneill@cs.sfu.ca>
2659
2660         * Makefile.in (CFILES): Add putenv.c and setenv.c.
2661         * configure.in (funcs): Add putenv and setenv.
2662         (AC_CHECK_FUNCS): Check for putenv and setenv.
2663         * configure: Rebuilt.
2664         * putenv.c setenv.c: New files.
2665
2666         * getcwd.c (getcwd): If pathname is NULL, then obtain SIZE
2667         bytes of space using malloc.
2668
2669 Mon May 17 01:42:34 1999  Stu Grossman  <grossman@babylon-5.cygnus.com>
2670
2671         * cplus-dem.c (demangle_fund_type (near 'I' case)): Don't advance
2672         the *mangled pointer beyond the end of the string.  Clean up code to
2673         match prevailing coding style.
2674
2675 1999-05-13  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
2676
2677         * tmpnam.c (L_tmpnam): Fix typo.
2678
2679 Thu May 13 01:14:46 1999 Marc Espie <espie@cvs.openbsd.org>
2680
2681         * cplus-dem.c (standard_symbol_characters): Renamed from
2682         standard_symbol_alphabet.  No longer modify TABLE.
2683         (hp_symbol_characters): Renamed from hp_symbol_alphabet.  No longer
2684         modify TABLE.
2685         (main): Corresponding changes.  Use strchr to determine if a
2686         character is valid.
2687
2688 1999-05-11  Jim Blandy  <jimb@zwingli.cygnus.com>
2689
2690         * cplus-dem.c (main): Use table lookup to distinguish identifier
2691         characters from non-identifier characters.
2692         (standard_symbol_alphabet, hp_symbol_alphabet): New functions.
2693
2694 Thu May  6 20:34:42 1999  Fred Fish  <fnf@be.com>
2695
2696         * configure.in (sys/resource.h): Add to AC_CHECK_HEADERS list.
2697         * getruntime.c: Only attempt to include sys/resource.h and
2698         use getrusage if both HAVE_GETRUSAGE and HAVE_SYS_RESOURCE_H
2699         are defined.
2700
2701 Mon Apr 26 01:36:06 1999  Donn Terry (donn@interix.com)
2702
2703         * configure.in (alloca detection): Handle alloca directly for interix.
2704         * configure: Rebuilt.
2705
2706 Sun Apr 25 01:18:21 1999  Mumit Khan  <khan@xraylith.wisc.edu>
2707
2708         * choose-temp.c (DIR_SEPARATOR): Use '\\' only for native windows32.
2709
2710 1999-04-20  Jim Blandy  <jimb@zwingli.cygnus.com>
2711
2712         Fix from Dale Hawkins:
2713         * cplus-dem.c (mop_up): Set typevec_size to zero, so it'll be
2714         reallocated properly if we use it again.
2715
2716         * cplus-dem.c (demangle_fund_type): Check for buffer overrun.  Be
2717         stricter about syntax.  Always null-terminate string.
2718
2719 Thu Apr 15 23:00:55 1999  Mumit Khan  <khan@xraylith.wisc.edu>
2720
2721         * configure.in (checkfuncs): Check for sbrk.
2722         * config.in: Rebuilt.
2723         * configure: Likewise.
2724         * xmalloc.c: Use HAVE_SBRK instead of the host specific definitions.
2725
2726 1999-04-12  Jim Blandy  <jimb@zwingli.cygnus.com>
2727
2728         Fix from Marcus Daniels:
2729         * cplus-dem.c (demangle_fund_type): Don't run off the end of the
2730         identifier looking for another underscore.
2731
2732 Sun Apr 11 23:20:59 1999  Mumit Khan  <khan@xraylith.wisc.edu>
2733
2734         * pexecute.c: Change all references to __UWIN__ to _UWIN.
2735         * xmalloc.c: Likewise.
2736         (xcalloc): UWIN has sbrk.
2737         (xrealloc): Fix guard macro.
2738
2739 1999-04-11  Richard Henderson  <rth@cygnus.com>
2740
2741         * alloca-conf.h (alloca) [C_ALLOCA]: Don't use Gcc builtin
2742         or <alloca.h>.
2743         * clock.c (GNU_HZ): New definition.
2744         (clock): Use it.
2745         * getruntime.c: Likewise.
2746
2747         * config.table: Use mh-beos.
2748         * config/mh-beos: New file.
2749
2750 1999-04-11  Mark Mitchell  <mark@codesourcery.com>
2751
2752         * cplus-dem.c (demangle_template_value_parm): Handle
2753         pointers-to-members.
2754         (do_type): Handle template parameters as qualifiers.
2755
2756 1999-04-01  Jim Blandy  <jimb@zwingli.cygnus.com>
2757
2758         * cplus-dem.c: Attempt to handle overflows in counts with some
2759         semblance of grace.
2760         (consume_count): Detect overflows.  Return -1 to indicate errors,
2761         instead of zero.
2762         (demangle_template_value_parm, demangle_template): Handle change
2763         to consume_count's return convention.
2764
2765 1999-04-05  Tom Tromey  <tromey@cygnus.com>
2766
2767         * testsuite/regress-demangle: New file.
2768         * testsuite/demangle-expected: New file.
2769
2770         * Makefile.in (all, check, installcheck, info, install-info,
2771         clean-info, dvi, install, etags, tags, mostlyclean, clean,
2772         distclean, maintainer-clean, realclean): Depend on corresponding
2773         `-subdir' target.
2774         (all-subdir check-subdir installcheck-subdir info-subdir
2775         install-info-subdir clean-info-subdir dvi-subdir
2776         install-info-subdir etags-subdir mostlyclean-subdir clean-subdir
2777         distclean-subdir maintainer-clean-subdir): New target.
2778         * testsuite/Makefile.in: New file.
2779         * configure: Rebuilt.
2780         * configure.in: Create testsuite/Makefile.
2781
2782 1999-04-02  Mark Mitchell  <mark@codesourcery.com>
2783
2784         * splay-tree.h (splay_tree_compare_pointers): Define.
2785
2786 1999-03-30  Mark Mitchell  <mark@codesourcery.com>
2787
2788         * splay-tree.c (splay_tree_compare_ints): Define.
2789
2790 1999-03-30  Tom Tromey  <tromey@cygnus.com>
2791
2792         * cplus-dem.c (consume_count): If `count' wraps, return 0 and
2793         don't advance input pointer.
2794         (demangle_class_name): If consume_count didn't find a count, do
2795         nothing.  Don't bother with `strlen' sanity check; consume_count
2796         does it for us.
2797
2798 1999-03-16  Stan Shebs  <shebs@andros.cygnus.com>
2799
2800         From Art Haas  <ahaas@neosoft.com>:
2801         * cplus-dem.c (demangle_prefix): Don't grab all the '__' strings
2802         when doing arm or hp style.
2803         (demangle_nested_args): Decr forgetting_types field when done.
2804
2805 Thu Mar 11 01:22:58 1999  Mumit Khan  <khan@xraylith.wisc.edu>
2806
2807         * pexecute.c (__CYGWIN32__): Rename to
2808         (__CYGWIN__): this.
2809         * xmalloc.c: Likewise.
2810
2811         Changes to support i386-pc-uwin.
2812         * configure.in (*-*-uwin*): Workaround for vfork bug.
2813         * configure: Regenerate.
2814         * pexecute.c (pexecute): Be like standard Unix.
2815         (pwait): Likewise.
2816         * xmalloc.c (first_break): Define.
2817         (xmalloc_set_program_name): Use.
2818         (xmalloc): Use.
2819
2820 Thu Mar 11 01:07:55 1999  Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
2821
2822         * config.table: Cleanup and add mh-*pic handling for alpha, arm, powerpc
2823
2824 Sun Feb 28 22:30:44 1999  Geoffrey Noer  <noer@cygnus.com>
2825
2826         * config.table: Check cygwin*, not cygwin32*.
2827
2828 Tue Feb  9 16:39:01 1999  Dave Brolley  <brolley@cygnus.com>
2829
2830         * Makefile.in: Change mkstemp -> mkstemps.
2831
2832 Tue Feb  9 01:12:27 1999  Marc Espie <Marc.Espie@liafa.jussieu.fr>
2833
2834         * Makefile.in (REQUIRED_OFILES): remove mkstemp.o
2835         * configure.in (funcs): Check for and conditionally add mkstemps to
2836         the list of functions libiberty will provide.
2837         * configure: Rebuilt.
2838
2839 Wed Feb  3 00:01:15 1999  Mumit Khan  <khan@xraylith.wisc.edu>
2840
2841         * clock.c (HZ): Define in terms of (ISO C) CLOCKS_PER_SEC on
2842         platforms that don't have HZ.
2843         * getruntime.c (HZ): Likewise.
2844
2845 Sat Jan 30 13:28:04 1999  Richard Henderson  <rth@cygnus.com>
2846
2847         * Makefile.in (xstrdup.o): Depend on config.h.
2848
2849 Wed Jan 13 07:26:44 1999  H.J. Lu  (hjl@gnu.org)
2850
2851         * cplus-dem.c (mop_up): Set work->previous_argument to NULL after
2852         freeing it.
2853
2854 Wed Jan 13 14:16:36 1999  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2855
2856         * xstrdup.c (xstrdup): Switch from strcpy to memcpy for speed.
2857
2858 Tue Jan  5 15:58:29 1999  Elena Zannoni  <ezannoni@kwikemart.cygnus.com>
2859
2860         * Makefile.in (CFILES): fix typo, splay-tree.c instead of
2861         splay-tree.o.
2862
2863 1999-01-04  Jason Molenda  (jsm@bugshack.cygnus.com)
2864
2865         * configure.in: Require autoconf 2.12.1 or higher.
2866
2867 1998-12-30  Michael Meissner  <meissner@cygnus.com>
2868
2869         * random.c (NULL): Don't redefine NULL if it is already defined.
2870
2871 Tue Dec 22 09:43:35 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2872
2873         * argv.c (buildargv): Cast the result of alloca in assignment.
2874
2875         * choose-temp.c: Include stdlib.h.
2876
2877         * cplus-dem.c (demangle_arm_pt): Remove unused prototype.
2878         (snarf_numeric_literal): Constify first parameter.
2879         (code_for_qualifier): Avoid a gcc extension, make the parameter an
2880         int, not a char.
2881         (demangle_qualifier): Likewise.
2882         (demangle_signature): Cast the argument of a ctype function to
2883         unsigned char.
2884         (arm_pt): Add parens around assignment used as truth value.
2885         (demangle_arm_hp_template): Constify variable `args'.
2886         (do_hpacc_template_const_value): Cast the argument of a ctype
2887         function to unsigned char.
2888         (do_hpacc_template_literal): Remove unused variable `i'.
2889         (snarf_numeric_literal): Constify parameter `args'.
2890         Cast the argument of a ctype function to unsigned char.
2891
2892         * floatformat.c (floatformat_to_double): Add explicit braces to
2893         avoid ambiguous `else'.
2894
2895         * fnmatch.c (fnmatch): Change type of variables `c', `c1',
2896         `cstart' and `cend' to unsigned char.  Cast the argument of macro
2897         `FOLD', which uses ctype functions, to unsigned char.
2898
2899         * objalloc.c (free): Add prototype.
2900
2901 Sun Dec 20 16:03:46 1998  Hans-Peter Nilsson  <hp@axis.se>
2902
2903         * Makefile.in (CFILES): Fix typo: splay-tree.c, not splay-tree.o
2904
2905 Fri Dec 18 17:50:18 1998  David Taylor  <taylor@texas.cygnus.com>
2906
2907         * cplus-dem.c (demangle_arm_pt): remove declaration -- function
2908         doesn't exist.
2909         (do_hpacc_template_literal): remove unused variable `i'.
2910
2911 Fri Dec 18 16:11:43 EST 1998  Andrew MacLeod  <amacleod@cygnus.com>
2912
2913         * cplus-dem.c (demangle_fund_type): Process CV and u codes before
2914         bumping the pointer we read from. Also prepend these codes,
2915         as we do in other places.
2916
2917 1998-12-18  Nick Clifton  <nickc@cygnus.com>
2918
2919         * cplus-dem.c (demangle_arm_hp_template): Make variable 'args' be
2920         'const char *' in order to match its usage when calling siblings.
2921         (snarf_numeric_literal): Make first arg 'const char **' in order
2922         to match usage.
2923
2924 Mon Dec 14 09:55:50 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2925
2926         * choose-temp.c: Don't check IN_GCC anymore.
2927
2928         * floatformat.c (floatformat_from_double): Use `const', not `CONST'.
2929         * memchr.c (memchr): Likewise.
2930         * memcpy.c (memcpy): Likewise.
2931         * memmove.c (memmove): Likewise.
2932
2933         * mkstemp.c: Don't check IN_GCC anymore.
2934         * pexecute.c: Likewise.
2935         * splay-tree.c: Likewise.
2936
2937         * strchr.c (strchr): Use `const', not `CONST'.
2938         * strrchr.c (strrchr): Likewise.
2939         * strtol.c (strtol): Likewise.
2940         * strtoul.c (strtoul): Likewise.
2941
2942 Fri Dec  4 13:51:04 1998  David Taylor   <taylor@texas.cygnus.com>
2943                           Elena Zannoni  <ezannoni@cygnus.com>
2944                           Stan Shebs     <shebs@cygnus.com>
2945                           Edith Epstein  <eepstein@cygnus.com>
2946                           Andres MacLeod <amacleod@cygnus.com>
2947                           Satish Pai     <pai@apollo.hp.com>
2948
2949         * HP aCC demangling support.
2950         * cplus-dem.c
2951         (main): Remove default to HP style demangling, set to EDG
2952         demangling correctly when -edg specified; set the demangling style
2953         when user specifies 'edg'. Set strip_underscore to
2954         prepends_underscore, if not HPUXHPPA.  Set
2955         current_demangling_style to hp_demangling if HPUXHPPA.  Set
2956         current demangling style correctly if the switch is hp.  Read
2957         label correctly also in the HP style case.
2958         (work_stuff): add temp_start field; add field for volatile member
2959         function.
2960         (arm_pt): handle ARM_DEMANGLING and EDG_DEMANGLING styles; HP
2961         style for this case is the same as ARM.
2962         (demangle_args): handle EDG_DEMANGLING style; support HP style.
2963         (demangle_arm_hp_template): new function. (It was
2964         demangle_arm_pt.); check and set value of temp_start field in
2965         multiple places. Also, when ceching for end of template args,
2966         check to see if at end of static member of template class.
2967         (demangle_class): new local variable : save_class_name_end Don't
2968         include template args in string defining class.
2969         (demangle_class_name): use demangel_arm_hp_template.
2970         (demangle_function_name): handle case where demangling style is
2971         HP_DEMANGLING and currently point at an 'X' in the mangled name.
2972         Handle EDG_DEMANGLING style.  Handle constructor and destructor
2973         ops for HP style.
2974         (demangle_prefix): handle EDG_DEMANGLING and ARM_DEMANGLING
2975         styles.  global destructor and constructor for HP style are same
2976         as for ARM style. Same for local variables.
2977         (demangle_qualified): handle EDG_DEMANGLING style.
2978         (demangle_signature): add case for volatile member function.  For
2979         cases '1' - '9' : initialize the temp_start field to -1 and handle
2980         the EDG_DEMANGLING style.  for case 'F' : handle EDG_DEMANGLING
2981         and AUTO_DEMANGLING styles.  If expecting a function and managed
2982         to demangle the funct args, then handle the LUCID_DEMANGLING,
2983         ARM_DEMANGLING, and EDG_DEMANGLING styles.  Add case for local
2984         class name after "Lnnn_ in HP style case. HP style too needs to
2985         forget types.  _nnn is OK for HP style, so don't report failure.
2986         (do_hpacc_template_const_value): new function. Handle template's
2987         value param for HP/aCC.
2988         (do_hpacc_template_literal): new function.  Handle a template's
2989         literal parameter for HP aCC.
2990         (recursively_demangle): new function
2991         (snarf_numeric_literal): new function.
2992         (usage): add 'edg' to the list of demangling styles; add hp switch
2993         to message.
2994
2995 Sat Nov 28 17:25:22 1998  Christopher Faylor <cgf@cygnus.com>
2996
2997         * pexecute.c: Remove obsolete ifdefed cygwin code.
2998
2999 Fri Nov 27 13:26:06 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3000
3001         * choose-temp.c: Always include libiberty.h.  Avoid redundancies.
3002         * cplus-dem.c: Likewise.  Conform to libiberty.h.
3003         * pexecute.c: Likewise.
3004         * splay-tree.c: Likewise.
3005
3006 1998-11-25  Mike Stump  <mrs@wrs.com>
3007
3008         * Makefile.in (splay-tree.o): Add config.h dependency.
3009
3010 Mon Nov 23 16:59:49 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3011
3012         *  configure.in: Use AC_PREREQ(2.12.1).
3013
3014 1998-11-16  Benjamin Kosnik  <bkoz@haight.constant.com>
3015
3016         * cplus-dem.c (demangle_fund_type): Add demangling for C9x types.
3017
3018 Thu Nov 19 22:15:50 1998  Jeffrey A Law  (law@cygnus.com)
3019
3020         * mpw.c (mpw_access): Add missing parens.
3021
3022 Thu Nov 19 12:59:21 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3023
3024         * configure.in: Call AC_HEADER_SYS_WAIT.
3025
3026         * pexecute.c: Include sys/wait.h when !IN_GCC.
3027
3028 Thu Nov 19 14:38:20 1998  Geoffrey Noer  <noer@cygnus.com>
3029
3030         * pexecute.c: revert back to checking old Cygwin
3031         preprocessor symbol until some time has passed.
3032
3033 Wed Nov 18 08:52:26 1998  Christopher Faylor <cgf@cygnus.com>
3034
3035         * pexecute.c: Reorganize WIN32 case to accomodate Cygwin
3036         since it will now support similar constructs.
3037
3038 Fri Nov 13 19:18:05 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3039
3040         * configure.in: Check for calloc.
3041
3042         * calloc.c: New file.
3043
3044         * xmalloc.c (xcalloc): New function.
3045
3046 Fri Nov 13 08:51:46 EST 1998  Andrew MacLeod  <amacleod@cygnus.com>
3047
3048         *cplus-dem.c (demangle_prefix): Use the last "__"
3049         in the mangled name when looking for the signature. This allows
3050         template names to begin with "__".
3051
3052 1998-11-08  Mark Mitchell  <mark@markmitchell.com>
3053
3054         * cplus-dem.c (type_kind_t): Add tk_reference.
3055         (demangle_template_value_parm): Handle it.
3056         (do_type): Use it for references, instead of tk_pointer.
3057
3058         * cplus-dem.c (demangle_template_value_parm): Use cplus_demangle,
3059         not internal_cplus_demangle.
3060
3061 Sat Nov  7 16:02:10 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3062
3063         * choose-temp.c: Don't include gansidecl.h.
3064         * mkstemp.c: Likewise.
3065         * pexecute.c: Likewise.
3066
3067 Mon Nov  2 15:05:33 1998  Geoffrey Noer  <noer@cygnus.com>
3068
3069         * configure.in: detect cygwin* instead of cygwin32*
3070         * configure: regenerate
3071
3072 Mon Nov  2 10:22:01 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3073
3074         * pexecute.c: Check HAVE_CONFIG_H, not IN_GCC, when determining
3075         whether to include config.h.  Possibly include unistd.h in the
3076         !IN_GCC case.  Define VFORK_STRING as a printable function call
3077         for error messages (either "vfork" or "fork".)  If HAVE_VFORK_H is
3078         defined, include vfork.h.  If VMS is defined, define vfork()
3079         appropriately.  Remove vfork check on USG, we're using autoconf.
3080         (pexecute): Set `errmsg_fmt' to VFORK_STRING instead of checking
3081         locally what string to use.
3082
3083 1998-10-26  Mark Mitchell  <mark@markmitchell.com>
3084
3085         * splay-tree.c: Tweak include directives to make sure declarations of
3086         xmalloc and free are available.
3087
3088 1998-10-25  Mark Mitchell  <mark@markmitchell.com>
3089
3090         * cplus-dem.c (gnu_special): Fix handling of virtual tables in
3091         anonymous namespaces.
3092
3093 1998-10-23  Mark Mitchell  <mark@markmitchell.com>
3094
3095         * cplus-dem.c (work_stuff): Replace const_type and volatile_type
3096         with type_quals.
3097         (TYPE_UNQUALIFIED): New macro.
3098         (TYPE_QUAL_CONST): Likewise.
3099         (TYPE_QUAL_VOLATILE): Likewise.
3100         (TYPE_QUAL_RESTRICT): Likewise.
3101         (code_for_qualifier): New function.
3102         (qualifier_string): Likewise.
3103         (demangle_qualifier): Likewise.
3104         (internal_cplus_demangle): Use them.
3105         (demangle_signature): Likewise.
3106         (demangle_template_value_parm): Likewise.
3107         (do_type): Likewise.
3108         (demangle_fund_type)): Likewise.
3109
3110 Thu Oct 22 19:58:43 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3111
3112         * splay-tree.c (splay_tree_foreach_helper): Make definition static
3113         to match prototype.
3114
3115 1998-10-21  Mark Mitchell  <mark@markmitchell.com>
3116
3117         * splay-tree.c: New file.
3118         * Makefile.in (CFILES): Add it.
3119         (REQUIRED_OFILES): Likewise.
3120         (splay-tree.o): Add dependencies.
3121
3122 Tue Oct 20 12:29:02 1998  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
3123
3124         * cplus-dem.c (demangle_qualified): Fix off-by-one when checking
3125         range of 'K' index.
3126
3127 Thu Oct 15 18:51:12 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3128
3129         * choose-temp.c: Prototype mkstemps() when IN_GCC.
3130
3131         * cplus-dem.c (consume_count): Cast argument of ctype macro to
3132         `unsigned char'.
3133         (cplus_demangle_opname): Cast the result of `strlen' to (int) when
3134         comparing against one.
3135         (cplus_mangle_opname): Likewise.
3136         (demangle_integral_value): Cast argument of ctype macro to
3137         `unsigned char'.
3138         (demangle_template_value_parm): Likewise.
3139         (demangle_template): Initialize variable `bindex'.  Cast the
3140         result of `strlen' to (int) when comparing against one.  Remove
3141         unused variable `start_of_value_parm'.
3142         (demangle_class_name): Cast the result of `strlen' to (int) when
3143         comparing against one.
3144         (demangle_prefix): Cast argument of ctype macro to `unsigned char'.
3145         (gnu_special): Likewise.  Cast the result of `strlen' to (int)
3146         when comparing against one.
3147         (demangle_qualified): Cast argument of ctype macro to `unsigned char'.
3148         (get_count): Likewise.
3149         (do_type): Likewise.  Cast the result of `strlen' to (int) when
3150         comparing against one.
3151         (demangle_fund_type): Cast argument of ctype macro to `unsigned char'.
3152         (demangle_function_name): Cast the result of `strlen' to (int)
3153         when comparing against one.
3154
3155         * mkstemp.c (mkstemps): Cast variable `len' to (int) when
3156         comparing against one.
3157
3158 Tue Oct 13 23:51:51 1998  Jeffrey A Law  (law@cygnus.com)
3159
3160         * mkstemp.c: Check HAVE_SYS_TIME_H before including sys/time.h
3161         * configure.in (AC_CHECK_HEADERS): Check for sys/time.h too.
3162         * config.in, configure: Rebuilt.
3163
3164         * getopt.c: Check HAVE_STRINGS_H before including strings.h.
3165         * configure.in (AC_CHECK_HEADERS): Check for strings.h too.
3166         * config.in, configure: Rebuilt.
3167
3168 Mon Oct 12 19:15:59 1998  Geoffrey Noer  <noer@cygnus.com>
3169
3170         * configure.in: in comment, call AC_EXEEXT instead of AM_EXEEXT
3171
3172 Sun Oct 11 17:36:06 1998  Michael Tiemann  <tiemann@holodeck.cygnus.com>
3173
3174         * Makefile.in (cplus-dem.o, obstack.o): Depend upon config.h.
3175
3176 Thu Oct  8 23:42:08 1998  Jeffrey A Law  (law@cygnus.com)
3177
3178         * Merge egcs & devo libiberty.
3179
3180 1998-09-08  Martin von Löwis  <loewis@informatik.hu-berlin.de>
3181
3182         * cplus-dem.c (demangle_arm_pt): Demangle anonymous namespaces.
3183
3184 Mon Sep  7 23:29:01 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3185
3186         * mkstemp.c: Include config.h even when not IN_GCC.  Wrap header
3187         inclusions inside HAVE_*_H macros.  Include ansidecl.h when not
3188         IN_GCC.
3189
3190         * vasprintf.c: Include stdarg.h/varargs.h first.
3191
3192         * vprintf.c: Likewise.
3193
3194 Sat Sep  5 03:24:49 1998  Jeffrey A Law  (law@cygnus.com)
3195
3196         * pexecute.c: Updates from gcc.  Copy in gcc has been removed.  This
3197         is the canonical copy.  Define ISSPACE if !IN_GCC.
3198         * alloca.c, vfprintf.c, choose-temp.c, mkstemp.c, getopt.c: Similarly.
3199         * getopt1.c, obstack.c: Similarly.
3200         * Makefile.in: Build mkstemp.o
3201
3202 Tue Sep  1 23:12:47 1998  Christopher Faylor <cgf@cygnus.com>
3203
3204         * configure.in: Include asprintf in list of functions known not
3205         to be in newlib.
3206         * configure: Rebuild.
3207
3208 Wed Aug 19 14:05:01 1998  Mumit Khan  <khan@xraylith.wisc.edu>
3209
3210         * cplus-dem.c (work_stuff): Add dllimported.
3211         (demangled_prefix): Mark symbols imported from PE DLL.
3212         (internal_cplus_demangled): Handle.
3213
3214 1998-08-17  Jason Merrill  <jason@yorick.cygnus.com>
3215
3216         * cplus-dem.c (do_type): Fix simple array handling.  If we fail,
3217         stay failed.
3218
3219 Mon Aug 17 10:40:34 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3220
3221         * cplus-dem.c: Include config.h if it exists.  Also, only
3222         prototype malloc/realloc if we can't get stdlib.h.
3223
3224 Sat Aug 15 16:15:01 1998  Ian Lance Taylor  <ian@cygnus.com>
3225
3226         * configure.in: Switch back to checking --with-target-subdir when
3227         deciding whether to check for newlib, undoing part of July 15
3228         change.
3229         * configure: Rebuild.
3230
3231 Thu Aug 13 16:47:38 1998  Mark Mitchell  <mark@markmitchell.com>
3232
3233         * cplus-dem.c (type_kind_t): New type.
3234         (demangle_template_value_parm): Add type_kind_t parameter.  Rely
3235         on this paramter, rather than demangling the type again.
3236         (demangle_integral_value): Pass tk_integral.
3237         (demangle_template_: Pass the value returned from do_type.
3238         (do_type): Return a type_kind_t.  Pass tk_integral to
3239         demangle_template_value_parm for array bounds.
3240         (demangle_fund_type): Likewise.
3241
3242         Also incorporate from GCC version:
3243
3244         Tue Jul 21 13:28:19 1998  Jason Merrill  <jason@yorick.cygnus.com>
3245
3246         * cplus-dem.c (do_type): Use demangle_template_value_parm for arrays.
3247
3248 Thu Aug 13 16:47:38 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3249
3250         * cplus-dem.c (demangle_nested_args): Make function definition
3251         static to match the prototype.
3252
3253 Tue Jul 28 11:33:09 1998  Mark Mitchell  <mark@markmitchell.com>
3254
3255         * cplus-dem.c (type_kind_t): New type.
3256         (demangle_template_value_parm): Add type_kind_t parameter.  Rely
3257         on this paramter, rather than demangling the type again.
3258         (demangle_integral_value): Pass tk_integral.
3259         (demangle_template_: Pass the value returned from do_type.
3260         (do_type): Return a type_kind_t.  Pass tk_integral to
3261         demangle_template_value_parm for array bounds.
3262         (demangle_fund_type): Likewise.
3263
3264         Also incorporate from GCC version:
3265
3266         Tue Jul 21 13:28:19 1998  Jason Merrill  <jason@yorick.cygnus.com>
3267
3268         * cplus-dem.c (do_type): Use demangle_template_value_parm for arrays.
3269
3270 Mon Jul 27 12:16:08 1998  Ian Lance Taylor  <ian@cygnus.com>
3271
3272         * Makefile.in (ALLOCA): New variable.
3273         ($(TARGETLIB)): Add $(ALLOCA) to library.
3274         (needed-list): Add $(ALLOCA).
3275         ($(ALLOCA)): Depend upon stamp-picdir.
3276
3277 Sun Jul 19 08:23:17 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3278
3279         * cplus-dem.c (demangle_nested_args): Make function definition
3280         static to match the prototype.
3281
3282 Wed Jul 15 00:12:58 1998  Ian Lance Taylor  <ian@cygnus.com>
3283
3284         * configure.in: Check --with-cross-host rather than
3285         --with-target-subdir when deciding whether build uses a cross
3286         compiler, and when deciding where to install the library.
3287         * configure: Rebuild.
3288
3289 Sun Jul 12 01:27:05 1998  Jason Merrill  <jason@yorick.cygnus.com>
3290
3291         * cplus-dem.c (demangle_nested_args): Return a value.
3292
3293 Sat Jul 11 16:19:48 1998  Mark Mitchell  <mark@markmitchell.com>
3294
3295         * cplus-dem.c (string): Move definition before work_stuff.
3296         (work_stuff): Add volatile_type, forgetting_types,
3297         previous_argument, and nrepeats fields.
3298         (SCOPE_STRING): New macro.
3299         (demangle_template): Add `remember' parameter.  Add comment.
3300         Register the `B' code type here, if remembering.  Tidy.  Fix crash
3301         on NULL tmpl_argvec.  Be consistent with use of tname/trawname.
3302         (demangle_nested_args): New function.
3303         (internal_cplus_demangle): Handle volatile-qualified member
3304         functions.
3305         (mop_up): Delete the previous_argument string if present.
3306         (demangle_signature): Tidy.  Handle volatile-qualified member
3307         functions.  Handle back-references using the `B' code.  Use extra
3308         parameter to demangle_template and SCOPE_STRING where appropriate.
3309         (demangle_template_value_parm): Fix thinko; 'B' is not an integral
3310         code.
3311         (demangle_class): Use SCOPE_STRING.
3312         (gnu_special): Pass additional argument to demangle_template.
3313         Use SCOPE_STRING.
3314         (demangle_qualified): Save qualified types for later
3315         back-references.  Handle constructors and destructors for template
3316         types correctly.
3317         (do_type): Tidy.  Use SCOPE_STRING.  Pass extra argument to
3318         demangle_template.  Use demangled_nested_args.  Don't remember
3319         qualified types here; that's now done in demangle_qualified.
3320         Similarly for templates.
3321         (do_arg): Improve commment.  Handle 'n' repeat code.
3322         (remember_type): Check forgetting_types.
3323         (demangle_args): Deal with 'n' repeat codes.  Tidy.
3324
3325 Thu Jul  2 16:26:24 1998  Ian Lance Taylor  <ian@cygnus.com>
3326
3327         * config.table: Only use mh-fbsd21 on *-*-freebsd2.2.[012], not on
3328         *-*-freebsd2.2.*.  From Dmitrij Tejblum <tejblum@arc.hq.cti.ru>.
3329
3330 Mon Jun 15 16:29:01 1998  Ian Lance Taylor  <ian@cygnus.com>
3331
3332         * configure.in (setobjs): Correct quoting error in cygwin32 case.
3333         From Chris Faylor <cgf@cygnus.com>.
3334
3335 Mon Jun  1 13:47:55 1998  Jason Molenda  (crash@bugshack.cygnus.com)
3336
3337         * obstack.c: Update to latest FSF version.
3338
3339 Mon Jun  1 14:17:36 1998  Mike Stump  <mrs@wrs.com>
3340
3341         * Makefile.in: Add a dependency on stamp-picdir for the
3342         objects, so that we can do a parallel build.
3343
3344 Sat May 30 22:17:13 1998  Mumit Khan  <khan@xraylith.wisc.edu>
3345
3346         * configure.in (checkfuncs): Add missing "'".
3347
3348 Fri May 29 12:40:41 1998  Jason Molenda  (crash@bugshack.cygnus.com)
3349
3350         * obstack.c (_obstack_memory_used):  Elide this function if we're
3351         on a system with GNU libc.
3352
3353 Tue May 26 18:28:43 1998  Ian Lance Taylor  <ian@cygnus.com>
3354
3355         * Makefile.in (distclean): Remove config.log.
3356
3357 Tue May 26 15:01:52 1998  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
3358
3359         * Makefile.in (distclean): Don't remove alloca-conf.h.
3360
3361 Fri May 22 01:38:07 1998  Hans-Peter Nilsson  <hp@axis.se>
3362
3363         * cplus-dem.c (MBUF_SIZE): Bumped from 512 to 32767.
3364
3365 1998-05-21  Mark Mitchell  <mmitchell@usa.net>
3366
3367         * cplus-dem.c (do_type): Handle volatile qualification.
3368
3369 1998-05-21  Manfred Hollstein  <manfred@s-direktnet.de>
3370
3371         * configure.in: Check for unistd.h as well.
3372         * configure: Rebuild.
3373         * config.in: Rebuild.
3374         * getpagesize.c (GNU_OUR_PAGESIZE): Use sysconf only if _SC_PAGESIZE
3375         is defined in unistd.h. Reformat conditional block for easier reading.
3376
3377         * config.table (shared): Default to no if ${enable_shared}
3378         is unset or empty; this logic is used by the toplevel
3379         configure scripts, too.
3380
3381 Sat May 16 14:01:26 1998  Jeffrey A Law  (law@cygnus.com)
3382
3383         * config.table: Add line to set enable_shared in the Makefile
3384         as needed.
3385
3386 Wed May 13 14:24:38 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3387
3388         * cplus-dem.c (squangle_mop_up): Change return type to void.
3389         (internal_cplus_demangle): Remove unused parameter `options'.
3390         All callers changed.
3391         (cplus_demangle_opname): Remove function wide variable `int i' and
3392         replace with `size_t i' at each location where it is used.
3393         (cplus_mangle_opname): change type of `i' from int to size_t.
3394
3395 Wed May 13 13:39:38 1998  Ian Lance Taylor  <ian@cygnus.com>
3396
3397         * alloca-conf.h: Include config.h.  Check HAVE_ALLOCA_H rather
3398         than sparc or sun.
3399         * Makefile.in (argv.o): Depend upon config.h and alloca-conf.h.
3400
3401 Fri May  8 00:23:51 1998  Ian Lance Taylor  <ian@cygnus.com>
3402
3403         * configure.in: Set libiberty_topdir correctly when srcdir is
3404         "." and with_target_subdir is not set.
3405         * configure: Rebuild.
3406
3407 Thu May  7 13:01:44 1998  Ian Lance Taylor  <ian@cygnus.com>
3408
3409         * configure.in: Add *-*-mingw32* case.
3410         * configure: Rebuild.
3411
3412 Wed May  6 11:33:51 1998  Ian Lance Taylor  <ian@cygnus.com>
3413
3414         * config.table: Never use a PIC file for *-*-cygwin32*.
3415
3416         * Makefile.in (config.status): Depend upon config.table.
3417
3418         * configure.in: On a cygwin32 host, always compile random, and
3419         don't test for sys_siglist, strsignal, or psignal.
3420         * configure: Rebuild.
3421
3422         * clock.c: Check HAVE_SYS_PARAM_H rather than NO_SYS_PARAM_H.
3423         * getcwd.c: Likewise.
3424         * getpagesize.c: Likewise.
3425         * getruntime.c: Likewise.
3426
3427 Tue May  5 18:08:32 1998  Ian Lance Taylor  <ian@cygnus.com>
3428
3429         Use autoconf tests rather than the old dummy.c test:
3430         * configure.in: Add AC_ARG_WITH calls for --with-target-subdir and
3431         --with-newlib.  Add AC_CONFIG_HEADER.  Use AC_REPLACE_FUNCS for
3432         most functions.  Add special cases to handle newlib and VxWorks.
3433         Remove target_makefile_frag.  Create stamp-h in AC_OUTPUT if
3434         CONFIG_HEADERS is set.  Only call config-ml.in in AC_OUTPUT if
3435         CONFIG_FILES is set; set ac_file before calling it.
3436         * config.table (arm-*-riscix*, *-*-cygwin32): Remove.
3437         (*-*-hpux*, *-*-hiux*, *-*-irix4*, *-*-solaris2*): Remove.
3438         (*-*-sysv4*, *-*-go32, *-*-vxworks5*, *-*-vxworks): Remove
3439         (i[3456]-*-mingw32*): Remove.
3440         * Makefile.in (ERRORS_CC, CONFIG_H, NEEDED_LIST): Remove.
3441         (LIBOBJS): New variable.
3442         (HOST_OFILES, DO_ALSO, STAGESTUFF): Remove.
3443         (all): Depend upon needed-list.  Don't check RULE1.
3444         (@target_makefile_frag@): Remove.
3445         (COMPILE.c): Include @DEFS@.
3446         (HFILES): Add alloca-conf.h.
3447         (REQUIRED_OFILES): Remove basename.o.
3448         ($(TARGETLIB)): New target.
3449         (stamp-needed, lneeded-list, needed.awk, stamp-config): Remove.
3450         (lconfig.h, needed2.awk, dummy.o, errors): Remove.
3451         (needed-list, config.h): Rewrite.
3452         (RULE1, $(RULE1), RULE2, $(RULE2)): Remove.
3453         (.always.): Remove.
3454         (Makefile): Set CONFIG_FILES and CONFIG_HEADERS.
3455         (stamp-h): New target.
3456         (atexit.o, clock.o, getcwd.o, getpagesize.o): New targets.
3457         (basename.o): Don't depend upon config.h.
3458         (getruntime.o): Depend upon config.h.
3459         * atexit.c: Include config.h.  Check HAVE_ON_EXIT rather than
3460         NEED_on_exit.
3461         * basename.c: Don't include config.h.  Don't check NEED_basename.
3462         * clock.c: Include config.h.
3463         * getcwd.c: Likewise.
3464         * getpagesize.c: Likewise.
3465         * getruntime.c: Likewise.  Fix checks which set HAVE_GETRUSAGE and
3466         HAVE_TIMES.
3467         * strerror.c: Change uses of NEED_sys_errlist to
3468         HAVE_SYS_ERRLIST.  Likewise for NEED_strerror and HAVE_STRERROR.
3469         * strsignal.c: Likewise for NEED_sys_siglist and HAVE_SYS_SIGLIST,
3470         and for NEED_strsignal and HAVE_STRSIGNAL and for NEED_psignal and
3471         HAVE_PSIGNAL.
3472         * acconfig.h: New file.
3473         * dummy.c: Remove.
3474         * functions.def: Remove.
3475         * config/mh-cxux7 (HDEFINES): Remove -DHAVE_SYSCONF.
3476         * config/mh-windows (HDEFINES): Remove.
3477         * config/mh-cygwin32: Remove.
3478         * config/mh-go32: Remove.
3479         * config/mh-irix4: Remove.
3480         * config/mh-riscix: Remove.
3481         * config/mh-sysv4: Remove.
3482         * config/mt-mingw32: Remove.
3483         * config/mt-vxworks5: Remove.
3484         * config.in: New file, generated using autoheader.
3485         * configure: Rebuild.
3486
3487 Mon May  4 13:00:28 1998  Ian Lance Taylor  <ian@cygnus.com>
3488
3489         * configure.in: Rewrite to use autoconf.
3490         * configure: Generate using autoconf.
3491         * config/mh-a68bsd: Remove.
3492         * config/mh-apollo68: Remove.
3493         * config/mh-hpbsd: Remove.
3494         * config/mh-ncr3000: Remove.
3495         * config/mh-sysv: Remove.
3496         * config/mh-aix (RANLIB, INSTALL): Don't define.
3497         * config/mh-cxux7 (RANLIB, INSTALL): Don't define.
3498         * config/mh-irix4 (CC, RANLIB, INSTALL): Don't define.
3499         * config/mh-sysv4 (RANLIB, INSTALL): Don't define.
3500         * config.table: Change config_shell to CONFIG_SHELL, and use
3501         libiberty_topdir to find move-if-change.
3502         (m68k-apollo-bsd*, m68k-apollo-sysv*): Remove.
3503         (i[3456]86-ncr-sysv4*, *-*-dgux*, hppa*-hp-bsd*): Remove.
3504         (*-*-irix*, *-*-m88kbcs*, *-*-sysv*): Remove.
3505         * Makefile.in (srcdir): Set to @srcdir@.
3506         (VPATH): Likewise.
3507         (prefix, exec_prefix, bindir, libdir): Set to autoconf variables.
3508         (SHELL, INSTALL, INSTALL_PROGRAM, INSTALL_DATA): Likewise.
3509         (CC, CFLAGS, RANLIB)): Likewise.
3510         (datadir, man*dir, infodir, includedir, MAKEINFO): Remove.
3511         (target_makefile_frag, host_makefile_frag): Add substitutions.
3512         (INSTALL_DEST): Set to @INSTALL_DEST@.
3513         (Makefile): Depend upon config.status.  Don't depend upon
3514         $(host_makefile_frag) or $(target_makefile_frag).
3515         (config.status): New target.
3516
3517 Sun May  3 17:58:49 1998  Ian Lance Taylor  <ian@cygnus.com>
3518
3519         * config/mt-sunos4: Remove.  Should be handled by --with-headers
3520         and --with-libraries options at top level.
3521         * config.table: Never use mt-sunos4.
3522
3523         * alloca-conf.h: New file, combining alloca-norm.h and
3524         alloca-botch.h.
3525         * alloca-norm.h: Remove.
3526         * alloca-botch.h: Remove.
3527         * configure.in: Set shell variables files and links to empty.
3528         * config.table: Don't set shell variable files.
3529         * configure.bat: Don't create alloca-conf.h.
3530         * makefile.vms: Likewise.
3531         * mpw-config.in: Likewise.
3532         * vmsbuild.com: Likewise.
3533
3534 Fri May  1 11:41:42 1998  Ian Lance Taylor  <ian@cygnus.com>
3535
3536         * Makefile.in ($(HOST_OFILES) $(REQUIRED_OFILES)): Remove old
3537         target depending upon config.h.
3538         (alloca.o): Add target depending upon config.h
3539         (basename.o, choose-temp.o, fnmatch.o): Likewise.
3540         (getopt.o, getopt1.o, pexecute.o, strerror.o): Likewise.
3541         (strsignal.o, xstrerror.o): Likewise.
3542
3543 Fri May  1 04:26:25 1998  Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
3544
3545         * cplus-dem.c (cplus_demangle_opname):  Initialize work.
3546
3547 Mon Apr 27 15:53:30 EDT 1998 Andrew MacLeod <amacleod@cygnus.com>
3548
3549         * cplus-dem.c (demangle_qualified): Replace missing else.
3550
3551 Sun Apr 26 15:38:50 1998  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
3552
3553         * cplus-dem.c (gnu_special): Fix off-by-one bug when checking the
3554         length in the name of a virtual table.
3555
3556 Wed Apr 22 10:53:49 EDT 1998 Andrew MacLeod  <amacleod@cygnus.com>
3557
3558         * cplus-dem.c (struct work stuff): Add field for B and K mangle codes.
3559         (cplus_demangle_opname): Call mop_up_squangle.
3560         (cplus_demangle): Initialize squangle info, then call
3561         internal_cplus_demangle. (Most code moved there as well)
3562         (internal_cplus_demangle): New function, performs most of what use
3563         to be done in cplus_demangle, but is only called with this file.
3564         (squangle_mop_up): New function to clean up B and K code data.
3565         (mop_up): set pointers to NULL after freeing.
3566         (demangle_signature, demangle_template, demangle_class): Add
3567         switch elements to handle K and B codes.
3568         (demangle_prefix, gnu_special, demangle_qualified): Add
3569         code to handle K and B codes.
3570         (do_type, demangle_fund_type): Handle B and K codes.
3571         (remember_Ktype): New function to store K info.
3572         (register_Btype, remember_Btype): New functions for B codes.
3573         (forget_B_and_K_types): New function to destroy B and K info.
3574
3575 Fri Apr 10 01:49:10 1998  Jeffrey A Law  (law@cygnus.com)
3576
3577         * COPYING.LIB, choose-temp.c, cplus-dem.c: Sync with egcs & gcc.
3578
3579 Thu Mar  5 09:23:28 1998  Manfred Hollstein  <manfred@s-direktnet.de>
3580
3581         * config.table: Make locating frag files failsafe even for the
3582         special case if configuring and building in srcdir.
3583
3584 Mon Feb 23 14:33:15 1998  Ian Lance Taylor  <ian@cygnus.com>
3585
3586         * choose-temp.c: Fix handling of sys/file.h to work in libiberty.
3587
3588 Sun Feb 22 18:03:23 1998  Jeffrey A Law  (law@cygnus.com)
3589
3590         * choose-temp.c: Sync with copy in gcc.
3591
3592 Thu Feb 12 16:29:49 1998  Ian Lance Taylor  <ian@cygnus.com>
3593
3594         * getopt.c: Update to latest FSF version.
3595         * getopt1.c: Likewise.
3596
3597 Tue Feb 10 16:58:33 1998  Stan Shebs  <shebs@andros.cygnus.com>
3598
3599         * cplus-dem.c (gnu_special): Don't get confused by .<digits>
3600         strings that are not actually lengths.
3601
3602 Fri Feb  6 01:35:17 1998  Manfred Hollstein  <manfred@s-direktnet.de>
3603
3604         * Makefile.in (FLAGS_TO_PASS): Don't pass PICFLAG.
3605         (.c.o): Check value of enable_shared, not PICFLAG.
3606         (stamp-picdir): Dito.
3607
3608 Thu Feb  5 18:48:56 1998  Geoffrey Noer  <noer@cygnus.com>
3609
3610         * config/mh-cygwin32: remove vasprintf.o from EXTRA_OFILES
3611         since it gets built automatically
3612
3613 Sun Feb  1 02:52:32 1998  Mike Stump  <mrs@wrs.com>
3614
3615         * config.table (vxworks configs): Default to VxWorks 5.x, as that is
3616         the currently shipping OS.
3617
3618 Tue Jan 27 16:08:20 1998  Pat Rankin  <rankin@eql.caltech.edu>
3619
3620         * vmsbuild.com [REQUIRE_OFILES]: Synchronized with Makefile.in:
3621         Add fnmatch.o and objalloc.o; remove vasprintf.o.
3622         [config.h]: Define NEED_strsignal.
3623
3624 Mon Jan 19 12:20:01 1998  Ian Lance Taylor  <ian@cygnus.com>
3625
3626         * functions.def: Correct argument types for strerror and
3627         strsignal.  Reported by Alex Gutman <agutman@emc.com>.
3628
3629 Sun Jan 18 15:57:28 1998  Michael Snyder  <msnyder@cleaver.cygnus.com>
3630
3631         * vasprintf.c (int_vasprintf): Increase buffer size for float/double
3632         values.
3633
3634 Sat Jan 17 22:28:38 1998  Mumit Khan  <khan@xraylith.wisc.edu>
3635                           J.J. VanderHeijden <J.J.vanderHeijden@student.utwente.nl>
3636
3637         Add mingw32 support.
3638         * pexecute.c (pexecute): New function for mingw32. Supports pipes.
3639         (pwait): New function for mingw32.
3640
3641         * config.table (i[3456]86-*-mingw32*): Support for i386-mingw32.
3642         * config/mt-mingw32: New file.
3643         * xmalloc.c (first_break): Not used for mingw32.
3644         (xmalloc_set_program_name): Don't use sbrk on mingw32.
3645         (xmalloc): Likewise.
3646         (xrealloc): Likewise.
3647
3648 Sat Jan 17 22:28:05 1998  Jeffrey A Law  (law@cygnus.com)
3649
3650         * choose-temp.c: Sync with gcc version.
3651
3652 Tue Jan 13 18:34:39 1998  Jim Wilson  <wilson@cygnus.com>
3653
3654         * Makefile.in (install_to_libdir, install_to_tooldir): Add MULTISUBDIR
3655         to all filenames in libdir and tooldir.
3656         (distclean): Do MULTICLEAN before deleting Makefile.
3657         (stamp-needed, stamp-config): Add MULTISRCTOP to
3658         pathname for move-if-change.
3659
3660 Thu Dec  4 17:25:19 1997  Jeffrey A Law  (law@cygnus.com)
3661
3662         * strsignal.c (sys_nsig): Try NSIG and _NSIG.
3663
3664 Wed Nov 19 13:37:06 1997  Michael Meissner  <meissner@cygnus.com>
3665
3666         * alloca-norm.h (alloca, GCC case): Don't redefine alloca if it
3667         was already defined previously.
3668
3669 Mon Nov 10 12:48:03 1997  Philippe De Muyter  <phdm@macqel.be>
3670
3671         * Makefile.in (INSTALL): Use ../install-sh, not install.
3672
3673 Tue Oct 28 23:41:15 1997  Judy Goldberg  <jodyg@idt.net>
3674
3675         * Makefile.in (CFILES): Add pexecute.c.
3676
3677 Wed Oct 15 19:13:48 1997  Ian Lance Taylor  <ian@cygnus.com>
3678
3679         * asprintf.c: Consistently use either stdarg or varargs.
3680
3681 Tue Oct 14 12:01:00 1997  Mark Mitchell  <mmitchell@usa.net>
3682
3683         * cplus-dem.c (demangle_signature): Don't look for return types on
3684         constructors.  Handle member template constructors.
3685
3686 Fri Oct  3 17:53:30 1997  Ian Lance Taylor  <ian@cygnus.com>
3687
3688         * README: Fix configuration instructions.
3689
3690 Mon Sep 29 12:28:41 1997  Ian Lance Taylor  <ian@cygnus.com>
3691
3692         * pexecute.c: Update to current version from /gd/gnu/lib:
3693
3694         Mon Sep 29 12:27:59 1997  Ian Lance Taylor  <ian@cygnus.com>
3695
3696         * pexecute.c: Use spawn if __CYGWIN32__.
3697
3698         1997-08-08  Paul Eggert  <eggert@twinsun.com>
3699
3700         * pexecute.c: Include "config.h" first, as per autoconf manual.
3701
3702         Fri Jun 27 15:20:29 1997  Scott Christley <scottc@net-community.com>
3703
3704         * pexecute.c (fix_argv): New function.
3705         (pexecute): Win32 but not Cygwin32 needs its arguments fixed.
3706         Add underscore to cwait function call.
3707
3708 Sun Sep 28 12:00:52 1997  Mark Mitchell  <mmitchell@usa.net>
3709
3710         * cplus-dem.c (demangle_template): Add new parameter.  Handle new
3711         template-function mangling.
3712         (consume_count_with_underscores): New function.
3713         (demangle_signature): Handle new name-mangling scheme.
3714
3715 Wed Sep 24 00:31:59 1997  Felix Lee  <flee@yin.cygnus.com>
3716
3717         * asprintf.c: stdarg.h when ALMOST_STDC
3718         * config/mh-windows (EXTRA_OFILES): add asprintf.o and
3719         strncasecmp.o.
3720
3721 Thu Aug 28 14:27:15 1997  Andrew Cagney  <cagney@b1.cygnus.com>
3722
3723         * vasprintf.c (vasprintf): Allow for _BSD_VA_LIST_.
3724
3725         * config.table: Add case for FreeBSD 2.1 and 2.2, needs mh-fbsd21.
3726
3727         * config/mh-fbsd21 (EXTRA_OFILES): Force vasprintf.o
3728
3729 Wed Sep 10 12:43:10 1997  Jason Merrill  <jason@yorick.cygnus.com>
3730
3731         * cplus-dem.c (demangle_fund_type): Change "complex" to "__complex".
3732
3733 Fri Sep  5 16:34:42 1997  Andrew Cagney  <cagney@b1.cygnus.com>
3734
3735         * asprintf.c (asprintf): New file.
3736         * Makefile.in (CFILES): Add asprintf.c
3737         * functions.def: Ditto.
3738
3739 Thu Aug 28 18:53:34 1997  Andrew Cagney  <cagney@b1.cygnus.com>
3740
3741         * argv.c (dupargv): New function, duplicate an argument vector.
3742
3743 Tue Aug 19 20:28:45 1997  Geoffrey Noer  <noer@cygnus.com>
3744
3745         * config/mh-cygwin32: also build random.o
3746
3747 Tue Aug 19 17:10:56 1997  Jason Merrill  <jason@yorick.cygnus.com>
3748
3749         * cplus-dem.c: Add 'extern' to prepends_underscore.
3750
3751 Wed Jul 30 11:42:19 1997  Per Bothner  <bothner@cygnus.com>
3752
3753         * cplus-dem.c: Various changes to produce Java output when passed
3754         DMGL_JAVA.  Thus "::" becomes "." and "JArray<Foo>" becomes "Foo[]".
3755         (main): Support --java and -j flags to set DMGL_JAVA.
3756
3757 Tue Jul 22 19:05:23 1997  Robert Hoehne <robert.hoehne@Mathematik.TU-Chemnitz.DE>
3758
3759         * config/mh-go32 (CC, AR, RANLIB): Don't define.
3760
3761 Tue Jul 22 17:49:54 1997  Ian Lance Taylor  <ian@cygnus.com>
3762
3763         * Makefile.in (REQUIRED_OFILES): Add pexecute.o.
3764         (pexecute.o): New target.
3765
3766         * Makefile.in (stamp-needed): New target, replacing needed-list.
3767         (needed-list): Just depend upon stamp-needed.
3768         (stamp-config): New target, replacing config.h.
3769         (config.h): Just depend upon stamp-config.
3770         (mostlyclean): Remove stamp-*.
3771
3772 Thu Jun 12 11:00:18 1997  Angela Marie Thomas (angela@cygnus.com)
3773
3774         * Makefile.in (FLAGS_TO_PASS): pass INSTALL, INSTALL_PROGRAM and
3775         INSTALL_DATA for multilibbed installs
3776
3777 Tue Jun  3 13:21:05 1997  Doug Evans  <dje@canuck.cygnus.com>
3778
3779         Tue Dec 10 09:44:57 1996  Paul Eggert  <eggert@twinsun.com>
3780
3781         * choose-temp.c (choose_temp_base): Don't dump core if TMPDIR is empty.
3782
3783         * choose-temp.c (try): Insist that temp dir be searchable.
3784
3785         Wed Oct 23 17:36:39 1996  Doug Rupp  (rupp@gnat.com)
3786
3787         * choose-temp.c (choose_temp_base): On VMS, use proper syntax
3788         for current directory.
3789
3790         Sat Feb 15 19:03:48 1997  Geoffrey Noer  (noer@cygnus.com)
3791
3792         * pexecute.c: Remove special cases for cygwin32.
3793         (pwait): Remove local definition of `pid'.
3794
3795         Tue Nov 12 18:26:15 1996  Doug Rupp  (rupp@gnat.com)
3796
3797         * pexecute.c (vfork): Supply new definition for VMS.
3798         (pwait): Use waitpid instead of wait for VMS.
3799
3800 Tue May 20 14:02:20 1997  Brendan Kehoe  <brendan@lisa.cygnus.com>
3801
3802         * cplus-dem.c (do_type): Handle `J'.
3803         (demangle_fund_type): Print "complex" for it.
3804
3805 Wed Apr 30 12:15:45 1997  Jason Merrill  <jason@yorick.cygnus.com>
3806
3807         * configure.in: Don't turn on multilib here.
3808
3809 Mon Apr 28 19:04:31 1997  Michael Snyder  <msnyder@cleaver.cygnus.com>
3810
3811         * obstack.c: move _obstack_memory_used outside of ifdef.  Cannot be
3812         elided; needed by gdb and not present in libc.
3813
3814 Thu Apr 24 19:33:47 1997  Ian Lance Taylor  <ian@cygnus.com>
3815
3816         * Makefile.in (clean): Remove tmpmulti.out.
3817
3818 Tue Apr 22 10:25:15 1997  Fred Fish  <fnf@cygnus.com>
3819
3820         * floatformat.c (floatformat_ieee_double_littlebyte_bigword):
3821         Add new floatformat, mainly for ARM doubles.
3822
3823 Mon Apr 14 12:11:16 1997  Ian Lance Taylor  <ian@cygnus.com>
3824
3825         * config.table: Use ${config_shell} with ${moveifchange}.  From
3826         Thomas Graichen <graichen@rzpd.de>.
3827
3828 Fri Apr  4 03:09:24 1997  Ulrich Drepper  <drepper@cygnus.com>
3829
3830         * configure.in: Enable multilibing by default.
3831         Update multilib template to read config-ml.in.
3832
3833 Tue Apr  1 16:26:39 1997  Klaus Kaempf  <kkaempf@progis.de>
3834
3835         * makefile.vms: Add objalloc.
3836
3837 Mon Mar 31 23:57:51 1997  H.J. Lu  <hjl@gnu.ai.mit.edu>
3838
3839         * cplus-dem.c (demangle_it): Add prototype declaration.
3840         (usage, fatal): Likewise.
3841
3842         * xexit.c (_xexit_cleanup): Add prototype.
3843
3844         * strerror.c (init_error_tables): Declare.
3845
3846 Fri Mar 28 11:43:20 1997  H.J. Lu  <hjl@lucon.org>
3847
3848         * functions.def: Add DEF of vasprintf, and DEFFUNC of strsignal.
3849         * strsignal.c: Only define strsignal if NEED_strsignal.
3850         * Makefile.in (REQUIRED_OFILES): Remove vasprintf.o.
3851         * configure.in: Add NEED_strsignal to xconfig.h.  Add vasprintf.o
3852         to xneeded-list.
3853         * config/mh-cygwin32 (HDEFINES): Add -DNEED_strsignal.
3854         (EXTRA_OFILES): Define to vasprintf.o.
3855         * config/mh-windows (HDEFINES): Add -DNEED_strsignal.
3856         (EXTRA_OFILES): Add vasprintf.o.
3857         * config/mt-vxworks5 (vxconfig.h): Define NEED_strsignal.
3858         (vxneeded-list): Add vasprintf.o.
3859
3860 Thu Mar 20 17:02:09 1997  Ian Lance Taylor  <ian@cygnus.com>
3861
3862         * objalloc.c: Include <stdio.h>.
3863
3864 Mon Mar 17 19:23:11 1997  Ian Lance Taylor  <ian@cygnus.com>
3865
3866         * objalloc.c: New file.
3867         * Makefile.in (CFILES): Add objalloc.c
3868         (REQUIRED_OFILES): Add objalloc.o.
3869         (objalloc.o): New target.
3870
3871 Sat Mar 15 18:49:41 1997  Ian Lance Taylor  <ian@cygnus.com>
3872
3873         * obstack.c: Update to current FSF version.
3874
3875 Fri Mar 14 14:18:47 1997  Ian Lance Taylor  <ian@cygnus.com>
3876
3877         * cplus-dem.c: Add prototypes for all static functions.
3878         (mystrstr): Make static.  Make arguments and result const.
3879         (cplus_match): Remove; not used.
3880
3881 Tue Mar 11 14:20:31 1997  Brendan Kehoe  <brendan@lisa.cygnus.com>
3882
3883         * cplus-dem.c (gnu_special): Call demangled_fund_type for other
3884         __t* symbols.
3885
3886 Tue Mar 11 15:41:21 1997  H.J. Lu  <hjl@lucon.org>
3887
3888         * spaces.c: Declare malloc and free properly.
3889         * strsignal.c (init_signal_tables): Add prototype.
3890         * xatexit.c (_xexit_cleanup): Add parameter declarations.
3891
3892 Wed Feb 19 15:43:24 1997  Brendan Kehoe  <brendan@lisa.cygnus.com>
3893
3894         * Makefile.in (lneeded-list): If alloca.o is needed, xexit.o is
3895         also required because of xmalloc.o.
3896
3897 Fri Feb 14 13:43:38 1997  Ian Lance Taylor  <ian@cygnus.com>
3898
3899         * strsignal.c: Unconditionally redefine sys_siglist around the
3900         inclusion of the system header files.
3901
3902 Thu Feb 13 22:01:04 1997  Klaus Kaempf  <kkaempf@progis.de>
3903
3904         * makefile.vms: Remove 8 bit characters.  Update to latest
3905         gcc release.
3906
3907 Tue Feb  4 11:52:19 1997  Ian Lance Taylor  <ian@cygnus.com>
3908
3909         * strsignal.c: Use NEED_sys_siglist instead of
3910         LOSING_SYS_SIGLIST.
3911         * config.table: Don't use mh-lynxos.
3912         * config/mh-lynxos: Remove.
3913
3914 Thu Jan 16 14:51:03 1997  Bob Manson  <manson@charmed.cygnus.com>
3915
3916         * cplus-dem.c: Fix indenting; make identical to the copy
3917         in GCC.
3918         (do_type, case 'M'): Check for a template as well as a class.
3919
3920 Thu Dec 19 13:51:33 1996  Brendan Kehoe  <brendan@lisa.cygnus.com>
3921
3922         * config/mt-vxworks5 (vxneeded-list): Remove sigsetmask.o, since
3923         vxworks 5.[0-3] all have sigsetmask in them; the one provided by
3924         libiberty is incorrect, as well.
3925
3926 Mon Dec  2 15:03:42 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
3927
3928         * alloca.c (alloca): When compiled with an ANSI/ISO compiler,
3929         alloca takes a size_t argument, not just unsigned.
3930
3931 Mon Nov 18 15:42:08 1996  Jason Merrill  <jason@yorick.cygnus.com>
3932
3933         * cplus-dem.c: Note that this file also lives in GCC.
3934
3935 Mon Nov 18 15:19:00 1996  Dawn Perchik  <dawn@critters.cygnus.com>
3936
3937         * alloca.c: Remove include of libiberty.h for hpux.
3938         * argv.c:  Replace defs from libiberty.h.
3939         * spaces.c: Put back externs from removed from libiberty.h.
3940         * vasprintf.c: Remove include of libiberty.h for hpux.
3941
3942 Mon Nov 18 14:08:00 1996  Dawn Perchik  <dawn@critters.cygnus.com>
3943
3944         * cplus-dem.c: Checking in again; last checkin filed due to sticky tag.
3945
3946 Wed Nov 13 08:22:00 1996  Dawn Perchik  <dawn@critters.cygnus.com>
3947
3948         * cplus-dem.c: Revert last two commits due to conflicts with
3949         hpux system headers.
3950
3951 Wed Nov 13 08:22:00 1996  Dawn Perchik  <dawn@critters.cygnus.com>
3952
3953         * alloca.c, argv.c, spaces.c, strcasecmp.c, vasprintf.c, vprintf.c:
3954         Revert last commit due to conflicts with hpux system headers.
3955
3956 Wed Nov 13 10:36:50 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
3957
3958         * cplus-dem.c (x{m,re}alloc): Make declarations compatibile with
3959         libiberty.h when compiled with a standard compiler.
3960
3961 Tue Nov 12 16:31:00 1996  Dawn Perchik  <dawn@critters.cygnus.com>
3962
3963         * alloca.c: Include libiberty.h for definition of xmalloc.
3964         Don't redefine NULL.
3965         * argv.c: Move prototypes to libiberty.h.
3966         * cplus-dem.c: Include libiberty.h for definition of xmalloc.
3967         Don't redefine NULL.
3968         Use casts to eliminate compiler warnings.
3969         * spaces.c: Remove prototypes for malloc and free which are
3970         already in libibrty.h.
3971         * strcasecmp.c: Use casts to eliminate compiler warnings.
3972         * vasprintf.c: Include libiberty.h for definition of malloc.
3973         Don't redefine NULL.
3974         * vprintf.c: Include stdarg.h if __STDC__.
3975
3976 Fri Oct 11 15:42:12 1996  Stu Grossman  (grossman@critters.cygnus.com)
3977
3978         * config/mh-windows:  Add strcasecmp.o to EXTRA_OFILES.
3979
3980 Fri Oct 11 11:16:31 1996  Stan Shebs  <shebs@andros.cygnus.com>
3981
3982         * mpw.c (mpwify_filename): Rewrite to simplify, and to handle
3983         upward components correctly.
3984
3985 Tue Oct  8 08:55:34 1996  Stu Grossman  (grossman@critters.cygnus.com)
3986
3987         * config.table, config/mh-windows:  Add support for building under
3988         MSVC (the Microsoft build environment).
3989
3990 Mon Oct  7 10:50:27 1996  Ian Lance Taylor  <ian@cygnus.com>
3991
3992         * fnmatch.c: Undef const if not __STDC__.
3993
3994 Thu Oct  3 13:46:39 1996  Ian Lance Taylor  <ian@cygnus.com>
3995
3996         * fnmatch.c: New file.
3997         * Makefile.in (CFILES): Add fnmatch.c.
3998         (REQUIRED_OFILES): Add fnmatch.o.
3999         (fnmatch.o): New target.
4000
4001 Wed Sep 18 14:49:13 1996  Jason Merrill  <jason@yorick.cygnus.com>
4002
4003         * cplus-dem.c (demangle_template): Fix handling of address args.
4004         (gnu_special): Handle type_info stuff.
4005
4006 Fri Sep 13 17:52:55 1996  Stan Shebs  <shebs@andros.cygnus.com>
4007
4008         * mpw.c (DebugPI): Make settable from the env var DEBUG_PATHNAMES.
4009         (mpwify_filename): Handle "::/" case.
4010
4011 Thu Sep 12 13:30:40 1996  Geoffrey Noer  <noer@cygnus.com>
4012
4013         * config/mh-cygwin32: new file (need -DNEED_basename and
4014                 -DNEED_sys_siglist for native NT rebuilding)
4015         * config.table (*-*-cygwin32): new entry
4016         * choose-temp.c: bring in sync with gcc (revert Aug 17 change)
4017
4018 Thu Aug 29 16:48:45 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
4019
4020         * config.table (i[345]86-*-*): Recognize i686 for pentium pro.
4021
4022 Tue Aug 27 13:47:58 1996  Stan Shebs  <shebs@andros.cygnus.com>
4023
4024         * pexecute.c (pexecute) [MPW]: Remove old bogus code that
4025         messed with arguments that included a '/', add escape chars
4026         to double quotes, remove const decl from arg that Mac
4027         compilers don't seem to like.
4028
4029 Sat Aug 17 04:44:27 1996  Geoffrey Noer  <noer@cygnus.com>
4030
4031         * pexecute.c: Update test for win32 (&& ! cygwin32).
4032         * choose-temp.c: fix WIN32 preprocessor defines
4033
4034 Thu Aug 15 12:26:48 1996  Stan Shebs  <shebs@andros.cygnus.com>
4035
4036         * mpw-make.sed: Add @DASH_C_FLAG@ and @SEGMENT_FLAG({Default})@
4037         to editing of default makefile rule.
4038
4039 Sun Aug 11 21:03:27 1996  Stu Grossman  (grossman@critters.cygnus.com)
4040
4041         * alloca-norm.h:  Include <malloc.h> if _WIN32.
4042         * argv.c:  Include non-prototyped decls for malloc and string
4043         functions if ! _WIN32 or if __GNUC__.
4044
4045 Thu Aug  8 12:42:40 1996  Klaus Kaempf  <kkaempf@progis.de>
4046
4047         * config.h-vms: New file.
4048         * makefile.vms: Use it.
4049
4050 Wed Aug  7 17:16:12 1996  Stu Grossman  (grossman@critters.cygnus.com)
4051
4052         * getopt.c (_getopt_internal):  If argc is 0, just return (before
4053         we reference *argv and segfault).
4054
4055 Mon Aug  5 01:29:08 1996  Jason Merrill  <jason@yorick.cygnus.com>
4056
4057         * Makefile.in (distclean): Add multilib.out.
4058
4059 Thu Jul 18 17:40:55 1996  Ian Lance Taylor  <ian@cygnus.com>
4060
4061         * alloca-norm.h: Change #ifdef sparc to #if defined (sparc) &&
4062         defined (sun).  From Andrew Gierth <ANDREWG@microlise.co.uk>.
4063
4064 Mon Jul  1 13:40:44 1996  Ken Raeburn  <raeburn@cygnus.com>
4065
4066         Tue May 28 15:29:03 1996  Pat Rankin  <rankin@eql.caltech.edu>
4067
4068         * vmsbuild.com (REQUIRD_OFILES): Add choose-temp.o and xstrdup.o.
4069
4070         Thu Jan 25 18:20:04 1996  Pat Rankin  <rankin@eql.caltech.edu>
4071
4072         * vmsbuild.com: Changes to handle DEFFUNC(on_exit).
4073         (do_ofiles): Allow nonexistent source file in pass 3.
4074         (chk_deffunc): New routine.
4075
4076 Tue Jun 25 19:24:43 1996  Doug Evans  <dje@canuck.cygnus.com>
4077
4078         * pexecute.c (PEXECUTE_VERBOSE): Define.
4079         (MPW pexecute): Check flags & PEXECUTE_VERBOSE instead of verbose_flag.
4080
4081 Tue Jun 25 23:11:48 1996  Jason Molenda  (crash@godzilla.cygnus.co.jp)
4082
4083         * Makefile.in (docdir): Removed.
4084
4085 Tue Jun 25 23:01:07 1996  Jason Molenda  (crash@godzilla.cygnus.co.jp)
4086
4087         * Makefile.in (oldincludedir): Removed.
4088
4089 Tue Jun 25 22:50:07 1996  Jason Molenda  (crash@godzilla.cygnus.co.jp)
4090
4091         * Makefile.in (datadir): Set to $(prefix)/share.
4092
4093 Thu Jun 20 21:17:52 1996  Ian Lance Taylor  <ian@cygnus.com>
4094
4095         * cplus-dem.c (demangle_arm_pt): Reindent.  Avoid endless loop by
4096         checking for errors from do_type.
4097
4098 Tue Jun 18 14:36:19 1996  Klaus Kaempf  <kkaempf@progis.de>
4099
4100         * makefile.vms: New file.
4101         * xmalloc.c: If VMS, include <stdlib.h> and <unixlib.h> rather
4102         than declaring malloc, realloc, and sbrk.
4103
4104 Mon Jun 10 13:17:17 1996  Doug Evans  <dje@canuck.cygnus.com>
4105
4106         * pexecute.c: New file.
4107
4108 Wed Jun  5 16:57:45 1996  Richard Henderson  <rth@tamu.edu>
4109
4110         * xmalloc.c: Declare sbrk.
4111
4112 Sat May  4 05:08:45 1996  Peter Schauer  (pes@regent.e-technik.tu-muenchen.de)
4113
4114         * alloca-norm.h:  Add SPARCworks cc compatible __builtin_alloca
4115         declaration.
4116
4117 Mon Apr 22 18:41:49 1996  Ian Lance Taylor  <ian@cygnus.com>
4118
4119         * xstrerror.c: Include <stdio.h>.
4120
4121 Sun Apr 21 11:55:12 1996  Doug Evans  <dje@canuck.cygnus.com>
4122
4123         * Makefile.in (CFILES): Add atexit.c.
4124
4125 Sun Apr 21 09:50:09 1996  Stephen L Moshier  (moshier@world.std.com)
4126
4127         * choose-temp.c: Include sys/types.h before sys/file.h for sco3.2v5.
4128
4129 Wed Apr 17 11:17:55 1996  Doug Evans  <dje@canuck.cygnus.com>
4130
4131         * choose-temp.c: Don't #include sys/file.h ifdef NO_SYS_FILE_H.
4132         #include <stdio.h>
4133         * config/mt-vxworks5 (HDEFINES): Define NO_SYS_FILE_H.
4134
4135 Tue Apr 16 11:27:16 1996  Jeffrey A Law  (law@cygnus.com)
4136
4137         * Makefile.in (lneeded-list): If alloca.o is needed, so is xmalloc.o.
4138         Reverts Feb 8, 1995 change.
4139
4140 Mon Apr 15 12:53:26 1996  Doug Evans  <dje@canuck.cygnus.com>
4141
4142         * choose-temp.c: New file.
4143         * Makefile.in (CFILES): Add choose-temp.c.
4144         (REQUIRED_OFILES): Add choose-temp.o.
4145
4146 Sat Apr 13 14:19:30 1996  Stu Grossman  (grossman@critters.cygnus.com)
4147
4148         * floatformat.c (floatformat_to_double):  Don't bias exponent when
4149         handling zero's, denorms or NaNs.
4150
4151 Thu Apr 11 13:36:56 1996  Stu Grossman  (grossman@critters.cygnus.com)
4152
4153         * floatformat.c (floatformat_to_double):  Fix bugs with handling
4154         numbers with fractions < 32 bits.
4155
4156 Mon Apr  8 14:48:34 1996  Ian Lance Taylor  <ian@cygnus.com>
4157
4158         * config.table: Permit --enable-shared to specify a list of
4159         directories.
4160
4161 Tue Mar 19 22:02:07 1996  Jason Merrill  <jason@yorick.cygnus.com>
4162
4163         * cplus-dem.c (demangle_template): Fix for non-mangled pointer
4164         arguments.
4165
4166 Fri Mar  8 17:24:18 1996  Ian Lance Taylor  <ian@cygnus.com>
4167
4168         * configure.in: If srcdir is `.' and with_target_subdir is not
4169         `.', then set MULTISRCTOP before calling config-ml.in.
4170
4171 Thu Mar  7 13:37:10 1996  Stan Shebs  <shebs@andros.cygnus.com>
4172
4173         * mpw.c (mpw_open): Add debugging output option.
4174
4175 Wed Mar  6 17:36:03 1996  Jason Merrill  <jason@yorick.cygnus.com>
4176
4177         * cplus-dem.c (demangle_template): Fix for address-of-extern arguments.
4178
4179 Tue Feb 27 12:00:50 1996  Raymond Jou  <rjou@mexican.cygnus.com>
4180
4181         * mpw.c (mpwify_filename): Change 6 to 5 in
4182         strncmp (unixname, "/tmp/", 5).
4183
4184 Tue Feb 20 10:55:53 1996  Ian Lance Taylor  <ian@cygnus.com>
4185
4186         * cplus-dem.c (demangle_template): Initialize is_bool.  Correctly
4187         handle 0 as a pointer value parameter.
4188
4189 Mon Feb  5 16:41:44 1996  Ian Lance Taylor  <ian@cygnus.com>
4190
4191         * Makefile.in (all): Depend upon required-list.
4192         (required-list): New target.
4193         (clean): Remove required-list.
4194
4195 Wed Jan 31 10:19:41 1996  Steve Chamberlain  <sac@slash.cygnus.com>
4196
4197         * win32.c: Deleted.
4198         * config.table (i386-*-win32): Deleted.
4199         * config/mh-i386win32: Deleted.
4200
4201 Thu Jan 18 11:34:17 1996  Ian Lance Taylor  <ian@cygnus.com>
4202
4203         * cplus-dem.c (cplus_demangle_opname): Change opname parameter to
4204         const char *.
4205         (cplus_mangle_opname): Change return type and opname parameter to
4206         const char *.  Don't cast return value.
4207
4208 Tue Jan 16 12:13:11 1996  Stan Shebs  <shebs@andros.cygnus.com>
4209
4210         * mpw.c: Include Timer.h, in order to get m68k Microseconds trap
4211         definition.
4212
4213 Wed Jan  3 13:15:04 1996  Fred Fish  <fnf@cygnus.com>
4214
4215         * obstack.c: Update copyright to 1996.
4216         (_obstack_memory_used): Define new function.  Called via
4217         obstack_memory_used macro.
4218
4219 Thu Dec 28 11:39:40 1995  Ian Lance Taylor  <ian@cygnus.com>
4220
4221         * xstrdup.c: New file.
4222         * Makefile.in (CFILES): Add xstrdup.c.
4223         (REQUIRED_OFILES): Add xstrdup.o.
4224         (xstrdup.o): New target.
4225
4226 Mon Dec 11 18:18:52 1995  Mike Stump  <mrs@cygnus.com>
4227
4228         * atexit.c: New stub to provide atexit on systems that have
4229         on_exit, like SunOS 4.1.x systems.
4230         * functions.def (on_exit, atexit): Ditto.
4231
4232 Mon Dec 11 15:42:14 1995  Stan Shebs  <shebs@andros.cygnus.com>
4233
4234         * mpw.c (mpw_abort): Remove decl.
4235         (mpw_access): Move debugging printf.
4236
4237 Sat Dec  2 01:25:23 1995  Ian Lance Taylor  <ian@cygnus.com>
4238
4239         * config.table: Consistently use ${host} rather than ${xhost} or
4240         ${target}.
4241         * configure.in: Don't bother to set ${xhost} before calling
4242         config.table.
4243
4244 Tue Nov 28 14:16:57 1995  Brendan Kehoe  <brendan@lisa.cygnus.com>
4245
4246         * Makefile.in (.c.o): Use test instead of the left bracket, to
4247         avoid problems with some versions of make.
4248
4249 Tue Nov 28 11:45:17 1995  Stan Shebs  <shebs@andros.cygnus.com>
4250
4251         * mpw-make.sed: Fix INCDIR edit to work with Nov 14 change.
4252
4253 Tue Nov 21 11:26:34 1995  Fred Fish  <fnf@rtl.cygnus.com>
4254
4255         * config/mh-hpux: Remove.  It was only used to define EXTRA_OFILES,
4256         which was set to just alloca.o, which is now automatically marked
4257         as needed by the autoconfiguration process.
4258
4259 Tue Nov 21 14:15:06 1995  Ian Lance Taylor  <ian@cygnus.com>
4260
4261         * config.table: Check ${with_cross_host} rather than comparing
4262         ${host} and ${target}.
4263
4264 Thu Nov 16 14:34:42 1995  Ian Lance Taylor  <ian@cygnus.com>
4265
4266         * configure.in: If with_target_subdir is empty, set xhost to
4267         ${host} rather than ${target} before calling config.table.
4268
4269 Tue Nov 14 01:38:30 1995  Doug Evans  <dje@canuck.cygnus.com>
4270
4271         * Makefile.in (MULTITOP): Deleted.
4272         (MULTISRCTOP, MULTIBUILDTOP): New.
4273         (FLAGS_TO_PASS): Delete INCDIR.
4274         (INCDIR): Add $(MULTISRCTOP).
4275         (install_to_libdir): Add $(MULTISUBDIR).  Call $(MULTIDO).
4276         * configure.in: Delete call to cfg-ml-com.in.  Call config-ml.in
4277         instead of cfg-ml-pos.in.
4278         (cross-compile check): Change to test for with_target_subdir.
4279         (EXTRA_LINKS): Delete.
4280
4281 Sun Nov 12 12:13:04 1995  Stan Shebs  <shebs@andros.cygnus.com>
4282
4283         * mpw-make.sed: Add getpagesize.c.o to needed-list.
4284         * mpw.c [USE_MW_HEADERS]: Conditionalize compiling of
4285         functions that are supplied by Metrowerks libraries.
4286         (fstat): Clean up descriptor->pointer conversion code.
4287         (InstallConsole, etc): Empty definitions, for when linking
4288         with SIOUX.
4289
4290 Sun Nov  5 19:25:27 1995  Per Bothner  <bothner@kalessin.cygnus.com>
4291
4292         * Makefile.in (FLAGS_TO_PASS):  Also pass PICFLAGS.
4293         (.c.o):  Stylistic change.
4294
4295 Thu Nov  2 12:06:29 1995  Ian Lance Taylor  <ian@cygnus.com>
4296
4297         * strtol.c, strtoul.c: Don't include <stdlib.h>.  From
4298         phdm@info.ucl.ac.be (Philippe De Muyter).
4299
4300 Wed Nov  1 11:59:36 1995  Ian Lance Taylor  <ian@cygnus.com>
4301
4302         * configure.in: Correct sed call.
4303
4304 Mon Oct 30 13:03:45 1995  Per Bothner  <bothner@kalessin.cygnus.com>
4305
4306         * configure.in:  Clean up / simplify for native.
4307
4308         * configure.in:  Merge in stuff from ../xiberty/configure.in.
4309         * Makefile.in (CC):  Add definition (so it can be overrridden
4310         by ../configure).
4311
4312 Tue Oct 24 17:57:27 1995  Stan Shebs  <shebs@andros.cygnus.com>
4313
4314         * mpw-make.sed: Leave strerror.c.o in standard list of functions.
4315         * mpw.c (R_OK, ENOENT, EACCESS, ENOSYS): Remove.
4316         (link): Remove useless definition with error return.
4317         (last_microseconds, warn_if_spin_delay, record_for_spin_delay):
4318         Use UnsignedWide type for microsecond counts.
4319
4320 Thu Oct 19 10:52:07 1995  Michael Meissner  <meissner@wogglebug.tiac.net>
4321
4322         * memcmp.c (memcmp): Argument types are const void *, not void
4323         *const.
4324
4325         * strncasecmp.c (strncasecmp): Include ansidecl.h/stdarg.h, not
4326         sys/types.h.
4327         * strcasecmp.c (strcasecmp): Ditto.
4328
4329 Tue Oct 10 11:03:24 1995  Fred Fish  <fnf@cygnus.com>
4330
4331         * Makefile.in (BISON):  Remove macro.
4332
4333 Tue Sep 26 15:06:46 1995  Stan Shebs  <shebs@andros.cygnus.com>
4334
4335         * Makefile.in (HFILES): Add default empty definition.
4336         * mpw-config.in (config.h): Only update if changed.
4337         * mpw-make.in: Remove.
4338         * mpw-make.sed: New file, edits Makefile.in into MPW makefile.
4339         * mpw.c: Remove semi-clone of strerror code.
4340         (sys_nerr, sys_errlist): Define here.
4341         (Microseconds): Only define as A-line trap if m68k Mac.
4342
4343 Wed Sep 20 12:53:32 1995  Ian Lance Taylor  <ian@cygnus.com>
4344
4345         * Makefile.in (maintainer-clean): New synonym for distclean.
4346
4347 Mon Aug 28 19:47:52 1995  Per Bothner  <bothner@kalessin.cygnus.com>
4348
4349         * config.table:  For host, generalize rs6000-ibm-aix*
4350         to *-ibm-aix* so we also include powerpc.
4351
4352 Tue Aug 22 03:18:05 1995  Ken Raeburn  <raeburn@kr-laptop.cygnus.com>
4353
4354         Fri Jun 16 18:35:40 1995  Pat Rankin  (rankin@eql.caltech.edu)
4355
4356         * xstrerror.c: New file.
4357         * Makefile.in, vmsbuild.com: Compile it.
4358
4359 Mon Jul 31 12:16:32 1995  steve chamberlain  <sac@slash.cygnus.com>
4360
4361         * config.table (i386-*-win32): New.
4362
4363 Fri Jul 21 11:35:52 1995  Doug Evans  <dje@canuck.cygnus.com>
4364
4365         * Makefile.in (MULTITOP): New variable.
4366         (MULTIDIRS, MULTISUBDIR, MULTIDO, MULTICLEAN): Likewise.
4367         (all): Add multilib support.
4368         (install_to_tooldir, *clean): Likewise.
4369
4370 Mon Jul 10 11:47:27 1995  Ken Raeburn  <raeburn@cygnus.com>
4371
4372         * makefile.dos (OBJS): Add hex.o.  From DJ Delorie.
4373
4374 Fri Jun 30 17:28:59 1995  Pat Rankin  (rankin@eql.caltech.edu)
4375
4376         * vmsbuild.com:  create "new-lib.olb", build libiberty under that
4377         name, and then make it become "liberty.olb" when done, so that an
4378         incomplete build attempt never leaves behind something which looks
4379         like a complete library.
4380
4381 Thu Jun 29 00:22:02 1995  Steve Chamberlain  <sac@slash.cygnus.com>
4382
4383         * config/mh-i386pe: New file for PE hosts.
4384         * config.table: Understand PE hosts.
4385
4386 Wed Jun 28 19:13:23 1995  Jason Merrill  <jason@phydeaux.cygnus.com>
4387
4388         * cplus-dem.c: Update from gcc.
4389
4390         * argv.c, dummy.c: If __STDC__, #include "alloca-conf.h" after
4391         <stddef.h>.
4392         * alloca-norm.h: If __STDC__, declare alloca with its parameter.
4393
4394 Thu Jun 22 18:57:47 1995  Stan Shebs  <shebs@andros.cygnus.com>
4395
4396         * mpw-make.in (ALL_CFLAGS): Define NEED_basename.
4397         * mpw.c: Only test DebugPI once whenever printing debug info.
4398         (mpwify_filename): If filename is /tmp/foo, change it into :_foo,
4399         also fix to not write on input filename buffer.
4400         (mpw_access): Use stat() instead of open(), works for directories
4401         as well as files.
4402
4403 Mon Jun 19 00:33:22 1995  Jason Merrill  <jason@phydeaux.cygnus.com>
4404
4405         * Makefile.in: Massage broken shells that require 'else true'.
4406
4407 Sat Jun 17 23:21:58 1995  Fred Fish  <fnf@cygnus.com>
4408
4409         * alloca-norm.h: Declare alloca as type "PTR" to match functions.def.
4410         Declare __builtin_alloca in the sparc case, as argv.c did.
4411         * argv.c: Replace inline version of alloca-norm.h at start of file with
4412         a #include of alloca-conf.h.  Precede it with an include of ansidecl.h
4413         because alloca-norm.h needs to declare alloca as "PTR".
4414
4415 Mon Jun 12 14:24:26 1995  Steve Chamberlain  <sac@slash.cygnus.com>
4416
4417         * win32.c: New file.
4418
4419 Fri Jun  9 15:16:14 1995  Jason Merrill  <jason@phydeaux.cygnus.com>
4420
4421         * dummy.c: #include "alloca-conf.h".
4422
4423 Wed Jun  7 11:46:23 1995  Jason Merrill  <jason@phydeaux.cygnus.com>
4424
4425         * Makefile.in (mostlyclean): Remove stamp-picdir.
4426         (clean): Don't.
4427
4428 Mon Jun  5 18:46:06 1995  Jason Merrill  <jason@phydeaux.cygnus.com>
4429
4430         * config.table (frags): Use toplevel pic frags.
4431
4432         * Makefile.in (PICFLAG): New macro.
4433         (all): Depend on stamp-picdir.
4434         (needed-list): Ditto.
4435         (.c.o): Also build pic object.
4436         (stamp-picdir): New rule.
4437         (mostlyclean): Remove pic.
4438         (clean): Remove stamp-picdir.
4439
4440 Fri Mar 24 16:55:48 1995  Pat Rankin  (rankin@eql.caltech.edu)
4441
4442         * vmsbuild.com (config.h): Add `#define NEED_basename'.
4443
4444 Tue May 23 10:12:46 1995  Per Bothner  <bothner@kalessin.cygnus.com>
4445
4446         * clock.c, getopt.c, strtod.c, vsprintf.c:  Change from using LGPL
4447         to libio-style copyright.
4448         * getpagesize.c:  Remove FSF copyright.
4449
4450 Sat May 20 12:30:23 1995  Ken Raeburn  <raeburn@kr-laptop.cygnus.com>
4451
4452         Added improved VMS support from Pat Rankin:
4453
4454         Fri Mar 17 18:40:36 1995  Pat Rankin  (rankin@eql.caltech.edu)
4455
4456         * vmsbuild.com:  new file.
4457
4458         * getpagesize.c (getpagesize):  implement for VMS;
4459         * strerror.c (strerror, strerrno, strtoerrno):  add rudimentary
4460         support for EVMSERR.
4461
4462 Thu May 18 17:01:42 1995  Ken Raeburn  <raeburn@kr-laptop.cygnus.com>
4463
4464         Wed May 10 14:28:16 1995 Richard Earnshaw (rearnsha@armltd.co.uk)
4465
4466         * floatformat.c (floatformat_arm_ext): Define.
4467
4468 Tue May 16 13:30:59 1995  Per Bothner  <bothner@kalessin.cygnus.com>
4469
4470         * basename.c, bcmp.c, getcwd.c, insque.c, rename.c, sigsetmask.c,
4471         strerror.c, strsignal.c:  Remove FSF copyright.
4472         * sigsetmask.c: #include <sys/types.h> - seems to be needed by ISC.
4473
4474 Mon May 15 19:53:17 1995  Per Bothner  <bothner@kalessin.cygnus.com>
4475
4476         * bcopy.c, bzero.c, memcmp.c, memcpy.c, memset.c, strchr.c,
4477         strrchr.c, strstr.c, vfork.c:  Remove FSF Copyright, because this
4478         might contaminate libstdc++ with the LGPL.  (OK'd by RMS 11 Oct 94.)
4479         * strchr.c, strrchr.c:  Add cast to suppress const warning.
4480
4481 Thu May  4 14:36:42 1995  Jason Merrill  <jason@phydeaux.cygnus.com>
4482
4483         * cplus-dem.c: Use const instead of CONST.  Don't include
4484         ansidecl.h directly.
4485
4486 Wed Apr 19 01:30:27 1995  Jason Merrill  <jason@phydeaux.cygnus.com>
4487
4488         * cplus-dem.c: Don't include libiberty.h.  Do declare xmalloc and
4489         xrealloc.
4490         (-DMAIN): Don't rely on an externally-defined version number;
4491         instead, require the version number to be defined as a
4492         preprocessor macro.  Handle the RS/6000 leading dot.  Define
4493         xmalloc, xrealloc and fatal.  Don't strip a leading underscore
4494         if we couldn't demangle the word.
4495
4496 Tue Apr  4 13:03:51 1995  Stan Shebs  <shebs@andros.cygnus.com>
4497
4498         (Old mpw.c change descriptions retained for informational value.)
4499         * mpw.c (warning_threshold): Default to .4 sec.
4500         (overflow_count, current_progress): New globals.
4501         (warn_if_spin_delay): Include current progress type,
4502         such as program name, in message.
4503         (mpw_start_progress): Set current_progress variable from arg.
4504         (mpw_end_progress): Report spin delays by power-of-two-size
4505         buckets instead of constant-size buckets.
4506
4507         * mpw.c: Clean up formatting, types, returns, etc.
4508         (ENOSYS): Define.
4509         (mpw_fread, mpw_fwrite): Define.
4510         (sleep): Define correctly.
4511
4512         * mpw.c: New code to implement cursor spinning support.
4513         (umask): New function.
4514         (mpw_fopen, mpw_fseek, stat, fstat): Call PROGRESS.
4515
4516         * mpw.c (mpw_basename, mpw_mixed_basename): New functions, find
4517         basenames for MPW and MPW/Unix filenames.
4518         (mpw_special_init): New function, calls Macsbug if desired.
4519
4520         * mpw.c: Add GPL notice.
4521         (mpwify_filename): Add more transformations.
4522         (mpw_fopen): Call mpwify_filename on file names.
4523         (rename): Remove.
4524         (chdir, getcwd): Add simple definitions.
4525
4526         * mpw.c: Random cleanups, remove unused code bits.
4527         Added copy of strerror.c for gcc's use.
4528         (stat, fstat, _stat): New versions based on Guido van Rossum code.
4529
4530         * mpw.c (mpw_fseek): Make it work correctly when doing SEEK_CUR.
4531
4532         * mpw.c (stat): Remove hack definition, get from sys/stat.h.
4533         (fork, vfork, etc): Print error messages if called.
4534         (getrusage, sbrk, environ, isatty, link, utime, mkdir, rmdir,
4535         rename, chown): Define.
4536
4537         * mpw-config.in: New file, MPW version of configure.in.
4538         * mpw-make.in: New file, MPW version of Makefile.in.
4539         * mpw.c: New file, MPW compatibility routines.
4540
4541 Fri Mar 24 14:10:30 1995  Jim Kingdon  (kingdon@lioth.cygnus.com)
4542
4543         * basename.c: Include config.h before checking for NEED_basename.
4544
4545 Thu Mar 23 19:09:54 1995  Jason Merrill  <jason@phydeaux.cygnus.com>
4546
4547         * functions.def: Add DEFFUNC for basename.
4548
4549         * basename.c: Only define basename if NEED_basename.
4550
4551 Thu Mar 16 13:36:05 1995  Jason Merrill  <jason@phydeaux.cygnus.com>
4552
4553         * config.table: Fix --enable-shared logic for native builds.
4554
4555 Mon Mar 13 11:05:11 1995  Jason Merrill  <jason@phydeaux.cygnus.com>
4556
4557         * cplus-dem.c (demangle_template): Demangle bool literals properly.
4558
4559 Mon Mar  6 23:57:28 1995  Stu Grossman  (grossman@cygnus.com)
4560
4561         * strtol.c strtoul.c:  Replace these with less buggy versions from
4562         NetBSD.  (strtoul in particular couldn't handle base 16.)
4563
4564 Wed Mar  1 15:59:01 1995  Ian Lance Taylor  <ian@cygnus.com>
4565
4566         * config/mt-vxworks5 (HDEFINES): Define NO_SYS_PARAM_H.
4567
4568         * clock.c: If NO_SYS_PARAM_H is defined, don't include
4569         <sys/param.h>.
4570         * getcwd.c, getpagesize.c, getruntime.c: Likewise.
4571
4572 Fri Feb 17 15:40:55 1995  Ian Lance Taylor  <ian@cygnus.com>
4573
4574         * getruntime.c (get_run_time): Don't assume that CLOCKS_PER_SEC is
4575         a number; ANSI appears to permit any expression, including a
4576         function call.
4577
4578         * config.table (*-*-vxworks5*): Use mt-vxworks5 when configuring
4579         xiberty.
4580         * config/mt-vxworks5: New file.
4581
4582 Thu Feb  9 14:19:45 1995  Ian Lance Taylor  <ian@cygnus.com>
4583
4584         * basename.c (basename): Change argument to be const.
4585
4586 Wed Feb  8 18:06:52 1995  Jason Merrill  <jason@phydeaux.cygnus.com>
4587
4588         * Makefile.in (lneeded-list): Don't worry about xmalloc.
4589
4590 Sun Jan 15 00:40:36 1995  Jeff Law  (law@snake.cs.utah.edu)
4591
4592         * Makefile.in (distclean): Delete xhost-mkfrag.
4593
4594 Thu Jan 12 16:54:18 1995  Jason Merrill  <jason@phydeaux.cygnus.com>
4595
4596         * Makefile.in (lneeded-list): If alloca.o is needed, so is xmalloc.o.
4597
4598 Wed Jan 11 22:39:56 1995  Ken Raeburn  <raeburn@cujo.cygnus.com>
4599
4600         * hex.c: New file.
4601         * Makefile.in (REQUIRED_OFILES, CFILES): List it.
4602         (hex.o): Add dependencies.
4603
4604         * cplus-dem.c (demangle_prefix): For GNU style constructor and
4605         destructor names, try demangling the remainder of the string.
4606
4607 Wed Dec 28 00:49:15 1994  Ian Lance Taylor  <ian@tweedledumb.cygnus.com>
4608
4609         * vasprintf.c (int_vasprintf): New static function.
4610         (vasprintf): Use int_vasprintf.  Removes assumption that va_list
4611         is assignment compatible.
4612
4613 Sat Nov  5 19:29:12 1994  Jason Merrill  (jason@phydeaux.cygnus.com)
4614
4615         * Makefile.in (LIBCFLAGS): New variable.
4616         (FLAGS_TO_PASS): Pass it.
4617         (.c.o): Use it.
4618
4619 Thu Nov  3 19:09:47 1994  Ken Raeburn  <raeburn@cujo.cygnus.com>
4620
4621         * getopt.c, getopt1.c: Do compile these functions under Linux,
4622         since many native versions are based on glibc but are buggy.
4623
4624 Mon Oct 24 15:16:46 1994  Per Bothner  <bothner@kalessin.cygnus.com>
4625
4626         * vasprintf.c:  Make 'format' arg be const, to avoid a mismatch
4627         with prototype in GNU libc.  Support stdarg.h as well as varargs.h.
4628
4629 Tue Oct 11 17:48:27 1994  Jason Merrill  (jason@phydeaux.cygnus.com)
4630
4631         * Makefile.in (REQUIRED_OFILES): Add vasprintf.o.
4632         * functions.def: Remove vasprintf.
4633
4634 Wed Sep 14 17:04:55 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
4635
4636         * xmalloc.c (first_break): New static variable.
4637         (xmalloc_set_program_name): Record sbrk (0) in first_break.
4638         (xmalloc): If memory allocation fails, try to report how much
4639         memory was allocated by the program up to this point.
4640         (xrealloc): Likewise.
4641
4642 Sun Sep 04 17:58:10 1994  Richard Earnshaw (rwe@pegasus.esprit.ec.org)
4643
4644         * Makefile.in (ERRORS_CC): New variable, defaulted to $(CC).  Use it
4645         when linking dummy.
4646         * config.table: Add host RISCiX Makefile frag.
4647         * config/mh-riscix: New file.
4648
4649 Thu Aug 25 17:29:44 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
4650
4651         * Makefile.in (FLAGS_TO_PASS): Define.
4652         ($(RULE1)): Use $(FLAGS_TO_PASS).
4653
4654 Wed Aug 24 17:08:47 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
4655
4656         * vasprintf.c: Include <string.h>.
4657         (vasprintf): Add casts to void for va_arg to avoid gcc warnings.
4658         * xatexit.c: Declare malloc.
4659
4660 Fri Aug 19 15:29:12 1994  Kung Hsu  (kung@mexican.cygnus.com)
4661
4662         * cplus-dem.c (demangle_args): Fix a bug in previous patch (the
4663         one below).
4664
4665 Thu Aug 18 14:37:14 1994  Kung Hsu  (kung@mexican.cygnus.com)
4666
4667         * cplus-dem.c (demangle args): Handle ARM repeat encoding where
4668         the type index is greater than 9.
4669
4670 Wed Aug 17 16:13:49 1994  Kung Hsu  (kung@mexican.cygnus.com)
4671
4672         * cplus-dem.c (demangle_qualified): accept optional '_' between
4673         qualified name. This is baecause the template name may end with
4674         numeric and can mixed up with the length of next qualified name.
4675
4676 Wed Aug  3 05:52:14 1994  D. V. Henkel-Wallace  (gumby@cygnus.com)
4677
4678         * config/mt-sunos4: Use our standard location for cross-includes
4679         and cross-libs when the target is also a "host" environment (ie no
4680         newlib; includes and such don't belong to us).  This is specific
4681         to the Cygnus Support environment.
4682
4683 Tue Aug  2 15:25:12 1994  Kung Hsu  (kung@mexican.cygnus.com)
4684
4685         * cplus-dem.c (demangle_template): demangle as xxx<'Q'> not
4686         xxx<ch=81>.
4687
4688 Mon Aug  1 17:02:48 1994  Kung Hsu  (kung@mexican.cygnus.com)
4689
4690         * cplus-dem.c (main): flush stdout to make pipe work.
4691
4692 Sat Jul 16 12:56:32 1994  Stan Shebs  (shebs@andros.cygnus.com)
4693
4694         * config.table (*-*-cxux7*):  Recognize.
4695         * floatformat.c (floatformat_m88110_ext) [HARRIS_FLOAT_FORMAT]:
4696         Harris-specific float format.
4697         * config/mh-cxux7: New file.
4698
4699 Wed Jun 29 00:26:17 1994  Peter Schauer  (pes@regent.e-technik.tu-muenchen.de)
4700
4701         * cplus-dem.c (demangle_template):  Make sure that the result of
4702         consume_count doesn't index beyond the end of the string.
4703
4704 Mon Jun 20 23:54:37 1994  Peter Schauer  (pes@regent.e-technik.tu-muenchen.de)
4705
4706         * cplus-dem.c (gnu_special):  Handle vtable mangling of gcc-2.4.5 and
4707         earlier. Improve test for new vtable mangling. Change output back
4708         to `virtual table'.
4709
4710 Mon Jun 20 11:37:30 1994  Ian Lance Taylor  (ian@sanguine.cygnus.com)
4711
4712         * obstack.c: Always compile this code, even if using the GNU
4713         library.  Avoids problems with relatively recent binary
4714         incompatibility.
4715
4716 Thu Jun 16 17:54:01 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
4717
4718         * cplus-dem.c: Include libiberty.h.
4719         (xmalloc, xrealloc, free): Don't declare.
4720         (strstr): Don't declare parameters.
4721         (xmalloc, xrealloc): Don't define.
4722         (long_options): Add no-strip-underscores.
4723         (main): Call xmalloc_set_program_name.  Pass n in short options to
4724         getopt_long.  Handle option 'n' to not strip underscores.
4725         (usage): Mention -n and --no-strip-underscores.
4726
4727 Sun Jun 12 01:37:09 1994  Jason Merrill  (jason@deneb.cygnus.com)
4728
4729         * cplus-dem.c (demangle_template): Separate consecutive >'s with a
4730         space.
4731         (gnu_special): Demangle template and qualified names in a vtable name.
4732
4733 Fri May 27 12:27:52 1994  Ken Raeburn  (raeburn@cujo.cygnus.com)
4734
4735         From gas-2.3 and binutils-2.4 net releases:
4736
4737         Wed May 11 22:32:00 1994  DJ Delorie (dj@ctron.com)
4738
4739         * makefile.dos: [new] Makefile for dos/go32
4740         * configure.bat: update for latest files
4741         * msdos.c: remove some functions now in libc.a
4742
4743 Fri May 20 18:53:32 1994  Per Bothner  (bothner@kalessin.cygnus.com)
4744
4745         * cplus-dem.c (gnu_special):  Recognize thunks, as well as
4746         the new naming style for vtables (when -fvtable-thunks).
4747
4748 Wed May 18 13:34:06 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
4749
4750         * Makefile.in (XTRAFLAGS): Don't define.
4751         (.c.o, dummy.o): Don't use XTRAFLAGS.
4752         ($(RULE1)): Don't pass XTRAFLAGS down in recursive call.
4753
4754 Fri May 13 16:02:12 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
4755
4756         * vasprintf.c: New file.
4757         * Makefile.in, functions.def: Add it.
4758
4759 Fri May 13 16:20:28 1994  Jason Merrill  (jason@deneb.cygnus.com)
4760
4761         * cplus-dem.c (demangle_fund_type): Grok bool.
4762
4763 Fri May  6 14:44:21 1994  Steve Chamberlain  (sac@cygnus.com)
4764
4765         * config.table: Add go32
4766         * config/mh-go32: New template.
4767
4768 Fri May  6 11:01:59 1994  D. V. Henkel-Wallace  (gumby@rtl.cygnus.com)
4769
4770         * config.table, config/mt-sunos4: config for when sun4 is cross target.
4771
4772 Mon Apr 11 00:54:33 1994  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
4773
4774         * getopt.c [not __GNU_LIBRARY__] [__GCC__] [not __STDC__]:
4775         Declare strlen to return int.  Don't include stddef.h.
4776
4777 Fri Apr  1 00:38:17 1994  Jim Wilson  (wilson@mole.gnu.ai.mit.edu)
4778
4779         * getopt.c: Delete use of IN_GCC to control whether
4780         stddef.h or gstddef.h is included.
4781
4782 Thu Apr 14 14:00:56 1994  Kung Hsu  (kung@mexican.cygnus.com)
4783
4784         * cplus-dem.c (demangle_signature): Fix a bug in template function
4785         type numbering.
4786
4787 Wed Apr 13 17:23:03 1994  Kung Hsu  (kung@mexican.cygnus.com)
4788
4789         * cplus-dem.c (demangle_signature): Fix template function with arm
4790         style argument type number, Tn.
4791
4792 Wed Apr 13 17:11:15 1994  Jason Merrill  (jason@deneb.cygnus.com)
4793
4794         * cplus-dem.c (optable): Add new[] and delete[].
4795
4796 Fri Apr  8 11:21:42 1994  Jim Kingdon  (kingdon@deneb.cygnus.com)
4797
4798         * argv.c (buildargv): Don't produce empty argument just because
4799         there is trailing whitespace.
4800
4801 Wed Apr  6 11:42:14 1994  Kung Hsu  (kung@mexican.cygnus.com)
4802
4803         * cplus-dem.c (demangle_template): fix 'Q' qualified name bug.
4804         Handle 'p' same as 'P'.
4805         * cplus-dem.c (do_type): Handle 'p' same as 'P'.
4806
4807 Sat Mar 26 12:00:13 1994  Peter Schauer  (pes@regent.e-technik.tu-muenchen.de)
4808
4809         * floatformat.c (get_field, put_field):  Fix off by one error in
4810         little endian case.
4811
4812 Thu Mar 24 10:40:19 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
4813
4814         * floatformat.c (floatformat_from_double): Pass unsigned char *,
4815         not char *, to put_field.
4816
4817 Fri Mar 18 12:34:33 1994  Per Bothner  (bothner@kalessin.cygnus.com)
4818
4819         * memmove.c:  Re-wrote;  placed in public domain.
4820
4821 Wed Mar 16 10:33:07 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
4822
4823         * cplus-dem.c (demangle_prefix): If ARM demangling, don't treat
4824         __Q* as a constructor.
4825
4826 Mon Mar 14 12:26:02 1994  Ian Lance Taylor  (ian@cygnus.com)
4827
4828         * ieee-float.c: Removed; no longer used.
4829         * Makefile.in: Changed accordingly.
4830
4831 Mon Mar  7 12:28:17 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
4832
4833         * floatformat.c (get_field): Removed unused local variable i.
4834         (put_field): Removed unused local variable i.
4835
4836 Sun Feb 27 21:50:11 1994  Jim Kingdon  (kingdon@deneb.cygnus.com)
4837
4838         * floatformat.c: New file, intended to replace ieee-float.c.
4839         * Makefile.in: Change accordingly.
4840
4841 Thu Feb 24 11:51:12 1994  David J. Mackenzie  (djm@rtl.cygnus.com)
4842
4843         * getopt.c: Remove #ifdef GETOPT_COMPAT and #if 0 code.
4844          (_getopt_initialize): New function, broken out of _getopt_internal.
4845          (_getopt_internal):
4846          If long_only and the ARGV-element has the form "-f", where f is
4847          a valid short option, don't consider it an abbreviated form of
4848          a long option that starts with f.  Otherwise there would be no
4849          way to give the -f short option.
4850
4851 Thu Feb 10 14:44:16 1994  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
4852
4853         * getopt.c [not __GNU_LIBRARY__] [__GNUC__] [not IN_GCC]:
4854         Test just __STDC__, not emacs.
4855
4856 Wed Feb  9 00:14:00 1994  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
4857
4858         * getopt.c [not __GNU_LIBRARY__] [__GNUC__] [not IN_GCC]
4859         [emacs] [not __STDC__]: Don't include stddef.h.  Don't declare strlen.
4860
4861 Fri Dec 24 19:43:00 1993  Noah Friedman  (friedman@nutrimat.gnu.ai.mit.edu)
4862
4863         * getopt.c (_NO_PROTO): Define before config.h is included.
4864
4865 Mon Sep 20 15:59:03 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4866
4867         * getopt.c, getopt1.c [emacs || CONFIG_BROKETS]: Include
4868         <config.h> only under these, else "config.h".
4869
4870 Thu Aug 12 18:16:49 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4871
4872         * getopt.c, getopt1.c [HAVE_CONFIG_H]: Include
4873         <config.h> instead of "config.h".
4874
4875 Sun Feb 20 17:17:01 1994  Ian Lance Taylor  (ian@lisa.cygnus.com)
4876
4877         * concat.c: Check ANSI_PROTOTYPES rather than __STDC__ to decide
4878         whether to use prototypes or not.
4879         * strerror.c (const): Never undefine; let ansidecl.h handle it.
4880         * strsignal.c (const): Likewise.
4881
4882 Thu Feb 17 13:27:35 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
4883
4884         * xatexit.c (_xexit_cleanup): Declare as extern; don't initialize.
4885         Merging common and initialized variables need not be supported by
4886         ANSI C compilers.
4887         (xatexit): Initialize _xexit_cleanup if not already set.
4888         * xexit.c: Comment fix.
4889
4890 Wed Feb 16 01:15:36 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
4891
4892         * xmalloc.c: Don't declare xexit; it's declared in libiberty.h.
4893         (xrealloc): If oldmem is NULL, allocate with malloc, rather than
4894         assuming that realloc works correctly.
4895
4896 Tue Feb 15 09:26:16 1994  Peter Schauer  (pes@regent.e-technik.tu-muenchen.de)
4897
4898         * concat.c, ieee-float.c:  Replace inclusion of <string.h>
4899         with explicit function declarations, as recommended by Ian Taylor.
4900
4901 Sat Feb 12 10:31:11 1994  David J. Mackenzie  (djm@rtl.cygnus.com)
4902
4903         * xmalloc.c (xmalloc, xrealloc): Use PTR and size_t throughout.
4904         (malloc, realloc): Declare.
4905
4906 Thu Feb 10 17:08:19 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
4907
4908         * argv.c, basename.c: Include ansidecl.h and libiberty.h.
4909         * concat.c, fdmatch.c, getruntime.c, spaces.c: Likewise.
4910         * strerror.c, strsignal.c, xatexit.c, xexit.c: Likewise.
4911         * xmalloc.c: Likewise.
4912         * concat.c: Don't declare xmalloc.  If __STDC__, use <stdarg.h>
4913         macros, not <varargs.h> macros.
4914         * spaces.c (spaces): Make return type const.  Don't crash if
4915         malloc returns NULL.
4916         * strerror.c (struct error_info): Make name and msg fields const.
4917         (error_names): Make const.
4918         (strerrno): Make const.
4919         (strtoerrno): Make argument const.
4920         * strsignal.c (struct signal_info): Make name and msg fields
4921         const.
4922         (signal_names, sys_siglist): Make const.
4923         (strsignal, strsigno): Make const.
4924         (strtosigno): Make argument const.
4925         * xatexit.c: Declare parameter types.
4926         * xmalloc.c (name): Make const.
4927         (xmalloc_set_program_name): Make argument const.
4928         * Makefile.in (INCDIR): Define.
4929         (.c.o): Use $(INCDIR).
4930         (dummy.o): Likewise.
4931         (argv.o, basename.o): New targets; depend on libiberty.h.
4932         (concat.o, fdmatch.o, getruntime.o, spaces.o): Likewise.
4933         (strerror.o, strsignal.o, xatexit.o, xexit.o): Likewise.
4934         (xmalloc.o): Likewise.
4935         (cplus-dem.o): New target; depend on demangle.h.
4936         (getopt.o, getopt1.o): New targets; depend on getopt.h.
4937         (ieee-float.o): New target; depend on ieee-float.h.
4938         (obstack.o): New target; depend on obstack.h.
4939
4940 Tue Feb  8 05:29:08 1994  David J. Mackenzie  (djm@thepub.cygnus.com)
4941
4942         Handle obstack_chunk_alloc returning NULL.  This allows
4943         obstacks to be used by libraries, without forcing them
4944         to call exit or longjmp.
4945         * obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
4946         If CALL_CHUNKFUN returns NULL, set alloc_failed, else clear it.
4947         (_obstack_begin, _obstack_begin_1): Return 1 if successful, 0 if not.
4948
4949 Tue Feb  8 00:32:28 1994  Peter Schauer  (pes@regent.e-technik.tu-muenchen.de)
4950
4951         * concat.c, ieee-float.c:  Include <string.h>.
4952
4953 Sun Feb  6 21:28:46 1994  David J. Mackenzie  (djm@thepub.cygnus.com)
4954
4955         * xmalloc.c (xmalloc_set_program_name): New function.
4956         (xmalloc, xrealloc): Include the name in the error message, if set.
4957
4958         * Replace atexit.c with xatexit.c.
4959         * Makefile.in (CFILES), functions.def: Change references.
4960
4961 Sat Feb  5 14:02:32 1994  Stan Shebs  (shebs@andros.cygnus.com)
4962
4963         * getruntime.c (get_run_time): Use getrusage or times if
4964         HAVE_GETRUSAGE or HAVE_TIMES are defined.
4965
4966 Fri Feb  4 15:49:38 1994  David J. Mackenzie  (djm@thepub.cygnus.com)
4967
4968         * atexit.c: New file.
4969         * Makefile.in (CFILES), functions.def: Add it.
4970         * xexit.c: New file.
4971         * Makefile.in (CFILES, REQUIRED_OFILES): Add it.
4972         * xmalloc.c (xmalloc, xrealloc): Call xexit instead of exit.
4973         Change request for 0 bytes into request for 1 byte.
4974
4975 Wed Feb  2 11:36:49 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
4976
4977         * xmalloc.c (xmalloc, xrealloc): Print size using %lu, and cast to
4978         unsigned long, to avoid warnings.
4979
4980 Fri Jan 28 17:49:06 1994  Ken Raeburn  (raeburn@cujo.cygnus.com)
4981
4982         * dummy.c: Don't include time.h ever; always define clock_t as
4983         "unsigned long".  Until gcc/fixincludes ensures that clock_t
4984         exists, __STDC__ isn't a sufficient test.  And if clock() doesn't
4985         exist, clock_t probably doesn't either.
4986
4987 Mon Jan 24 11:52:31 1994  Stan Shebs  (shebs@andros.cygnus.com)
4988
4989         * clock.c, getruntime.c: New files.
4990         * Makefile.in: Add to file lists.
4991         * functions.def (clock): Add to list.
4992         * dummy.c (time.h): Add if __STDC__.
4993         (clock_t): #define as "unsigned long" if not __STDC__.
4994
4995 Tue Jan 11 11:27:44 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
4996
4997         * strtod.c: Declare atof.  From edler@jan.ultra.nyu.edu (Jan
4998         Edler).
4999
5000 Tue Dec 28 14:17:30 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
5001
5002         * Makefile.in (errors): Use CFLAGS as well as LDFLAGS when
5003         linking.
5004
5005 Fri Dec 17 12:26:07 1993  Kung Hsu  (kung@cirdan.cygnus.com)
5006
5007         * cplus-dem.c (demangle_arm_pt): New function.  Common code
5008         for ARM template demangling.
5009         * cplus-dem.c (demangle_class_name): Use demangle_arm_pt.
5010         * cplus-dem.c (demangle_prefix): Likewise.
5011
5012 Tue Nov 30 15:47:48 1993  Jason Merrill  (jason@deneb.cygnus.com)
5013
5014         * cplus-dem.c (cplus_demangle_opname): Add CONST to please gcc.
5015
5016 Sat Nov 27 11:05:50 1993  Fred Fish  (fnf@cygnus.com)
5017
5018         Merge changes from tom@basil.icce.rug.nl (Tom R.Hageman)
5019         * strerror.c, strsignal.c:  As a small space optimization, don't
5020         include messages when they aren't actually used.
5021
5022         Merge changes from takefive.co.at!joe (Josef Leherbauer)
5023         * cplus-dem.c (demangle_prefix, demangle_function_name,
5024         cplus_demangle_opname):  Fixes for systems where cplus_marker
5025         is something other than '$'.
5026
5027 Fri Nov 26 13:51:11 1993  Per Bothner  (bothner@kalessin.cygnus.com)
5028
5029         * waitpid.c:  Simple-minded approcimation to waitpid
5030         using vanilla wait.
5031         * functions.def, Makefile.in:  Update accordingly,
5032
5033 Thu Nov 18 18:01:15 1993  Kung Hsu  (kung@cirdan.cygnus.com)
5034
5035         * cplus-dem.c(demangle_template): fix bug template instantiation
5036         with value of user defined type.
5037
5038 Wed Nov 17 18:30:21 1993  Kung Hsu  (kung@cirdan.cygnus.com)
5039
5040         * cplus-dem.c(cplus_demangle_opname): add the subject new function
5041         to support unified search of operator in class.
5042
5043 Wed Nov 10 09:47:22 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
5044
5045         gcc -Wall lint:
5046         * strtoul.c (strtoul): use "(digit = *s) != '\0'" not just
5047         "digit = *s" as condition in while loop.
5048
5049 Tue Nov  9 15:52:22 1993  Mark Eichin  (eichin@cygnus.com)
5050
5051         * Makefile.in: pass SHELL to recursive make
5052
5053 Thu Nov  4 12:09:26 1993  Per Bothner  (bothner@kalessin.cygnus.com)
5054
5055         * vfprintf.c, vprintf.c, vsprintf.c:  Make format arg
5056         be (const char*), for ANSI (and gcc w/fixproto) consistency.
5057
5058 Thu Nov  4 08:29:04 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
5059
5060         * config.table: Make *-*-hiux* use mh-hpux.
5061
5062 Fri Oct 22 07:53:15 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
5063
5064         * config.table: Add * to end of all OS names.
5065
5066 Tue Oct 19 17:12:01 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
5067
5068         * Makefile.in (lneeded-list): ensure that object file names are
5069           not duplicated, as multiple instances of the same object file in
5070           a library causes problems on some machines
5071
5072 Mon Oct 18 21:59:28 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
5073
5074         * strcasecmp.c, strncasecmp.c: Change u_char to unsigned char.
5075
5076 Fri Oct 15 22:17:11 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
5077
5078         * strncasecmp.c: new file, implements strncasecmp
5079         * strcasecmp.c: new file, implement strcasecmp
5080
5081         * Makefile.in (CFILES): list these two new source files
5082
5083         * functions.def: add strcasecmp and strncasecmp entries
5084
5085 Fri Oct 15 14:53:05 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
5086
5087         * strtoul.c (strtoul), strtol.c (strtol): Handle overflow
5088         according to ANSI C.
5089
5090 Thu Oct 14 16:34:19 1993  Kung Hsu  (kung@cirdan.cygnus.com)
5091
5092         * cplus-dem.c: add support of ARM global constructor/destructor,
5093         and 'G' for passing record or union in parameter.
5094
5095 Wed Oct 13 13:36:19 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
5096
5097         * Makefile.in: Fix comment to clarify that stuff in REQUIRED_OFILES
5098         should not be in functions.def.
5099
5100 Wed Oct 13 13:13:38 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
5101
5102         * functions.def: Removed xmalloc.  Stuff in REQUIRED_OFILES should
5103         not be in functions.def.
5104
5105 Mon Oct  4 18:26:39 1993  Kung Hsu  (kung@cirdan.cygnus.com)
5106
5107         * cplus-dem.c: change globl constructor/destructor to proper name
5108
5109 Tue Sep 28 18:11:07 1993  Kung Hsu  (kung@cirdan.cygnus.com)
5110
5111         * cplus-dem.c: fix bug in constructor/destructor
5112
5113 Tue Sep 28 16:20:49 1993  Kung Hsu  (kung@cirdan.cygnus.com)
5114
5115         * cplus-dem.c: support both old and new _vt$... vtbl mangled names
5116
5117 Fri Sep 24 19:07:16 1993  Jason Merrill  (jason@deneb.cygnus.com)
5118
5119         * cplus-dem.c: Fix demangle_template prototype
5120
5121 Fri Sep 24 17:32:55 1993  Kung Hsu  (kung@cirdan.cygnus.com)
5122
5123         * cplus-dem.c: fix template demangling
5124         * cplus-dem.c: fix const type demangling
5125         * cplus-dem.c: fix constructor/destructor, virtual table,
5126         qualifier, global constructor/destructor demangling
5127
5128 Wed Sep  1 23:13:11 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
5129
5130         * strsignal.c, strerror.c: Use fully-bracketed initializer to
5131         keep gcc -Wall happy.
5132
5133 Fri Aug 27 10:30:09 1993  Jason Merrill  (jason@deneb.cygnus.com)
5134
5135         * cplus-dem.c (do_type): Add CONSTS to make gcc happy with last
5136         patch.
5137
5138 Fri Aug 27 11:24:54 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
5139
5140         Patch from Paul Flinders:
5141         * cplus-dem.c (do_type): Deal with arrays.
5142
5143 Tue Aug 24 14:23:50 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
5144
5145         * cplus-dem.c (demangle_qualified: Deal with GNU format for more
5146         than 9 classes.
5147
5148 Wed Aug 18 19:50:29 1993  Jason Merrill  (jason@deneb.cygnus.com)
5149
5150         * Makefile.in (dummy.o): Redirect to /dev/null to avoid "variable
5151         not initialized" warnings under HP/UX
5152
5153 Sun Aug 15 20:42:40 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
5154
5155         * strerror.c: Move include of stdio.h after sys_errlist #define.
5156         Also remove NULL definition (stdio.h always defines NULL, so it
5157         never did anything but clutter up the code).
5158
5159 Sat Aug 14 14:21:49 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
5160
5161         * Makefile.in, functions.def: handle xmalloc.c
5162
5163         * xmalloc.c: provide xmalloc and xrealloc functions
5164
5165 Thu Aug 12 17:38:57 1993  David J. Mackenzie  (djm@thepub.cygnus.com)
5166
5167         * cplus-dem.c: Fix a comment.
5168
5169 Sat Aug  7 13:56:35 1993  David J. Mackenzie  (djm@thepub.cygnus.com)
5170
5171         * getopt1.c: Declare const the way getopt.c does.
5172
5173 Fri Aug  6 17:03:13 1993  David J. Mackenzie  (djm@thepub.cygnus.com)
5174
5175         * obstack.c, alloca.c: Update from FSF.
5176         * getopt.c, getopt1.c: Update to current FSF version, which
5177         doesn't use alloca.
5178
5179 Tue Jul 27 14:03:57 1993  Brendan Kehoe  (brendan@lisa.cygnus.com)
5180
5181         * Makefile.in (demangle): Add the target with a message saying
5182         where demangle went.
5183
5184 Mon Jul 26 15:49:54 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
5185
5186         * Makefile.in: Remove obsolete `demangle' target.
5187
5188 Thu Jul 22 08:31:01 1993  Fred Fish  (fnf@deneb.cygnus.com)
5189
5190         * cplus-dem.c (arm_special):  Apply patch from arg@lucid.com to
5191         avoid infinite loop on vtbl symbols with disambiguating "junk"
5192         tacked on the end.
5193
5194 Mon Jul 19 14:10:37 1993  david d `zoo' zuhn  (zoo@rtl.cygnus.com)
5195
5196         * strsignal.c: work around some systems losing definitions of
5197         sys_siglist
5198
5199         * config/mh-lynxos: this system has a losing definition of
5200         sys_siglist
5201
5202         * config.table: use mh-lynxos for *-*-lynxos
5203
5204 Mon Jul 19 17:08:52 1993  Ken Raeburn  (raeburn@rtl.cygnus.com)
5205
5206         * config.table: Add support for HPPA BSD hosts.
5207
5208         * config/mh-hpbsd: New file.
5209
5210 Mon Jul 12 18:00:40 1993  K. Richard Pixley  (rich@cygnus.com)
5211
5212         * Makefile.in (TAGS): make work when srcdir != objdir.
5213
5214 Sun Jun 27 15:35:31 1993  David J. Mackenzie  (djm@thepub.cygnus.com)
5215
5216         * cplus-dem.c (main): Add long options, including --help and
5217         --version.
5218         (usage): New function from code in main.
5219
5220 Tue Jun 22 11:37:38 1993  Per Bothner  (bothner@deneb.cygnus.com)
5221
5222         * config.table:  New shell scipt, sourced by both ./configure,in
5223         and ../xiberty/configure.in, to avoid maintainance lossages.
5224         * configure.in and ../xiberty/configure.in:  Use config.table.
5225
5226         * configure.in: Don't use mh-aix for AIX 3.2, only for 3.1.
5227         * configure.in: Map *-*-irix* (except irix4) to mh-sysv.
5228         * ../xiberty/configure.in:  Update from ./configure.in.
5229
5230 Tue Jun 15 17:05:31 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
5231
5232         * Makefile.in: remove parentdir support
5233
5234 Wed May 26 12:59:09 1993  Peter Schauer  (pes@regent.e-technik.tu-muenchen.de)
5235
5236         * cplus-dem.c (xrealloc):  Match definition with prototype.
5237
5238 Tue May 25 14:27:51 1993  Peter Schauer  (pes@regent.e-technik.tu-muenchen.de)
5239
5240         * cplus-dem.c (demangle_prefix):  Demangle cfront
5241         local variables as an extension to ARM demangling.
5242
5243 Fri May 21 09:53:57 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
5244
5245         * ieee-float.c: Don't require pointers to double to be aligned.
5246
5247 Tue May 18 17:12:10 1993  Fred Fish  (fnf@cygnus.com)
5248
5249         (merge changes from dlong@cse.ucsc.edu)
5250         * cplus-dem.c (consume_count):  Simplify.
5251         * cplus-dem.c (arm_pt, demangle_class_name):  New functions.
5252         * cplus-dem.c (various):  Calls to arm_pt, demangle_class_name.
5253
5254         * cplus-dem.c (xmalloc, xrealloc, strstr):  Make extern decls into
5255         full prototypes.
5256         * cplus-dem.c (free):  Add prototype.
5257         * cplus-dem.c (optable):  Fully bracketize initializer.
5258
5259 Fri May 14 17:13:05 1993  Per Bothner  (bothner@cygnus.com)
5260
5261         * cplus-dem.c:  Whether initial underscores are stripped
5262         depends on the external variable prepends_underscore
5263         (which is generated by the binutils Makefile).
5264
5265 Fri May 14 07:32:20 1993  Ken Raeburn  (raeburn@deneb.cygnus.com)
5266
5267         * cplus-dem.c (mop_up, arm_special): Remove some unused variables.
5268
5269 Tue May  4 20:31:59 1993  Fred Fish  (fnf@cygnus.com)
5270
5271         * cplus-dem.c (consume_count):  Return zero if arg does not
5272         start with digit, and don't consume any input.
5273
5274 Tue May  4 08:10:28 1993  Jim Kingdon  (kingdon@cygnus.com)
5275
5276         * Makefile.in (demangle): Use ${srcdir} not $^.
5277
5278         * strtod.c: New file, needed at least for BSD 4.3.
5279
5280 Sun May  2 11:30:42 1993  Fred Fish  (fnf@cygnus.com)
5281
5282         * strsignal.c (sys_siglist):  For ANSI compilations, type is
5283         "const char *const".  Also remove conditionalization on __STDC__
5284         since const is defined away for non-ANSI.
5285
5286 Wed Apr 28 19:29:55 1993  Ken Raeburn  (raeburn@deneb.cygnus.com)
5287
5288         * configure.in: Recognize *-*-hpux.
5289         * config/mh-hpux: New file.
5290
5291 Tue Apr 27 15:22:19 1993  Per Bothner  (bothner@cygnus.com)
5292
5293         * tmpnam.c:  Added ANSI tmpnam() function.
5294         * functions.def, Makefile.in:  Update accordingly.
5295
5296 Tue Apr 27 13:38:38 1993  Peter Schauer  (pes@regent.e-technik.tu-muenchen.de)
5297
5298         * cplus-dem.c (demangle_function_name): Get the demangling of
5299         stop__1A right.
5300
5301 Fri Apr 16 23:48:24 1993  Jim Kingdon  (kingdon at calvin)
5302
5303         * cplus-dem.c: Declare strstr return type.
5304
5305 Fri Mar 26 12:01:26 1993  Jim Kingdon  (kingdon@cygnus.com)
5306
5307         * strsignal.c: Add some AIX signals.
5308
5309 Thu Mar 25 15:17:23 1993  Ian Lance Taylor  (ian@cygnus.com)
5310
5311         * Makefile.in (MAKEOVERRIDES): Define to be empty.
5312
5313 Wed Mar 24 01:59:25 1993  david d `zoo' zuhn  (zoo at poseidon.cygnus.com)
5314
5315         * Makefile.in: add installcheck & dvi targets
5316
5317 Thu Mar 18 14:05:44 1993  Per Bothner  (bothner@rtl.cygnus.com)
5318
5319         * ieee-float.c:  New file, moved from ../gdb (since it is
5320         needed by ../opcode/m68k-dis.c).
5321
5322 Tue Mar  2 17:47:31 1993  Fred Fish  (fnf@cygnus.com)
5323
5324         * cplus-dem.c:  Replace all references to cfront with ARM.
5325
5326 Fri Feb 26 00:17:07 1993  Per Bothner  (bothner@rtl.cygnus.com)
5327
5328         * cplus-dem.c:  Fix main program (when compiled with -DMAIN)
5329         to be more useful as a filter.
5330
5331 Sat Feb 20 21:41:39 1993  Brendan Kehoe  (brendan@lisa.cygnus.com)
5332
5333         * Makefile.in (install_to_libdir, install_to_tooldir): Go into the
5334         destination directory before running $(RANLIB), in case that
5335         program tries to create a file in the current directory as part of
5336         its work.
5337
5338 Thu Feb 18 23:00:19 1993  John Gilmore  (gnu@cygnus.com)
5339
5340         * strsignal.c (sys_siglist):  Remove yet another *%^&%&$# "const"
5341         because BSD 4.4 lacks one.  Isn't this fun?
5342
5343 Thu Feb 18 11:24:25 1993  Fred Fish  (fnf@cygnus.com)
5344
5345         * cplus-dem.c (demangle_signature):  Set func_done after
5346         demangling a template.
5347         * cplus-dem.c (demangle_template):  Fix several small bugs
5348         in demangling GNU style templates.
5349         * cplus-dem.c (demangle_prefix):  Fix for templates in GNU
5350         style constructors.
5351         * cplus-dem.c (gnu_special):  Fix for templates in GNU style
5352         static data members.
5353
5354 Tue Feb 16 17:28:35 1993  Fred Fish  (fnf@cygnus.com)
5355
5356         * cplus-dem.c (demangle_signature):  Modify to include type
5357         modifiers like static and const in remembered types.
5358
5359 Thu Feb 11 22:20:47 1993  Fred Fish  (fnf@cygnus.com)
5360
5361         * cplus-dem.c (demangled_qualified):  Add new parameter that tells
5362         whether to prepend or append the qualifiers.
5363         * cplus-dem.c (string_prepends):  Used now, remove #if 0.
5364         * cplus-dem.c (demangle_signature):  Call demangle_qualified
5365         with prepending.
5366         * cplus-dem.c (gnu_special):  Recognize static data members that
5367         use qualified names.
5368         * cplus-dem.c (demangle_qualified):  Accumulate qualifiers in a
5369         temporary buffer and the prepend or append them to the result,
5370         as specified by the new "append" flag.
5371         * cplus-dem.c (do_type):  Call demangled_qualified with
5372         appending.
5373
5374 Mon Dec 28 10:47:19 1992  Ken Raeburn  (raeburn@cygnus.com)
5375
5376         * strsignal.c (signal_table): Now const.
5377         (init_signal_tables): Variable eip now points to const.
5378
5379         * strerror.c (error_table): Now const.
5380         (init_error_tables): Variable eip now points to const.
5381
5382 Tue Dec 15 15:36:50 1992  Per Bothner  (bothner@cygnus.com)
5383
5384         * memchr.c (memchr):  New (ANSI standard) function.
5385         * Makefile.in, functions.def:  Added memchr.
5386         * Makefile.in (AR_FLAGS): Use rc instad of non-standard cq.
5387
5388 Wed Dec  2 22:49:10 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
5389
5390         * getopt.c: remove use of USG around <alloca.h>, which never meant
5391         anything anyway
5392
5393         * config/mh-{aix,apollo68,ncr3000,sysv,sysv4}: removed definitions
5394         of USG and USGr4
5395
5396 Thu Nov 19 03:09:33 1992  Brendan Kehoe  (brendan@lisa.cygnus.com)
5397
5398         * cplus-dem.c (demangle_fund_type): Recognize `w', a wide character;
5399         it's now a type according to the ANSI X3J16 working paper; output
5400         "wchar_t" for it.
5401         (demangle_template): Accept `w' as an integral type.
5402         (xmalloc, xrealloc): Use `char *', not `PTR'.  Cast calls to their
5403         counterparts malloc and realloc to `char *'.
5404         (main): Exit with a 0 status.
5405         * Makefile.in (demangle): Don't expect the user to define
5406         DEMANGLE, instead force to be cplus-dem.c.  Look in $(srcdir)/../include
5407         for demangle.h.  Pass it any HDEFINES or XTRAFLAGS.
5408
5409 Wed Nov 18 18:56:20 1992  John Gilmore  (gnu@cygnus.com)
5410
5411         * Makefile.in (AR_FLAGS):  Avoid verbosity.
5412         * config/mh-sysv4:  Remove AR_FLAGS override, use INSTALL=cp,
5413         replace USGr4 with HAVE_SYSCONF.
5414         * config/mh-solaris:  Remove; mh-sysv4 works now.
5415         * getpagesize.c:  Replace USGr4 with HAVE_SYSCONF.
5416         * configure.in:  Simplify host matching table, remove separate
5417         solaris config file.
5418
5419 Sun Nov 15 09:35:16 1992  Fred Fish  (fnf@cygnus.com)
5420
5421         * configure.in (i[34]86-*-solaris2*):  Add, use mh-sysv4.
5422
5423 Tue Nov  3 21:27:03 1992  Brendan Kehoe  (brendan@cygnus.com)
5424
5425         * cplus-dem.c (xmalloc, xrealloc): Add decls.
5426         (remember_type): Don't cast xmalloc.
5427         (string_need): Likewise; don't cast xrealloc either.
5428
5429 Fri Oct 23 08:52:01 1992  Ian Lance Taylor  (ian@cygnus.com)
5430
5431         * Makefile.in, functions.defs, rename.c: added simple
5432         implementation of rename, since some binutils programs use it.
5433
5434 Thu Oct 15 15:18:22 1992  Per Bothner  (bothner@cygnus.com)
5435
5436         * strsignal.c:  Add appropriate 'const' to sys_siglist
5437         extern declaration (if __STDC__).  (Needed for Linux.)
5438         * strsignal.c (strsignal): Add cast to remove const-ness.
5439
5440 Fri Oct  9 03:22:55 1992  John Gilmore  (gnu@cygnus.com)
5441
5442         * Makefile.in (needed.awk, needed2.awk):  Remove erroneous \'s
5443         before "'s, diagnosed by BSD 4.4 awk.
5444
5445 Thu Oct  8 15:25:12 1992  Ian Lance Taylor  (ian@cygnus.com)
5446
5447         * Makefile.in: create config.h and needed-list through $(CONFIG_H)
5448         and $(NEEDED_LIST), to give some hooks for xiberty.
5449
5450 Thu Oct  1 23:31:42 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
5451
5452         * configure.in: use cpu-vendor-triple instead of nested cases
5453
5454 Wed Sep 30 11:26:59 1992  Per Bothner  (bothner@rtl.cygnus.com)
5455
5456         * Makefile.in, argv.c, basename.c, bcmp.c, bcopy.c, bzero.c,
5457         concat.c, cplus-dem.c, fdmatch.c, getcwd.c, getopt.c, getopt1.c,
5458         getpagesize.c, insque.c, memcmp.c, memcpy.c, memmove.c, memset.c,
5459         obstack.c, sigsetmask.c, spaces.c, strchr.c, strerror.c,
5460         strrchr.c, strsignal.c, strstr.c, vfork.c, vsprintf.c:
5461         Convert from using GPL to LGPL.
5462
5463 Sat Sep 26 04:01:30 1992  John Gilmore  (gnu@cygnus.com)
5464
5465         * Makefile.in (errors):  Leave dummy.o and dummy around so that
5466         we can see how the needed list was generated (it's sometimes wrong).
5467         (mostlyclean):  Remove them.
5468
5469 Mon Sep 21 14:50:42 1992  Ian Lance Taylor  (ian@cygnus.com)
5470
5471         * getcwd.c: supply a default if MAXPATHLEN is not defined.
5472
5473         * config/mh-irix4: set EXTRA_OFILES to alloca.o, from WRS.
5474
5475 Wed Sep  9 12:41:48 1992  Ian Lance Taylor  (ian@cygnus.com)
5476
5477         * Makefile.in: Use XTRAFLAGS when compiling, so that xiberty works
5478         when cross-compiling.
5479
5480 Thu Sep  3 13:29:39 1992  K. Richard Pixley  (rich@sendai.cygnus.com)
5481
5482         * cplus-dem.c: (demangle_prefix): reduction in strength of strstr
5483           as a time optimization.
5484
5485         * cplus-dem.c (cplus_demangle): remove strpbrk test.  Appears to
5486           be more expensive than simply demangling.
5487
5488         * cplus-dem.c (cplus_match): new function.
5489
5490 Tue Sep  1 15:24:04 1992  Per Bothner  (bothner@rtl.cygnus.com)
5491
5492         * cplus-dem.c:  #include <stdio.h>, to define NULL.
5493         Define current_demangling_style.
5494
5495 Sun Aug 30 17:58:19 1992  Per Bothner  (bothner@rtl.cygnus.com)
5496
5497         * cplus-dem.c:  New file, moved from ../gdb.
5498         * cplus-dem.c (set_cplus_marker_for_demangling):  New exported
5499         function, to avoid compiling in target-dependency for CPLUS_MARKER.
5500         * cplus-dem.c (cplus_demangle):  Allow demangling style option
5501         to be passed as a parameter, but using the global variable
5502         current_demangling_style as a default.
5503         * Makefile.in:  Update for cplus-dem.c
5504
5505 Sat Aug 29 10:44:09 1992  Fred Fish  (fnf@cygnus.com)
5506
5507         * obstack.c:  Merge in comment changes from FSF version.  Now
5508         matches the FSF version exactly.
5509
5510 Fri Aug 28 18:39:08 1992  John Gilmore  (gnu@cygnus.com)
5511
5512         * obstack.c (CALL_FREEFUN):  Can't use ?: with void values (at
5513         least on losing DECstations!); use if-then-else instead.
5514
5515 Wed Aug 19 14:40:34 1992  Ian Lance Taylor  (ian@cygnus.com)
5516
5517         * Makefile.in: always create installation directories.
5518
5519 Mon Aug 10 17:33:40 1992  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
5520
5521        * Makefile.in: clean up definition of CFILES, more comments
5522
5523 Sat Aug  8 23:10:59 1992  Fred Fish  (fnf@cygnus.com)
5524
5525         * getopt.c (my_index):  Make first arg const to match strchr,
5526         which it sometimes is remapped to.
5527
5528 Sat Aug  1 13:48:50 1992  Fred Fish  (fnf@cygnus.com)
5529
5530         * obstack.c (DEFAULT_ALIGNMENT):  Update to match FSF version.
5531         * obstack.c (_obstack_begin):  Initialize use_extra_arg.
5532         * obstack.c (_obstack_begin_1):  New, from FSF version.
5533
5534 Mon Jul 20 21:07:58 1992  Fred Fish  (fnf@cygnus.com)
5535
5536         * obstack.c (CALL_CHECKFUN, CALL_FREEFUN):  Use use_extra_arg and
5537         extra_arg.
5538         * obstack.c (_obstack_begin):  Remove area_id and flags arguments
5539         (previously added for mmalloc support, interface has changed).
5540         Also convert flags usage to use use_extra_arg and maybe_empty_object.
5541
5542 Fri Jul 10 00:41:53 1992  Fred Fish  (fnf@cygnus.com)
5543
5544         * argv.c:  Move expandargv inline and eliminate static variables.
5545         Rewrite to always allocate in powers of two.  Fix to return an
5546         argv with a single null string arg if passed a null string.
5547
5548 Fri Jul  3 20:27:29 1992  Fred Fish  (fnf@cygnus.com)
5549
5550         * random.c, sigsetmask.c, strerror.c, strsignal.c:  Remove
5551         "(void)" casts from function calls where the return value is
5552         ignored, in accordance with GNU coding standards.
5553
5554 Mon Jun 29 10:54:19 1992  Fred Fish  (fnf at cygnus.com)
5555
5556         * bcopy.c, strerror.c, strsignal.c:  Lint.
5557
5558 Thu Jun 25 09:18:41 1992  K. Richard Pixley  (rich@rtl.cygnus.com)
5559
5560         * getopt.c: merge changes from make.
5561
5562 Thu Jun 25 04:43:22 1992  John Gilmore  (gnu at cygnus.com)
5563
5564         * alloca.c:  Incorporate fixes from gdb/alloca.c.
5565         FIXME:  Eventually move gdb's alloca configuration files here,
5566         and remove gdb/alloca.c and its Makefile.in support.
5567
5568 Tue Jun 23 21:56:30 1992  Fred Fish  (fnf@cygnus.com)
5569
5570         * dummy.c:  Define NOTHING to /*nothing*/, change return type
5571         of main to int and return zero.
5572         * functions.def:  Supply NOTHING as the fourth arg to macros
5573         that don't have an explicit arg, to satisfy picky preprocessors.
5574
5575 Wed Jun 17 18:13:58 1992  Per Bothner  (bothner@rtl.cygnus.com)
5576
5577         * Makefile.in:  Clean up *clean rules, as per standards.texi.
5578
5579 Tue Jun 16 16:11:59 1992  K. Richard Pixley  (rich@rtl.cygnus.com)
5580
5581         * getopt.c, getopt1.c: merged largely gratuitous, mostly
5582           whitespace diffs from other prep distributions.
5583
5584 Mon Jun 15 12:25:46 1992  Fred Fish  (fnf@cygnus.com)
5585
5586         * config/mh-ncr3000 (INSTALL):  Don't use /usr/ucb/install,
5587         it is broken on ncr 3000's.
5588
5589 Mon Jun 15 01:03:26 1992  John Gilmore  (gnu at cygnus.com)
5590
5591         * sigsetmask.c:  Rewrite.  Old one was very confused about its
5592         arguments and result.  New one can't do much, but at least knows
5593         what it can't do, and it's good enough for GDB's use.
5594
5595 Sun Jun 14 15:17:40 1992  Stu Grossman  (grossman at cygnus.com)
5596
5597         * functions.def:  Use proper prototype for strtoul.
5598
5599 Fri Jun 12 19:22:40 1992  John Gilmore  (gnu at cygnus.com)
5600
5601         * Makefile.in:  Add random.c.
5602         * config/mh-*:  Use "true" rather than "echo >/dev/null" for ranlib.
5603         * configure.in:  update solaris2 config.
5604
5605 Wed Jun 10 16:31:29 1992  Fred Fish  (fnf@cygnus.com)
5606
5607         * random.c:  Add for random() and srandom().
5608         * functions.def:  Add random
5609
5610 Tue Jun  9 17:27:18 1992  Fred Fish  (fnf@cygnus.com)
5611
5612         * config/{mh-ncr3000, mh-sysv4}:  Add definition for INSTALL
5613         using /usr/ucb/install.
5614
5615 Mon Jun  1 13:20:17 1992  Per Bothner  (bothner@rtl.cygnus.com)
5616
5617         * strerror.c:  Kludge to guard against a conflict with
5618         possible declaration of sys_errlist in errno.h.
5619
5620 Sun May 31 15:07:47 1992  Mark Eichin  (eichin at cygnus.com)
5621
5622         * configure.in, config/mh-solaris: add solaris2 config support.
5623
5624 Fri May 29 17:23:23 1992  Per Bothner  (bothner@rtl.cygnus.com)
5625
5626         * sigsetmask.c:  #ifdef out sigsetmask if SIG_SETMASK
5627         is not defined (should be defined in signal.h, says Posix.).
5628
5629 Mon May 18 17:35:04 1992  K. Richard Pixley  (rich@cygnus.com)
5630
5631         * getopt.c: merged changes from make-3.62.11.
5632
5633 Fri May  8 14:53:07 1992  K. Richard Pixley  (rich@cygnus.com)
5634
5635         * getopt.c: merged changes from bison-1.18.
5636
5637 Tue May  5 11:51:40 1992  Per Bothner  (bothner@rtl.cygnus.com)
5638
5639         * Makefile.in:  Don't have $(EXTRA_OFILES) depend on config.h,
5640         since that introduces a circular dependency.
5641         ($(EXTRA_OFILES) are used to build config.h.)
5642
5643         * strtoul.c:  Fixes to handle non-decimal bases better.
5644
5645 Wed Apr 22 09:27:51 1992  Fred Fish  (fnf@cygnus.com)
5646
5647         * config/mh-ncr3000:  Replace MINUS_G with CFLAGS.
5648         * Makefile.dos:  Finish MINUS_G eradication.
5649         * Makefile.in (CFILES):  Add strsignal.c.
5650         * Makefile.in (REQUIRED_OFILES):  Add strerror.o strsignal.o
5651         * Makefile.in (needed-list):  Split creation of errors file to
5652         separate make target.
5653         * Makefile.in (config.h, needed2.awk, errors):  New targets.
5654         * Makefile.in (clean):  Split to multiple lines, add needed2.awk
5655         and config.h.
5656         * dummy.c (DEFFUNC, DEFVAR):  Add defines and undefs.
5657         * functions.def (strerror):  Remove from optional list.
5658         * functions.def (sys_nerr, sys_errlist, sys_siglist):  DEFVAR's
5659         * functions.def (strerror, psignal):  DEFFUNC's
5660         * strerror.c:  Rewrite from scratch to use sys_errlist only if
5661         available, add errno_max(), add strerrno(), add strtoerrno(),
5662         add test driver.
5663         * strsignal.c:  New file, signal equivalent to strerror.c.
5664         Uses sys_siglist if available, defines signo_max(), strsignal(),
5665         strsigno(), strtosigno(), psignal(), and test driver.
5666
5667 Mon Apr 20 20:49:32 1992  K. Richard Pixley  (rich@cygnus.com)
5668
5669         * Makefile.in: do not print recursion line.
5670
5671         * Makefile.in: allow CFLAGS to be passed in from command line.
5672           Removed MINUS_G.  Default CFLAGS to -g.
5673
5674 Mon Apr 20 12:57:46 1992  Per Bothner  (bothner@rtl.cygnus.com)
5675
5676         * config/mh-aix:  New.  EXTRA_OFILES lists copysign.o,
5677         so libg++ users don't have to be inconvenienced by a
5678         libc.a bug (libc.a needs copysign, but doesn't define it!).
5679         * configure.in:  Use config/mh-aix.
5680         * strtoul.c:  Handle '-' as required by ANSI.
5681         Clean up radix handling.
5682         * strstr.c:  Fix buggy algorithm.
5683         * Makefile.in:  Change so that ${EXTRA_OFILES} is
5684         appended to needed-list (which is used by libg++).
5685
5686 Fri Apr 10 22:51:41 1992  Fred Fish  (fnf@cygnus.com)
5687
5688         * configure.in:  Recognize new ncr3000 config.
5689         * config/mh-ncr3000:  New config file.
5690
5691 Wed Apr  1 23:31:43 1992  John Gilmore  (gnu at cygnus.com)
5692
5693         * argv.c, dummy.c:  Lint.
5694
5695 Tue Mar 31 18:46:44 1992  Fred Fish  (fnf@cygnus.com)
5696
5697         * config/mh-sysv4:  New config file.
5698         * configure.in (host_makefile_frag):  Set to config/mh-sysv4 for
5699         host_os == sysv4.
5700         * getpagesize.c:  For SVR4, use sysconf(_SC_PAGESIZE) to get
5701         pagesize.
5702
5703 Sun Mar 29 12:26:42 1992  John Gilmore  (gnu at cygnus.com)
5704
5705         * getopt.c:  Lint.
5706
5707 Fri Mar 27 08:32:55 1992  Fred Fish  (fnf@cygnus.com)
5708
5709         * functions.def (alloca):  Fix return type and args to avoid
5710         type clash with gcc's builtin alloca.
5711
5712 Tue Mar 24 23:33:42 1992  K. Richard Pixley  (rich@cygnus.com)
5713
5714         * configure.in, config/mh-irix4: irix4 support.
5715
5716         * Makefile.in, functions.def, alloca.c: added alloca.
5717
5718 Tue Mar 24 17:34:46 1992  Stu Grossman  (grossman at cygnus.com)
5719
5720         * obstack.c (CALL_FREEFUN):  Make it compile on DECstations.
5721
5722 Thu Mar 19 13:57:42 1992  Fred Fish  (fnf@cygnus.com)
5723
5724         * argv.c:  Fix various external function definitions to be
5725         correct in an ANSI compilation environment.
5726
5727 Sat Mar 14 17:28:17 1992  Fred Fish  (fnf@cygnus.com)
5728
5729         * obstack.c:  Changes to support calling mmalloc functions,
5730         which take an additional argument over malloc functions.
5731
5732 Fri Mar  6 22:01:10 1992  K. Richard Pixley  (rich@cygnus.com)
5733
5734         * added check target.
5735
5736 Thu Feb 27 22:19:39 1992  Per Bothner  (bothner@cygnus.com)
5737
5738         * argv.c:  #include alloca-conf.h (needed by AIX).
5739
5740 Wed Feb 26 18:04:40 1992  K. Richard Pixley  (rich@cygnus.com)
5741
5742         * Makefile.in, configure.in: removed traces of namesubdir,
5743           -subdirs, $(subdir), $(unsubdir), some rcs triggers.  Forced
5744           copyrights to '92, changed some from Cygnus to FSF.
5745
5746 Sat Feb 22 01:09:21 1992  Stu Grossman  (grossman at cygnus.com)
5747
5748         * argv.c:  Check in Fred's version which fixes problems with
5749         alloca().
5750
5751 Fri Feb  7 21:46:08 1992  Stu Grossman  (grossman at cygnus.com)
5752
5753         * makefile.dos:  Remove NUL to keep patch from failing.
5754
5755 Thu Jan 30 22:48:41 1992  Stu Grossman  (grossman at cygnus.com)
5756
5757         * getopt.c (_getopt_internal):  Fix usage of enum has_arg.
5758
5759 Mon Jan 20 18:53:23 1992  Stu Grossman  (grossman at cygnus.com)
5760
5761         * getopt.c, getopt1.c, ../include/getopt.h:  Get latest versions.
5762
5763 Sat Jan 18 16:53:01 1992  Fred Fish  (fnf at cygnus.com)
5764
5765         * argv.c:  New file to build and destroy standard argument
5766         vectors from a command string.
5767
5768         * Makefile.in:  Add argv.c and argv.o to appropriate macros.
5769
5770 Fri Dec 20 12:12:57 1991  Fred Fish  (fnf at cygnus.com)
5771
5772         * configure.in:  Change svr4 references to sysv4.
5773
5774         * rindex.c:  Declare return type of externally used function
5775         strrchr().
5776
5777 Thu Dec 19 18:35:03 1991  John Gilmore  (gnu at cygnus.com)
5778
5779         * Makefile.in:  Remove "***" in normal output, since Make produces
5780         this on errors, and it's convenient to search for.
5781
5782 Tue Dec 17 23:21:30 1991  Per Bothner  (bothner at cygnus.com)
5783
5784         * memcmp.c, memcpy.c, memmove.c, memset.c, strchr.c, strrchr.c:
5785         New ANSI functions.  The old non-ANSI functions (such as bcopy)
5786         should be avoided.
5787         * bcopy.c:  Fix to correctly handle overlapping regions.
5788         * index.c, rindex.c:  Re-write in terms of strchr() and strrchr().
5789         * functions.def:  Add the new functions.
5790         * functions.def:  Add 4th parameter to DEF macro,
5791         an ansidecl.h-style prototype.
5792         * dummy.c:  Use expanded DEF macro to create a dummy function
5793         call, with correct parameter types.  (This avoids some
5794         complaints from gcc about predefined builtins.)
5795
5796         Move the functionality of config/mh-default into Makefile.in.
5797         This avoid duplication, and simplifies things slightly.
5798         * Makefile.in:  Tweak so we don't need config/mh-default.
5799         * README:  Update.
5800         * configure.in:  No longer need config/mh-default.
5801         * config/mh-default:  Deleted.
5802         * config/mh-sysv:  Remove lines copied from old mh-default.
5803
5804 Tue Dec 17 05:46:46 1991  John Gilmore  (gnu at cygnus.com)
5805
5806         * fdmatch.c (fdmatch):  Don't compare st_rdev, which is for
5807         'mknod' device numbers.
5808
5809 Mon Dec 16 12:25:34 1991  Fred Fish  (fnf at cygnus.com)
5810
5811         * fdmatch.c, Makefile.in:  Add new function that takes two
5812         open file descriptors and returns nonzero if they refer to
5813         the same file, zero otherwise.  (used in gdb)
5814
5815 Wed Dec 11 17:40:39 1991  Steve Chamberlain  (sac at rtl.cygnus.com)
5816         From DJ:
5817         * msdos.c: stub functions for dos.
5818         * makefile.dos, configdj.bat: new.
5819         * getopt.c: Don't include alloca-conf.h in a GO32 world.
5820
5821
5822 Tue Dec 10 04:14:49 1991  K. Richard Pixley  (rich at rtl.cygnus.com)
5823
5824         * Makefile.in: infodir belongs in datadir.
5825
5826 Fri Dec  6 23:26:45 1991  K. Richard Pixley  (rich at rtl.cygnus.com)
5827
5828         * Makefile.in: remove spaces following hyphens because bsd make
5829           can't cope.  added standards.text support.  install using
5830           INSTALL_DATA.
5831
5832         * configure.in: remove commontargets as it is no longer a
5833           recognized hook.
5834
5835 Thu Dec  5 22:46:46 1991  K. Richard Pixley  (rich at rtl.cygnus.com)
5836
5837         * Makefile.in: idestdir and ddestdir go away.  Added copyrights
5838           and shift gpl to v2.  Added ChangeLog if it didn't exist. docdir
5839           and mandir now keyed off datadir by default.
5840
5841 Fri Nov 22 19:15:29 1991  John Gilmore  (gnu at cygnus.com)
5842
5843         * Makefile.in:  find-needed.awk does not fit in 14 chars.
5844
5845         * Makefile.in:  Suppress error checking when compiling the test
5846         program, because Ultrix make/sh aborts there due to a bug.
5847
5848 Fri Nov 22 12:23:17 1991  Per Bothner  (bothner at cygnus.com)
5849
5850         * Makefile.in:  Re-did how EXTRA_OFILES is used to be more useful.
5851         * README:  Explained how the auto-configuration works,
5852         and how to add new files and/or configurations.
5853
5854 Fri Nov 22 09:45:23 1991  John Gilmore  (gnu at cygnus.com)
5855
5856         * strtoul.c:  Avoid defining ULONG_MAX if already defined;
5857         cast a const char * to char * for pedants.
5858
5859         * getopt.c:  Only define "const" after local include files get to,
5860         and only if they haven't defined it.
5861
5862 Thu Nov 21 16:58:53 1991  John Gilmore  (gnu at cygnus.com)
5863
5864         * getcwd.c (remove getwd.c): GNU code should call getcwd().  We
5865         emulate it with getwd() if available.  This avoids callers having
5866         to find a MAXPATHLEN or PATH_MAX value from somewhere.
5867         * Makefile.in, functions.def:  getwd->getcwd.
5868         * configure.in:  Use generic case for every system.
5869         * config/mh-{delta88,mach,rs6000,svr4}:  Remove.
5870         * config/mh-sysv:  Use default handling, just add -DUSG.
5871
5872 Thu Nov 14 10:58:05 1991  Per Bothner  (bothner at cygnus.com)
5873
5874         * Makefile.in, config/mh-default: Re-do make magic
5875         so that for the default ("automatic") mode we only
5876         compile the files we actually need.  Do this using
5877         a recursive make:  The top-level generates the list
5878         of needed files (loosely, the ones missing in libc),
5879         and then passes that list to the recursive make.
5880         * config/mh-mach:  Remove obsolete STRERROR-{C,O} macros.
5881
5882 Tue Nov 12 19:10:57 1991  John Gilmore  (gnu at cygnus.com)
5883
5884         RS/6000 host support (grumble).
5885
5886         * configure.in:  Build alloca-conf.h file from alloca-norm.h
5887         (everything else) or alloca-botch.h (rs/6000).
5888         * Makefile.in:  Include . on the include path.
5889         * getopt.c:  Use alloca-conf.h.
5890         * alloca-norm.h:  How to declare alloca on reasonable machines.
5891         * alloca-botch.h: How to declare alloca on braindead machines.
5892
5893 Tue Nov 12 09:21:48 1991  Fred Fish  (fnf at cygnus.com)
5894
5895         * concat.c :  New file, like concat() in gdb but can take a
5896         variable number of arguments rather than fixed at 3 args.  For
5897         now, client applications must supply an xmalloc(), which is a
5898         front end function to malloc() that deals with out-of-memory
5899         conditions.
5900
5901         * Makefile.in:  Add concat.c and concat.o to appropriate macros.
5902
5903 Sat Nov  9 13:29:59 1991  Fred Fish  (fnf at cygnus.com)
5904
5905         * config/mh-svr4:  Add sigsetmask to list of required functions.
5906
5907 Sun Nov  3 11:57:56 1991  Per Bothner  (bothner at cygnus.com)
5908
5909         * vsprintf.c:  New file.
5910         * functions.def, Makefile.in:  Add vsprintf.
5911
5912 Sun Oct 27 16:31:22 1991  John Gilmore  (gnu at cygnus.com)
5913
5914         * configure.in, config/mh-rs6000:  Add rs/6000 host support.
5915         * Makefile.in:  Compile with debug info.
5916
5917 Fri Oct 25 17:01:12 1991  Per Bothner  (bothner at cygnus.com)
5918
5919         * Makefile.in, configure.in, and new files: dummy.c, functions.def,
5920         config/mf-default:  Added a default configuration mode,
5921         which includes into libiberty.a functions that are "missing" in libc.
5922         * strdup.c, vprintf.c, vfprintf.c: New files.
5923
5924 Thu Oct 24 02:29:26 1991  Fred Fish  (fnf at cygnus.com)
5925
5926         * config/hmake-svr4: New file.
5927
5928         * config/hmake-sysv: Add HOST_CFILES and HOST_OFILES.
5929
5930         * basename.c, bcmp.c, bcopy.c, bzero.c, getpagesize.c getwd.c,
5931         index.c, insque.c, rindex.c, spaces.c, strstr.c, vfork.c: New
5932         files containing either portable C versions or emulations using
5933         native library calls.
5934
5935         * strerror.c:  Add copyright, internal documentation, etc.
5936
5937         * strtol.c:  Replace hardwired hex constants with some more
5938         portable macros.  Remove illegal (according to gcc) cast.
5939
5940         * strtoul.c: Replace hardwired hex constant with more portable
5941         macro.
5942
5943         * Makefile.in: Move TARGETLIB and CFLAGS where makefile fragments
5944         can override them.  Add new source and object file names to CFILES
5945         and OFILES respectively.
5946
5947         * configure.in: Add support for SVR4 makefile fragments.
5948
5949 Tue Oct 22 19:00:23 1991  Steve Chamberlain  (steve at cygnus.com)
5950
5951         * Makefile.in: Move RANLIB, AR and AR_FLAGS to where they can be
5952         over-ridden by config/hmake-*
5953         * configure.in: added m88kcvs to sysv list
5954
5955 Fri Oct  4 01:29:08 1991  John Gilmore  (gnu at cygnus.com)
5956
5957         * Makefile.in:  Most hosts need strerror, but one or two don't,
5958         and they override these definitions in the host-dependent makefile
5959         fragment.
5960         * config/hmake-mach:  The odd man out on strerror -- it's supplied.
5961         * strerror.c:  New file.
5962
5963         * strtol.c, strtoul.c:  Add strtol to libiberty, since Mach lacks
5964         it and bfd uses it.
5965         * configure.in, Makefile.in, config/hmake-mach:  Only configure
5966         strtol & strotoul in on Mach.
5967
5968 Tue Sep  3 06:36:23 1991  John Gilmore  (gnu at cygint.cygnus.com)
5969
5970         * obstack.c:  Merge with latest FSF version.
5971
5972 \f
5973 Local Variables:
5974 version-control: never
5975 End: