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