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