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