2364
|
1 2000-03-24 Jim Meyering <meyering@lucent.com> |
|
2 |
|
3 * Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in. |
|
4 (charset_alias): Define. |
|
5 (install-exec-local): Factor out common code. |
|
6 (uninstall-local): Split lines longer than 80. |
|
7 (ref-add.sed, ref-del.sed): Remove rules... (do the following instead) |
|
8 (SUFFIXES): Define. |
|
9 (.sed.in.sed): New rule. Don't redirect directly to $@. |
|
10 (CLEANFILES): Add ref-add.sed and ref-del.sed. |
|
11 |
|
12 2000-03-19 Bruno Haible <haible@clisp.cons.org> |
|
13 |
|
14 * config.charset: Output a line containing "Packages using this file". |
|
15 * ref-add.sed.in, ref-del.sed.in: New files. |
|
16 * Makefile.am (install-exec-local, uninstall-local, ref-add.sed, |
|
17 ref-del.sed): New rules. |
|
18 |
2353
|
19 2000-03-17 Jim Meyering <meyering@lucent.com> |
|
20 |
|
21 * unicodeio.c (<string.h>): Include only #if HAVE_STRING_H. |
|
22 Otherwise, include <strings.h> |
|
23 |
|
24 2000-03-17 Bruno Haible <haible@clisp.cons.org> |
|
25 |
|
26 * unicodeio.c (utf8_wctomb): New function. |
|
27 (print_unicode_char): Pass the Unicode character to iconv in UTF-8 |
|
28 format instead of in UCS-4 with platform dependent endianness. |
|
29 |
2343
|
30 2000-03-07 Paul Eggert <eggert@twinsun.com> |
|
31 |
|
32 * lib/savedir.c (savedir): Work even if directory size is |
|
33 negative; this can happen with some screwy NFS configurations. |
|
34 |
2348
|
35 2000-03-06 Jim Meyering <meyering@lucent.com> |
|
36 |
|
37 * localcharset.c (get_charset_aliases): Don't try to free file_name |
|
38 if it's NULL (because we ran out of memory). From Bruno Haible. |
|
39 |
2337
|
40 2000-03-05 Jim Meyering <meyering@lucent.com> |
|
41 |
2339
|
42 * localcharset.c ("path-concat.h"): Include. |
|
43 (get_charset_aliases): Use path_concat instead of ANSI string |
|
44 concatenation. |
|
45 |
2337
|
46 * unicodeio.h (PARAMS): Define. |
|
47 Use it to guard prototype. |
|
48 |
2330
|
49 2000-03-04 Jim Meyering <meyering@lucent.com> |
|
50 |
2332
|
51 * Makefile.am (install-exec-local): Create $(libdir) before installing |
|
52 into it. |
2334
|
53 (uninstall-local): Uncomment this rule so `make distcheck' works |
|
54 once again. |
2332
|
55 |
2330
|
56 * unicodeio.c (<errno.h>): Include it. |
|
57 (errno): Declare if not defined. |
|
58 |
|
59 * localcharset.c: Add Bruno's comment justifying use of volatile. |
|
60 |
|
61 * config.charset: New version, incorporating remarks from a linux |
|
62 i18n mailing list. From Bruno Haible. |
|
63 |
|
64 2000-03-02 Jim Meyering <meyering@lucent.com> |
|
65 |
|
66 * Makefile.am (EXTRA_DIST): Add config.charset. |
|
67 |
2309
|
68 2000-03-01 Jim Meyering <meyering@lucent.com> |
|
69 |
|
70 * localcharset.c: Guard some #includes with `#if HAVE_...'. |
|
71 * unicodeio.c: Likewise. |
|
72 |
|
73 2000-02-02 Bruno Haible <haible@clisp.cons.org> |
|
74 |
|
75 * config.charset: New file. |
|
76 * localcharset.c: New file. |
|
77 * unicodeio.h, unicodeio.c: New files. |
|
78 * Makefile.am (DEFS): Add -DLIBDIR=... |
|
79 (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c. |
|
80 (noinst_HEADERS): Add unicodeio.h. |
|
81 (all-local, install-exec-local, charset.alias): New targets. |
|
82 |
2300
|
83 2000-02-28 Paul Eggert <eggert@twinsun.com> |
|
84 |
|
85 * lib/quotearg.c (ALERT_CHAR): New macro. |
|
86 (quotearg_buffer_restyled): Use it. |
|
87 |
2285
|
88 2000-02-27 Jim Meyering <meyering@lucent.com> |
|
89 |
2298
|
90 * strtoumax.c: Fix typo in decl of strtoul: s/long long/long/. |
|
91 Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'. |
|
92 |
2295
|
93 * backupfile.c: Guard inclusion of stdlib.h with `#if HAVE_STDLIB_H', |
|
94 not `#if STDC_HEADERS'. |
|
95 Declare malloc if needed. |
|
96 |
2290
|
97 * backupfile.c: Use `#if !HAVE_DECL...' instead of `#ifndef HAVE_DECL..' |
|
98 now that autoconf always defines the HAVE_DECL_ symbols. |
|
99 * human.c: Likewise. |
|
100 * same.c: Likewise. |
|
101 * strtoumax.c: Likewise. |
|
102 |
|
103 * backupfile.c: Arrange for cpp to fail if the configure-time |
|
104 declaration check was not run. |
|
105 * hash.c: Likewise. |
|
106 * human.c: Likewise. |
|
107 * same.c: Likewise. |
|
108 * strtoumax.c: Likewise. |
|
109 |
2285
|
110 * userspec.c (parse_user_spec): If there is no `:' but there is a `.', |
|
111 then first look up the entire `.'-containing string as a login name. |
|
112 |
2286
|
113 2000-02-18 Paul Eggert <eggert@twinsun.com> |
|
114 |
|
115 * lib/getdate.y: Handle two-digit years with leading zeros correctly. |
|
116 (textint): New typedef. |
|
117 (parser_control): Member year changed from int to textint. |
|
118 All uses changed. |
|
119 (YYSTYPE): Removed; replaced by %union with int and textint members. |
|
120 (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN, |
|
121 tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER, |
|
122 tYEAR_UNIT, tZONE, o_merid): Now of type <intval>. |
|
123 (tSNUMBER, tUNUMBER): Now of type <textintval>. |
|
124 (date, number, to_year): Use width of number in digits, not its value, |
|
125 to determine whether it's a 2-digit year, or a 2-digit time. |
|
126 (yylex): Store number of digits of numeric tokens. |
|
127 Reported by John Kendall. |
|
128 |
|
129 (parser_control): Changed from struct parser_control to typedef (for |
|
130 consistency). All uses changed. |
|
131 |
|
132 (tID): Removed; not used. |
|
133 (yylex): Return '?' for unknown identifiers, rather than (unused) tID. |
|
134 |
2278
|
135 2000-02-14 Paul Eggert <eggert@twinsun.com> |
|
136 |
|
137 * lib/getpagesize.h (getpagesize): Port to VMS for Alpha; |
2279
|
138 adapted from changes to grep getpagesize.h by Martin P.J. Zinser. |
2278
|
139 |
2274
|
140 2000-02-12 Jim Meyering <meyering@lucent.com> |
|
141 |
|
142 * userspec.c (ISDIGIT): Define it. |
|
143 (isdigit): Remove definition. |
|
144 (is_number): Use ISDIGIT, not isdigit. |
|
145 <libintl.h>: Include. |
|
146 (_ and N_): Define. |
|
147 (parse_user_spec): Mark translatable strings. |
|
148 |
2268
|
149 2000-02-10 Jim Meyering <meyering@lucent.com> |
|
150 |
|
151 With these changes, nanosleep.[ch] are finally enough like the other |
|
152 lib/* replacement files to compile on a few more losing systems. |
|
153 |
|
154 * nanosleep.h: Don't include config.h. |
|
155 Remove prototype from declaration of nanosleep. |
|
156 (PARAMS): Remove now-unneeded definition. |
|
157 * nanosleep.c: #undef nanosleep. |
|
158 (rpl_nanosleep): Rename from nanosleep. |
|
159 |
2245
|
160 2000-02-03 Jim Meyering <meyering@lucent.com> |
|
161 |
|
162 * readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION', |
|
163 rather than with `#if HAVE_UTMPNAME'. |
|
164 |
|
165 2000-02-01 Jim Meyering <meyering@lucent.com> |
|
166 |
|
167 * readutmp.h (UT_USER): Add parens. From Andreas Schwab. |
|
168 |
2235
|
169 2000-01-31 Jim Meyering <meyering@lucent.com> |
|
170 |
2240
|
171 * nanosleep.h (nanosleep): Guard declaration with |
|
172 `#if ! HAVE_DECL_NANOSLEEP'. |
2275
|
173 Without this, OFS gets a redeclaration error for rpl_nanosleep, due to |
2240
|
174 the declaration in that vendor's sys/timers.h. |
|
175 Reported by Christian Krackowizer. |
|
176 |
2235
|
177 * quotearg.c (ISASCII): Add #undef and move definition to follow |
|
178 inclusion of wctype.h to work around solaris2.6 namespace pollution. |
|
179 (ISPRINT): Likewise. |
2236
|
180 Reported by Tom Tromey. |
2235
|
181 |
2228
|
182 2000-01-30 Jim Meyering <meyering@lucent.com> |
|
183 |
|
184 * readutmp.c (extract_trimmed_name): Use UT_USER instead of hard-coding |
|
185 uses of ->ut_name. The latter doesn't work with new Linux header files |
|
186 where only utmpx.ut_user is declared. |
|
187 |
|
188 * readutmp.h (UT_USER): Define. |
|
189 |
2193
|
190 2000-01-23 Jim Meyering <meyering@lucent.com> |
|
191 |
|
192 * Makefile.am (libfetish_a_SOURCES): Remove explicit mention of |
|
193 obstack.c. |
|
194 |
2163
|
195 2000-01-22 Jim Meyering <meyering@lucent.com> |
2188
|
196 |
|
197 * strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul. |
|
198 [! HAVE_DECL_STRTOULL]: Declare strtoull. |
|
199 Required for some AIX systems. Reported by Christian Krackowizer. |
|
200 [TESTING] (main): New function. |
|
201 |
2172
|
202 1997-10-17 Eli Zaretskii <eliz@is.elta.co.il> |
|
203 * dirname.c (dir_name): Support for DOS-style file names with drive |
|
204 letters. |
2163
|
205 |
2185
|
206 * quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of iswprint. |
2184
|
207 |
2163
|
208 * strverscmp.c (ISDIGIT): Define. |
|
209 (strverscmp): Use ISDIGIT, not isdigit. |
|
210 |
2152
|
211 2000-01-17 Paul Eggert <eggert@twinsun.com> |
|
212 |
|
213 * nanosleep.c (nanosleep): |
|
214 Don't use SA_INTERRUPT to decide whether to call sigaction, as |
|
215 POSIX.1 doesn't require SA_INTERRUPT and some systems |
|
216 (e.g. Solaris 7) don't define it. Use SA_NOCLDSTOP instead; |
|
217 it's been part of POSIX.1 since day 1 (in 1988). |
|
218 |
2150
|
219 2000-01-17 Jim Meyering <meyering@lucent.com> |
|
220 |
|
221 * interlock: Remove unused file. Reported by Fran�ois Pinard. |
|
222 |
2144
|
223 2000-01-16 Paul Eggert <eggert@twinsun.com> |
|
224 |
|
225 * lib/quotearg.c (quotearg_buffer_restyled): Do not quote |
|
226 alert, backslash, formfeed, and vertical tab unnecessarily in |
|
227 shell quoting style. |
2190
|
228 |
|
229 Local Variables: |
|
230 version-control: never |
|
231 End: |