6f41a95795b98e469464d0c83df3c310d60ce447
[gnulib.git] / lib / ChangeLog
1 2003-05-20  Derek Price  <derek@ximbiot.com>
2
3         * stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is necessary.
4
5 2003-06-10  Simon Josefsson  <jas@extundo.com>
6
7         * strchrnul.h: New file.
8         * strchrnul.c: New file.
9
10 2003-06=10  Simon Josefsson <jas@extundo.com>
11
12         * argp.h: New file, from glibc.
13         * argp-ba.c: New file, from glibc.
14         * argp-eexst.c: New file, from glibc.
15         * argp-fmtstream.c: New file, from glibc.
16         * argp-fmtstream.h: New file, from glibc.
17         * argp-fs-xinl.c: New file, from glibc.
18         * argp-help.c: New file, from glibc.
19         * argp-namefrob.h: New file, from glibc.
20         * argp-parse.c: New file, from glibc.
21         * argp-pv.c: New file, from glibc.
22         * argp-pvh.c: New file, from glibc.
23         * argp-xinl.c: New file, from glibc.
24
25 2003-06-07  Jim Meyering  <jim@meyering.net>
26
27         * readtokens.h: Put `Free Software Foundation, Inc.'
28         in place of my name in the copyright comment.
29         Remove definition and uses of __P.
30
31         From coreutils.
32         * stat.c: Don't declare xmalloc explicitly.
33         Instead, include "xalloc.h".
34         * readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
35         xrealloc, and xcalloc return values.
36         * xgetcwd.c (xgetcwd): Include "xgetcwd.h".
37         Improve comment.
38         * xgetcwd.h: Remove definition/uses of PARAMS.
39
40 2003-06-06  Jim Meyering  <jim@meyering.net>
41
42         * stdbool_.h: Renamed from stdbool.h.in.
43
44 2003-06-06  Jim Meyering  <jim@meyering.net>
45
46         Merge from coreutils.
47         * same.c: (same_name): Declare *_basename locals to be `const'.
48         Consolidate declarations and initializations of *_base* locals.
49
50         Merge from coreutils.
51         This avoids a core dump on systems without GNU putenv,
52         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
53         * putenv.c (__set_errno, LOCK, UNLOCK): Define.
54         (unsetenv): New static function, from GNU libc.
55         (rpl_putenv): Use it.
56
57         * modechange.c: Remove trailing blanks.
58
59         Merge from coreutils.
60         * fsusage.c: Remove declaration of statfs.
61         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
62
63         * posixtm.c: Include <stdbool.h> unconditionally.
64
65 2003-06-05  Paul Eggert  <eggert@twinsun.com>
66
67         * mktime.c: Assume freestanding C89 or better.
68         (HAVE_LIMITS_H): Remove.  Assume it's 1.
69         (__P): Remove; not used.
70         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
71         (mktime, not_equal_tm, print_tm, check_result,
72         main): Use prototypes.  Use const * where appropriate.
73         (main): Fix typo in testing code that uncovered by above changes.
74         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
75
76 2003-06-04  Paul Eggert  <eggert@twinsun.com>
77
78         * mktime.c: Fix Debian bug 177940
79         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
80         (localtime_offset): Now long int, not time_t, because we want it
81         to be guaranteed to be signed.  All uses changed.
82         (__mktime_internal): If overflow would occur when adding offset,
83         don't add it.
84
85         Merge 'human' changes from coreutils.  Rewrite to support
86         locale-specific notations like thousands separators.
87         * human.c: Simplify authorship notice.
88         Include human.h immediately after config.h.
89         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
90         <limits.h>: Do not include, since human.h does.
91         (SIZE_MAX, UINTMAX_MAX): New macros.
92         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
93         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
94         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
95         (power_letter): Renamed from suffixes.
96         (generate_suffix_backwards): Remove.
97         (adjust_value): Now takes int style (because of human.h changes)
98         and long double value (for greater precision on some platforms).
99         (group_number): New function.
100         (human_readable): Use it.  Use integer options, not enum.
101         Put the options before the sizes in the arg list.
102         Support all the new options.
103         The old human_readable function has been removed;
104         use inttostr.h instead.
105         (human_readable, default_block_size, humblock):
106         Use uintmax_t, not int, for block sizes.
107         (human_readable_inexact, block_size_types): Remove.
108         (block_size_opts): New constant.
109         (human_options): Renamed from human_block_size, with new signature
110         that allows block sizes up to UINTMAX_MAX.  All callers changed.
111         * human.h: Add copyright and authorship notice.
112         Include <limits.h> and <stdbool.h> unconditionally.
113         (PARAMS): Remove.  All uses removed.
114         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
115         (enum human_inexact_style): Remove tag; now a nameless enum.
116         (human_floor, human_ceiling, human_round_to_even): Now have
117         values 2, 0, 1 rather than -1, 1, 0.
118         (human_group_digits, human_suppress_point_zero, human_autoscale,
119         human_base_1024, human_SI, human_B): New constants.
120         (human_readable_inexact, human_block_size): Remove.
121         (human_readable): Size args are now uintmax_t, not int.
122         (human_options): New decl.
123
124         * exclude.c: (new_exclude, add_exclude): Remove casts that are
125         unnecessary now that we assume C89 or better.  This change
126         imported from coreutils.
127
128         * mktime.c (__mktime_internal): Do not reject negative timestamps
129         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
130         in the 2003-05-30 sync from glibc.
131
132         .h files should stand alone, but we shouldn't include <sys/types.h>
133         if we can get away with just <stddef.h>.
134
135         * __fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
136         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
137         rather than <sys/types.h>, as we merely need size_t.
138         * dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
139         to get size_t.
140         * hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
141         Include <stdio.h>, to get FILE.
142         * memcasecmp.c: Don't include <sys/types.h>, as we can assume
143         memcasecmp.h has included <stddef.h> and all we need is size_t.
144         * memcoll.c: Include "memcoll.h", which gets us size_t and checks
145         our interface, instead of including <sys/types.h>
146
147 2003-06-02  Paul Eggert  <eggert@twinsun.com>
148
149         [from coreutils]
150         Fix some minor time-related bugs with POSIX time arguments.
151         Some valid time stamps were being rejected (notably -1, and
152         time stamps before 1900 on 64-bit hosts).  And some invalid
153         time stamps were being accepted, e.g. September 31.
154
155         * posixtm.h (posixtime): Return bool instead of time_t, so
156         that we can return (time_t) -1 successfully.
157         * posixtm.c: Likewise.
158         [HAVE_STDBOOL_H]: Include <stdbool.h>.
159         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
160         (t): Remove static var.
161         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
162         of static var.  All uses changed.
163         (year): Do not reject years before 1900; they can occur with
164         64-bit time_t.
165         (posix_time_parse): Do not check for out-of-range components;
166         that is now the caller's responsibility, since our checks were
167         only approximations.
168         (posixtime): Use mktime to check for out-of-range components,
169         since it knows them exactly.
170         If mktime returns (time_t) -1, check whether an error actually occurred
171         by invoking localtime on -1.
172         (main) [TEST_POSIXTIME]: Check for input data errors, and report
173         posixtime failures better.
174         Improve the test data (in comments only).
175
176 2003-05-30    <karl@gnu.org>
177
178         * mktime.c: update from libc.
179
180 2003-05-30  Bruno Haible  <bruno@clisp.org>
181
182         * config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
183         * localcharset.h: Likewise.
184         * localcharset.c: Likewise.
185
186 2003-05-28  Paul Eggert  <eggert@twinsun.com>
187
188         Assume the headers required for C89 freestanding compilers.
189         * addext.c, backupfile.c, fsusage.c, human.c, pathmax.h,
190         rpmatch.c, userspec.c, xreadlink.c, xstrtol.c: Include <limits.h>
191         without checking for HAVE_LIMITS_H.
192         * backupfile.c, fsusage.c, hash.c, human.c, safe-read.c, userspec.c,
193         xstrtol.c (CHAR_BIT) : Don't define, since <limits.h> is guaranteed
194         to do that.
195         * fatal.c: Include <stdarg.h> without checking for __STDC__.
196         * exclude.c: Include <stdbool.h> unconditionally.
197         * tempname.c: Include <stddef.h> unconditionally.
198         * hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
199         * modechange.c, rpmatch.c (NULL): Don't define, since
200         <stddef.h> does that.
201         * quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
202         * safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
203         * safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer needed.
204         * xstrtol.c: Likewise.
205         * safe-read.c: Remove TYPE_SIGNED; no longer needed.
206         * savedir.c: Include <stddef.h> instead of defining NULL.
207
208         * addext.c (addext): Use assignment rather than cast, to avoid
209         warnings on some platforms.
210
211         * mktime.c (__mktime_internal): Do not reject negative timestamps
212         arbitrarily.
213
214 2003-05-10  Bruno Haible  <bruno@clisp.org>
215
216         * linebreak.c (iconv_string_length): Don't return -1 just because the
217         string is longer than 4 KB.
218
219 2003-05-12  Jim Meyering  <jim@meyering.net>
220
221         * strftime.c (my_strftime): Let the `-' (no-pad) flag affect
222         the space-padded-by-default conversion specifiers, %e, %k, %l.
223
224 2003-05-03  Bruno Haible  <bruno@clisp.org>
225
226         Upgrade to Unicode-4.0.
227         * linebreak.c (nonspacing_table_data): Change width of U+00AD,
228         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
229         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
230         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
231         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
232         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
233         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
234         Change width of U+E0100..U+E01EF from 1 to 0.
235
236 2003-04-25  Bruno Haible  <bruno@clisp.org>
237
238         * copy-file.c: Include <stddef.h>, for size_t.
239
240 2003-04-25  Jim Meyering  <jim@meyering.net>
241
242         * copy-file.c (copy_file_preserving): Declare buf_size to be
243         of type size_t, not int.
244
245 2003-04-11  Jim Meyering  <jim@meyering.net>
246
247         Merge changes from Coreutils.
248
249         2003-03-22  Jim Meyering  <jim@meyering.net>
250
251         * strftime.c (widen): Cast alloca return value to proper type.
252
253         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
254
255         From GNU libc.
256         * strftime.c (my_strftime): Handle very large width
257         specifications for numeric values correctly.  Improve checks for
258         overflow.
259
260         2003-01-19  Jim Meyering  <jim@meyering.net>
261
262         * strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical definitions.
263         (nl_get_alt_digit) [! defined my_strftime]: Define.
264         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
265         _nl_get_alt_digit and _nl_get_walt_digit.
266
267         * strftime.c (my_strftime): Merge in locale-related changes from libc.
268         These changes have no effect outside of _LIBC.
269
270 2003-04-10  Bruno Haible  <bruno@clisp.org>
271
272         * findprog.h: New file, from GNU gettext.
273         * findprog.c: New file, from GNU gettext.
274
275 2003-04-05  Jim Meyering  <jim@meyering.net>
276
277         Merge changes from Coreutils.
278
279         * exclude.h (PARAMS): Remove definition and uses.
280         * exclude.c: Remove uses of `PARAMS'.
281
282         * dirname.c [TEST_DIRNAME]: Update build instructions for test.
283         Add test-cases for DOS filenames. Declare program_name.
284         (main): Set up program_name.  Patch by Rich Dawe.
285
286         * mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
287         error from mntctl.
288         Use mntctl's return value to drive the entry-processing loop, since
289         we can't rely on the value of the vmt_length member in the last
290         entry.  On some systems doing so could result in exhausting
291         virtual memory.  Based in part on a patch from Mike Jetzer.
292
293 2003-04-04  Bruno Haible  <bruno@clisp.org>
294
295         * linebreak.h: New file, from GNU gettext.
296         * linebreak.c: New file, from GNU gettext with slight modifications.
297         * lbrkprop.h: New file, from GNU gettext.
298
299 2003-04-03  Bruno Haible  <bruno@clisp.org>
300
301         * utf8-ucs4.h: New file, from GNU gettext.
302         * utf16-ucs4.h: New file, from GNU gettext.
303         * ucs4-utf8.h: New file, from GNU gettext.
304         * ucs4-utf16.h: New file, from GNU gettext.
305
306 2003-04-02  Bruno Haible  <bruno@clisp.org>
307
308         * binary-io.h: New file, from GNU gettext.
309
310 2003-04-01  Bruno Haible  <bruno@clisp.org>
311
312         * pathname.h: New file, from GNU gettext.
313         * concatpath.c: New file, from GNU gettext.
314
315 2003-03-30  Bruno Haible  <bruno@clisp.org>
316
317         * copy-file.c (copy_file_preserving): Don't set owner if the function
318         chown() doesn't exist.
319
320 2003-03-28  Bruno Haible  <bruno@clisp.org>
321
322         * copy-file.h: New file, from GNU gettext.
323         * copy-file.c: New file, from GNU gettext.
324
325 2003-03-18  Jim Meyering  <jim@meyering.net>
326
327         * quote.c (quote_n): Fix typo in comment.
328
329 2003-03-14  Jim Meyering  <jim@meyering.net>
330
331         Merge changes from Coreutils.
332         * obstack.h (obstack_object_size): Declare temporary, __o,
333         to be const, in order to avoid warnings.
334         (obstack_room): Likewise.
335         (obstack_empty_p): Likewise.
336
337 2003-03-13  Paul Eggert  <eggert@twinsun.com>
338
339         Merge changes from Bison.
340         * obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
341         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
342         when compiling Bison 1.875's `bitset bset = obstack_alloc
343         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
344         * hash.c: Include <stdbool.h> unconditionally.
345
346 2003-03-09  Paul Eggert  <eggert@twinsun.com>
347
348         * argmatch.c (EXIT_FAILURE): Define if the system doesn't.
349         Reported by Bruce Becker; see:
350         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
351
352 2003-03-03  Paul Eggert  <eggert@twinsun.com>
353             Bruno Haible  <bruno@clisp.org>
354
355         * mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
356         Reported by John Hughes, see
357         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
358
359 2003-02-19  Paolo Bonzino  <bonzini@gnu.org>
360
361         * poll_.h: New file.
362         * poll.c: New file.
363
364 2003-02-18  Paolo Bonzino  <bonzini@gnu.org>
365
366         * mathl.h: New file.
367         * acosl.c: New file.
368         * asinl.c: New file.
369         * atanl.c: New file.
370         * ceill.c: New file.
371         * cosl.c: New file.
372         * expl.c: New file.
373         * floorl.c: New file.
374         * frexpl.c: New file.
375         * ldexpl.c: New file.
376         * logl.c: New file.
377         * sincosl.c: New file.
378         * sinl.c: New file.
379         * sqrtl.c: New file.
380         * tanl.c: New file.
381         * trigl.c: New file.
382         * trigl.h: New file.
383
384 2003-02-17  Bruno Haible  <bruno@clisp.org>
385
386         * mkdtemp.h: New file, from GNU gettext.
387         * mkdtemp.c: New file, from GNU gettext.
388
389 2003-01-31  Bruno Haible  <bruno@clisp.org>
390
391         * rename.c: #undef rename before defining rpl_rename.
392         * strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
393
394 2003-01-30  Bruno Haible  <bruno@clisp.org>
395
396         * printf-args.h: New file, from GNU gettext.
397         * printf-args.c: New file, from GNU gettext.
398         * printf-parse.h: New file, from GNU gettext.
399         * printf-parse.c: New file, from GNU gettext.
400         * vasnprintf.h: New file, from GNU gettext.
401         * vasnprintf.c: New file, from GNU gettext.
402         * asnprintf.c: New file, from GNU gettext.
403         * vasprintf.h: New file, from GNU gettext with modifications.
404         * vasprintf.c: New file, from GNU gettext.
405         * asprintf.c: New file, from GNU gettext.
406
407 2003-01-29  Bruno Haible  <bruno@clisp.org>
408
409         * stpncpy.h: New file, from GNU gettext with modifications.
410         * stpncpy.c: New file, from GNU gettext with modifications.
411
412 2003-01-28  Bruno Haible  <bruno@clisp.org>
413
414         * c-ctype.h: New file, from GNU gettext, with changes suggested by
415         Paul Eggert.
416         * c-ctype.c: New file, from GNU gettext, with changes suggested by
417         Paul Eggert.
418
419 2003-01-27  Bruno Haible  <bruno@clisp.org>
420
421         * xsetenv.h: New file, from GNU gettext.
422         * xsetenv.c: New file, from GNU gettext.
423
424 2003-01-23  Bruno Haible  <bruno@clisp.org>
425
426         * minmax.h: New file, from GNU gettext, with comments from Paul Eggert.
427
428 2003-01-22  Bruno Haible  <bruno@clisp.org>
429
430         * exit.h: New file, from GNU gettext.
431
432 2003-01-11  Bruno Haible  <bruno@clisp.org>
433
434         * stpcpy.h (stpcpy): Use ANSI C function declarations.
435         * strcase.h (strcasecmp, strncasecmp): Likewise.
436
437 2003-01-14  Jim Meyering  <jim@meyering.net>
438
439         * same.c (same_name): Tweak a comment.
440
441 2003-01-11  Bruno Haible  <bruno@clisp.org>
442
443         * same.c (same_name): Reorder tests so as to avoid calling stat()
444         when a string comparison is sufficient.
445
446 2003-01-11  Bruno Haible  <bruno@clisp.org>
447
448         * readtokens.c (readtoken): Cast character to 'unsigned char', not
449         'unsigned int'.
450
451 2003-01-11  Bruno Haible  <bruno@clisp.org>
452
453         * hash-pjw.c: Add comment about low quality of this function.
454
455 2003-01-12  Paul Eggert  <eggert@twinsun.com>
456
457         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
458         to avoid collisions with libcurses and libreadline.
459
460         * Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
461         * getstr.h, getstr.c: Remove.
462         * getline.c: Include "getline.h", to check interface.
463         Move body of old getstr.c here: this defines MIN_CHUNK and
464         declares getdelim2, which is renamed from getstr.
465         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
466
467         * linebuffer.c (readlinebuffer): Renamed from readline.
468         All uses changed.
469         * linebuffer.h: Likewise.
470         (readline): Remove backward-compatibility macro.
471
472 2003-01-12  Jim Meyering  <jim@meyering.net>
473
474         * makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
475
476 2003-01-10  Bruno Haible  <bruno@clisp.org>
477
478         * alloca_.h: New file.
479         * getdate.y: Unconditionally include alloca.h.
480         * makepath.c: Likewise.
481         * setenv.c: Likewise.
482         * userspec.c: Likewise.
483
484 2003-01-09  Bruno Haible  <bruno@clisp.org>
485
486         * stdbool.h.in: New file.
487
488 2003-01-08  Bruno Haible  <bruno@clisp.org>
489
490         * safe-read.c: Include specification header first, to ensure its
491         selfcontainedness.
492         * full-write.c: Likewise.
493
494 2003-01-08  Jim Meyering  <jim@meyering.net>
495
496         * full-write.c: Undefine and define-away `const' after inclusion
497         of errno.h, not before.  Suggestion from Bruno Haible.
498
499 2003-01-07  Jim Meyering  <jim@meyering.net>
500
501         * full-write.c: Rework so that it may serve to define full_read, too.
502         * full-read.c: Simply #define FULL_READ and include full-write.c.
503
504 2003-01-06  Jim Meyering  <jim@meyering.net>
505
506         * version-etc.c: Update year in translatable copyright string.
507
508 2002-12-25  Bruno Haible  <bruno@clisp.org>
509
510         * strtoimax.c: Include <stdint.h> as an alternative to <inttypes.h>.
511         * xstrtol.h: Likewise.
512         * xstrtoimax.c: Likewise.
513         * xstrtoumax.c: Likewise.
514         * human.h: Likewise.
515
516         * tempname.c: Include <inttypes.h> too. Avoids a compilation error
517         on systems that have <inttypes.h> but not <stdint.h>.
518
519 2002-12-31  Paul Eggert  <eggert@twinsun.com>
520
521         * memcoll.c (memcoll): Fall back on a simple algorithm using
522         memcmp if strcoll doesn't work.
523
524 2002-12-23  Bruno Haible  <bruno@clisp.org>
525
526         * localcharset.h: New file.
527         * localcharset.c: Include it.
528         * unicodeio.c: Likewise.
529
530 2002-12-22  Bruno Haible  <bruno@clisp.org>
531
532         * utime.c (utime_null): No need to call ftruncate if the file was
533         nonempty.
534
535 2002-12-23  Bruno Haible  <bruno@clisp.org>
536
537         * memcoll.c (STRCOLL): New macro.
538         (memcoll): Use it.
539
540 2002-12-22  Bruno Haible  <bruno@clisp.org>
541
542         * getstr.h (getstr): Define, to avoid clash with libcurses.
543         * linebuffer.h (readline): Define, to avoid clash with libreadline.
544
545 2002-12-22  Bruno Haible  <bruno@clisp.org>
546
547         * getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not HAVE_TM_ZONE.
548
549 2002-12-23  Bruno Haible  <bruno@clisp.org>
550
551         * getline.h: Include <stddef.h>, for size_t.
552
553         * unicodeio.h: Include <stddef.h>, for size_t.
554         * unicodeio.c: Don't include <stddef.h>.
555
556 2002-12-17  Bruno Haible  <bruno@clisp.org>
557
558         * canon-host.c (strdup): Remove unused declaration.
559
560         * fsusage.c: Include full_read.h.
561         (get_fs_usage): Use full_read instead of safe_read.
562
563         * utime.c (utime_null): Use SAFE_READ_ERROR.
564
565 2002-12-11  Bruno Haible  <bruno@clisp.org>
566
567         * setenv.h: Rewritten to cope with systems that have setenv() but not
568         unsetenv().
569         * setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
570         modifications:
571
572         2002-12-11  Bruno Haible  <bruno@clisp.org>
573
574                 * setenv.c (alloca): Fall back to malloc.
575                 (freea): New macro.
576                 (setenv): Use freea() to free memory allocated with alloca().
577
578         2002-11-13  Bruno Haible  <bruno@clisp.org>
579
580                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
581                 function declarations.
582                 * unsetenv.c (unsetenv): Likewise.
583
584         2002-03-04  Bruno Haible  <bruno@clisp.org>
585
586                 Portability to AIX 4.3.3.
587                 * unsetenv.c: New file, extracted from setenv.c.
588                 * setenv.c: Move the unsetenv() function to unsetenv.c.
589
590         2001-12-20  Bruno Haible  <bruno@clisp.org>
591
592                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
593                 use malloc instead. For SunOS4.
594
595         2001-12-11  Bruno Haible  <bruno@clisp.org>
596
597                 * setenv.c: Declare alloca.
598                 (compar_fn_t): New typedef.
599                 (KNOWN_VALUE, STORE_VALUE): Use it.
600
601         * Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
602         setenv.h.
603
604 2002-12-10  Paul Eggert  <eggert@twinsun.com>
605
606         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
607         * exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
608         Choose values that are less likely to collide with system fnmatch
609         options.
610         * exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
611         defined (e.g., a pure POSIX system).
612         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
613         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
614
615 2002-12-06  Jim Meyering  <jim@meyering.net>
616
617         * error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
618
619         Merge in changes from libc's misc/error.c, in preparation
620         for the merge of gnulib's changes back into libc.
621
622         * error.c (_): Define only if not already defined.
623         Move definition to follow all #include directives.
624         Include unlocked-io.h only if !_LIBC.
625         [_LIBC]: Include <libio/libioP.h>.
626         [USE_IN_LIBIO]: Include <libio/iolibio.h>
627         (fflush): Tweak definition to use INTUSE.
628         (putc): Define.
629
630 2002-12-05  Paul Eggert  <eggert@twinsun.com>
631
632         * alloca.c [defined emacs]: Include "lisp.h".
633         (xalloc_die) [defined emacs]: New macro.
634         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
635         [! defined emacs]: Include <xalloc.h>.
636         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
637         (pointer): Typedef to POINTER_TYPE *.
638         (malloc): Remove decl; we now always use xmalloc.
639         (alloca): Use old-style definition, since Emacs needs this.
640         Check for arithmetic overflow when computing combined size.
641
642 2002-12-04  Paul Eggert  <eggert@twinsun.com>
643
644         Do not generate unlocked-io.h automatically, since it's easier to
645         maintain it by hand.
646
647         * unlocked-io.h: New file, from GNU diffutils,
648         but with proper copyright notice and attribution.
649         * gen-uio: Remove.
650         * Makefile.am: Add copyright notice.
651         (libfetish_a_SOURCES): Add unlocked-io.h.
652         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
653         (DISTCLEANFILES, io_functions): Remove macros.
654         (EXTRA_DIST): Remove gen_uio.
655         (unlocked-io.h): Remove rule.
656
657 2002-12-04  Jim Meyering  <jim@meyering.net>
658
659         Reflect the fact that stat.c and lstat.c are no longer generated.
660         * Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
661         (DISTCLEANFILES): Likewise.
662         (EXTRA_DIST): Likewise.
663         (all_local): Don't depend on stat.c or lstat.c.
664         (stat.c, lstat.c): Remove rules.
665         (EXTRA_DIST): Remove xstat.in.
666
667         * xstat.in: Remove file.  Contents moved into stat.c.
668         * stat.c: New file.  Contents mostly from xstat.in.
669         * stat.c: Rework so that it may serve to define rpl_lstat, too.
670         * lstat.c: New file. Simply #define LSTAT and include stat.c.
671
672         * safe-read.c: Rework so that it may serve to define safe_write, too.
673         * safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
674
675 2002-12-03  Jim Meyering  <jim@meyering.net>
676
677         * safe-read.c, safe-write.c: Change variable names and comments, but
678         not semantics, to minimize the differences between these two files.
679         (safe_read): Change comment to mention SAFE_READ_ERROR.
680
681         * safe-read.c (IS_EINTR): Define.
682         (safe_read): Use IS_EINTR in place of in-function cpp directives.
683
684 2002-12-02  Bruno Haible  <bruno@clisp.org>
685
686         * safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
687         Define, taken from safe-read.c.
688         (INT_MAX): Provide fallback.
689         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
690         * safe-write.h (SAFE_WRITE_ERROR): Define.
691
692         * safe-read.c (EINTR): Remove definition.
693         (safe_read): Don't use EINTR if it is absent.
694
695 2002-12-02  Jim Meyering  <jim@meyering.net>
696
697         * safe-read.c (EINTR): Define.
698         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
699         (INT_MAX): Provide fallback.
700         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
701
702         * safe-read.h (SAFE_READ_ERROR): Define.
703
704 2002-12-01  Jim Meyering  <jim@meyering.net>
705
706         * safe-read.c: (safe_read): Also exit the loop when read returns zero.
707         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
708
709 2002-11-27  Paul Eggert  <eggert@twinsun.com>
710
711         * hash.c (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
712         hash_rehash): Replace `if (limit <= value) abort ();' with
713         `if (! (value < limit)) abort ();', for readability.
714
715 2002-11-26    <karl@gnu.org>
716
717         * strdup.c: copy from libc again, with jim's ok.
718         * .cppi-disable: re-add strdup.c
719
720 2002-11-25    <karl@gnu.org>
721
722         * strtoll.c: copy from libc, meaning we now #include <strtol.c>
723         instead of "strtol.c".
724
725 2002-11-25  Jim Meyering  <jim@meyering.net>
726
727         * mktime.c: Sync from libc, now that it has the latest fix.
728
729 2002-11-24    <karl@gnu.org>
730
731         * error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
732         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
733
734 2002-11-24  Jim Meyering  <jim@meyering.net>
735
736         Update from coreutils:
737
738         * mktime.c: Merge in changes from libc.
739
740         Avoid a link-time failure on some Linux systems.
741         * mktime.c (STATIC): Define to be empty (_LIBC) or `static' (otherwise).
742         (__mon_yday): Declare with the STATIC attribute.
743         (__mktime_internal): Likewise.
744         Based on a report from Greg Schafer.
745
746 2002-11-23  Jim Meyering  <jim@meyering.net>
747
748         * sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
749         Use `unsigned', not `int', as type of index.
750
751         * xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
752
753         * fsusage.c: Remove unneeded parentheses around operands of `defined'.
754
755 2002-11-22  Paul Eggert  <eggert@twinsun.com>
756
757         * hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
758         hint that one should use `if (! x) abort ();' rather than `assert
759         (x);', and anyway it's one less thing to worry about configuring.
760         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
761         hash_rehash, hash_insert): Use abort rather than assert.
762
763 2002-11-22  Paul Eggert  <eggert@twinsun.com>
764
765         * quotearg.h: Allow multiple inclusion by surrounding with
766         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
767         so that we can be included first.
768         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
769         * quotearg.c: Include quotearg.h immediately after config.h.
770         No need to include stddef.h or sys/types.h any more.
771         Surround local include files with "", not "<>".
772         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
773         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
774         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
775         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
776         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
777         (ISPRINT): Remove; no longer needed now that we assume C89.
778
779         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
780         Preserve errno.
781
782         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
783         quotearg_char): Use SIZE_MAX rather than
784         (size_t) -1 when we are talking about "infinity".
785
786         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
787
788 2002-11-22  Bruno Haible  <bruno@clisp.org>
789
790         * safe-read.h: Assume C89. Add comments.
791         (safe_read): Change return type to size_t.
792         * safe-read.c (safe_read): Change return type to size_t. Handle byte
793         counts > SSIZE_MAX correctly.
794         * safe-write.h: New file.
795         * safe-write.c: New file.
796         * full-read.h: New file.
797         * full-read.c: New file.
798         * full-write.h: Assume C89. Add comments.
799         * full-write.c: Include safe-write.h.
800         (full_write): Rewritten to use safe_write.
801         Suggested by Jim Meyering and Paul Eggert.
802
803 2002-11-21  Bruno Haible  <bruno@clisp.org>
804
805         Remove case insensitive option matching.
806         * argmatch.h (argcasematch): Remove declaration.
807         (ARGCASEMATCH): Remove macro.
808         (__xargmatch_internal): Remove case_sensitive argument.
809         (XARGMATCH): Update.
810         (XARGCASEMATCH): Remove macro.
811         * argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
812         case_sensitive argument.
813         (argcasematch): Remove function.
814         (__xargmatch_internal): Remove case_sensitive argument.
815         (main): Use XARGMATCH instead of XARGCASEMATCH.
816
817         * xmalloc.c: Change compile-time error message. Add comment about
818         required autoconf version.
819
820 2002-11-21  Jim Meyering  <jim@meyering.net>
821
822         * strdup.c (strdup): Tweak comment and initial #if/#include.
823
824         Merge in changes from the coreutils.
825
826         2002-09-25  Paul Eggert  <eggert@twinsun.com>
827         * fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include <stdint.h>.
828         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
829         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
830         int.  Work more efficiently if X is the same width as uintmax_t.
831         Do not compare X to -1, to avoid bogus compiler warning.
832         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
833         Don't assume that f_frsize and f_bsize are the same type.
834
835         * mountlist.c: #undef MNT_IGNORE before defining it, to avoid warning
836         on FreeBSD.
837
838         * makepath.c (make_path): Restore umask *before* creating the final
839         component.
840         (make_path): Minor reformatting.
841
842         * xmalloc.c: Adjust to work with new autoconf macros, AC_FUNC_MALLOC
843         and AC_FUNC_REALLOC: test #ifndef HAVE_MALLOC/HAVE_REALLOC.
844
845         * mountlist.h (ME_DUMMY): Don't count entries of type `auto' as dummy
846         ones.  At least on GNU/Linux systems, `auto' means something else.
847         From Michael Stone.
848
849 2002-11-20  Paul Eggert  <eggert@twinsun.com>
850
851         Merge argmatch cleanups from Bison.  Assume C89.
852
853         * argmatch.c: Include config.h here, not in argmatch.h.
854         Include stdlib.h, for EXIT_FAILURE.
855         Always include <string.h>, since we assume C89.
856         (EXIT_FAILURE): Remove pre-C89 bug workaround.
857         * argmatch.h: Do not include <config.h> or <sys/types.h>.
858         Include <stddef.h> instead, since it's all we need for size_t.
859         (PARAMS): Remove.  All uses removed.
860         (ARRAY_CARDINALITY): Do not bother to #undef.
861         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
862         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
863         Remove unnecessary parentheses.
864         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
865         Insert necessary parentheses.
866         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
867         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
868
869 2002-11-19  Bruno Haible  <bruno@clisp.org>
870
871         * mbswidth.c: Include mbswidth.h right at the beginning.
872         * mbswidth.h: Include <stddef.h>, for size_t.
873
874         * mbswidth.h (PARAMS): Remove macro.
875         (mbswidth, mbsnwidth): Use ANSI C function declarations.
876         * mbswidth.c (mbswidth, mbsnwidth): Likewise.
877
878         * gcd.h (PARAMS): Remove macro.
879         (gcd): Use ANSI C function declarations.
880         * gcd.c (gcd): Likewise.
881
882 2002-11-15  Bruno Haible  <bruno@clisp.org>
883
884         * strcspn.c: Include <stddef.h>.
885         (strcspn): Use ANSI C function declaration. Change return type to
886         size_t. Use NULL.
887         * strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
888         (strpbrk): Use NULL.
889         * strpbrk.h (PARAMS): Remove macro.
890         (strpbrk): Use ANSI C function declaration.
891         * strstr.c: Don't include <sys/types.h>.
892         * strstr.h (PARAMS): Remove macro.
893         (strstr): Use ANSI C function declarations.
894
895 2002-11-06  Bruno Haible  <bruno@clisp.org>
896
897         * gcd.h (gcd): Change argument type to 'unsigned long'.
898         * gcd.c (gcd): Likewise.
899
900 2002-11-05  Bruno Haible  <bruno@clisp.org>
901
902         * gcd.h: New file, from gettext-0.11.5.
903         * gcd.c: New file, from gettext-0.11.5.
904
905 2002-11-05  Bruno Haible  <bruno@clisp.org>
906
907         * error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
908         * getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
909         * obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
910         * regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
911
912         * argmatch.c: Include gettext.h instead of <locale.h> and <libintl.h>.
913         * makepath.c: Include gettext.h instead of <locale.h> and <libintl.h>.
914
915         * closeout.c: Include gettext.h instead of <libintl.h>.
916         * human.c: Include gettext.h instead of <libintl.h>.
917         * quotearg.c: Include gettext.h instead of <libintl.h>.
918         * rpmatch.c: Include gettext.h instead of <libintl.h>.
919         * unicodeio.c: Include gettext.h instead of <libintl.h>.
920         * userspec.c: Include gettext.h instead of <libintl.h>.
921         * version-etc.c: Include gettext.h instead of <libintl.h>.
922         * xmalloc.c: Include gettext.h instead of <libintl.h>.
923         (textdomain): Remove definition.
924         * xmemcoll.c: Include gettext.h instead of <libintl.h>.
925
926         * long-options.c: Remove include of <libintl.h> and definition of _.
927         * same.c: Remove include of <libintl.h> and definition of _.
928
929 2002-11-04  Bruno Haible  <bruno@clisp.org>
930
931         * stpcpy.h: New file, from GNU gettext-0.11.5.
932         * strcase.h: New file, from GNU gettext-0.11.5.
933         * strpbrk.h: New file, from GNU gettext-0.11.5.
934         * strstr.h: New file, from GNU gettext-0.11.5.
935         * xgetcwd.h: New file, from GNU gettext-0.11.5.
936
937 2002-05-09  Bruno Haible  <bruno@clisp.org>
938
939         * config.charset: Update for newest glibc. Add canonical names
940         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
941
942 2002-05-09  Bruno Haible  <bruno@clisp.org>
943
944         * localcharset.c (get_charset_aliases): Add more Windows specific
945         aliases.
946
947 2002-05-08  Owen Taylor  <otaylor@redhat.com>
948
949         * config.charset: A few additions for Solaris.
950
951 2001-12-05  Bruno Haible  <bruno@clisp.org>
952
953         * localcharset.c (locale_charset): Don't return an empty string.
954
955 2001-10-23  Bruno Haible  <haible@clisp.cons.org>
956
957         * config.charset: msdos in uk_UA uses CP1125.
958
959 2001-08-05  Bruno Haible  <haible@clisp.cons.org>
960
961         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
962         * localcharset.c (locale_charset): Declare as extern "C".
963
964 2002-02-15  Bruno Haible  <bruno@clisp.org>
965
966         * config.charset [msdosdjgpp]: For Russian, use CP866.
967
968 2002-02-11  Bruno Haible  <bruno@clisp.org>
969
970         * config.charset: Add support for NetBSD.
971
972 2002-09-25    <karl@gnu.org>
973
974         * strdup.c: copy from libc/string (via ../config/srclist*).
975         * getopt*: copy from libc/posix.
976         * gettext.h: copy from gettext.
977         * .cppi-disable: add strdup.c, gettext.h.
978
979 2002-07-01  Jim Meyering  <meyering@lucent.com>
980
981         * c-stack.c: Include sys/time.h.
982         From Volker Borchert.
983
984 2002-06-11  Paul Eggert  <eggert@twinsun.com>
985
986         * fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
987         New macro.  Use it uniformly instead of
988         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
989         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
990         reported by Vin Shelton.
991
992 2002-06-22  Jim Meyering  <meyering@lucent.com>
993
994         * fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
995         redefinition due to Solaris5.6's definition in /usr/include/sys/euc.h.
996
997 2002-06-22  Paul Eggert  <eggert@twinsun.com>
998
999         * c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
1000         Do not assume SA_SIGINFO behavior.
1001         Bug reported by Jim Meyering on NetBSD 1.5.2.
1002
1003 2002-06-22  Jim Meyering  <meyering@lucent.com>
1004
1005         * c-stack.c, c-stack.h: New files, from diffutils-2.8.2.
1006
1007         * exitfail.c, exitfail.h: Likewise.
1008         * Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
1009
1010         * Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
1011         of fnmatch.h.
1012         (EXTRA_DIST): Add fnmatch_loop.c.
1013         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
1014
1015         * fnmatch_loop.c: New file, from diffutils-2.8.2.
1016         * fnmatch.c: Update from diffutils-2.8.2.
1017         * fnmatch_.h: New file.  From diffutils-2.8.2.
1018         * fnmatch.h: Remove file.
1019
1020 2002-06-18  Paul Eggert  <eggert@twinsun.com>
1021
1022         * file-type.h: Report an error if neither S_ISREG nor
1023         S_IFREG is defined, instead of using a test specific to glibc
1024         2.2.  This should be safe, since POSIX requires S_ISREG and
1025         Unix Version 7 had S_IFREG.  We don't need to check for
1026         <sys/types.h> since we don't use any symbols that it defines.
1027
1028 2002-06-15  Jim Meyering  <meyering@lucent.com>
1029
1030         * file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
1031         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
1032         have been included before this file.
1033
1034 2002-06-13  Richard Dawe  <richdawe@bigfoot.com>
1035
1036         * Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than $@-t,
1037         so that each temporary file name is unique and valid in the first
1038         8 characters, for operation under DOS.
1039
1040 2002-06-15  Jim Meyering  <meyering@lucent.com>
1041
1042         Work even with DJGPP 2.03, which lacks support for symlinks.
1043         From Richard Dawe.
1044         * xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
1045         is defined.
1046         * lchown.c (S_ISLNK): Likewise.
1047
1048 2002-06-14  Jim Meyering  <meyering@lucent.com>
1049
1050         * file-type.h: Use the version from diffutils-2.8.2.
1051         * file-type.c: Likewise.
1052
1053 2002-05-27  Jim Meyering  <meyering@lucent.com>
1054
1055         Fix a problem seen only on nonconforming systems whereby ls.c's
1056         use of localtime, and then of gettimeofday would cause trouble:
1057         the localtime call used to initialize rpl_gettimeofday's save
1058         mechanism would clobber ls's current local time information so
1059         that in any long listing the first file would always be listed
1060         with date 1970-01-01.  Analysis by Volker Borchert.
1061
1062         * gettimeofday.c (localtime): Undefine.
1063         (rpl_localtime): New function.
1064
1065 2002-05-22  Jim Meyering  <meyering@lucent.com>
1066
1067         * Makefile.am (libfetish_a_SOURCES): Add file-type.c and file-type.h.
1068         * file-type.h: New file.
1069         * file-type.c (file_type): New file/function.  Extracted from diffutils.
1070
1071 2002-04-29  Paul Eggert  <eggert@twinsun.com>
1072
1073         * hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
1074
1075 2002-04-28  Paul Eggert  <eggert@twinsun.com>
1076
1077         * sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
1078         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
1079         of 127, since 64 is the largest conceivable number for ancient
1080         nonstandard hosts.
1081         * sig2str.c: Do not include <sys/wait.h>; no longer needed.
1082
1083 2002-04-28  Jim Meyering  <meyering@lucent.com>
1084
1085         * sig2str.c (WTERMSIG): Remove definition (unused).
1086
1087 2002-04-28  Paul Eggert  <eggert@twinsun.com>
1088
1089         * sig2str.h, sig2str.c: New files.
1090         * Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
1091
1092 2002-04-24  Jim Meyering  <meyering@lucent.com>
1093
1094         * gettext.h: New file, from Gettext.
1095         * Makefile.am (INCLUDES): Remove -I../intl.
1096         (libfetish_a_SOURCES): Add gettext.h.
1097
1098 2002-04-16  Jim Meyering  <meyering@lucent.com>
1099
1100         * readutmp.h (UT_TYPE): Remove definition (now in who.c).
1101         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
1102         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
1103
1104 2002-04-12  Jim Meyering  <meyering@lucent.com>
1105
1106         * dirfd.h (dirfd): Elide prototype if dirfd is a macro.
1107
1108 2002-03-10  Jim Meyering  <meyering@lucent.com>
1109
1110         * makepath.c (make_path): Remove a comma from a diagnostic.
1111         Suggestion from Santiago Vila.
1112
1113 2002-03-08  Jim Meyering  <meyering@lucent.com>
1114
1115         * rename.c: Mention that this wrapper is needed also on
1116         mips-dec-ultrix4.4 systems.
1117
1118 2002-03-02  Jim Meyering  <meyering@lucent.com>
1119
1120         * gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
1121         not HAVE_CLOCK_SETTIME.
1122
1123 2002-02-27  Paul Eggert  <eggert@twinsun.com>
1124
1125         * nanosleep.h: Rename to....
1126         * timespec.h: New name for nanosleep.h.  All uses changed.
1127
1128         * gettime.c: New file.
1129         * settime.c: New file.
1130         * stime.c: Remove.
1131
1132         * Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
1133         timespec.h.  Remove nanosleep.h.
1134
1135 2002-02-25  Paul Eggert  <eggert@twinsun.com>
1136
1137         * acl.c, acl.h: New files.
1138         * Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
1139
1140 2002-02-24  Jim Meyering  <meyering@lucent.com>
1141
1142         * strnlen.c (strnlen): Define-away/undef so that an inconsistent
1143         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
1144         cause trouble.  Reported by Nelson Beebe.
1145
1146 2002-02-23  Paul Eggert  <eggert@twinsun.com>
1147
1148         * path-concat.c (xpath_concat): Reorder code to pacify
1149         compilers that don't know that xalloc_die never returns.
1150
1151 2002-02-20  Jim Meyering  <meyering@lucent.com>
1152
1153         * getdate.c: Regenerate using bison-1.33.
1154
1155 2002-02-15  Paul Eggert  <eggert@twinsun.com>
1156
1157         * posixver.c, posixver.h: New files.
1158         * Makefile.am (libfetish_a_SOURCES): Add them.
1159
1160 2002-02-02  Paul Eggert  <eggert@twinsun.com>
1161             Bruno Haible  <bruno@clisp.org>
1162
1163         * unicodeio.h (print_unicode_char): Add exit_on_error argument.
1164         (fwrite_success_callback): New declaration.
1165         * unicodeio.c (unicode_to_mb): New function, extracted from
1166         print_unicode_char. Call failure callback instead of error.
1167         (fwrite_success_callback): New function.
1168         (exit_failure_callback): New function.
1169         (fallback_failure_callback): New function.
1170         (print_unicode_char): Call unicode_to_mb.
1171
1172 2002-01-26  Jim Meyering  <meyering@lucent.com>
1173
1174         * Makefile.am (getdate$U.o): Depend on unlocked-io.h.
1175
1176 2002-01-22  Jim Meyering  <meyering@lucent.com>
1177
1178         * Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
1179         Otherwise, some versions of automake would omit the rule that makes
1180         Makefile from Makefile.in.
1181
1182 2001-01-21  Paul Eggert  <eggert@twinsun.com>
1183
1184         * xmemcoll.h, xmemcoll.c: New files.
1185         * Makefile.am (libfetish_a_SOURCES): Add them.
1186         * memcoll.c: Include errno.h, and declare errno if not defined.
1187         (memcoll): Set errno to zero if there is no error.
1188
1189         * quotearg.c (quotearg_buffer_restyled):
1190         Fix bug with quoting buffers containing NUL when backslashing escapes.
1191         This bug was exposed by the other changes in this patch.
1192         (quotearg_n_options): New arg ARGSIZE.
1193         All callers changed.
1194         (quoting_options_from_style): New function.
1195         (quotearg_n_style): Use it.
1196         (quotearg_n_style_mem): New function.
1197
1198         * quotearg.h (quotearg_n_style_mem): New function.
1199
1200 2002-01-16  Jim Meyering  <meyering@lucent.com>
1201
1202         * getdate.y: Add three semicolons, each just before a closing brace.
1203         Bison (as of version 1.31) no longer papers over that mistake.
1204
1205 2002-02-14  Paul Eggert  <eggert@twinsun.com>
1206
1207         * backupfile.c (ISDIGIT): Comment fix.
1208         * getdate.y (ISDIGIT): Likewise.
1209         * posixtm.c (ISDIGIT, year): Likewise.
1210         * strverscmp.c (ISDIGIT): Likewise.
1211         * userspec.c (ISDIGIT): Likewise.
1212
1213 2002-01-05  Jim Meyering  <meyering@lucent.com>
1214
1215         * version-etc.c (version_etc_copyright): Update copyright year.
1216
1217 2001-01-19  Paul Eggert  <eggert@twinsun.com>
1218
1219         * closeout.c (close_stdout_status): If ferror (stdout), do
1220         not silently exit merely because the output buffer happens to
1221         have nothing pending.
1222
1223 2001-12-18  Paul Eggert  <eggert@twinsun.com>
1224
1225         See the big note in ../ChangeLog.
1226         * human.c (suffixes): Prefer K to k for 1024.
1227         (generate_suffix_backwards): New function.
1228         (human_readable_inexact): Use it.
1229         * xstrtol.c (__xstrtol): If there is no number but there
1230         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
1231         Accept 'K' as well as 'k'.
1232
1233 2001-12-15  Jim Meyering  <meyering@lucent.com>
1234
1235         * regex.h (__restrict_arr): Update from libc.
1236
1237         * mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
1238         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
1239         (STREQ): Define.
1240
1241 2001-12-10  Jim Meyering  <meyering@lucent.com>
1242
1243         * linebuffer.c: Remove explicit declarations of xmalloc and xrealloc,
1244         Instead, include "xalloc.h".
1245         (initbuffer): Don't cast xmalloc return value to char*.
1246         (readline): Reword comment.
1247         Don't cast xrealloc return value to char*
1248         Return NULL, not 0.
1249
1250 2001-12-09  Jim Meyering  <meyering@lucent.com>
1251
1252         * modechange.c (mode_compile): Add cast to avoid pedantic warning about
1253         `signed and unsigned type in conditional expression'.
1254         * posixtm.c (posix_time_parse): Likewise.
1255
1256         * xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
1257
1258         * readtokens.c (readtoken): Declare an index to be of type unsigned
1259         to avoid a pedantic warning.
1260
1261         * getstr.c: Don't include assert.h.
1262         (getstr): Remove warning-evoking assertions.
1263         Return -1 if offset parameter is out of bounds.
1264         Change the type of a local from int to size_t.
1265
1266         * strftime.c (my_strftime_localtime_r): Include this function
1267         definition in the `#if ! HAVE_TM_GMTOFF' block.
1268
1269         * xgethostname.c: Remove declarations of xmalloc and xrealloc.
1270         Include xalloc.h instead.
1271
1272 2001-12-02  Jim Meyering  <meyering@lucent.com>
1273
1274         * tempname.c: Don't declare getenv, thus reverting the change of
1275         2001-11-18.  It's no longer necessary, now that stdlib.h is always
1276         included.
1277
1278         * regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
1279         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
1280
1281 2001-11-30  Akim Demaille  <akim@epita.fr>
1282
1283         * xstrdup.c: Include xalloc.h, so that xstrdup is declared
1284         before being defined.
1285
1286 2001-11-27  Paul Eggert  <eggert@twinsun.com>
1287
1288         * quotearg.h (quotearg_n, quotearg_n_style):
1289         First arg is int, not unsigned.
1290         * quotearg.c (quotearg_n, quotearg_n_style): Likewise.
1291         (SIZE_MAX, UINT_MAX): New macros.
1292         (quotearg_n_options): Abort if N is negative.
1293         Avoid overflow check on hosts where size_t is 64 bits and int
1294         is 32 bits, as overflow is impossible there.
1295         Fix off-by-one typo that caused unnecessary reallocation.
1296
1297 2001-11-27  Jim Meyering  <meyering@lucent.com>
1298
1299         * tempname.c: Merge with version from libc.
1300         * regex.c: Likewise.
1301
1302         * tempname.c: Include stdlib.h unconditionally.  On some old systems
1303         for which STDC_HEADERS is 0, it was not included, resulting in a
1304         warning about an integer-to-pointer conversion problem with getenv.
1305         Reported by Volker Borchert.
1306
1307 2001-11-26  Jim Meyering  <meyering@lucent.com>
1308
1309         * gtod.h: Remove file.
1310         * Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
1311         * gettimeofday.c: Don't include gtod.h.
1312         (GTOD_init): Remove function.
1313         (rpl_gettimeofday): Do its job here instead, rather than aborting.
1314         Suggestion from Volker Borchert.
1315
1316 2001-11-23  Jim Meyering  <meyering@lucent.com>
1317
1318         * hash.h (struct hash_table): Don't define here.  Merely declare it.
1319         * hash.c (struct hash_table): Define it here instead.
1320
1321 2001-11-22  Jim Meyering  <meyering@lucent.com>
1322
1323         * hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
1324
1325 2001-11-18  Paul Eggert  <eggert@twinsun.com>
1326
1327         * tempname.c (TMP_MAX): Remove; no longer needed.
1328         (TEMPORARIES): New macro.
1329         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
1330         removes an artificial limitation (e.g. HP-UX 10.20, where
1331         TMP_MAX is 17576).
1332
1333 2001-11-18  Jim Meyering  <meyering@lucent.com>
1334
1335         * tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
1336         on SunOS4.
1337
1338         * Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
1339         files will be created before anything else.
1340
1341 2001-11-17  Jim Meyering  <meyering@lucent.com>
1342
1343         * modechange.c (mode_adjust): Fix error introduced on 1999-04-26
1344         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
1345         rather than group writable.  Patch by Juan F. Codagnone.
1346
1347         * readtokens.c: Remove explicit declarations of xmalloc and xrealloc,
1348         Instead, include "xalloc.h".
1349
1350         * mountlist.c: Include unlocked-io.h after all system headers.
1351         Remove explicit declarations of xmalloc, xrealloc,
1352         and xstrdup.  Instead, include "xalloc.h".
1353
1354         * argmatch.c, closeout.c, error.c, exclude.c: Include unlocked-io.h.
1355         * fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c: Likewise.
1356         * mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
1357
1358         * regex.c, sha.c, version-etc.c, yesno.c: Likewise.
1359         Reported by Padraig Brady.
1360
1361         * mkstemp.c: #undef mkstemp.
1362         Include config.h.
1363         (rpl_mkstemp): Rename from mkstemp.
1364         Protoize.
1365
1366 2001-11-16  Jim Meyering  <meyering@lucent.com>
1367
1368         * physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
1369         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
1370         determine the amount of total physical memory, use pstat_getstatic.
1371         HPUX-11 doesn't define _SC_PHYS_PAGES.
1372         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
1373         If sysconf couldn't be used to determine the amount of available
1374         physical memory, use both pstat_getstatic and pstat_getdynamic.
1375         Based on a patch from Bob Proulx.
1376
1377 2001-11-05  Jim Meyering  <meyering@lucent.com>
1378
1379         * xstat.in (slash_aware_lstat): Correct a misleading comment.
1380
1381 2001-11-03  Jim Meyering  <meyering@lucent.com>
1382
1383         * argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
1384         in argmatch_to_argument call.
1385
1386         * dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
1387         argument.
1388
1389         * hash.c (hash_clear): Fix a bug that could lead to an infloop or
1390         e.g., a fault due to an attempt to free a NULL pointer.
1391
1392 2001-11-01  Jim Meyering  <meyering@lucent.com>
1393
1394         * dirfd.c, dirfd.h: New files.
1395         * Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
1396
1397         * hash.c (hash_print) [TESTING]: Clean up.
1398
1399 2001-10-22  Paul Eggert  <eggert@twinsun.com>
1400
1401         * hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
1402         to avoid a warning if -Wall.
1403
1404 2001-10-21  Paul Eggert  <eggert@twinsun.com>
1405
1406         * regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
1407
1408 2001-10-21  Jim Meyering  <meyering@lucent.com>
1409
1410         * obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
1411         this code would end up calling gettext even in packages built
1412         with --disable-nls.
1413         * getopt.c (_): Likewise.
1414         * regex.c (_): Likewise.
1415
1416 2001-10-20  Paul Eggert  <eggert@twinsun.com>
1417
1418         * error.c (strerror_r): Do not declare unless !_LIBC.
1419         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
1420         Use strerror_r that is only a macro, even if it is not a function.
1421         (strerror): Check for HAVE_DECL_STRERROR before declaring.
1422         (private_strerror): Use prototypes, not old-style function definition.
1423         (print_errno_message): New function.
1424         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
1425         char*-flavored one.
1426         (error_tail, error, error_at_line): Use it.
1427
1428 2001-10-11  Jim Meyering  <meyering@lucent.com>
1429
1430         * argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
1431         and quote_n (1, ... to avoid clobbering a buffer.
1432
1433 2001-10-05  Jim Meyering  <meyering@lucent.com>
1434
1435         * Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and hash-pjw.h.
1436         * hash-pjw.c: New file (factored out of fileutils' remove.c).
1437         * hash-pjw.h: New file.
1438
1439 2001-09-30  Jim Meyering  <meyering@lucent.com>
1440
1441         * mountlist.c [MOUNTED_GETFSSTAT]:
1442         Include <sys/ucred.h>, for Apple Darwin.
1443         Include sys/mount.h and sys/fs_types.h only if available.
1444         (FS_TYPE): Define.
1445         (read_filesystem_list): Use FS_TYPE.
1446
1447 2001-09-29  Paul Eggert  <eggert@twinsun.com>
1448
1449         * exclude.c (excluded_filename): 0 -> false, since it's
1450         a boolean context.
1451
1452 2001-09-28  Paul Eggert  <eggert@twinsun.com>
1453
1454         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
1455         #defines strtoimax.  Also treat the other strto* functions
1456         like strtoimax.
1457
1458         * xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
1459         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
1460         (strtoimax, strtoumax): Do not declare if already defined as a macro.
1461
1462 2001-09-26  Jim Meyering  <meyering@lucent.com>
1463
1464         Most macros in unlocked-io.h had the wrong number of arguments.
1465         * gen-uio: New script.
1466         (USE_UNLOCKED_IO): Define to 1 if not already defined.
1467         * unlocked-io.hin: Remove file.
1468         * Makefile.am (unlocked-io.h): Rewrite to use a separate script,
1469         rather than trying to embed it here.
1470         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
1471         Reported by Padraig Brady.
1472
1473 2001-09-25  Volker Borchert  <bt@teknon.de>
1474
1475         * gettimeofday.c (rpl_gettimeofday): Declare local variable `result'.
1476
1477 2001-09-23  Jim Meyering  <meyering@lucent.com>
1478
1479         * mountlist.c: Remove useless parentheses in #if directives.
1480         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
1481         the deprecated MOUNTED symbol is no longer defined in mntent.h.
1482
1483 2001-09-22  Jim Meyering  <meyering@lucent.com>
1484
1485         * localcharset.c: Update from latest gettext.
1486         * config.charset: Likewise.
1487
1488 2001-09-20  Jim Meyering  <meyering@lucent.com>
1489
1490         * xstrtol.c (strtoimax): Guard declaration with
1491         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
1492         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
1493         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
1494         (strtoumax): Likewise, for completeness (it wasn't necessary).
1495
1496 2001-09-06  Paul Eggert  <eggert@twinsun.com>
1497
1498         * strtoimax.c (HAVE_LONG_LONG):
1499         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
1500         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
1501         to work around bug in IBM C compiler.
1502
1503 2001-09-16  Jim Meyering  <meyering@lucent.com>
1504
1505         * mkdir.c: New file.
1506
1507 2001-09-04  Paul Eggert  <eggert@twinsun.com>
1508
1509         * xgetcwd.c: Revert some of the previous change; intead,
1510         fix the HAVE_GETCWD_NULL code to behave more like the
1511         !HAVE_GETCWD_NULL code used to.
1512
1513         Include "xalloc.h".
1514         (xgetcwd): Do not return NULL when memory is exhausted; instead,
1515         invoke xalloc_die.
1516
1517 2001-09-04  Paul Eggert  <eggert@twinsun.com>
1518
1519         * xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
1520         Use ssize_t, not int, to store result of readlink.
1521         Check for ssize_t overflow as well as size_t overflow,
1522         as POSIX says the result of readlink is implementation-defined
1523         when ssize_t overflows.
1524         Remove unnecessary cast to char*.
1525         Use free+malloc instead of realloc, as the storage doesn't need
1526         to be preserved and it's clearer and can be more efficient that way.
1527         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
1528         * xreadlink.h (xreadlink): Update prototype.
1529
1530 2001-09-03  Paul Eggert  <eggert@twinsun.com>
1531
1532         * exclude.c (fnmatch_no_wildcards): Fix confusion between
1533         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
1534         spotted by Jim Meyering.
1535
1536 2001-09-03  Jim Meyering  <meyering@lucent.com>
1537
1538         * xreadlink.c (xreadlink): Preserve errno around `free' during failure.
1539
1540 2001-09-03  Paul Eggert  <eggert@twinsun.com>
1541
1542         * xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
1543         like the HAVE_GETCWD_NULL code.
1544         Include pathmax.h if not HAVE_GETCWD.
1545         Do not include xalloc.h.
1546         (INITIAL_BUFFER_SIZE): New symbol.
1547         Do not use xmalloc / xrealloc, since the caller is responsible for
1548         handling errors.  Preserve errno around `free' during failure.
1549         Do not overrun buffer when using getwd.
1550
1551 2001-09-03  Paul Eggert  <eggert@twinsun.com>
1552
1553         * xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
1554         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use getcwd (NULL, 0).
1555
1556 2001-09-02  Jim Meyering  <meyering@lucent.com>
1557
1558         * error.c: Update from GNU libc.
1559
1560 2001-09-01  Jim Meyering  <meyering@lucent.com>
1561
1562         * xreadlink.c: New file.
1563         * xreadlink.h: New file.
1564         * Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and xreadlink.h.
1565
1566         * regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
1567         doesn't conflict with sparc-sun-solaris2.7's definition in
1568         /usr/include/sys/int_types.h.
1569
1570         * exclude.c: Use `""', not `<>' to #include non-system header files.
1571         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
1572         and strncasecmp as r-values.  Unixware didn't have declarations.
1573
1574 2001-08-31  Jim Meyering  <meyering@lucent.com>
1575
1576         * xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
1577         Use an initial, malloc'd, buffer of length 128 rather than
1578         a statically allocated one of length 1024.
1579
1580 2001-08-30  Paul Eggert  <eggert@twinsun.com>
1581
1582         * xgetcwd.c: Don't include pathmax.h.
1583         Include stdlib.h and unistd.h if available.
1584         Include xalloc.h.
1585         (xmalloc, xstrdup, free): Remove decls.
1586         (xgetcwd): Don't assume sizes fit in unsigned.
1587         Check for overflow when computing sizes.
1588         Simplify reallocation code.
1589
1590 2001-08-28  Paul Eggert  <eggert@twinsun.com>
1591
1592         * Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
1593
1594         * strtoimax.c: Renamed from strtoxmax.c, removing the
1595         old strtoimax.c.
1596
1597         Also, make the following further changes to make this file's
1598         configuration more similar to that of strtol.c:
1599         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
1600         (strtoumax, uintmax_t, strtoull, strtol): Remove.
1601         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
1602         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
1603         changed to signed values.
1604
1605         And make the following changes as well:
1606         Fix copyright notice, as 1999 was missing.
1607         (verify): New macro.
1608         (strtoimax): Check sizes at compile-time, not run-time.
1609         Prefer strtol to strtoll if both work.
1610         (main): Remove; it was not that useful and was a pain to maintain.
1611
1612         * strtoumax.c: Include strtoimax.c, not strtouxmax.c.
1613
1614 2001-08-30  Paul Eggert  <eggert@twinsun.com>
1615
1616         * savedir.c (savedir): Remove size parameter, as POSIX says that
1617         a directory's st_size can have an arbitrary value, so the old
1618         usage could waste an arbitrary amount of memory.  All uses
1619         changed.
1620         * savedir.h: Update prototype.
1621
1622 2001-08-30  Paul Eggert  <eggert@twinsun.com>
1623
1624         * xstrtol.c (strtoimax): New decl.
1625
1626 2001-08-28  Paul Eggert  <eggert@twinsun.com>
1627
1628         * xstrtol.h: Add copyright notice.
1629         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
1630         LONGINT_INVALID_SUFFIX_CHAR.
1631
1632 2001-08-30  Paul Eggert  <eggert@twinsun.com>
1633
1634         * quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
1635         tm to be declared.
1636
1637 2001-08-30  Paul Eggert  <eggert@twinsun.com>
1638
1639         * hash.c: Remove '2001' from copyright notice.
1640
1641 2001-08-30  Paul Eggert  <eggert@twinsun.com>
1642
1643         * full-write.h: New file.
1644         * Makefile.am (libfetish_a_SOURCES): Add full-write.h.
1645         * full-write.c: Correct credits, as cccp.c no longer
1646         exists and anyway it was so heavily changed from the old cccp
1647         code as to be unrecognizable.  Include full-write.h.
1648         (full_write) Return size_t, with short writes meaning failure.
1649         All callers changed.  This fixes a bug with large buffers
1650         on 64-bit hosts.
1651         * utime.c: Include full-write.h.
1652
1653 2001-08-30  Paul Eggert  <eggert@twinsun.com>
1654
1655         Merge 'exclude' changes from tar 1.13.22.
1656         This fixes one or two unlikely storage allocation overflow bugs,
1657         but doesn't change user-visible behavior otherwise.
1658
1659 2001-08-30  Paul Eggert  <eggert@twinsun.com>
1660
1661         * exclude.c (bool): Declare, perhaps by including stdbool.h.
1662         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
1663         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
1664         Include if available.
1665         (<xalloc.h>): Include
1666         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
1667         (verify): New macro.  Use it to verify that EXCLUDE macros do not
1668         collide with FNM macros.
1669         (struct patopts): New struct.
1670         (struct exclude): Use it, as exclude patterns now come with options.
1671         (new_exclude): Support above changes.
1672         (new_exclude, add_exclude_file):
1673         Initial size must now be a power of two to simplify overflow checking.
1674         (free_exclude, fnmatch_no_wildcards): New function.
1675         (excluded_filename): No longer requires options arg, as the options
1676         are determined by add_exclude.  Now returns bool, not int.
1677         (excluded_filename, add_exclude):
1678         Add support for the fancy new exclusion options.
1679         (add_exclude, add_exclude_file): Now takes int options arg.
1680         Check for arithmetic overflow when computing sizes.
1681         (add_exclude_file): xrealloc might modify errno, so don't
1682         realloc until after errno might be used.
1683
1684         * exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
1685         New macros.
1686         (free_exclude): New decl.
1687         (add_exclude, add_exclude_file): Now takes int options arg.
1688         (excluded_filename): No longer requires options arg, as the options
1689         are determined by add_exclude.  Now returns bool, not int.
1690
1691 2001-08-30  Paul Eggert  <eggert@twinsun.com>
1692
1693         * alloca.c (alloca): Arg is of type size_t, not unsigned.
1694
1695 2001-08-27  Jim Meyering  <meyering@lucent.com>
1696
1697         * Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
1698
1699         * version-etc.c (N_): Remove definition.
1700         Revert most of last change.
1701         Instead, simply don't mark the `Copyright...' string for translation.
1702         Based on advice from Paul Eggert.
1703
1704         * strtoxmax.c: Tweak comment.
1705
1706 2001-08-26  Jim Meyering  <meyering@lucent.com>
1707
1708         * version-etc.c (version_etc_copyright_fmt): Replace literal year
1709         of copyright with `%s' so translators don't get an untranslated
1710         message in 2002.
1711         (COPYRIGHT_YEAR): Define.
1712         (version_etc): Use fprintf rather than fputs.
1713         Suggestion from Ulrich Drepper.
1714
1715         * Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
1716
1717         * strtoll.c: New file, from GNU libc.
1718         * xstrtoimax.c: New file.
1719
1720         * xstrtol.h: Add xstrtoimax.
1721         * strtoumax.c: New file.  Simply include "strtoumax.c".
1722         * strtoimax.c: New file.  Likewise, but first define STRTOUXMAX_SIGNED.
1723
1724         * strtoumax.c: Factor to work both for unsigned and signed types, ...
1725         * strtoxmax.c: ... then renamed to this.
1726
1727 2001-08-13  Paul Eggert  <eggert@twinsun.com>
1728
1729         * Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
1730         Port to Solaris 8, where 'sed' requires a space after the 'r'
1731         command, and where sh dislikes "$/".  Clean up the spacing a bit.
1732         Redirect output to $tmp just once.
1733
1734 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
1735
1736         * addext.c (<errno.h>): Include.
1737         (errno): Declare if not defined.
1738         (addext): Work correctly when pathconf returns -1 and leaves
1739         errno alone because there is no limit.  Also, work even if
1740         pathconf returns a value greater than SIZE_MAX.
1741
1742 2001-08-12  Jim Meyering  <meyering@lucent.com>
1743
1744         * xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
1745         Simply `return getcwd (NULL, 0);'.
1746         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
1747         Use 1300 as initial value for length, not PATH_MAX.
1748
1749         * pathmax.h: Clean up cpp syntax.
1750
1751 2001-08-12  Jim Meyering  <meyering@lucent.com>
1752
1753         * gettimeofday.c: New file.
1754         * gtod.h: New file.
1755         * Makefile.am (libfetish_a_SOURCES): Add gtod.h.
1756
1757 2001-08-04  Jim Meyering  <meyering@lucent.com>
1758
1759         * error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if stmt,
1760         to get in sync with glibc.
1761
1762 2001-08-03  Paul Eggert  <eggert@twinsun.com>
1763
1764         The following changes are from gettext 0.10.39 as maintained by
1765         Bruno Haible.
1766
1767         * mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
1768         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
1769         with inverted sense.  All uses changed.
1770
1771         * mbswidth.c: Don't include <limits.h>.
1772         Include <stdlib.h> and <string.h> unconditionally.
1773         (iswcntrl, mbsinit, ISCNTRL): New macros.
1774         (mbsnwidth): Use K&R style function declarations.
1775         Don't bother checking for MB_LEN_MAX == 1, since the compiler
1776         can optimize it when MB_CUR_MAX == 1.
1777         The width of control characters is zero, not 1.
1778
1779 2001-07-15  Jim Meyering  <meyering@lucent.com>
1780
1781         * Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
1782         (BUILT_SOURCES): Add unlocked-io.h.
1783         (io_functions): Define.
1784         (unlocked-io.h): New rule.
1785         (DISTCLEANFILES): Add unlocked-io.h.
1786         (all-local): Depend on unlocked-io.h, to ensure it is created.
1787
1788         * unlocked-io.hin: New file
1789
1790         * regex.c: Update from glibc.
1791
1792 2001-07-05  Jim Meyering  <meyering@lucent.com>
1793
1794         * Makefile.am (noinst_HEADERS): Remove definition, per new automake
1795         recommendation.
1796         (libfetish_a_SOURCES): Put all .h files here instead.
1797         Remove a thus-exposed (better checks in automake) duplicate and
1798         two unnecessary .h files.
1799
1800 2001-06-11  Jim Meyering  <meyering@lucent.com>
1801
1802         * regex.c: Update from GNU libc.
1803
1804 2001-05-27  Jim Meyering  <meyering@lucent.com>
1805
1806         * readutmp.h (UT_TYPE): Define.
1807
1808 2001-05-24  Jim Meyering  <meyering@lucent.com>
1809
1810         * argmatch.c: Include "quote.h".
1811         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
1812         quote function.  Reported by Göran Uddeborg.
1813
1814 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
1815
1816         * dirname.c (dir_name): Compute append_dot using path, not newpath
1817         which is not yet declared.
1818
1819 2001-05-11  Paul Eggert  <eggert@twinsun.com>
1820
1821         * Makefile.am (libfetish_a_SOURCES):
1822         Add strftime.c, since we now compile it on all hosts.
1823
1824         * strftime.c (my_strftime):
1825         Define to nstrftime if emacs, but only if my_strftime is not defined.
1826         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
1827         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
1828         Add one more extra argument: a nanoseconds value.
1829         All uses changed.
1830         (ns): New macro.
1831         (my_strftime function): Add %N format.
1832         (emacs_strftimeu): Renamed from emacs_strftime,
1833         with extra ut argument.
1834
1835 2001-05-11  Paul Eggert  <eggert@twinsun.com>
1836
1837         dirname code cleanup.  base_name now behaves more compatibly
1838         with POSIX basename when given file names that have trailing
1839         slashes, and similarly for dir_name.  Add new primitives
1840         base_len and dir_len.  Put the directory-name-related decls
1841         into dirname.h.
1842
1843         * addext.c (ISSLASH, base_name): Remove; now in dirname.h.
1844         * backupfile.c (base_name): Likewise.
1845         * basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
1846         * dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
1847         * makepath.c (strip_trailing_slashes): Likewise.
1848         * path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN, ISSLASH):
1849         Likewise.
1850         * rename.c (strip_trailing_slashes): Likewise.
1851         * same.c (base_name): Likewise.
1852         * stripslash.c (ISSLASH): Likewise.
1853
1854         * addext.c: Include <dirname.h> after size_t is defined.
1855         * backupfile.c: Likewise.
1856
1857         * addext.c (addext): Use base_len to trim redundant
1858         trailing slashes instead of doing it ourselves.
1859         But do not trim the last slash if it is not redundant.
1860
1861         * backupfile.c (find_backup_file_name,
1862         max_backup_version): Use base_len instead of rolling it ourselves.
1863         Handle the case of "" and (on DOS) "C:" correctly.
1864
1865         * basename.c: Do not include <stdio.h>, <assert.h>; no longer needed.
1866         Include <string.h>, <dirname.h>.
1867         (base_name): Allow file names ending in slashes, other than names
1868         that are all slashes.  In this case, return the basename followed
1869         by the slashes.  This is more general, and can be used in places
1870         where the original base_name purposely had an assertion failure.
1871         (base_len): New function.
1872
1873         * dirname.c: Include <string.h> instead of <stdlib.h>.
1874         Do not include <assert.h>; no longer needed.
1875         Include xalloc.h.
1876         (memrchr): Remove decl.
1877         (dir_name_r): Remove.
1878         (dir_len): Renamed from dirlen.  All callers changed.
1879         Rewrite in terms of base_name, for simplicity and consistency.
1880         (dir_name): Never return NULL.  All callers changed.
1881         Do not include <stdlib.h> in test program; no longer needed.
1882         return 0; is fine for test program.
1883
1884         * dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
1885         New macros.
1886         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
1887
1888         * path-concat.c (path_concat): Use base_len to compute
1889         base length, not strlen; this means we cannot rely on memcpy
1890         to null-terminate.
1891
1892         * same.c (STREQ): Remove.
1893         (same_name): Handle the case where the basename ends in trailing '/'.
1894
1895         * stripslash.c (strip_trailing_slashes): Return nonzero if
1896         a slash was stripped.  Do not strip the last slash after a
1897         file system prefix.
1898
1899 2001-04-08  Jim Meyering  <meyering@lucent.com>
1900
1901         * getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
1902         recomputed; that's necessary when the offset spans a DST transition.
1903         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
1904
1905 2001-04-02  Jim Meyering  <meyering@lucent.com>
1906
1907         * regex.h, regex.c: Update from GNU libc.
1908
1909 2001-03-19  Paul Eggert  <eggert@twinsun.com>
1910
1911         * version-etc.c (version_etc_copyright): Update to 2001.
1912
1913 2001-03-16  Paul Eggert  <eggert@twinsun.com>
1914
1915         * tempname.c (uint64_t): Define to uintmax_t if
1916         not defined, and if UINT64_MAX is not defined.
1917         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
1918         Reported by John David Anglin.
1919
1920 2001-03-10  Bruno Haible  <haible@clisp.cons.org>
1921
1922         * localcharset.c (locale_charset): Allow wildcard syntax. Also resolve
1923         alias if codeset is empty.
1924         * config.charset (BeOS): Use wildcard syntax.
1925
1926 2001-03-13  Jim Meyering  <meyering@lucent.com>
1927
1928         * path-concat.c (path_concat) [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]:
1929         Don't insert a backslash when concatenating e.g., `C:' and `foo'.
1930         From Bruno Haible.
1931
1932 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
1933
1934         * localcharset.c (locale_charset): Don't use setlocale(LC_CTYPE,NULL).
1935         Don't return NULL.
1936         * unicodeio.c (print_unicode_char): Simplify accordingly.
1937
1938 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
1939
1940         * config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
1941         support for DOS/DJGPP.
1942
1943 2001-02-28  Paul Eggert  <eggert@twinsun.com>
1944
1945         * Makefile.am (libfetish_a_SOURCES):
1946         Add dup-safer.c, fopen-safer.c.
1947         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
1948
1949         * dup-safer.c, fopen-safer.c, stdio-safer.h, unistd-safer.h: New files.
1950
1951 2001-02-25  Paul Eggert  <eggert@twinsun.com>
1952
1953         The mkstemp replacement is taken from glibc 2.2.2, with some
1954         portability fixes for use outside glibc, as follows:
1955
1956         * tempname.c (struct_stat64): New macro.
1957         (direxists, __gen_tempname): Use it.
1958         This avoids a portability problem with Solaris 8.
1959
1960         * tempname.c (<config.h>): Include if HAVE_CONFIG_H.
1961         (<stddef.h>, <stdint.h>, <string.h>):
1962         Include only if STDC_HEADERS || _LIBC.
1963         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
1964         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
1965         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
1966         (__set_errno): Define this macro if <errno.h> doesn't.
1967         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
1968         Define these macros if <stdio.h> doesn't.
1969         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
1970         Define these macros if <sys/stat.h>
1971         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
1972         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
1973         __xstat64): Define if not _LIBC.
1974         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
1975         (__gen_tempname): Invoke gettimeofday only if
1976         HAVE_GETTIMEOFDAY || _LIBC;
1977         otherwise, fall back on plain "time".
1978         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
1979
1980         * mkstemp.c (__GT_FILE): Define to zero if not defined.
1981
1982         * mkstemp.c, tempname.c: New files, taken from glibc 2.2.2.
1983
1984 2001-02-17  Jim Meyering  <meyering@lucent.com>
1985
1986         * strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
1987         around included file name.
1988
1989         * strnlen.c (__strnlen): Merge in a change from GNU libc.
1990
1991         * strftime.c: Update from GNU libc (the only changes were to comments).
1992
1993 2001-02-13  Bruno Haible  <haible@clisp.cons.org>
1994
1995         * mbswidth.h (mbswidth): Also define as macro, to avoid prototype clash.
1996
1997 2001-02-17  Paul Eggert  <eggert@twinsun.com>
1998
1999         * mbswidth.c, quotearg.c (mbrtowc, mbsinit):
2000         Remove workaround macros for hosts that have mbrtowc but not
2001         mbstate_t, as we now insist on proper declarations for both
2002         before using mbrtowc.
2003
2004 2001-02-17  Jim Meyering  <meyering@lucent.com>
2005
2006         * regex.c: Update from libc.
2007
2008 2001-02-16  Paul Eggert  <eggert@twinsun.com>
2009
2010         * alloca.c (malloc): Undef before defining, since stdlib.h
2011         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
2012         Reported by Mark Hounschell via Paul Eggert.
2013
2014 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
2015
2016         * config.charset: Update for FreeBSD 4.2.
2017
2018 2001-01-26  Jim Meyering  <meyering@lucent.com>
2019
2020         * quotearg.c: Include stddef.h.
2021         * quote.c: Include stddef.h.
2022         Reported by Axel Kittenberger.
2023
2024         * xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
2025         line in double quotes so that it evokes a better diagnostic.
2026         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
2027         Reported by Axel Kittenberger.
2028
2029 2001-01-15  Bruno Haible  <haible@clisp.cons.org>
2030
2031         * unicodeio.c (print_unicode_char): Cast the second iconv() arg,
2032         to avoid a warning.  Add back 'const' to inptr.
2033
2034 2001-01-16  Jim Meyering  <meyering@lucent.com>
2035
2036         * basename.c: Include <stdio.h>, needed by assert on SunOS4.
2037         From Bruno Haible.
2038
2039 2001-01-14  Jim Meyering  <meyering@lucent.com>
2040
2041         * rename.c: New file.  From Volker Borchert.
2042         Include stdlib.h, string.h or strings.h, and xalloc.h.
2043         Use strip_trailing_slashes rather than open-coding it.
2044
2045 2001-01-03  Paul Eggert  <eggert@twinsun.com>
2046
2047         * strftime.c: Sync with glibc time/strftime.c 1.81.
2048
2049 2001-01-03  Jim Meyering  <meyering@lucent.com>
2050
2051         * unicodeio.c (print_unicode_char): Remove `const' from declaration of
2052         local `inptr' to avoid warning with some system declarations of iconv.
2053
2054 2000-12-29  Paul Eggert  <eggert@twinsun.com>
2055
2056         * modechange.c: Do not assume that mode_t uses the
2057         traditional octal encoding.  E.g. "chmod 1 FOO" should set
2058         the other-execute bit of FOO even if S_IXOTH != 1.
2059
2060         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
2061         WOTH, XOTH, ALLM): New macros.
2062         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
2063          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
2064         Use them.
2065         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
2066         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
2067         (mode_compile):
2068         No need to use uintmax_t; unsigned long is long enough.
2069         Don't bother to get suffix since we don't use it.
2070
2071 2000-12-24  Jim Meyering  <meyering@lucent.com>
2072
2073         * hash.c (is_prime): Return explicit boolean values.
2074         (hash_get_first): Return NULL to appease Irix5.6's 89.
2075         Reported by Nelson Beebe.
2076
2077 2000-10-31  Bruno Haible  <haible@clisp.cons.org>
2078
2079         * localcharset.c (locale_charset): Add support for Win32.
2080
2081 2000-12-18  Paul Eggert  <eggert@twinsun.com>
2082
2083         * physmem.h, physmem.c: New files.
2084
2085         * Makefile.am (libfetish_a_SOURCES): Add physmem.c.
2086         (noinst_HEADERS): Add physmem.h.
2087
2088         * xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
2089         't' for compatibility with Solaris 8 sort.
2090
2091 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
2092
2093         * config.charset: Add support for BeOS.
2094
2095 2000-12-16  Jim Meyering  <meyering@lucent.com>
2096
2097         * getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
2098         SHELLS_FILE to a file name that's useful on djgpp systems.
2099         Include stdlib.h.
2100         (ADDITIONAL_DEFAULT_SHELLS): Define.
2101         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
2102         Based mostly on a patch from Prashant TR.
2103
2104 2000-12-16  Jim Meyering  <meyering@lucent.com>
2105
2106         This bug had a serious impact on chown: `chown N:M FILE' (for integer
2107         N and M) would have treated it like `chown N:N FILE'.
2108
2109         * userspec.c (parse_user_spec): Fix typo: s/u/g/.
2110
2111 2000-10-31  Bruno Haible  <haible@clisp.cons.org>
2112
2113         * config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB, VISCII,
2114         CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256, CP1257
2115         to the list of canonical encodings. Rename EUC-CN to GB2312.
2116
2117 2000-12-08  Andreas Schwab  <schwab@suse.de>
2118
2119         * mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
2120         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
2121
2122 2000-12-07  Jim Meyering  <meyering@lucent.com>
2123
2124         * stripslash.c (ISSLASH): Define.
2125         (strip_trailing_slashes): Use ISSLASH rather than comparing against `/'.
2126         From Prashant TR.
2127
2128         * dirname.c (FILESYSTEM_PREFIX_LEN): Define.
2129         (dir_name_r): Declare this function as static.
2130         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
2131         manifest itself on a name containing a mix of slashes and
2132         backslashes.
2133         Make this function work with names starting with a DOS-style
2134         drive letter and colon prefix.
2135         (dir_name): Append `.' if necessary.
2136         Based mostly on patches from Prashant TR and Eli Zaretskii.
2137
2138         * dirname.h (dir_name_r): Remove prototype.
2139
2140 2000-12-05  Jim Meyering  <meyering@lucent.com>
2141
2142         * dirname.c (dir_name_r): Add `const' in a few local declarations.
2143
2144 2000-12-04  Jim Meyering  <meyering@lucent.com>
2145
2146         * path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
2147         Also include memory.h, stdlib.h, unistd.h if appropriate.
2148         Reported by Andreas Jaeger (conflicting declaration of malloc).
2149
2150 2000-12-02  Jim Meyering  <meyering@lucent.com>
2151
2152         * closeout.h: Make idempotent, to avoid some obscure warnings.
2153
2154 2000-12-01  Paul Eggert  <eggert@twinsun.com>
2155
2156         * memrchr.c: Include <config.h> before any system include file.
2157
2158 2000-11-29  Paul Eggert  <eggert@twinsun.com>
2159
2160         * dirname.c (dir_name_r): Fix typo: int -> size_t.
2161
2162 2000-11-26  Jim Meyering  <meyering@lucent.com>
2163
2164         * memcoll.c: Include sys/types.h.  From Werner Almesberger.
2165
2166 2000-11-22  Paul Eggert  <eggert@twinsun.com>
2167
2168         * strftime.c (my_strftime): Do not invoke mbrlen with a
2169         size of (size_t) -1; it's not portable.
2170
2171 2000-11-17  Akim Demaille  <akim@epita.fr>
2172
2173         * obstack.h: Formatting changes.
2174         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
2175         prevent type checking.
2176         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
2177         cast the value to (void *): assigning a `foo *' to a `void *'
2178         variable is valid.
2179         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
2180
2181 2000-11-17  Jim Meyering  <meyering@lucent.com>
2182
2183         * strstr.c: Update from GNU libc.
2184
2185 2000-11-16  Jim Meyering  <meyering@lucent.com>
2186
2187         * strverscmp.c: Incorporate weak-alias-related changes from glibc.
2188
2189 2000-11-11  Jim Meyering  <meyering@lucent.com>
2190
2191         * error.c: Add a couple #includes, merging from GNU libc version.
2192
2193 2000-11-10  Jim Meyering  <meyering@lucent.com>
2194
2195         * obstack.h: Update from GNU libc.
2196         * obstack.c: Likewise.
2197
2198 2000-11-06  Paul Eggert  <eggert@twinsun.com>
2199
2200         * getusershell.c (setusershell): Use rewind rather than
2201         fseek/fseeko, to avoid configuration hassles with fseeko.
2202         Don't bother opening SHELLS_FILE if shellstream is NULL;
2203         it's not necessary.
2204
2205 2000-11-05  Jim Meyering  <meyering@lucent.com>
2206
2207         * makepath.h (make_dir): Declare.
2208         * makepath.c (make_dir): Remove `static' attribute.
2209         Tweak a comment.
2210
2211 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
2212
2213         * hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
2214         last one in a bucket, advance to the next bucket.
2215
2216 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
2217
2218         * fnmatch.c: Do not comment out all the code if we are using
2219         the GNU C library, because in some cases we are replacing buggy
2220         code in the GNU C library itself.
2221
2222 2000-10-30  Paul Eggert  <eggert@twinsun.com>
2223
2224         * error.h, getline.h, modechange.h:
2225         Remove "2000" from Copyright line, as the file hasn't been
2226         changed this year other than in the copyright notice.
2227
2228         * xalloc.h: Add "2000" to Copyright line, as this file
2229         was changed this year.
2230
2231 2000-10-30  Paul Eggert  <eggert@twinsun.com>
2232
2233         * fnmatch.c (FOLD): Do not assume that characters are unsigned.
2234         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
2235         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
2236
2237 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
2238
2239         * regex.h (__restrict_arr): Move definition out of #ifndef block.
2240         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
2241         doesn't define __restrict_arr.
2242
2243 2000-10-29  Jim Meyering  <meyering@lucent.com>
2244
2245         * xstat.in: Fix grammar in comment.
2246
2247 2000-10-28  Jim Meyering  <meyering@lucent.com>
2248
2249         * memchr.c: Update from libc.
2250         Adjust for portability:
2251         [HAVE_STDLIB_H]: Include stdlib.h.
2252         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
2253         Undef __memchr, too.
2254         [!weak_alias]: Define __memchr to memchr.
2255
2256         * regex.c: Update from libc.
2257         * regex.h: Likewise.
2258         * getopt1.c: Likewise.
2259         * memcmp.c: Likewise.
2260
2261         * getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
2262         Avoid using fseek, when possible -- it's broken by design.
2263         Patch by Ulrich Drepper.
2264
2265 2000-10-26  Jim Meyering  <meyering@lucent.com>
2266
2267         * strftime.c: Update from libc.
2268
2269 2000-10-25  Jim Meyering  <meyering@lucent.com>
2270
2271         * obstack.c: Update from libc.
2272
2273 2000-10-23  Jim Meyering  <meyering@lucent.com>
2274
2275         * hard-locale.c (hard_locale): Revert last change -- it was simply
2276         wrong.  That set_locale call must not have any side effects.
2277         From Paul Eggert.
2278
2279 2000-10-22  Jim Meyering  <meyering@lucent.com>
2280
2281         * md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
2282         [CYCLIC]: Remove now-unused definition.
2283
2284         * save-cwd.c (O_DIRECTORY): Define, if needed.
2285         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
2286         Suggestion from Ulrich Drepper.
2287
2288 2000-10-21  Jim Meyering  <meyering@lucent.com>
2289
2290         * dirname.c (dir_name_r): New function, factored out of dir_name.
2291         (dir_name): Use dir_name_r.
2292         * dirname.h (dir_name_r): Declare it.
2293
2294 2000-10-21  Jim Meyering  <meyering@lucent.com>
2295
2296         * dirname.c (memrchr): Declare if necessary.
2297         (dir_name): Remove the restriction that there be no
2298         trailing slashes.  Now, this code skips past them, effectively
2299         ignoring them.
2300         [TEST_DIRNAME] (main): New unit tests.
2301
2302         * memrchr.c: New file from GNU libc.
2303         Undef __memrchr, too.
2304         [!weak_alias]: Define __memrchr to memrchr.
2305         Guard weak_alias use with `#ifdef weak_alias'.
2306
2307 2000-10-17  Jim Meyering  <meyering@lucent.com>
2308
2309         * quote.h (PARAMS): Define and use.
2310         Reported by Akim Demaille.
2311
2312         * getopt.c: Update from libc.
2313
2314 2000-10-16  Jim Meyering  <meyering@lucent.com>
2315
2316         * hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to setlocale.
2317         From Jan Fedak.
2318
2319 2000-09-25  Jim Meyering  <meyering@lucent.com>
2320
2321         * md5.h (rol): Define (from GnuPG).
2322
2323         * sha.c: Give credit (GnuPG) where due.
2324         (M): Use rol rather than open-coding it.
2325         Add a FIXME comment.
2326
2327 2000-09-21  Jim Meyering  <meyering@lucent.com>
2328
2329         * userspec.c (parse_user_spec): Remove debugging printf I'd added.
2330         Reported by Michael Stone.
2331
2332 2000-09-20  Jim Meyering  <meyering@lucent.com>
2333
2334         * Makefile.am (libfetish_a_SOURCES): Add sha.c.
2335         (noinst_HEADERS): Add sha.h.
2336         Based on code from Scott G. Miller and from GnuPG.
2337
2338 2000-09-15  Jim Meyering  <meyering@lucent.com>
2339
2340         * regex.c: Update from libc.
2341
2342 2000-09-10  Jim Meyering  <meyering@lucent.com>
2343
2344         * getopt.c (_getopt_internal): Update from glibc.
2345
2346 2000-09-09  Jim Meyering  <meyering@lucent.com>
2347
2348         * quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
2349         think it should be used as a general replacement for isascii.
2350         * fnmatch.c: Likewise.
2351         * mbswidth.c: Likewise
2352         * regex.c: Likewise.
2353
2354         Don't use atoi.
2355         * userspec.c: Include sys/param.h and limits.h.
2356         Include xstrtol.h.
2357         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
2358         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
2359         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
2360         UID, GID.  Check range.
2361
2362 2000-09-06  Jim Meyering  <meyering@lucent.com>
2363
2364         * getopt.c (_getopt_internal): Update from glibc.
2365
2366 2000-08-30  Jim Meyering  <meyering@lucent.com>
2367
2368         * strftime.c: Merge in changes from GNU libc.
2369
2370 2000-08-26  Jim Meyering  <meyering@lucent.com>
2371
2372         * closeout.c: Include "__fpending.h".
2373         (close_stdout_status): Return right away if there's nothing to flush.
2374
2375         * Makefile.am (noinst_HEADERS): Add __fpending.h.
2376         * __fpending.c: New file.
2377         * __fpending.h: New file.
2378
2379 2000-08-07  Paul Eggert  <eggert@twinsun.com>
2380
2381         Standardize on "memory exhausted" instead of "Memory exhausted"
2382         or "virtual memory exhausted".
2383         * obstack.c (print_and_abort): Use "memory exhausted", not
2384         "virtual memory exhausted".
2385         * same.c (same_name): Invoke xalloc_die instead of printing
2386         our own message.
2387         * userspec.c (parse_user_spec): Likewise.
2388         * bumpalloc.h: comment fix
2389         * same.c, userspec.c: Include xalloc.h.
2390
2391         * xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
2392         not char *const and pointing to a constant array.
2393         * xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
2394         (xrealloc): Comment fix.
2395
2396         * userspec.c (parse_user_spec):
2397         Don't translate a message until just before returning,
2398         to avoid unnecessary translation.
2399
2400 2000-08-07  Jim Meyering  <meyering@lucent.com>
2401
2402         * addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
2403         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
2404         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
2405         getgroups.c, gethostname.c, getopt.h, group-member.c,
2406         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
2407         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
2408         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
2409         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
2410         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
2411         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
2412         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
2413         yesno.c: Back out Copyright date changes for each file with no change
2414         this year.  This eases coordination with other programs using the same
2415         source code modules.  From Paul Eggert.
2416
2417 2000-08-03  Greg McGary  <greg@mcgary.org>
2418
2419         * regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
2420         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
2421         (EXTEND_BUFFER): Use them.
2422
2423 2000-08-01  Jim Meyering  <meyering@lucent.com>
2424
2425         * dirname.c (ISSLASH): Define.
2426         (BACKSLASH_IS_PATH_SEPARATOR): Define.
2427         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
2428         both `\' and `/' may be use as path separators.
2429         Based on a patch from Prashant TR.
2430
2431 2000-07-31  Paul Eggert  <eggert@twinsun.com>
2432
2433         * quotearg.c (quotearg_n_options): Don't make the initial
2434         slot vector a constant, since it might get modified.
2435
2436 2000-07-31  Jim Meyering  <meyering@lucent.com>
2437
2438         * xmalloc.c: Use `virtual memory exhausted', not `Memory exhausted'.
2439         * obstack.c (print_and_abort): Likewise.
2440
2441 2000-07-30  Paul Eggert  <eggert@twinsun.com>
2442
2443         * quotearg.c (quotearg_n_options): Preallocate a slot 0
2444         buffer, so that the caller can always quote one small
2445         component of a "memory exhausted" message in slot 0.
2446         From a suggestion by Jim Meyering.
2447
2448 2000-07-30  Jim Meyering  <meyering@lucent.com>
2449
2450         * makepath.c (make_path): Quote the other instance, too.
2451
2452         * quotearg.c (N_STATIC_SLOTVECS): Define.
2453         (STATIC_BUF_SIZE): Define.
2454         (quotearg_n_options): Use only statically allocated storage when
2455         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
2456         than STATIC_BUF_SIZE.
2457
2458 2000-07-29  Jim Meyering  <meyering@lucent.com>
2459
2460         * diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
2461         * dirname.c (dir_name): Likewise.
2462
2463         * basename.c (base_name): Use ISSLASH rather than comparing against `/'.
2464
2465         * dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
2466         (dir_name): Assert that there are no trailing slashes.
2467
2468 2000-07-18  Bruno Haible  <haible@clisp.cons.org>
2469
2470         * mbswidth.h (mbswidth): Add a flags argument.
2471         (mbswidth): New declaration.
2472         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
2473         * mbswidth.c (mbswidth): Add a flags argument.
2474         (mbsnwidth): New function.
2475
2476 2000-07-24  Jim Meyering  <meyering@lucent.com>
2477
2478         * mbswidth.c: Remove useless #else.  From Bruno Haible.
2479
2480 2000-07-23  Paul Eggert  <eggert@twinsun.com>
2481
2482         * mbswidth.c (_XOPEN_SOURCE):
2483         Don't define; this causes problems on Solaris 7.
2484         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
2485
2486 2000-07-23  Paul Eggert  <eggert@twinsun.com>
2487
2488         * quotearg.c:
2489         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
2490         so that mbstate_t is always defined.
2491
2492         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
2493         be 1 in at least one GCC installation, and this configuration
2494         error is likely to be common.  Ignoring MB_LEN_MAX hurts
2495         performance on hosts that have mbrtowc but have only unibyte
2496         locales, but I assume these hosts are rare.
2497
2498 2000-07-23  Paul Eggert  <eggert@twinsun.com>
2499
2500         * quotearg.c: Streamline by invoking multibyte code only if needed.
2501         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
2502         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
2503         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
2504         invoke multibyte primitives.
2505
2506 2000-07-23  Jim Meyering  <meyering@lucent.com>
2507
2508         * basename.c (base_name): Add an assertion.
2509
2510 2000-07-15  Bruno Haible  <clisp.cons.org>
2511
2512         * quotearg.c: When the system forces us to redefine mbstate_t,
2513         shadow its mbsinit function.
2514
2515 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
2516
2517         * mbswidth.h: New file.
2518         * mbswidth.c: New file.
2519         * Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
2520         (noinst_HEADERS): Add mbswidth.h.
2521
2522 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
2523
2524         * config.charset: Add support for FreeBSD. Improve support for HP-UX
2525         and IRIX 6.
2526
2527 2000-07-15  Jim Meyering  <meyering@lucent.com>
2528
2529         * makepath.c: Include quote.h.
2530         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
2531         corresponding argument in a `quote (...)' call.
2532         Give better diagnostics.
2533
2534         * Makefile.am (libfetish_a_SOURCES): Add quote.c.
2535         (noinst_HEADERS): Add quote.h.
2536
2537         * quote.c (quote, quote_n): New file.  Two functions taken verbatim
2538         from tar's src/misc.c.
2539         * quote.h: New file.  Prototypes for same.
2540
2541 2000-07-10  Paul Eggert  <eggert@twinsun.com>
2542
2543         From a suggestion by Bruno Haible.
2544         * quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
2545         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
2546         to decide whether to define the BeOS workaround macro;
2547         this adjusts to the change to AC_MBSTATE_T.
2548
2549 2000-07-13  Paul Eggert  <eggert@twinsun.com>
2550
2551         * quotearg.h (enum quoting style): New enum clocale_quoting_style.
2552
2553         * quotearg.c (quoting_style_args, quoting_style_vals,
2554         quotearg_buffer_restyled): Add support for
2555         clocale_quoting_style.  Undo previous change to
2556         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
2557         and "{RIGHT QUOTATION MARK}" msgids.
2558
2559 2000-07-05  Paul Eggert  <eggert@twinsun.com>
2560
2561         The old behavior of quoting `like this' doesn't look good with
2562         newer, ISO-style fonts.  See:
2563         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
2564
2565         Instead, quote "like this" by default.  Let the translator
2566         tailor the locale-specific quoting behavior by providing
2567         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
2568
2569         * quotearg.c (N_): New macro.
2570         (gettext_default): New function.
2571         (quotearg_buffer_restyled): Use
2572         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
2573         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
2574
2575 2000-07-09  Jim Meyering  <meyering@lucent.com>
2576
2577         * Most files: Update copyright dates to include 2000.
2578
2579 2000-07-08  Jim Meyering  <meyering@lucent.com>
2580
2581         * xgethostname.c (ENAMETOOLONG): Define to an unlikely value
2582         if not defined.
2583         (xgethostname): Remove now-unnecessary #ifdef.
2584         Move declaration of `err' into loop where it's used.
2585
2586 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
2587
2588         * xgethostname.c (xgethostname): Protect against the SunOS5.5 bug
2589         by allocating a larger buffer. Test the gethostname return value for
2590         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
2591         returns an error and ENAMETOOLONG isn't defined.
2592
2593 2000-07-05  Paul Eggert  <eggert@twinsun.com>
2594         and Bruno Haible  <haible@clisp.cons.org>
2595
2596         * quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
2597
2598 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
2599
2600         * quotearg.c (struct quoting_options): Simplify quote_these_too
2601         dimension.
2602
2603 2000-07-03  Jim Meyering  <meyering@lucent.com>
2604
2605         * strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
2606         Reported by Bruno Haible.
2607
2608 2000-07-04  Jim Meyering  <meyering@lucent.com>
2609
2610         * quotearg.c: Make inclusion of <wchar.h> independent of whether
2611         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
2612         lacks mbrtowc.
2613
2614 2000-07-03  Paul Eggert  <eggert@twinsun.com>
2615         and Bruno Haible  <haible@clisp.cons.org>
2616
2617         * quotearg.c (mbrtowc):
2618         Assign to *pwc, and return 1 only if result is nonzero.
2619         (iswprint): Use ISPRINT when substituting our own mbrtowc.
2620
2621 2000-07-03  Jim Meyering  <meyering@lucent.com>
2622
2623         * readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
2624         This is necessary to get a definition of e.g., UTMP_FILE on HP-UX 10.20.
2625         From Bob Proulx.
2626
2627 2000-07-02  Jim Meyering  <meyering@lucent.com>
2628
2629         * quotearg.c (mbstate_t): Don't define here.
2630
2631 2000-07-02  Jim Meyering  <meyering@lucent.com>
2632
2633         * nanosleep.c (SIGCONT): Define if not already defined.
2634
2635 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
2636
2637         * mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
2638         per change in ../m4/ls-mntd-fs.m4.
2639         (read_filesystem_list): Ignore symbolic links.
2640
2641 2000-06-29  Jim Meyering  <meyering@lucent.com>
2642
2643         * same.c: Include <string.h> or <strings.h>, as appropriate,
2644         for declaration of strcmp.
2645
2646         * long-options.c: Include <stdlib.h>, for declaration of exit.
2647
2648         * mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
2649         Avoid warning by casting result to `char *' to remove `const'.
2650
2651 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
2652
2653         * Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
2654
2655 2000-06-26  Paul Eggert  <eggert@twinsun.com>
2656
2657         savedir now sets errno on failure and invokes xmalloc to get memory.
2658         Fix a couple of other minor bugs while we're at it.
2659
2660         * savedir.c (<unistd.h>): Do not include; there's no need.
2661         (NAMLEN): Remove macro.
2662         (malloc, realloc): Remove decls.
2663         (stpcpy): Likewise.
2664         ("xalloc.h"): Include.
2665         (NAME_SIZE_DEFAULT): New macro.
2666         (savedir): Use xmalloc / xrealloc to allocate memory.
2667         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
2668         Skip "" directory entries.
2669         Use strlen to calculate directory entry length, since the old method
2670         is rarely used these days and isn't worth supporting.
2671         Don't use a pointer after freeing it.
2672         Check for integer overflow when calculating allocation size.
2673         Use memcpy to copy entries, instead of stpcpy.
2674         Set errno properly when returning NULL.
2675         Check for readdir error.
2676
2677 2000-06-26  Jim Meyering  <meyering@lucent.com>
2678
2679         * posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
2680
2681 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
2682
2683         * getusershell.c (xmalloc, xrealloc): Remove functions.
2684         Include xalloc.h.
2685         Don't include <stdlib.h>.  Don't declare malloc, realloc.
2686
2687 2000-06-23  Bruno Haible  <haible@clisp.cons.org>
2688
2689         * unicodeio.c (print_unicode_char): Work around ansi2knr deficiency.
2690
2691 2000-06-24  Jim Meyering  <meyering@lucent.com>
2692
2693         * error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
2694
2695 2000-06-21  Jim Meyering  <meyering@lucent.com>
2696
2697         * getpass.c: New file, from Bruno Haible.  Required for BeOS.
2698
2699 2000-06-19  Paul Eggert  <eggert@twinsun.com>
2700
2701         * quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
2702         (mbrtowc, mbstate_t): Define substitutes if
2703         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
2704         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
2705         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
2706
2707 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
2708
2709         * xgetcwd.c (xgetcwd): If the required pathname length is smaller
2710         than 1024, return a memory chunk of least possible size, instead
2711         of size PATH_MAX + 2. In the loop, increment the size proportionally.
2712         Use free/xmalloc instead of xrealloc to avoid copying for very long
2713         paths.
2714
2715 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
2716
2717         * canon-host.c (canon_host): Use malloc and memcpy to copy an
2718         address, not strdup.  Include <stdlib.h> and don't declare free().
2719
2720 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
2721
2722         * path-concat.c (path_concat): Don't access dir[-1] if dir is
2723         the empty string.
2724
2725 2000-06-21  Jim Meyering  <meyering@lucent.com>
2726
2727         * Makefile.am (libfetish_a_SOURCES): Add getstr.c.
2728         (noinst_HEADERS): Add getstr.h.
2729
2730         * getline.c (getstr): Move into a separate file.
2731         * getstr.c (getstr): New file, extracted from getline.c, with
2732         the following changes: new parameter, delim2; both delim[12]
2733         parameters have type `int', not `char'.  The latter would lose
2734         with 8-bit delimiters.
2735         * getstr.h: New file.
2736
2737 2000-06-19  Jim Meyering  <meyering@lucent.com>
2738
2739         * getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
2740
2741 2000-06-18  Jim Meyering  <meyering@lucent.com>
2742
2743         * mkdir.c: Remove file, due mainly to copyright incompatibility.
2744         Besides, these days every porting target provides a mkdir function.
2745
2746         * strnlen.c: Include memory.h, string.h, and/or strings.h as needed.
2747         (this snippet comes from src/system.h).
2748
2749 2000-06-15  Paul Eggert  <eggert@twinsun.com>
2750
2751         * human.c (adjust_value): New function.
2752         (human_readable_inexact): Apply rounding style even when
2753         printing approximate values.
2754
2755 2000-06-14  Paul Eggert  <eggert@twinsun.com>
2756
2757         * human.c (human_readable_inexact): Allow an input block
2758         size that is not a multiple of the output block size, and vice versa.
2759         Reported by Piergiorgio Sartor.
2760
2761 2000-06-14  Paul Eggert  <eggert@twinsun.com>
2762
2763         * getdate.y (get_date): Apply relative times after time
2764         zone indicator, not before.  Reported by Todd A. Jacobs.
2765
2766 2000-06-13  Jim Meyering  <meyering@lucent.com>
2767
2768         * Makefile.am (all-local): Depend on lstat.c and stat.c.
2769
2770         * xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
2771
2772 2000-06-12  Paul Eggert  <eggert@twinsun.com>
2773
2774         * xstat.in: Include <stdlib.h> in lstat, to declare "free".
2775
2776 2000-06-04  Paul Eggert  <eggert@twinsun.com>
2777
2778         * strnlen.c: Include <config.h> if HAVE_CONFIG_H.
2779
2780 2000-06-04  Jim Meyering  <meyering@lucent.com>
2781
2782         * getugroups.c (getugroups): Cast -1 to gid_t, for systems like
2783         SunOS4.1.4 for which gid_t is an unsigned type.
2784
2785 2000-06-03  Jim Meyering  <meyering@lucent.com>
2786
2787         * strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
2788
2789 2000-05-26  Bruno Haible  <haible@clisp.cons.org>
2790
2791         * Makefile.am (install-exec-local): On systems with glibc-2.1 or
2792         newer, don't install charset.alias.
2793         * config.charset: Change the Linux/glibc rules so they become empty
2794         on glibc-2.1 or newer.
2795
2796 2000-06-02  Jim Meyering  <meyering@lucent.com>
2797
2798         * mountlist.c: Back out last change.  Instead, do this...
2799         * mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the me_dummy
2800         member using the same `ignore'-testing code.
2801         * mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
2802         fs_type strings.
2803         From Mark D. Roth.
2804
2805 2000-05-29  Jim Meyering  <meyering@lucent.com>
2806
2807         * mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore mounts
2808         with the `ignore' attribute.  Based on a patch from Mark D. Roth.
2809
2810 2000-05-22  Jim Meyering  <meyering@lucent.com>
2811
2812         * makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
2813
2814 2000-05-18  Jim Meyering  <meyering@lucent.com>
2815
2816         * hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
2817         back, too, since it may have been modified by allocate_entry.
2818         (hash_delete): Rewrite to use neither the assignment operator
2819         nor the comma operator in an if-expression.
2820
2821 2000-05-15  Paul Eggert  <eggert@twinsun.com>
2822
2823         * closeout.c:
2824         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
2825         Remove; no longer needed.
2826         "quotearg.h": Add include.
2827         (file_name): Do not bother to explicitly initialize to NULL; it's less
2828         efficient on some hosts.
2829         (close_stdout_status): Remove test as to whether stdout was already
2830         closed; it breaks for the case "echo x | sort >&-".
2831         Quote file name colons.
2832         Do not assume that _("write error") lacks format strings.
2833
2834 2000-05-15  Jim Meyering  <meyering@lucent.com>
2835
2836         * version-etc.c (version_etc_copyright): Update the copyright string
2837         used in all --version output.
2838
2839 2000-05-14  Jim Meyering  <meyering@lucent.com>
2840
2841         * closeout.c (close_stdout_set_file_name): New function.
2842         (close_stdout_status): Use new file-scoped global.
2843         Return right away if fstat says the stdout file descriptor is invalid.
2844         * closeout.h (close_stdout_set_file_name): Declare.
2845
2846 2000-05-10  Jim Meyering  <meyering@lucent.com>
2847
2848         * closeout.c [default_exit_status]: New file-scoped variable.
2849         (close_stdout_set_status): New function.
2850         * closeout.h (close_stdout_set_status): Declare.
2851
2852 2000-05-08  Jim Meyering  <meyering@lucent.com>
2853
2854         * long-options.c: Don't include closeout.h.
2855         (parse_long_options): Don't call close_stdout for --version.
2856
2857 2000-05-06  Jim Meyering  <meyering@lucent.com>
2858
2859         * strnlen.c: Undefine __strnlen and strnlen.
2860         [!weak_alias]: Define __strnlen to strnlen.
2861
2862         * atexit.c: New file, from libiberty.
2863
2864 2000-05-06  Jim Meyering  <meyering@lucent.com>
2865
2866         * closeout.c (close_stdout_status): Also check for errors on the
2867         stderr stream.
2868
2869 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
2870
2871         * localcharset.c (get_charset_aliases): Use malloc, realloc and memcpy
2872         instead of xmalloc, xrealloc, path_concat.
2873         (locale_charset): Treat empty environment variables as absent.
2874         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
2875
2876 2000-05-04  Jim Meyering  <meyering@lucent.com>
2877
2878         * getopt.c: Update from glibc.
2879         * obstack.c: Likewise.
2880         * obstack.h: Likewise.
2881         * regex.c: Likewise.  NB: K&R compiler support is dropped for this file
2882
2883         * regex.h: Likewise.
2884         * strndup.c: Likewise.
2885         * strnlen.c: New file, from glibc.
2886
2887 2000-05-01  Jim Meyering  <meyering@lucent.com>
2888
2889         * full-write.c (full_write): Remove `FIXME' part of comment.
2890
2891 2000-04-29  Jim Meyering  <meyering@lucent.com>
2892
2893         * path-concat.c: Declare strdup only if it's not defined.
2894         * canon-host.c: Likewise.
2895
2896 2000-04-28  Jim Meyering  <meyering@lucent.com>
2897
2898         * rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to avoid
2899         redefinition warning on some systems (HPUX).  Otherwise, regex.h is
2900         included first, then limits.h is included by locale.h by libintl.h.
2901         From John David Anglin.
2902
2903 2000-04-25  Jim Meyering  <meyering@lucent.com>
2904
2905         * makepath.c (S_IRWXUGO): Define.
2906         (make_path): Always perform explicit chmod if MODE specifies any
2907         of the `special' permission bits.  Prompted by a bug report against
2908         install from Mate Wierdl and Joost van Baal.
2909
2910 2000-04-18  Jim Meyering  <meyering@lucent.com>
2911
2912         * README: New file.
2913
2914         * getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
2915         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
2916
2917 2000-04-17  Jim Meyering  <meyering@lucent.com>
2918
2919         * strftime.c (my_strftime) [strftime]: Declare strftime here, since
2920         the definition of it to rpl_strftime also defined-away the system's
2921         declaration.
2922
2923 2000-04-15  Jim Meyering  <meyering@lucent.com>
2924
2925         Use `C' to denote so-called `contiguous' files, the same way
2926         that tar does.
2927         * filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
2928         (ftypelet): Use S_ISCTG.
2929         From Michael Deutschmann.
2930
2931 2000-04-14  Jim Meyering  <meyering@lucent.com>
2932
2933         * strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
2934
2935 2000-04-08  Jim Meyering  <meyering@lucent.com>
2936
2937         * Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
2938         names don't conflict.  Reported by Eli Zaretskii.
2939
2940 2000-03-28  Bruno Haible  <haible@clisp.cons.org>
2941
2942         * unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
2943         bug.  Deal with the different error behavior of Irix iconv.
2944
2945 2000-04-07  Jim Meyering  <meyering@lucent.com>
2946
2947         * putenv.c: Move inclusion of errno.h so it follows that of sys/types.h,
2948         to work around system header problems on AIX 3.2.5.  From Bruno Haible.
2949
2950 2000-04-05  Jim Meyering  <meyering@lucent.com>
2951
2952         Portability tweaks required for ultrix4.3.
2953         * readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare getutent.
2954         * readutmp.c: Include sys/types.h before sys/stat.h.
2955         * canon-host.c: Declare strdup.
2956         * path-concat.c: Likewise.
2957         From John David Anglin.
2958
2959 2000-04-04  Jim Meyering  <meyering@lucent.com>
2960
2961         Be more DOS 8.3-friendly.
2962         * ref-add.sin: Renamed from ref-add.sed.in.
2963         * ref-del.sin: Renamed from ref-del.sed.in.
2964         * Makefile.am: Reflect renaming.
2965         Reported by Eli Zaretskii.
2966
2967         Use a temporary file name that won't clash with `charset.alias'
2968         in the DOS 8.3 name space.
2969         * Makefile.am (charset_tmp): Define.
2970         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
2971         (uninstall-local): Likewise.
2972         Reported by Eli Zaretskii.
2973
2974 2000-03-29  Paul Eggert  <eggert@twinsun.com>
2975
2976         * time/strftime.c (my_strftime): Make sure we call the system
2977         strftime, not ourselves, when invoking the underlying strftime.
2978
2979 2000-03-24  Jim Meyering  <meyering@lucent.com>
2980
2981         * Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
2982         (charset_alias): Define.
2983         (install-exec-local): Factor out common code.
2984         (uninstall-local): Split lines longer than 80.
2985         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
2986         (SUFFIXES): Define.
2987         (.sed.in.sed): New rule.  Don't redirect directly to $@.
2988         (CLEANFILES): Add ref-add.sed and ref-del.sed.
2989
2990 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
2991
2992         * config.charset: Output a line containing "Packages using this file".
2993         * ref-add.sed.in, ref-del.sed.in: New files.
2994         * Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
2995         ref-del.sed): New rules.
2996
2997 2000-03-17  Jim Meyering  <meyering@lucent.com>
2998
2999         * unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
3000         Otherwise, include <strings.h>
3001
3002 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
3003
3004         * unicodeio.c (utf8_wctomb): New function.
3005         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
3006         format instead of in UCS-4 with platform dependent endianness.
3007
3008 2000-03-07  Paul Eggert  <eggert@twinsun.com>
3009
3010         * savedir.c (savedir): Work even if directory size is
3011         negative; this can happen with some screwy NFS configurations.
3012
3013 2000-03-06  Jim Meyering  <meyering@lucent.com>
3014
3015         * localcharset.c (get_charset_aliases): Don't try to free file_name
3016         if it's NULL (because we ran out of memory).  From Bruno Haible.
3017
3018 2000-03-05  Jim Meyering  <meyering@lucent.com>
3019
3020         * localcharset.c ("path-concat.h"): Include.
3021         (get_charset_aliases): Use path_concat instead of ANSI string
3022         concatenation.
3023
3024         * unicodeio.h (PARAMS): Define.
3025         Use it to guard prototype.
3026
3027 2000-03-04  Jim Meyering  <meyering@lucent.com>
3028
3029         * Makefile.am (install-exec-local): Create $(libdir) before installing
3030         into it.
3031         (uninstall-local): Uncomment this rule so `make distcheck' works
3032         once again.
3033
3034         * unicodeio.c (<errno.h>): Include it.
3035         (errno): Declare if not defined.
3036
3037         * localcharset.c: Add Bruno's comment justifying use of volatile.
3038
3039         * config.charset: New version, incorporating remarks from a linux
3040         i18n mailing list.  From Bruno Haible.
3041
3042 2000-03-02  Jim Meyering  <meyering@lucent.com>
3043
3044         * Makefile.am (EXTRA_DIST): Add config.charset.
3045
3046 2000-03-01  Jim Meyering  <meyering@lucent.com>
3047
3048         * localcharset.c: Guard some #includes with `#if HAVE_...'.
3049         * unicodeio.c: Likewise.
3050
3051 2000-02-02  Bruno Haible  <haible@clisp.cons.org>
3052
3053         * config.charset: New file.
3054         * localcharset.c: New file.
3055         * unicodeio.h, unicodeio.c: New files.
3056         * Makefile.am (DEFS): Add -DLIBDIR=...
3057         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
3058         (noinst_HEADERS): Add unicodeio.h.
3059         (all-local, install-exec-local, charset.alias): New targets.
3060
3061 2000-02-28  Paul Eggert  <eggert@twinsun.com>
3062
3063         * quotearg.c (ALERT_CHAR): New macro.
3064         (quotearg_buffer_restyled): Use it.
3065
3066 2000-02-27  Jim Meyering  <meyering@lucent.com>
3067
3068         * strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
3069         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
3070
3071         * backupfile.c: Guard inclusion of stdlib.h with `#if HAVE_STDLIB_H',
3072         not `#if STDC_HEADERS'.
3073         Declare malloc if needed.
3074
3075         * backupfile.c: Use `#if !HAVE_DECL...' instead of `#ifndef HAVE_DECL..'
3076         now that autoconf always defines the HAVE_DECL_ symbols.
3077         * human.c: Likewise.
3078         * same.c: Likewise.
3079         * strtoumax.c: Likewise.
3080
3081         * backupfile.c: Arrange for cpp to fail if the configure-time
3082         declaration check was not run.
3083         * hash.c: Likewise.
3084         * human.c: Likewise.
3085         * same.c: Likewise.
3086         * strtoumax.c: Likewise.
3087
3088         * userspec.c (parse_user_spec): If there is no `:' but there is a `.',
3089         then first look up the entire `.'-containing string as a login name.
3090
3091 2000-02-18  Paul Eggert  <eggert@twinsun.com>
3092
3093         * getdate.y: Handle two-digit years with leading zeros correctly.
3094         (textint): New typedef.
3095         (parser_control): Member year changed from int to textint.
3096         All uses changed.
3097         (YYSTYPE): Removed; replaced by %union with int and textint members.
3098         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
3099         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
3100         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
3101         (tSNUMBER, tUNUMBER): Now of type <textintval>.
3102         (date, number, to_year): Use width of number in digits, not its value,
3103         to determine whether it's a 2-digit year, or a 2-digit time.
3104         (yylex): Store number of digits of numeric tokens.
3105         Reported by John Kendall.
3106
3107         (parser_control): Changed from struct parser_control to typedef (for
3108         consistency).  All uses changed.
3109
3110         (tID): Removed; not used.
3111         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
3112
3113 2000-02-14  Paul Eggert  <eggert@twinsun.com>
3114
3115         * getpagesize.h (getpagesize): Port to VMS for Alpha;
3116         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
3117
3118 2000-02-12  Jim Meyering  <meyering@lucent.com>
3119
3120         * userspec.c (ISDIGIT): Define it.
3121         (isdigit): Remove definition.
3122         (is_number): Use ISDIGIT, not isdigit.
3123         <libintl.h>: Include.
3124         (_ and N_): Define.
3125         (parse_user_spec): Mark translatable strings.
3126
3127 2000-02-10  Jim Meyering  <meyering@lucent.com>
3128
3129         With these changes, nanosleep.[ch] are finally enough like the other
3130         lib/* replacement files to compile on a few more losing systems.
3131
3132         * nanosleep.h: Don't include config.h.
3133         Remove prototype from declaration of nanosleep.
3134         (PARAMS): Remove now-unneeded definition.
3135         * nanosleep.c: #undef nanosleep.
3136         (rpl_nanosleep): Rename from nanosleep.
3137
3138 2000-02-03  Jim Meyering  <meyering@lucent.com>
3139
3140         * readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
3141         rather than with `#if HAVE_UTMPNAME'.
3142
3143 2000-02-01  Jim Meyering  <meyering@lucent.com>
3144
3145         * readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
3146
3147 2000-01-31  Jim Meyering  <meyering@lucent.com>
3148
3149         * nanosleep.h (nanosleep): Guard declaration with
3150         `#if ! HAVE_DECL_NANOSLEEP'.
3151         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
3152         the declaration in that vendor's sys/timers.h.
3153         Reported by Christian Krackowizer.
3154
3155         * quotearg.c (ISASCII): Add #undef and move definition to follow
3156         inclusion of wctype.h to work around solaris2.6 namespace pollution.
3157         (ISPRINT): Likewise.
3158         Reported by Tom Tromey.
3159
3160 2000-01-30  Jim Meyering  <meyering@lucent.com>
3161
3162         * readutmp.c (extract_trimmed_name): Use UT_USER instead of hard-coding
3163         uses of ->ut_name.  The latter doesn't work with new Linux header files
3164         where only utmpx.ut_user is declared.
3165
3166         * readutmp.h (UT_USER): Define.
3167
3168 2000-01-23  Jim Meyering  <meyering@lucent.com>
3169
3170         * Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
3171         obstack.c.
3172
3173 2000-01-22  Jim Meyering  <meyering@lucent.com>
3174
3175         * strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
3176         [! HAVE_DECL_STRTOULL]: Declare strtoull.
3177         Required for some AIX systems.  Reported by Christian Krackowizer.
3178         [TESTING] (main): New function.
3179
3180         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
3181         * dirname.c (dir_name): Support for DOS-style file names with drive
3182         letters.
3183
3184         * quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of iswprint.
3185
3186         * strverscmp.c (ISDIGIT): Define.
3187         (strverscmp): Use ISDIGIT, not isdigit.
3188
3189 2000-01-17  Paul Eggert  <eggert@twinsun.com>
3190
3191         * nanosleep.c (nanosleep):
3192         Don't use SA_INTERRUPT to decide whether to call sigaction, as
3193         POSIX.1 doesn't require SA_INTERRUPT and some systems
3194         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
3195         it's been part of POSIX.1 since day 1 (in 1988).
3196
3197 2000-01-17  Jim Meyering  <meyering@lucent.com>
3198
3199         * interlock: Remove unused file.  Reported by François Pinard.
3200
3201 2000-01-16  Paul Eggert  <eggert@twinsun.com>
3202
3203         * quotearg.c (quotearg_buffer_restyled): Do not quote
3204         alert, backslash, formfeed, and vertical tab unnecessarily in
3205         shell quoting style.
3206
3207 Local Variables:
3208 version-control: never
3209 End: