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