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