2655
|
1 2000-06-17 Bruno Haible <haible@clisp.cons.org> |
|
2 |
|
3 * getusershell.c (xmalloc, xrealloc): Remove functions. |
|
4 Include xalloc.h. |
|
5 Don't include <stdlib.h>. Don't declare malloc, realloc. |
|
6 |
2651
|
7 2000-06-23 Bruno Haible <haible@clisp.cons.org> |
|
8 |
|
9 * unicodeio.c (print_unicode_char): Work around ansi2knr deficiency. |
|
10 |
2644
|
11 2000-06-24 Jim Meyering <meyering@lucent.com> |
|
12 |
|
13 * error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r. |
|
14 |
2636
|
15 2000-06-21 Jim Meyering <meyering@lucent.com> |
|
16 |
|
17 * getpass.c: New file, from Bruno Haible. Required for BeOS. |
|
18 |
2640
|
19 2000-06-19 Paul Eggert <eggert@twinsun.com> |
|
20 |
|
21 * quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5. |
|
22 (mbrtowc, mbstate_t): Define substitutes if |
|
23 HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT. |
|
24 (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT, |
|
25 not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H). |
|
26 |
2628
|
27 2000-06-17 Bruno Haible <haible@clisp.cons.org> |
|
28 |
|
29 * xgetcwd.c (xgetcwd): If the required pathname length is smaller |
|
30 than 1024, return a memory chunk of least possible size, instead |
|
31 of size PATH_MAX + 2. In the loop, increment the size proportionally. |
|
32 Use free/xmalloc instead of xrealloc to avoid copying for very long |
|
33 paths. |
|
34 |
2626
|
35 2000-06-17 Bruno Haible <haible@clisp.cons.org> |
|
36 |
|
37 * canon-host.c (canon_host): Use malloc and memcpy to copy an |
|
38 address, not strdup. Include <stdlib.h> and don't declare free(). |
|
39 |
2624
|
40 2000-06-17 Bruno Haible <haible@clisp.cons.org> |
|
41 |
|
42 * path-concat.c (path_concat): Don't access dir[-1] if dir is |
|
43 the empty string. |
|
44 |
2621
|
45 2000-06-21 Jim Meyering <meyering@lucent.com> |
|
46 |
|
47 * Makefile.am (libfetish_a_SOURCES): Add getstr.c. |
|
48 (noinst_HEADERS): Add getstr.h. |
|
49 |
|
50 * getline.c (getstr): Move into a separate file. |
|
51 * getstr.c (getstr): New file, extracted from getline.c, with |
|
52 the following changes: new parameter, delim2; both delim[12] |
|
53 parameters have type `int', not `char'. The latter would lose |
|
54 with 8-bit delimiters. |
|
55 * getstr.h: New file. |
|
56 |
2611
|
57 2000-06-19 Jim Meyering <meyering@lucent.com> |
|
58 |
|
59 * getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define. |
|
60 |
2602
|
61 2000-06-18 Jim Meyering <meyering@lucent.com> |
|
62 |
2608
|
63 * mkdir.c: Remove file, due mainly to copyright incompatibility. |
|
64 Besides, these days every porting target provides a mkdir function. |
|
65 |
2606
|
66 * strnlen.c: Include memory.h, string.h, and/or strings.h as needed. |
|
67 (this snippet comes from src/system.h). |
|
68 |
2594
|
69 2000-06-15 Paul Eggert <eggert@twinsun.com> |
|
70 |
2640
|
71 * human.c (adjust_value): New function. |
2594
|
72 (human_readable_inexact): Apply rounding style even when |
|
73 printing approximate values. |
|
74 |
2591
|
75 2000-06-14 Paul Eggert <eggert@twinsun.com> |
|
76 |
2640
|
77 * human.c (human_readable_inexact): Allow an input block |
2591
|
78 size that is not a multiple of the output block size, and vice versa. |
2592
|
79 Reported by Piergiorgio Sartor. |
2591
|
80 |
2589
|
81 2000-06-14 Paul Eggert <eggert@twinsun.com> |
|
82 |
2640
|
83 * getdate.y (get_date): Apply relative times after time |
2589
|
84 zone indicator, not before. Reported by Todd A. Jacobs. |
|
85 |
2585
|
86 2000-06-13 Jim Meyering <meyering@lucent.com> |
|
87 |
2591
|
88 * Makefile.am (all-local): Depend on lstat.c and stat.c. |
|
89 |
2585
|
90 * xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c. |
|
91 |
2583
|
92 2000-06-12 Paul Eggert <eggert@twinsun.com> |
|
93 |
|
94 * xstat.in: Include <stdlib.h> in lstat, to declare "free". |
|
95 |
2575
|
96 2000-06-04 Paul Eggert <eggert@twinsun.com> |
|
97 |
2583
|
98 * strnlen.c: Include <config.h> if HAVE_CONFIG_H. |
2575
|
99 |
2573
|
100 2000-06-04 Jim Meyering <meyering@lucent.com> |
|
101 |
|
102 * getugroups.c (getugroups): Cast -1 to gid_t, for systems like |
|
103 SunOS4.1.4 for which gid_t is an unsigned type. |
|
104 |
2569
|
105 2000-06-03 Jim Meyering <meyering@lucent.com> |
|
106 |
|
107 * strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr. |
|
108 |
2559
|
109 2000-05-26 Bruno Haible <haible@clisp.cons.org> |
|
110 |
|
111 * Makefile.am (install-exec-local): On systems with glibc-2.1 or |
|
112 newer, don't install charset.alias. |
|
113 * config.charset: Change the Linux/glibc rules so they become empty |
|
114 on glibc-2.1 or newer. |
|
115 |
2554
|
116 2000-06-02 Jim Meyering <meyering@lucent.com> |
|
117 |
|
118 * mountlist.c: Back out last change. Instead, do this... |
|
119 * mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the me_dummy |
|
120 member using the same `ignore'-testing code. |
|
121 * mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored |
|
122 fs_type strings. |
|
123 From Mark D. Roth. |
|
124 |
2549
|
125 2000-05-29 Jim Meyering <meyering@lucent.com> |
|
126 |
|
127 * mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore mounts |
|
128 with the `ignore' attribute. Based on a patch from Mark D. Roth. |
|
129 |
2548
|
130 2000-05-22 Jim Meyering <meyering@lucent.com> |
|
131 |
|
132 * makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block. |
|
133 |
2525
|
134 2000-05-18 Jim Meyering <meyering@lucent.com> |
|
135 |
|
136 * hash.c (hash_rehash): Fix a nasty bug: copy the free entry list |
|
137 back, too, since it may have been modified by allocate_entry. |
|
138 (hash_delete): Rewrite to use neither the assignment operator |
|
139 nor the comma operator in an if-expression. |
|
140 |
2523
|
141 2000-05-15 Paul Eggert <eggert@twinsun.com> |
|
142 |
2583
|
143 * closeout.c: |
2523
|
144 <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO): |
|
145 Remove; no longer needed. |
|
146 "quotearg.h": Add include. |
|
147 (file_name): Do not bother to explicitly initialize to NULL; it's less |
|
148 efficient on some hosts. |
|
149 (close_stdout_status): Remove test as to whether stdout was already |
|
150 closed; it breaks for the case "echo x | sort >&-". |
|
151 Quote file name colons. |
|
152 Do not assume that _("write error") lacks format strings. |
|
153 |
2518
|
154 2000-05-15 Jim Meyering <meyering@lucent.com> |
|
155 |
|
156 * version-etc.c (version_etc_copyright): Update the copyright string |
|
157 used in all --version output. |
|
158 |
2521
|
159 2000-05-14 Jim Meyering <meyering@lucent.com> |
|
160 |
|
161 * closeout.c (close_stdout_set_file_name): New function. |
|
162 (close_stdout_status): Use new file-scoped global. |
|
163 Return right away if fstat says the stdout file descriptor is invalid. |
|
164 * closeout.h (close_stdout_set_file_name): Declare. |
|
165 |
2515
|
166 2000-05-10 Jim Meyering <meyering@lucent.com> |
|
167 |
|
168 * closeout.c [default_exit_status]: New file-scoped variable. |
|
169 (close_stdout_set_status): New function. |
|
170 * closeout.h (close_stdout_set_status): Declare. |
|
171 |
2508
|
172 2000-05-08 Jim Meyering <meyering@lucent.com> |
|
173 |
|
174 * long-options.c: Don't include closeout.h. |
|
175 (parse_long_options): Don't call close_stdout for --version. |
|
176 |
2499
|
177 2000-05-06 Jim Meyering <meyering@lucent.com> |
|
178 |
2504
|
179 * strnlen.c: Undefine __strnlen and strnlen. |
|
180 [!weak_alias]: Define __strnlen to strnlen. |
|
181 |
2499
|
182 * atexit.c: New file, from libiberty. |
|
183 |
|
184 2000-05-06 Jim Meyering <meyering@lucent.com> |
|
185 |
|
186 * closeout.c (close_stdout_status): Also check for errors on the |
|
187 stderr stream. |
|
188 |
2488
|
189 2000-05-05 Bruno Haible <haible@clisp.cons.org> |
|
190 |
|
191 * localcharset.c (get_charset_aliases): Use malloc, realloc and memcpy |
|
192 instead of xmalloc, xrealloc, path_concat. |
|
193 (locale_charset): Treat empty environment variables as absent. |
|
194 (DIRECTORY_SEPARATOR, ISSLASH): New macros. |
|
195 |
2467
|
196 2000-05-04 Jim Meyering <meyering@lucent.com> |
|
197 |
|
198 * getopt.c: Update from glibc. |
2478
|
199 * obstack.c: Likewise. |
|
200 * obstack.h: Likewise. |
2473
|
201 * regex.c: Likewise. NB: K&R compiler support is dropped for this file |
|
202 |
|
203 * regex.h: Likewise. |
2470
|
204 * strndup.c: Likewise. |
|
205 * strnlen.c: New file, from glibc. |
2467
|
206 |
2461
|
207 2000-05-01 Jim Meyering <meyering@lucent.com> |
|
208 |
|
209 * full-write.c (full_write): Remove `FIXME' part of comment. |
|
210 |
2447
|
211 2000-04-29 Jim Meyering <meyering@lucent.com> |
|
212 |
|
213 * path-concat.c: Declare strdup only if it's not defined. |
|
214 * canon-host.c: Likewise. |
|
215 |
2445
|
216 2000-04-28 Jim Meyering <meyering@lucent.com> |
|
217 |
|
218 * rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to avoid |
|
219 redefinition warning on some systems (HPUX). Otherwise, regex.h is |
|
220 included first, then limits.h is included by locale.h by libintl.h. |
|
221 From John David Anglin. |
|
222 |
2440
|
223 2000-04-25 Jim Meyering <meyering@lucent.com> |
|
224 |
|
225 * makepath.c (S_IRWXUGO): Define. |
|
226 (make_path): Always perform explicit chmod if MODE specifies any |
2442
|
227 of the `special' permission bits. Prompted by a bug report against |
|
228 install from Mate Wierdl and Joost van Baal. |
2440
|
229 |
2435
|
230 2000-04-18 Jim Meyering <meyering@lucent.com> |
|
231 |
2440
|
232 * README: New file. |
|
233 |
2435
|
234 * getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define |
|
235 getpagesize. For BeOS. Based on a patch from Bruno Haible. |
|
236 |
2431
|
237 2000-04-17 Jim Meyering <meyering@lucent.com> |
|
238 |
|
239 * strftime.c (my_strftime) [strftime]: Declare strftime here, since |
|
240 the definition of it to rpl_strftime also defined-away the system's |
|
241 declaration. |
|
242 |
2427
|
243 2000-04-15 Jim Meyering <meyering@lucent.com> |
|
244 |
|
245 Use `C' to denote so-called `contiguous' files, the same way |
|
246 that tar does. |
|
247 * filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define. |
|
248 (ftypelet): Use S_ISCTG. |
|
249 From Michael Deutschmann. |
|
250 |
|
251 2000-04-14 Jim Meyering <meyering@lucent.com> |
|
252 |
|
253 * strftime.c (my_strftime) [#ifdef strftime]: Declare strftime. |
|
254 |
2416
|
255 2000-04-08 Jim Meyering <meyering@lucent.com> |
|
256 |
|
257 * Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3 |
|
258 names don't conflict. Reported by Eli Zaretskii. |
|
259 |
2413
|
260 2000-03-28 Bruno Haible <haible@clisp.cons.org> |
|
261 |
|
262 * unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv |
2431
|
263 bug. Deal with the different error behavior of Irix iconv. |
2413
|
264 |
|
265 2000-04-07 Jim Meyering <meyering@lucent.com> |
|
266 |
|
267 * putenv.c: Move inclusion of errno.h so it follows that of sys/types.h, |
|
268 to work around system header problems on AIX 3.2.5. From Bruno Haible. |
|
269 |
2406
|
270 2000-04-05 Jim Meyering <meyering@lucent.com> |
|
271 |
|
272 Portability tweaks required for ultrix4.3. |
|
273 * readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare getutent. |
|
274 * readutmp.c: Include sys/types.h before sys/stat.h. |
|
275 * canon-host.c: Declare strdup. |
|
276 * path-concat.c: Likewise. |
|
277 From John David Anglin. |
|
278 |
2397
|
279 2000-04-04 Jim Meyering <meyering@lucent.com> |
|
280 |
|
281 Be more DOS 8.3-friendly. |
|
282 * ref-add.sin: Renamed from ref-add.sed.in. |
|
283 * ref-del.sin: Renamed from ref-del.sed.in. |
|
284 * Makefile.am: Reflect renaming. |
|
285 Reported by Eli Zaretskii. |
|
286 |
|
287 Use a temporary file name that won't clash with `charset.alias' |
|
288 in the DOS 8.3 name space. |
|
289 * Makefile.am (charset_tmp): Define. |
|
290 (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t. |
|
291 (uninstall-local): Likewise. |
|
292 Reported by Eli Zaretskii. |
|
293 |
2379
|
294 2000-03-29 Paul Eggert <eggert@twinsun.com> |
|
295 |
|
296 * time/strftime.c (my_strftime): Make sure we call the system |
|
297 strftime, not ourselves, when invoking the underlying strftime. |
|
298 |
2364
|
299 2000-03-24 Jim Meyering <meyering@lucent.com> |
|
300 |
|
301 * Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in. |
|
302 (charset_alias): Define. |
|
303 (install-exec-local): Factor out common code. |
|
304 (uninstall-local): Split lines longer than 80. |
|
305 (ref-add.sed, ref-del.sed): Remove rules... (do the following instead) |
|
306 (SUFFIXES): Define. |
|
307 (.sed.in.sed): New rule. Don't redirect directly to $@. |
|
308 (CLEANFILES): Add ref-add.sed and ref-del.sed. |
|
309 |
|
310 2000-03-19 Bruno Haible <haible@clisp.cons.org> |
|
311 |
|
312 * config.charset: Output a line containing "Packages using this file". |
|
313 * ref-add.sed.in, ref-del.sed.in: New files. |
|
314 * Makefile.am (install-exec-local, uninstall-local, ref-add.sed, |
|
315 ref-del.sed): New rules. |
|
316 |
2353
|
317 2000-03-17 Jim Meyering <meyering@lucent.com> |
|
318 |
|
319 * unicodeio.c (<string.h>): Include only #if HAVE_STRING_H. |
|
320 Otherwise, include <strings.h> |
|
321 |
|
322 2000-03-17 Bruno Haible <haible@clisp.cons.org> |
|
323 |
|
324 * unicodeio.c (utf8_wctomb): New function. |
|
325 (print_unicode_char): Pass the Unicode character to iconv in UTF-8 |
|
326 format instead of in UCS-4 with platform dependent endianness. |
|
327 |
2343
|
328 2000-03-07 Paul Eggert <eggert@twinsun.com> |
|
329 |
2583
|
330 * savedir.c (savedir): Work even if directory size is |
2343
|
331 negative; this can happen with some screwy NFS configurations. |
|
332 |
2348
|
333 2000-03-06 Jim Meyering <meyering@lucent.com> |
|
334 |
|
335 * localcharset.c (get_charset_aliases): Don't try to free file_name |
|
336 if it's NULL (because we ran out of memory). From Bruno Haible. |
|
337 |
2337
|
338 2000-03-05 Jim Meyering <meyering@lucent.com> |
|
339 |
2339
|
340 * localcharset.c ("path-concat.h"): Include. |
|
341 (get_charset_aliases): Use path_concat instead of ANSI string |
|
342 concatenation. |
|
343 |
2337
|
344 * unicodeio.h (PARAMS): Define. |
|
345 Use it to guard prototype. |
|
346 |
2330
|
347 2000-03-04 Jim Meyering <meyering@lucent.com> |
|
348 |
2332
|
349 * Makefile.am (install-exec-local): Create $(libdir) before installing |
|
350 into it. |
2334
|
351 (uninstall-local): Uncomment this rule so `make distcheck' works |
|
352 once again. |
2332
|
353 |
2330
|
354 * unicodeio.c (<errno.h>): Include it. |
|
355 (errno): Declare if not defined. |
|
356 |
|
357 * localcharset.c: Add Bruno's comment justifying use of volatile. |
|
358 |
|
359 * config.charset: New version, incorporating remarks from a linux |
|
360 i18n mailing list. From Bruno Haible. |
|
361 |
|
362 2000-03-02 Jim Meyering <meyering@lucent.com> |
|
363 |
|
364 * Makefile.am (EXTRA_DIST): Add config.charset. |
|
365 |
2309
|
366 2000-03-01 Jim Meyering <meyering@lucent.com> |
|
367 |
|
368 * localcharset.c: Guard some #includes with `#if HAVE_...'. |
|
369 * unicodeio.c: Likewise. |
|
370 |
|
371 2000-02-02 Bruno Haible <haible@clisp.cons.org> |
|
372 |
|
373 * config.charset: New file. |
|
374 * localcharset.c: New file. |
|
375 * unicodeio.h, unicodeio.c: New files. |
|
376 * Makefile.am (DEFS): Add -DLIBDIR=... |
|
377 (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c. |
|
378 (noinst_HEADERS): Add unicodeio.h. |
|
379 (all-local, install-exec-local, charset.alias): New targets. |
|
380 |
2300
|
381 2000-02-28 Paul Eggert <eggert@twinsun.com> |
|
382 |
2583
|
383 * quotearg.c (ALERT_CHAR): New macro. |
2300
|
384 (quotearg_buffer_restyled): Use it. |
|
385 |
2285
|
386 2000-02-27 Jim Meyering <meyering@lucent.com> |
|
387 |
2298
|
388 * strtoumax.c: Fix typo in decl of strtoul: s/long long/long/. |
|
389 Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'. |
|
390 |
2295
|
391 * backupfile.c: Guard inclusion of stdlib.h with `#if HAVE_STDLIB_H', |
|
392 not `#if STDC_HEADERS'. |
|
393 Declare malloc if needed. |
|
394 |
2290
|
395 * backupfile.c: Use `#if !HAVE_DECL...' instead of `#ifndef HAVE_DECL..' |
|
396 now that autoconf always defines the HAVE_DECL_ symbols. |
|
397 * human.c: Likewise. |
|
398 * same.c: Likewise. |
|
399 * strtoumax.c: Likewise. |
|
400 |
|
401 * backupfile.c: Arrange for cpp to fail if the configure-time |
|
402 declaration check was not run. |
|
403 * hash.c: Likewise. |
|
404 * human.c: Likewise. |
|
405 * same.c: Likewise. |
|
406 * strtoumax.c: Likewise. |
|
407 |
2285
|
408 * userspec.c (parse_user_spec): If there is no `:' but there is a `.', |
|
409 then first look up the entire `.'-containing string as a login name. |
|
410 |
2286
|
411 2000-02-18 Paul Eggert <eggert@twinsun.com> |
|
412 |
2583
|
413 * getdate.y: Handle two-digit years with leading zeros correctly. |
2286
|
414 (textint): New typedef. |
|
415 (parser_control): Member year changed from int to textint. |
|
416 All uses changed. |
|
417 (YYSTYPE): Removed; replaced by %union with int and textint members. |
|
418 (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN, |
|
419 tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER, |
|
420 tYEAR_UNIT, tZONE, o_merid): Now of type <intval>. |
|
421 (tSNUMBER, tUNUMBER): Now of type <textintval>. |
|
422 (date, number, to_year): Use width of number in digits, not its value, |
|
423 to determine whether it's a 2-digit year, or a 2-digit time. |
|
424 (yylex): Store number of digits of numeric tokens. |
|
425 Reported by John Kendall. |
|
426 |
|
427 (parser_control): Changed from struct parser_control to typedef (for |
|
428 consistency). All uses changed. |
|
429 |
|
430 (tID): Removed; not used. |
|
431 (yylex): Return '?' for unknown identifiers, rather than (unused) tID. |
|
432 |
2278
|
433 2000-02-14 Paul Eggert <eggert@twinsun.com> |
|
434 |
2583
|
435 * getpagesize.h (getpagesize): Port to VMS for Alpha; |
2279
|
436 adapted from changes to grep getpagesize.h by Martin P.J. Zinser. |
2278
|
437 |
2274
|
438 2000-02-12 Jim Meyering <meyering@lucent.com> |
|
439 |
|
440 * userspec.c (ISDIGIT): Define it. |
|
441 (isdigit): Remove definition. |
|
442 (is_number): Use ISDIGIT, not isdigit. |
|
443 <libintl.h>: Include. |
|
444 (_ and N_): Define. |
|
445 (parse_user_spec): Mark translatable strings. |
|
446 |
2268
|
447 2000-02-10 Jim Meyering <meyering@lucent.com> |
|
448 |
|
449 With these changes, nanosleep.[ch] are finally enough like the other |
|
450 lib/* replacement files to compile on a few more losing systems. |
|
451 |
|
452 * nanosleep.h: Don't include config.h. |
|
453 Remove prototype from declaration of nanosleep. |
|
454 (PARAMS): Remove now-unneeded definition. |
|
455 * nanosleep.c: #undef nanosleep. |
|
456 (rpl_nanosleep): Rename from nanosleep. |
|
457 |
2245
|
458 2000-02-03 Jim Meyering <meyering@lucent.com> |
|
459 |
|
460 * readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION', |
|
461 rather than with `#if HAVE_UTMPNAME'. |
|
462 |
|
463 2000-02-01 Jim Meyering <meyering@lucent.com> |
|
464 |
|
465 * readutmp.h (UT_USER): Add parens. From Andreas Schwab. |
|
466 |
2235
|
467 2000-01-31 Jim Meyering <meyering@lucent.com> |
|
468 |
2240
|
469 * nanosleep.h (nanosleep): Guard declaration with |
|
470 `#if ! HAVE_DECL_NANOSLEEP'. |
2275
|
471 Without this, OFS gets a redeclaration error for rpl_nanosleep, due to |
2240
|
472 the declaration in that vendor's sys/timers.h. |
|
473 Reported by Christian Krackowizer. |
|
474 |
2235
|
475 * quotearg.c (ISASCII): Add #undef and move definition to follow |
|
476 inclusion of wctype.h to work around solaris2.6 namespace pollution. |
|
477 (ISPRINT): Likewise. |
2236
|
478 Reported by Tom Tromey. |
2235
|
479 |
2228
|
480 2000-01-30 Jim Meyering <meyering@lucent.com> |
|
481 |
|
482 * readutmp.c (extract_trimmed_name): Use UT_USER instead of hard-coding |
|
483 uses of ->ut_name. The latter doesn't work with new Linux header files |
|
484 where only utmpx.ut_user is declared. |
|
485 |
|
486 * readutmp.h (UT_USER): Define. |
|
487 |
2193
|
488 2000-01-23 Jim Meyering <meyering@lucent.com> |
|
489 |
|
490 * Makefile.am (libfetish_a_SOURCES): Remove explicit mention of |
|
491 obstack.c. |
|
492 |
2163
|
493 2000-01-22 Jim Meyering <meyering@lucent.com> |
2188
|
494 |
|
495 * strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul. |
|
496 [! HAVE_DECL_STRTOULL]: Declare strtoull. |
|
497 Required for some AIX systems. Reported by Christian Krackowizer. |
|
498 [TESTING] (main): New function. |
|
499 |
2172
|
500 1997-10-17 Eli Zaretskii <eliz@is.elta.co.il> |
|
501 * dirname.c (dir_name): Support for DOS-style file names with drive |
|
502 letters. |
2163
|
503 |
2185
|
504 * quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of iswprint. |
2184
|
505 |
2163
|
506 * strverscmp.c (ISDIGIT): Define. |
|
507 (strverscmp): Use ISDIGIT, not isdigit. |
|
508 |
2152
|
509 2000-01-17 Paul Eggert <eggert@twinsun.com> |
|
510 |
|
511 * nanosleep.c (nanosleep): |
|
512 Don't use SA_INTERRUPT to decide whether to call sigaction, as |
|
513 POSIX.1 doesn't require SA_INTERRUPT and some systems |
|
514 (e.g. Solaris 7) don't define it. Use SA_NOCLDSTOP instead; |
|
515 it's been part of POSIX.1 since day 1 (in 1988). |
|
516 |
2150
|
517 2000-01-17 Jim Meyering <meyering@lucent.com> |
|
518 |
|
519 * interlock: Remove unused file. Reported by Fran�ois Pinard. |
|
520 |
2144
|
521 2000-01-16 Paul Eggert <eggert@twinsun.com> |
|
522 |
2583
|
523 * quotearg.c (quotearg_buffer_restyled): Do not quote |
2144
|
524 alert, backslash, formfeed, and vertical tab unnecessarily in |
|
525 shell quoting style. |
2190
|
526 |
|
527 Local Variables: |
|
528 version-control: never |
|
529 End: |