06c85e6d7abc88829f0ae726987640fc1e184534
[gnulib.git] / lib / ChangeLog
1 2000-04-25  Jim Meyering  <meyering@lucent.com>
2
3         * makepath.c (S_IRWXUGO): Define.
4         (make_path): Always perform explicit chmod if MODE specifies any
5         of the `special' permission bits.  Prompted by a bug report against
6         install from Mate Wierdl and Joost van Baal.
7
8 2000-04-18  Jim Meyering  <meyering@lucent.com>
9
10         * README: New file.
11
12         * getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
13         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
14
15 2000-04-17  Jim Meyering  <meyering@lucent.com>
16
17         * strftime.c (my_strftime) [strftime]: Declare strftime here, since
18         the definition of it to rpl_strftime also defined-away the system's
19         declaration.
20
21 2000-04-15  Jim Meyering  <meyering@lucent.com>
22
23         Use `C' to denote so-called `contiguous' files, the same way
24         that tar does.
25         * filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
26         (ftypelet): Use S_ISCTG.
27         From Michael Deutschmann.
28
29 2000-04-14  Jim Meyering  <meyering@lucent.com>
30
31         * strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
32
33 2000-04-08  Jim Meyering  <meyering@lucent.com>
34
35         * Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
36         names don't conflict.  Reported by Eli Zaretskii.
37
38 2000-03-28  Bruno Haible  <haible@clisp.cons.org>
39
40         * unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
41         bug.  Deal with the different error behavior of Irix iconv.
42
43 2000-04-07  Jim Meyering  <meyering@lucent.com>
44
45         * putenv.c: Move inclusion of errno.h so it follows that of sys/types.h,
46         to work around system header problems on AIX 3.2.5.  From Bruno Haible.
47
48 2000-04-05  Jim Meyering  <meyering@lucent.com>
49
50         Portability tweaks required for ultrix4.3.
51         * readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare getutent.
52         * readutmp.c: Include sys/types.h before sys/stat.h.
53         * canon-host.c: Declare strdup.
54         * path-concat.c: Likewise.
55         From John David Anglin.
56
57 2000-04-04  Jim Meyering  <meyering@lucent.com>
58
59         Be more DOS 8.3-friendly.
60         * ref-add.sin: Renamed from ref-add.sed.in.
61         * ref-del.sin: Renamed from ref-del.sed.in.
62         * Makefile.am: Reflect renaming.
63         Reported by Eli Zaretskii.
64
65         Use a temporary file name that won't clash with `charset.alias'
66         in the DOS 8.3 name space.
67         * Makefile.am (charset_tmp): Define.
68         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
69         (uninstall-local): Likewise.
70         Reported by Eli Zaretskii.
71
72 2000-03-29  Paul Eggert  <eggert@twinsun.com>
73
74         * time/strftime.c (my_strftime): Make sure we call the system
75         strftime, not ourselves, when invoking the underlying strftime.
76
77 2000-03-24  Jim Meyering  <meyering@lucent.com>
78
79         * Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
80         (charset_alias): Define.
81         (install-exec-local): Factor out common code.
82         (uninstall-local): Split lines longer than 80.
83         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
84         (SUFFIXES): Define.
85         (.sed.in.sed): New rule.  Don't redirect directly to $@.
86         (CLEANFILES): Add ref-add.sed and ref-del.sed.
87
88 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
89
90         * config.charset: Output a line containing "Packages using this file".
91         * ref-add.sed.in, ref-del.sed.in: New files.
92         * Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
93         ref-del.sed): New rules.
94
95 2000-03-17  Jim Meyering  <meyering@lucent.com>
96
97         * unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
98         Otherwise, include <strings.h>
99
100 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
101
102         * unicodeio.c (utf8_wctomb): New function.
103         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
104         format instead of in UCS-4 with platform dependent endianness.
105
106 2000-03-07  Paul Eggert  <eggert@twinsun.com>
107
108         * lib/savedir.c (savedir): Work even if directory size is
109         negative; this can happen with some screwy NFS configurations.
110
111 2000-03-06  Jim Meyering  <meyering@lucent.com>
112
113         * localcharset.c (get_charset_aliases): Don't try to free file_name
114         if it's NULL (because we ran out of memory).  From Bruno Haible.
115
116 2000-03-05  Jim Meyering  <meyering@lucent.com>
117
118         * localcharset.c ("path-concat.h"): Include.
119         (get_charset_aliases): Use path_concat instead of ANSI string
120         concatenation.
121
122         * unicodeio.h (PARAMS): Define.
123         Use it to guard prototype.
124
125 2000-03-04  Jim Meyering  <meyering@lucent.com>
126
127         * Makefile.am (install-exec-local): Create $(libdir) before installing
128         into it.
129         (uninstall-local): Uncomment this rule so `make distcheck' works
130         once again.
131
132         * unicodeio.c (<errno.h>): Include it.
133         (errno): Declare if not defined.
134
135         * localcharset.c: Add Bruno's comment justifying use of volatile.
136
137         * config.charset: New version, incorporating remarks from a linux
138         i18n mailing list.  From Bruno Haible.
139
140 2000-03-02  Jim Meyering  <meyering@lucent.com>
141
142         * Makefile.am (EXTRA_DIST): Add config.charset.
143
144 2000-03-01  Jim Meyering  <meyering@lucent.com>
145
146         * localcharset.c: Guard some #includes with `#if HAVE_...'.
147         * unicodeio.c: Likewise.
148
149 2000-02-02  Bruno Haible  <haible@clisp.cons.org>
150
151         * config.charset: New file.
152         * localcharset.c: New file.
153         * unicodeio.h, unicodeio.c: New files.
154         * Makefile.am (DEFS): Add -DLIBDIR=...
155         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
156         (noinst_HEADERS): Add unicodeio.h.
157         (all-local, install-exec-local, charset.alias): New targets.
158
159 2000-02-28  Paul Eggert  <eggert@twinsun.com>
160
161         * lib/quotearg.c (ALERT_CHAR): New macro.
162         (quotearg_buffer_restyled): Use it.
163
164 2000-02-27  Jim Meyering  <meyering@lucent.com>
165
166         * strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
167         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
168
169         * backupfile.c: Guard inclusion of stdlib.h with `#if HAVE_STDLIB_H',
170         not `#if STDC_HEADERS'.
171         Declare malloc if needed.
172
173         * backupfile.c: Use `#if !HAVE_DECL...' instead of `#ifndef HAVE_DECL..'
174         now that autoconf always defines the HAVE_DECL_ symbols.
175         * human.c: Likewise.
176         * same.c: Likewise.
177         * strtoumax.c: Likewise.
178
179         * backupfile.c: Arrange for cpp to fail if the configure-time
180         declaration check was not run.
181         * hash.c: Likewise.
182         * human.c: Likewise.
183         * same.c: Likewise.
184         * strtoumax.c: Likewise.
185
186         * userspec.c (parse_user_spec): If there is no `:' but there is a `.',
187         then first look up the entire `.'-containing string as a login name.
188
189 2000-02-18  Paul Eggert  <eggert@twinsun.com>
190
191         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
192         (textint): New typedef.
193         (parser_control): Member year changed from int to textint.
194         All uses changed.
195         (YYSTYPE): Removed; replaced by %union with int and textint members.
196         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
197         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
198         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
199         (tSNUMBER, tUNUMBER): Now of type <textintval>.
200         (date, number, to_year): Use width of number in digits, not its value,
201         to determine whether it's a 2-digit year, or a 2-digit time.
202         (yylex): Store number of digits of numeric tokens.
203         Reported by John Kendall.
204
205         (parser_control): Changed from struct parser_control to typedef (for
206         consistency).  All uses changed.
207
208         (tID): Removed; not used.
209         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
210
211 2000-02-14  Paul Eggert  <eggert@twinsun.com>
212
213         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
214         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
215
216 2000-02-12  Jim Meyering  <meyering@lucent.com>
217
218         * userspec.c (ISDIGIT): Define it.
219         (isdigit): Remove definition.
220         (is_number): Use ISDIGIT, not isdigit.
221         <libintl.h>: Include.
222         (_ and N_): Define.
223         (parse_user_spec): Mark translatable strings.
224
225 2000-02-10  Jim Meyering  <meyering@lucent.com>
226
227         With these changes, nanosleep.[ch] are finally enough like the other
228         lib/* replacement files to compile on a few more losing systems.
229
230         * nanosleep.h: Don't include config.h.
231         Remove prototype from declaration of nanosleep.
232         (PARAMS): Remove now-unneeded definition.
233         * nanosleep.c: #undef nanosleep.
234         (rpl_nanosleep): Rename from nanosleep.
235
236 2000-02-03  Jim Meyering  <meyering@lucent.com>
237
238         * readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
239         rather than with `#if HAVE_UTMPNAME'.
240
241 2000-02-01  Jim Meyering  <meyering@lucent.com>
242
243         * readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
244
245 2000-01-31  Jim Meyering  <meyering@lucent.com>
246
247         * nanosleep.h (nanosleep): Guard declaration with
248         `#if ! HAVE_DECL_NANOSLEEP'.
249         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
250         the declaration in that vendor's sys/timers.h.
251         Reported by Christian Krackowizer.
252
253         * quotearg.c (ISASCII): Add #undef and move definition to follow
254         inclusion of wctype.h to work around solaris2.6 namespace pollution.
255         (ISPRINT): Likewise.
256         Reported by Tom Tromey.
257
258 2000-01-30  Jim Meyering  <meyering@lucent.com>
259
260         * readutmp.c (extract_trimmed_name): Use UT_USER instead of hard-coding
261         uses of ->ut_name.  The latter doesn't work with new Linux header files
262         where only utmpx.ut_user is declared.
263
264         * readutmp.h (UT_USER): Define.
265
266 2000-01-23  Jim Meyering  <meyering@lucent.com>
267
268         * Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
269         obstack.c.
270
271 2000-01-22  Jim Meyering  <meyering@lucent.com>
272
273         * strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
274         [! HAVE_DECL_STRTOULL]: Declare strtoull.
275         Required for some AIX systems.  Reported by Christian Krackowizer.
276         [TESTING] (main): New function.
277
278         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
279         * dirname.c (dir_name): Support for DOS-style file names with drive
280         letters.
281
282         * quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of iswprint.
283
284         * strverscmp.c (ISDIGIT): Define.
285         (strverscmp): Use ISDIGIT, not isdigit.
286
287 2000-01-17  Paul Eggert  <eggert@twinsun.com>
288
289         * nanosleep.c (nanosleep):
290         Don't use SA_INTERRUPT to decide whether to call sigaction, as
291         POSIX.1 doesn't require SA_INTERRUPT and some systems
292         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
293         it's been part of POSIX.1 since day 1 (in 1988).
294
295 2000-01-17  Jim Meyering  <meyering@lucent.com>
296
297         * interlock: Remove unused file.  Reported by François Pinard.
298
299 2000-01-16  Paul Eggert  <eggert@twinsun.com>
300
301         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
302         alert, backslash, formfeed, and vertical tab unnecessarily in
303         shell quoting style.
304
305 Local Variables:
306 version-control: never
307 End: