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