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