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