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