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