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