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