]> gcc.gnu.org Git - gcc.git/blob - libio/ChangeLog
Insert libio rewrite and its various changes from devo.
[gcc.git] / libio / ChangeLog
1 Fri Sep 5 09:58:43 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
2
3 * Makefile.in (iostream.list): Instead of adding stdio.list, add
4 STDIO_WRAP_OBJECTS.
5 (iostream.list): Lose dependency on stmp-stdio, not necessary for
6 our stuff. The stdio stuff is present here just for uniformity
7 with glibc.
8
9 Thu Sep 4 17:26:22 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
10
11 * parsestream.cc (general_parsebuf): Cast return of malloc to char*.
12
13 1997-09-04 16:11 Ulrich Drepper <drepper@cygnus.com>
14
15 Change compared to version initially intended to in:
16 * strops.c (_IO_str_count): Still use _IO_write_ptr, not
17 _IO_write_end, for now.
18
19 * iofeof.c, ioferror.c, iofflush_u.c, iogetc.c, ioputc.c, peekc.c,
20 stdio-lock.h: New files.
21
22 * include: New dir.
23 * include/empty.h: New header.
24
25 * filedoalloc.c: Update and reformat copyright.
26 Don't use DEFUN.
27 Use __set_errno throughout the code to support multi-threaded
28 programs.
29 Correct layout to follow the Coding Standard.
30 Add casts to prevent warnings.
31 * fileops.c: Likewise.
32 * genops.c: Likewise.
33 * iofclose.c: Likewise.
34 * iofdopen.c: Likewise.
35 * iofflush.c: Likewise.
36 * iofgetpos.c: Likewise.
37 * iofgets.c: Likewise.
38 * iofopen.c: Likewise.
39 * iofprintf.c: Likewise.
40 * iofputs.c: Likewise.
41 * iofread.c: Likewise.
42 * iofsetpos.c: Likewise.
43 * ioftell.c: Likewise.
44 * iofwrite.c: Likewise.
45 * iogetdelim.c: Likewise.
46 * iogetline.c: Likewise.
47 * iogets.c: Likewise.
48 * iopadn.c: Likewise.
49 * iopopen.c: Likewise.
50 * ioputs.c: Likewise.
51 * ioseekoff.c: Likewise.
52 * iosetbuffer.c: Likewise.
53 * iosetvbuf.c: Likewise.
54 * iosprintf.c: Likewise.
55 * ioungetc.c: Likewise.
56 * iovsprintf.c: Likewise.
57 * iovsscanf.c: Likewise.
58 * libio.h: Likewise.
59 * libioP.h: Likewise.
60 * stdfiles.c: Likewise.
61 * strfile.h: Likewise.
62 * strops.c: Likewise.
63
64 * Makefile.in (IO_OBJECTS): Add peekc.o, iogetc.o, ioputc.o,
65 iofeof.o, and ioferror.o.
66 (iostream.list): Depend upon stmp-stdio. Add the entries
67 from stdio.list to iostream.list.
68 (stmp-stdio): New name for what was the stdio/stdio.list rule.
69 All it now does is cd down into stdio and build stdio.list.
70
71 * configure.in (ALL): Add libiostream.a.
72
73 * libio.h [_IO_MTSFE_IO]: Include header declaring locking code.
74 Otherwise define opaque _IO_lock_t.
75 Define _IO_cookie_file.
76 Rename _IO_getc to _IO_getc_unlocked, _IO_peekc to _IO_peekc_unlocked,
77 _IO_putc to _IO_putc_unlocked, _IO_feof to _IO_feof_unclocked, and
78 _IO_ferror to _IO_ferror_unlocked.
79 Add prototypes for _IO_getc, _IO_putc, _IO_feof, _IO_ferror,
80 and _IO_peekc_locked.
81 Add declarations for _IO_flockfile, _IO_funlockfile, and
82 _IO_ftrylockfile. If !_IO_MTSAFE_IO define _IO_flockfile,
83 _IO_funlockfile, _IO_ftrylockfile, _IO_cleanup_region_start, and
84 _IO_cleanup_region_end as empty macros.
85
86 * libioP.h: Change type of finish function to take an additional int
87 argument and change declaration of finish functions.
88 Add prototypes for _IO_seekoff and _IO_seekpos.
89 If _G_HAVE_MMAP is defined use stream buffers allocated with mmap.
90 Redefine FREE_BUF and ALLOC_BUF macros to help in both situations.
91 (FILEBUF_LITERAL): If we compile for a thread-safe library also
92 initialize lock member.
93
94 * filedoalloc.c: Take care for systems already defining _POSIX_SOURCE.
95 Keep name space clean on systems which require this.
96 (_IO_file_doallocate): Adopt ALLOC_BUF call for changed semantic.
97
98 * fileops.c: Keep name space clean on systems which require this.
99 (_IO_file_attach): Don't fail if seek failed because it's used on a
100 pipe.
101 (_IO_file_underflow): Update buffer pointers before calling `read'
102 since the `read' might not return anymore.
103 (_IO_file_overflow): If stream allows no writes set error flag.
104 (_IO_seekoff): Make sure that after flushing the file pointer in
105 the underlying file is exact.
106 (_IO_file_read): Don't restart `read' syscall if it return EINTR.
107 This violates POSIX.
108 (_IO_file_write): Likewise for `write'.
109 (_IO_cleanup): Install as exit handler in glibc.
110
111 * genops.c (_IO_setb): Correctly use FREE_BUF.
112 (_IO_default_doallocate): Correctly use ALLOC_BUF.
113 (_IO_init): Initialize lock in stream structure.
114 (_IO_default_finish): Destroy lock.
115 (_IO_get_column): Don't compile since it's not needed.
116 (_IO_nobackup_default): Likewise.
117
118 * iopopen.c: Take care for systems already defining _POSIX_SOURCE.
119 Correct _IO_fork and _IO_dup2 prototypes.
120
121 * iofclose.c: Acquire lock before starting the work.
122 * iofflush.c: Likewise.
123 * iofgetpos.c: Likewise.
124 * iofgets.c: Likewise.
125 * iofputs.c: Likewise.
126 * iofread.c: Likewise.
127 * iofsetpos.c: Likewise.
128 * ioftell.c: Likewise.
129 * iofwrite.c: Likewise.
130 * iogetdelim.c: Likewise.
131 * iogets.c: Likewise.
132 * ioputs.c: Likewise.
133 * iosetbuffer.c: Likewise.
134 * iosetvbuf.c: Likewise.
135 * ioungetc.c: Likewise.
136
137 * iofdopen.c: Create and initialize lock for new stream.
138 * iofopen.c: Likewise.
139 * iopopen.c (_IO_popen): Likewise.
140 * iovsprintf.c: Likewise.
141 * iovsscanf.c: Likewise.
142
143 * genops.c: Make weak aliases for various functions.
144 * iofclose.c: Likewise.
145 * iofdopen.c: Likewise.
146 * iofflush.c: Likewise.
147 * iofgetpos.c: Likewise.
148 * iofgets.c: Likewise.
149 * iofopen.c: Likewise.
150 * iofputs.c: Likewise.
151 * iofread.c: Likewise.
152 * iofsetpos.c: Likewise.
153 * ioftell.c: Likewise.
154 * iofwrite.c: Likewise.
155 * iogetdelim.c: Likewise.
156 * iogets.c: Likewise.
157 * ioputs.c: Likewise.
158 * iosetbuffer.c: Likewise.
159 * iosetvbuf.c: Likewise.
160 * ioungetc.c: Likewise.
161 * iovsprintf.c: Likewise.
162 * iovsscanf.c: Likewise.
163
164 * iofflush_u.c: New file. fflush_unlocked implementation.
165
166 * iostream.h [_G_HAVE_LONG_DOUBLE_IO]: Declare real long double
167 output operator.
168
169 * peekc.c: New file. Implement _IO_peekc_locked function.
170
171 * stdfiles.c: If we compile for a thread-safe library also define
172 lock variable.
173
174 Tue Aug 26 12:24:01 1997 H.J. Lu (hjl@gnu.ai.mit.edu)
175
176 * testsuite/Makefile.in (check): Don't depend on site.exp.
177 (just-check): Depend on site.exp.
178
179 Wed Aug 20 02:01:34 1997 Jason Merrill <jason@yorick.cygnus.com>
180
181 * iostream.h: Add copy assignment ops for _IO_?stream_withassign.
182
183 Tue Jul 22 10:31:41 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
184
185 * config.shared (CHECK_SUBDIRS): Use install-sh, not install.sh.
186
187 Wed Jun 25 12:20:55 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
188
189 * config.shared (DOING_GPERF): Look for this, defining TOLIBGXX
190 and LIBS for it.
191
192 Wed Jun 18 11:03:34 1997 Bob Manson <manson@charmed.cygnus.com>
193
194 * config.shared (FLAGS_TO_PASS): Don't include RUNTEST.
195
196 Tue Jun 17 22:23:48 1997 Bob Manson <manson@charmed.cygnus.com>
197
198 * config.shared (FLAGS_TO_PASS): Pass RUNTEST and RUNTESTFLAGS.
199
200 Fri May 16 21:08:53 1997 Bob Manson <manson@charmed.cygnus.com>
201
202 * iovfprintf.c: Declare __cvt_double before use.
203
204 * floatconv.c (d2b): Use _G_int32_t instead of int for the
205 e and bits parameters.
206 (_IO_strtod): Use _G_int32_t.
207
208 * gen-params: Look for NO_USE_DTOA and USE_INT32_FLAGS.
209
210 * strops.c (_IO_str_init_static): use _G_int32_t appropriately.
211
212 * libio.h: If _G_NO_USE_DTOA is set, then don't define
213 _IO_USE_DTOA.
214
215 * config/mn10200.mt: Don't use dtoa, it only works
216 for "real" doubles.
217
218 Thu May 15 17:44:12 1997 Bob Manson <manson@charmed.cygnus.com>
219
220 * configure.in: Set CHECK_SUBDIRS to testsuite if we're doing
221 a cross compile.
222
223 * config.shared(check): Only run make check in the directories
224 specified by CHECK_SUBDIRS. Set CHECK_SUBDIRS to SUBDIRS
225 if it has no previous value.
226
227 Thu May 1 17:35:19 1997 Jason Merrill <jason@yorick.cygnus.com>
228
229 * Makefile.in (test, tpipe): Add $(CFLAGS).
230
231 Wed Apr 30 12:16:29 1997 Jason Merrill <jason@yorick.cygnus.com>
232
233 * configure.in: Don't turn on multilib here.
234
235 Sat Apr 26 13:38:21 1997 Bob Manson <manson@charmed.cygnus.com>
236
237 * configure.in (configdirs): Add testsuite directory.
238
239 * testsuite/ChangeLog:
240 * testsuite/Makefile.in:
241 * testsuite/libio.tests/tiomanip.exp:
242 * testsuite/libio.tests/tstdiomisc.exp:
243 * testsuite/libio.tests/tiomisc.exp:
244 * testsuite/libio.tests/tFile.exp:
245 * testsuite/libio.tests/tfformat.exp:
246 * testsuite/libio.tests/tiformat.exp:
247 * testsuite/libio.tests/hounddog.exp:
248 * testsuite/libio.tests/putbackdog.exp:
249 * testsuite/configure.in:
250 * testsuite/lib/libio.exp:
251 * testsuite/config/default.exp:
252 New files for DejaGnu-style testsuite.
253
254 Fri Apr 4 03:16:44 1997 Ulrich Drepper <drepepr@cygnus.com>
255
256 * configure.in: Enable multilibing by default.
257 Update multilib template to read config-ml.in.
258
259 * floatconv.c: Enable use in cross targets which use the
260 newlib ieeefp.h header.
261
262 Thu Jan 23 09:16:16 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
263
264 * libioP.h (_IO_file_attach): Delete redundant decl.
265
266 Tue Jan 21 22:13:45 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
267
268 * streambuf.h (class ios): Take out STREAMSIZE member, since we
269 only need (and should only have) the global one.
270
271 Tue Jan 7 14:02:40 1997 Jason Merrill <jason@yorick.cygnus.com>
272
273 * iostream.h (long long fns): Use __extension__.
274
275 * gen-params: Use _G_llong and _G_ullong instead of long long for
276 deduced types.
277
278 Fri Dec 6 13:13:30 1996 Jason Merrill <jason@yorick.cygnus.com>
279
280 * dbz/dbz.c: Use off_t.
281
282 Sat Nov 23 15:44:37 1996 Jason Merrill <jason@yorick.cygnus.com>
283
284 * Makefile.in (install): Don't install _G_config.h with other headers.
285
286 Mon Nov 18 17:12:41 1996 Jason Merrill <jason@yorick.cygnus.com>
287
288 * config.shared (SUBDIRS): Use -O instead of -O3 for debugging.
289
290 Sun Nov 3 12:43:34 1996 Jason Merrill <jason@yorick.cygnus.com>
291
292 * iostream.cc (write_int): Treat string literals as const.
293
294 Thu Sep 26 10:09:18 1996 Michael Meissner <meissner@tiktok.cygnus.com>
295
296 * depend: Regenerate.
297
298 Wed Sep 25 22:54:45 1996 Jason Merrill <jason@yorick.cygnus.com>
299
300 * config.shared (depend.new): Deal with headers that don't end in .h.
301
302 Thu Aug 29 17:05:53 1996 Michael Meissner <meissner@tiktok.cygnus.com>
303
304 * configure.in (i[345]86-*-*): Recognize i686 for pentium pro.
305
306 Mon Aug 5 01:26:32 1996 Jason Merrill <jason@yorick.cygnus.com>
307
308 * config{ure.in,.shared} (DISTCLEAN): Add multilib.out.
309
310 Fri Aug 2 17:39:35 1996 Jason Merrill <jason@yorick.cygnus.com>
311
312 * libio.h (NULL): Use __null.
313 * libioP.h (NULL): Ditto.
314 * streambuf.h (NULL): Ditto.
315 * ioextend.cc (get_array_element): Use NULL instead of (void*)0.
316
317 Fri Jul 5 18:26:41 1996 Jim Wilson <wilson@cygnus.com>
318
319 * strfile.h (struct _IO_streambuf): New struct type.
320 (struct _IO_strfile): Use it.
321
322 Tue Jun 18 18:24:21 1996 Jason Merrill <jason@yorick.cygnus.com>
323
324 * fstream.h (fstreambase): Make __my_fb mutable.
325 From Joe Buck.
326
327 Tue Jun 18 11:03:53 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
328
329 * dbz/fake.c (main): Set return type to int.
330 * dbz/dbzmain.c (main): Likewise.
331 * dbz/byteflip.c (main): Likewise.
332
333 Mon Jun 17 14:05:36 1996 Jason Merrill <jason@yorick.cygnus.com>
334
335 * gen-params: Check if clog conflicts with system libraries.
336 * stdstreams.cc: If it does, use __IO_clog.
337 * iostream.h: Likewise.
338
339 Tue Jun 11 13:39:31 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
340
341 * stdiostream.h (istdiostream (FILE*)): Put istream base
342 initializer before init for __f.
343 (ostdiostream (FILE*)): Likewise for ostream base init.
344
345 Tue May 14 11:47:21 1996 Per Bothner <bothner@andros.cygnus.com>
346
347 * strfile.h (_IO_str_fields): Removed _len field.
348 (_IO_STR_DYNAMIC, _IO_STR_FROZEN): new macros.
349 * strstream.h (strstreambuf::is_static): Removed.
350 (strstreambuf::frozen): Use _IO_STR_DYNAMIC instead of is_static.
351 * strstream.h, strstream.cc: Remove support for !_IO_NEW_STREAMS.
352 * strstream.cc (strstreambuf::init_dynamic): Don't set _s._len.
353 * strops.c (_IO_str_init_static): Better handling of the
354 negative (== unbounded) size case.
355 (_IO_str_overflow, _IO_str_underflow, _IO_str_count): Re-write
356 to not use _s._len, and otherwise cleanup/fix.
357 * strstream.h, strstream.cc (strstreambase::strstreambase()): Call
358 ios::init here.
359 (other constructors): Simplify - init already called.
360
361 Tue May 14 10:55:21 1996 Per Bothner <bothner@deneb.cygnus.com>
362
363 Change so that strstreambuf default constructor does no allocation.
364 * strstream.h (strstreambuf::init_dynamic): Default initial size = 0.
365 * strstream.cc (strstreambuf::init_dynamic): Don't allocate a
366 buffer (yet) if initial_size is 0.
367 * strops.c (_IO_str_overflow): Add 100 to size of re-allocated
368 buffer, to handle case when initial size is 0.
369
370 * iostdio.h (remove, rename, tmpfile, tempnam): Comment out.
371
372 Mon May 13 23:19:39 1996 Per Bothner <bothner@deneb.cygnus.com>
373
374 * fileops.c (_IO_file_close_it): Just call _IO_do_flush rather
375 than _IO_file_sync, to avoid useless lseek.
376
377 Tue May 14 10:48:48 1996 Jason Merrill <jason@yorick.cygnus.com>
378
379 * floatconv.c (_IO_strtod): Force rv into the stack.
380
381 * config.shared (gxx_includedir): Now $(includedir)/g++.
382
383 Sat Apr 27 02:37:49 1996 Jason Merrill <jason@yorick.cygnus.com>
384
385 * libioP.h (JUMP*): Implement for thunks.
386 (_IO_jump_t): Add second dummy field for thunks.
387
388 Thu Apr 25 13:20:00 1996 Jason Merrill <jason@yorick.cygnus.com>
389
390 * config.shared (CXX): Use gcc, not g++.
391
392 Wed Apr 24 10:29:50 1996 Doug Evans <dje@blues.cygnus.com>
393
394 * config.shared (depend.new): Delete $(srcdir)/ from foo.{c,cc}
395 for SunOS VPATH.
396 * depend: Regenerated.
397
398 Fri Apr 19 17:24:51 1996 Jason Merrill <jason@yorick.cygnus.com>
399
400 * Version 2.8.0b3.
401
402 Wed Apr 10 17:16:01 1996 Jason Merrill <jason@yorick.cygnus.com>
403
404 * configure.in (ALL): Don't build iostream.a.
405
406 Mon Apr 8 14:44:11 1996 Per Bothner <bothner@kalessin.cygnus.com>
407
408 * iosetvbuf.c (_IO_setvbuf): Clear _IO_UNBUFFERED unless _IONBF.
409
410 Mon Apr 8 15:08:23 1996 Ian Lance Taylor <ian@cygnus.com>
411
412 * configure.in: Permit --enable-shared to specify a list of
413 directories.
414
415 Fri Apr 5 17:48:56 1996 Per Bothner <bothner@kalessin.cygnus.com>
416
417 * config.shared (MOSTLYCLEAN): Also remove ${EXTRA_MOSTLYCLEAN}.
418
419 Fri Mar 22 23:25:00 1996 Ulrich Drepper <drepepr@gnu.ai.mit.edu>
420
421 * genops.c (_IO_sputbackc, _IO_sungetc): Clear EOF flag if putsh
422 back was successful.
423
424 Wed Mar 27 11:54:08 1996 Jason Merrill <jason@yorick.cygnus.com>
425
426 * Version 2.8.0b2.
427
428 Fri Mar 22 15:39:36 1996 Per Bothner <bothner@kalessin.cygnus.com>
429
430 * fileops.c (_IO_do_write): Revert previous fix. (It fails to
431 handle the case that fp->_IO_read_end != fp->_IO_write_base.)
432 (_IO_file_overflow): Instead, if _IO_read_ptr is at the end of
433 the buffer, reset all the read pointers to _IO_buf_base.
434
435 Tue Mar 12 12:03:17 1996 Per Bothner <bothner@kalessin.cygnus.com>
436
437 * fileops.c (_IO_do_write): Even if to_do==0, must re-set buffer
438 pointers. Bug and solution from Luke Blanshard <luke@cs.wisc.edu>.
439
440 Wed Feb 28 10:00:24 1996 Jason Merrill <jason@yorick.cygnus.com>
441
442 * Version 2.8.0b1.
443
444 Tue Feb 27 18:08:16 1996 Per Bothner <bothner@kalessin.cygnus.com>
445
446 * iopopen.c (_IO_proc_open): Use (char*)0 rather than imprecise NULL.
447
448 * streambuf.h (ios): Add ios::binary; deprecate ios::bin.
449 * filebuf.cc (filebuf::open): Handle ios::binary.
450
451 Fri Feb 9 12:40:19 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
452
453 * cleanup.c (_IO_cleanup_registration_needed) [!_G_HAVE_ATEXIT]: Init
454 to NULL.
455 * filedoalloc.c (_IO_cleanup_registration_needed): Remove decl.
456
457 Thu Feb 8 08:12:50 1996 Brendan Kehoe <brendan@cygnus.com>
458
459 * filedoalloc.c (_IO_cleanup_registration_needed): Revert previous
460 change, since cleanup.c only defines it if _G_HAVE_ATEXIT.
461
462 Wed Feb 7 15:10:17 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
463
464 * filedoalloc.c (_IO_cleanup_registration_needed): Declare as extern.
465
466 Tue Dec 12 17:21:13 1995 Per Bothner <bothner@kalessin.cygnus.com>
467
468 * indstream.h, instream.cc (indirectbuf::uflow): New method.
469 * indstream.cc (indirectbuf::underflow): Fix to use sgetc, not sbumpc.
470 Fixes bug reported by Kevin Beyer <beyer@cs.wisc.edu>.
471
472 * indstream.cc (indirectbuf::seekpos): Add paranoia test.
473
474 Fri Dec 8 14:55:34 1995 Per Bothner <bothner@kalessin.cygnus.com>
475
476 * stream.h: Add warning to not use these functions.
477 * stream.cc (str, chr): Re-implement here (from libg++).
478
479 Tue Nov 28 15:07:01 1995 Per Bothner <bothner@kalessin.cygnus.com>
480
481 * config.shared: Use test instead of [ to avoid DEC Unix lossage.
482
483 Thu Nov 23 14:51:43 1995 Per Bothner <bothner@kalessin.cygnus.com>
484
485 * iopopen.c: Move #include <sys/types.h> ahead of #include <signal.h>
486 to deal with BSDI's literal implementation of Posix.
487
488 Sat Nov 25 11:21:55 1995 Doug Evans <dje@canuck.cygnus.com>
489
490 * Makefile.in (install): Set rootme.
491 * config.shared (TOPDIR): Set with ${foo-...} rather than ${foo=...}.
492 (INSTALL): Handle absolute, dot, relative-not-dot values of srcdir.
493 (TEXIDIR): Likewise.
494
495 Tue Nov 21 14:12:05 1995 Ian Lance Taylor <ian@cygnus.com>
496
497 * configure.in: Check ${with_cross_host} rather than comparing
498 ${host} and ${target}.
499
500 Mon Nov 20 13:55:29 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
501
502 * configure.in: Match *-sco3.2v[45]*.
503
504 Wed Nov 15 20:19:31 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
505
506 * config.shared (FLAGS_TO_PASS): Also pass SHLIB and SHCURSES.
507
508 Tue Nov 14 01:41:08 1995 Doug Evans <dje@canuck.cygnus.com>
509
510 * config.shared (TO_REAL_TOPDIR): Define.
511 (MULTITOP): Deleted.
512 (MULTISRCTOP, MULTIBUILDTOP): New.
513 (TOPDIR): Change MULTITOP to MULTIBUILDTOP, and use TO_REAL_TOPDIR.
514 (INSTALL): Add with_multisrctop, TO_REAL_TOPDIR.
515 (TEXIDIR): Use TO_REAL_TOPDIR.
516 (LIBS): Delete MULTITOP.
517 (FLAGS_TO_PASS): Add NM.
518 (CXXINCLUDES): Delete MULTITOP.
519 (depend.new): Delete adding MULTITOP to ../ build tree references.
520 Add MULTISRCTOP to ../ source tree references.
521 * configure.in: Delete call to cfg-ml-com.in. Call config-ml.in
522 instead of cfg-ml-pos.in.
523
524 Sun Nov 12 16:30:48 1995 Per Bothner <bothner@kalessin.cygnus.com>
525
526 * Makefile.in (VERSION): Set to 2.7.1.
527 * configure.in: Add warning for Linux.
528 * config.shared (DISTCLEAN): Add EXTRA_DISTCLEAN.
529
530 * editbuf.h (edit_mark::index_in_buffer): Avoid unused param warning.
531
532 * iostream.cc (istream::operator>> (char*)): Improve ANSI compliance.
533
534 Fri Nov 10 08:41:37 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
535
536 * config.shared (check): Add missing semicolon.
537
538 Thu Nov 9 17:27:22 1995 Jason Merrill <jason@yorick.cygnus.com>
539
540 * configure.in (ALL): Remove $(OSPRIM_OBJECTS).
541 * config.shared (check): Set LD_LIBRARY_PATH.
542 * NEWS: Fix typo.
543 * iogetdelim.c (_IO_getdelim): Index *lineptr, rather than lineptr.
544 From alan@spri.levels.unisa.edu.au (Alan Modra).
545
546 Mon Nov 6 15:03:33 1995 Per Bothner <bothner@kalessin.cygnus.com>
547
548 * streambuf.cc, editbuf.cc, isgetline.cc, parsestream.cc:
549 Fixes to avoid -Wall warnings.
550
551 Fri Nov 3 16:41:41 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
552
553 * gen-params [!__STDC__]: Include varargs.h instead of stdarg.h.
554
555 Thu Nov 2 15:04:03 1995 Per Bothner <bothner@kalessin.cygnus.com>
556
557 * config.shared: Re-write if X then Y else true fi to (not X) || Y.
558
559 Wed Nov 1 13:26:44 1995 Per Bothner <bothner@kalessin.cygnus.com>
560
561 * iostream.h (istream::ipfx): Add default argument value.
562 Reported by Yotam Medini <yotam_medini@tmai.com>.
563
564 * libioP.h (_IO_blen): Fix typo.
565 Reported by Bryan T. Vold <btv@ldl.healthpartners.com>.
566
567 Fri Oct 27 19:26:20 1995 Per Bothner <bothner@kalessin.cygnus.com>
568
569 * Makefile.in (_G_config.h): Set CC to $(CC) rather than to $(CXX),
570 now that CXX defaults to g++ and CC default to gcc (when found).
571 * config.shared: Simplify CXX and CC, since they get overridden
572 by ../configure anyway.
573
574 Wed Oct 25 19:45:50 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
575
576 * iostdio.h: Wrap including the file with #ifndef _IOSTDIO_H.
577
578 Wed Oct 25 11:14:25 1995 Per Bothner <bothner@kalessin.cygnus.com>
579
580 * libio.h (_IO_seekoff, _IO_seekpos): New declarations.
581 * libioP.h (_IO_seekoff, _IO_seekpos): Remove declarations.
582 * libioP.h: Cleanup; remove old !_IO_UNIFIED_JUMPTABLES stuff.
583
584 * filebuf.cc (filebuf::~filebuf): Only call SYSYCLOSE if currently
585 open. Bug found by Martin Gerbershagen <ger@ezis-ulm.de>.
586
587 * streambuf.h (streambuf::pubseekoff, streambuf::pubseekpos):
588 Added, from ANSI draft.
589 * filebuf.cc (filebuf::open), iostream.cc (variables places), SFile.cc:
590 Use pubseekoff/pubseekpos rather than sseekoff/sseekpos.
591
592 * Makefile.in (install): Don't install libiostream.a.
593
594 * filedoalloc.c: Also #include <unistd.h>.
595
596 Mon Oct 9 18:09:54 1995 Jason Molenda <crash@phydeaux.cygnus.com>
597
598 * config.shared (SUFFIXES): add .c.
599
600 Tue Sep 26 16:08:01 1995 Per Bothner <bothner@kalessin.cygnus.com>
601
602 * procbuf.cc: Move #pragma implementation to beginning.
603
604 Wed Sep 20 17:53:33 1995 Per Bothner <bothner@kalessin.cygnus.com>
605
606 * procbuf.h, procbuf.cc: Add #pragma interface/implementation stuff.
607
608 Wed Sep 20 18:59:00 1995 John Eaton <jwe@bevo.che.wisc.edu>
609
610 * procbuf.h: Protect from being included multiple times.
611
612 Wed Sep 20 15:47:14 1995 John Eaton <jwe@bevo.che.wisc.edu>
613
614 * procbuf.h (procbuf): Add '_next' pointer field for compatibility
615 with _IO_proc_file.
616
617 Wed Sep 20 13:54:02 1995 Ian Lance Taylor <ian@cygnus.com>
618
619 * config.shared: Add support for maintainer-clean target as a
620 synonym for realclean.
621 * dbz/Makefile.in: Likewise.
622
623 Mon Sep 11 12:11:19 1995 Per Bothner <bothner@kalessin.cygnus.com>
624
625 * iopopen.c: #include <sys/types.h> before <sys/wait.h>.
626 This is in accordance with Posix, and needed for ISC.
627
628 Fri Sep 8 00:11:55 1995 Brendan Kehoe <brendan@lisa.cygnus.com>
629
630 * gen-params: Use double quotes in the eval setting $TYPE to
631 $VALUE, to preserve any single quotes in $VALUE.
632
633 Mon Aug 21 11:39:09 1995 Jason Merrill <jason@phydeaux.cygnus.com>
634
635 * gen-params: Test for an appropriate version of gcc before using
636 mode attributes.
637
638 * config.shared: Add $(PICDIR) to $ALL.
639
640 Mon Aug 7 17:51:40 1995 Per Bothner <bothner@kalessin.cygnus.com>
641
642 * gen-params: Generate new macro _G_HAVE_SYS_CDEFS.
643 * libio.h: If _G_HAVE_SYS_CDEFS, get __P from <sys/cdefs.h>.
644
645 Fri Aug 4 23:21:17 1995 Paul Eggert <eggert@twinsun.com>
646
647 * gen-params: When following typedef changes, allow typedefs
648 that do not have a space before the defined type name,
649 e.g. `typedef void *__gnuc_va_list;' as in Linux. Also,
650 not require a space in the definiens, e.g. `typedef void*foo;'.
651
652 Thu Aug 3 17:54:15 1995 Per Bothner <bothner@kalessin.cygnus.com>
653
654 * iostream.h, iostream.cc (istream::sync): Added missing method.
655
656 Thu Aug 3 17:49:34 1995 Per Bothner <bothner@kalessin.cygnus.com>
657
658 * configure.in: Remove netbsd special case.
659 * config/netbsd.mt: Removed; no longer used.
660
661 Tue Jun 20 16:07:12 1995 Paul Eggert <eggert@twinsun.com>
662
663 * gen-params: Take transitive closure of `typedef' relation.
664 This is needed for BSD/OS 2.0, which has
665 fpos_t -> off_t -> quad_t -> long long.
666
667 Mon Jul 24 18:28:10 1995 Doug Evans <dje@canuck.cygnus.com>
668
669 * config.shared (TOPDIR): Delete extra '/', $rootme may be empty.
670
671 Sat Jul 22 13:27:45 1995 Doug Evans <dje@canuck.cygnus.com>
672
673 * config.shared (depend.new): Fix quoting in DO NOT EDIT line.
674
675 * Makefile.in (_G_config.h): Add multilib support.
676 (install): Likewise.
677 * config.shared: Likewise.
678 * configure.in: Likewise.
679
680 Wed Jun 28 17:40:25 1995 Jason Merrill <jason@phydeaux.cygnus.com>
681
682 * PlotFile.h, SFile.h, builtinbuf.h, editbuf.h, fstream.h,
683 indstream.h, iomanip.h, iostream.h, parsestream.h, pfstream.h,
684 procbuf.h, stdiostream.h, stream.h, streambuf.h, strstream.h: Wrap
685 with extern "C++".
686
687 Thu Jun 22 04:34:01 1995 Jason Merrill <jason@phydeaux.cygnus.com>
688
689 * gen-params: Surround attributes with __.
690
691 Mon Jun 19 00:33:22 1995 Jason Merrill <jason@phydeaux.cygnus.com>
692
693 * config.shared (SUBDIRS): Massage broken shells that require
694 'else true'.
695
696 Sat Jun 17 11:25:38 1995 Jason Merrill <jason@phydeaux.cygnus.com>
697
698 * streambuf.h: Declare inline members inline in class.
699
700 Thu Jun 15 20:45:13 1995 Per Bothner <bothner@kalessin.cygnus.com>
701
702 * Makefile.in (VERSION): Update to version 2.7.0.
703
704 Wed Jun 14 21:41:11 1995 Jason Merrill <jason@python.cygnus.com>
705
706 * Makefile.in (STDIO_WRAP_OBJECTS): Remove stdfiles.o.
707 (LIBIO_OBJECTS): Add stdfiles.o.
708
709 Wed Jun 7 16:11:36 1995 Jason Merrill <jason@python.cygnus.com>
710
711 * config.shared (all): Appease bash.
712
713 Wed Jun 7 11:16:38 1995 Jason Merrill <jason@phydeaux.cygnus.com>
714
715 * configure.in (MOSTLYCLEAN): Remove stamp-picdir.
716
717 * config.shared (MOSTLYCLEAN): Ditto.
718 (CLEAN): Don't.
719
720 Mon Jun 5 18:29:39 1995 Jason Merrill <jason@phydeaux.cygnus.com>
721
722 * config/mh-*pic: Removed.
723
724 * configure.in (MOSTLYCLEAN): Remove pic objects.
725 (frags): Use toplevel pic fragments.
726
727 * config.shared (CXXFLAGS): Use -O3.
728 (PICFLAG, PICDIR): New macros.
729 (all): Depend on $(PICDIR).
730 (FLAGS_TO_PASS): Pass PICFLAG.
731 (.x.o): Also build pic object.
732 (stamp-picdir): Create directory for pic objects.
733 (MOSTLYCLEAN): Remove pic objects.
734 (CLEAN): Remove stamp-picdir.
735
736 * Makefile.in (iostream.list): Depend on stamp-picdir.
737 (c++clean): Don't remove _G_config.h.
738
739 Mon Jun 5 15:03:47 1995 Per Bothner <bothner@kalessin.cygnus.com>
740
741 * strstream.h, strstream.cc (strstream::strstream()): Re-implement to
742 be like ostrstream::ostrestream(), and not leak memory.
743
744 * streambuf.h: Use #if !_IO_UNIFIED_JUMPTABLES instead of #ifndef.
745
746 * iolibio.h (_IO_rewind): Add missing flags when calling _IO_seekoff.
747
748 Thu May 25 22:30:21 1995 J.T. Conklin <jtc@rtl.cygnus.com>
749
750 * config/netbsd.mt (G_CONFIG_ARGS): Add defn for off_t. Another
751 layer of typedefs has been added and the gen-params script can
752 not handle it.
753
754 Wed May 10 03:02:58 1995 Jason Merrill <jason@python.cygnus.com>
755
756 * iolibio.h (_IO_rewind): Add new argument to _IO_seekoff.
757
758 * config/linux.mt (LIBIOSTREAM_OBJECTS): Include $(STDIO_WRAP_OBJECTS).
759 (LIBIOSTREAM_DEP): Include stdio.list.
760 (LIBIOSTREAM_USE): Include `cat stdio.list`.
761
762 * Makefile.in (LIBIOSTREAM_DEP): New variable.
763 (LIBIOSTREAM_USE): Ditto.
764 (libiostream.a): Use them.
765 (iostream.list): Ditto.
766 (stdio.list): New rule.
767 (stdio/stdio.list): Ditto.
768
769 Tue May 9 18:29:38 1995 Jason Merrill <jason@phydeaux.cygnus.com>
770
771 * libioP.h (_IO_jump_t): Change TYPE for __dummy from int to
772 _G_size_t.
773
774 Sat May 6 13:50:37 1995 Per Bothner <bothner@kalessin.cygnus.com>
775
776 * libio.h (_IO_UNIFIED_JUMPTABLES): #define as true.
777 (_IO_FILE): Remove _jumps field (#if _IO_UNIFIED_JUMPTABLES).
778
779 * libioP.h (enum _IO_seekflags_): Removed.
780
781 * libioP.h (_IO_setbuf_t): Change return value of setpos jumptable
782 function to match C++ streambuf::setpos. (Return NULL on failure.)
783 * fileops.c (_IO_file_setbuf), genops.c (_IO_default_setbuf),
784 filebuf.cc, iosetvbuf.c: Update to use new setbuf conventions.
785
786 * streambuf.h (streambuf): Re-order virtual functions more logically.
787 * streambuf.cc (streambuf::uflow), streambuf.h: New virtual.
788 * libioP.h (struct _IO_jump_t): Define using new JUMP_FIELD macro.
789 And re-order in more logical order consistent with streambuf vtable.
790 * fileops.c (_IO_file_jumps), iopopen.c (_IO_proc_jumps), iovfprintf.c
791 (_IO_helper_jumps), streambuf.cc (_IO_streambuf_jumps), strops.c
792 (_IO_str_jumps): Update accordingly, using JUMP_INIT macro.
793 * stdfiles.c: Set vtable to point to _IO_file_jumps.
794 * filebuf.cc, iopopen.c, iovfprintf.c (helper_vfprintf), iovsprintf.c,
795 iovsscanf.c: Use macros and #if to set jumptables.
796
797 * streambuf.c: _IO_streambuf_jumps and the _IO_sb_* methods are not
798 needed #if _IO_UNIFIED_JUMPTABLES.
799 * filebuf.cc (filebuf::__new): Also no longer needed.
800 * fstream.cc (fstreambase::__fb_init, fstreambase::fstreambase): Fix.
801 * stdstrbufs.c: Use filebuf vtable instead of builtinbuf's.
802 * builtinbuf.h, builtinbuf.cc (builtinbuf): Commented out #if
803 _IO_UNIFIED_JUMPTABLES - no longer needed.
804 * strstream.cc (SET_STR_JUMPS): Does nothing now.
805
806 * builtinbuf.cc, fileops.c, genops.c, iofgetpos.c, iofsetpos.c,
807 ioftell.c, iopopen.c, ioseekoff.c, ioseekpos.c, iosetvbuf.c,
808 iovfprintf.c, iovfscanf.c, strops.c: Use DEFUN and DEFUN_VOID.
809 * filebuf.cc, fileops.c, genops.c, iopopen.c, ioseekoff.c, ioseekpos.c,
810 iosetvbuf.c, iovfscanf.c: Use new JUMP_* and IO_OVERFLOW/... macros.
811
812 * libioP.h (_IO_seekpos_t): Third arg is now an int (using _IOS_INPUT
813 and _IOS_OUTPUT), not an enum _IO_seekflags_. Flags values are
814 changed, and their sense inverted (to match streambuf::seekpos).
815 * libioP.h (_IO_seekoff_t): Similarly match streambuf::seekoff.
816 * filebuf.cc, fileops.c (_IO_file_fopen, _IO_file_seekoff), genops.c
817 (_IO_default_seekpos, _IO_default_seekpos), iofgetpos.c, iofsetpos.c,
818 iolibio.h (_IO_fseek), ioftell.c, ioseekoff.c, ioseekpos.c,
819 iostream.cc, streambuf.cc, strops.c (_IO_str_seekoff), strstream.cc:
820 New seekpos/seekoff conventions.
821 * iostreamP.h (convert_to_seekflags): Removed - no longer needed.
822
823 * iolibio.h (_IO_fread): New declaration.
824
825 * dbz/Makefile.in: Re-arrange for cleaner dependencies.
826
827 Fri May 5 15:55:22 1995 Per Bothner <bothner@kalessin.cygnus.com>
828
829 * libioP.h (_IO_JUMPS. JUMP_FIELD, JUMP0, JUMP1, JUMP2, JUMP3,
830 JUMP_INIT, _IO_FINISH, _IO_OVERFLOW, ... _IO_SYSSTAT): New macros
831 in preparation for new unified jumptable/vtable implementation.
832 * cleanup.c, filedoalloc.c, iofclose.c, iofflush.c, iofiledoalloc.c,
833 ioprims.c, iosetbuffer.c, iostrerror.c, ioungetc.c: Use DEFUN.
834 * filedoalloc.c, iofclose, iofflush, iosetbuffer.c: Use new macros.
835
836 * iofopen.c, iofdopen.c: Use macros and #if for new jumptables.
837
838 * gen-params: Do not #include <sys/types.h>.
839 Add missing quote in 'eval'.
840 Do add #include <sys/types.h> in test for <sys/resource.h>.
841 * config/netbsd.mt: New file, defining _G_CONFIG_ARGS (for fpos_t).
842 * configure.in: Use netbsd.mt for NetBSD.
843
844 Wed May 3 15:03:47 1995 Per Bothner <bothner@kalessin.cygnus.com>
845
846 * libioP.h (DEFUN, DEFUN_VOID, AND): New macros, from ansidecl.h.
847 * iofdopen.c, iofgets.c, iofopen.c, iofputs.c, iofread.c, iofwrite.c,
848 iogetdelim.c, iogetline.c, iogets.c, ioignore.c, iopadn.c, ioperror.c,
849 ioputs.c, iovsprintf.c, iovsscanf.c, outfloat.c: Use DEFUN.
850
851 Mon May 1 16:22:30 1995 Jason Merrill <jason@phydeaux.cygnus.com>
852
853 * gen-params: #include <sys/types.h>. Don't use __WCHAR_TYPE__ in
854 definition of _G_wchar_t. Use __attribute__ ((mode)) to get
855 specific-sized ints under gcc, don't worry about int8 or int64
856 otherwise. Provide defaults if deduction fails.
857
858 Thu Apr 27 18:27:53 1995 Per Bothner <bothner@kalessin.cygnus.com>
859
860 * streambuf.h (ios::~ios): Delete _arrays.
861 (_IO_NEW_STREAMS): Turn on.
862 * libio.h (__adjust_column): Remove bogus declaration.
863 * genops.c (_IO_set_column): Fix typo (in commented-out code).
864
865 Tue Apr 25 17:14:29 1995 Jason Merrill <jason@phydeaux.cygnus.com>
866
867 * config.shared (CXXINCLUDES): Use a shell variable with a
868 different name from the make variable.
869 * configure.in: Update accordingly.
870
871 Mon Apr 17 17:19:40 1995 Per Bothner <bothner@kalessin.cygnus.com>
872
873 * streambuf.h (__adjust_column): Remove redundant declaration.
874
875 Sat Apr 15 11:39:25 1995 Per Bothner <bothner@kalessin.cygnus.com>
876
877 * config.shared (do-clean-dvi): Also remove *.cps.
878
879 * gen-params: Use ${SED} instead of sed.
880
881 * libio.h: Remove #if'd out stuff (confuses makedepend).
882
883 * stdstreams.cc (STD_STR): Standard streams start with ios::dec set.
884
885 Fri Apr 14 23:46:31 1995 Per Bothner <bothner@kalessin.cygnus.com>
886
887 * iostream.h, iostream.cc (istream::read, ostream::write):
888 Use streamsize for the length parameter.
889
890 * streambuf.h: Removed redundant __overflow and __underflow.
891
892 * fstream.h, fstream.cc: Add void fstreambase::attach(int).
893
894 * iosscanf.c (_IO_sscanf): Fix non-__STDC__ missing declaration.
895
896 Mon Apr 3 15:40:55 1995 Jason Merrill <jason@phydeaux.cygnus.com>
897
898 * indstream.*: Fix prototypes of xsputn and xsgetn.
899
900 * fileops.c: Avoid ??? trigraph.
901
902 Mon Mar 27 16:16:38 1995 Jason Merrill <jason@phydeaux.cygnus.com>
903
904 * iomanip.h (operator<< (ostream&, const omanip<TP>&): Define
905 separately.
906 (operator>> (istream&, const imanip<TP>&): Ditto.
907
908 Mon Mar 27 08:56:00 1995 Brendan Kehoe (brendan@lisa.cygnus.com)
909
910 * builtinbuf.cc (builtinbuf::setbuf): Cast NULL to streambuf*, to
911 avoid warning/error about conversion from void*.
912 * indstream.cc (indirectbuf::seekoff): Likewise.
913 (indirectbuf::seekpos): Likewise.
914 * filebuf.cc (filebuf::setbuf): Likewise.
915 (filebuf::close): Cast NULL to filebuf*.
916
917 Wed Mar 1 14:23:18 1995 Per Bothner <bothner@kalessin.cygnus.com>
918
919 * configure.in (DISTCLEAN): Add, with target-mkfrag.
920
921 Fri Feb 24 01:01:08 1995 Jason Merrill <jason@python.cygnus.com>
922
923 * configure.in (frags): Don't require so many dashes in the
924 canonical target name.
925
926 Sat Feb 18 13:18:30 1995 Per Bothner <bothner@kalessin.cygnus.com>
927
928 * streambuf.cc (streambuf::sync): Always return 0, even for
929 non-flushed output. This is required by the ANSI/ISO draft.
930 * genops.c (_IO_sync): Likewise always return 0.
931
932 Fri Feb 17 16:33:28 1995 Per Bothner <bothner@kalessin.cygnus.com>
933
934 * fileops.c (_IO_file_close_it): Call _IO_file_sync, rather
935 than _IO_do_flush, because we want to adjust the file pointer
936 if reading and not at end (as in SVR4, and as in fflush).
937 Also, make sure to return error indication if sync fails.
938 (_IO_file_sync): Ignore seek error if it is ESPIPE.
939 (_IO_file_seekoff): If not readable, do dumb lseek.
940 * iofclose.c (_IO_fclose): If closing a non-filebuf, return -1
941 if _IO_ERR_SEEN.
942
943 Fri Feb 17 19:31:00 1995 Ian Lance Taylor <ian@cygnus.com>
944
945 * gen-params: Check for struct tms in <sys/times.h>, defining
946 HAVE_SYS_TIMES accordingly.
947
948 Wed Feb 15 21:05:11 1995 Per Bothner <bothner@kalessin.cygnus.com>
949
950 * strops.c (_IO_str_count): Use LEN macro.
951 (_IO_str_seekoff): Update _len field.
952
953 Mon Feb 6 19:29:00 1995 Jason Merrill <jason@phydeaux.cygnus.com>
954
955 * gen-params: Default to short, long and long long for 16, 32 and
956 64 bit types, in case detection fails.
957
958 Wed Jan 25 18:07:30 1995 Jason Merrill <jason@phydeaux.cygnus.com>
959
960 * gen-params (_G_wint_t): Allow for broken promotions.
961
962 Tue Jan 24 16:15:40 1995 Per Bothner <bothner@kalessin.cygnus.com>
963
964 * stdstrbufs.cc (_IO_fake_stdiobufs): Add an extra layer of struct,
965 to force correct alignment on i960s.
966 (DEF_STDIOBUF, _IO_{stdin,stdout,stderr}_buf): Update accordingly.
967
968 Thu Jan 19 18:30:53 1995 Jason Merrill <jason@phydeaux.cygnus.com>
969
970 * config.shared (CXXINCLUDES): Add libstdc++ to includes for
971 building libg++.
972 (LIBS): Also link with libstdc++ when building libg++ toys.
973 Don't set EXPORT_ALL_VARIABLES; users will have to set
974 LD_LIBRARY_PATH themselves.
975
976 Fri Dec 30 16:38:13 1994 Mike Stump <mrs@cygnus.com>
977
978 * config/linux.mt: Fix build problem on linux 1.0.8.
979
980 Thu Dec 22 11:49:45 1994 J.T. Conklin (jtc@phishhead.cygnus.com)
981
982 * config/netware.mt: Use gcc to pre-link iostream.nlm's objects
983 instead of using nlmconv, so that references to functions in
984 libgcc.a are resolved.
985
986 * configure.in: Append .mt to target makefile fragment file names.
987
988 * floatconv.c (tens, tinytens, bigtens): Added const qualifier.
989
990 Tue Dec 20 09:59:50 1994 Mike Stump <mrs@cygnus.com>
991
992 * gen-params (VTABLE_LABEL_PREFIX): Since some systems have GNU nm
993 as nm, and they demangle by default, we have to notice this, and
994 try --no-cplus (linux) or --no-demangle when running nm.
995
996 Wed Dec 14 18:13:58 1994 Per Bothner <bothner@kalessin.cygnus.com>
997
998 * gen-params: To determine vt-name-mangling using dummy.C add
999 #include and #prama interface/implementation to avoid problem with
1000 assemblers that don't emit local symbols. Reported under HPUX 8
1001 by Thomas Arend <arend@blasius.Chemietechnik.Uni-Dortmund.DE>.
1002
1003 * streambuf.h (ios::ios): Move inline definition after
1004 that of ios::init (which ios::ios calls).
1005
1006 Sun Dec 4 19:50:32 1994 Per Bothner <bothner@kalessin.cygnus.com>
1007
1008 * fileops.c (_IO_file_init, _IO_file_close_it, _IO_file_sync):
1009 Set _offset to _IO_pos_BAD, to support applications that follow
1010 POSIX.1 rules on mixing file handles.
1011
1012 * fileops.c (_IO_file_overflow): Handle case that buffer was
1013 allocated (perhaps by setvbuf) but _IO_write_base is still 0.
1014
1015 * iostdio.h (setbuffer): #define as _IO_setbuffer.
1016 * streambuf.h, filebuf.cc: Removed filebuf::do_write.
1017
1018 Tue Nov 29 23:38:57 1994 Per Bothner (bothner@rtl.cygnus.com)
1019
1020 * floatconv.c (setword0, setword1): Fix typo.
1021
1022 Tue Nov 29 15:37:29 1994 Per Bothner <bothner@kalessin.cygnus.com>
1023
1024 * config.shared: Move -fno-implicit-template from CXXFLAGS
1025 to LIBCXXFLAGS. Tests are better run without it.
1026
1027 * floatconv.c (word0, word1): Re-place/re-implement using unions
1028 instead of casts to avoid optimizer problems.
1029
1030 * dbz/dbzmain.c: Renamed dirname -> dir_name to avoid OSF
1031 header file braindamage.
1032
1033 Sat Nov 5 19:44:00 1994 Jason Merrill (jason@phydeaux.cygnus.com)
1034
1035 * config.shared (LIBCFLAGS): Define.
1036 (LIBCXXFLAGS): Define.
1037 (DOING_LIBGXX): Define TOLIBGXX. Change LIBS to use -lg++. Add
1038 LD_LIBRARY_PATH and .EXPORT_ALL_VARIABLES:.
1039 (FLAGS_TO_PASS): Add LIBC{,XX}FLAGS.
1040 (XC{,XX}FLAGS): Set to LIBCFLAGS or CFLAGS depending on $LIBDIR.
1041 (COMPILE.c): Define, use in .c.o rule.
1042 (COMPILE.cc): Define, use in .cc.o rule.
1043
1044 Sat Nov 5 15:12:12 1994 Per Bothner <bothner@kalessin.cygnus.com>
1045
1046 * Makefile.in (VERSION): Update to 0.67.
1047
1048 * streambuf.h (ios::dont_close): Is now set by default.
1049 * fstream.h, fstream.cc (__fb_init): New function. Clears
1050 ios::dont_close. Change fstreambase constructors to call it.
1051 * strstream.cc: *strstream constructors must clear ios::dont_close.
1052 * iostream.cc: Simplify - don't need to set ios::dont_close.
1053 * ioassign.cc: Simplify - assume ios::dont_close is always set.
1054
1055 * fstream.h, fstream.cc: If _IO_NEW_STREAMS, put the
1056 filebuf as a member __my_fb.
1057 * strstream.{h,cc}: Likewile use a strstreambuf member __my_sb.
1058 * streambuf.h, stdstreams.cc, ioextend.cc:
1059 Fix if _IO_NEW_STREAMS to not use ios::dont_close.
1060
1061 * streambuf.h (class ios): Move rdbuf later, to avoid
1062 inability of g++ to inline.
1063 * filebuf.cc (filebuf::~filebuf): Call _IO_do_flush.
1064
1065 * config.shared: Emit rules to make depend.
1066 * depend: New file.
1067
1068 Fri Nov 4 17:19:11 1994 Per Bothner <bothner@kalessin.cygnus.com>
1069
1070 * README: Fix typos.
1071 * libio.h: Add comment. Update Copyright notice.
1072
1073 Fri Nov 4 21:46:30 1994 Paul Eggert <eggert@twinsun.com>
1074
1075 * libio.h (__P): Change argument name spelling from
1076 `paramlist' to `protos' for compatibility with BSDI 1.1.
1077
1078 Thu Nov 3 00:45:16 1994 Jason Merrill (jason@phydeaux.cygnus.com)
1079
1080 * config.shared (CXXFLAGS): Add -fno-implicit-templates.
1081
1082 Mon Oct 24 15:57:35 1994 Per Bothner <bothner@kalessin.cygnus.com>
1083
1084 * config.shared: Define NOSTDIC and use it for libio too.
1085
1086 Thu Oct 20 19:45:35 1994 Jason Merrill (jason@phydeaux.cygnus.com)
1087
1088 * iogetdelim.c: #include <stdlib.h>.
1089
1090 Thu Oct 20 17:09:52 1994 Per Bothner <bothner@kalessin.cygnus.com>
1091
1092 * iostream.h: Add classes _IO_istream_withassign and
1093 _IO_ostream_withassign. Re-type cin, cout, cerr, clog.
1094 (class iostream): Don't add extra _gcount field.
1095 * ioassign.cc: New file. Implement operator= for cin etc.
1096 * streambuf.h (class ios): Change return type of operator=.
1097 * Makefile.in (IOSTREAM_OBJECTS): Add ioassign.o.
1098
1099 * Makefile.in: Re-arrange, so linux.mt overrides can work.
1100
1101 * fileops.c (_IO_file_seekoff): Optimize seeks within buffer.
1102
1103 Wed Oct 19 14:25:47 1994 Jason Merrill (jason@phydeaux.cygnus.com)
1104
1105 * gen-params (wint_t): Return to using __WCHAR_TYPE__ for
1106 compatibility with gcc versions prior to 2.6.1.
1107
1108 Tue Oct 18 17:08:18 1994 Per Bothner <bothner@kalessin.cygnus.com>
1109
1110 * Makefile.in: Define _G_CONFOG_H as _G_config.h for Linux. Use it.
1111 (IO_OBJECTS): Add iogetdelim.o.
1112 * config/linux.mt: New file.
1113 * configure.in: Select config/linux.mt if Linux.
1114 * iogetdelim.c: Verious cleanups, many from
1115 Ulrich Drepper <drepper@ipd.info.uni-karlsruhe.de>.
1116 * libioP.h: Add _IO_getdelim. Use (void) for no-parameter functions.
1117
1118 Thu Oct 13 16:30:56 1994 Per Bothner (bothner@kalessin.cygnus.com)
1119
1120 * libio.h: Rename USE_DTOA to _IO_USE_DTOA for namespace reasons.
1121 * iostream.cc, iovfscanf.c, iovfprintf, floatconv.c:
1122 Update USE_DTOA -> _IO_USE_DTOA.
1123
1124 * libio.h (_IO_feof, _IO_ferror): Move to here ...
1125 * iolibio: ... from here
1126
1127 * iostream.cc (istream::get, istream::ignore, istream::read):
1128 Set _gcount to 0 if ipfx0 failed.
1129
1130 * iostream.cc (flush): Do virtual function call, rather than
1131 going through jumptable. (To get correct method in derived class.)
1132 Bug and fix from John Wiegley <jw@cis.ohio-state.edu>.
1133
1134 * iofdopen.c (O_ACCMODE): Define using O_RDWR, not O_RDWRITE.
1135
1136 * streambuf.h (ios::rdbuf(streambuf*)): New.
1137 * streambuf.h (ios::operator=): Make private (i.e. dis-allow).
1138
1139 Wed Oct 12 19:09:20 1994 Jason Merrill (jason@phydeaux.cygnus.com)
1140
1141 * gen-params: Define _G_NO_NRV and _G_NO_EXTERN_TEMPLATES if not
1142 compiling with g++.
1143
1144 Thu Oct 6 16:03:43 1994 Per Bothner (bothner@kalessin.cygnus.com)
1145
1146 * iostream.texi (ostrstream::str): Note that NUL is not written
1147 automatically.
1148
1149 Wed Oct 5 17:28:29 1994 Per Bothner (bothner@kalessin.cygnus.com)
1150
1151 * iogetdelim.c (_IO_getdelim): New function.
1152
1153 Wed Oct 5 15:40:22 1994 J.T. Conklin (jtc@phishhead.cygnus.com)
1154
1155 * config/netware.mt: New file, first cut at Netware NLM support.
1156 * configure.in (*-*-netware*): Use config/netware.mt.
1157
1158 * config.shared (NLMCONV, LD): New definition.
1159
1160 * gen-params: check for nm in ${binutils}/nm.new.
1161 * config.shared: Likewise.
1162
1163 Tue Oct 4 12:20:01 1994 Per Bothner (bothner@kalessin.cygnus.com)
1164
1165 * iomanip.h (omanip::operator<<): Make 2nd arg be const.
1166 Bug and fix reported by Greg McGary <gkm@magilla.cichlid.com>.
1167
1168 * strstream.cc (strstreambuf::pcount): Simplify, to match
1169 ANSI/ISO specification.
1170
1171 Mon Sep 26 15:19:52 1994 Jason Merrill (jason@deneb.cygnus.com)
1172
1173 * gen-params: Include <wchar.h> and <wctype.h> if they exist.
1174
1175 Thu Sep 8 14:41:41 1994 Jason Merrill (jason@deneb.cygnus.com)
1176
1177 * iostream.h (class istream): Declare operator>>(long double&).
1178 (class ostream): Define operator<<(long double).
1179
1180 * iostream.cc (istream::operator>>(long double&)): Define.
1181
1182 Wed Sep 7 14:42:29 1994 Per Bothner (bothner@kalessin.cygnus.com)
1183
1184 * iostream.texi (Overflow): Fix bugs in example.
1185
1186 Fri Sep 2 17:45:57 1994 Per Bothner (bothner@kalessin.cygnus.com)
1187
1188 * iostream.tex: Document a little on how to write your
1189 own streambuf-derived class, with an example.
1190
1191 Tue Aug 30 13:03:57 1994 Brendan Kehoe (brendan@lisa.cygnus.com)
1192
1193 * floatconv.c (s2b): Declare X and Y to be _G_int32_t.
1194 (diff, quorem): Declare BORROW, Y, and Z likewise.
1195 (ulp): Declare L likewise.
1196 (_IO_strtod): Declare L and AADJ likewise.
1197 (_IO_dtoa): Declare L and D likewise. Cast division of D by DS to
1198 _G_int32_t.
1199
1200 Mon Aug 29 16:01:54 1994 Per Bothner (bothner@kalessin.cygnus.com)
1201
1202 * iosetvbuf.c (_IO_setvbuf): If setting _IOFBF and no
1203 buffer was specified, call __doallocate.
1204
1205 * fileops.c, floatconv.c: Add a bunch of parentheses to
1206 shut up gcc warnings. Patch from H.J.Lu.
1207
1208 * stdiostream.cc (stdiobuf::sys_read): Inline call to getc
1209 for the normal case (size==1).
1210
1211 Sat Aug 20 12:14:52 1994 Per Bothner (bothner@kalessin.cygnus.com)
1212
1213 * Makefile.in (VERSION): Increase to 0.66.
1214
1215 Fri Aug 19 17:28:41 1994 Per Bothner (bothner@kalessin.cygnus.com)
1216
1217 * iolibio.h: Added _IO_printf prototype.
1218 Added extern "C" { ... } wrappers #ifdef __cplusplus.
1219 Bugs reported by Neal Becker <neal@ctd.comsat.com>.
1220
1221 Wed Aug 17 18:17:15 1994 Per Bothner (bothner@kalessin.cygnus.com)
1222
1223 * fileops.c (_IO_file_seekoff): For _IO_seek_cur, adjust for
1224 read-ahead before jumping to label dumb.
1225
1226 Wed Aug 3 13:15:01 1994 H.J. Lu (hjl@nynexst.com)
1227
1228 * libioP.h (CHECK_FILE(FILE,RET)): new, which checks for
1229 FILE == NULL and _IO_MAGIC_MASK.
1230 (COERCE_FILE(FILE)): merged into CHECK_FILE(FILE,RET)
1231 with typo fixes.
1232
1233 * iofread.c, iofwrite.c: add CHECK_FILE(fp, 0);
1234 * iofclose.c: add CHECK_FILE(fp, EOF); remove _IO_MAGIC_MASK check.
1235
1236 * iofflush.c, iofgetpos.c, iofputs.c, iofscanf.c,
1237 iofsetpos.c, iofvbuf.c, ioungetc.c:
1238 Add CHECK_FILE(fp, EOF) and remove COERCE_FILE(fp).
1239
1240 * iofgets.c: add CHECK_FILE(fp, NULL) and remove COERCE_FILE(fp).
1241 * iofprintf.c: add CHECK_FILE(fp, -1) and remove COERCE_FILE(fp).
1242 * ioftell.c: add CHECK_FILE(fp, -1L) and remove COERCE_FILE(fp).
1243 * iosetbuffer.c: add CHECK_FILE(fp, ) and remove COERCE_FILE(fp).
1244
1245 Fri Aug 12 15:35:39 1994 Per Bothner (bothner@kalessin.cygnus.com)
1246
1247 * iofdopen.c (_IO_fdopen): #define O_ACCMODE if it isn't.
1248 Still set O_APPEND if "a" is given, but don't unset it
1249 if it isn't. Added comment.
1250
1251 Mon Aug 8 13:11:00 1994 Per Bothner (bothner@kalessin.cygnus.com)
1252
1253 * gen-params (VTABLE_LABEL_PREFIX): Changes in the implementation.
1254 For look for _*vt[$_.]7*filebuf in the nm output, because that
1255 matches what g++ produces and has produced. Thus it should be
1256 somewhat more robust.
1257
1258 Sun Aug 7 22:52:49 1994 Per Bothner (bothner@kalessin.cygnus.com)
1259
1260 * gen-params (CC): Remove no-longer-needed -I options
1261 passed to xgcc (now they are implied by the -B options).
1262
1263 Wed Jul 20 16:41:13 1994 Per Bothner (bothner@kalessin.cygnus.com)
1264
1265 * Makefile.in (tooldir): Added definition, so we can do
1266 'make install' in this directory.
1267 Bug reported by Klamer Schutte <schutte@tpd.tno.nl>.
1268
1269 Mon Jul 18 18:02:34 1994 Per Bothner (bothner@kalessin.cygnus.com)
1270
1271 * gen-params (VTABLE_LABEL_PREFIX): Remove filename sppearing
1272 by itself. Add comment explaining what is going on.
1273
1274 Tue Dec 21 13:02:48 1993 H.J. Lu (hjl@jalod)
1275
1276 * libio.h: define _IO_uid_t and _IO_HAVE_ST_BLKSIZE
1277 as _G_xxxxxxxx.
1278
1279 Tue Dec 21 13:02:48 1993 H.J. Lu (hjl@jalod)
1280
1281 * iopopen.c: Don't include <errno.h>. It is included in "libioP.h".
1282
1283 * iopopen.c (_IO_proc_close) : check if fp is on the list
1284 before close it.
1285
1286 Thu Jul 14 16:38:47 1994 Per Bothner (bothner@kalessin.cygnus.com)
1287
1288 * gen-params (CONFIG_NM): Make sed scripts to find vtable name
1289 mangling more robost for different forms of nm output.
1290
1291 Tue Dec 21 13:02:48 1993 H.J. Lu (hjl@jalod)
1292
1293 * iofopen.c (_IO_fopen): don't check [redundantly] fp == NULL after
1294 IO_file_init(&fp->_file).
1295
1296 * iomanip.h (template<class TP> class iapp):
1297 change ostream to istream.
1298
1299 Tue Jul 12 14:09:02 1994 Per Bothner (bothner@kalessin.cygnus.com)
1300
1301 * Makefile.in (VERSION): Increase to 0.65.
1302 * libioP.h (builtinbuf_vtable): Only define #ifdef __cplusplus.
1303
1304 * gen-params (_G_int8_t): Only define if defined(__STDC__),
1305 because K&R C compilers don't have signed char.
1306 (_G_int64_t, _G_uint64_t): Only define if defined(__GNUC__)
1307 because other compilers may not have long long.
1308
1309 Sun Mar 06 13:10:21 1994 H.J. Lu (hjl@nynexst.com)
1310
1311 * floatconv.c (_IO_dtoa ()): fix a small memory leak, set the
1312 "on_stack" field to be 0 if "result" is not NULL.
1313
1314 Sat Mar 05 13:18:20 1994 H.J. Lu (hjl@nynexst.com)
1315
1316 * floatconv.c (_IO_dtoa ()): if the number of digits of the
1317 floating point number is more than the previous one, free the
1318 old string and allocate a new one.
1319 [Minor optimization to avoid Bcopy. -PB]
1320
1321 Mon Jul 11 10:53:41 1994 Per Bothner (bothner@kalessin.cygnus.com)
1322
1323 * fileops.c (_IO_file_underflow): 'count' should be unsigned,
1324 since it contains the return value of read. Reported by
1325 Teemu Torma <tot@trema.fi>.
1326
1327 Tue Dec 21 13:02:48 1993 H.J. Lu (hjl@nynexst.com)
1328
1329 * floatconv.c (_IO_strtod ()): make "+" and "-" as error.
1330
1331 Sat Jul 9 15:09:21 1994 Per Bothner (bothner@kalessin.cygnus.com)
1332
1333 Make sure _IO_FILE::_flags is always initialized correctly, for the
1334 C functions (fopen, fdopen, popen), and not just the C++ functions.
1335 * fileops.c (_IO_file_init): Set _flags to CLOSED_FILEBUF_FLAGS.
1336 * fileops.c (_IO_file_fopen): Remove bogus assignment.
1337 * filebuf.cc (filebuf constructors): Don't pass CLOSED_FILEBUF_FLAGS
1338 to streambuf constructor - _IO_file_init does it instead.
1339 * filebuf.cc (CLOSED_FILEBUF_FLAGS): Removed.
1340 * iopopen.c (_IO_proc_open): Use _IO_mask_flags.
1341
1342 Thu Jun 30 08:49:53 1994 Jason Merrill (jason@deneb.cygnus.com)
1343
1344 * dbz/Makefile.in (mostlyclean): Add target.
1345
1346 Wed Jun 29 09:30:12 1994 Jason Merrill (jason@deneb.cygnus.com)
1347
1348 * gen-params: Woops, can't run a C program to determine target
1349 characteristics. Sigh.
1350
1351 Tue Jun 28 03:11:33 1994 Jason Merrill (jason@deneb.cygnus.com)
1352
1353 * gen-params: Add _G_{,u}int{8,16,64}_t, use a short C program to
1354 determine what all these should be rather than trying to compare
1355 the MAX numbers in the shell.
1356
1357 Sun Jun 26 21:04:24 1994 Per Bothner (bothner@kalessin.cygnus.com)
1358
1359 * stdiostream.h, stdiostream.cc (stdiobuf::xsgetn): Removed.
1360 Too hairy. If we want to optimize it, we should do so in
1361 filebuf::xsgetn (or rather _IO_file_xsgetn).
1362
1363 * stdiostream.h (class stdiobuf), stdiostream.cc: Fix parameter
1364 and return types of virtual function to matcher base types (Oops!).
1365 * streamstream.cc (stdiobuf::xsgetn, stdiobuf::xsputn):
1366 Optimize to call fread.fwrite directly if !buffered.
1367 * fileops.c: Fix comment.
1368
1369 Fri Jun 24 11:28:18 1994 Per Bothner (bothner@kalessin.cygnus.com)
1370
1371 * stdiostream.h (istdiostream, ostdiostream): New classes.
1372
1373 More robust final cleanup.
1374 * cleanup.c (_IO_register_cleanup): Register _IO_cleanup,
1375 rather than _IO_flush_all.
1376 * filedoalloc.c: Update comment.
1377 * genops.c (_IO_unbuffer_all): New. Makes all files unbuffered.
1378 * genops.c (_IO_cleanup), libioP.h: New function. Call
1379 _IO_flush_all, and then _IO_unbuffer_all. This is in case C++
1380 destructors try to do output *after* _IO_cleanup is called.
1381
1382 Construct standard stdiobufs statically (using type punning).
1383 * stdstrbufs.c; Unless _STDIO_USES_IOSTREAM declare standard
1384 stdiobufs (for stdin, stdout, and stderr), using type punning
1385 (struct _IO_fake_stdiobuf). This avoids constructor-time problems.
1386 * stdstreams.cc: Remove the declarations of the stdiobufs.
1387 Instead use the new (fake) ones in stdstrbufs.cc. We no longer
1388 have to call ios::sync_with_stdio at constructor time.
1389
1390 Preliminary support for new ANSI streambuf::uflow virtual.
1391 * libioP.h (struct _IO_jump_t): Add __uflow field.
1392 * genops.c (_IO_default_uflow), libioP.h: New function.
1393 * fileops.c (_IO_file_jumps), iopopen.c (IO_proc_jumps),
1394 iovfprintf.c (_IO_helper_jumps), strops.c (_IO_str_jumps),
1395 streambuf.cc (_IO_streambuf_jumps): Add _IO_default_uflow.
1396 * genops.c (__uflow): New function.
1397 (save_for_backup): New function. Some code shared by
1398 __underflow and __uflow, moved out from the former.
1399 (_IO_default_uflow): New function.
1400 * libio.h (_IO_getc): Call __uflow, not __underflow.
1401
1402 Wed Jun 22 20:22:49 1994 Per Bothner (bothner@kalessin.cygnus.com)
1403
1404 Make sure that the vtable of a streambuf is always valid,
1405 which makes ios::rdbuf simpler and faster.
1406 * gen-params: Add code to determine _G_VTABLE_LABEL_HAS_LENGTH,
1407 _G_VTABLE_LABEL_PREFIX, _G_VTABLE_LABEL_PREFIX_ID, and
1408 _G_USING_THUNKS, which describe how virtual function tables are named.
1409 * stdfiles.c (FILEBUF_LITERAL): Moved to libioP.h.
1410 * libioP.h (builtinbuf_vtable): New (complicated) declaration.
1411 * filebuf.cc (filebuf::__new), strstream.cc (SET_STR_JUMPS):
1412 Initialize vtable to builtinbuf_vtable, not NULL.
1413 * stdstrbufs.cc: New file. Same as stdfiles.c, except that
1414 vtable is initialized to builtinbuf_vtable, not NULL.
1415 * streambuf.h (ios::rdbuf): Can now simplify/optimize, due to
1416 above changes. Always, just return _strbuf.
1417 * builtinbuf.h, builtinbuf.cc (builtinbuf::vtable,
1418 builtinbuf::get_builtin_vtable): Removed. No longer needed.
1419 * streambuf.h, builtinbuf.cc (ios::_IO_fix_vtable): No longer needed.
1420 Only defined #ifdef _STREAM_COMPAT, for binary compatibility.
1421 * Makefile.in: Move stdfiles.o from IO_OBJECTS to STDIO_WRAP_OBJECTS.
1422 (IOSTREAM_OBJECT): Add stdstrbufs.o.
1423 * Makefile.in (_G_config.h): Pass $(CXXFLAGS) as part of $(CXX).
1424
1425 Fri Feb 11 11:08:01 1994 SBPM Marc GINGOLD (marc@david.saclay.cea.fr)
1426
1427 * iovfprintf.c (helper_vfprintf): add
1428 hp->_IO_file_flags = _IO_MAGIC|(_IO_IS_FILEBUF+_IO_NO_READS);
1429 [This is needed because _IO_vfprintf checks for _IO_UNBUFFERED. -PB]
1430 [Actually: don't set _IO_IS_FILEBUF. -PB]
1431
1432 Wed Jun 22 13:49:22 1994 Per Bothner (bothner@kalessin.cygnus.com)
1433
1434 * stdiostream.cc, stdiostream.h (stdiobuf::buffered): New methods.
1435
1436 * iofdopen.c (_IO_fdopen): Various minor improvements.
1437
1438 * iovfscanf.c: Don't return EOF on control_failure.
1439
1440 Tue Dec 21 13:02:48 1993 H.J. Lu (hjl@nynexst.com)
1441
1442 * iovfscanf.c: Enforce the sequence of the conversion specifications.
1443
1444 Fri Jun 17 20:57:22 1994 Per Bothner (bothner@kalessin.cygnus.com)
1445
1446 * iofdopen.c: Use fcntl to check that requested access mode is
1447 compatible with existing access mode, and to change the
1448 O_APPEND file status flag if need be.
1449
1450 Thu Jun 16 17:33:50 1994 Per Bothner (bothner@kalessin.cygnus.com)
1451
1452 * streambuf.h (ios::init): Initialize all the fields.
1453 This may be overkill, but the current ANSI working paper requires it.
1454 * streambuf.h (ios::ios): Reimplement in terms of ios::init.
1455 * iostream.cc (Non-default constructors istream::istream,
1456 ostream::ostream, iostream::iostream): Cannot use a mem-initializer,
1457 because it is ignored if initializing a derived class. Instead,
1458 call ios::init.
1459
1460 Wed Jun 15 13:35:37 1994 Per Bothner (bothner@kalessin.cygnus.com)
1461
1462 * stdstreams.cc (ISTREAM_DEF): Fix typo (it's a _fake_istream, not
1463 a _fake_ostream). Reported by Jason Shirk <jshirk@gomez.intel.com>.
1464
1465 * stdiostream.h, stdiostream.cc (stdiobuf::~stdiobuf): New.
1466 Call _IO_do_flush.
1467 * stdiostream.cc (stdiobuf::sync): Call _IO_do_flush rather
1468 than filebuf::sync (to avoid bad seeks).
1469
1470 * libioP.h (_IO_do_flush): Add missing parentheses.
1471
1472 Fri Jun 3 19:16:57 1994 Jason Merrill (jason@deneb.cygnus.com)
1473
1474 * config.shared (CXXFLAGS): Remove -fno-implicit-templates.
1475
1476 * iomanip.h: Add explicit external instantiations.
1477
1478 Wed Jun 1 14:14:44 1994 Per Bothner (bothner@kalessin.cygnus.com)
1479
1480 * libio.h (struct _IO_FILE_plus): Move definition from here ...
1481 * libioP.h (struct _IO_FILE_plus): ... to here. Since this
1482 file is private to the implementation, we can rename the fields
1483 from the implementor's to the user's name anme space.
1484 (This avoids a lossage on SCO, whose stdio.h has a #define _file.)
1485 * iofdopen.c, iofopen.c, stdfiles.c: Fix field references accordingly.
1486 * iopopen.c (struct_IO_proc_file): Rename fields from
1487 implementor's name space to user's, and update usages.
1488 * streambuf.h (streambuf::_vtable): Re-implement to not need
1489 struct _IO_FILE_plus.
1490 * strfile.h (struct _IO_strfile_): Likewise.
1491
1492 Wed Jun 1 13:57:48 1994 Jason Merrill (jason@deneb.cygnus.com)
1493
1494 * config.shared (CXXFLAGS): Use -fno-implicit-templates instead of
1495 -fexternal-templates.
1496
1497 Tue May 31 08:49:28 1994 Mike Stump (mrs@cygnus.com)
1498
1499 * genops.c, iofclose.c, iofdopen.c, iofopen.c, iopopen.c: Be
1500 consistent about protecting #include <stdlib.h>.
1501
1502 * ioputs.c: Add #include <string.h>, to avoid warning on alpha.
1503
1504 * iofdopen.c: Add #include <stdlib.h>, so that malloc works on
1505 machines where sizeof(int) != sizeof(void *).
1506
1507 Mon May 30 17:26:49 1994 Per Bothner (bothner@kalessin.cygnus.com)
1508
1509 * pfstream.cc (ipfstream::ipfstream, opfstream::opfstream):
1510 Reverse sense of test of return value of procbuf::open.
1511 (It returns NULL on failure.)
1512
1513 * filedoalloc.c (_IO_file_doallocate): Remove dead code for
1514 USE_MALLOC_BUF. Add code to return EOF if ALLOC_BUF fails.
1515
1516 Sat May 28 13:47:47 1994 Jason Merrill (jason@deneb.cygnus.com)
1517
1518 * iomanip.cc: Explicitly instantiate smanip<int> and
1519 smanip<ios::fmtflags>.
1520
1521 Wed May 25 16:04:12 1994 Per Bothner (bothner@kalessin.cygnus.com)
1522
1523 * strfile.h: Use __P instead of _PARAMS.
1524
1525 Fri May 20 11:42:17 1994 Per Bothner (bothner@kalessin.cygnus.com)
1526
1527 * libio.h: Rename _PARAMS macro to __P for better glibc and BSD
1528 compatibility. (Also define _PARAMS for backwards compatibility.)
1529 * cleanup.c, iolibio.h, ioperror.c, iovfprintf.c, iovfscanf.c,
1530 libioP.h: Use __P instead of _PARAMS.
1531 * iostdio.h: Use __P instead of _ARGS.
1532
1533 * fileops.c (_IO_file_read): Minor stylistic tweak. (It is
1534 preferable to test errno *after* the error return.)
1535
1536 Fri May 13 15:25:36 1994 Jason Merrill (jason@deneb.cygnus.com)
1537
1538 * iostream.*: Add insertor and extractor for bool (just pretend
1539 it's an int).
1540
1541 Fri May 13 14:12:03 1994 Mike Stump (mrs@cygnus.com)
1542
1543 * gen-params: Check for builtin bool support.
1544
1545 Wed May 11 00:48:35 1994 Jason Merrill (jason@deneb.cygnus.com)
1546
1547 Make libg++ build with gcc -ansi -pedantic-errors
1548 * gen-params: #ifdef __STRICT_ANSI__, #define _G_NO_NRV.
1549 * pfstream.cc (ipfstream::ipfstream): Wrap use of variable-size
1550 array in #ifndef __STRICT_ANSI__.
1551
1552 Fri May 6 12:42:21 1994 Per Bothner (bothner@kalessin.cygnus.com)
1553
1554 * Makefile.in (VERSION): Increase to 0.64.
1555
1556 * isgetline.cc (istream::getline): The delimiter should *not*
1557 be included in the gcount().
1558
1559 * filedoalloc.c: #include <stdlib.h> (If __STDC__) to get malloc.
1560 * iostream.h (ostream::put): Remove overloaded versions, to match
1561 new working paper. (Actually just put inside _STREAM_COMPAT, for now.)
1562
1563 Tue May 3 14:14:57 1994 Per Bothner (bothner@kalessin.cygnus.com)
1564
1565 * genops.c (_IO_default_finish): Make robust when called
1566 multiple times on the same _IO_FILE*. (One way this can
1567 happen is by the builtinbuf destructor being followed by the
1568 streambuf destructor.)
1569
1570 Mon May 2 13:55:26 1994 Jason Merrill (jason@deneb.cygnus.com)
1571
1572 * gen-params: Actually determine wint_t rather than depending on
1573 cpp to provide it or defaulting to the underlying type for
1574 wchar_t.
1575
1576 Sat Apr 30 14:47:30 1994 Jason Merrill (jason@deneb.cygnus.com)
1577
1578 * gen-params: Add _G_wint_t, allow __*_TYPE__ to override values
1579 at compile time, fix definition of _G_ARGS.
1580
1581 Fri Apr 29 16:55:37 1994 Per Bothner (bothner@kalessin.cygnus.com)
1582
1583 * libio.h: Remove #pragma interface. (There is no implementation.)
1584
1585 Mon Mar 28 14:22:26 1994 Per Bothner (bothner@kalessin.cygnus.com)
1586
1587 * iostream.cc (ostream::operator<<(double)): Add/fix support
1588 for printing '+' when ios::showpos is set.
1589 (Fixes bug reported by Doug Moore <dougm@cs.rice.edu>.)
1590 * iostream.cc (istream::read): Set eofbit as well as failbit on eof.
1591 * iostream.cc (ostream::operator<<(int)): Fix conversion
1592 to unsigned (used to lose on INT_MIN).
1593 * iostream.cc (ostream::operator<<(long)): Use (unsigned long),
1594 rather than (unsigned) for temporary.
1595
1596 * config.shared, Makefile.in: Remove definitions and uses
1597 of XTRAFLAGS. It is no longer needed, since it is
1598 now implied by the -B flag.
1599
1600 Fri Mar 25 00:31:22 1994 Jason Merrill (jason@deneb.cygnus.com)
1601
1602 * builtinbuf.h: Add put /**/ around comment on trailing #endif.
1603
1604 * Makefile.in (c++clean): Make clean in tests subdir, too.
1605
1606 Wed Mar 23 16:42:09 1994 Doug Evans (dje@canuck.cygnus.com)
1607
1608 * configure.in: Remove Makefile.tem before creating it.
1609 Needed when configuring from read-only source trees.
1610
1611 Wed Mar 16 14:06:42 1994 Per Bothner (bothner@kalessin.cygnus.com)
1612
1613 * stdstreams.cc: Fix so that stdiobuf are used for cin/cout/cerr,
1614 unless _STDIO_USES_IOSTREAM is defined.
1615 * filebuf.cc (filebuf::setbuf): Fix confusion about return
1616 value from _IO_file_setbuf.
1617
1618 Sun Mar 13 00:54:12 1994 Paul Eggert (eggert@twinsun.com)
1619
1620 * config.shared: Ensure that `all' precedes `.PHONY';
1621 BSDI 1.1 needs this.
1622
1623 Sat Mar 12 03:58:00 1994 Paul Eggert (eggert@twinsun.com)
1624
1625 * config.shared: Output a definition of INSTALL that uses
1626 $${rootme}, not ${rootme}. Most `make's don't care, but BSDI
1627 1.1 `make' does.
1628
1629 Fri Mar 4 17:33:01 1994 Per Bothner (bothner@kalessin.cygnus.com)
1630
1631 * iopopen.c: #define _POSIX_SOURCE.
1632 * isgetline.c (istream::getline): Various fixes.
1633
1634 Thu Mar 3 17:58:20 1994 Per Bothner (bothner@kalessin.cygnus.com)
1635
1636 * iostream.cc (write_int): Fix test for when to add initial '0'
1637 when ios::oct and ios::showbase are set.
1638 For hex, showbase adds initial 0x (or 0X) regardless of val==0.
1639 Bugs reported by Phil Roth <proth@cs.uiuc.edu>.
1640
1641 Mon Feb 21 13:18:20 1994 H.J. Lu (hjl@nynexst.com)
1642
1643 * libio.h (_IO_PENDING_OUTPUT_COUNT(_fp)): return the
1644 pending output count in _fp.
1645
1646 Fri Feb 25 09:26:57 1994 Ian Lance Taylor (ian@cygnus.com)
1647
1648 * gen-params: For HAVE_SYS_WAIT, compile dummy.c, not dummy.C.
1649
1650 Tue Feb 22 11:19:09 1994 Per Bothner (bothner@kalessin.cygnus.com)
1651
1652 * streambuf.h, genops.c, libioP.h: Rename references to
1653 _IO_FILE fields other_gbase => _IO_save_base,
1654 _aux_limit => _IO_backup_base, and _other_egptr => _IO_save_end.
1655 * libio.h: Remove no-longer needed macros _other_gbase,
1656 _aux_limit, and _other_egptr.
1657 * genops.c (__underflow, _IO_default_finishh, _IO_unsave_markers):
1658 Check _IO_save_base for NULL before FREEing it or calling
1659 _IO_free_backup_area.
1660
1661 Thu Feb 17 15:26:59 1994 Per Bothner (bothner@kalessin.cygnus.com)
1662
1663 * gen-params: Improve deduction of _G_uint32 and _G_int32.
1664 Should now work for 16-bit, 32-bit, or 64-bit targets.
1665 * gen-params: Check for sys/wait.h using ${CC}, since it's
1666 now used in a C file, not a C++ file.
1667 * floatconv.c: Typedef _G_uint32_t as unsigned32, and use
1668 unsigned32 in place of unsigned long. (Needed for Alpha.)
1669
1670 Tue Feb 8 13:40:15 1994 Per Bothner (bothner@kalessin.cygnus.com)
1671
1672 * fileops.c (_IO_file_close_it): Simplify by using _IO_do_flush.
1673 * fileops.c (_IO_file_finish): Don't call _IO_file_close_it -
1674 do it inline. Call _IO_do_flush even if _IO_DELETE_DONT_CLOSE.
1675 * fileops.c (_IO_file_attach): Set _IO_DELETE_DONT_CLOSE.
1676 * genops.c (_IO_flush_all): Only call overflow if there is
1677 something to write.
1678 * iofclose.c (_IO_fclose): Check that magic number is correct,
1679 and clear it when done. Avoids crashing some buggy applications.
1680 * iogetline.c (_IO_getline): Don't gratuitously increment old_len.
1681 * iogets.c (_IO_gets): Take care to get required ANSi semantics.
1682
1683 Sun Feb 6 19:50:39 1994 Jason Merrill (jason@deneb.cygnus.com)
1684
1685 * iomanip.cc: Explicitly instantiate operator<< and >>.
1686
1687 Fri Feb 4 12:28:22 1994 Jason Merrill (jason@deneb.cygnus.com)
1688
1689 * config.shared (CXXFLAGS): Use -fexternal-templates.
1690
1691 * iomanip.h: Uncomment #pragma interface.
1692
1693 Thu Jan 20 13:48:40 1994 Per Bothner (bothner@kalessin.cygnus.com)
1694
1695 If no characters are read by fgets, ANSI C doesn't allow '\0' to
1696 be written to the buffer, but it is required by ANSI C++
1697 for istream::get and istream::getline. Both use _IO_getline ...
1698 * iogetline.c (_IO_getline): Don't write a '\0' at the end
1699 of the read data. The input buffer length does not include
1700 space for a '\0'.
1701 * iofgets.c, iogets.c: Change appropriately.
1702 Also check for _IO_ERR_SEEN, as required by ANSI.
1703 * isgetline.cc: Update accordingly.
1704
1705 Mon Jan 17 13:24:26 1994 Jason Merrill (jason@deneb.cygnus.com)
1706
1707 * Makefile.in (c++clean): Added target for compiler testing
1708 (i.e. make c++clean all).
1709
1710 Mon Jan 10 11:20:42 1994 Per Bothner (bothner@kalessin.cygnus.com)
1711
1712 * libio.h (_IO_putc): Add parentheses.
1713 Patch from Rik Faith <faith@cs.unc.edu>.
1714
1715 Tue Jan 4 01:32:28 1993 Hongjiu Lu (hjl@nynexst.com)
1716
1717 * genops.c (_IO_default_xsputn):
1718 (_IO_default_xsgetn):
1719 * ioignore.c: change "_IO_size_t count" to
1720 "_IO_ssize_t count".
1721 * iogetline.c: change "_IO_size_t len" to
1722 "_IO_ssize_t len".
1723
1724 Mon Dec 20 00:31:21 1993 Per Bothner (bothner@kalessin.cygnus.com)
1725
1726 * config.shared (CXXINCLUDES): Fix quoting of $(NOSTDINC).
1727
1728 Sun Dec 19 21:03:45 1993 Per Bothner (bothner@kalessin.cygnus.com)
1729
1730 * Makefile.in (VERSION): Increase to 0.63.
1731
1732 Fri Dec 17 13:02:44 1993 Per Bothner (bothner@kalessin.cygnus.com)
1733
1734 * iofread.c (_IO_fread): Return 0 if either size or count is 0.
1735 * iofwrite.c (_IO_fwrite): Return 0 if either size or count is 0.
1736 (This is consistent with fread, and most implementations, but not
1737 with a literal reading of the ANSI spec.)
1738 * iovfscanf.c (_IO_vfscanf): If got EOF while skipping spaces,
1739 set seen_eof and break (instead of returning).
1740 * sbscan.cc (streambuf::vscan): Set error state before returning.
1741 * streambuf.h: Add a forward declarations for class istream
1742 to work around a g++ vtable name mangling bug. (Patch from
1743 harry@pdsrc.hilco.com via Jeffrey A Law <law@snake.cs.utah.edu>.)
1744 * NEWS: New file.
1745
1746 Sat Dec 11 16:21:08 1993 Per Bothner (bothner@kalessin.cygnus.com)
1747
1748 * iovfprintf.c (struct helper_file, _IO_helper_overflow,
1749 helper_vfprintf, _IO_helper_jumps): New structs and functions.
1750 (_IO_vfprintf): Use helper_vfprintf to make printing to
1751 unbuffered files more efficient.
1752 * genops.c (_IO_default_underflow), libioP.h: New function.
1753
1754 * iovsscanf.c (_IO_vsscanf): The input string's length marks
1755 its logical end-of-file.
1756
1757 Wed Dec 8 13:20:46 1993 Per Bothner (bothner@kalessin.cygnus.com)
1758
1759 * indstream.cc (indirectbuf::sync()): Don't crash if get_stream()
1760 or put_stream() are NULL; sync() both streams even if error.
1761
1762 Sun Dec 5 19:24:29 1993 Brendan Kehoe (brendan@lisa.cygnus.com)
1763
1764 * iostreamP.h (convert_to_seekflags): Use _IO_seek_set instead of
1765 0 inside the conditial expressions.
1766
1767 * iofsetpos.c (_IO_fsetpos): Delete unused var `pos'.
1768
1769 Sat Dec 4 15:57:26 1993 Per Bothner (bothner@kalessin.cygnus.com)
1770
1771 * filedoalloc.c (_IO_file_doallocate): Change type of couldbetty
1772 to int, and type of size to _IO_size_t, instead of size_t.
1773 (Change needed for Ultrix, which incorrectly deliberately doesn't
1774 define size_t in <sys/types.h> if _POSIX_SOURCE is defined.)
1775
1776 Thu Dec 2 22:43:03 1993 Per Bothner (bothner@kalessin.cygnus.com)
1777
1778 * fileops.c (_IO_file_finish): Remove redundant call to _IO_un_link.
1779 * iofclose.c (_IO_fclose): Don't call fp->_jumps->__close; it's
1780 too low-level. Instead call _IO_file_close_it.
1781 * dbz/Makefile.in (rclean, distclean): Add some missing files.
1782
1783 Wed Dec 1 13:19:14 1993 Per Bothner (bothner@kalessin.cygnus.com)
1784
1785 * config/hpux.mt (MATH_H_INLINES): No longer define.
1786 Patch from Jeffrey A Law <law@snake.cs.utah.edu>.
1787
1788 Fri Nov 26 13:28:36 1993 Per Bothner (bothner@kalessin.cygnus.com)
1789
1790 * config.shared (CINCLUDES): Define default if libg++.
1791 * iofread.c: Use _IO_sgetn.c.
1792 * iolibio.h (_IO_clearerr): Fix typo.
1793 * genops.c (_IO_seekmark): Return 0 on success.
1794 * floactconv.c (Binit): Change to static.
1795 * iofclose.c (_IO_fclose): Check if file is _IO_stdin, _IO_stdout,
1796 or _IO_stderr; if so don't try to free it. Fix from hjl@nynexst.com.
1797
1798 * genops.c (_IO_default_sync), libioP.h: New function.
1799 * libioP.h (_IO_default_close): Use _IO_default_sync -same interface.
1800
1801 * Makefile.in: Increase version to 0.62.
1802 * iopopen.c (_IO_proc_close): Use waitpid (available in libibarty,
1803 if needed), rather than wait. Don't block/ignore SIGINT etc,
1804 as this is counter to Posix.2.
1805 * iopopen.c: Chain open proc_files, and have the child close
1806 the ones that are open (as required by Posix.2).
1807
1808 * fstream.h (fstreambase::rdbuf), strstream.h (strstreambase
1809 ::rdbuf): Call ios::rdbuf() instead of getting _strbuf directly.
1810
1811 * sbscan.cc (streambuf::vscan): Comment out duplicate default arg.
1812 * floatconv.c: Recognize Alpha and i860 as little-endian.
1813 * streambuf.cc: Return two bogus value returns from void functions.
1814 * iolibio.h, iofwrite.c: Fix buffer type to (const void*).
1815 * libio.h: Predefine of struct _IO_FILE to help non-g++-compilers.
1816 * libioP.h, pfstream.cc, stdfiles.c, iovfscanf.c: Cleanup syntax junk.
1817 * stdstreams.cc: Minor simplification.
1818 * streambuf.h, builtinbuf.cc: Add non-const ios::_IO_fix_vtable()
1819 for temporary binary compatibility.
1820
1821 * filedoalloc.c, fileops.c: Add _POSIX_SOURCE.
1822 * fileops.c, iofopen.c, iofputs.c, iostream.cc, strops.c,
1823 strstream.cc, genops.c: Add some missing #includes.
1824 * iofopen.c, iofdopen.c: Return NULL if malloc fails.
1825 * iovfscanf.c: Fix return type in strtol prototype.
1826 * fwrite.c: Remove bogus file.
1827
1828 Wed Nov 17 14:09:42 1993 Per Bothner (bothner@cygnus.com)
1829
1830 * builtinbuf.cc (ios::_IO_fix_vtable), streambuf.h: Make method
1831 const, to reduce problems with -Wcast-qual.
1832
1833 Tue Nov 16 19:30:42 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
1834
1835 * config.shared (CXXINCLUDE): use ${} instead of $() for NOSTDINC
1836
1837 Tue Nov 16 14:15:45 1993 Per Bothner (bothner@kalessin.cygnus.com)
1838
1839 * iopopen.c (_IO_proc_close): Re-structure to avoid
1840 declarations after statements.
1841 * floatconv.c: If not __STDC__, #define DBL_MANT_DIG.
1842 * config/isc.mt (G_CONFIG_ARGS): Remove bogus spaces.
1843 Patch from David A. Avery <daa@nic.cerf.net>.
1844
1845 Tue Nov 16 15:58:31 1993 Mark Eichin (eichin@cygnus.com)
1846
1847 * Makefile.in (_G_config.h): explicitly use $(SHELL) to run
1848 gen-params, since we know it is a script (we're explicitly looking
1849 in ${srcdir} for it) and /bin/sh might not be good enough.
1850
1851 Mon Nov 15 13:26:22 1993 Per Bothner (bothner@kalessin.cygnus.com)
1852
1853 * builtinbuf.cc: Don't depend on initialization of static
1854 variable builtinbuf::vtable, since that might happen after
1855 we need it (for a static constructor). Instead, initialize
1856 it when needed by inlining the code from get_builtin_vtable
1857 into ios::_IO_fix_vtable().
1858
1859 * floatconv.c: Avoid using #elif, which some C compilers lack.
1860 * iogetline.c, libioP.h: Make char parameter be int, to avoid
1861 some default promotion anomalies.
1862
1863 Fri Nov 5 11:49:46 1993 Per Bothner (bothner@kalessin.cygnus.com)
1864
1865 * config.shared (do-clean-dvi): Remove TeX work files.
1866 * iopopen.c (extern _IO_fork): Don't use parameter type void.
1867 * strops.c (_IO_str_init_static): Clear the allocate_buffer
1868 function pointer, to mark the strfile as being static.
1869 Bug fix from Mike Raisbeck <mike@pudding.rtr.COM>.
1870
1871 Thu Nov 4 10:44:24 1993 Per Bothner (bothner@kalessin.cygnus.com)
1872
1873 * filebuf.cc (filebuf:): Use sseekoff rather than seekoff
1874 (which loses if vtable pointer is NULL).
1875
1876 * iostream.cc (ostream::operator<<(long long n)): Fix thinko.
1877
1878 * Makefile.in (VERSION): Increase to 0.60.
1879 * Makefile.in (IO_OBJECTS): Added iopopen.o.
1880 * config.shared (DISTCLEAN): Also remove Make.pack.
1881 * config.shared (CXXINCLUDES): Add $(NOSTDINC).
1882
1883 * config.shared (INSTALL): Fix so it ues the correct install.sh
1884 whether $srcdir is absolute or relative.
1885
1886 * floatconv.c (DBL_MAX_10_EXP): Fix default value.
1887
1888 Wed Nov 3 10:20:49 1993 Per Bothner (bothner@kalessin.cygnus.com)
1889
1890 * gen-params: Make more robust to allow random junk (NeXT
1891 has spaces) before typedefs.
1892
1893 * fileops.c (_IO_file_overflow): Reduce code duplication.
1894 * Makefile.in (IO_OBJECTS): Remove ioputs.o.
1895
1896 * iovfscanf.c, libio.h: Extra parameter to _IO_vfscanf,
1897 for optionally setting an error indication..
1898 * iofscanf.c, ioscanf.c, iofscanf.c, iovsscanf.c: Fix calls to
1899 _IO_vfscanf to pass an extra NULL.
1900 * sbscan.cc (streambuf::vscan): If passed an extra stream,
1901 set its error state (using new _IO_vfscanf parameter.
1902
1903 * filedoalloc.c, fileops.c, genops.c, iogetline.c, ioignore.c,
1904 libio.h, libioP.h, streambuf.cc streambuf.h, strfile.h, strops.c,
1905 strstream.cc: Replace macros (_base, _ebuf, _eback, _gptr, _egptr,
1906 _pbase, _pptr, _epptr) by field names (_IO_buf_base, _IO_buf_end,
1907 _IO_read_base, _IO_read_pre, IO_read_end, _IO_write_base,
1908 _IO_write_ptr, _IO_write_end).
1909 * libio.h: Remove the old macros (which fixes a conflict.
1910
1911 Mon Nov 1 15:22:12 1993 Per Bothner (bothner@kalessin.cygnus.com)
1912
1913 * iostream.cc: Use _IO_sputn instead of sputn. _IO_sputn does
1914 not require a vtable pointer, and is also slightly faster.
1915
1916 * builtinbuf.{h,cc} (builtinbuf::setbuf): Fix return and
1917 parameter types.
1918
1919 Mon Oct 25 12:56:33 1993 Per Bothner (bothner@kalessin.cygnus.com)
1920
1921 Kludge to make sure _IO_FILE buffers get flushed before exit.
1922 * dbz/dbzmain.c, dbz/fake.c, dbz/byteflip.c:
1923 Invoke DBZ_FINISH macro (if defined) before (normal) exits.
1924 * dbz/Makefile.in (CFLAGS): Define DBZ_FINISH to call _IO_flush_all.
1925
1926 Sat Oct 23 22:10:53 1993 Per Bothner (bothner@kalessin.cygnus.com)
1927
1928 * Makefile.in (VERSION): Set to 0.60 for libg++ release.
1929 * fileops.c (_IO_file_attach): Set _offset to _IO_pos_BAD.
1930 * iostream.cc (ostream::flush): Fix thinkp.
1931 * editbuf.cc, isgetsb.cc, isscan.cc, osform.cc, parsestream.cc,
1932 pfstream.cc, sbform.cc, sbscan.cc, stdstreams.cc, stream.cc:
1933 Replace #include "ioprivate.h" by #include "libioP.h" (and
1934 sometimes stdarg.h, stdlib.h and/or string.h).
1935 * ioprivate.h: Removed.
1936
1937
1938 Thu Oct 21 19:24:02 1993 Per Bothner (bothner@kalessin.cygnus.com)
1939
1940 * PlotFile.h, SFile.h, editbuf.cc, editbuf.h, filebuf.cc,
1941 fstream.cc, fstream.h, indstream.cc, indstream.h, iomanip.cc,
1942 iomanip.h, ioprivate.h, iostream.cc, iostream.h, isgetline.cc,
1943 isgetsb.cc, parsestream.cc, parsestream.h, pfstream.cc,
1944 pfstream.h, procbuf.cc, procbuf.h, stdiostream.cc, stdiostream.h,
1945 stdstreams.cc, streambuf.cc, streambuf.h, strstream.cc,
1946 strstream.h: Remove old (duplicate) copyright notices.
1947
1948 * iostream.cc: Fix calls to sync() to be safe in the presence
1949 of vtable-less streambufs.
1950
1951 Wed Oct 20 15:22:04 1993 Per Bothner (bothner@kalessin.cygnus.com)
1952
1953 * streambuf.h (streambuf::underflow, streambuf::overflow):
1954 Don't make virtual functions pure.
1955 * streambuf.cc (streambuf::underflow, streambuf::overflow):
1956 Default definitions (return EOF).
1957 * fstream.h: Add new (int fd, char* buf, int len) constructors.
1958 These are deprecated, but added for AT&T compatibility.
1959 * fstream.cc fstreambase::fstreambase(int fd, char *p, int l): New.
1960
1961 Thu Oct 14 14:57:01 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
1962
1963 * configure.in: use 'mv -f' instead of 'mv'
1964
1965 Tue Oct 12 05:01:44 1993 Mike Stump (mrs@cygnus.com)
1966
1967 * floatconv.c: Fix typo, change __STDC to __STDC__.
1968
1969 Mon Oct 11 17:03:12 1993 Per Bothner (bothner@kalessin.cygnus.com)
1970
1971 * cleanup.c: It should be #if _G_HAVE_ATEXIT, not #ifdef.
1972
1973 * floatconv.c, iostrerror.c, iovfprintf.c, iovfscanf.c, libioP.h:
1974 Bunch of fixes to allow use of non-ANSI (K&R) C compilers.
1975
1976 * Makefile.in (iostream.list): Use CC=$(CXX) to force use of gcc.
1977 * README: New file.
1978
1979 Fri Oct 8 16:19:58 1993 Per Bothner (bothner@kalessin.cygnus.com)
1980
1981 * Makefile.in: Move ioungetc.o from STDIO_WRAP_OBJECTS to
1982 IO_OBJECTS (since it is needed for iovfscanf.c).
1983 * iostrerror.c: Add declaration of strerror.
1984
1985 Thu Oct 7 12:02:28 1993 Per Bothner (bothner@kalessin.cygnus.com)
1986
1987 * cleanup.c: New file, to cause flushing at exit.
1988 * filedoalloc.c: Cause flushing on exit.
1989 * Makefile.in (OSPRIM_OBJECTS): Add cleanup.o.
1990 * gen-params: Check for atexit.
1991
1992 Tue Oct 5 19:11:14 1993 Mike Stump (mrs@cygnus.com)
1993
1994 * ioperror.c (_IO_strerror): Add missing ()s in _PARAMS usage.
1995
1996 Tue Oct 5 10:33:37 1993 Per Bothner (bothner@kalessin.cygnus.com)
1997
1998 * iofprintf.c, iofscanf.c, ioprintf.c, ioscanf.c, iosprintf.c,
1999 iosscanf.c: Remove bogus semi-colon after va_dcl.
2000 * ioperror.c: Fix typos in declaration.
2001
2002 Mon Oct 4 17:12:22 1993 Per Bothner (bothner@kalessin.cygnus.com)
2003
2004 * configure.in (CLEAN): Define (as _G_config.h *.a).
2005
2006 * fileops.c (_IO_file_read): Don't assume EINTR is defined.
2007 * iosetbuf.c: Replace by generalized ...
2008 * iosetbuffer.c: ... variant, derived from BSD.
2009 * Makefile.in (STDIO_WRAP_OBJECTS): Change correspondingly.
2010 * iosetvbuf.c (iosetvbuf): Minor ANSI tweak.
2011 * iostdio.h (setbuf, setlinebuf): New #defines.
2012 * iolibio.h (_IO_setbuf, _IO_setlinebuf): (Re-)define as macros.
2013 * Makefile.in (LIBIO_OBJECTS): New macro.
2014
2015 Tue Sep 28 14:15:52 1993 Per Bothner (bothner@kalessin.cygnus.com)
2016
2017 * libioP.h (_IO_proc_open, _IO_proc_close): Add missing return types.
2018 * procbuf.cc: Belated fixes.
2019
2020 Mon Sep 27 14:04:47 1993 Per Bothner (bothner@kalessin.cygnus.com)
2021
2022 * Makefile.in: List new files. Add STDIO_WRAP_OBJECTS macro.
2023 * floatconv.c (d2b): Use Exp_msk11 instead of Exp_msk1.
2024 * iofgetpos.c (_IO_fgetpos), iofsetpos.c (_IO_fsetpos): Clean up.
2025 * iolibio.h: New file. Declarations of _IO_foo, for most foo
2026 where foo is a stdio function. (Remove these from libio.h.)
2027 * iostream.h (istream::istreambuf, ostream::ostreambuf): Move
2028 obsolete functions inside #ifdef _STREAM_COMPAT.
2029 * libio.h, libioP.h, streambuf.h, parsestream.h, stdiostream.h:
2030 Use _IO_fpos_t rather than _IO_pos_t.
2031 * iopopen.c: New file type, for pipe (popen-like) streams.
2032 * procbuf.cc: Now just a C++ wrapper for the files in iopopen.c.
2033 * streambuf.h (ios::unsetf): Return complete old value of flags.
2034 * iogets.c (_IO_gets(), ioungetc.c (_IO_ungetc), ioperror.c
2035 (_IO_perror), iostrerror.c (_IO_strerror): New files and
2036 functions, for stdio implementation.
2037 * iostdio.h: Add declarations for various recently-added functions.
2038
2039 Sun Sep 12 14:24:55 1993 Per Bothner (bothner@kalessin.cygnus.com)
2040
2041 * streambuf.h (ios::showpos):: Fix typo.
2042
2043 Fri Aug 27 12:05:47 1993 Per Bothner (bothner@kalessin.cygnus.com)
2044
2045 * iopadn.c (_IO_padn): Change to return count of chars written.
2046 * outfloat.c, iovfprintf.c: Change for new _IO_padn interface.
2047 * iostream.cc (ostream::operator<<): Make sure to set badbit
2048 on a failure (many places). Use _IO_padn more.
2049 * iostream.cc (ostream& ostream::operator<<(const void *p): Move to
2050 * osform.cc: ... here, to reduce linking-in-the-world syndrome.
2051 * osform.cc: Use rdbuf(), instead of _strbuf directly.
2052
2053 * genops.c (_IO_sgetn), libio.h: New function.
2054 * streambuf.h (streambuf.h::sgetn): Use _IO_sgetn.
2055 * SFile.cc (SFile::operator[]): Use sseekoff, not seekoff.
2056
2057 Thu Aug 26 10:16:31 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
2058
2059 * config.shared (SUBDIRS): only recurse if the directory is configured
2060
2061 Wed Aug 25 12:56:12 1993 Per Bothner (bothner@kalessin.cygnus.com)
2062
2063 * config/{hpux.mt, isc.mt, sco4.mt}:
2064 Moved from ../libg++/config (since they affect _G_config.h).
2065 * configure.in: Set target_make_frag to one of the above files.
2066
2067 Fri Aug 20 00:53:14 1993 Per Bothner (bothner@kalessin.cygnus.com)
2068
2069 * iofopen.c (iofopen): Fix type passed to _IO_un_link().
2070 * Makefile.in (_G_config.h): Pass $CC (not $CXX) as CC.
2071
2072 * configure.in (configdirs): Add dbz and stdio.
2073 * fileops.c (_IO_file_seekoff): Convert more old functionality.
2074 * iofdopen.c: Use mode parameter to set _flags.
2075 * iofscanf.c, ioputs.c, ioscanf.c, iosprintf.c: New files.
2076 * Makefile.in (IO_OBJECTS): Added new objects.
2077 * iostdio.h: Add feof. fscanf, puts, sprintf, vsprintf.
2078 * libio.h: Add _IO_vprintf macro.
2079 * iofopen.c: Invoke _IO_un_link if failure.
2080 * iovsprintf.c: Write terminating NUL.
2081
2082 * libioP.h: Add COERCE_FILE macro (by default does nothing).
2083 * iofclose.c, iofflush.c, iofgets.c, iofprintf.c, iofputs.c,
2084 iofread.c, ioftell.c, iofwrite.c, iosetbuf.c, iosetvbuf.c:
2085 Invoke COERCE_FILE macro.
2086 * ioftell.c: Use _IO_seekoff.
2087
2088 Wed Aug 18 22:49:56 1993 Per Bothner (bothner@kalessin.cygnus.com)
2089
2090 * sbform.cc (streambuf::form), sbscan.cc (streambuf::scan):
2091 Remove cast to _IO_va_list. (Loses if array type.)
2092
2093 * libio.h: Handle _IO_va_list for systems that need <stdarg.h>.
2094 * floatconv.h: Fix typo (reported by H.J.Lu).
2095
2096 Wed Aug 18 19:34:04 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
2097
2098 * configure.in (INSTALLDIR): handle native vs. cross case
2099
2100 * Makefile.in (install): don't use $TARGETLIB, set INSTALLDIR to
2101 $(libdir)
2102
2103 Wed Aug 18 12:10:03 1993 Per Bothner (bothner@kalessin.cygnus.com)
2104
2105 * Makefile.in: Rename iostream-files to iostream.list.
2106 * configure.in: Add iostream.list to MOSTLYCLEAN.
2107
2108 Tue Aug 17 18:56:59 1993 Per Bothner (bothner@kalessin.cygnus.com)
2109
2110 * Makefile.in: Depend on _G_config.h where appropriate.
2111 * config.shared (CXXINCLUDES): If doing libg++, search ../libio.
2112
2113 Tue Aug 17 17:34:24 1993 Per Bothner (bothner@kalessin.cygnus.com)
2114
2115 New directory. Based on old libg++/iostream code,
2116 but extensively re-written.
2117
2118
This page took 0.134512 seconds and 6 git commands to generate.