6aca7511443a5eccd664457866beba89e43524a3
[gnulib.git] / lib / ChangeLog
1 2002-03-02  Jim Meyering  <meyering@lucent.com>
2
3         * gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
4         not HAVE_CLOCK_SETTIME.
5
6 2002-02-27  Paul Eggert  <eggert@twinsun.com>
7
8         * nanosleep.h: Rename to....
9         * timespec.h: New name for nanosleep.h.  All uses changed.
10
11         * gettime.c: New file.
12         * settime.c: New file.
13         * stime.c: Remove.
14
15         * Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
16         timespec.h.  Remove nanosleep.h.
17
18 2002-02-25  Paul Eggert  <eggert@twinsun.com>
19
20         * acl.c, acl.h: New files.
21         * Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
22
23 2002-02-24  Jim Meyering  <meyering@lucent.com>
24
25         * strnlen.c (strnlen): Define-away/undef so that an inconsistent
26         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
27         cause trouble.  Reported by Nelson Beebe.
28
29 2002-02-23  Paul Eggert  <eggert@twinsun.com>
30
31         * path-concat.c (xpath_concat): Reorder code to pacify
32         compilers that don't know that xalloc_die never returns.
33
34 2002-02-20  Jim Meyering  <meyering@lucent.com>
35
36         * getdate.c: Regenerate using bison-1.33.
37
38 2002-02-15  Paul Eggert  <eggert@twinsun.com>
39
40         * posixver.c, posixver.h: New files.
41         * Makefile.am (libfetish_a_SOURCES): Add them.
42
43 2002-02-02  Paul Eggert  <eggert@twinsun.com>
44             Bruno Haible  <bruno@clisp.org>
45
46         * unicodeio.h (print_unicode_char): Add exit_on_error argument.
47         (fwrite_success_callback): New declaration.
48         * unicodeio.c (unicode_to_mb): New function, extracted from
49         print_unicode_char. Call failure callback instead of error.
50         (fwrite_success_callback): New function.
51         (exit_failure_callback): New function.
52         (fallback_failure_callback): New function.
53         (print_unicode_char): Call unicode_to_mb.
54
55 2002-01-26  Jim Meyering  <meyering@lucent.com>
56
57         * Makefile.am (getdate$U.o): Depend on unlocked-io.h.
58
59 2002-01-22  Jim Meyering  <meyering@lucent.com>
60
61         * Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
62         Otherwise, some versions of automake would omit the rule that makes
63         Makefile from Makefile.in.
64
65 2001-01-21  Paul Eggert  <eggert@twinsun.com>
66
67         * xmemcoll.h, xmemcoll.c: New files.
68         * Makefile.am (libfetish_a_SOURCES): Add them.
69         * memcoll.c: Include errno.h, and declare errno if not defined.
70         (memcoll): Set errno to zero if there is no error.
71
72         * quotearg.c (quotearg_buffer_restyled):
73         Fix bug with quoting buffers containing NUL when backslashing escapes.
74         This bug was exposed by the other changes in this patch.
75         (quotearg_n_options): New arg ARGSIZE.
76         All callers changed.
77         (quoting_options_from_style): New function.
78         (quotearg_n_style): Use it.
79         (quotearg_n_style_mem): New function.
80
81         * quotearg.h (quotearg_n_style_mem): New function.
82
83 2002-01-16  Jim Meyering  <meyering@lucent.com>
84
85         * getdate.y: Add three semicolons, each just before a closing brace.
86         Bison (as of version 1.31) no longer papers over that mistake.
87
88 2002-02-14  Paul Eggert  <eggert@twinsun.com>
89
90         * backupfile.c (ISDIGIT): Comment fix.
91         * getdate.y (ISDIGIT): Likewise.
92         * posixtm.c (ISDIGIT, year): Likewise.
93         * strverscmp.c (ISDIGIT): Likewise.
94         * userspec.c (ISDIGIT): Likewise.
95
96 2002-01-05  Jim Meyering  <meyering@lucent.com>
97
98         * version-etc.c (version_etc_copyright): Update copyright year.
99
100 2001-01-19  Paul Eggert  <eggert@twinsun.com>
101
102         * closeout.c (close_stdout_status): If ferror (stdout), do
103         not silently exit merely because the output buffer happens to
104         have nothing pending.
105
106 2001-12-18  Paul Eggert  <eggert@twinsun.com>
107
108         See the big note in ../ChangeLog.
109         * human.c (suffixes): Prefer K to k for 1024.
110         (generate_suffix_backwards): New function.
111         (human_readable_inexact): Use it.
112         * xstrtol.c (__xstrtol): If there is no number but there
113         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
114         Accept 'K' as well as 'k'.
115
116 2001-12-15  Jim Meyering  <meyering@lucent.com>
117
118         * regex.h (__restrict_arr): Update from libc.
119
120         * mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
121         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
122         (STREQ): Define.
123
124 2001-12-10  Jim Meyering  <meyering@lucent.com>
125
126         * linebuffer.c: Remove explicit declarations of xmalloc and xrealloc,
127         Instead, include "xalloc.h".
128         (initbuffer): Don't cast xmalloc return value to char*.
129         (readline): Reword comment.
130         Don't cast xrealloc return value to char*
131         Return NULL, not 0.
132
133 2001-12-09  Jim Meyering  <meyering@lucent.com>
134
135         * modechange.c (mode_compile): Add cast to avoid pedantic warning about
136         `signed and unsigned type in conditional expression'.
137         * posixtm.c (posix_time_parse): Likewise.
138
139         * xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
140
141         * readtokens.c (readtoken): Declare an index to be of type unsigned
142         to avoid a pedantic warning.
143
144         * getstr.c: Don't include assert.h.
145         (getstr): Remove warning-evoking assertions.
146         Return -1 if offset parameter is out of bounds.
147         Change the type of a local from int to size_t.
148
149         * strftime.c (my_strftime_localtime_r): Include this function
150         definition in the `#if ! HAVE_TM_GMTOFF' block.
151
152         * xgethostname.c: Remove declarations of xmalloc and xrealloc.
153         Include xalloc.h instead.
154
155 2001-12-02  Jim Meyering  <meyering@lucent.com>
156
157         * tempname.c: Don't declare getenv, thus reverting the change of
158         2001-11-18.  It's no longer necessary, now that stdlib.h is always
159         included.
160
161         * regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
162         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
163
164 2001-11-30  Akim Demaille  <akim@epita.fr>
165
166         * xstrdup.c: Include xalloc.h, so that xstrdup is declared
167         before being defined.
168
169 2001-11-27  Paul Eggert  <eggert@twinsun.com>
170
171         * quotearg.h (quotearg_n, quotearg_n_style):
172         First arg is int, not unsigned.
173         * quotearg.c (quotearg_n, quotearg_n_style): Likewise.
174         (SIZE_MAX, UINT_MAX): New macros.
175         (quotearg_n_options): Abort if N is negative.
176         Avoid overflow check on hosts where size_t is 64 bits and int
177         is 32 bits, as overflow is impossible there.
178         Fix off-by-one typo that caused unnecessary reallocation.
179
180 2001-11-27  Jim Meyering  <meyering@lucent.com>
181
182         * tempname.c: Merge with version from libc.
183         * regex.c: Likewise.
184
185         * tempname.c: Include stdlib.h unconditionally.  On some old systems
186         for which STDC_HEADERS is 0, it was not included, resulting in a
187         warning about an integer-to-pointer conversion problem with getenv.
188         Reported by Volker Borchert.
189
190 2001-11-26  Jim Meyering  <meyering@lucent.com>
191
192         * gtod.h: Remove file.
193         * Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
194         * gettimeofday.c: Don't include gtod.h.
195         (GTOD_init): Remove function.
196         (rpl_gettimeofday): Do its job here instead, rather than aborting.
197         Suggestion from Volker Borchert.
198
199 2001-11-23  Jim Meyering  <meyering@lucent.com>
200
201         * hash.h (struct hash_table): Don't define here.  Merely declare it.
202         * hash.c (struct hash_table): Define it here instead.
203
204 2001-11-22  Jim Meyering  <meyering@lucent.com>
205
206         * hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
207
208 2001-11-18  Paul Eggert  <eggert@twinsun.com>
209
210         * tempname.c (TMP_MAX): Remove; no longer needed.
211         (TEMPORARIES): New macro.
212         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
213         removes an artificial limitation (e.g. HP-UX 10.20, where
214         TMP_MAX is 17576).
215
216 2001-11-18  Jim Meyering  <meyering@lucent.com>
217
218         * tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
219         on SunOS4.
220
221         * Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
222         files will be created before anything else.
223
224 2001-11-17  Jim Meyering  <meyering@lucent.com>
225
226         * modechange.c (mode_adjust): Fix error introduced on 1999-04-26
227         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
228         rather than group writable.  Patch by Juan F. Codagnone.
229
230         * readtokens.c: Remove explicit declarations of xmalloc and xrealloc,
231         Instead, include "xalloc.h".
232
233         * mountlist.c: Include unlocked-io.h after all system headers.
234         Remove explicit declarations of xmalloc, xrealloc,
235         and xstrdup.  Instead, include "xalloc.h".
236
237         * argmatch.c, closeout.c, error.c, exclude.c: Include unlocked-io.h.
238         * fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c: Likewise.
239         * mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
240
241         * regex.c, sha.c, version-etc.c, yesno.c: Likewise.
242         Reported by Padraig Brady.
243
244         * mkstemp.c: #undef mkstemp.
245         Include config.h.
246         (rpl_mkstemp): Rename from mkstemp.
247         Protoize.
248
249 2001-11-16  Jim Meyering  <meyering@lucent.com>
250
251         * physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
252         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
253         determine the amount of total physical memory, use pstat_getstatic.
254         HPUX-11 doesn't define _SC_PHYS_PAGES.
255         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
256         If sysconf couldn't be used to determine the amount of available
257         physical memory, use both pstat_getstatic and pstat_getdynamic.
258         Based on a patch from Bob Proulx.
259
260 2001-11-05  Jim Meyering  <meyering@lucent.com>
261
262         * xstat.in (slash_aware_lstat): Correct a misleading comment.
263
264 2001-11-03  Jim Meyering  <meyering@lucent.com>
265
266         * argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
267         in argmatch_to_argument call.
268
269         * dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
270         argument.
271
272         * hash.c (hash_clear): Fix a bug that could lead to an infloop or
273         e.g., a fault due to an attempt to free a NULL pointer.
274
275 2001-11-01  Jim Meyering  <meyering@lucent.com>
276
277         * dirfd.c, dirfd.h: New files.
278         * Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
279
280         * hash.c (hash_print) [TESTING]: Clean up.
281
282 2001-10-22  Paul Eggert  <eggert@twinsun.com>
283
284         * hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
285         to avoid a warning if -Wall.
286
287 2001-10-21  Paul Eggert  <eggert@twinsun.com>
288
289         * regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
290
291 2001-10-21  Jim Meyering  <meyering@lucent.com>
292
293         * obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
294         this code would end up calling gettext even in packages built
295         with --disable-nls.
296         * getopt.c (_): Likewise.
297         * regex.c (_): Likewise.
298
299 2001-10-20  Paul Eggert  <eggert@twinsun.com>
300
301         * error.c (strerror_r): Do not declare unless !_LIBC.
302         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
303         Use strerror_r that is only a macro, even if it is not a function.
304         (strerror): Check for HAVE_DECL_STRERROR before declaring.
305         (private_strerror): Use prototypes, not old-style function definition.
306         (print_errno_message): New function.
307         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
308         char*-flavored one.
309         (error_tail, error, error_at_line): Use it.
310
311 2001-10-11  Jim Meyering  <meyering@lucent.com>
312
313         * argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
314         and quote_n (1, ... to avoid clobbering a buffer.
315
316 2001-10-05  Jim Meyering  <meyering@lucent.com>
317
318         * Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and hash-pjw.h.
319         * hash-pjw.c: New file (factored out of fileutils' remove.c).
320         * hash-pjw.h: New file.
321
322 2001-09-30  Jim Meyering  <meyering@lucent.com>
323
324         * mountlist.c [MOUNTED_GETFSSTAT]:
325         Include <sys/ucred.h>, for Apple Darwin.
326         Include sys/mount.h and sys/fs_types.h only if available.
327         (FS_TYPE): Define.
328         (read_filesystem_list): Use FS_TYPE.
329
330 2001-09-29  Paul Eggert  <eggert@twinsun.com>
331
332         * exclude.c (excluded_filename): 0 -> false, since it's
333         a boolean context.
334
335 2001-09-28  Paul Eggert  <eggert@twinsun.com>
336
337         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
338         #defines strtoimax.  Also treat the other strto* functions
339         like strtoimax.
340
341         * xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
342         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
343         (strtoimax, strtoumax): Do not declare if already defined as a macro.
344
345 2001-09-26  Jim Meyering  <meyering@lucent.com>
346
347         Most macros in unlocked-io.h had the wrong number of arguments.
348         * gen-uio: New script.
349         (USE_UNLOCKED_IO): Define to 1 if not already defined.
350         * unlocked-io.hin: Remove file.
351         * Makefile.am (unlocked-io.h): Rewrite to use a separate script,
352         rather than trying to embed it here.
353         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
354         Reported by Padraig Brady.
355
356 2001-09-25  Volker Borchert  <bt@teknon.de>
357
358         * gettimeofday.c (rpl_gettimeofday): Declare local variable `result'.
359
360 2001-09-23  Jim Meyering  <meyering@lucent.com>
361
362         * mountlist.c: Remove useless parentheses in #if directives.
363         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
364         the deprecated MOUNTED symbol is no longer defined in mntent.h.
365
366 2001-09-22  Jim Meyering  <meyering@lucent.com>
367
368         * localcharset.c: Update from latest gettext.
369         * config.charset: Likewise.
370
371 2001-09-20  Jim Meyering  <meyering@lucent.com>
372
373         * xstrtol.c (strtoimax): Guard declaration with
374         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
375         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
376         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
377         (strtoumax): Likewise, for completeness (it wasn't necessary).
378
379 2001-09-06  Paul Eggert  <eggert@twinsun.com>
380
381         * strtoimax.c (HAVE_LONG_LONG):
382         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
383         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
384         to work around bug in IBM C compiler.
385
386 2001-09-16  Jim Meyering  <meyering@lucent.com>
387
388         * mkdir.c: New file.
389
390 2001-09-04  Paul Eggert  <eggert@twinsun.com>
391
392         * xgetcwd.c: Revert some of the previous change; intead,
393         fix the HAVE_GETCWD_NULL code to behave more like the
394         !HAVE_GETCWD_NULL code used to.
395
396         Include "xalloc.h".
397         (xgetcwd): Do not return NULL when memory is exhausted; instead,
398         invoke xalloc_die.
399
400 2001-09-04  Paul Eggert  <eggert@twinsun.com>
401
402         * xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
403         Use ssize_t, not int, to store result of readlink.
404         Check for ssize_t overflow as well as size_t overflow,
405         as POSIX says the result of readlink is implementation-defined
406         when ssize_t overflows.
407         Remove unnecessary cast to char*.
408         Use free+malloc instead of realloc, as the storage doesn't need
409         to be preserved and it's clearer and can be more efficient that way.
410         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
411         * xreadlink.h (xreadlink): Update prototype.
412
413 2001-09-03  Paul Eggert  <eggert@twinsun.com>
414
415         * exclude.c (fnmatch_no_wildcards): Fix confusion between
416         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
417         spotted by Jim Meyering.
418
419 2001-09-03  Jim Meyering  <meyering@lucent.com>
420
421         * xreadlink.c (xreadlink): Preserve errno around `free' during failure.
422
423 2001-09-03  Paul Eggert  <eggert@twinsun.com>
424
425         * xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
426         like the HAVE_GETCWD_NULL code.
427         Include pathmax.h if not HAVE_GETCWD.
428         Do not include xalloc.h.
429         (INITIAL_BUFFER_SIZE): New symbol.
430         Do not use xmalloc / xrealloc, since the caller is responsible for
431         handling errors.  Preserve errno around `free' during failure.
432         Do not overrun buffer when using getwd.
433
434 2001-09-03  Paul Eggert  <eggert@twinsun.com>
435
436         * xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
437         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use getcwd (NULL, 0).
438
439 2001-09-02  Jim Meyering  <meyering@lucent.com>
440
441         * error.c: Update from GNU libc.
442
443 2001-09-01  Jim Meyering  <meyering@lucent.com>
444
445         * xreadlink.c: New file.
446         * xreadlink.h: New file.
447         * Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and xreadlink.h.
448
449         * regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
450         doesn't conflict with sparc-sun-solaris2.7's definition in
451         /usr/include/sys/int_types.h.
452
453         * exclude.c: Use `""', not `<>' to #include non-system header files.
454         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
455         and strncasecmp as r-values.  Unixware didn't have declarations.
456
457 2001-08-31  Jim Meyering  <meyering@lucent.com>
458
459         * xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
460         Use an initial, malloc'd, buffer of length 128 rather than
461         a statically allocated one of length 1024.
462
463 2001-08-30  Paul Eggert  <eggert@twinsun.com>
464
465         * xgetcwd.c: Don't include pathmax.h.
466         Include stdlib.h and unistd.h if available.
467         Include xalloc.h.
468         (xmalloc, xstrdup, free): Remove decls.
469         (xgetcwd): Don't assume sizes fit in unsigned.
470         Check for overflow when computing sizes.
471         Simplify reallocation code.
472
473 2001-08-28  Paul Eggert  <eggert@twinsun.com>
474
475         * Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
476
477         * strtoimax.c: Renamed from strtoxmax.c, removing the
478         old strtoimax.c.
479
480         Also, make the following further changes to make this file's
481         configuration more similar to that of strtol.c:
482         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
483         (strtoumax, uintmax_t, strtoull, strtol): Remove.
484         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
485         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
486         changed to signed values.
487
488         And make the following changes as well:
489         Fix copyright notice, as 1999 was missing.
490         (verify): New macro.
491         (strtoimax): Check sizes at compile-time, not run-time.
492         Prefer strtol to strtoll if both work.
493         (main): Remove; it was not that useful and was a pain to maintain.
494
495         * strtoumax.c: Include strtoimax.c, not strtouxmax.c.
496
497 2001-08-30  Paul Eggert  <eggert@twinsun.com>
498
499         * savedir.c (savedir): Remove size parameter, as POSIX says that
500         a directory's st_size can have an arbitrary value, so the old
501         usage could waste an arbitrary amount of memory.  All uses
502         changed.
503         * savedir.h: Update prototype.
504
505 2001-08-30  Paul Eggert  <eggert@twinsun.com>
506
507         * xstrtol.c (strtoimax): New decl.
508
509 2001-08-28  Paul Eggert  <eggert@twinsun.com>
510
511         * xstrtol.h: Add copyright notice.
512         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
513         LONGINT_INVALID_SUFFIX_CHAR.
514
515 2001-08-30  Paul Eggert  <eggert@twinsun.com>
516
517         * quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
518         tm to be declared.
519
520 2001-08-30  Paul Eggert  <eggert@twinsun.com>
521
522         * hash.c: Remove '2001' from copyright notice.
523
524 2001-08-30  Paul Eggert  <eggert@twinsun.com>
525
526         * full-write.h: New file.
527         * Makefile.am (libfetish_a_SOURCES): Add full-write.h.
528         * full-write.c: Correct credits, as cccp.c no longer
529         exists and anyway it was so heavily changed from the old cccp
530         code as to be unrecognizable.  Include full-write.h.
531         (full_write) Return size_t, with short writes meaning failure.
532         All callers changed.  This fixes a bug with large buffers
533         on 64-bit hosts.
534         * utime.c: Include full-write.h.
535
536 2001-08-30  Paul Eggert  <eggert@twinsun.com>
537
538         Merge 'exclude' changes from tar 1.13.22.
539         This fixes one or two unlikely storage allocation overflow bugs,
540         but doesn't change user-visible behavior otherwise.
541
542 2001-08-30  Paul Eggert  <eggert@twinsun.com>
543
544         * exclude.c (bool): Declare, perhaps by including stdbool.h.
545         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
546         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
547         Include if available.
548         (<xalloc.h>): Include
549         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
550         (verify): New macro.  Use it to verify that EXCLUDE macros do not
551         collide with FNM macros.
552         (struct patopts): New struct.
553         (struct exclude): Use it, as exclude patterns now come with options.
554         (new_exclude): Support above changes.
555         (new_exclude, add_exclude_file):
556         Initial size must now be a power of two to simplify overflow checking.
557         (free_exclude, fnmatch_no_wildcards): New function.
558         (excluded_filename): No longer requires options arg, as the options
559         are determined by add_exclude.  Now returns bool, not int.
560         (excluded_filename, add_exclude):
561         Add support for the fancy new exclusion options.
562         (add_exclude, add_exclude_file): Now takes int options arg.
563         Check for arithmetic overflow when computing sizes.
564         (add_exclude_file): xrealloc might modify errno, so don't
565         realloc until after errno might be used.
566
567         * exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
568         New macros.
569         (free_exclude): New decl.
570         (add_exclude, add_exclude_file): Now takes int options arg.
571         (excluded_filename): No longer requires options arg, as the options
572         are determined by add_exclude.  Now returns bool, not int.
573
574 2001-08-30  Paul Eggert  <eggert@twinsun.com>
575
576         * alloca.c (alloca): Arg is of type size_t, not unsigned.
577
578 2001-08-27  Jim Meyering  <meyering@lucent.com>
579
580         * Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
581
582         * version-etc.c (N_): Remove definition.
583         Revert most of last change.
584         Instead, simply don't mark the `Copyright...' string for translation.
585         Based on advice from Paul Eggert.
586
587         * strtoxmax.c: Tweak comment.
588
589 2001-08-26  Jim Meyering  <meyering@lucent.com>
590
591         * version-etc.c (version_etc_copyright_fmt): Replace literal year
592         of copyright with `%s' so translators don't get an untranslated
593         message in 2002.
594         (COPYRIGHT_YEAR): Define.
595         (version_etc): Use fprintf rather than fputs.
596         Suggestion from Ulrich Drepper.
597
598         * Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
599
600         * strtoll.c: New file, from GNU libc.
601         * xstrtoimax.c: New file.
602
603         * xstrtol.h: Add xstrtoimax.
604         * strtoumax.c: New file.  Simply include "strtoumax.c".
605         * strtoimax.c: New file.  Likewise, but first define STRTOUXMAX_SIGNED.
606
607         * strtoumax.c: Factor to work both for unsigned and signed types, ...
608         * strtoxmax.c: ... then renamed to this.
609
610 2001-08-13  Paul Eggert  <eggert@twinsun.com>
611
612         * Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
613         Port to Solaris 8, where 'sed' requires a space after the 'r'
614         command, and where sh dislikes "$/".  Clean up the spacing a bit.
615         Redirect output to $tmp just once.
616
617 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
618
619         * addext.c (<errno.h>): Include.
620         (errno): Declare if not defined.
621         (addext): Work correctly when pathconf returns -1 and leaves
622         errno alone because there is no limit.  Also, work even if
623         pathconf returns a value greater than SIZE_MAX.
624
625 2001-08-12  Jim Meyering  <meyering@lucent.com>
626
627         * xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
628         Simply `return getcwd (NULL, 0);'.
629         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
630         Use 1300 as initial value for length, not PATH_MAX.
631
632         * pathmax.h: Clean up cpp syntax.
633
634 2001-08-12  Jim Meyering  <meyering@lucent.com>
635
636         * gettimeofday.c: New file.
637         * gtod.h: New file.
638         * Makefile.am (libfetish_a_SOURCES): Add gtod.h.
639
640 2001-08-04  Jim Meyering  <meyering@lucent.com>
641
642         * error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if stmt,
643         to get in sync with glibc.
644
645 2001-08-03  Paul Eggert  <eggert@twinsun.com>
646
647         The following changes are from gettext 0.10.39 as maintained by
648         Bruno Haible.
649
650         * mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
651         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
652         with inverted sense.  All uses changed.
653
654         * mbswidth.c: Don't include <limits.h>.
655         Include <stdlib.h> and <string.h> unconditionally.
656         (iswcntrl, mbsinit, ISCNTRL): New macros.
657         (mbsnwidth): Use K&R style function declarations.
658         Don't bother checking for MB_LEN_MAX == 1, since the compiler
659         can optimize it when MB_CUR_MAX == 1.
660         The width of control characters is zero, not 1.
661
662 2001-07-15  Jim Meyering  <meyering@lucent.com>
663
664         * Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
665         (BUILT_SOURCES): Add unlocked-io.h.
666         (io_functions): Define.
667         (unlocked-io.h): New rule.
668         (DISTCLEANFILES): Add unlocked-io.h.
669         (all-local): Depend on unlocked-io.h, to ensure it is created.
670
671         * unlocked-io.hin: New file
672
673         * regex.c: Update from glibc.
674
675 2001-07-05  Jim Meyering  <meyering@lucent.com>
676
677         * Makefile.am (noinst_HEADERS): Remove definition, per new automake
678         recommendation.
679         (libfetish_a_SOURCES): Put all .h files here instead.
680         Remove a thus-exposed (better checks in automake) duplicate and
681         two unnecessary .h files.
682
683 2001-06-11  Jim Meyering  <meyering@lucent.com>
684
685         * regex.c: Update from GNU libc.
686
687 2001-05-27  Jim Meyering  <meyering@lucent.com>
688
689         * readutmp.h (UT_TYPE): Define.
690
691 2001-05-24  Jim Meyering  <meyering@lucent.com>
692
693         * argmatch.c: Include "quote.h".
694         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
695         quote function.  Reported by Göran Uddeborg.
696
697 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
698
699         * dirname.c (dir_name): Compute append_dot using path, not newpath
700         which is not yet declared.
701
702 2001-05-11  Paul Eggert  <eggert@twinsun.com>
703
704         * Makefile.am (libfetish_a_SOURCES):
705         Add strftime.c, since we now compile it on all hosts.
706
707         * strftime.c (my_strftime):
708         Define to nstrftime if emacs, but only if my_strftime is not defined.
709         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
710         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
711         Add one more extra argument: a nanoseconds value.
712         All uses changed.
713         (ns): New macro.
714         (my_strftime function): Add %N format.
715         (emacs_strftimeu): Renamed from emacs_strftime,
716         with extra ut argument.
717
718 2001-05-11  Paul Eggert  <eggert@twinsun.com>
719
720         dirname code cleanup.  base_name now behaves more compatibly
721         with POSIX basename when given file names that have trailing
722         slashes, and similarly for dir_name.  Add new primitives
723         base_len and dir_len.  Put the directory-name-related decls
724         into dirname.h.
725
726         * addext.c (ISSLASH, base_name): Remove; now in dirname.h.
727         * backupfile.c (base_name): Likewise.
728         * basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
729         * dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
730         * makepath.c (strip_trailing_slashes): Likewise.
731         * path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN, ISSLASH):
732         Likewise.
733         * rename.c (strip_trailing_slashes): Likewise.
734         * same.c (base_name): Likewise.
735         * stripslash.c (ISSLASH): Likewise.
736
737         * addext.c: Include <dirname.h> after size_t is defined.
738         * backupfile.c: Likewise.
739
740         * addext.c (addext): Use base_len to trim redundant
741         trailing slashes instead of doing it ourselves.
742         But do not trim the last slash if it is not redundant.
743
744         * backupfile.c (find_backup_file_name,
745         max_backup_version): Use base_len instead of rolling it ourselves.
746         Handle the case of "" and (on DOS) "C:" correctly.
747
748         * basename.c: Do not include <stdio.h>, <assert.h>; no longer needed.
749         Include <string.h>, <dirname.h>.
750         (base_name): Allow file names ending in slashes, other than names
751         that are all slashes.  In this case, return the basename followed
752         by the slashes.  This is more general, and can be used in places
753         where the original base_name purposely had an assertion failure.
754         (base_len): New function.
755
756         * dirname.c: Include <string.h> instead of <stdlib.h>.
757         Do not include <assert.h>; no longer needed.
758         Include xalloc.h.
759         (memrchr): Remove decl.
760         (dir_name_r): Remove.
761         (dir_len): Renamed from dirlen.  All callers changed.
762         Rewrite in terms of base_name, for simplicity and consistency.
763         (dir_name): Never return NULL.  All callers changed.
764         Do not include <stdlib.h> in test program; no longer needed.
765         return 0; is fine for test program.
766
767         * dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
768         New macros.
769         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
770
771         * path-concat.c (path_concat): Use base_len to compute
772         base length, not strlen; this means we cannot rely on memcpy
773         to null-terminate.
774
775         * same.c (STREQ): Remove.
776         (same_name): Handle the case where the basename ends in trailing '/'.
777
778         * stripslash.c (strip_trailing_slashes): Return nonzero if
779         a slash was stripped.  Do not strip the last slash after a
780         file system prefix.
781
782 2001-04-08  Jim Meyering  <meyering@lucent.com>
783
784         * getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
785         recomputed; that's necessary when the offset spans a DST transition.
786         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
787
788 2001-04-02  Jim Meyering  <meyering@lucent.com>
789
790         * regex.h, regex.c: Update from GNU libc.
791
792 2001-03-19  Paul Eggert  <eggert@twinsun.com>
793
794         * version-etc.c (version_etc_copyright): Update to 2001.
795
796 2001-03-16  Paul Eggert  <eggert@twinsun.com>
797
798         * tempname.c (uint64_t): Define to uintmax_t if
799         not defined, and if UINT64_MAX is not defined.
800         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
801         Reported by John David Anglin.
802
803 2001-03-10  Bruno Haible  <haible@clisp.cons.org>
804
805         * localcharset.c (locale_charset): Allow wildcard syntax. Also resolve
806         alias if codeset is empty.
807         * config.charset (BeOS): Use wildcard syntax.
808
809 2001-03-13  Jim Meyering  <meyering@lucent.com>
810
811         * path-concat.c (path_concat) [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]:
812         Don't insert a backslash when concatenating e.g., `C:' and `foo'.
813         From Bruno Haible.
814
815 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
816
817         * localcharset.c (locale_charset): Don't use setlocale(LC_CTYPE,NULL).
818         Don't return NULL.
819         * unicodeio.c (print_unicode_char): Simplify accordingly.
820
821 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
822
823         * config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
824         support for DOS/DJGPP.
825
826 2001-02-28  Paul Eggert  <eggert@twinsun.com>
827
828         * Makefile.am (libfetish_a_SOURCES):
829         Add dup-safer.c, fopen-safer.c.
830         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
831
832         * dup-safer.c, fopen-safer.c, stdio-safer.h, unistd-safer.h: New files.
833
834 2001-02-25  Paul Eggert  <eggert@twinsun.com>
835
836         The mkstemp replacement is taken from glibc 2.2.2, with some
837         portability fixes for use outside glibc, as follows:
838
839         * tempname.c (struct_stat64): New macro.
840         (direxists, __gen_tempname): Use it.
841         This avoids a portability problem with Solaris 8.
842
843         * tempname.c (<config.h>): Include if HAVE_CONFIG_H.
844         (<stddef.h>, <stdint.h>, <string.h>):
845         Include only if STDC_HEADERS || _LIBC.
846         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
847         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
848         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
849         (__set_errno): Define this macro if <errno.h> doesn't.
850         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
851         Define these macros if <stdio.h> doesn't.
852         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
853         Define these macros if <sys/stat.h>
854         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
855         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
856         __xstat64): Define if not _LIBC.
857         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
858         (__gen_tempname): Invoke gettimeofday only if
859         HAVE_GETTIMEOFDAY || _LIBC;
860         otherwise, fall back on plain "time".
861         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
862
863         * mkstemp.c (__GT_FILE): Define to zero if not defined.
864
865         * mkstemp.c, tempname.c: New files, taken from glibc 2.2.2.
866
867 2001-02-17  Jim Meyering  <meyering@lucent.com>
868
869         * strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
870         around included file name.
871
872         * strnlen.c (__strnlen): Merge in a change from GNU libc.
873
874         * strftime.c: Update from GNU libc (the only changes were to comments).
875
876 2001-02-13  Bruno Haible  <haible@clisp.cons.org>
877
878         * mbswidth.h (mbswidth): Also define as macro, to avoid prototype clash.
879
880 2001-02-17  Paul Eggert  <eggert@twinsun.com>
881
882         * mbswidth.c, quotearg.c (mbrtowc, mbsinit):
883         Remove workaround macros for hosts that have mbrtowc but not
884         mbstate_t, as we now insist on proper declarations for both
885         before using mbrtowc.
886
887 2001-02-17  Jim Meyering  <meyering@lucent.com>
888
889         * regex.c: Update from libc.
890
891 2001-02-16  Paul Eggert  <eggert@twinsun.com>
892
893         * alloca.c (malloc): Undef before defining, since stdlib.h
894         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
895         Reported by Mark Hounschell via Paul Eggert.
896
897 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
898
899         * config.charset: Update for FreeBSD 4.2.
900
901 2001-01-26  Jim Meyering  <meyering@lucent.com>
902
903         * quotearg.c: Include stddef.h.
904         * quote.c: Include stddef.h.
905         Reported by Axel Kittenberger.
906
907         * xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
908         line in double quotes so that it evokes a better diagnostic.
909         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
910         Reported by Axel Kittenberger.
911
912 2001-01-15  Bruno Haible  <haible@clisp.cons.org>
913
914         * unicodeio.c (print_unicode_char): Cast the second iconv() arg,
915         to avoid a warning.  Add back 'const' to inptr.
916
917 2001-01-16  Jim Meyering  <meyering@lucent.com>
918
919         * basename.c: Include <stdio.h>, needed by assert on SunOS4.
920         From Bruno Haible.
921
922 2001-01-14  Jim Meyering  <meyering@lucent.com>
923
924         * rename.c: New file.  From Volker Borchert.
925         Include stdlib.h, string.h or strings.h, and xalloc.h.
926         Use strip_trailing_slashes rather than open-coding it.
927
928 2001-01-03  Paul Eggert  <eggert@twinsun.com>
929
930         * strftime.c: Sync with glibc time/strftime.c 1.81.
931
932 2001-01-03  Jim Meyering  <meyering@lucent.com>
933
934         * unicodeio.c (print_unicode_char): Remove `const' from declaration of
935         local `inptr' to avoid warning with some system declarations of iconv.
936
937 2000-12-29  Paul Eggert  <eggert@twinsun.com>
938
939         * modechange.c: Do not assume that mode_t uses the
940         traditional octal encoding.  E.g. "chmod 1 FOO" should set
941         the other-execute bit of FOO even if S_IXOTH != 1.
942
943         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
944         WOTH, XOTH, ALLM): New macros.
945         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
946          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
947         Use them.
948         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
949         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
950         (mode_compile):
951         No need to use uintmax_t; unsigned long is long enough.
952         Don't bother to get suffix since we don't use it.
953
954 2000-12-24  Jim Meyering  <meyering@lucent.com>
955
956         * hash.c (is_prime): Return explicit boolean values.
957         (hash_get_first): Return NULL to appease Irix5.6's 89.
958         Reported by Nelson Beebe.
959
960 2000-10-31  Bruno Haible  <haible@clisp.cons.org>
961
962         * localcharset.c (locale_charset): Add support for Win32.
963
964 2000-12-18  Paul Eggert  <eggert@twinsun.com>
965
966         * physmem.h, physmem.c: New files.
967
968         * Makefile.am (libfetish_a_SOURCES): Add physmem.c.
969         (noinst_HEADERS): Add physmem.h.
970
971         * xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
972         't' for compatibility with Solaris 8 sort.
973
974 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
975
976         * config.charset: Add support for BeOS.
977
978 2000-12-16  Jim Meyering  <meyering@lucent.com>
979
980         * getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
981         SHELLS_FILE to a file name that's useful on djgpp systems.
982         Include stdlib.h.
983         (ADDITIONAL_DEFAULT_SHELLS): Define.
984         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
985         Based mostly on a patch from Prashant TR.
986
987 2000-12-16  Jim Meyering  <meyering@lucent.com>
988
989         This bug had a serious impact on chown: `chown N:M FILE' (for integer
990         N and M) would have treated it like `chown N:N FILE'.
991
992         * userspec.c (parse_user_spec): Fix typo: s/u/g/.
993
994 2000-10-31  Bruno Haible  <haible@clisp.cons.org>
995
996         * config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB, VISCII,
997         CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256, CP1257
998         to the list of canonical encodings. Rename EUC-CN to GB2312.
999
1000 2000-12-08  Andreas Schwab  <schwab@suse.de>
1001
1002         * mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
1003         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
1004
1005 2000-12-07  Jim Meyering  <meyering@lucent.com>
1006
1007         * stripslash.c (ISSLASH): Define.
1008         (strip_trailing_slashes): Use ISSLASH rather than comparing against `/'.
1009         From Prashant TR.
1010
1011         * dirname.c (FILESYSTEM_PREFIX_LEN): Define.
1012         (dir_name_r): Declare this function as static.
1013         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
1014         manifest itself on a name containing a mix of slashes and
1015         backslashes.
1016         Make this function work with names starting with a DOS-style
1017         drive letter and colon prefix.
1018         (dir_name): Append `.' if necessary.
1019         Based mostly on patches from Prashant TR and Eli Zaretskii.
1020
1021         * dirname.h (dir_name_r): Remove prototype.
1022
1023 2000-12-05  Jim Meyering  <meyering@lucent.com>
1024
1025         * dirname.c (dir_name_r): Add `const' in a few local declarations.
1026
1027 2000-12-04  Jim Meyering  <meyering@lucent.com>
1028
1029         * path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
1030         Also include memory.h, stdlib.h, unistd.h if appropriate.
1031         Reported by Andreas Jaeger (conflicting declaration of malloc).
1032
1033 2000-12-02  Jim Meyering  <meyering@lucent.com>
1034
1035         * closeout.h: Make idempotent, to avoid some obscure warnings.
1036
1037 2000-12-01  Paul Eggert  <eggert@twinsun.com>
1038
1039         * memrchr.c: Include <config.h> before any system include file.
1040
1041 2000-11-29  Paul Eggert  <eggert@twinsun.com>
1042
1043         * dirname.c (dir_name_r): Fix typo: int -> size_t.
1044
1045 2000-11-26  Jim Meyering  <meyering@lucent.com>
1046
1047         * memcoll.c: Include sys/types.h.  From Werner Almesberger.
1048
1049 2000-11-22  Paul Eggert  <eggert@twinsun.com>
1050
1051         * strftime.c (my_strftime): Do not invoke mbrlen with a
1052         size of (size_t) -1; it's not portable.
1053
1054 2000-11-17  Akim Demaille  <akim@epita.fr>
1055
1056         * obstack.h: Formatting changes.
1057         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
1058         prevent type checking.
1059         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
1060         cast the value to (void *): assigning a `foo *' to a `void *'
1061         variable is valid.
1062         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
1063
1064 2000-11-17  Jim Meyering  <meyering@lucent.com>
1065
1066         * strstr.c: Update from GNU libc.
1067
1068 2000-11-16  Jim Meyering  <meyering@lucent.com>
1069
1070         * strverscmp.c: Incorporate weak-alias-related changes from glibc.
1071
1072 2000-11-11  Jim Meyering  <meyering@lucent.com>
1073
1074         * error.c: Add a couple #includes, merging from GNU libc version.
1075
1076 2000-11-10  Jim Meyering  <meyering@lucent.com>
1077
1078         * obstack.h: Update from GNU libc.
1079         * obstack.c: Likewise.
1080
1081 2000-11-06  Paul Eggert  <eggert@twinsun.com>
1082
1083         * getusershell.c (setusershell): Use rewind rather than
1084         fseek/fseeko, to avoid configuration hassles with fseeko.
1085         Don't bother opening SHELLS_FILE if shellstream is NULL;
1086         it's not necessary.
1087
1088 2000-11-05  Jim Meyering  <meyering@lucent.com>
1089
1090         * makepath.h (make_dir): Declare.
1091         * makepath.c (make_dir): Remove `static' attribute.
1092         Tweak a comment.
1093
1094 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
1095
1096         * hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
1097         last one in a bucket, advance to the next bucket.
1098
1099 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
1100
1101         * fnmatch.c: Do not comment out all the code if we are using
1102         the GNU C library, because in some cases we are replacing buggy
1103         code in the GNU C library itself.
1104
1105 2000-10-30  Paul Eggert  <eggert@twinsun.com>
1106
1107         * error.h, getline.h, modechange.h:
1108         Remove "2000" from Copyright line, as the file hasn't been
1109         changed this year other than in the copyright notice.
1110
1111         * xalloc.h: Add "2000" to Copyright line, as this file
1112         was changed this year.
1113
1114 2000-10-30  Paul Eggert  <eggert@twinsun.com>
1115
1116         * fnmatch.c (FOLD): Do not assume that characters are unsigned.
1117         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
1118         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
1119
1120 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
1121
1122         * regex.h (__restrict_arr): Move definition out of #ifndef block.
1123         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
1124         doesn't define __restrict_arr.
1125
1126 2000-10-29  Jim Meyering  <meyering@lucent.com>
1127
1128         * xstat.in: Fix grammar in comment.
1129
1130 2000-10-28  Jim Meyering  <meyering@lucent.com>
1131
1132         * memchr.c: Update from libc.
1133         Adjust for portability:
1134         [HAVE_STDLIB_H]: Include stdlib.h.
1135         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
1136         Undef __memchr, too.
1137         [!weak_alias]: Define __memchr to memchr.
1138
1139         * regex.c: Update from libc.
1140         * regex.h: Likewise.
1141         * getopt1.c: Likewise.
1142         * memcmp.c: Likewise.
1143
1144         * getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
1145         Avoid using fseek, when possible -- it's broken by design.
1146         Patch by Ulrich Drepper.
1147
1148 2000-10-26  Jim Meyering  <meyering@lucent.com>
1149
1150         * strftime.c: Update from libc.
1151
1152 2000-10-25  Jim Meyering  <meyering@lucent.com>
1153
1154         * obstack.c: Update from libc.
1155
1156 2000-10-23  Jim Meyering  <meyering@lucent.com>
1157
1158         * hard-locale.c (hard_locale): Revert last change -- it was simply
1159         wrong.  That set_locale call must not have any side effects.
1160         From Paul Eggert.
1161
1162 2000-10-22  Jim Meyering  <meyering@lucent.com>
1163
1164         * md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
1165         [CYCLIC]: Remove now-unused definition.
1166
1167         * save-cwd.c (O_DIRECTORY): Define, if needed.
1168         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
1169         Suggestion from Ulrich Drepper.
1170
1171 2000-10-21  Jim Meyering  <meyering@lucent.com>
1172
1173         * dirname.c (dir_name_r): New function, factored out of dir_name.
1174         (dir_name): Use dir_name_r.
1175         * dirname.h (dir_name_r): Declare it.
1176
1177 2000-10-21  Jim Meyering  <meyering@lucent.com>
1178
1179         * dirname.c (memrchr): Declare if necessary.
1180         (dir_name): Remove the restriction that there be no
1181         trailing slashes.  Now, this code skips past them, effectively
1182         ignoring them.
1183         [TEST_DIRNAME] (main): New unit tests.
1184
1185         * memrchr.c: New file from GNU libc.
1186         Undef __memrchr, too.
1187         [!weak_alias]: Define __memrchr to memrchr.
1188         Guard weak_alias use with `#ifdef weak_alias'.
1189
1190 2000-10-17  Jim Meyering  <meyering@lucent.com>
1191
1192         * quote.h (PARAMS): Define and use.
1193         Reported by Akim Demaille.
1194
1195         * getopt.c: Update from libc.
1196
1197 2000-10-16  Jim Meyering  <meyering@lucent.com>
1198
1199         * hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to setlocale.
1200         From Jan Fedak.
1201
1202 2000-09-25  Jim Meyering  <meyering@lucent.com>
1203
1204         * md5.h (rol): Define (from GnuPG).
1205
1206         * sha.c: Give credit (GnuPG) where due.
1207         (M): Use rol rather than open-coding it.
1208         Add a FIXME comment.
1209
1210 2000-09-21  Jim Meyering  <meyering@lucent.com>
1211
1212         * userspec.c (parse_user_spec): Remove debugging printf I'd added.
1213         Reported by Michael Stone.
1214
1215 2000-09-20  Jim Meyering  <meyering@lucent.com>
1216
1217         * Makefile.am (libfetish_a_SOURCES): Add sha.c.
1218         (noinst_HEADERS): Add sha.h.
1219         Based on code from Scott G. Miller and from GnuPG.
1220
1221 2000-09-15  Jim Meyering  <meyering@lucent.com>
1222
1223         * regex.c: Update from libc.
1224
1225 2000-09-10  Jim Meyering  <meyering@lucent.com>
1226
1227         * getopt.c (_getopt_internal): Update from glibc.
1228
1229 2000-09-09  Jim Meyering  <meyering@lucent.com>
1230
1231         * quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
1232         think it should be used as a general replacement for isascii.
1233         * fnmatch.c: Likewise.
1234         * mbswidth.c: Likewise
1235         * regex.c: Likewise.
1236
1237         Don't use atoi.
1238         * userspec.c: Include sys/param.h and limits.h.
1239         Include xstrtol.h.
1240         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
1241         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
1242         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
1243         UID, GID.  Check range.
1244
1245 2000-09-06  Jim Meyering  <meyering@lucent.com>
1246
1247         * getopt.c (_getopt_internal): Update from glibc.
1248
1249 2000-08-30  Jim Meyering  <meyering@lucent.com>
1250
1251         * strftime.c: Merge in changes from GNU libc.
1252
1253 2000-08-26  Jim Meyering  <meyering@lucent.com>
1254
1255         * closeout.c: Include "__fpending.h".
1256         (close_stdout_status): Return right away if there's nothing to flush.
1257
1258         * Makefile.am (noinst_HEADERS): Add __fpending.h.
1259         * __fpending.c: New file.
1260         * __fpending.h: New file.
1261
1262 2000-08-07  Paul Eggert  <eggert@twinsun.com>
1263
1264         Standardize on "memory exhausted" instead of "Memory exhausted"
1265         or "virtual memory exhausted".
1266         * obstack.c (print_and_abort): Use "memory exhausted", not
1267         "virtual memory exhausted".
1268         * same.c (same_name): Invoke xalloc_die instead of printing
1269         our own message.
1270         * userspec.c (parse_user_spec): Likewise.
1271         * bumpalloc.h: comment fix
1272         * same.c, userspec.c: Include xalloc.h.
1273
1274         * xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
1275         not char *const and pointing to a constant array.
1276         * xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
1277         (xrealloc): Comment fix.
1278
1279         * userspec.c (parse_user_spec):
1280         Don't translate a message until just before returning,
1281         to avoid unnecessary translation.
1282
1283 2000-08-07  Jim Meyering  <meyering@lucent.com>
1284
1285         * addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
1286         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
1287         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
1288         getgroups.c, gethostname.c, getopt.h, group-member.c,
1289         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
1290         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
1291         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
1292         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
1293         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
1294         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
1295         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
1296         yesno.c: Back out Copyright date changes for each file with no change
1297         this year.  This eases coordination with other programs using the same
1298         source code modules.  From Paul Eggert.
1299
1300 2000-08-03  Greg McGary  <greg@mcgary.org>
1301
1302         * regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
1303         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
1304         (EXTEND_BUFFER): Use them.
1305
1306 2000-08-01  Jim Meyering  <meyering@lucent.com>
1307
1308         * dirname.c (ISSLASH): Define.
1309         (BACKSLASH_IS_PATH_SEPARATOR): Define.
1310         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
1311         both `\' and `/' may be use as path separators.
1312         Based on a patch from Prashant TR.
1313
1314 2000-07-31  Paul Eggert  <eggert@twinsun.com>
1315
1316         * quotearg.c (quotearg_n_options): Don't make the initial
1317         slot vector a constant, since it might get modified.
1318
1319 2000-07-31  Jim Meyering  <meyering@lucent.com>
1320
1321         * xmalloc.c: Use `virtual memory exhausted', not `Memory exhausted'.
1322         * obstack.c (print_and_abort): Likewise.
1323
1324 2000-07-30  Paul Eggert  <eggert@twinsun.com>
1325
1326         * quotearg.c (quotearg_n_options): Preallocate a slot 0
1327         buffer, so that the caller can always quote one small
1328         component of a "memory exhausted" message in slot 0.
1329         From a suggestion by Jim Meyering.
1330
1331 2000-07-30  Jim Meyering  <meyering@lucent.com>
1332
1333         * makepath.c (make_path): Quote the other instance, too.
1334
1335         * quotearg.c (N_STATIC_SLOTVECS): Define.
1336         (STATIC_BUF_SIZE): Define.
1337         (quotearg_n_options): Use only statically allocated storage when
1338         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
1339         than STATIC_BUF_SIZE.
1340
1341 2000-07-29  Jim Meyering  <meyering@lucent.com>
1342
1343         * diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
1344         * dirname.c (dir_name): Likewise.
1345
1346         * basename.c (base_name): Use ISSLASH rather than comparing against `/'.
1347
1348         * dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
1349         (dir_name): Assert that there are no trailing slashes.
1350
1351 2000-07-18  Bruno Haible  <haible@clisp.cons.org>
1352
1353         * mbswidth.h (mbswidth): Add a flags argument.
1354         (mbswidth): New declaration.
1355         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
1356         * mbswidth.c (mbswidth): Add a flags argument.
1357         (mbsnwidth): New function.
1358
1359 2000-07-24  Jim Meyering  <meyering@lucent.com>
1360
1361         * mbswidth.c: Remove useless #else.  From Bruno Haible.
1362
1363 2000-07-23  Paul Eggert  <eggert@twinsun.com>
1364
1365         * mbswidth.c (_XOPEN_SOURCE):
1366         Don't define; this causes problems on Solaris 7.
1367         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
1368
1369 2000-07-23  Paul Eggert  <eggert@twinsun.com>
1370
1371         * quotearg.c:
1372         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
1373         so that mbstate_t is always defined.
1374
1375         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
1376         be 1 in at least one GCC installation, and this configuration
1377         error is likely to be common.  Ignoring MB_LEN_MAX hurts
1378         performance on hosts that have mbrtowc but have only unibyte
1379         locales, but I assume these hosts are rare.
1380
1381 2000-07-23  Paul Eggert  <eggert@twinsun.com>
1382
1383         * quotearg.c: Streamline by invoking multibyte code only if needed.
1384         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
1385         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
1386         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
1387         invoke multibyte primitives.
1388
1389 2000-07-23  Jim Meyering  <meyering@lucent.com>
1390
1391         * basename.c (base_name): Add an assertion.
1392
1393 2000-07-15  Bruno Haible  <clisp.cons.org>
1394
1395         * quotearg.c: When the system forces us to redefine mbstate_t,
1396         shadow its mbsinit function.
1397
1398 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
1399
1400         * mbswidth.h: New file.
1401         * mbswidth.c: New file.
1402         * Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
1403         (noinst_HEADERS): Add mbswidth.h.
1404
1405 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
1406
1407         * config.charset: Add support for FreeBSD. Improve support for HP-UX
1408         and IRIX 6.
1409
1410 2000-07-15  Jim Meyering  <meyering@lucent.com>
1411
1412         * makepath.c: Include quote.h.
1413         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
1414         corresponding argument in a `quote (...)' call.
1415         Give better diagnostics.
1416
1417         * Makefile.am (libfetish_a_SOURCES): Add quote.c.
1418         (noinst_HEADERS): Add quote.h.
1419
1420         * quote.c (quote, quote_n): New file.  Two functions taken verbatim
1421         from tar's src/misc.c.
1422         * quote.h: New file.  Prototypes for same.
1423
1424 2000-07-10  Paul Eggert  <eggert@twinsun.com>
1425
1426         From a suggestion by Bruno Haible.
1427         * quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
1428         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
1429         to decide whether to define the BeOS workaround macro;
1430         this adjusts to the change to AC_MBSTATE_T.
1431
1432 2000-07-13  Paul Eggert  <eggert@twinsun.com>
1433
1434         * quotearg.h (enum quoting style): New enum clocale_quoting_style.
1435
1436         * quotearg.c (quoting_style_args, quoting_style_vals,
1437         quotearg_buffer_restyled): Add support for
1438         clocale_quoting_style.  Undo previous change to
1439         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
1440         and "{RIGHT QUOTATION MARK}" msgids.
1441
1442 2000-07-05  Paul Eggert  <eggert@twinsun.com>
1443
1444         The old behavior of quoting `like this' doesn't look good with
1445         newer, ISO-style fonts.  See:
1446         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
1447
1448         Instead, quote "like this" by default.  Let the translator
1449         tailor the locale-specific quoting behavior by providing
1450         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
1451
1452         * quotearg.c (N_): New macro.
1453         (gettext_default): New function.
1454         (quotearg_buffer_restyled): Use
1455         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
1456         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
1457
1458 2000-07-09  Jim Meyering  <meyering@lucent.com>
1459
1460         * Most files: Update copyright dates to include 2000.
1461
1462 2000-07-08  Jim Meyering  <meyering@lucent.com>
1463
1464         * xgethostname.c (ENAMETOOLONG): Define to an unlikely value
1465         if not defined.
1466         (xgethostname): Remove now-unnecessary #ifdef.
1467         Move declaration of `err' into loop where it's used.
1468
1469 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
1470
1471         * xgethostname.c (xgethostname): Protect against the SunOS5.5 bug
1472         by allocating a larger buffer. Test the gethostname return value for
1473         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
1474         returns an error and ENAMETOOLONG isn't defined.
1475
1476 2000-07-05  Paul Eggert  <eggert@twinsun.com>
1477         and Bruno Haible  <haible@clisp.cons.org>
1478
1479         * quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
1480
1481 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
1482
1483         * quotearg.c (struct quoting_options): Simplify quote_these_too
1484         dimension.
1485
1486 2000-07-03  Jim Meyering  <meyering@lucent.com>
1487
1488         * strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
1489         Reported by Bruno Haible.
1490
1491 2000-07-04  Jim Meyering  <meyering@lucent.com>
1492
1493         * quotearg.c: Make inclusion of <wchar.h> independent of whether
1494         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
1495         lacks mbrtowc.
1496
1497 2000-07-03  Paul Eggert  <eggert@twinsun.com>
1498         and Bruno Haible  <haible@clisp.cons.org>
1499
1500         * quotearg.c (mbrtowc):
1501         Assign to *pwc, and return 1 only if result is nonzero.
1502         (iswprint): Use ISPRINT when substituting our own mbrtowc.
1503
1504 2000-07-03  Jim Meyering  <meyering@lucent.com>
1505
1506         * readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
1507         This is necessary to get a definition of e.g., UTMP_FILE on HP-UX 10.20.
1508         From Bob Proulx.
1509
1510 2000-07-02  Jim Meyering  <meyering@lucent.com>
1511
1512         * quotearg.c (mbstate_t): Don't define here.
1513
1514 2000-07-02  Jim Meyering  <meyering@lucent.com>
1515
1516         * nanosleep.c (SIGCONT): Define if not already defined.
1517
1518 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
1519
1520         * mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
1521         per change in ../m4/ls-mntd-fs.m4.
1522         (read_filesystem_list): Ignore symbolic links.
1523
1524 2000-06-29  Jim Meyering  <meyering@lucent.com>
1525
1526         * same.c: Include <string.h> or <strings.h>, as appropriate,
1527         for declaration of strcmp.
1528
1529         * long-options.c: Include <stdlib.h>, for declaration of exit.
1530
1531         * mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
1532         Avoid warning by casting result to `char *' to remove `const'.
1533
1534 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
1535
1536         * Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
1537
1538 2000-06-26  Paul Eggert  <eggert@twinsun.com>
1539
1540         savedir now sets errno on failure and invokes xmalloc to get memory.
1541         Fix a couple of other minor bugs while we're at it.
1542
1543         * savedir.c (<unistd.h>): Do not include; there's no need.
1544         (NAMLEN): Remove macro.
1545         (malloc, realloc): Remove decls.
1546         (stpcpy): Likewise.
1547         ("xalloc.h"): Include.
1548         (NAME_SIZE_DEFAULT): New macro.
1549         (savedir): Use xmalloc / xrealloc to allocate memory.
1550         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
1551         Skip "" directory entries.
1552         Use strlen to calculate directory entry length, since the old method
1553         is rarely used these days and isn't worth supporting.
1554         Don't use a pointer after freeing it.
1555         Check for integer overflow when calculating allocation size.
1556         Use memcpy to copy entries, instead of stpcpy.
1557         Set errno properly when returning NULL.
1558         Check for readdir error.
1559
1560 2000-06-26  Jim Meyering  <meyering@lucent.com>
1561
1562         * posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
1563
1564 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
1565
1566         * getusershell.c (xmalloc, xrealloc): Remove functions.
1567         Include xalloc.h.
1568         Don't include <stdlib.h>.  Don't declare malloc, realloc.
1569
1570 2000-06-23  Bruno Haible  <haible@clisp.cons.org>
1571
1572         * unicodeio.c (print_unicode_char): Work around ansi2knr deficiency.
1573
1574 2000-06-24  Jim Meyering  <meyering@lucent.com>
1575
1576         * error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
1577
1578 2000-06-21  Jim Meyering  <meyering@lucent.com>
1579
1580         * getpass.c: New file, from Bruno Haible.  Required for BeOS.
1581
1582 2000-06-19  Paul Eggert  <eggert@twinsun.com>
1583
1584         * quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
1585         (mbrtowc, mbstate_t): Define substitutes if
1586         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
1587         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
1588         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
1589
1590 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
1591
1592         * xgetcwd.c (xgetcwd): If the required pathname length is smaller
1593         than 1024, return a memory chunk of least possible size, instead
1594         of size PATH_MAX + 2. In the loop, increment the size proportionally.
1595         Use free/xmalloc instead of xrealloc to avoid copying for very long
1596         paths.
1597
1598 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
1599
1600         * canon-host.c (canon_host): Use malloc and memcpy to copy an
1601         address, not strdup.  Include <stdlib.h> and don't declare free().
1602
1603 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
1604
1605         * path-concat.c (path_concat): Don't access dir[-1] if dir is
1606         the empty string.
1607
1608 2000-06-21  Jim Meyering  <meyering@lucent.com>
1609
1610         * Makefile.am (libfetish_a_SOURCES): Add getstr.c.
1611         (noinst_HEADERS): Add getstr.h.
1612
1613         * getline.c (getstr): Move into a separate file.
1614         * getstr.c (getstr): New file, extracted from getline.c, with
1615         the following changes: new parameter, delim2; both delim[12]
1616         parameters have type `int', not `char'.  The latter would lose
1617         with 8-bit delimiters.
1618         * getstr.h: New file.
1619
1620 2000-06-19  Jim Meyering  <meyering@lucent.com>
1621
1622         * getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
1623
1624 2000-06-18  Jim Meyering  <meyering@lucent.com>
1625
1626         * mkdir.c: Remove file, due mainly to copyright incompatibility.
1627         Besides, these days every porting target provides a mkdir function.
1628
1629         * strnlen.c: Include memory.h, string.h, and/or strings.h as needed.
1630         (this snippet comes from src/system.h).
1631
1632 2000-06-15  Paul Eggert  <eggert@twinsun.com>
1633
1634         * human.c (adjust_value): New function.
1635         (human_readable_inexact): Apply rounding style even when
1636         printing approximate values.
1637
1638 2000-06-14  Paul Eggert  <eggert@twinsun.com>
1639
1640         * human.c (human_readable_inexact): Allow an input block
1641         size that is not a multiple of the output block size, and vice versa.
1642         Reported by Piergiorgio Sartor.
1643
1644 2000-06-14  Paul Eggert  <eggert@twinsun.com>
1645
1646         * getdate.y (get_date): Apply relative times after time
1647         zone indicator, not before.  Reported by Todd A. Jacobs.
1648
1649 2000-06-13  Jim Meyering  <meyering@lucent.com>
1650
1651         * Makefile.am (all-local): Depend on lstat.c and stat.c.
1652
1653         * xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
1654
1655 2000-06-12  Paul Eggert  <eggert@twinsun.com>
1656
1657         * xstat.in: Include <stdlib.h> in lstat, to declare "free".
1658
1659 2000-06-04  Paul Eggert  <eggert@twinsun.com>
1660
1661         * strnlen.c: Include <config.h> if HAVE_CONFIG_H.
1662
1663 2000-06-04  Jim Meyering  <meyering@lucent.com>
1664
1665         * getugroups.c (getugroups): Cast -1 to gid_t, for systems like
1666         SunOS4.1.4 for which gid_t is an unsigned type.
1667
1668 2000-06-03  Jim Meyering  <meyering@lucent.com>
1669
1670         * strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
1671
1672 2000-05-26  Bruno Haible  <haible@clisp.cons.org>
1673
1674         * Makefile.am (install-exec-local): On systems with glibc-2.1 or
1675         newer, don't install charset.alias.
1676         * config.charset: Change the Linux/glibc rules so they become empty
1677         on glibc-2.1 or newer.
1678
1679 2000-06-02  Jim Meyering  <meyering@lucent.com>
1680
1681         * mountlist.c: Back out last change.  Instead, do this...
1682         * mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the me_dummy
1683         member using the same `ignore'-testing code.
1684         * mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
1685         fs_type strings.
1686         From Mark D. Roth.
1687
1688 2000-05-29  Jim Meyering  <meyering@lucent.com>
1689
1690         * mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore mounts
1691         with the `ignore' attribute.  Based on a patch from Mark D. Roth.
1692
1693 2000-05-22  Jim Meyering  <meyering@lucent.com>
1694
1695         * makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
1696
1697 2000-05-18  Jim Meyering  <meyering@lucent.com>
1698
1699         * hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
1700         back, too, since it may have been modified by allocate_entry.
1701         (hash_delete): Rewrite to use neither the assignment operator
1702         nor the comma operator in an if-expression.
1703
1704 2000-05-15  Paul Eggert  <eggert@twinsun.com>
1705
1706         * closeout.c:
1707         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
1708         Remove; no longer needed.
1709         "quotearg.h": Add include.
1710         (file_name): Do not bother to explicitly initialize to NULL; it's less
1711         efficient on some hosts.
1712         (close_stdout_status): Remove test as to whether stdout was already
1713         closed; it breaks for the case "echo x | sort >&-".
1714         Quote file name colons.
1715         Do not assume that _("write error") lacks format strings.
1716
1717 2000-05-15  Jim Meyering  <meyering@lucent.com>
1718
1719         * version-etc.c (version_etc_copyright): Update the copyright string
1720         used in all --version output.
1721
1722 2000-05-14  Jim Meyering  <meyering@lucent.com>
1723
1724         * closeout.c (close_stdout_set_file_name): New function.
1725         (close_stdout_status): Use new file-scoped global.
1726         Return right away if fstat says the stdout file descriptor is invalid.
1727         * closeout.h (close_stdout_set_file_name): Declare.
1728
1729 2000-05-10  Jim Meyering  <meyering@lucent.com>
1730
1731         * closeout.c [default_exit_status]: New file-scoped variable.
1732         (close_stdout_set_status): New function.
1733         * closeout.h (close_stdout_set_status): Declare.
1734
1735 2000-05-08  Jim Meyering  <meyering@lucent.com>
1736
1737         * long-options.c: Don't include closeout.h.
1738         (parse_long_options): Don't call close_stdout for --version.
1739
1740 2000-05-06  Jim Meyering  <meyering@lucent.com>
1741
1742         * strnlen.c: Undefine __strnlen and strnlen.
1743         [!weak_alias]: Define __strnlen to strnlen.
1744
1745         * atexit.c: New file, from libiberty.
1746
1747 2000-05-06  Jim Meyering  <meyering@lucent.com>
1748
1749         * closeout.c (close_stdout_status): Also check for errors on the
1750         stderr stream.
1751
1752 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
1753
1754         * localcharset.c (get_charset_aliases): Use malloc, realloc and memcpy
1755         instead of xmalloc, xrealloc, path_concat.
1756         (locale_charset): Treat empty environment variables as absent.
1757         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
1758
1759 2000-05-04  Jim Meyering  <meyering@lucent.com>
1760
1761         * getopt.c: Update from glibc.
1762         * obstack.c: Likewise.
1763         * obstack.h: Likewise.
1764         * regex.c: Likewise.  NB: K&R compiler support is dropped for this file
1765
1766         * regex.h: Likewise.
1767         * strndup.c: Likewise.
1768         * strnlen.c: New file, from glibc.
1769
1770 2000-05-01  Jim Meyering  <meyering@lucent.com>
1771
1772         * full-write.c (full_write): Remove `FIXME' part of comment.
1773
1774 2000-04-29  Jim Meyering  <meyering@lucent.com>
1775
1776         * path-concat.c: Declare strdup only if it's not defined.
1777         * canon-host.c: Likewise.
1778
1779 2000-04-28  Jim Meyering  <meyering@lucent.com>
1780
1781         * rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to avoid
1782         redefinition warning on some systems (HPUX).  Otherwise, regex.h is
1783         included first, then limits.h is included by locale.h by libintl.h.
1784         From John David Anglin.
1785
1786 2000-04-25  Jim Meyering  <meyering@lucent.com>
1787
1788         * makepath.c (S_IRWXUGO): Define.
1789         (make_path): Always perform explicit chmod if MODE specifies any
1790         of the `special' permission bits.  Prompted by a bug report against
1791         install from Mate Wierdl and Joost van Baal.
1792
1793 2000-04-18  Jim Meyering  <meyering@lucent.com>
1794
1795         * README: New file.
1796
1797         * getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
1798         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
1799
1800 2000-04-17  Jim Meyering  <meyering@lucent.com>
1801
1802         * strftime.c (my_strftime) [strftime]: Declare strftime here, since
1803         the definition of it to rpl_strftime also defined-away the system's
1804         declaration.
1805
1806 2000-04-15  Jim Meyering  <meyering@lucent.com>
1807
1808         Use `C' to denote so-called `contiguous' files, the same way
1809         that tar does.
1810         * filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
1811         (ftypelet): Use S_ISCTG.
1812         From Michael Deutschmann.
1813
1814 2000-04-14  Jim Meyering  <meyering@lucent.com>
1815
1816         * strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
1817
1818 2000-04-08  Jim Meyering  <meyering@lucent.com>
1819
1820         * Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
1821         names don't conflict.  Reported by Eli Zaretskii.
1822
1823 2000-03-28  Bruno Haible  <haible@clisp.cons.org>
1824
1825         * unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
1826         bug.  Deal with the different error behavior of Irix iconv.
1827
1828 2000-04-07  Jim Meyering  <meyering@lucent.com>
1829
1830         * putenv.c: Move inclusion of errno.h so it follows that of sys/types.h,
1831         to work around system header problems on AIX 3.2.5.  From Bruno Haible.
1832
1833 2000-04-05  Jim Meyering  <meyering@lucent.com>
1834
1835         Portability tweaks required for ultrix4.3.
1836         * readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare getutent.
1837         * readutmp.c: Include sys/types.h before sys/stat.h.
1838         * canon-host.c: Declare strdup.
1839         * path-concat.c: Likewise.
1840         From John David Anglin.
1841
1842 2000-04-04  Jim Meyering  <meyering@lucent.com>
1843
1844         Be more DOS 8.3-friendly.
1845         * ref-add.sin: Renamed from ref-add.sed.in.
1846         * ref-del.sin: Renamed from ref-del.sed.in.
1847         * Makefile.am: Reflect renaming.
1848         Reported by Eli Zaretskii.
1849
1850         Use a temporary file name that won't clash with `charset.alias'
1851         in the DOS 8.3 name space.
1852         * Makefile.am (charset_tmp): Define.
1853         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
1854         (uninstall-local): Likewise.
1855         Reported by Eli Zaretskii.
1856
1857 2000-03-29  Paul Eggert  <eggert@twinsun.com>
1858
1859         * time/strftime.c (my_strftime): Make sure we call the system
1860         strftime, not ourselves, when invoking the underlying strftime.
1861
1862 2000-03-24  Jim Meyering  <meyering@lucent.com>
1863
1864         * Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
1865         (charset_alias): Define.
1866         (install-exec-local): Factor out common code.
1867         (uninstall-local): Split lines longer than 80.
1868         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
1869         (SUFFIXES): Define.
1870         (.sed.in.sed): New rule.  Don't redirect directly to $@.
1871         (CLEANFILES): Add ref-add.sed and ref-del.sed.
1872
1873 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
1874
1875         * config.charset: Output a line containing "Packages using this file".
1876         * ref-add.sed.in, ref-del.sed.in: New files.
1877         * Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
1878         ref-del.sed): New rules.
1879
1880 2000-03-17  Jim Meyering  <meyering@lucent.com>
1881
1882         * unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
1883         Otherwise, include <strings.h>
1884
1885 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
1886
1887         * unicodeio.c (utf8_wctomb): New function.
1888         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
1889         format instead of in UCS-4 with platform dependent endianness.
1890
1891 2000-03-07  Paul Eggert  <eggert@twinsun.com>
1892
1893         * savedir.c (savedir): Work even if directory size is
1894         negative; this can happen with some screwy NFS configurations.
1895
1896 2000-03-06  Jim Meyering  <meyering@lucent.com>
1897
1898         * localcharset.c (get_charset_aliases): Don't try to free file_name
1899         if it's NULL (because we ran out of memory).  From Bruno Haible.
1900
1901 2000-03-05  Jim Meyering  <meyering@lucent.com>
1902
1903         * localcharset.c ("path-concat.h"): Include.
1904         (get_charset_aliases): Use path_concat instead of ANSI string
1905         concatenation.
1906
1907         * unicodeio.h (PARAMS): Define.
1908         Use it to guard prototype.
1909
1910 2000-03-04  Jim Meyering  <meyering@lucent.com>
1911
1912         * Makefile.am (install-exec-local): Create $(libdir) before installing
1913         into it.
1914         (uninstall-local): Uncomment this rule so `make distcheck' works
1915         once again.
1916
1917         * unicodeio.c (<errno.h>): Include it.
1918         (errno): Declare if not defined.
1919
1920         * localcharset.c: Add Bruno's comment justifying use of volatile.
1921
1922         * config.charset: New version, incorporating remarks from a linux
1923         i18n mailing list.  From Bruno Haible.
1924
1925 2000-03-02  Jim Meyering  <meyering@lucent.com>
1926
1927         * Makefile.am (EXTRA_DIST): Add config.charset.
1928
1929 2000-03-01  Jim Meyering  <meyering@lucent.com>
1930
1931         * localcharset.c: Guard some #includes with `#if HAVE_...'.
1932         * unicodeio.c: Likewise.
1933
1934 2000-02-02  Bruno Haible  <haible@clisp.cons.org>
1935
1936         * config.charset: New file.
1937         * localcharset.c: New file.
1938         * unicodeio.h, unicodeio.c: New files.
1939         * Makefile.am (DEFS): Add -DLIBDIR=...
1940         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
1941         (noinst_HEADERS): Add unicodeio.h.
1942         (all-local, install-exec-local, charset.alias): New targets.
1943
1944 2000-02-28  Paul Eggert  <eggert@twinsun.com>
1945
1946         * quotearg.c (ALERT_CHAR): New macro.
1947         (quotearg_buffer_restyled): Use it.
1948
1949 2000-02-27  Jim Meyering  <meyering@lucent.com>
1950
1951         * strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
1952         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
1953
1954         * backupfile.c: Guard inclusion of stdlib.h with `#if HAVE_STDLIB_H',
1955         not `#if STDC_HEADERS'.
1956         Declare malloc if needed.
1957
1958         * backupfile.c: Use `#if !HAVE_DECL...' instead of `#ifndef HAVE_DECL..'
1959         now that autoconf always defines the HAVE_DECL_ symbols.
1960         * human.c: Likewise.
1961         * same.c: Likewise.
1962         * strtoumax.c: Likewise.
1963
1964         * backupfile.c: Arrange for cpp to fail if the configure-time
1965         declaration check was not run.
1966         * hash.c: Likewise.
1967         * human.c: Likewise.
1968         * same.c: Likewise.
1969         * strtoumax.c: Likewise.
1970
1971         * userspec.c (parse_user_spec): If there is no `:' but there is a `.',
1972         then first look up the entire `.'-containing string as a login name.
1973
1974 2000-02-18  Paul Eggert  <eggert@twinsun.com>
1975
1976         * getdate.y: Handle two-digit years with leading zeros correctly.
1977         (textint): New typedef.
1978         (parser_control): Member year changed from int to textint.
1979         All uses changed.
1980         (YYSTYPE): Removed; replaced by %union with int and textint members.
1981         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
1982         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
1983         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
1984         (tSNUMBER, tUNUMBER): Now of type <textintval>.
1985         (date, number, to_year): Use width of number in digits, not its value,
1986         to determine whether it's a 2-digit year, or a 2-digit time.
1987         (yylex): Store number of digits of numeric tokens.
1988         Reported by John Kendall.
1989
1990         (parser_control): Changed from struct parser_control to typedef (for
1991         consistency).  All uses changed.
1992
1993         (tID): Removed; not used.
1994         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
1995
1996 2000-02-14  Paul Eggert  <eggert@twinsun.com>
1997
1998         * getpagesize.h (getpagesize): Port to VMS for Alpha;
1999         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
2000
2001 2000-02-12  Jim Meyering  <meyering@lucent.com>
2002
2003         * userspec.c (ISDIGIT): Define it.
2004         (isdigit): Remove definition.
2005         (is_number): Use ISDIGIT, not isdigit.
2006         <libintl.h>: Include.
2007         (_ and N_): Define.
2008         (parse_user_spec): Mark translatable strings.
2009
2010 2000-02-10  Jim Meyering  <meyering@lucent.com>
2011
2012         With these changes, nanosleep.[ch] are finally enough like the other
2013         lib/* replacement files to compile on a few more losing systems.
2014
2015         * nanosleep.h: Don't include config.h.
2016         Remove prototype from declaration of nanosleep.
2017         (PARAMS): Remove now-unneeded definition.
2018         * nanosleep.c: #undef nanosleep.
2019         (rpl_nanosleep): Rename from nanosleep.
2020
2021 2000-02-03  Jim Meyering  <meyering@lucent.com>
2022
2023         * readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
2024         rather than with `#if HAVE_UTMPNAME'.
2025
2026 2000-02-01  Jim Meyering  <meyering@lucent.com>
2027
2028         * readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
2029
2030 2000-01-31  Jim Meyering  <meyering@lucent.com>
2031
2032         * nanosleep.h (nanosleep): Guard declaration with
2033         `#if ! HAVE_DECL_NANOSLEEP'.
2034         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
2035         the declaration in that vendor's sys/timers.h.
2036         Reported by Christian Krackowizer.
2037
2038         * quotearg.c (ISASCII): Add #undef and move definition to follow
2039         inclusion of wctype.h to work around solaris2.6 namespace pollution.
2040         (ISPRINT): Likewise.
2041         Reported by Tom Tromey.
2042
2043 2000-01-30  Jim Meyering  <meyering@lucent.com>
2044
2045         * readutmp.c (extract_trimmed_name): Use UT_USER instead of hard-coding
2046         uses of ->ut_name.  The latter doesn't work with new Linux header files
2047         where only utmpx.ut_user is declared.
2048
2049         * readutmp.h (UT_USER): Define.
2050
2051 2000-01-23  Jim Meyering  <meyering@lucent.com>
2052
2053         * Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
2054         obstack.c.
2055
2056 2000-01-22  Jim Meyering  <meyering@lucent.com>
2057
2058         * strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
2059         [! HAVE_DECL_STRTOULL]: Declare strtoull.
2060         Required for some AIX systems.  Reported by Christian Krackowizer.
2061         [TESTING] (main): New function.
2062
2063         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
2064         * dirname.c (dir_name): Support for DOS-style file names with drive
2065         letters.
2066
2067         * quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of iswprint.
2068
2069         * strverscmp.c (ISDIGIT): Define.
2070         (strverscmp): Use ISDIGIT, not isdigit.
2071
2072 2000-01-17  Paul Eggert  <eggert@twinsun.com>
2073
2074         * nanosleep.c (nanosleep):
2075         Don't use SA_INTERRUPT to decide whether to call sigaction, as
2076         POSIX.1 doesn't require SA_INTERRUPT and some systems
2077         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
2078         it's been part of POSIX.1 since day 1 (in 1988).
2079
2080 2000-01-17  Jim Meyering  <meyering@lucent.com>
2081
2082         * interlock: Remove unused file.  Reported by François Pinard.
2083
2084 2000-01-16  Paul Eggert  <eggert@twinsun.com>
2085
2086         * quotearg.c (quotearg_buffer_restyled): Do not quote
2087         alert, backslash, formfeed, and vertical tab unnecessarily in
2088         shell quoting style.
2089
2090 Local Variables:
2091 version-control: never
2092 End: