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