7b1ab0729ae0be778b1f3e5b82054747a94e6e50
[gnulib.git] / ChangeLog
1 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2
3         * m4/unlinkdir.m4 (gl_UNLINKDIR): Fix m4 quoting bug.
4         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Likewise.
5
6 2007-02-13  Bruno Haible  <bruno@clisp.org>
7
8         * m4/intdiv0.m4 (gt_INTDIV0): Assume ANSI C. Fix underquoting bug.
9         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
10
11 2007-02-12  Bruno Haible  <bruno@clisp.org>
12
13         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
14         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): If
15         GNULIB_POSIXCHECK and the gnulib module not enabled, provoke a link-
16         time warning rather than a link error.
17
18 2007-02-12  Bruno Haible  <bruno@clisp.org>
19
20         * m4/locale-fr.m4 (gt_LOCALE_FR): Fix m4 quoting bug.
21         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
22         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
23
24 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
25
26         * lib/string_.h (strncasecmp): Fix typo: this macro takes 3
27         args, not 2.
28
29 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
30
31         New module 'time', so that apps can include <time.h> as per
32         POSIX and GNU instead of separate include files like time_r.h
33         and timegm.h.  This implementation tries out a simpler approach
34         for replacing decls in standard include files (as compared to
35         the string module), somewhat as an experiment.
36
37         * config/srclist.txt: Comment out mktime.c for now.
38         * doc/gnulib-tool.texi (Initial import): Don't use time_r as an example
39         since it doesn't apply any more.  Use generic wording instead.
40         * MODULES.html.sh (Support for systems lacking POSIX:2001): New module
41         'time'.
42         * lib/time_.h, m4/time_h.m4, modules/time: New files.
43         * lib/strptime.h, lib/time_r.h, lib/timegm.h: Remove.
44         * lib/mktime.c: Include config.h depending on _LIBC, not HAVE_CONFIG_H.
45         Don't include <sys/types.h>; no longer needed since we assume C89.
46         * lib/mktime.c: Don't include "time_r.h"; no longer needed.
47         * lib/strftime.c: Likewise.
48         * lib/time_r.c: Likewise.
49         * lib/nanosleep.c (nanosleep): #undef after include files, not before.
50         * lib/nanosleep.c: Include <time.h> first, to check interface.
51         * lib/strptime.c: Likewise.
52         * lib/time_r.c: Likewise.
53         * lib/timegm.c: Likewise.
54         * lib/strptime.c: Don't include strptime.h or time_r.h; no longer
55         needed.
56         * lib/timegm.c: Don't include timegm.h; no longer needed.
57         * lib/timespec.h: Don't include <sys/time.h> before <time.h>;
58         time.h now handles any problems in that area.
59         (struct timespec, nanosleep): Remove; time.h now arranges for these.
60         * lib/xnanosleep.c: Don't include timespec.h; no longer needed now
61         that time.h defines struct timespec.
62         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check that nanosleep is declared.
63         Set REPLACE_NANOSLEEP.  Don't AC_DEFINE nanosleep; the time module now
64         handles that.
65         * m4/strptime.m4 (gl_FUNC_STPRTIME): Set REPLACE_STRPTIME.
66         * m4/time_r.m4 (gl_TIME_R): Don't define HAVE_TIME_R_POSIX; no longer
67         needed.  Set REPLACE_LOCALTIME.
68         * m4/timegm.m4 (gl_FUNC_TIMEGM): Set REPLACE_TIMEGM.
69         * m4/timespec.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Move to time_h.m4.
70         (gl_TIMESPEC): Don't check for sys/time.h or struct timespec or
71         nanosleep; time_h.m4 now does that.  Don't require
72         gl_USE_SYSTEM_EXTENSIONS; no longer needed directly, and the time
73         module handles this now.
74         * modules/getdate (Depends-on): Remove timespec.  Add time.
75         * modules/nanosleep (Depends-on): Likewise.
76         * modules/stat-time (Depends-on): Likewise.
77         * modules/nanosleep (Include): Include time.h, not timespec.h.
78         * modules/strptime (Files): Remove lib/strptime.h.
79         (Depends-on): Add extensions, time.
80         (Include): Include time.h, not strptime.h.
81         * modules/time_r (Files): Remove lib/time_r.h.
82         (Depends-on): Add time.
83         (Include): Include time.h, not time_r.h.
84         * modules/timegm: Likewise.
85         * modules/timespec (Description): Now does timespec-related decls
86         of our own, instead of struct timespec itself.
87         (Depends-on): Add time; remove extensions.
88         (Maintainer): Add self.
89         * modules/utimecmp (Depends-on): Add time; remove timespec.
90         * modules/utimens (Depends-on): Likewise.
91         * modules/xnanosleep (Depends-on): Likewise.
92
93 2007-02-11  Bruno Haible  <bruno@clisp.org>
94
95         * lib/c-strstr.c: Include allocsa.h.
96         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
97         * lib/c-strcasestr.c: Include allocsa.h.
98         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
99         * lib/strcasestr.c: Include allocsa.h.
100         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
101         * lib/mbsstr.c: Include allocsa.h.
102         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
103         allocsa/freesa instead of malloc/free.
104         * lib/mbscasestr.c: Include allocsa.h.
105         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
106         allocsa/freesa instead of malloc/free.
107         * modules/c-strstr (Depends-on): Add allocsa.
108         * modules/c-strcasestr (Depends-on): Likewise.
109         * modules/strcasestr (Depends-on): Likewise.
110         * modules/mbsstr (Depends-on): Likewise.
111         * modules/mbscasestr (Depends-on): Likewise.
112
113 2007-02-11  Bruno Haible  <bruno@clisp.org>
114
115         * lib/mbsspn.c (mbsspn): Fix bug. Remove unnecessary strlen call.
116
117         * modules/mbsspn-tests: New file.
118         * tests/test-mbsspn.sh: New file.
119         * tests/test-mbsspn.c: New file.
120
121 2007-02-11  Bruno Haible  <bruno@clisp.org>
122
123         * lib/mbspbrk.c (mbspbrk): Remove unneeded cast.
124
125         * modules/mbspbrk-tests: New file.
126         * tests/test-mbspbrk.sh: New file.
127         * tests/test-mbspbrk.c: New file.
128
129 2007-02-11  Bruno Haible  <bruno@clisp.org>
130
131         * lib/mbscspn.c (mbscspn): Remove unnecessary strlen call and
132         unneeded cast.
133
134         * modules/mbscspn-tests: New file.
135         * tests/test-mbscspn.sh: New file.
136         * tests/test-mbscspn.c: New file.
137
138 2007-02-11  Bruno Haible  <bruno@clisp.org>
139
140         * modules/mbscasecmp-tests: New file.
141         * tests/test-mbscasecmp.sh: New file.
142         * tests/test-mbscasecmp.c: New file.
143
144 2007-02-11  Bruno Haible  <bruno@clisp.org>
145
146         Ensure O(n) worst-case complexity of mbscasestr.
147         * lib/mbscasestr.c: Include stdbool.h.
148         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
149         functions.
150         (mbscasestr): Add some bookkeeping. Invoke knuth_morris_pratt_* when
151         the bookkeeping indicates that it's worth it.
152         * modules/mbscasestr (Depends-on): Add stdbool, mbslen, strnlen.
153
154         * modules/mbscasestr-tests: New file.
155         * tests/test-mbscasestr1.c: New file.
156         * tests/test-mbscasestr2.sh: New file.
157         * tests/test-mbscasestr2.c: New file.
158         * tests/test-mbscasestr3.sh: New file.
159         * tests/test-mbscasestr3.c: New file.
160         * tests/test-mbscasestr4.sh: New file.
161         * tests/test-mbscasestr4.c: New file.
162         * m4/locale-tr.m4: New file.
163
164 2007-02-11  Bruno Haible  <bruno@clisp.org>
165
166         Ensure O(n) worst-case complexity of mbsstr.
167         * lib/mbsstr.c: Include stdbool.h.
168         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
169         functions.
170         (mbsstr): Add some bookkeeping. Invoke knuth_morris_pratt_* when the
171         bookkeeping indicates that it's worth it.
172         * modules/mbsstr (Depends-on): Add stdbool, mbslen, strnlen.
173
174         * modules/mbsstr-tests: New file.
175         * tests/test-mbsstr1.c: New file.
176         * tests/test-mbsstr2.sh: New file.
177         * tests/test-mbsstr2.c: New file.
178         * tests/test-mbsstr3.sh: New file.
179         * tests/test-mbsstr3.c: New file.
180         * m4/locale-fr.m4: New file.
181
182 2007-02-11  Bruno Haible  <bruno@clisp.org>
183
184         * lib/mbsrchr.c (mbsrchr): Fix bug.
185
186         * modules/mbsrchr-tests: New file.
187         * tests/test-mbsrchr.sh: New file.
188         * tests/test-mbsrchr.c: New file.
189
190 2007-02-11  Bruno Haible  <bruno@clisp.org>
191
192         * lib/mbschr.c (mbschr): Fix bug.
193
194         * modules/mbschr-tests: New file.
195         * tests/test-mbschr.sh: New file.
196         * tests/test-mbschr.c: New file.
197         * m4/locale-zh.m4: New file.
198
199 2007-02-11  Bruno Haible  <bruno@clisp.org>
200
201         Support for copying multibyte string iterators.
202         * lib/mbiter.h: Include <string.h>.
203         (mbiter_multi_copy): New function.
204         (mbi_copy): New macro.
205         * lib/mbuiter.h: Include <string.h>.
206         (mbuiter_multi_copy): New function.
207         (mbui_copy): New macro.
208
209 2007-02-11  Bruno Haible  <bruno@clisp.org>
210
211         New module mbslen.
212         * modules/mbslen: New file.
213         * lib/mbslen.c: New file.
214         * lib/string_.h (mbslen): New declaration.
215         * m4/mbslen.m4: New file.
216         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
217         GNULIB_MBSLEN.
218         * modules/string (string.h): Also substitute GNULIB_MBSLEN.
219         * MODULES.html.sh (Internationalization functions): Add mbslen.
220
221 2007-02-11  Bruno Haible  <bruno@clisp.org>
222
223         Ensure O(n) worst-case complexity of strcasestr substitute.
224         * lib/strcasestr.c: Include stdbool.h.
225         (knuth_morris_pratt): New function.
226         (strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when the
227         bookkeeping indicates that it's worth it.
228         * modules/strcasestr (Depends-on): Add stdbool, strnlen.
229
230         * modules/strcasestr-tests: New file.
231         * tests/test-strcasestr.c: New file.
232
233 2007-02-11  Bruno Haible  <bruno@clisp.org>
234
235         Ensure O(n) worst-case complexity of c_strcasestr.
236         * lib/c-strcasestr.c: Include stdbool.h, string.h.
237         (knuth_morris_pratt): New function.
238         (c_strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when
239         the bookkeeping indicates that it's worth it.
240         * modules/c-strcasestr (Depends-on): Add stdbool, strnlen.
241
242         * modules/c-strcasestr-tests: New file.
243         * tests/test-c-strcasestr.c: New file.
244
245 2007-02-11  Bruno Haible  <bruno@clisp.org>
246
247         Ensure O(n) worst-case complexity of c_strstr.
248         * lib/c-strstr.c: Include stdbool.h, string.h.
249         (knuth_morris_pratt): New function.
250         (c_strstr): Add some bookkeeping. Invoke knuth_morris_pratt when the
251         bookkeeping indicates that it's worth it.
252         * modules/c-strstr (Depends-on): Add stdbool, strnlen.
253
254         * lib/c-strstr.c: Complete rewrite for maintainability.
255
256         * modules/c-strstr-tests: New file.
257         * tests/test-c-strstr.c: New file.
258
259 2007-02-11  Bruno Haible  <bruno@clisp.org>
260
261         * m4/javacomp.m4 (gt_JAVACOMP): Work around a 'tr' bug in coreutils
262         5.2.1 and earlier, whereby \055 was treated just like the range
263         delimiter '-'.  Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
264
265 2007-02-08  Bruno Haible  <bruno@clisp.org>
266
267         * modules/regex (Depends-on): Add stdbool.
268         Reported by Dalibor Topic <robilad@kaffe.org>.
269
270 2007-02-05  Paul Eggert  <eggert@cs.ucla.edu>
271
272         * m4/regex.m4 (gl_REGEX): Check for glibc bug #3957.
273         Prefer returning from main to exiting from it.
274         Remove unnecessary parens after sizeof.
275
276 2007-02-05  Bruno Haible  <bruno@clisp.org>
277
278         New module mbssep.
279         * modules/mbssep: New file.
280         * lib/mbssep.c: New file.
281         * lib/string_.h (strsep): Add a conditional link warning.
282         (mbssep): New declaration.
283         * m4/mbssep.m4: New file.
284         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
285         GNULIB_MBSSEP.
286         * modules/string (string.h): Also substitute GNULIB_MBSSEP.
287         * MODULES.html.sh (Internationalization functions): Add mbssep.
288
289 2007-02-05  Bruno Haible  <bruno@clisp.org>
290
291         * lib/strsep.c (strsep): Fix actions in case of no delimiters.
292         Optimize search in case of 1 delimiter.
293
294 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
295
296         * lib/acl.h: Include sys/types.h before sys/acl.h.
297
298 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
299
300         Merge upstream fix for glibc bugzilla #3957:
301
302         2007-02-05  Jakub Jelinek  <jakub@redhat.com>
303
304         * lib/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
305         bit for RE_HAT_LISTS_NOT_NEWLINE.
306         (build_charclass_op): Remove bogus comment.
307
308 2007-02-05  Simon Josefsson  <simon@josefsson.org>
309
310         * lib/gc.h, lib/gc-libgcrypt.c: Support SHA-256/384/512.
311
312 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
313
314         * lib/getsubopt.c [!_LIBC]: Include config.h and getsubopt.h.
315         * lib/memmem.c [!defined _LIBC]: Include config.h.
316
317 2007-02-04  Bruno Haible  <bruno@clisp.org>
318
319         * lib/string_.h (GL_LINK_WARNING2): Put the word "warning:" into the
320         warning message.
321
322 2007-02-04  Bruno Haible  <bruno@clisp.org>
323
324         New module mbstok_r.
325         * modules/mbstok_r: New file.
326         * lib/mbstok_r.c: New file.
327         * lib/string_.h (strtok_r): Change argument names to match the
328         comments. Add a conditional link warning.
329         (mbstok_r): New declaration.
330         * m4/mbstok_r.m4: New file.
331         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
332         GNULIB_MBSTOK_R.
333         * modules/string (string.h): Also substitute GNULIB_MBSTOK_R.
334         * MODULES.html.sh (Internationalization functions): Add mbstok_r.
335
336 2007-02-04  Bruno Haible  <bruno@clisp.org>
337
338         New module mbsspn.
339         * modules/mbsspn: New file.
340         * lib/mbsspn.c: New file.
341         * lib/string_.h (strspn): Add a conditional link warning.
342         (mbsspn): New declaration.
343         * m4/mbsspn.m4: New file.
344         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
345         GNULIB_MBSSPN.
346         * modules/string (string.h): Also substitute GNULIB_MBSSPN.
347         * MODULES.html.sh (Internationalization functions): Add mbsspn.
348
349 2007-02-04  Bruno Haible  <bruno@clisp.org>
350
351         New module mbspbrk.
352         * modules/mbspbrk: New file.
353         * lib/mbspbrk.c: New file.
354         * lib/string_.h (strpbrk): Add a conditional link warning.
355         (mbspbrk): New declaration.
356         * m4/mbspbrk.m4: New file.
357         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
358         GNULIB_MBSPBRK.
359         * modules/string (string.h): Also substitute GNULIB_MBSPBRK.
360         * MODULES.html.sh (Internationalization functions): Add mbspbrk.
361
362 2007-02-04  Bruno Haible  <bruno@clisp.org>
363
364         New module mbscspn.
365         * modules/mbscspn: New file.
366         * lib/mbscspn.c: New file.
367         * lib/string_.h (strcspn): Add a conditional link warning.
368         (mbscspn): New declaration.
369         * m4/mbscspn.m4: New file.
370         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
371         GNULIB_MBSCSPN.
372         * modules/string (string.h): Also substitute GNULIB_MBSCSPN.
373         * MODULES.html.sh (Internationalization functions): Add mbscspn.
374
375 2007-02-04  Bruno Haible  <bruno@clisp.org>
376
377         New module mbscasestr, reduced goal of strcasestr.
378         * modules/mbscasestr: New file.
379         * lib/mbscasestr.c: New file, copied from lib/strcasestr.c.
380         (mbscasestr): Renamed from strcasestr.
381         * lib/strcasestr.c: Don't include mbuiter.h.
382         (strcasestr): Remove support for multibyte locales.
383         * lib/string_.h (strcasestr): Don`t rename. Declare only if missing.
384         Change the conditional link warning.
385         (mbscasestr): New declaration.
386         * m4/mbscasestr.m4: New file.
387         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Enable the replacement only if
388         the system does not have strcasestr. Set HAVE_STRCASESTR instead of
389         REPLACE_STRCASESTR.
390         (gl_PREREQ_STRCASESTR): Don't require gl_FUNC_MBRTOWC.
391         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
392         HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
393         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSCASESTR.
394         * modules/string (string.h): Also substitute GNULIB_MBSCASESTR.
395         Substitute HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
396         * modules/strcasestr (Files): Remove m4/mbrtowc.m4.
397         (Depends-on): Remove mbuiter.
398         * MODULES.html.sh (Internationalization functions): Add mbscasestr.
399
400 2007-02-04  Bruno Haible  <bruno@clisp.org>
401
402         Simplify handling of strncasecmp.
403         * lib/string_.h (strncasecmp): Remove test for GNULIB_STRCASE. Change
404         the conditional link warning.
405         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
406         HAVE_STRCASECMP, not REPLACE_STRCASECMP.
407         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Don't initialize GNULIB_STRCASE.
408         * modules/strcase (configure.ac): Don't invoke
409         gl_STRING_MODULE_INDICATOR.
410         * modules/string (string.h): Don't substitute GNULIB_STRCASE.
411
412 2007-02-04  Bruno Haible  <bruno@clisp.org>
413
414         New module mbscasecmp, reduced goal of strcasecmp.
415         * modules/mbscasecmp: New file.
416         * lib/mbscasecmp.c: New file, copied from lib/strcasecmp.c.
417         (mbscasecmp): Renamed from strcasecmp.
418         * lib/strcasecmp.c: Don't include mbuiter.h.
419         (strcasecmp): Remove support for multibyte locales.
420         * lib/string_.h (strcasecmp): Don`t rename. Declare only if missing.
421         Change the conditional link warning.
422         (mbscasecmp): New declaration.
423         * m4/mbscasecmp.m4: New file.
424         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Enable the replacement only if
425         the system lacks strcasecmp. Set HAVE_STRCASECMP instead of
426         REPLACE_STRCASECMP.
427         (gl_PREREQ_STRCASECMP): Don't require gl_FUNC_MBRTOWC.
428         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
429         GNULIB_MBSCASECMP.
430         * modules/string (string.h): Also substitute GNULIB_MBSCASECMP.
431         Substitute HAVE_STRCASECMP instead of REPLACE_STRCASECMP.
432         * modules/strcase (Files): Remove m4/mbrtowc.m4.
433         (Depends-on): Remove mbuiter.
434         * MODULES.html.sh (Internationalization functions): Add mbscasecmp.
435
436 2007-02-04  Bruno Haible  <bruno@clisp.org>
437
438         New module mbsstr. Remove module strstr.
439         * modules/mbsstr: New file.
440         * modules/strstr: Remove file.
441         * lib/mbsstr.c: Renamed from lib/strstr.c.
442         (mbsstr): Renamed from strstr.
443         * lib/string_.h (strstr): Remove declaration. Change the conditional
444         link warning.
445         (mbsstr): New declaration.
446         * m4/mbsstr.m4: New file.
447         * m4/strstr.m4: Remove file.
448         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
449         REPLACE_STRSTR.
450         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSSTR.
451         Don't initialize GNULIB_STRSTR.
452         * modules/string (string.h): Also substitute GNULIB_MBSSTR. Don't
453         substitute GNULIB_STRSTR and REPLACE_STRSTR.
454         * MODULES.html.sh (Internationalization functions): Add mbsstr.
455         (Support for systems lacking ANSI C 89): Remove strstr.
456
457 2007-02-04  Bruno Haible  <bruno@clisp.org>
458
459         New module mbsrchr.
460         * modules/mbsrchr: New file.
461         * lib/mbsrchr.c: New file.
462         * lib/string_.h (strrchr): Add a conditional link warning.
463         (mbsrchr): New declaration.
464         * m4/mbsrchr.m4: New file.
465         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
466         GNULIB_MBSRCHR.
467         * modules/string (string.h): Also substitute GNULIB_MBSRCHR.
468         * MODULES.html.sh (Internationalization functions): Add mbsrchr.
469
470 2007-02-04  Bruno Haible  <bruno@clisp.org>
471
472         New module mbschr.
473         * modules/mbschr: New file.
474         * lib/mbschr.c: New file.
475         * lib/string_.h (strchr): Add a conditional link warning.
476         (mbschr): New declaration.
477         * m4/mbschr.m4: New file.
478         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
479         GNULIB_MBSCHR.
480         * modules/string (string.h): Also substitute GNULIB_MBSCHR.
481         * MODULES.html.sh (Internationalization functions): Add mbschr.
482
483 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
484
485         * lib/stdbool_.h: Mention that bool bit-fields aren't supported.
486
487         * modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
488
489 2007-02-04  Bruno Haible  <bruno@clisp.org>
490
491         New module description section 'configure.ac-early'.
492         * gnulib-tool (sed_extract_prog): Recognize configure.ac-early.
493         (func_get_autoconf_early_snippet): New function.
494         (func_import, func_create_testdir): Use it. Remove special cases for
495         modules 'extensions' and 'lock'.
496         * modules/extensions (configure.ac-early): Require
497         gl_USE_SYSTEM_EXTENSIONS.
498         * modules/lock (configure.ac-early): Require gl_LOCK_EARLY.
499
500 2007-02-04  Bruno Haible  <bruno@clisp.org>
501
502         Make use of gcj-4.3's -fsource and -ftarget option.
503         * m4/javacomp.m4 (gt_JAVACOMP): Test whether gcj is in version >= 4.3,
504         and if so try the options -fsource and -ftarget.
505         * lib/javacomp.c (compile_using_gcj): Add fsource_option,
506         source_version, ftarget_option, target_version arguments.
507         (is_envjavac_gcj43, is_envjavac_gcj43_usable): New functions.
508         (is_envjavac_oldgcj_14_14_usable): Renamed from
509         is_envjavac_gcj_14_14_usable.
510         (is_envjavac_oldgcj_14_13_usable): Renamed from
511         is_envjavac_gcj_14_13_usable.
512         (is_gcj_present): Update.
513         (is_gcj_43, is_gcj43_usable): New functions.
514         (is_oldgcj_14_14_usable): Renamed from is_gcj_14_14_usable. Update.
515         (is_oldgcj_14_13_usable): Renamed from is_gcj_14_13_usable. Update.
516         (compile_java_class): Test whether gcj is in version >= 4.3, and if so
517         try the options -fsource and -ftarget.
518
519 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
520
521         * lib/xalloc.h (x2nrealloc): Fix an unlikely bug in the overflow
522         checking code.  Set N = ceil (1.5 * N) rather than to a slightly
523         larger value.
524
525 2007-02-03  Jim Meyering  <jim@meyering.net>
526
527         Give tools a better chance to allocate space for very large buffers.
528         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
529
530         Make pwd and readlink work also when run with an unreadable parent dir
531         on systems with openat support.
532         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
533         provided getcwd function, even when we have openat support.
534         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
535
536 2007-02-02  Bruno Haible  <bruno@clisp.org>
537
538         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
539         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
540         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
541         portability problems if one of these functions is only used on specific
542         platforms.
543         Reported by Paul Eggert.
544
545 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
546
547         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
548         is causing more trouble than it's curing.
549         * lib/regex_internal.h (__mempcpy): Remove.
550         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
551         (and make the code a tad smaller to boot).
552         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
553
554 2007-02-02  Jim Meyering  <jim@meyering.net>
555
556         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
557         section, not in the Makefile.am: one.
558
559 2007-02-02  Eric Blake  <ebb9@byu.net>
560
561         * lib/strchrnul.c: Always include config.h first.
562
563         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
564         gnulib strstr is not necessary here.
565
566 2007-02-02  Simon Josefsson  <simon@josefsson.org>
567
568         * m4/socklen.m4: Fix typo.
569
570 2007-02-02  Eric Blake  <ebb9@byu.net>
571
572         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
573         * modules/netinet_in (Makefile.am): Likewise.
574
575 2007-02-01  Bruno Haible  <bruno@clisp.org>
576
577         * lib/string_.h (GL_LINK_WARNING): New macro.
578         (strcasecmp, strstr, strcasestr): If provided by the system,
579         conditionally define as a macro that leads to a warning instead of to
580         an error.
581         (strncasecmp): Conditionally define as a macro that leads to a warning.
582
583 2007-02-01  Jim Meyering  <jim@meyering.net>
584
585         Give tools a better chance to allocate space for very large buffers.
586         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
587
588 2007-02-01  Karl Berry  <karl@gnu.org>
589
590         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
591
592 2007-02-01  Bruno Haible  <bruno@clisp.org>
593
594         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
595         renamings.
596
597 2007-02-01  Eric Blake  <ebb9@byu.net>
598
599         * modules/regex (Depends-on): Revert dependence on mempcpy.
600         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
601         module's definition of mempcpy.
602         Reported by Paul Eggert.
603
604 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
605
606         * lib/string_.h: If the gnulib module XYZ is not present, undefine
607         the symbol XYZ before redefining it.  This fixes a problem with
608         programs that don't use XYZ, when compiled on systems that define
609         XYZ to something else.
610
611 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
612
613         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
614         occurs when "mkdir -m foo" creates a setgid directory that is (1)
615         writeable to group or other and (2) is intended to have a special
616         mode bit that is set or cleared.  In such a case, the directory
617         should be neither group- nor other-writeable until the special
618         mode bits are right.
619
620 2007-01-31  Eric Blake  <ebb9@byu.net>
621
622         * modules/mountlist (Depends-on): Add strstr.
623
624         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
625         bug.
626         * modules/string (Makefile.am): Remove redundant replacement.
627         * modules/regex (Depends-on): Add mempcpy.
628
629 2007-01-31  Bruno Haible  <bruno@clisp.org>
630
631         New module description field 'Link'.
632         * gnulib-tool (func_usage): Document --extract-link-directive.
633         (sed_extract_prog): Recognize 'Link' directive.
634         (func_get_link_directive): New function.
635         (func_import): Show summary of link directives.
636         Handle --extract-link-directive option.
637         * modules/acl (Link): New section.
638         * modules/clock-time (Link): New section.
639         * modules/euidaccess (Link): New section.
640         * modules/gettext (Link): New section.
641         * modules/iconv (Link): New section.
642         * modules/lock (Link): New section.
643         * modules/nanosleep (Link): New section.
644         * modules/readline (Link): New section.
645
646 2007-01-27  Bruno Haible  <bruno@clisp.org>
647
648         Enforce the use of gnulib modules for unportable <string.h> functions.
649         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
650         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
651         (gl_HEADER_STRING_H_BODY): Require it.
652         * lib/string_.h: If the gnulib module XYZ is not present, redefine
653         the symbol XYZ to one that gives a link error.
654         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
655         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
656         * modules/mempcpy (configure.ac): Likewise.
657         * modules/memrchr (configure.ac): Likewise.
658         * modules/stpcpy (configure.ac): Likewise.
659         * modules/stpncpy (configure.ac): Likewise.
660         * modules/strcase (configure.ac): Likewise.
661         * modules/strcasestr (configure.ac): Likewise.
662         * modules/strchrnul (configure.ac): Likewise.
663         * modules/strdup (configure.ac): Likewise.
664         * modules/strndup (configure.ac): Likewise.
665         * modules/strnlen (configure.ac): Likewise.
666         * modules/strpbrk (configure.ac): Likewise.
667         * modules/strsep (configure.ac): Likewise.
668         * modules/strstr (configure.ac): Likewise.
669         * modules/strtok_r (configure.ac): Likewise.
670
671 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
672
673         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
674
675 2007-01-30  Jim Meyering  <jim@meyering.net>
676
677         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
678
679 2007-01-29  Bruno Haible  <bruno@clisp.org>
680
681         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
682         * lib/execute.c: Likewise.
683         * lib/pipe.c: Likewise.
684         * lib/printf-args.h: Likewise.
685         * lib/printf-args.c: Likewise.
686         * lib/printf-parse.c: Likewise.
687         * lib/vasnprintf.c: Likewise.
688
689 2007-01-29  Eric Blake  <ebb9@byu.net>
690
691         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
692         declaration.
693
694 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
695
696         * lib/strptime.h (strptime): Use 'restrict' for args where
697         POSIX requires this.
698         * lib/strptime.c (strptime): Likewise.
699         Change license notice from LGPL to GPL, since gnulib-tool will
700         change this as needed.
701         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
702         defined.
703         Include "strptime.h" first, to check interface.
704         Do not #undef _LIBC and _NL_CURRENT.
705         Do not include <stdlib.h>; no longer needed.
706         Include "time_r.h" and declare ptime_locale_status
707         only if _LIBC is not defined.
708         (__P): Remove unused macro.
709         (match_string): Bring back glibc version, but use it only if _LIBC
710         is defined.
711         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
712         Remove unnecessary assertion and abort() call.
713         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
714         * m4/strptime.m4: Fix serial number comment.
715         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
716         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
717         (Depends-on): Add time_r.
718
719 2007-01-29  Bruno Haible  <bruno@clisp.org>
720
721         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
722         strptime.
723         * modules/strptime (Depends-on): Add stdbool.
724         * lib/strptime.h: Include <time.h> always. Add comments.
725
726 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
727
728         * modules/strptime: New file.
729         * lib/strptime.h: New file.
730         * lib/strptime.c: New file.
731         * m4/strptime.m4: New file.
732
733 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
734
735         * MODULES.html.sh: New module mpsort.
736         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
737
738         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
739         a circularity problem with HP-UX ia64 reported by Bob Proulx in
740         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
741         All uses changed.
742         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
743         All uses changed.
744         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
745         to _Restrict_.
746         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
747         the parameter matches the prototype.
748
749 2007-01-28  Jim Meyering  <jim@meyering.net>
750
751         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
752         sys/time.h here, reverting that part of the previous patch:
753         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
754
755 2007-01-28  Bruno Haible  <bruno@clisp.org>
756
757         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
758         value of $(SYS_TIME_H).
759         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
760         remove it conditionally, too. [added by Jim Meyering]
761         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
762         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
763         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
764         GETTIMEOFDAY_REPLACEMENT to 1.
765
766 2007-01-28  Bruno Haible  <bruno@clisp.org>
767
768         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
769         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
770         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
771         Set UNISTD_H instead of UNISTD_H2.
772         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
773
774 2007-01-28  Bruno Haible  <bruno@clisp.org>
775
776         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
777         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
778
779 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
780
781         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
782         (func_create_testdir): Ensure C locale for `grep' and `tr'
783         character ranges.
784         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
785         ACLOCAL_AMFLAGS parsing state machine.
786
787 2007-01-27  Bruno Haible  <bruno@clisp.org>
788
789         * modules/unistr/base: Update.
790
791 2007-01-27  Bruno Haible  <bruno@clisp.org>
792
793         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
794         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
795         * modules/unistr/u32-mbtouc-unsafe: Renamed from
796         modules/unistr/u32-mbtouc.
797         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
798         * lib/unistr.h: Update.
799         * lib/linebreak.c: Update.
800         * modules/unistr/u32-mbtouc: Renamed from
801         modules/unistr/u32-mbtouc-safe.
802         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
803         * lib/unistr.h: Update.
804         * lib/unistr/u32-to-u8.c: Update.
805         * lib/unistr/u32-to-u16.c: Update.
806
807 2007-01-27  Bruno Haible  <bruno@clisp.org>
808
809         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
810         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
811         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
812         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
813         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
814         * modules/unistr/u16-mbtouc-unsafe: Renamed from
815         modules/unistr/u16-mbtouc.
816         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
817         * lib/unistr.h: Update.
818         * lib/linebreak.c: Update.
819         * modules/linebreak: Update.
820         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
821         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
822         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
823         * modules/unistr/u16-mbtouc: Renamed from
824         modules/unistr/u16-mbtouc-safe.
825         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
826         * lib/unistr.h: Update.
827         * lib/unistr/u16-to-u8.c: Update.
828         * modules/unistr/u16-to-u8: Update.
829         * lib/unistr/u16-to-u32.c: Update.
830         * modules/unistr/u16-to-u32: Update.
831
832 2007-01-27  Bruno Haible  <bruno@clisp.org>
833
834         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
835         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
836         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
837         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
838         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
839         * modules/unistr/u8-mbtouc-unsafe: Renamed from
840         modules/unistr/u8-mbtouc.
841         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
842         * lib/unistr.h: Update.
843         * lib/striconveh.c: Update.
844         * modules/striconveh: Update.
845         * lib/linebreak.c: Update.
846         * modules/linebreak: Update.
847         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
848         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
849         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
850         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
851         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
852         * lib/unistr.h: Update.
853         * lib/striconveh.c: Update.
854         * modules/striconveh: Update.
855         * lib/unistr/u8-to-u16.c: Update.
856         * modules/unistr/u8-to-u16: Update.
857         * lib/unistr/u8-to-u32.c: Update.
858         * modules/unistr/u8-to-u32: Update.
859
860 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
861
862         Sync from Libtool.
863         * lib/argz.c: Do not include strings.h nor memory.h, include
864         string.h unconditionally.  Patch by Simon Josefsson.
865
866 2007-01-27  Bruno Haible  <bruno@clisp.org>
867
868         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
869         from gl_HEADER_STRING_H_BODY.
870         (gl_HEADER_STRING_H_BODY): Require it.
871         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
872         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
873         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
874         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
875         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
876         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
877         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
878         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
879         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
880         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
881         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
882         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
883         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
884         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
885         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
886
887 2007-01-27  Bruno Haible  <bruno@clisp.org>
888
889         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
890         check_PROGRAMS into noinst_PROGRAMS.
891         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
892         check_PROGRAMS in this case.
893         (func_import): Set for_test to false.
894         (func_create_testdir): Set for_test to true.
895
896 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
897             Bruno Haible  <bruno@clisp.org>
898
899         * modules/strcasestr (Files): Remove lib/strcasestr.h.
900         (Depends-on): Add string.
901         (Includes): Use <string.h> instead of strcasestr.h.
902         * modules/string (Makefile.am): Also substitute the value of
903         REPLACE_STRCASESTR.
904         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
905         assume strcasestr is declared in <string.h> not <strings.h>. Also
906         set REPLACE_STRCASESTR.
907         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
908         REPLACE_STRCASESTR.
909         * lib/strcasestr.h: Remove file.
910         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
911         * lib/string_.h (strcasestr): New declaration.
912
913 2007-01-27  Bruno Haible  <bruno@clisp.org>
914
915         * lib/string_.h: Use 'extern'.
916
917 2007-01-27  Jim Meyering  <jim@meyering.net>
918
919         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
920         of set-but-not-used local, "q".
921
922         * lib/mempcpy.c: Include <config.h> before <string.h>.
923         This fixes a compilation error on HP-UX, due to the system's
924         "restrict"-using mempcpy prototype.
925
926 2007-01-26  Bruno Haible  <bruno@clisp.org>
927
928         Small optimization.
929         * lib/javacomp.c: Include c-strstr.h.
930          (is_envjavac_gcj): Use c_strstr instead of strstr.
931         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
932
933 2007-01-26  Bruno Haible  <bruno@clisp.org>
934
935         * MODULES.html.sh (Unicode string functions): Add the new modules.
936
937         * modules/uniconv/u32-strconv-to-locale: New file.
938         * lib/uniconv/u32-strconv-to-locale.c: New file.
939
940         * modules/uniconv/u16-strconv-to-locale: New file.
941         * lib/uniconv/u16-strconv-to-locale.c: New file.
942
943         * modules/uniconv/u8-strconv-to-locale: New file.
944         * lib/uniconv/u8-strconv-to-locale.c: New file.
945
946         * modules/uniconv/u32-strconv-from-locale: New file.
947         * lib/uniconv/u32-strconv-from-locale.c: New file.
948
949         * modules/uniconv/u16-strconv-from-locale: New file.
950         * lib/uniconv/u16-strconv-from-locale.c: New file.
951
952         * modules/uniconv/u8-strconv-from-locale: New file.
953         * lib/uniconv/u8-strconv-from-locale.c: New file.
954
955         * modules/uniconv/u32-strconv-to-enc: New file.
956         * lib/uniconv/u32-strconv-to-enc.c: New file.
957         * modules/uniconv/u32-strconv-to-enc-tests: New file.
958         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
959
960         * modules/uniconv/u16-strconv-to-enc: New file.
961         * lib/uniconv/u16-strconv-to-enc.c: New file.
962         * lib/uniconv/u-strconv-to-enc.h: New file.
963         * modules/uniconv/u16-strconv-to-enc-tests: New file.
964         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
965
966         * modules/uniconv/u8-strconv-to-enc: New file.
967         * lib/uniconv/u8-strconv-to-enc.c: New file.
968         * modules/uniconv/u8-strconv-to-enc-tests: New file.
969         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
970
971         * modules/uniconv/u32-strconv-from-enc: New file.
972         * lib/uniconv/u32-strconv-from-enc.c: New file.
973         * modules/uniconv/u32-strconv-from-enc-tests: New file.
974         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
975
976         * modules/uniconv/u16-strconv-from-enc: New file.
977         * lib/uniconv/u16-strconv-from-enc.c: New file.
978         * modules/uniconv/u16-strconv-from-enc-tests: New file.
979         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
980
981         * modules/uniconv/u8-strconv-from-enc: New file.
982         * lib/uniconv/u8-strconv-from-enc.c: New file.
983         * lib/uniconv/u-strconv-from-enc.h: New file.
984         * modules/uniconv/u8-strconv-from-enc-tests: New file.
985         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
986
987         * modules/uniconv/u32-conv-from-enc: New file.
988         * lib/uniconv/u32-conv-from-enc.c: New file.
989         * modules/uniconv/u32-conv-from-enc-tests: New file.
990         * tests/uniconv/test-u32-conv-from-enc.c: New file.
991
992         * modules/uniconv/u16-conv-from-enc: New file.
993         * lib/uniconv/u16-conv-from-enc.c: New file.
994         * lib/uniconv/u-conv-from-enc.h: New file.
995         * modules/uniconv/u16-conv-from-enc-tests: New file.
996         * tests/uniconv/test-u16-conv-from-enc.c: New file.
997
998         * modules/uniconv/u8-conv-from-enc: New file.
999         * lib/uniconv/u8-conv-from-enc.c: New file.
1000         * modules/uniconv/u8-conv-from-enc-tests: New file.
1001         * tests/uniconv/test-u8-conv-from-enc.c: New file.
1002
1003         * modules/uniconv/base: New file.
1004         * lib/uniconv.h: New file.
1005
1006 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
1007
1008         * doc/gnulib-tool.texi (Initial import): Update to match current
1009         behavior with strdup module.
1010         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
1011         * lib/memmem.h: Remove; all uses removed.  This is now done
1012         by <string.h>.
1013         * lib/mempcpy.h: Likewise.
1014         * lib/memrchr.h: Likewise.
1015         * lib/stpcpy.h: Likewise.
1016         * lib/stpncpy.h: Likewise.
1017         * lib/strcase.h: Likewise.
1018         * lib/strchrnul.h: Likewise.
1019         * lib/strdup.h: Likewise.
1020         * lib/strndup.h: Likewise.
1021         * lib/strnlen.h: Likewise.
1022         * lib/strpbrk.h: Likewise.
1023         * lib/strsep.h: Likewise.
1024         * lib/strstr.h: Likewise.
1025         * lib/strtok_r.h: Likewise.
1026         * lib/string_.h: New file.
1027         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
1028         Rely on <string.h> instead.
1029         * lib/canon-host.c: Likewise.
1030         * lib/chdir-long.c: Likewise.
1031         * lib/concatpath.c: Likewise.
1032         * lib/exclude.c: Likewise.
1033         * lib/fchdir.c: Likewise.
1034         * lib/getaddrinfo.c: Likewise.
1035         * lib/getcwd.c: Likewise.
1036         * lib/getsubopt.c: Likewise.
1037         * lib/glob.c: Likewise.
1038         * lib/hard-locale.c: Likewise.
1039         * lib/iconvme.c: Likewise.
1040         * lib/javacomp.c: Likewise.
1041         * lib/mempcpy.c: Likewise.
1042         * lib/memrchr.c: Likewise.
1043         * lib/regex_internal.h: Likewise.
1044         * lib/stpncpy.c: Likewise.
1045         * lib/strcasecmp.c: Likewise.
1046         * lib/strchrnul.c: Likewise.
1047         * lib/strdup.c: Likewise.
1048         * lib/striconv.c: Likewise.
1049         * lib/striconveh.c: Likewise.
1050         * lib/striconveha.c: Likewise.
1051         * lib/strncasecmp.c: Likewise.
1052         * lib/strndup.c: Likewise.
1053         * lib/strnlen.c: Likewise.
1054         * lib/strsep.c: Likewise.
1055         * lib/strstr.c: Likewise.
1056         * lib/strtok_r.c: Likewise.
1057         * lib/userspec.c: Likewise.
1058         * lib/w32spawn.h: Likewise.
1059         * lib/xstrndup.c: Likewise.
1060         * lib/mountlist.c (strstr): Remove decl.
1061         * m4/string_h.m4: New file.
1062         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
1063         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
1064         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
1065         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
1066         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
1067         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
1068         Set REPLACE_STRCASECMP if necessary.
1069         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
1070         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
1071         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
1072         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
1073         HAVE_DECL_STRDUP if necessary.
1074         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
1075         since gl_FUNC_STRNDUP does that now.
1076         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
1077         Check for decl here...
1078         (gl_PREREQ_STRNLEN): ... not here.
1079         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
1080         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
1081         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
1082         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
1083         necessary.
1084         * modules/string: New file.
1085         * modules/memmem (Files): Remove special-purpose include file.
1086         (Depends-on): Add string.
1087         (Include): Include <string.h>, not the removed file.
1088         * modules/mempcpy: Likewise.
1089         * modules/memrchr: Likewise.
1090         * modules/stpcpy: Likewise.
1091         * modules/stpncpy: Likewise.
1092         * modules/strcase: Likewise.
1093         * modules/strchrnul: Likewise.
1094         * modules/strdup: Likewise.
1095         * modules/strndup: Likewise.
1096         * modules/strnlen: Likewise.
1097         * modules/strpbrk: Likewise.
1098         * modules/strsep: Likewise.
1099         * modules/strstr: Likewise.
1100         * modules/strtok_r: Likewise.
1101         * tests/test-dirname.c: Don't include "strdup.h", since
1102         <string.h> now suffices.
1103         * tests/test-memmem.c: Don't include "memmem.h", since
1104         <string.h> now suffices.
1105
1106 2007-01-25  Bruno Haible  <bruno@clisp.org>
1107
1108         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
1109         *resultp is 0.
1110
1111         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
1112         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
1113         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
1114         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
1115
1116         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
1117         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
1118         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
1119         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
1120         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
1121         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
1122
1123 2007-01-24  Bruno Haible  <bruno@clisp.org>
1124
1125         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
1126         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
1127         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
1128         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
1129         gl_FUNC_FTS_CORE.
1130         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
1131         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
1132         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
1133         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
1134         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
1135         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
1136         gl_FUNC_FCHOWNAT.
1137         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
1138         gl_FUNC_STRFTIME.
1139         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
1140         Reported by Ralf Wildenhues.
1141
1142 2007-01-24  Bruno Haible  <bruno@clisp.org>
1143
1144         Drop AC_REQUIRE calls that are redundant with the module dependencies.
1145         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
1146         gl_GETADDRINFO.
1147         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
1148         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
1149         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
1150
1151 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
1152
1153         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
1154         Don't use 'exit'; just return from 'main'.
1155         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
1156
1157         * lib/fnmatch_.h: Readjust white space and comments to match
1158         glibc, to avoid spurious diffs.
1159
1160 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
1161
1162         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
1163         2004-12-01 change by Jakub Jelinek, since this code won't compile
1164         if !LIBC.  Problem reported by Bob Proulx.
1165
1166 2007-01-23  Bruno Haible  <bruno@clisp.org>
1167
1168         * lib/striconveh.c: Include c-strcaseeq.h.
1169         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
1170         * modules/striconveh (Depends-on): Add c-strcaseeq.
1171
1172 2007-01-23  Bruno Haible  <bruno@clisp.org>
1173
1174         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
1175
1176         * modules/c-strcaseeq: New file.
1177         * lib/c-strcaseeq.h: New file.
1178
1179         * modules/streq: New file.
1180         * lib/streq.h: New file.
1181
1182 2007-01-23  Bruno Haible  <bruno@clisp.org>
1183
1184         * modules/striconveha-tests: New file.
1185         * tests/test-striconveha.c: New file.
1186
1187         * lib/striconveha.h: Include <stdbool.h>.
1188         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
1189         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
1190         (mem_iconveha_notranslit): Renamed from mem_iconveha.
1191         (mem_iconveha): New function.
1192         (str_iconveha_notranslit): Renamed from str_iconveha.
1193         (str_iconveha): New function.
1194         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
1195         c-strcase.
1196
1197 2007-01-23  Bruno Haible  <bruno@clisp.org>
1198
1199         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
1200         encodings without forgiving before trying any encoding with handler.
1201         (str_iconveha): Try all encodings without forgiving before trying any
1202         encoding with handler.
1203
1204 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
1205
1206         Import the following changes from libc.
1207
1208         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
1209
1210         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
1211
1212         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
1213
1214         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
1215         normal_bracket label.
1216
1217         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
1218
1219         [BZ #361]
1220         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
1221         to normal_bracket after fetching the next character.
1222
1223 2007-01-22  Bruno Haible  <bruno@clisp.org>
1224
1225         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
1226         argument.
1227         * lib/striconveh.c (iconv_carefully_1): New function.
1228         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
1229         argument.
1230         (str_cd_iconveh): Update.
1231         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
1232         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
1233         * tests/test-striconveh.c (MAGIC): New macro.
1234         (new_offsets): New function.
1235         (main): Test call with and without offsets.
1236
1237 2007-01-22  Bruno Haible  <bruno@clisp.org>
1238
1239         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
1240         * modules/sys_select (Makefile.am): Likewise.
1241         * modules/sys_socket (Makefile.am): Likewise.
1242         * modules/sys_time (Makefile.am): Likewise.
1243
1244 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
1245
1246         * modules/gettimeofday (License): Change from GPL to LGPL, since
1247         gettimeofday is a library function.
1248
1249 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
1250
1251         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
1252
1253 2007-01-21  Bruno Haible  <bruno@clisp.org>
1254
1255         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
1256
1257 2007-01-21  Bruno Haible  <bruno@clisp.org>
1258
1259         * modules/striconveha: New file.
1260         * lib/striconveha.h: New file.
1261         * lib/striconveha.c: New file.
1262         * MODULES.html.sh (Internationalization functions): Add striconveha.
1263         * lib/striconv.c (str_iconv): Optimize the case of an empty input
1264         string.
1265         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
1266
1267 2007-01-21  Bruno Haible  <bruno@clisp.org>
1268
1269         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
1270         * lib/striconveh.c (str_iconveh): Likewise.
1271
1272 2007-01-21  Bruno Haible  <bruno@clisp.org>
1273
1274         * lib/striconveh.h (mem_iconveh): New declaration.
1275         * lib/striconveh.c (mem_iconveh): New function.
1276         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
1277
1278 2007-01-21  Bruno Haible  <bruno@clisp.org>
1279
1280         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
1281
1282         * lib/striconveh.h (mem_cd_iconveh): Change specification.
1283         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
1284         original result buffer.
1285         (str_cd_iconveh): Update.
1286         * tests/test-striconveh.c (main): Update.
1287
1288         * lib/striconv.h (mem_cd_iconv): Change specification.
1289         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
1290         result buffer.
1291         (str_cd_iconv): Update.
1292         * tests/test-striconv.c (main): Update.
1293
1294 2007-01-21  Bruno Haible  <bruno@clisp.org>
1295
1296         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
1297
1298 2007-01-20  Jim Meyering  <jim@meyering.net>
1299
1300         * lib/userspec.c (parse_with_separator): If a user or group string
1301         starts with "+", skip the corresponding name-to-ID look-up, since
1302         such a look-up must fail: user and group names may not include "+".
1303
1304 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
1305
1306         * lib/poll.c: Include sys/time.h and time.h unconditionally,
1307         since we now assume the sys_time module.
1308         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
1309         check for sys/time.h; no longer needed.
1310         * modules/poll (Depends-on): Depend on sys_time.
1311
1312 2007-01-18  Bruno Haible  <bruno@clisp.org>
1313
1314         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
1315         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
1316
1317         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
1318         gettimeofday.
1319
1320         * tests/test-gettimeofday.c: Include <time.h>.
1321         (dummy): Remove variable.
1322
1323         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
1324         gl_HEADER_SYS_TIME_H.
1325         (gl_HEADER_SYS_TIME_H): New macro.
1326
1327         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
1328         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
1329         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
1330         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
1331         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
1332         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
1333         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
1334         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
1335         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
1336         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
1337         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
1338
1339         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
1340         last change; it caused a compilation error when cross-compiling to
1341         Cygwin.
1342
1343 2007-01-18  Jim Meyering  <jim@meyering.net>
1344
1345         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
1346         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
1347         than the race-prone "test -d sys || mkdir sys".
1348         (configure.ac): Use AC_PROG_MKDIR_P.
1349         * modules/sys_select: Likewise.
1350         * modules/sys_socket: Likewise.
1351         * modules/sys_time: Likewise.
1352
1353 2007-01-18  Eric Blake  <ebb9@byu.net>
1354
1355         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
1356         replace gettimeofday.
1357         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
1358         name, to avoid infinite recursion.
1359
1360 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
1361
1362         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
1363         module sys_time.
1364         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
1365         assume timespec.h defines struct timeval.
1366         * lib/settime.c: Likewise.
1367         * lib/utimens.c: Likewise.
1368         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
1369         since we now assume the gettimeofday module.
1370         * lib/tempname.c (__gen_tempname): Likewise.
1371         * lib/gettimeofday.h: Remove.
1372         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
1373         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
1374         Include <time.h>, for 'time()'.
1375         (localtime_buffer_addr): Also use this workaround if
1376         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
1377         to simplify the uses.  All uses changed.
1378         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
1379         that #undef is inside {}, and 'const' follows type name consistently.
1380         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
1381         (gettimeofday): Do not use the maximum possible value for
1382         tv->tv_usec, since that might break usages other than ls.c.
1383         Instead, we'll leave ls.c alone.  This undoes today's patch
1384         by Bruno.  Add a compile-time warning for 1s-clock resolution;
1385         we've never observed the problem but might as well keep the
1386         canary.
1387         * lib/nanosleep.c: Include timespec.h first, for interface check.
1388         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
1389         now assume the sys_time module.
1390         * lib/tempname.c: Likewise.
1391         * lib/timespec.h: Likewise.
1392         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
1393         needed.
1394         * lib/strftime.c: Likewise.
1395         * lib/timespec.h: Likewise.
1396         * lib/posixtm.c: Include posixtm.h first, for interface check.
1397         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
1398         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
1399         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
1400         * lib/sys_time_.h: New file.
1401         * lib/timespec.h (struct timespec): Use long int, not long.
1402         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
1403         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
1404         Remove obsolescent call to AC_HEADER_TIME.
1405         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
1406         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
1407         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
1408         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
1409         Likewise.
1410         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
1411         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
1412         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
1413         into the sys_time module.  Check for gettimeofday just once.
1414         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
1415         for gettimeofday signature to just check the signature.  Merely
1416         compile it, since linking doesn't test signature.  Improve test for
1417         whether gettimeofday.o is actually needed.
1418         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
1419         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
1420         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
1421         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
1422         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
1423         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
1424         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
1425         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
1426         than worrying about sys/time.h.
1427         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
1428         Don't bother worrying about TIME_WITH_SYS_TIME.
1429         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
1430         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
1431         * m4/sys_time_h.m4: New file.
1432         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
1433         Don't include sys/time.h.  Return from main rather than exiting.
1434         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
1435         all uses changed.
1436         * modules/gethrxtime (Depends-on): Add sys_time.
1437         * modules/gettime (Depends-on): Likewise.
1438         * modules/gettimeofday (Depends-on): Likewise.
1439         * modules/nanosleep (Depends-on): Likewise.
1440         * modules/settime (Depends-on): Likewise.
1441         * modules/tempname (Depends-on): Likewise.
1442         * modules/utimens (Depends-on): Likewise.
1443         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
1444         (Include:) Change back to <sys/time.h>.
1445         (Maintainer:) Add self.
1446         * modules/sys_time: New file.
1447         * modules/tempname (Depends-on): Add gettimeofday.
1448         * tests/test-gettimeofday.c: Include <sys/time.h>
1449         rather than gettimeofday.h.
1450
1451 2007-01-17  Bruno Haible  <bruno@clisp.org>
1452
1453         * gnulib-tool (func_get_license): Revert last patch. Instead, let
1454         the license default to GPL.
1455         (func_create_testdir): Don't complain if a module is LGPL and its
1456         tests module depends on GPLed modules.
1457
1458 2007-01-17  Bruno Haible  <bruno@clisp.org>
1459
1460         * lib/gettimeofday.c (gettimeofday): Add code for the case
1461         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
1462         maximum possible value for tv->tv_usec, rather than the minimum one.
1463
1464 2005-10-08  Martin Lambers  <marlam@marlam.de>
1465 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
1466 2007-01-16  Bruno Haible  <bruno@clisp.org>
1467
1468         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
1469         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
1470         gl_FUNC_GETTIMEOFDAY.
1471         (Include): Add gettimeofday.h.
1472         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
1473         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
1474         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
1475         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
1476         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
1477         * lib/gettimeofday.h: New file.
1478         * lib/gettimeofday.c: Include <sys/timeb.h>.
1479         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
1480         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
1481         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
1482         fall back on time().
1483
1484         * tests/test-gettimeofday.c: New file.
1485         * modules/gettimeofday-tests: New file.
1486
1487 2007-01-16  Eric Blake  <ebb9@byu.net>
1488
1489         * modules/fnmatch (Depends-on): Depend on wchar.
1490         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
1491         * m4/fnmatch.m4: Likewise.
1492         * modules/mbchar (Makefile.am): Assume <wchar.h>.
1493         * m4/mbchar.m4: Likewise.
1494         * modules/mbswidth (Depends-on): Depend on wchar.
1495         * lib/mbswidth.c: Assume <wchar.h>.
1496         * m4/mbswidth.m4: Likewise.
1497         * modules/quotearg (Depends-on): Depend on wchar.
1498         * lib/quotearg.c: Assume <wchar.h>.
1499         * m4/quotearg.m4: Likewise.
1500         * modules/regex (Depends-on): Depend on wchar.
1501         * lib/regex_internal.h: Assume <wchar.h>.
1502         * m4/regex.m4: Likewise.
1503         * modules/stdint (Depends-on): Depend on wchar.
1504         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
1505         * m4/stdint.m4: Likewise.
1506         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
1507         * modules/strftime (Depends-on): Depend on wchar.
1508         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
1509         * modules/strtol (Depends-on): Depend on wchar.
1510         * lib/strtol.c: Assume <wchar.h>.
1511         * modules/wcwidth (Depends-on): Depend on wchar.
1512         * lib/wcwidth.h: Assume <wchar.h>.
1513         * m4/wcwidth.m4: Likewise.
1514
1515 2007-01-16  Bruno Haible  <bruno@clisp.org>
1516
1517         * modules/csharpexec-script: New, created from...
1518         * modules/csharpexec: ... this.
1519
1520 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
1521
1522         * modules/javaexec-script: New, created from...
1523         * modules/javaexec: ... this.
1524
1525 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
1526
1527         * modules/poll (Dependencies): Add sys_select.
1528
1529 2007-01-15  Jim Meyering  <jim@meyering.net>
1530
1531         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
1532         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
1533         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
1534         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
1535
1536 2007-01-15  Bruno Haible  <bruno@clisp.org>
1537
1538         * modules/striconveh: New file.
1539         * lib/striconveh.h: New file.
1540         * lib/striconveh.c: New file.
1541         * MODULES.html.sh (Internationalization functions): Add striconveh.
1542
1543         * modules/striconveh-tests: New file.
1544         * tests/test-striconveh.c: New file.
1545
1546 2007-01-15  Bruno Haible  <bruno@clisp.org>
1547
1548         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
1549         not from GNU libiconv or GNU libc.
1550
1551 2007-01-15  Bruno Haible  <bruno@clisp.org>
1552
1553         * doc/gnulib-intro.texi (Copyright): Explain the different license
1554         terms for module descriptions, autoconf macros, tests, documentation.
1555
1556 2007-01-14  Bruno Haible  <bruno@clisp.org>
1557
1558         * modules/striconv-tests: New file.
1559         * tests/test-striconv.c: New file.
1560
1561 2007-01-14  Bruno Haible  <bruno@clisp.org>
1562
1563         * modules/iconv-tests: New file.
1564         * tests/test-iconv.c: New file.
1565
1566 2007-01-14  Bruno Haible  <bruno@clisp.org>
1567
1568         * gnulib-tool (func_get_license): For test modules, use the license of
1569         the main module.
1570
1571 2007-01-14  Bruno Haible  <bruno@clisp.org>
1572
1573         * modules/iconv (Include): Clarify that <iconv.h> can only be included
1574         if iconv is found to exist.
1575
1576 2007-01-14  Bruno Haible  <bruno@clisp.org>
1577
1578         * modules/c-ctype-tests: New file.
1579         * tests/test-c-ctype.c: New file.
1580
1581 2007-01-14  Bruno Haible  <bruno@clisp.org>
1582
1583         * modules/binary-io-tests: New file.
1584         * tests/test-binary-io.sh: New file.
1585         * tests/test-binary-io.c: New file.
1586
1587 2007-01-14  Bruno Haible  <bruno@clisp.org>
1588
1589         * modules/array-oset-tests: New file.
1590         * tests/test-array_oset.c: New file.
1591
1592 2007-01-14  Bruno Haible  <bruno@clisp.org>
1593
1594         * modules/array-list-tests: New file.
1595         * tests/test-array_list.c: New file.
1596
1597 2007-01-14  Bruno Haible  <bruno@clisp.org>
1598
1599         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
1600         and make.
1601         Reported by Simon Josefsson in
1602         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
1603
1604 2007-01-14  Bruno Haible  <bruno@clisp.org>
1605
1606         * modules/allocsa-tests: New file.
1607         * tests/test-allocsa.c: New file.
1608
1609 2007-01-14  Bruno Haible  <bruno@clisp.org>
1610
1611         * modules/fchdir (Depends-on): Add absolute-header.
1612         * modules/unistd (Depends-on): Likewise.
1613
1614 2006-12-30  Bruno Haible  <bruno@clisp.org>
1615
1616         * modules/fchdir: New file.
1617         * modules/unistd (Files): Add lib/unistd_.h.
1618         (Makefile.am): Generate unistd.h from unistd_.h.
1619         * lib/fchdir.c: New file.
1620         * lib/dirent_.h: New file.
1621         * lib/unistd_.h: New file.
1622         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
1623         * m4/fchdir.m4: New file.
1624         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
1625         (gl_HEADER_UNISTD): Invoke it.
1626         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
1627         function.
1628         * lib/backupfile.c (opendir, closedir): Undefine.
1629         * lib/chown.c (open, close): Undefine.
1630         * lib/clean-temp.c (open, close): Undefine.
1631         * lib/copy-file.c (open, close): Undefine.
1632         * lib/execute.c (open, close): Undefine.
1633         * lib/fsusage.c (open, close): Undefine.
1634         * lib/gc-gnulib.c (open, close): Undefine.
1635         * lib/getcwd.c (opendir, closedir): Undefine.
1636         * lib/glob.c (opendir, closedir): Undefine.
1637         * lib/javacomp.c (open, close): Undefine.
1638         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
1639         * lib/openat-proc.c (open, close): Undefine.
1640         * lib/pagealign_alloc.c (open, close): Undefine.
1641         * lib/pipe.c (open, close): Undefine.
1642         * lib/progreloc.c (open, close): Undefine.
1643         * lib/savedir.c (opendir, closedir): Undefine.
1644         * lib/utime.c (open, close): Undefine.
1645         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
1646
1647 2007-01-10  Bruno Haible  <bruno@clisp.org>
1648
1649         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
1650
1651 2007-01-12  Eric Blake  <ebb9@byu.net>
1652
1653         Provide a robust <wchar.h>.  Further simplifications are now
1654         possible in other modules, but not included here.
1655         * modules/wchar: New module.
1656         * m4/wchar.m4: New file.
1657         * lib/wchar_.h: Likewise.
1658         * modules/mbchar (Depends-on): Depend on wchar, as the first use
1659         of the new module.
1660         * MODULES.html.sh (Extended multibyte and wide character utilities):
1661         New section.
1662
1663 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
1664
1665         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
1666         to a reasonable default for memory allocation.
1667         (xreadlink): Don't allocate a huge buffer, to work around a buggy
1668         file system that reports garbage st_size values for symlinks.
1669         Problem reported by Liyang Hu.
1670
1671 2007-01-11  Simon Josefsson  <simon@josefsson.org>
1672
1673         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
1674         Emacs .#* auto-save files).
1675
1676 2007-01-11  Bruno Haible  <bruno@clisp.org>
1677
1678         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
1679         directory.
1680
1681 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
1682
1683         Use @...@ consistently in lib/wctype_.h.
1684         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
1685         on it being set to 1 or 0.
1686         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
1687         go back to AC_SUBSTing it.
1688         * modules/wctype (Makefile.am): Undo previous change.
1689
1690 2007-01-10  Eric Blake  <ebb9@byu.net>
1691
1692         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
1693         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
1694         * modules/wctype (Makefile.am): Likewise.
1695         Reported by Chris McGuire.
1696
1697 2007-01-10  Jim Meyering  <jim@meyering.net>
1698
1699         fts.c: a small readability/maintainability improvement
1700         * lib/fts.c (fts_read): Make this code slightly more readable and
1701         maintainable by hoisting the "sp->fts_cur = p" assignments to
1702         immediately follow the statements that set P.  Derived from
1703         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
1704
1705 2007-01-10  Eric Blake  <ebb9@byu.net>
1706
1707         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
1708         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
1709         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
1710         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
1711         Reported by Chris McGuire.
1712
1713 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1714
1715         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
1716         in sed script.
1717
1718 2007-01-09  Bruno Haible  <bruno@clisp.org>
1719
1720         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
1721         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
1722         variables.
1723         (func_module): Use them.
1724
1725 2007-01-09  Bruno Haible  <bruno@clisp.org>
1726
1727         * modules/unistr/base: New file.
1728         * lib/unistr.h: New file.
1729
1730         * modules/unistr/u8-to-u16: New file.
1731         * lib/unistr/u8-to-u16.c: New file.
1732
1733         * modules/unistr/u8-to-u32: New file.
1734         * lib/unistr/u8-to-u32.c: New file.
1735
1736         * modules/unistr/u16-to-u8: New file.
1737         * lib/unistr/u16-to-u8.c: New file.
1738
1739         * modules/unistr/u16-to-u32: New file.
1740         * lib/unistr/u16-to-u32.c: New file.
1741
1742         * modules/unistr/u32-to-u8: New file.
1743         * lib/unistr/u32-to-u8.c: New file.
1744
1745         * modules/unistr/u32-to-u16: New file.
1746         * lib/unistr/u32-to-u16.c: New file.
1747
1748         * modules/unistr/u8-check: New file.
1749         * modules/unistr/u16-check: New file.
1750         * modules/unistr/u32-check: New file.
1751         * lib/unistr/u8-check.c: New file.
1752         * lib/unistr/u16-check.c: New file.
1753         * lib/unistr/u32-check.c: New file.
1754
1755         * modules/unistr/u8-chr: New file.
1756         * modules/unistr/u16-chr: New file.
1757         * modules/unistr/u32-chr: New file.
1758         * lib/unistr/u8-chr.c: New file.
1759         * lib/unistr/u16-chr.c: New file.
1760         * lib/unistr/u32-chr.c: New file.
1761
1762         * modules/unistr/u8-cmp: New file.
1763         * modules/unistr/u16-cmp: New file.
1764         * modules/unistr/u32-cmp: New file.
1765         * lib/unistr/u8-cmp.c: New file.
1766         * lib/unistr/u16-cmp.c: New file.
1767         * lib/unistr/u32-cmp.c: New file.
1768
1769         * modules/unistr/u8-cpy: New file.
1770         * modules/unistr/u16-cpy: New file.
1771         * modules/unistr/u32-cpy: New file.
1772         * lib/unistr/u8-cpy.c: New file.
1773         * lib/unistr/u16-cpy.c: New file.
1774         * lib/unistr/u32-cpy.c: New file.
1775         * lib/unistr/u-cpy.h: New file.
1776
1777         * modules/unistr/u8-cpy-alloc: New file.
1778         * modules/unistr/u16-cpy-alloc: New file.
1779         * modules/unistr/u32-cpy-alloc: New file.
1780         * lib/unistr/u8-cpy-alloc.c: New file.
1781         * lib/unistr/u16-cpy-alloc.c: New file.
1782         * lib/unistr/u32-cpy-alloc.c: New file.
1783         * lib/unistr/u-cpy-alloc.h: New file.
1784
1785         * modules/unistr/u8-endswith: New file.
1786         * modules/unistr/u16-endswith: New file.
1787         * modules/unistr/u32-endswith: New file.
1788         * lib/unistr/u8-endswith.c: New file.
1789         * lib/unistr/u16-endswith.c: New file.
1790         * lib/unistr/u32-endswith.c: New file.
1791         * lib/unistr/u-endswith.h: New file.
1792
1793         * modules/unistr/u8-mblen: New file.
1794         * modules/unistr/u16-mblen: New file.
1795         * modules/unistr/u32-mblen: New file.
1796         * lib/unistr/u8-mblen.c: New file.
1797         * lib/unistr/u16-mblen.c: New file.
1798         * lib/unistr/u32-mblen.c: New file.
1799
1800         * modules/unistr/u8-mbtouc: New file.
1801         * modules/unistr/u16-mbtouc: New file.
1802         * modules/unistr/u32-mbtouc: New file.
1803         * lib/unistr/u8-mbtouc.c: New file.
1804         * lib/unistr/u16-mbtouc.c: New file.
1805         * lib/unistr/u32-mbtouc.c: New file.
1806
1807         * modules/unistr/u8-mbtouc-safe: New file.
1808         * modules/unistr/u16-mbtouc-safe: New file.
1809         * modules/unistr/u32-mbtouc-safe: New file.
1810         * lib/unistr/u8-mbtouc-safe.c: New file.
1811         * lib/unistr/u16-mbtouc-safe.c: New file.
1812         * lib/unistr/u32-mbtouc-safe.c: New file.
1813
1814         * modules/unistr/u8-move: New file.
1815         * modules/unistr/u16-move: New file.
1816         * modules/unistr/u32-move: New file.
1817         * lib/unistr/u8-move.c: New file.
1818         * lib/unistr/u16-move.c: New file.
1819         * lib/unistr/u32-move.c: New file.
1820         * lib/unistr/u-move.h: New file.
1821
1822         * modules/unistr/u8-next: New file.
1823         * modules/unistr/u16-next: New file.
1824         * modules/unistr/u32-next: New file.
1825         * lib/unistr/u8-next.c: New file.
1826         * lib/unistr/u16-next.c: New file.
1827         * lib/unistr/u32-next.c: New file.
1828
1829         * modules/unistr/u8-prev: New file.
1830         * modules/unistr/u16-prev: New file.
1831         * modules/unistr/u32-prev: New file.
1832         * lib/unistr/u8-prev.c: New file.
1833         * lib/unistr/u16-prev.c: New file.
1834         * lib/unistr/u32-prev.c: New file.
1835
1836         * modules/unistr/u8-set: New file.
1837         * modules/unistr/u16-set: New file.
1838         * modules/unistr/u32-set: New file.
1839         * lib/unistr/u8-set.c: New file.
1840         * lib/unistr/u16-set.c: New file.
1841         * lib/unistr/u32-set.c: New file.
1842         * lib/unistr/u-set.h: New file.
1843
1844         * modules/unistr/u8-startswith: New file.
1845         * modules/unistr/u16-startswith: New file.
1846         * modules/unistr/u32-startswith: New file.
1847         * lib/unistr/u8-startswith.c: New file.
1848         * lib/unistr/u16-startswith.c: New file.
1849         * lib/unistr/u32-startswith.c: New file.
1850         * lib/unistr/u-startswith.h: New file.
1851
1852         * modules/unistr/u8-stpcpy: New file.
1853         * modules/unistr/u16-stpcpy: New file.
1854         * modules/unistr/u32-stpcpy: New file.
1855         * lib/unistr/u8-stpcpy.c: New file.
1856         * lib/unistr/u16-stpcpy.c: New file.
1857         * lib/unistr/u32-stpcpy.c: New file.
1858         * lib/unistr/u-stpcpy.h: New file.
1859
1860         * modules/unistr/u8-stpncpy: New file.
1861         * modules/unistr/u16-stpncpy: New file.
1862         * modules/unistr/u32-stpncpy: New file.
1863         * lib/unistr/u8-stpncpy.c: New file.
1864         * lib/unistr/u16-stpncpy.c: New file.
1865         * lib/unistr/u32-stpncpy.c: New file.
1866         * lib/unistr/u-stpncpy.h: New file.
1867
1868         * modules/unistr/u8-strcat: New file.
1869         * modules/unistr/u16-strcat: New file.
1870         * modules/unistr/u32-strcat: New file.
1871         * lib/unistr/u8-strcat.c: New file.
1872         * lib/unistr/u16-strcat.c: New file.
1873         * lib/unistr/u32-strcat.c: New file.
1874         * lib/unistr/u-strcat.h: New file.
1875
1876         * modules/unistr/u8-strchr: New file.
1877         * modules/unistr/u16-strchr: New file.
1878         * modules/unistr/u32-strchr: New file.
1879         * lib/unistr/u8-strchr.c: New file.
1880         * lib/unistr/u16-strchr.c: New file.
1881         * lib/unistr/u32-strchr.c: New file.
1882
1883         * modules/unistr/u8-strcmp: New file.
1884         * modules/unistr/u16-strcmp: New file.
1885         * modules/unistr/u32-strcmp: New file.
1886         * lib/unistr/u8-strcmp.c: New file.
1887         * lib/unistr/u16-strcmp.c: New file.
1888         * lib/unistr/u32-strcmp.c: New file.
1889
1890         * modules/unistr/u8-strcpy: New file.
1891         * modules/unistr/u16-strcpy: New file.
1892         * modules/unistr/u32-strcpy: New file.
1893         * lib/unistr/u8-strcpy.c: New file.
1894         * lib/unistr/u16-strcpy.c: New file.
1895         * lib/unistr/u32-strcpy.c: New file.
1896         * lib/unistr/u-strcpy.h: New file.
1897
1898         * modules/unistr/u8-strcspn: New file.
1899         * modules/unistr/u16-strcspn: New file.
1900         * modules/unistr/u32-strcspn: New file.
1901         * lib/unistr/u8-strcspn.c: New file.
1902         * lib/unistr/u16-strcspn.c: New file.
1903         * lib/unistr/u32-strcspn.c: New file.
1904         * lib/unistr/u-strcspn.h: New file.
1905
1906         * modules/unistr/u8-strdup: New file.
1907         * modules/unistr/u16-strdup: New file.
1908         * modules/unistr/u32-strdup: New file.
1909         * lib/unistr/u8-strdup.c: New file.
1910         * lib/unistr/u16-strdup.c: New file.
1911         * lib/unistr/u32-strdup.c: New file.
1912         * lib/unistr/u-strdup.h: New file.
1913
1914         * modules/unistr/u8-strlen: New file.
1915         * modules/unistr/u16-strlen: New file.
1916         * modules/unistr/u32-strlen: New file.
1917         * lib/unistr/u8-strlen.c: New file.
1918         * lib/unistr/u16-strlen.c: New file.
1919         * lib/unistr/u32-strlen.c: New file.
1920         * lib/unistr/u-strlen.h: New file.
1921
1922         * modules/unistr/u8-strmblen: New file.
1923         * modules/unistr/u16-strmblen: New file.
1924         * modules/unistr/u32-strmblen: New file.
1925         * lib/unistr/u8-strmblen.c: New file.
1926         * lib/unistr/u16-strmblen.c: New file.
1927         * lib/unistr/u32-strmblen.c: New file.
1928
1929         * modules/unistr/u8-strmbtouc: New file.
1930         * modules/unistr/u16-strmbtouc: New file.
1931         * modules/unistr/u32-strmbtouc: New file.
1932         * lib/unistr/u8-strmbtouc.c: New file.
1933         * lib/unistr/u16-strmbtouc.c: New file.
1934         * lib/unistr/u32-strmbtouc.c: New file.
1935
1936         * modules/unistr/u8-strncat: New file.
1937         * modules/unistr/u16-strncat: New file.
1938         * modules/unistr/u32-strncat: New file.
1939         * lib/unistr/u8-strncat.c: New file.
1940         * lib/unistr/u16-strncat.c: New file.
1941         * lib/unistr/u32-strncat.c: New file.
1942         * lib/unistr/u-strncat.h: New file.
1943
1944         * modules/unistr/u8-strncmp: New file.
1945         * modules/unistr/u16-strncmp: New file.
1946         * modules/unistr/u32-strncmp: New file.
1947         * lib/unistr/u8-strncmp.c: New file.
1948         * lib/unistr/u16-strncmp.c: New file.
1949         * lib/unistr/u32-strncmp.c: New file.
1950
1951         * modules/unistr/u8-strncpy: New file.
1952         * modules/unistr/u16-strncpy: New file.
1953         * modules/unistr/u32-strncpy: New file.
1954         * lib/unistr/u8-strncpy.c: New file.
1955         * lib/unistr/u16-strncpy.c: New file.
1956         * lib/unistr/u32-strncpy.c: New file.
1957         * lib/unistr/u-strncpy.h: New file.
1958
1959         * modules/unistr/u8-strnlen: New file.
1960         * modules/unistr/u16-strnlen: New file.
1961         * modules/unistr/u32-strnlen: New file.
1962         * lib/unistr/u8-strnlen.c: New file.
1963         * lib/unistr/u16-strnlen.c: New file.
1964         * lib/unistr/u32-strnlen.c: New file.
1965         * lib/unistr/u-strnlen.h: New file.
1966
1967         * modules/unistr/u8-strpbrk: New file.
1968         * modules/unistr/u16-strpbrk: New file.
1969         * modules/unistr/u32-strpbrk: New file.
1970         * lib/unistr/u8-strpbrk.c: New file.
1971         * lib/unistr/u16-strpbrk.c: New file.
1972         * lib/unistr/u32-strpbrk.c: New file.
1973         * lib/unistr/u-strpbrk.h: New file.
1974
1975         * modules/unistr/u8-strrchr: New file.
1976         * modules/unistr/u16-strrchr: New file.
1977         * modules/unistr/u32-strrchr: New file.
1978         * lib/unistr/u8-strrchr.c: New file.
1979         * lib/unistr/u16-strrchr.c: New file.
1980         * lib/unistr/u32-strrchr.c: New file.
1981
1982         * modules/unistr/u8-strspn: New file.
1983         * modules/unistr/u16-strspn: New file.
1984         * modules/unistr/u32-strspn: New file.
1985         * lib/unistr/u8-strspn.c: New file.
1986         * lib/unistr/u16-strspn.c: New file.
1987         * lib/unistr/u32-strspn.c: New file.
1988         * lib/unistr/u-strspn.h: New file.
1989
1990         * modules/unistr/u8-strstr: New file.
1991         * modules/unistr/u16-strstr: New file.
1992         * modules/unistr/u32-strstr: New file.
1993         * lib/unistr/u8-strstr.c: New file.
1994         * lib/unistr/u16-strstr.c: New file.
1995         * lib/unistr/u32-strstr.c: New file.
1996         * lib/unistr/u-strstr.h: New file.
1997
1998         * modules/unistr/u8-strtok: New file.
1999         * modules/unistr/u16-strtok: New file.
2000         * modules/unistr/u32-strtok: New file.
2001         * lib/unistr/u8-strtok.c: New file.
2002         * lib/unistr/u16-strtok.c: New file.
2003         * lib/unistr/u32-strtok.c: New file.
2004         * lib/unistr/u-strtok.h: New file.
2005
2006         * modules/unistr/u8-uctomb: New file.
2007         * modules/unistr/u16-uctomb: New file.
2008         * modules/unistr/u32-uctomb: New file.
2009         * lib/unistr/u8-uctomb.c: New file.
2010         * lib/unistr/u16-uctomb.c: New file.
2011         * lib/unistr/u32-uctomb.c: New file.
2012
2013         * MODULES.html.sh (Unicode string functions): Add the new modules.
2014
2015 2007-01-08  Bruno Haible  <bruno@clisp.org>
2016
2017         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
2018         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
2019         subdirectories.
2020
2021 2007-01-08  Karl Berry  <karl@gnu.org>
2022
2023         * doc/error.texi: mention that main() fns must set program_name
2024         when progname is used.
2025
2026 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
2027
2028         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
2029         WCTYPE_H is empty, for the benefit of builds from non-distclean
2030         directories.  Problem reported by Eric Blake in
2031         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
2032
2033 2007-01-08  Bruno Haible  <bruno@clisp.org>
2034
2035         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
2036         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
2037         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
2038         PROVIDE_CANONICALIZE_FILENAME_MODE.
2039         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
2040
2041 2007-01-08  Bruno Haible  <bruno@clisp.org>
2042
2043         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
2044         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
2045         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
2046         * lib/fts.c: Likewise.
2047         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
2048
2049 2006-12-25  Bruno Haible  <bruno@clisp.org>
2050
2051         * modules/utf8-ucs4-safe: New file.
2052         * lib/utf8-ucs4-safe.h: New file.
2053         * lib/unistr/utf8-ucs4-safe.c: New file.
2054
2055         * modules/utf16-ucs4-safe: New file.
2056         * lib/utf16-ucs4-safe.h: New file.
2057         * lib/unistr/utf16-ucs4-safe.c: New file.
2058
2059         * MODULES.html.sh (Unicode string functions): Add the new modules.
2060
2061 2007-01-08  Bruno Haible  <bruno@clisp.org>
2062
2063         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
2064         (Depends-on): Add unitypes.
2065         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
2066         (u8_mbtouc_aux): Move out to separate file.
2067         (u8_mbtouc): Use ucs4_t, uint8_t types.
2068         * lib/unistr/utf8-ucs4.c: New file.
2069
2070         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
2071         (Depends-on): Add unitypes.
2072         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
2073         (u16_mbtouc_aux): Move out to separate file.
2074         (u16_mbtouc): Use ucs4_t, uint16_t types.
2075         * lib/unistr/utf16-ucs4.c: New file.
2076
2077         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
2078         (Depends-on): Add unitypes.
2079         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
2080         (u8_uctomb_aux): Move out to separate file.
2081         (u8_uctomb): Use ucs4_t, uint8_t types.
2082         * lib/unistr/ucs4-utf8.c: New file.
2083
2084         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
2085         (Depends-on): Add unitypes.
2086         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
2087         (u16_uctomb_aux): Move out to separate file.
2088         (u16_uctomb): Use ucs4_t, uint16_t types.
2089         * lib/unistr/ucs4-utf16.c: New file.
2090
2091 2006-12-25  Bruno Haible  <bruno@clisp.org>
2092
2093         * modules/unitypes: New file.
2094         * lib/unitypes.h: New file.
2095         * MODULES.html.sh (func_all_modules): New section "Unicode string
2096         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
2097         this section. Add unitypes.
2098
2099 2007-01-08  Bruno Haible  <bruno@clisp.org>
2100
2101         Avoid variable names that conflict with those from libtool.
2102         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
2103         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
2104         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
2105         library_names_spec to acl_library_names_spec, hardcode_* to
2106         acl_hardcode_*.
2107         Reported by Ralf Wildenhues.
2108
2109 2007-01-08  Bruno Haible  <bruno@clisp.org>
2110
2111         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
2112         definition.
2113         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
2114         definition.
2115         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
2116         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
2117         definition.
2118         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
2119         definition.
2120         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
2121         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
2122         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
2123         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
2124         definition.
2125         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
2126         definition.
2127         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
2128         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
2129         GC_USE_<algorithm>.
2130         * lib/gc-libgcrypt.c: Likewise.
2131         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
2132         * modules/gc-arctwo (configure.ac): Likewise.
2133         * modules/gc-des (configure.ac): Likewise.
2134         * modules/gc-hmac-md5 (configure.ac): Likewise.
2135         * modules/gc-hmac-sha1 (configure.ac): Likewise.
2136         * modules/gc-md2 (configure.ac): Likewise.
2137         * modules/gc-md4 (configure.ac): Likewise.
2138         * modules/gc-md5 (configure.ac): Likewise.
2139         * modules/gc-random (configure.ac): Likewise.
2140         * modules/gc-rijndael (configure.ac): Likewise.
2141         * modules/gc-sha1 (configure.ac): Likewise.
2142
2143 2007-01-08  Bruno Haible  <bruno@clisp.org>
2144
2145         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
2146         macro definition.
2147         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
2148         definition.
2149         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
2150         definition.
2151         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
2152         * modules/fcntl-safer (configure.ac): Likewise.
2153         * modules/fopen-safer (configure.ac): Likewise.
2154         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
2155         GNULIB_FWRITEERROR macro definition.
2156
2157 2007-01-08  Bruno Haible  <bruno@clisp.org>
2158
2159         * m4/gnulib-common.m4: New file.
2160         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
2161         (func_get_filelist): Add m4/gnulib-common.m4.
2162
2163 2007-01-08  Bruno Haible  <bruno@clisp.org>
2164
2165         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
2166         command.
2167
2168 2007-01-08  Jim Meyering  <jim@meyering.net>
2169
2170         Use a more robust test for a "can't happen" condition.
2171         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
2172         narrowed the st_size value.  Presuming the "can't happen" condition
2173         is true, that narrowing could conceivably convert an invalid st_size
2174         value into a valid one.  Instead, use a change based on Matthew
2175         Woehlke's original patch.
2176
2177         Slight readability improvement: use an assert-like macro
2178         in place of literal "abort ()" uses.
2179         * lib/fts.c (fts_assert): Define.
2180         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
2181         Use this macro instead of a bare 'abort'.
2182
2183 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
2184
2185         Don't worry about using IRIX 5.3's wctype.h broken definitions;
2186         simply work around them.
2187         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
2188         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
2189         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before declaring.
2190         Don't bother to define as macros, since the standard doesn't require it.
2191         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
2192         longer worry about IRIX 5.3.
2193         (HAVE_WCTYPE_CTMP_BUG): Remove.
2194
2195 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
2196
2197         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
2198         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
2199         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
2200         Problems reported by Georg Schwarz for IRIX 5.3.
2201
2202         * gnulib-tool (autoconf_minversion): Take the maximum version number
2203         found, not the minimum.  Problem reported by James Youngman.
2204
2205 2007-01-03  Karl Berry  <karl@gnu.org>
2206
2207         * doc/error.texi: new file, explaining interaction with progname.
2208         * doc/gnulib.texi: include it.  Update copyright.
2209
2210 2007-01-03  Simon Josefsson  <simon@josefsson.org>
2211
2212         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
2213         AC_CANONICAL_HOST, to improve autobuild outputs.
2214
2215 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
2216             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
2217
2218         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
2219         sockets, server sockets, and other file descriptors.  Count errors
2220         to compute the return value.  Reorder the code a bit to be easier
2221         to follow.  Don't set event bits that were not requested (except
2222         POLLERR and POLLHUP).
2223
2224 2007-01-01  Bruno Haible  <bruno@clisp.org>
2225
2226         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
2227
2228 2007-01-03  Jim Meyering  <jim@meyering.net>
2229
2230         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
2231
2232 2007-01-02  Bruno Haible  <bruno@clisp.org>
2233
2234         * modules/settime (Include): Require timespec.h.
2235         * modules/nanosleep (Include): Likewise.
2236
2237 2007-01-01  Bruno Haible  <bruno@clisp.org>
2238
2239         * gnulib-tool (func_emit_copyright_notice): Bump year.
2240         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
2241
2242 2007-01-01  Bruno Haible  <bruno@clisp.org>
2243
2244         Improve support for OpenBSD.
2245         * build-aux/config.rpath (libname_spec): Export.
2246         (library_names_spec): New variable. Export.
2247         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
2248         library_names_spec from the config.rpath output. Locate shared library
2249         through the name pattern in library_names_spec.
2250
2251 2007-01-01  Eric Blake  <ebb9@byu.net>
2252
2253         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
2254
2255 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
2256
2257         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
2258         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
2259         assume the C locale, and avoid an "eval" that could cause trouble.
2260         Problem with SORT reported by Bob Proulx.
2261
2262         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
2263         Define.  Trivial patch from Henning Nielsen Lund, originally
2264         sent to bug-grep@gnu.org today.
2265
2266 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
2267
2268         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
2269         struct stat.  Problem reported by Henning Nielsen Lund.
2270         * lib/acl.c: Include acl.h first, to check interface.  Don't
2271         bother to include sys/types.h and sys/stat.h again.
2272
2273 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
2274
2275         Import the following change from libc; problem reported by
2276         Sven Verdoolaege.
2277
2278         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
2279
2280         [BZ #1373]
2281         * lib/argp.h: Remove __NTH for __argp_usage inline function.
2282
2283 2006-12-28  Jim Meyering  <jim@meyering.net>
2284
2285         * build-aux/announce-gen: Do not assume that the package
2286         builds any of tar.gz, tar.bz2, and .xdelta files.
2287         Suggestion from Simon Josefsson.
2288
2289 2006-12-28  Simon Josefsson  <simon@josefsson.org>
2290
2291         * modules/announce-gen: New file.
2292
2293 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
2294
2295         * lib/mbchar.h: Just include <wctype.h>; the wctype module
2296         handles its gotchas now.
2297         * lib/mbswidth.c: Likewise.
2298         * lib/wcwidth.h: Likewise.
2299         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
2300         and iswcntrl; the wctype module does this stuff now.
2301         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
2302         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
2303         * modules/mbchar (Depends-on): Add wctype.
2304         * modules/mbswidth (Depends-on): Likewise.
2305         * modules/wcwidth (Depends-on): Likewise.
2306
2307 2006-12-27  Eric Blake  <ebb9@byu.net>
2308
2309         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
2310         module uses more than what <wctype.h> is required to provide.
2311
2312 2006-12-26  Eric Blake  <ebb9@byu.net>
2313
2314         * gnulib-tool (sed_extract_prog): Avoid space-tab.
2315
2316 2006-12-26  Eric Blake  <ebb9@byu.net>
2317
2318         * modules/absolute-header: New module.
2319         * modules/fcntl (Depends-on): Depend on it.
2320         * modules/inttypes (Depends-on): Likewise.
2321         * modules/stdint (Depends-on): Likewise.
2322         * modules/sys_stat (Depends-on): Likewise.
2323         * modules/wctype (Depends-on): Likewise.
2324         * MODULES.html.sh (Support for building libraries and
2325         executables): Document it.
2326
2327 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
2328
2329         * gnulib-tool (SED): Remove, undoing previous change.
2330         The problem was that it broke coreutils on Solaris, because
2331         "sed --posix" leaked into a makefile.
2332         (sed): New alias, if 'alias' and GNU sed.
2333
2334 2006-12-24  Jim Meyering  <jim@meyering.net>
2335
2336         Work around an fchownat bug in glibc-2.4:
2337         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
2338         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
2339         in spite of the -P option.
2340         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
2341         New macros.
2342         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
2343         * modules/openat (Files): Add lib/fchownat.c.
2344         * lib/openat.c (fchownat): Don't define here.  Move to...
2345         * lib/fchownat.c: ...this new file.
2346
2347 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
2348
2349         Fix bug reported by Bruno Haible in
2350         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
2351         where quotearg.c didn't compile on Mac OS X 10.2 because it
2352         lacks <wchar.h> and wint_t.
2353         * lib/wctype_.h (__wctype_wint_t): New type.
2354         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
2355         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
2356         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
2357         Arg is now of type __wctype_wint_t, not wint_t.
2358         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
2359         substitute HAVE_WINT_T.
2360         * modules/wctype (Files): Add m4/wint_t.m4.
2361         (wctype.h): Substitute HAVE_WINT_T.
2362
2363 2006-12-23  Bruno Haible  <bruno@clisp.org>
2364
2365         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
2366
2367 2006-12-23  Bruno Haible  <bruno@clisp.org>
2368
2369         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
2370         S_ISLNK.
2371         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
2372         mingw.
2373
2374 2006-12-22  Bruno Haible  <bruno@clisp.org>
2375
2376         * lib/copy-file.c: Include acl.h.
2377         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
2378         Close the file descriptors only after being done with copy_acl.
2379         * modules/copy-file (Depends-on): Add acl.
2380
2381 2006-12-22  Bruno Haible  <bruno@clisp.org>
2382
2383         * gnulib-tool (SED): New variable.
2384         Use $SED instead of sed everywhere.
2385
2386 2006-12-22  Bruno Haible  <bruno@clisp.org>
2387
2388         * modules/no-c++: New file.
2389         * m4/no-c++.m4: New file.
2390         * MODULES.html.sh (Support for building libraries and executables):
2391         Add no-c++.
2392
2393 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
2394
2395         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
2396         Include <limits.h>, and use its INT_MAX to rewrite the
2397         j loop so that it does not overflow 'int'.  Problem reported by
2398         Ralf Wildenhues in
2399         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
2400         Play it safe by shifting left by 1 rather than multiplying by 2,
2401         as GCC is less likely to optimize this away when the value
2402         is signed (when it assumes overflow leads to undefined behavior).
2403         Also, don't assume time_t uses two's complement.
2404
2405 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
2406
2407         * MODULES.html.sh: New module wctype.
2408         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
2409         * lib/fnmatch.c: Don't bother to include <wchar.h> before
2410         <wctype.h>, since the new wctype module should fix this.
2411         * lib/quotearg.c: Include <wctype.h> unconditionally, since
2412         the wctype module should arrange for it.
2413         * lib/regex_internal.h: Likewise.
2414         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
2415         since the wctype module should handle this now.
2416         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
2417         * modules/fnmatch (Depends-on): Add wctype.
2418         * modules/quotearg (Depends-on): Likewise.
2419         * modules/regex (Depends-on): Likewise.
2420
2421 2006-12-19  Bruno Haible  <bruno@clisp.org>
2422
2423         * lib/strdup.h [C++]: Wrap definitions in extern "C".
2424         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
2425
2426 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2427
2428         * modules/savewd (Depends-on): Fix dependency on fcntl.
2429
2430 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
2431
2432         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
2433         conforms to C99, rather than relying on the user's environment
2434         setting of STDINT_H.
2435
2436 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
2437         and Eric Blake  <ebb9@byu.net>
2438
2439         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
2440         This is more consistent with the other defines here.
2441         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
2442         Port to z/OS.  Problem reported by Paul Gilmartin.
2443         Change local vars to use gl_ prefix rather than ac_.
2444         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
2445         with other defines.
2446         * modules/double-slash-root: New module.
2447         * modules/dirname (Files): Remove m4/double-slash-root.m4.
2448         (Depends-on): Add double-slash-root.
2449         * MODULES.html.sh (File system functions): Mention new module.
2450
2451 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
2452
2453         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
2454         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
2455         This is for the benefit of gzip, which doesn't do i18n.
2456
2457 2006-12-12  Jim Meyering  <jim@meyering.net>
2458
2459         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
2460         Reported by Andreas Schwab <schwab@suse.de>.
2461
2462 2006-12-12  Bruno Haible  <bruno@clisp.org>
2463
2464         Merge these changes.
2465         2006-09-05  Bruno Haible  <bruno@clisp.org>
2466         * lib/iconvme.c (iconv_string): No need to save and restore errno when
2467         iconv_alloc succeeded.
2468         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
2469         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
2470         test for " && dest " at the end - dest is always != NULL there. Call
2471         iconv with 4xNULL arguments initially, to reset the state. Call iconv
2472         with 2xNULL arguments, also to flush the state storage. Handle the
2473         IRIX iconv behaviour. Realloc the final result, to throw away unused
2474         memory.
2475
2476 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
2477
2478         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
2479         and fchmodat unconditionally, since glibc 2.4 has them.
2480         Problem reported by Arkadiusz Miskiewicz.
2481
2482 2006-12-10  Bruno Haible  <bruno@clisp.org>
2483
2484         * gnulib-tool (func_import): Show the include files only for those
2485         modules that are copied and specified.
2486         Reported by Karl Berry.
2487
2488 2006-12-08  Jim Meyering  <jim@meyering.net>
2489
2490         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
2491         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
2492
2493         * build-aux/announce-gen: Add two new options, both optional:
2494         --bootstrap-tools=TOOL_LIST
2495               a comma-separated list of tools, e.g.,
2496               autoconf,automake,bison,gnulib
2497         --gnulib-snapshot-date=DATE
2498               if gnulib is in the bootstrap tool list,
2499               then report this as the snapshot date.
2500               If not specified, use the current date/time.
2501               If you specify a date here, be sure it's UTC.
2502
2503 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2504
2505         * tests/test-argp-2.sh: Fix test to match actual output.
2506         (func_compare): Fix sed script to be portable.
2507
2508 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
2509
2510         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
2511         workaround for this case.  It is not autoconfigured now; offhand
2512         it's hard to see how to autoconfigure it.
2513
2514 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
2515
2516         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
2517         a directory that is about to be chowned.  Such a directory's
2518         initial file permissions should permit the owner only and this
2519         should not be changed until after the chown, since the group and
2520         other bits would be incorrect if they granted permission before
2521         the chown.
2522
2523         Fix porting problem for iswctype reported by Georg Schwarz in:
2524         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
2525         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
2526         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
2527         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
2528         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
2529
2530 2006-12-03  Jim Meyering  <jim@meyering.net>
2531
2532         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
2533         p->fts_statp may not yet be defined.
2534         (fts_read): Instead, set it in the caller, once p->fts_statp is
2535         sure to be defined, and corresponds to a top-level directory.
2536         This bug made du -x fail.  Here's the coreutils test case:
2537         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
2538         Reported by Mike Frysinger.
2539
2540 2006-12-01  Jim Meyering  <jim@meyering.net>
2541
2542         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
2543         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
2544         Reported by Simon Josefsson.
2545
2546 2006-11-30  Jim Meyering  <jim@meyering.net>
2547
2548         * m4/warning.m4: Use the all-permissive copyright notice
2549         recommended by RMS (rather than LGPL).
2550         * m4/vararrays.m4: Likewise.
2551         * m4/flexmember.m4: Likewise.
2552
2553 2006-11-29  Bruno Haible  <bruno@clisp.org>
2554
2555         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
2556         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
2557         using +=.
2558         Reported by Simon Josefsson <simon@josefsson.org>.
2559
2560 2006-11-28  James Youngman <jay@gnu.org>
2561
2562         * README: Advise users that they might find the bug-gnulib@gnu.org
2563         and autotools-announce@gnu.org mailing lists useful.
2564
2565 2006-11-28  Bruno Haible  <bruno@clisp.org>
2566
2567         * m4/ptrdiff_max.m4: Remove file.
2568
2569 2006-11-21  Bruno Haible  <bruno@clisp.org>
2570
2571         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
2572         _AC_COMPUTE_INT.
2573         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
2574         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
2575         _AC_COMPUTE_INT.
2576         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
2577         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
2578         _AC_COMPUTE_INT.
2579         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
2580
2581 2006-11-28  Jim Meyering  <jim@meyering.net>
2582
2583         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
2584         warning from "gcc -Wshadow" about shadowing the builtin.
2585
2586 2006-11-27  Bruno Haible  <bruno@clisp.org>
2587
2588         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
2589         _AC_COMPUTE_INT.
2590         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
2591
2592 2006-11-27  Bruno Haible  <bruno@clisp.org>
2593             Paul Eggert  <eggert@cs.ucla.edu>
2594
2595         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
2596
2597 2006-11-26  Bruno Haible  <bruno@clisp.org>
2598
2599         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
2600         noinst_LTLIBRARIES.
2601
2602 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
2603             Bruno Haible  <bruno@clisp.org>
2604
2605         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
2606         if compiling with "gcc -ansi".
2607
2608 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
2609
2610         Fix some incompatibilities with gcc -ansi -pedantic.
2611         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
2612         if compiling pedantically with GCC, unless it's C99 or later.
2613         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
2614         it mishandles gcc -ansi -pedantic as well.
2615         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
2616         if gcc -pedantic.
2617         * lib/regexec.c (check_node_accept_bytes): Don't use auto
2618         initializers for struct if -pedantic, unless it's C99 or later.
2619
2620 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
2621
2622         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
2623         Don't close an fd more than once. Identical atimes indicate
2624         success, not failure.
2625
2626 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
2627
2628         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
2629
2630 2006-11-23  Jim Meyering  <jim@meyering.net>
2631
2632         * build-aux/announce-gen: New file.  From coreutils.
2633
2634 2006-11-22  Jim Meyering  <jim@meyering.net>
2635
2636         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
2637         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
2638         (fts_read): Use a temporary to narrow the overused st_size member
2639         before using it in a switch statement.  Reported by Matthew Woehlke.
2640
2641         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
2642         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
2643
2644 2006-11-20  Bruno Haible  <bruno@clisp.org>
2645
2646         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
2647         changequote instead of pairs of brackets.
2648         Reported by Andreas Schwab <schwab@suse.de>.
2649
2650 2006-11-21  Jim Meyering  <jim@meyering.net>
2651
2652         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
2653         so as to remain compatible with older compilers.
2654         Patch from Michael Deutschmann.
2655
2656 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
2657
2658         * MODULES.html.sh (File system functions): Add openat.
2659
2660         * lib/openat.h (rpl_fstatat): New macro, if
2661         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
2662         (fstatat): Define to rpl_fstatat under the same conditions,
2663         unless COMPILING_FSTATAT.
2664         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
2665         seems to have the bug.
2666         * lib/fstatat.c: New file.
2667         * modules/openat (Files): Add it.
2668
2669 2006-11-20  Bruno Haible  <bruno@clisp.org>
2670
2671         * Makefile: New file.
2672
2673 2006-11-20  Jim Meyering  <jim@meyering.net>
2674
2675         The beginnings of syntax-related checks for gnulib.
2676         * lib/Makefile: New file.
2677         * lib/t-idcache: New script.  Ensure that the two halves of
2678         idcache.c stay in sync.
2679
2680         * lib/idcache.c: Adjust comments in user- and group- portions to
2681         be more accurate, and to be consistent with one another.
2682
2683 2006-11-20  Jim Meyering  <jim@meyering.net>
2684
2685         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
2686         continue using the flexible array member (thus, this module performs
2687         half as many malloc calls), with the addition that...
2688         (getgroup, getuser): Consistently record a non-match via an empty
2689         "name" string, and map an empty string match to a NULL return value.
2690         * modules/idcache (Depends-on): Re-add flexmember.
2691
2692         * lib/idcache.c (getuser): Remove all uses of the register keyword.
2693         (getuidbyname, getgroup, getgidbyname): Likewise.
2694
2695         Use cleaner syntax: NULL rather than 0.
2696         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
2697
2698 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
2699
2700         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
2701         It mishandled the case where the group was missing.
2702         Problem reported by Greg Schafer.
2703         * modules/idcache: Likewise.
2704
2705 2006-11-18  Jim Meyering  <jim@meyering.net>
2706
2707         * check-module (%exempt_header): Add exception for some
2708         conditionally-included headers.
2709
2710         * modules/i-ring (Depends-on): Add verify.
2711         (License): Change to LGPL.
2712
2713 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
2714
2715         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
2716         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
2717         and inttostr.h.  Use snprintf rather than uinttostr, so that
2718         LGPLed code doesn't depend on GPLed.
2719
2720 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
2721
2722         * modules/inline (License): Change from GPL to LGPL.
2723
2724 2006-11-17  Jim Meyering  <jim@meyering.net>
2725
2726         * modules/d-type (License): Switch to LGPL.
2727
2728 2006-11-15  Bruno Haible  <bruno@clisp.org>
2729
2730         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
2731
2732 2006-11-15  Eric Blake  <ebb9@byu.net>
2733
2734         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
2735         the module dependency.
2736
2737 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
2738             Bruno Haible  <bruno@clisp.org>
2739
2740         * gnulib-tool (func_create_testdir): Add license consistency check.
2741
2742 2006-11-15  Eric Blake  <ebb9@byu.net>
2743
2744         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
2745         random "(cached)" in configure output.
2746
2747 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2748
2749         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
2750         test for conforming inttypes.h is both announced and cached.
2751
2752         * MODULES.html.sh (seen_modules, seen_files): New variables.
2753         (func_module): Rewrite to use a few less gnulib-tool and sed
2754         invocations.  Avoid a couple of quadratic algorithms for ...
2755         (missed_modules, missed_files): ... these, with ...
2756         (func_append, func_tmpdir): ... these new functions, from
2757         gnulib-tool.  Analogously, install traps for cleanup.
2758
2759         * tests/test-gc.c (main): Remove unused variables.
2760         * tests/test-read-file.c: Include stdlib.h, for 'free'.
2761
2762 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
2763
2764         * modules/inttostr (License): Change to LGPL.
2765
2766 2006-11-14  Eric Blake  <ebb9@byu.net>
2767
2768         * modules/tempname (License): Change to LGPL.
2769
2770 2006-11-14  Eric Blake  <ebb9@byu.net>
2771
2772         * doc/functions.texi (Function Portability): *printf functions on
2773         Cygwin now understand all POSIX size specifiers.
2774
2775 2006-11-14  Bruno Haible  <bruno@clisp.org>
2776
2777         * modules/c-ctype (License): Change to LGPL.
2778
2779 2006-11-12  Bruno Haible  <bruno@clisp.org>
2780
2781         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
2782         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
2783         for GNOME libraries, for which the include files are installed in
2784         subdirectories of $prefix/include.
2785
2786 2006-11-12  Bruno Haible  <bruno@clisp.org>
2787
2788         * m4/lib-link.m4: Require at least autoconf-2.54.
2789         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
2790         name to underscores for the --with option.
2791
2792 2006-11-13  Bruno Haible  <bruno@clisp.org>
2793
2794         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
2795         the tests directory.
2796         Reported by Ralf Wildenhues.
2797
2798 2006-11-13  Bruno Haible  <bruno@clisp.org>
2799
2800         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
2801         (func_emit_initmacro_end): Undo the override here.
2802         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
2803         Works around the famous automake error in coreutils.
2804
2805 2006-11-13  Eric Blake  <ebb9@byu.net>
2806
2807         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
2808         element, not its node.
2809
2810 2006-11-12  Bruno Haible  <bruno@clisp.org>
2811
2812         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
2813         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
2814
2815 2006-11-12  Bruno Haible  <bruno@clisp.org>
2816
2817         * gnulib-tool: New option --local-symlink.
2818         (func_usage): Document it.
2819         (lsymbolic): New variable.
2820         (func_import, func_create_testdir): If --symlink was not specified,
2821         test whether --local-symlink was specified and the file comes from
2822         the local_gnulib_dir.
2823
2824 2006-11-12  Bruno Haible  <bruno@clisp.org>
2825
2826         * gnulib-tool (func_ln): New function.
2827         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
2828
2829 2006-11-12  Bruno Haible  <bruno@clisp.org>
2830
2831         Finish support for source files in subdirectories.
2832         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
2833         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
2834         AUTOMAKE_OPTIONS.
2835         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
2836
2837 2006-11-12  Bruno Haible  <bruno@clisp.org>
2838
2839         * gnulib-tool (func_get_automake_snippet): Synthesize also an
2840         EXTRA_lib_SOURCES augmentation.
2841         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
2842
2843 2006-11-12  Jim Meyering  <jim@meyering.net>
2844
2845         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
2846         file descriptors.  This also averts a failure on systems with
2847         native openat support when a traversed directory lacks "x" access.
2848         * lib/fts_.h: Include "i-ring.h"
2849         (struct FTS) [fts_fd_ring]: New member.
2850         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
2851         (FCHDIR): Add parentheses.
2852         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
2853         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
2854         When descending, rather than simply closing the previous
2855         fts_cwd_fd value, push that file descriptor onto the ring.
2856         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
2857         (fts_open): Initialize the new fd_ring member.
2858         (fts_close): Clear the ring.
2859         (fts_safe_changedir): When possible, use our new fd_ring to skip
2860         the diropen and fstat and dev/ino comparison that would normally
2861         accompany a virtual `chdir ("..")'.
2862
2863         * modules/fts (Depends-on): Add i-ring.
2864         * modules/i-ring: New module.
2865         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
2866         * m4/i-ring.m4: New file.
2867
2868 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2869
2870         * gnulib-tool (func_create_testdir): Fix replacement of
2871         `build-aux' in configure.ac.  Run autotools in gltests
2872         subdirectory.
2873         (func_create_testdir, func_create_megatestdir, test): There is
2874         no need for '--force' in most autotool invocations in a new
2875         tree.  Actually fail the whole test if any of the tools, or the
2876         configure or make stages fail.
2877
2878         Sync from Automake.
2879         * build-aux/gnupload: Revert last change.  Add pointer to upload
2880         instructions of the GNU Maintenance Instructions.
2881         Suggestion by Karl Berry.
2882
2883 2006-11-10  Jim Meyering  <jim@meyering.net>
2884
2885         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
2886
2887 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
2888
2889         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
2890         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
2891         (bind_textdomain_codeset) [! ENABLE_NLS]:
2892         Evaluate all the arguments.  That way, callers get compatible behavior
2893         if the arguments have side effects.  Also, it avoids some GCC
2894         diagnostics in some cases; Joel E. Denny reported problems when Bison
2895         was configured with --enable-gcc-warnigs.
2896
2897 2006-11-10  Jim Meyering  <jim@meyering.net>
2898
2899         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
2900         relevant options in CFLAGS (like -O, -fno-inline) are taken into
2901         account.
2902
2903 2006-11-10  Jim Meyering  <jim@meyering.net>
2904
2905         * modules/inline: New file/module.
2906         * modules/xalloc (Files): Remove m4/inline.m4.
2907         (Depends-on): Add inline, instead.
2908         * modules/oset: Likewise.
2909         * modules/list: Likewise.
2910
2911 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
2912
2913         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
2914         Problem reported by Matthew Woehlke.
2915
2916 2006-11-09  Bruno Haible  <bruno@clisp.org>
2917
2918         * lib/tempname.c (gen_tempname): Remove variant that invokes
2919         __gen_tempname.
2920         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
2921         __gen_tempname.
2922
2923 2006-11-08  Bruno Haible  <bruno@clisp.org>
2924
2925         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
2926         to 'yes' instead of 'cross-compiling'.
2927
2928 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
2929
2930         * lib/quotearg.h (quotearg_free): New decl.
2931         * lib/quotearg.c (quotearg_free): New function.
2932         (slot0, nslots, slotvec0, slotvec):
2933         Now file-scope so that quotearg_free can get at them.
2934
2935 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2936
2937         Sync from Automake.
2938         * build-aux/gnupload: Add missing 'gnu' to example URL.
2939         Report by Karl Berry.
2940
2941 2006-11-08  Bruno Haible  <bruno@clisp.org>
2942
2943         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
2944         Suggested by Paul Eggert.
2945
2946 2006-11-08  Jim Meyering  <jim@meyering.net>
2947
2948         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
2949         It's already included if !_LIBC.
2950         (fts_safe_changedir): Add a comment.
2951
2952 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
2953
2954         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
2955         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
2956         Matthew Woehlke.
2957
2958         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
2959         definitions up, to avoid colliding with change below.
2960         (static_inline) [HAVE_INLINE]: New macro.
2961         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
2962         Provide extern decls when !HAVE_INLINE.  Do not define unless
2963         static_inline is defined, either by us or by xmalloc.c.  Use
2964         static_inline rather than static inline.
2965         (XCALLOC): Optimize sizeof(T) = 1 case.
2966         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
2967
2968 2006-11-07  Bruno Haible  <bruno@clisp.org>
2969
2970         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
2971         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
2972         AC_C_INLINE.
2973         * modules/xalloc (Files): Add m4/inline.m4.
2974
2975 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2976
2977         * README: Fix typo.
2978         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
2979         (Miscellanous Notes): ...from this.
2980
2981 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
2982
2983         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
2984         Mention that offsetof should be used instead of sizeof.
2985         From Bruno Haible.
2986
2987 2006-11-07  Bruno Haible  <bruno@clisp.org>
2988
2989         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
2990
2991 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
2992
2993         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
2994         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
2995         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
2996         (gl_tree_add_before, gl_tree_add_after):
2997         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
2998         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
2999         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
3000         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
3001         (gl_linked_add_after, gl_linked_add_at): Likewise.
3002         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
3003         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
3004         (gl_tree_add_before, gl_tree_add_after): Likewise.
3005         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
3006         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
3007         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
3008
3009 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3010
3011         * lib/gl_oset.h: Use C comment style, not C++ comment style.
3012
3013 2006-11-06  Bruno Haible  <bruno@clisp.org>
3014
3015         * m4/inline.m4: New file.
3016         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
3017         * modules/list (Files): Add m4/inline.m4.
3018         * modules/oset (Files): Likewise.
3019
3020 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
3021
3022         * lib/idcache.c: Include <stddef.h>, for offsetof.
3023         (struct userid.name): Change from char * to a flexible array member.
3024         All uses changed.
3025         * modules/idcache (Depends-on): Add flexmember.
3026
3027         * MODULES.html.sh (Core language properties): New module flexmember.
3028         * modules/flexmember, m4/flexmember.m4: New files.
3029
3030         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
3031         inline functions that are identical with the old xnmalloc_inline,
3032         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
3033         that we can avoid some unnecessary integer multiplications and
3034         divisions in the common case where the element size is known at
3035         compile time.
3036         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
3037         needed.
3038         (xnboundedmalloc): Remove.
3039         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
3040         arguments, for consistency with rest of this header.
3041         (xcharalloc): Rewrite using XNMALLOC.
3042         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
3043         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
3044         versions have been moved to lib/xalloc.h and renamed to be the
3045         non-*_inline versions.
3046         (xmalloc, xrealloc): Implement without reference to the xnmalloc
3047         and xnrealloc functions, since those functions are now inline and
3048         now call us.
3049         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
3050         renaming described above.
3051         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
3052         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
3053         captures the dependency in AC_C_INLINE.
3054
3055         New module canonicalize-lgpl, proposed by Charles Wilson in
3056         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
3057         with a few small changes afterwards.
3058         * MODULES.html.sh (File system functions): New module
3059         canonicalize-lgpl.
3060         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
3061         and canonicalize_file_name.
3062         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
3063         * modules/canonicalize-lgpl: New files.
3064
3065 2006-11-05  Bruno Haible  <bruno@clisp.org>
3066
3067         * gnulib-tool (func_import, func_create_testdir): Create directories
3068         also for files in subdirectories of lib/.
3069
3070 2006-11-05  Bruno Haible  <bruno@clisp.org>
3071
3072         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
3073         ANSI C compliant.
3074
3075 2006-11-03  Bruno Haible  <bruno@clisp.org>
3076
3077         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
3078         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
3079         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
3080         (xnboundedmalloc): New inline function.
3081         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
3082         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
3083         xmalloc.
3084         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
3085         xmalloc.
3086         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
3087         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
3088         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
3089         xmalloc.
3090         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
3091         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
3092         xmalloc.
3093         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
3094         gl_tree_add_after): Use XMALLOC instead of xmalloc.
3095         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
3096         xmalloc.
3097         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
3098         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
3099         gl_tree_add_after): Use XMALLOC instead of xmalloc.
3100         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
3101         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
3102         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
3103         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
3104
3105 2006-11-03  Bruno Haible  <bruno@clisp.org>
3106
3107         * lib/c-ctype.h [C++]: Define functions without name mangling.
3108         * lib/fwriteerror.h [C++]: Likewise.
3109         * lib/gcd.h [C++]: Likewise.
3110         * lib/linebreak.h [C++]: Likewise.
3111
3112 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
3113
3114         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
3115         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
3116         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
3117         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
3118         Check for functions and headers just once.
3119         Check for declaration of canonicalize_file_name.
3120         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
3121
3122 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
3123
3124         * gnulib-tool (func_import): Fix typo in actioncmd.
3125
3126 2006-11-02  Bruno Haible  <bruno@clisp.org>
3127
3128         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
3129         newline sequence in the Makefile.am snippet as a space, like "make"
3130         does.
3131         Reported by Roger Persson <perrog@gmail.com>.
3132
3133 2006-11-01  Bruno Haible  <bruno@clisp.org>
3134
3135         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
3136         already declared in <string.h>.
3137         * lib/strcase.h (strncasecmp): Don't declare it if yes.
3138
3139 2006-11-01  Bruno Haible  <bruno@clisp.org>
3140
3141         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
3142         * lib/strcase.h: Include <string.h>.
3143         (strcasecmp): Define to rpl_strcasecmp here.
3144
3145 2006-11-01  Bruno Haible  <bruno@clisp.org>
3146
3147         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
3148
3149 2006-11-01  Eric Blake  <ebb9@byu.net>
3150
3151         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
3152
3153         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
3154
3155 2006-10-29  Bruno Haible  <bruno@clisp.org>
3156
3157         Make it compile in C++ mode.
3158         * lib/full-write.c (full_rw): Add a cast.
3159
3160 2006-11-01  Bruno Haible  <bruno@clisp.org>
3161
3162         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
3163         be POSIX compliant.
3164         Reported by Roger Persson <perrog@gmail.com>.
3165
3166 2006-11-01  Eric Blake  <ebb9@byu.net>
3167
3168         * lib/getopt_.h: Fix comments.
3169
3170 2006-10-31  Eric Blake  <ebb9@byu.net>
3171
3172         * modules/tmpdir (Depends-on): Add sys_stat.
3173         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
3174         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
3175         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
3176         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
3177         tempname.
3178
3179 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
3180
3181         Avoid some C++ diagnostics reported by Bruno Haible.
3182         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
3183         xmalloc.
3184         (quotearg_alloc): Use xcharalloc rather than xmalloc.
3185         (struct slotvec): Move to top level.
3186         (quotearg_n_options): Rewrite to avoid xmalloc.
3187         * lib/xalloc.h (xcharalloc): New function.
3188         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
3189         [defined __cplusplus]: Add function template that provides result
3190         type propagation.  This part of the change is from Bruno Haible.
3191
3192 2006-10-29  Bruno Haible  <bruno@clisp.org>
3193
3194         Make it compile in C++ mode.
3195         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
3196         * lib/strnlen1.c (strnlen1): Cast memchr result.
3197         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
3198         * lib/clean-temp.c (string_equals, string_hash): Add casts.
3199         (create_temp_dir): Rename local variable 'template'.
3200         (compile_csharp_using_sscli): Add cast.
3201         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
3202         * lib/findprog.c (find_in_path): Likewise.
3203         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
3204         * lib/wait-process.c (register_slave_subprocess): Likewise.
3205
3206 2006-10-22  Bruno Haible  <bruno@clisp.org>
3207
3208         * modules/tsearch: New file.
3209         * lib/tsearch.h: New file.
3210         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
3211         * m4/tsearch.m4: New file.
3212         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
3213
3214 2006-10-29  Eric Blake  <ebb9@byu.net>
3215
3216         * lib/arcfour.c: Assume config.h.
3217         * lib/arctwo.c: Likewise.
3218         * lib/base64.c: Likewise.
3219         * lib/check-version.c: Likewise.
3220         * lib/crc.c: Likewise.
3221         * lib/des.c: Likewise.
3222         * lib/gc-gnulib.c: Likewise.
3223         * lib/gc-libgcrypt.c: Likewise.
3224         * lib/gc-pbkdf2-sha1.c: Likewise.
3225         * lib/getaddrinfo.c: Likewise.
3226         * lib/getdelim.c: Likewise.
3227         * lib/getline.c: Likewise.
3228         * lib/hmac-md5.c: Likewise.
3229         * lib/hmac-sha1.c: Likewise.
3230         * lib/iconvme.c: Likewise.
3231         * lib/md2.c: Likewise.
3232         * lib/md4.c: Likewise.
3233         * lib/memxor.c: Likewise.
3234         * lib/read-file.c: Likewise.
3235         * lib/readline.c: Likewise.
3236         * lib/rijndael-alg-fst.c: Likewise.
3237         * lib/rijndael-api-fst.c: Likewise.
3238         * lib/xgetdomainname.c: Likewise.
3239
3240 2006-10-28  Eric Blake  <ebb9@byu.net>
3241
3242         * lib/xstrndup.c: Assume config.h.
3243
3244 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
3245
3246         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
3247         stat-macros.h is now for our own macros, whereas stat_h is for
3248         macros in the <sys/stat.h> name space.
3249         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
3250         (STAT_MACROS_H): Remove.
3251         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
3252         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
3253         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
3254         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
3255         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
3256         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
3257         Move these macros to ...
3258         * lib/stat_.h: here.  Don't include stat-macros.h.
3259         * lib/canonicalize.c: Don't include stat-macros.h.
3260         * lib/chown.c: Likewise.
3261         * lib/euidaccess.c: Likewise.
3262         * lib/file-type.c: Likewise.
3263         * lib/filemode.c: Likewise.
3264         * lib/glob.c: Likewise.
3265         * lib/isapipe.c: Likewise.
3266         * lib/lchown.c: Likewise.
3267         * lib/lstat.c: Likewise.
3268         * lib/mkdir-p.c: Likewise.
3269         * lib/rmdir.c: Likewise.
3270         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
3271         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
3272         unless mkdir isn't declared, to speed up 'configure'.
3273         Always create sys/stat.h, since it's unlikely any real sys/stat.h
3274         would define all the S_* symbols.
3275         * modules/canonicalize (Depends-on):
3276         Depend on sys_stat, not stat-macros.
3277         * modules/chown: Likewise.
3278         * modules/euidaccess: Likewise.
3279         * modules/filemode: Likewise.
3280         * modules/file-type: Likewise.
3281         * modules/glob: Likewise.
3282         * modules/isapipe: Likewise.
3283         * modules/lchown: Likewise.
3284         * modules/lstat: Likewise.
3285         * modules/mkancesdirs: Likewise.
3286         * modules/rmdir: Likewise.
3287         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
3288         * modules/modechange: Likewise.
3289         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
3290         (configure.ac): Remove gl_STAT_MACROS.
3291         * modules/sys_stat (Depends-on): Remove stat-macros.
3292
3293 2006-10-27  Bruno Haible  <bruno@clisp.org>
3294
3295         * m4/signed.m4: Remove file.
3296         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
3297         invocation.
3298         * modules/vasnprintf (Files): Remove m4/signed.m4.
3299
3300 2006-10-27  Bruno Haible  <bruno@clisp.org>
3301
3302         Update to GNU gettext 0.16.
3303         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
3304         m4/inttypes-h.m4, m4/signed.m4.
3305         * m4/gettext.m4: Update to GNU gettext 0.16.
3306         * m4/intl.m4: New file, from GNU gettext.
3307         * m4/intldir.m4: New file, from GNU gettext.
3308         * config/srclist.txt: Update
3309
3310 2006-10-27  Eric Blake  <ebb9@byu.net>
3311
3312         * MODULES.html.sh: Document tempname.
3313         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
3314         dependencies.
3315         (Files): Move lib/tempname.c...
3316         * modules/tempname: ...to this new module.
3317         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
3318         (gl_PREREQ_TEMPNAME): Move...
3319         * m4/tempname.m4: ...to this new file.
3320         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
3321         * modules/sys_stat (Depends-on): Add stat-macros.
3322         * lib/stat_.h (includes): Pick up stat macros.
3323         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
3324         if stat macros are broken.
3325         * lib/tempname.c (includes): No need to include "stat-macros.h".
3326         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
3327         (direxists, __path_search) [!_LIBC]: Don't compile these in
3328         gnulib; the tmpdir module covers that.
3329         * lib/tempname.h: New file.
3330
3331 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
3332
3333         * COPYING: Explain how gnulib-tool converts licence headers.
3334         Almost all wording by Eric Blake.
3335
3336 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
3337
3338         * lib/mbchar.h (is_basic_table): Make read-only.
3339         * lib/mbchar.c (is_basic_table): Likewise.
3340         Reported by John Darrington.
3341
3342 2006-10-25  Bruno Haible  <bruno@clisp.org>
3343
3344         * lib/progname.h (set_program_name): Undefine before defining.
3345
3346 2006-10-25  Bruno Haible  <bruno@clisp.org>
3347
3348         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
3349         false for non-gcc C++ compilers.
3350         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
3351
3352 2006-10-24  Bruno Haible  <bruno@clisp.org>
3353
3354         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
3355         iconv implementations like Irix iconv.
3356
3357 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
3358
3359         * modules/vararrays: New file.
3360         * m4/vararrays.m4: New file, taken from diffutils.
3361         * MODULES.html.sh: New module vararrays.
3362
3363 2006-10-24  Karl Berry  <karl@gnu.org>
3364
3365         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
3366         Don't call GNU Unix.
3367
3368 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3369
3370         * users.txt: Add Libtool.
3371
3372         Sync from Libtool:
3373
3374         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
3375
3376         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
3377         to gnulib's policy of including config.h unconditionally.
3378
3379 2006-10-24  Bruno Haible  <bruno@clisp.org>
3380
3381         * modules/wcwidth (Files): Add m4/wint_t.m4.
3382         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
3383         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
3384
3385 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
3386
3387         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
3388         to pacify GCC with some -W flags enabled.  Problem reported by
3389         Bruno Haible.
3390
3391 2006-10-24  Jim Meyering  <jim@meyering.net>
3392
3393         * MODULES.html.sh: Remove uinttostr.  It's not a module.
3394         Reported by Karl Berry.
3395
3396 2006-10-23  Bruno Haible  <bruno@clisp.org>
3397
3398         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
3399
3400 2006-10-24  Bruno Haible  <bruno@clisp.org>
3401
3402         * lib/gl_list.h: Use C comment style, not C++ comment style.
3403
3404 2006-10-23  Eric Blake  <ebb9@byu.net>
3405
3406         * lib/getaddrinfo.c (includes): Add missing include.
3407
3408 2006-10-23  Bruno Haible  <bruno@clisp.org>
3409             Paul Eggert  <eggert@cs.ucla.edu>
3410
3411         Ability to rename obstack_free.
3412         * lib/obstack.h (__obstack_free): New macro. Declare instead of
3413         obstack_free.
3414         (obstack_free): Invoke the __obstack_free macro.
3415         * lib/obstack.c (obstack_free): Use __obstack_free macro.
3416
3417 2006-10-23  Bruno Haible  <bruno@clisp.org>
3418             Paul Eggert  <eggert@cs.ucla.edu>
3419
3420         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
3421         __argc, __argv from the declaration. (They are defined as macros on
3422         mingw.)
3423
3424 2006-10-22  Bruno Haible  <bruno@clisp.org>
3425
3426         * doc/gnulib-intro.texi: New file.
3427         * doc/gnulib.texi: Include it.
3428
3429 2006-10-21  Bruno Haible  <bruno@clisp.org>
3430
3431         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
3432         "Introduction", "Miscellanous Notes", "Particular Modules".
3433
3434 2006-10-21  Bruno Haible  <bruno@clisp.org>
3435
3436         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
3437         Change mostlyclean-local rule to avoid sh syntax error from bash
3438         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
3439
3440 2006-10-23  Jim Meyering  <jim@meyering.net>
3441
3442         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
3443         in place of snprintf.
3444
3445         * modules/inttostr (Files): Add lib/uinttostr.c.
3446         * lib/uinttostr.c (inttostr): New file/function.
3447         * lib/inttostr.h (uinttostr): Declare.
3448         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
3449         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
3450         Add uinttostr.
3451         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
3452
3453 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
3454
3455         * lib/canonicalize.c (ELOOP): Define if not already defined.
3456         Problem reported by Bruno Haible in
3457         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
3458
3459 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
3460
3461         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
3462         Problem reported by Perry Smith and Ville Laurikari.
3463
3464         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
3465         uses.
3466
3467 2006-10-19  Bruno Haible  <bruno@clisp.org>
3468
3469         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
3470         for mingw.
3471
3472 2006-10-19  Bruno Haible  <bruno@clisp.org>
3473
3474         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
3475         Needed for mingw.
3476
3477 2006-10-19  Bruno Haible  <bruno@clisp.org>
3478
3479         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
3480
3481 2006-10-19  Bruno Haible  <bruno@clisp.org>
3482
3483         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
3484         it.
3485
3486 2006-10-19  Bruno Haible  <bruno@clisp.org>
3487
3488         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
3489         invocation.
3490
3491 2006-10-19  Bruno Haible  <bruno@clisp.org>
3492
3493         * gnulib-tool (func_create_testdir): Don't include ftruncate and
3494         mountlist by default.
3495
3496 2006-10-16  Bruno Haible  <bruno@clisp.org>
3497
3498         * lib/c-strstr.c: Include c-strstr.h.
3499
3500 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
3501
3502         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
3503         in a slash.
3504
3505 2006-10-18  Bruno Haible  <bruno@clisp.org>
3506
3507         * lib/lock.h [C++]: Wrap definitions in extern "C".
3508
3509 2006-10-18  Bruno Haible  <bruno@clisp.org>
3510
3511         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
3512         gl_LIBOBJS list.
3513
3514 2006-10-18  Bruno Haible  <bruno@clisp.org>
3515
3516         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
3517
3518 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
3519
3520         * lib/xstrtol.h: Include gettext.h.
3521         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
3522         Problem reported by Eric Blake.
3523         * modules/xstrtol (Depends-on): Add gettext-h.
3524
3525 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
3526
3527         * lib/strftime.c (advance): New macro.
3528         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
3529         incomplete type, so you can't add 0 to it.  Problem and patch
3530         reported by Eelco Dolstra for dietlibc.
3531
3532 2006-10-18  Jim Meyering  <jim@meyering.net>
3533
3534         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
3535         type for a local, and rename it: s/up/user_proc/.
3536
3537 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
3538
3539         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
3540         READ_UTMP_USER_PROCESS.
3541         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
3542
3543 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
3544
3545         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
3546         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
3547
3548 2006-10-17  Eric Blake  <ebb9@byu.net>
3549
3550         * lib/sigprocmask.c (sigprocmask): Fix typo.
3551
3552         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
3553
3554         * modules/clean-temp (Makefile.am): Don't add to make output...
3555         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
3556         config.h.
3557
3558 2006-10-17  Bruno Haible  <bruno@clisp.org>
3559
3560         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
3561         differently if DEFAULT_TEXT_DOMAIN is set.
3562
3563 2006-10-16  Bruno Haible  <bruno@clisp.org>
3564
3565         * lib/clean-temp.c: Include fwriteerror.h.
3566
3567 2006-10-16  Bruno Haible  <bruno@clisp.org>
3568
3569         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
3570
3571 2006-10-16  Bruno Haible  <bruno@clisp.org>
3572
3573         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
3574         * lib/sigprocmask.h: Include <sys/types.h>.
3575         (sigset_t): Use the system's definition if present.
3576
3577 2006-10-17  Eric Blake  <ebb9@byu.net>
3578
3579         * lib/xvasprintf.c (includes): Assume config.h.
3580         * lib/xasprintf.c (includes): Likewise.
3581
3582 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
3583
3584         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
3585         at least as wide as intmax_t.
3586
3587 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
3588
3589         (Imported from Automake.)
3590         * build-aux/gnupload: Update to version 1.1 of directive file.
3591
3592 2006-10-16  Eric Blake  <ebb9@byu.net>
3593
3594         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
3595         match Automake 1.10a.
3596
3597 2006-10-14  Bruno Haible  <bruno@clisp.org>
3598
3599         * modules/sigprocmask: New file.
3600         * lib/sigprocmask.h: New file.
3601         * lib/sigprocmask.c: New file.
3602         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
3603         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
3604         request sigprocmask.o.
3605         (gl_PREREQ_SIGPROCMASK): New macro.
3606         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
3607         (Depends-on): Add sigprocmask.
3608         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
3609         gt_SIGNALBLOCKING. Test for 'raise' only once.
3610         * lib/fatal-signal.c: Include sigprocmask.h.
3611         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
3612         unblock_fatal_signals): Define always.
3613         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
3614         sigprocmask.
3615
3616 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
3617
3618         Sync from Automake.
3619         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
3620         which incorrectly sets the mode of an existing destination
3621         directory.  In some cases the unpatched install-sh could do the
3622         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
3623         system.  We hope this is rare in practice, but it's clearly worth
3624         fixing.  Problem reported by Alex Unleashed in
3625         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
3626         Also, don't bother to check for -m bugs unless we're using -m;
3627         suggested by Stepan Kasal.
3628
3629 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3630
3631         Sync from Automake.
3632         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
3633         `-c' flag, so they appear at the same position as in %FASTDEP%
3634         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
3635         which ignores unknown options only after the first non-option.
3636         Bug report against M4 by Nelson H. F. Beebe.
3637
3638 2006-10-13  Jim Meyering  <jim@meyering.net>
3639
3640         Fix a bug in yesterday's change.
3641         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
3642         p->fts_statp->st_dev would be used uninitialized.
3643         Ensures that we always call fts_stat on the very first entry.
3644         Miklos Szeredi reported that find -xdev stopped working.
3645
3646 2006-10-12  Bruno Haible  <bruno@clisp.org>
3647
3648         * gnulib-tool (func_get_automake_snippet): Append an automatically
3649         computed EXTRA_DIST augmentation.
3650         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
3651         * modules/alloca-opt (Makefile.am): Likewise.
3652         * modules/allocsa (Makefile.am): Likewise.
3653         * modules/arcfour (Makefile.am): Likewise.
3654         * modules/arctwo (Makefile.am): Likewise.
3655         * modules/argmatch (Makefile.am): Likewise.
3656         * modules/argz (Makefile.am): Likewise.
3657         * modules/atexit (Makefile.am): Likewise.
3658         * modules/backupfile (Makefile.am): Likewise.
3659         * modules/byteswap (Makefile.am): Likewise.
3660         * modules/c-strtod (Makefile.am): Likewise.
3661         * modules/c-strtold (Makefile.am): Likewise.
3662         * modules/calloc (Makefile.am): Likewise.
3663         * modules/canon-host (Makefile.am): Likewise.
3664         * modules/canonicalize (Makefile.am): Likewise.
3665         * modules/chdir-long (Makefile.am): Likewise.
3666         * modules/chdir-safer (Makefile.am): Likewise.
3667         * modules/check-version (Makefile.am): Likewise.
3668         * modules/chown (Makefile.am): Likewise.
3669         * modules/cloexec (Makefile.am): Likewise.
3670         * modules/close-stream (Makefile.am): Likewise.
3671         * modules/closeout (Makefile.am): Likewise.
3672         * modules/crc (Makefile.am): Likewise.
3673         * modules/csharpexec (Makefile.am): Likewise.
3674         * modules/cycle-check (Makefile.am): Likewise.
3675         * modules/des (Makefile.am): Likewise.
3676         * modules/dev-ino (Makefile.am): Likewise.
3677         * modules/dirfd (Makefile.am): Likewise.
3678         * modules/dirname (Makefile.am): Likewise.
3679         * modules/dup2 (Makefile.am): Likewise.
3680         * modules/eealloc (Makefile.am): Likewise.
3681         * modules/error (Makefile.am): Likewise.
3682         * modules/euidaccess (Makefile.am): Likewise.
3683         * modules/exclude (Makefile.am): Likewise.
3684         * modules/exitfail (Makefile.am): Likewise.
3685         * modules/fcntl-safer (Makefile.am): Likewise.
3686         * modules/fcntl (Makefile.am): Likewise.
3687         * modules/file-type (Makefile.am): Likewise.
3688         * modules/fileblocks (Makefile.am): Likewise.
3689         * modules/filemode (Makefile.am): Likewise.
3690         * modules/filenamecat (Makefile.am): Likewise.
3691         * modules/fnmatch (Makefile.am): Likewise.
3692         * modules/fopen-safer (Makefile.am): Likewise.
3693         * modules/fpending (Makefile.am): Likewise.
3694         * modules/fprintftime (Makefile.am): Likewise.
3695         * modules/free (Makefile.am): Likewise.
3696         * modules/fsusage (Makefile.am): Likewise.
3697         * modules/ftruncate (Makefile.am): Likewise.
3698         * modules/fts (Makefile.am): Likewise.
3699         * modules/gc-arcfour (Makefile.am): Likewise.
3700         * modules/gc-des (Makefile.am): Likewise.
3701         * modules/gc-hmac-md5 (Makefile.am): Likewise.
3702         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
3703         * modules/gc-md4 (Makefile.am): Likewise.
3704         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
3705         * modules/gc-sha1 (Makefile.am): Likewise.
3706         * modules/gc (Makefile.am): Likewise.
3707         * modules/getaddrinfo (Makefile.am): Likewise.
3708         * modules/getcwd (Makefile.am): Likewise.
3709         * modules/getdelim (Makefile.am): Likewise.
3710         * modules/getdomainname (Makefile.am): Likewise.
3711         * modules/getgroups (Makefile.am): Likewise.
3712         * modules/gethostname (Makefile.am): Likewise.
3713         * modules/gethrxtime (Makefile.am): Likewise.
3714         * modules/getline (Makefile.am): Likewise.
3715         * modules/getloadavg (Makefile.am): Likewise.
3716         * modules/getlogin_r (Makefile.am): Likewise.
3717         * modules/getndelim2 (Makefile.am): Likewise.
3718         * modules/getopt (Makefile.am): Likewise.
3719         * modules/getpagesize (Makefile.am): Likewise.
3720         * modules/getpass-gnu (Makefile.am): Likewise.
3721         * modules/getpass (Makefile.am): Likewise.
3722         * modules/getsubopt (Makefile.am): Likewise.
3723         * modules/gettime (Makefile.am): Likewise.
3724         * modules/gettimeofday (Makefile.am): Likewise.
3725         * modules/getugroups (Makefile.am): Likewise.
3726         * modules/getusershell (Makefile.am): Likewise.
3727         * modules/glob (Makefile.am): Likewise.
3728         * modules/group-member (Makefile.am): Likewise.
3729         * modules/hard-locale (Makefile.am): Likewise.
3730         * modules/hash (Makefile.am): Likewise.
3731         * modules/hmac-md5 (Makefile.am): Likewise.
3732         * modules/hmac-sha1 (Makefile.am): Likewise.
3733         * modules/human (Makefile.am): Likewise.
3734         * modules/idcache (Makefile.am): Likewise.
3735         * modules/imaxabs (Makefile.am): Likewise.
3736         * modules/imaxdiv (Makefile.am): Likewise.
3737         * modules/inet_ntop (Makefile.am): Likewise.
3738         * modules/inet_pton (Makefile.am): Likewise.
3739         * modules/intprops (Makefile.am): Likewise.
3740         * modules/inttostr (Makefile.am): Likewise.
3741         * modules/inttypes (Makefile.am): Likewise.
3742         * modules/isapipe (Makefile.am): Likewise.
3743         * modules/javaversion (Makefile.am): Likewise.
3744         * modules/lchmod (Makefile.am): Likewise.
3745         * modules/lchown (Makefile.am): Likewise.
3746         * modules/localcharset (Makefile.am): Likewise.
3747         * modules/long-options (Makefile.am): Likewise.
3748         * modules/lstat (Makefile.am): Likewise.
3749         * modules/malloc (Makefile.am): Likewise.
3750         * modules/mathl (Makefile.am): Likewise.
3751         * modules/mbchar (Makefile.am): Likewise.
3752         * modules/md2 (Makefile.am): Likewise.
3753         * modules/md4 (Makefile.am): Likewise.
3754         * modules/md5 (Makefile.am): Likewise.
3755         * modules/memcasecmp (Makefile.am): Likewise.
3756         * modules/memchr (Makefile.am): Likewise.
3757         * modules/memcmp (Makefile.am): Likewise.
3758         * modules/memcoll (Makefile.am): Likewise.
3759         * modules/memcpy (Makefile.am): Likewise.
3760         * modules/memmem (Makefile.am): Likewise.
3761         * modules/memmove (Makefile.am): Likewise.
3762         * modules/mempcpy (Makefile.am): Likewise.
3763         * modules/memrchr (Makefile.am): Likewise.
3764         * modules/memset (Makefile.am): Likewise.
3765         * modules/memxor (Makefile.am): Likewise.
3766         * modules/mkancesdirs (Makefile.am): Likewise.
3767         * modules/mkdir-p (Makefile.am): Likewise.
3768         * modules/mkdir (Makefile.am): Likewise.
3769         * modules/mkdtemp (Makefile.am): Likewise.
3770         * modules/mkstemp (Makefile.am): Likewise.
3771         * modules/mktime (Makefile.am): Likewise.
3772         * modules/modechange (Makefile.am): Likewise.
3773         * modules/mountlist (Makefile.am): Likewise.
3774         * modules/nanosleep (Makefile.am): Likewise.
3775         * modules/obstack (Makefile.am): Likewise.
3776         * modules/openat (Makefile.am): Likewise.
3777         * modules/pagealign_alloc (Makefile.am): Likewise.
3778         * modules/pathmax (Makefile.am): Likewise.
3779         * modules/physmem (Makefile.am): Likewise.
3780         * modules/poll (Makefile.am): Likewise.
3781         * modules/posixtm (Makefile.am): Likewise.
3782         * modules/posixver (Makefile.am): Likewise.
3783         * modules/putenv (Makefile.am): Likewise.
3784         * modules/quote (Makefile.am): Likewise.
3785         * modules/quotearg (Makefile.am): Likewise.
3786         * modules/raise (Makefile.am): Likewise.
3787         * modules/read-file (Makefile.am): Likewise.
3788         * modules/readline (Makefile.am): Likewise.
3789         * modules/readlink (Makefile.am): Likewise.
3790         * modules/readtokens (Makefile.am): Likewise.
3791         * modules/readutmp (Makefile.am): Likewise.
3792         * modules/realloc (Makefile.am): Likewise.
3793         * modules/regex (Makefile.am): Likewise.
3794         * modules/rename-dest-slash (Makefile.am): Likewise.
3795         * modules/rename (Makefile.am): Likewise.
3796         * modules/rijndael (Makefile.am): Likewise.
3797         * modules/rmdir (Makefile.am): Likewise.
3798         * modules/rpmatch (Makefile.am): Likewise.
3799         * modules/safe-read (Makefile.am): Likewise.
3800         * modules/safe-write (Makefile.am): Likewise.
3801         * modules/same-inode (Makefile.am): Likewise.
3802         * modules/same (Makefile.am): Likewise.
3803         * modules/save-cwd (Makefile.am): Likewise.
3804         * modules/savedir (Makefile.am): Likewise.
3805         * modules/setenv (Makefile.am): Likewise.
3806         * modules/settime (Makefile.am): Likewise.
3807         * modules/sha1 (Makefile.am): Likewise.
3808         * modules/sig2str (Makefile.am): Likewise.
3809         * modules/snprintf (Makefile.am): Likewise.
3810         * modules/stat-macros (Makefile.am): Likewise.
3811         * modules/stat-time (Makefile.am): Likewise.
3812         * modules/stdbool (Makefile.am): Likewise.
3813         * modules/stdint (Makefile.am): Likewise.
3814         * modules/stdlib-safer (Makefile.am): Likewise.
3815         * modules/stpcpy (Makefile.am): Likewise.
3816         * modules/stpncpy (Makefile.am): Likewise.
3817         * modules/strcase (Makefile.am): Likewise.
3818         * modules/strcasestr (Makefile.am): Likewise.
3819         * modules/strchrnul (Makefile.am): Likewise.
3820         * modules/strcspn (Makefile.am): Likewise.
3821         * modules/strdup (Makefile.am): Likewise.
3822         * modules/strerror (Makefile.am): Likewise.
3823         * modules/strftime (Makefile.am): Likewise.
3824         * modules/strndup (Makefile.am): Likewise.
3825         * modules/strnlen (Makefile.am): Likewise.
3826         * modules/strpbrk (Makefile.am): Likewise.
3827         * modules/strsep (Makefile.am): Likewise.
3828         * modules/strstr (Makefile.am): Likewise.
3829         * modules/strtod (Makefile.am): Likewise.
3830         * modules/strtoimax (Makefile.am): Likewise.
3831         * modules/strtok_r (Makefile.am): Likewise.
3832         * modules/strtol (Makefile.am): Likewise.
3833         * modules/strtoll (Makefile.am): Likewise.
3834         * modules/strtoul (Makefile.am): Likewise.
3835         * modules/strtoull (Makefile.am): Likewise.
3836         * modules/strtoumax (Makefile.am): Likewise.
3837         * modules/strverscmp (Makefile.am): Likewise.
3838         * modules/sys_socket (Makefile.am): Likewise.
3839         * modules/sys_stat (Makefile.am): Likewise.
3840         * modules/sysexits (Makefile.am): Likewise.
3841         * modules/time_r (Makefile.am): Likewise.
3842         * modules/timegm (Makefile.am): Likewise.
3843         * modules/timespec (Makefile.am): Likewise.
3844         * modules/tmpfile-safer (Makefile.am): Likewise.
3845         * modules/trim (Makefile.am): Likewise.
3846         * modules/unistd-safer (Makefile.am): Likewise.
3847         * modules/unlinkdir (Makefile.am): Likewise.
3848         * modules/unlocked-io (Makefile.am): Likewise.
3849         * modules/userspec (Makefile.am): Likewise.
3850         * modules/utime (Makefile.am): Likewise.
3851         * modules/utimecmp (Makefile.am): Likewise.
3852         * modules/utimens (Makefile.am): Likewise.
3853         * modules/vasnprintf (Makefile.am): Likewise.
3854         * modules/vasprintf (Makefile.am): Likewise.
3855         * modules/vsnprintf (Makefile.am): Likewise.
3856         * modules/xalloc (Makefile.am): Likewise.
3857         * modules/xgetcwd (Makefile.am): Likewise.
3858         * modules/xnanosleep (Makefile.am): Likewise.
3859         * modules/xreadlink (Makefile.am): Likewise.
3860         * modules/xstrtod (Makefile.am): Likewise.
3861         * modules/xstrtol (Makefile.am): Likewise.
3862         * modules/xstrtold (Makefile.am): Likewise.
3863         * modules/yesno (Makefile.am): Likewise.
3864         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
3865
3866 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
3867
3868         * modules/error (Makefile.am): Distribute files through
3869         EXTRA_DIST, not lib_SOURCES.
3870
3871 2006-10-12  Eric Blake  <ebb9@byu.net>
3872
3873         * modules/error (Makefile.am): Distribute files in /lib.
3874         * modules/obstack (Makefile.am): Likewise.
3875
3876 2006-10-12  Bruno Haible  <bruno@clisp.org>
3877
3878         * modules/acl (Makefile.am): Distribute all files in lib/ through
3879         EXTRA_DIST.
3880         * modules/arcfour (Makefile.am): Likewise.
3881         * modules/arctwo (Makefile.am): Likewise.
3882         * modules/argmatch (Makefile.am): Likewise.
3883         * modules/argz (Makefile.am): Likewise.
3884         * modules/atexit (Makefile.am): Likewise.
3885         * modules/backupfile (Makefile.am): Likewise.
3886         * modules/c-strtod (Makefile.am): Likewise.
3887         * modules/c-strtold (Makefile.am): Likewise.
3888         * modules/calloc (Makefile.am): Likewise.
3889         * modules/canon-host (Makefile.am): Likewise.
3890         * modules/canonicalize (Makefile.am): Likewise.
3891         * modules/chdir-long (Makefile.am): Likewise.
3892         * modules/chdir-safer (Makefile.am): Likewise.
3893         * modules/check-version (Makefile.am): Likewise.
3894         * modules/chown (Makefile.am): Likewise.
3895         * modules/cloexec (Makefile.am): Likewise.
3896         * modules/close-stream (Makefile.am): Likewise.
3897         * modules/closeout (Makefile.am): Likewise.
3898         * modules/crc (Makefile.am): Likewise.
3899         * modules/cycle-check (Makefile.am): Likewise.
3900         * modules/des (Makefile.am): Likewise.
3901         * modules/dirfd (Makefile.am): Likewise.
3902         * modules/dirname (Makefile.am): Likewise.
3903         * modules/dup2 (Makefile.am): Likewise.
3904         * modules/euidaccess (Makefile.am): Likewise.
3905         * modules/exclude (Makefile.am): Likewise.
3906         * modules/exitfail (Makefile.am): Likewise.
3907         * modules/fcntl-safer (Makefile.am): Likewise.
3908         * modules/file-type (Makefile.am): Likewise.
3909         * modules/fileblocks (Makefile.am): Likewise.
3910         * modules/filemode (Makefile.am): Likewise.
3911         * modules/filenamecat (Makefile.am): Likewise.
3912         * modules/fnmatch (Makefile.am): Likewise.
3913         * modules/fopen-safer (Makefile.am): Likewise.
3914         * modules/fpending (Makefile.am): Likewise.
3915         * modules/fprintftime (Makefile.am): Likewise.
3916         * modules/free (Makefile.am): Likewise.
3917         * modules/fsusage (Makefile.am): Likewise.
3918         * modules/ftruncate (Makefile.am): Likewise.
3919         * modules/fts (Makefile.am): Likewise.
3920         * modules/gc (Makefile.am): Likewise.
3921         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
3922         * modules/getaddrinfo (Makefile.am): Likewise.
3923         * modules/getcwd (Makefile.am): Likewise.
3924         * modules/getdelim (Makefile.am): Likewise.
3925         * modules/getdomainname (Makefile.am): Likewise.
3926         * modules/getgroups (Makefile.am): Likewise.
3927         * modules/gethostname (Makefile.am): Likewise.
3928         * modules/gethrxtime (Makefile.am): Likewise.
3929         * modules/getline (Makefile.am): Likewise.
3930         * modules/getloadavg (Makefile.am): Likewise.
3931         * modules/getlogin_r (Makefile.am): Likewise.
3932         * modules/getopt (Makefile.am): Likewise.
3933         * modules/getpass (Makefile.am): Likewise.
3934         * modules/getpass-gnu (Makefile.am): Likewise.
3935         * modules/getsubopt (Makefile.am): Likewise.
3936         * modules/gettime (Makefile.am): Likewise.
3937         * modules/gettimeofday (Makefile.am): Likewise.
3938         * modules/getugroups (Makefile.am): Likewise.
3939         * modules/getusershell (Makefile.am): Likewise.
3940         * modules/glob (Makefile.am): Likewise.
3941         * modules/group-member (Makefile.am): Likewise.
3942         * modules/hard-locale (Makefile.am): Likewise.
3943         * modules/hash (Makefile.am): Likewise.
3944         * modules/hmac-md5 (Makefile.am): Likewise.
3945         * modules/hmac-sha1 (Makefile.am): Likewise.
3946         * modules/human (Makefile.am): Likewise.
3947         * modules/idcache (Makefile.am): Likewise.
3948         * modules/imaxabs (Makefile.am): Likewise.
3949         * modules/imaxdiv (Makefile.am): Likewise.
3950         * modules/inet_ntop (Makefile.am): Likewise.
3951         * modules/inet_pton (Makefile.am): Likewise.
3952         * modules/inttostr (Makefile.am): Likewise.
3953         * modules/isapipe (Makefile.am): Likewise.
3954         * modules/lchown (Makefile.am): Likewise.
3955         * modules/long-options (Makefile.am): Likewise.
3956         * modules/lstat (Makefile.am): Likewise.
3957         * modules/malloc (Makefile.am): Likewise.
3958         * modules/mathl (Makefile.am): Likewise.
3959         * modules/mbchar (Makefile.am): Likewise.
3960         * modules/md2 (Makefile.am): Likewise.
3961         * modules/md4 (Makefile.am): Likewise.
3962         * modules/md5 (Makefile.am): Likewise.
3963         * modules/memcasecmp (Makefile.am): Likewise.
3964         * modules/memchr (Makefile.am): Likewise.
3965         * modules/memcmp (Makefile.am): Likewise.
3966         * modules/memcoll (Makefile.am): Likewise.
3967         * modules/memcpy (Makefile.am): Likewise.
3968         * modules/memmem (Makefile.am): Likewise.
3969         * modules/memmove (Makefile.am): Likewise.
3970         * modules/mempcpy (Makefile.am): Likewise.
3971         * modules/memrchr (Makefile.am): Likewise.
3972         * modules/memset (Makefile.am): Likewise.
3973         * modules/memxor (Makefile.am): Likewise.
3974         * modules/mkancesdirs (Makefile.am): Likewise.
3975         * modules/mkdir (Makefile.am): Likewise.
3976         * modules/mkdir-p (Makefile.am): Likewise.
3977         * modules/mkdtemp (Makefile.am): Likewise.
3978         * modules/mkstemp (Makefile.am): Likewise.
3979         * modules/mktime (Makefile.am): Likewise.
3980         * modules/modechange (Makefile.am): Likewise.
3981         * modules/mountlist (Makefile.am): Likewise.
3982         * modules/nanosleep (Makefile.am): Likewise.
3983         * modules/openat (Makefile.am): Likewise.
3984         * modules/pagealign_alloc (Makefile.am): Likewise.
3985         * modules/physmem (Makefile.am): Likewise.
3986         * modules/poll (Makefile.am): Likewise.
3987         * modules/posixtm (Makefile.am): Likewise.
3988         * modules/posixver (Makefile.am): Likewise.
3989         * modules/putenv (Makefile.am): Likewise.
3990         * modules/quote (Makefile.am): Likewise.
3991         * modules/quotearg (Makefile.am): Likewise.
3992         * modules/raise (Makefile.am): Likewise.
3993         * modules/read-file (Makefile.am): Likewise.
3994         * modules/readline (Makefile.am): Likewise.
3995         * modules/readlink (Makefile.am): Likewise.
3996         * modules/readtokens (Makefile.am): Likewise.
3997         * modules/readutmp (Makefile.am): Likewise.
3998         * modules/realloc (Makefile.am): Likewise.
3999         * modules/regex (Makefile.am): Likewise.
4000         * modules/rename (Makefile.am): Likewise.
4001         * modules/rename-dest-slash (Makefile.am): Likewise.
4002         * modules/rijndael (Makefile.am): Likewise.
4003         * modules/rmdir (Makefile.am): Likewise.
4004         * modules/rpmatch (Makefile.am): Likewise.
4005         * modules/safe-read (Makefile.am): Likewise.
4006         * modules/safe-write (Makefile.am): Likewise.
4007         * modules/same (Makefile.am): Likewise.
4008         * modules/save-cwd (Makefile.am): Likewise.
4009         * modules/savedir (Makefile.am): Likewise.
4010         * modules/setenv (Makefile.am): Likewise.
4011         * modules/settime (Makefile.am): Likewise.
4012         * modules/sha1 (Makefile.am): Likewise.
4013         * modules/sig2str (Makefile.am): Likewise.
4014         * modules/snprintf (Makefile.am): Likewise.
4015         * modules/stdlib-safer (Makefile.am): Likewise.
4016         * modules/stpcpy (Makefile.am): Likewise.
4017         * modules/stpncpy (Makefile.am): Likewise.
4018         * modules/strcase (Makefile.am): Likewise.
4019         * modules/strcasestr (Makefile.am): Likewise.
4020         * modules/strchrnul (Makefile.am): Likewise.
4021         * modules/strcspn (Makefile.am): Likewise.
4022         * modules/strdup (Makefile.am): Likewise.
4023         * modules/strerror (Makefile.am): Likewise.
4024         * modules/strftime (Makefile.am): Likewise.
4025         * modules/strndup (Makefile.am): Likewise.
4026         * modules/strnlen (Makefile.am): Likewise.
4027         * modules/strpbrk (Makefile.am): Likewise.
4028         * modules/strsep (Makefile.am): Likewise.
4029         * modules/strstr (Makefile.am): Likewise.
4030         * modules/strtod (Makefile.am): Likewise.
4031         * modules/strtoimax (Makefile.am): Likewise.
4032         * modules/strtok_r (Makefile.am): Likewise.
4033         * modules/strtol (Makefile.am): Likewise.
4034         * modules/strtoll (Makefile.am): Likewise.
4035         * modules/strtoul (Makefile.am): Likewise.
4036         * modules/strtoull (Makefile.am): Likewise.
4037         * modules/strtoumax (Makefile.am): Likewise.
4038         * modules/strverscmp (Makefile.am): Likewise.
4039         * modules/time_r (Makefile.am): Likewise.
4040         * modules/timegm (Makefile.am): Likewise.
4041         * modules/tmpfile-safer (Makefile.am): Likewise.
4042         * modules/unistd-safer (Makefile.am): Likewise.
4043         * modules/unlinkdir (Makefile.am): Likewise.
4044         * modules/userspec (Makefile.am): Likewise.
4045         * modules/utime (Makefile.am): Likewise.
4046         * modules/utimecmp (Makefile.am): Likewise.
4047         * modules/utimens (Makefile.am): Likewise.
4048         * modules/vasnprintf (Makefile.am): Likewise.
4049         * modules/vasprintf (Makefile.am): Likewise.
4050         * modules/vsnprintf (Makefile.am): Likewise.
4051         * modules/xalloc (Makefile.am): Likewise.
4052         * modules/xgetcwd (Makefile.am): Likewise.
4053         * modules/xnanosleep (Makefile.am): Likewise.
4054         * modules/xreadlink (Makefile.am): Likewise.
4055         * modules/xstrtod (Makefile.am): Likewise.
4056         * modules/xstrtol (Makefile.am): Likewise.
4057         * modules/xstrtold (Makefile.am): Likewise.
4058         * modules/yesno (Makefile.am): Likewise.
4059
4060 2006-10-12  Jim Meyering  <jim@meyering.net>
4061
4062         * m4/getloadavg.m4: Revert the change below.
4063
4064         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
4065         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
4066         fail with a symlink, which is what coreutils' ./bootstrap now
4067         creates by default.
4068
4069 2006-10-12  Bruno Haible  <bruno@clisp.org>
4070
4071         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
4072         mingw.
4073         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
4074         MSVC and mingw explicitly.
4075
4076 2006-10-11  Simon Josefsson  <jas@extundo.com>
4077             Bruno Haible  <bruno@clisp.org>
4078
4079         Add support for multiple gnulib-tool invocations in the scope of a
4080         single configure.ac file.
4081         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
4082         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
4083         with the same contents as the _LIBADD variable.
4084         (func_emit_initmacro_start, func_emit_initmacro_end,
4085         func_emit_initmacro_done): New functions.
4086         (func_import, func_create_testdir): Invoke them. Allow the identifiers
4087         gl_LIBOBJS and gl_LTLIBOBJS.
4088
4089 2006-10-11  Bruno Haible  <bruno@clisp.org>
4090
4091         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
4092         (func_create_testdir): Don't create po/Makefile.am, don't invoke
4093         autoreconf. Instead, invoke autopoint explicitly but move back the
4094         *.m4 files from gnulib.
4095
4096 2006-10-11  Bruno Haible  <bruno@clisp.org>
4097
4098         * gnulib-tool (func_usage): Make module names after --create-testdir
4099         optional.
4100         (func_create_testdir): If no module was specified, use nearly all
4101         modules.
4102
4103 2006-10-12  Jim Meyering  <jim@meyering.net>
4104
4105         Big performance improvement for fts-based tools that use FTS_NOSTAT.
4106         Avoid spurious inode-mismatch problems on non-POSIX file systems.
4107         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
4108         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
4109         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
4110         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
4111         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
4112         (fts_set_stat_required): New function.
4113         (fts_open): Defer the calls to fts_stat, if possible or requested.
4114         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
4115         into fts_stat itself.
4116         (fts_read): Perform any required (deferred) fts_stat call.
4117         (fts_build): Likewise, for the directory we're about to open and read.
4118         In the readdir loop, carefully decide whether each entry will require
4119         an eventual call to fts_stat, using dirent.d_type info if available.
4120         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
4121         a command line argument into this function.  Update all callers.
4122         Map a return value of FTS_DOT to FTS_D for a command line argument.
4123         * modules/fts (Depends-on): Add d-type.  Alphabetize.
4124         Thanks to Miklos Szeredi for his tenacity and for the initial
4125         bug report about "find" failing on a FUSE-based file system.
4126
4127         * lib/fts.c (fts_open): Use consistent indentation.
4128
4129 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
4130
4131         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
4132         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
4133         reported by Jim Meyering.  All uses of cache variables renamed
4134         to match Autoconf's.
4135         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
4136         the other one.
4137
4138         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
4139         Fix misspelling in diagnostic.
4140
4141 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
4142
4143         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
4144         defined.  Problem reported by Matthew Woehlke.
4145
4146         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
4147         Add support for Tandem NonStop R series.
4148         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
4149         Use new macro.
4150
4151         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
4152         (has_trailing_slash): Omit size arg; all callers changed.
4153         Omit 'inline', since it doesn't help performance and we'd
4154         need to configure it.
4155         Don't count //, ///, etc. as having a trailing slash.
4156         As a side effect, this removes a C99ism reported by Matthew Woehlke.
4157         (rpl_rename_dest_slash): On failure, use rename's errno rather
4158         than (in some cases) an incorrect or junk errno.
4159         Simplify code by removing need to compute length; this does
4160         cause it to make two passes instead of one over the file name,
4161         but it's worth it.
4162
4163         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
4164         change, since Autoconf's version may no longer be appropriate now
4165         that we are using CVS Autoconf's version.  Add support for Tandem.
4166
4167 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
4168             Bruno Haible  <bruno@clisp.org>
4169
4170         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
4171         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
4172         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
4173         gl_AC_TYPE_LONG_LONG.
4174
4175         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
4176         instead of HAVE_LONG_LONG.
4177         * lib/printf-args.c (printf_fetchargs): Likewise.
4178         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
4179         * lib/vasnprintf.c (VASNPRINTF): Likewise.
4180         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
4181         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
4182         gl_AC_TYPE_LONG_LONG.
4183
4184 2006-10-11  Bruno Haible  <bruno@clisp.org>
4185
4186         * m4/longlong.m4: Add comments.
4187         * m4/ulonglong.m4: Likewise.
4188
4189 2006-10-10  Bruno Haible  <bruno@clisp.org>
4190
4191         Make it possible to #define stpcpy, strdup to aliases.
4192         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
4193         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
4194
4195 2006-10-10  Bruno Haible  <bruno@clisp.org>
4196
4197         Make it possible to #define gcd to an alias.
4198         * lib/gcd.c: Include config.h.
4199
4200 2006-10-10  Bruno Haible  <bruno@clisp.org>
4201
4202         Make it possible to #define c_isascii to an alias.
4203         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
4204         defined. Undefine the macros before defining them, to avoid gcc
4205         warnings.
4206         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
4207         define NO_C_CTYPE_MACROS early.
4208
4209 2006-10-10  Bruno Haible  <bruno@clisp.org>
4210
4211         Make it possible to #define set_program_name to an alias.
4212         * lib/progname.c: Don't undefine set_program_name; instead, undefine
4213         ENABLE_RELOCATABLE early.
4214
4215 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
4216
4217         Port to Tandem NSK OSS, which has 64-bit signed int but at most
4218         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
4219         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
4220         More generally, don't assume that 64-bit signed int is available
4221         if unsigned int is, and vice versa.
4222         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
4223         unsigned symbols, not on their signed counterparts.
4224         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
4225         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
4226         (UINT64_C, UINTMAX_C):
4227         Likewise.
4228         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
4229         unsigned counterparts.
4230         (Have_long_long, Unsigned): New macros.
4231         (Int): Renamed from INT.
4232         (strtoimax): Use the new macros.
4233         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
4234         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
4235         * modules/inttypes (inttypes.h): Substitute
4236         HAVE_UNSIGNED_LONG_LONG_INT.
4237         * modules/stdint (stdint.h): Likewise.
4238         (Files): Add m4/ulonglong.m4.
4239
4240 2006-10-10  Bruno Haible  <bruno@clisp.org>
4241
4242         Fix a gcc -Wshadow warning.
4243         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
4244         to 'bucket'.
4245         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
4246         gl_linked_indexof_from_to): Likewise.
4247         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
4248         Likewise.
4249         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
4250         Likewise.
4251         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
4252         Reported by Eric Blake.
4253
4254 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
4255
4256         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
4257         for NetBSD.  Problem reported by Bruno Haible.
4258
4259 2006-10-09  Jim Meyering  <jim@meyering.net>
4260
4261         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
4262         Patch from Bruno Haible.
4263
4264 2006-10-09  Jim Meyering  <jim@meyering.net>
4265
4266         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
4267         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
4268         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
4269
4270 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
4271
4272         Don't include <config.h> twice; this doesn't work in some cases,
4273         e.g., when config.h has "#define intmax_t long long int" and
4274         we include <config.h>, <inttypes.h>, <config.h> in that order.
4275         Problem reported by Matthew Woehlke in:
4276         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
4277         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
4278         * lib/fts-cycle.c: Don't include config.h.
4279         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
4280         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
4281         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
4282         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
4283         inttypes.h.
4284         * lib/xstrtoumax.c: Likewise.
4285         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
4286         __strtol and the like, so that this module is more like its siblings.
4287         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
4288         Remove; no longer needed now that we assume gnulib inttypes.h.
4289
4290 2006-10-08  Bruno Haible  <bruno@clisp.org>
4291
4292         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
4293         option.
4294
4295 2006-10-07  Jim Meyering  <jim@meyering.net>
4296
4297         * modules/inttypes (inttypes.h): Revert what seems to have been
4298         an inadvertent part of today's change: use "|", not "/" in the
4299         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
4300
4301 2006-10-07  Bruno Haible  <bruno@clisp.org>
4302
4303         * modules/sublist: New file.
4304
4305 2006-10-07  Bruno Haible  <bruno@clisp.org>
4306
4307         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
4308         * modules/argz (argz.h): Likewise.
4309         * modules/arpa_inet (arpa/inet.h): Likewise.
4310         * modules/byteswap (byteswap.h): Likewise.
4311         * modules/configmake (configmake.h): Likewise.
4312         * modules/fcntl (fcntl.h): Likewise.
4313         * modules/fnmatch (fnmatch.h): Likewise.
4314         * modules/getopt (getopt.h): Likewise.
4315         * modules/glob (glob.h): Likewise.
4316         * modules/inttypes (inttypes.h): Likewise.
4317         * modules/netinet_in (netinet/in.h): Likewise.
4318         * modules/poll (poll.h): Likewise.
4319         * modules/stdbool (stdbool.h): Likewise.
4320         * modules/stdint (stdint.h): Likewise.
4321         * modules/sys_select (sys/select.h): Likewise.
4322         * modules/sys_socket (sys/socket.h): Likewise.
4323         * modules/sys_stat (sys/stat.h): Likewise.
4324         * modules/sysexits (sysexits.h): Likewise.
4325         * modules/unistd (unistd.h): Likewise.
4326         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
4327         Add a "DO NOT EDIT" comment to the generated file.
4328         (func_import): Likewise for gnulib-comp.m4.
4329
4330 2006-10-07  Bruno Haible  <bruno@clisp.org>
4331
4332         * lib/gl_sublist.h: New file.
4333         * lib/gl_sublist.c: New file.
4334
4335 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
4336
4337         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
4338         name (relative to the original working directory) and the file
4339         name component (relative to the temporary working directory).  All
4340         callers changed.
4341         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
4342         * lib/mkdir-p.c (make_dir_parents): Likewise.
4343         * lib/mkdir-p.h (make_dir_parents): Likewise.
4344
4345 2006-10-06  Eric Blake  <ebb9@byu.net>
4346
4347         Define several macros for use by the clean-temp module.
4348         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
4349         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
4350         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
4351
4352         * lib/clean-temp.h (close_stream_temp): New declaration.
4353         * lib/clean-temp.c (includes): Pull in headers according to what
4354         other modules are in use.
4355         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
4356
4357 2006-10-06  Bruno Haible  <bruno@clisp.org>
4358
4359         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
4360         instead of fopen, fwriteerror.
4361
4362 2006-10-06  Bruno Haible  <bruno@clisp.org>
4363
4364         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
4365         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
4366         int.
4367         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
4368         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
4369         Return an error indicator.
4370         Suggested by Eric Blake.
4371
4372 2006-10-06  Bruno Haible  <bruno@clisp.org>
4373
4374         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
4375         Reported by Eric Blake.
4376
4377 2006-10-06  Bruno Haible  <bruno@clisp.org>
4378
4379         * modules/closeout (Description): Mention stderr too.
4380
4381 2006-10-06  Bruno Haible  <bruno@clisp.org>
4382         and Paul Eggert  <eggert@cs.ucla.edu>
4383
4384         * lib/closeout.c (close_stdout): Also close stderr.
4385         * lib/closeout.h: Update comment.
4386
4387 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
4388
4389         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
4390         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
4391         * lib/dirchownmod.c: Include lchown.h.
4392         * lib/lchown.c: Don't include files that lchown.h now includes.
4393         Don't declare chown, since lchown.h now does that.
4394         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
4395         (lchown): Define to rpl_chown if lchown is declared but
4396         does not exist.  Declare using a prototype if lchown is not
4397         declared.  Add a copyright notice.
4398         * lib/mkstemp.h: Include <unistd.h>.
4399         * lib/openat.c: Include lchown.h.
4400
4401         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
4402         we now test for that separately.
4403         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
4404         rather than O_NOFOLLOW, when testing whether it's possible to
4405         avoid a race condition reliably.
4406         * lib/savewd.c (savewd_chdir): Likewise.
4407
4408         Remove macros that are no longer needed now that stdint.h is
4409         reliable.
4410         * lib/fsusage.c (UINTMAX_MAX): Remove.
4411         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
4412         * lib/utimecmp.c (SIZE_MAX): Remove.
4413
4414         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
4415
4416         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
4417         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
4418         O_NOATIME works.
4419
4420 2006-10-05  Bruno Haible  <bruno@clisp.org>
4421
4422         * lib/gl_list.h (gl_sortedlist_search_from_to,
4423         gl_sortedlist_indexof_from_to): New declarations.
4424         (gl_list_implementation): New fields sortedlist_search_from_to,
4425         sortedlist_indexof_from_to.
4426         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
4427         inline functions.
4428         * lib/gl_list.c (gl_sortedlist_search_from_to,
4429         gl_sortedlist_indexof_from_to): New functions.
4430         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
4431         function.
4432         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
4433         (gl_array_sortedlist_search_from_to): New function.
4434         (gl_array_list_implementation): Update.
4435         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
4436         function.
4437         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
4438         (gl_carray_sortedlist_search_from_to): New function.
4439         (gl_carray_list_implementation): Update.
4440         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
4441         gl_linked_sortedlist_indexof_from_to): New functions.
4442         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
4443         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
4444         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
4445         gl_tree_sortedlist_indexof_from_to): New functions.
4446         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
4447         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
4448         Update.
4449         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
4450         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
4451         Update.
4452
4453 2006-10-05  Bruno Haible  <bruno@clisp.org>
4454
4455         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
4456         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
4457         (struct gl_list_implementation): Add fields search_from_to,
4458         indexof_from_to. Remove fields search, indexof.
4459         (gl_list_search): Use the search_from_to method.
4460         (gl_list_search_from, gl_list_search_from_to): New functions.
4461         (gl_list_indexof): Use the indexof_from_to method.
4462         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
4463         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
4464         (gl_list_search_from, gl_list_search_from_to): New functions.
4465         (gl_list_indexof): Use the indexof_from_to method.
4466         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
4467         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
4468         gl_array_indexof. Add start_index, end_index arguments.
4469         (gl_array_search_from_to): Renamed from gl_array_search. Add
4470         start_index, end_index arguments.
4471         (gl_array_remove, gl_array_list_implementation): Update.
4472         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
4473         gl_carray_indexof. Add start_index, end_index arguments.
4474         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
4475         start_index, end_index arguments.
4476         (gl_carray_remove, gl_carray_list_implementation): Update.
4477         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
4478         gl_linked_search. Add start_index, end_index arguments.
4479         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
4480         start_index, end_index arguments.
4481         (gl_linked_remove): Update.
4482         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
4483         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
4484         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
4485         field to 'size_t'.
4486         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
4487         gl_tree_search. Add start_index, end_index arguments.
4488         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
4489         start_index, end_index arguments.
4490         (gl_tree_remove): Update.
4491         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
4492         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
4493         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
4494         function.
4495         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
4496         gl_tree_search. Add start_index, end_index arguments.
4497         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
4498         start_index, end_index arguments.
4499         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
4500         Update.
4501         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
4502
4503 2006-10-05  Bruno Haible  <bruno@clisp.org>
4504
4505         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
4506
4507         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
4508         fwriteerror_temp): New declarations.
4509         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
4510         (descriptors): New variable.
4511         (cleanup): First, close the descriptors.
4512         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
4513         fclose_temp, fwriteerror_temp): New functions.
4514
4515 2006-10-04  Jim Meyering  <jim@meyering.net>
4516
4517         * lib/fts.c (fts_open): Tiny comment change.
4518
4519 2006-10-04  Bruno Haible  <bruno@clisp.org>
4520
4521         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
4522         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
4523         gl_LOCK_BODY.
4524         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
4525         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
4526         gl_LOCK_EARLY_BODY.
4527         (gl_LOCK): Require gl_LOCK_BODY.
4528
4529 2006-10-04  Bruno Haible  <bruno@clisp.org>
4530
4531         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
4532         (gl_oset_search_atleast): New declaration.
4533         (struct gl_oset_implementation): Add field 'search_atleast'.
4534         (gl_oset_search_atleast): New inline function.
4535         * lib/gl_oset.c (gl_oset_search_atleast): New function.
4536         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
4537         (gl_array_oset_implementation): Update.
4538         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
4539         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
4540         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
4541
4542 2006-10-04  Bruno Haible  <bruno@clisp.org>
4543
4544         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
4545
4546 2006-10-03  Bruno Haible  <bruno@clisp.org>
4547
4548         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
4549         from gl_avltreehash_list_implementation.
4550
4551 2006-10-03  Bruno Haible  <bruno@clisp.org>
4552
4553         * lib/gl_oset.c (gl_oset_add): Fix return type.
4554
4555 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
4556
4557         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
4558
4559 2006-10-02  Eric Blake  <ebb9@byu.net>
4560
4561         * modules/strnlen (Depends-on): Add extensions.
4562
4563 2006-10-02  Eric Blake  <ebb9@byu.net>
4564
4565         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
4566         definition in 2.60+.
4567
4568 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
4569
4570         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
4571         checks.
4572
4573 2006-10-02  Bruno Haible  <bruno@clisp.org>
4574
4575         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
4576         to the AUTOMAKE_OPTIONS.
4577         Reported by Jim Meyering.
4578
4579 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
4580
4581         Work around bug in Solaris 10 /proc file system:
4582         /proc/self/fd/NNN/.. isn't the parent directory of
4583         the directory whose file descriptor is NNN.  This needs to
4584         be worked around at run time, not compile time, since a
4585         program might be built on Solaris 8, where things work, and
4586         run on Solaris 10.
4587         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
4588         to use the following interface instead:
4589         (OPENAT_BUFFER_SIZE): New macro.
4590         (openat_proc_name): New function.
4591         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
4592         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
4593         Likewise.
4594         * lib/openat-proc.c: New file.
4595         * modules/openat (Files): Add lib/openat-proc.c.
4596         (Depends-on): Add same-inode, stdbool.
4597         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
4598
4599 2006-09-29  Bruno Haible  <bruno@clisp.org>
4600
4601         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
4602         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
4603         argument. Set stdout_closed before testing for ferror, not after.
4604         (fwriteerror, fwriteerror_no_ebadf): New functions.
4605
4606 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4607
4608         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
4609
4610 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
4611
4612         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
4613         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
4614
4615 2006-09-28  Jim Meyering  <jim@meyering.net>
4616
4617         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
4618         Include <unistd.h>.
4619
4620 2006-09-28  Bruno Haible  <bruno@clisp.org>
4621
4622         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
4623         * modules/linkedhash-list (Depends-on): Likewise.
4624         * modules/rbtreehash-list (Depends-on): Likewise.
4625
4626 2006-09-28  Bruno Haible  <bruno@clisp.org>
4627
4628         * lib/strndup.h: Simplify the redefinition of strndup.
4629         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
4630         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
4631
4632 2006-09-28  Bruno Haible  <bruno@clisp.org>
4633
4634         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
4635         * lib/gl_linkedhash_list.c: Likewise.
4636         * lib/gl_rbtreehash_list.c: Likewise.
4637
4638 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
4639
4640         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
4641         getaddrinfo.
4642
4643         * lib/__fpending.h: Don't include <stdio_ext.h> unless
4644         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
4645         it causes <stdio_ext.h> to cause a compile-time error.
4646         Problem reported by Nelson H. F. Beebe.
4647         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
4648         of HAVE_DECL___PENDING.
4649
4650         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
4651         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
4652         declaration.
4653
4654 2006-09-27  Jim Meyering  <jim@meyering.net>
4655
4656         This file could end up with a definition for a function
4657         named __strndup, rather than rpl_strndup on a system with
4658         incomplete weak_alias support.
4659         * lib/strndup.c (strndup): Rename from __strndup.
4660         Remove #defines that used to map __strndup to strndup.
4661         Don't use K&R prototypes.
4662         Remove LIBC-related code, since this file is not sync'd with glibc.
4663         * lib/strndup.h: Revamp, accordingly.
4664         * m4/strndup.m4: Modernize.
4665
4666 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
4667
4668         * modules/savewd (Depends-on): Add 'raise'.
4669         * lib/savewd.c: Include <signal.h>, for 'raise'.
4670
4671 2006-09-26  Jim Meyering  <jim@meyering.net>
4672
4673         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
4674         when we detect Darwin 8.7.0's acl_get_file bug.
4675         Rearrange to perform the new (below) run-test while $LIBS
4676         contains any acl-related library.  Set USE_ACL at the end.
4677         (gl_ACL_GET_FILE): New function.
4678
4679 2006-09-26  Eric Blake  <ebb9@byu.net>
4680
4681         * lib/verror.c: Include <config.h> unconditionally.
4682
4683 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
4684
4685         * modules/clock-time (Maintainer): Add self.
4686         * modules/getlogin_r (Depends-on): Add extensions.
4687
4688 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4689
4690         * modules/clock-time: New module.
4691         * modules/nanosleep (Depends-on): Add clock-time.
4692         * modules/gethrxtime (Depends-on): Likewise.
4693         * modules/gettime (Depends-on): Likewise.
4694         * modules/settime (Depends-on): Likewise.
4695
4696         * modules/fts-lgpl: Depend on openat.
4697         * modules/mkancesdirs: Depend on savewd.
4698         * modules/mkdir-p: Likewise.
4699
4700 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4701
4702         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
4703
4704         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
4705         `gl_have_arbitrary_file_name_length_limit' to
4706         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
4707         actually works between configure runs.
4708
4709 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4710             Bruno Haible  <bruno@clisp.org>
4711
4712         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
4713
4714 2006-09-25  Jim Meyering  <jim@meyering.net>
4715
4716         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
4717         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
4718
4719 2006-09-25  Eric Blake  <ebb9@byu.net>
4720
4721         * gnulib-tool (func_import, func_create_testdir): Fix typos in
4722         exec's in 2006-09-18 patch when shuffling fds.
4723
4724 2006-09-25  Bruno Haible  <bruno@clisp.org>
4725
4726         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
4727         Reported by Jim Meyering.
4728
4729 2006-09-24  Jim Meyering  <jim@meyering.net>
4730
4731         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
4732         compare a pointer against a literal "0".  That caused failures with
4733         at least HP-UX's hpcc.
4734
4735 2006-09-22  Simon Josefsson  <jas@extundo.com>
4736
4737         * modules/gc-sha1:
4738         * modules/gc-md4:
4739         * modules/gc-hmac-sha1:
4740         * modules/gc-hmac-md5:
4741         * modules/gc-des:
4742         * modules/gc-arcfour: Distribute more files.
4743
4744 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4745
4746         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
4747         (gl_linked_iterator_from_to): Initialize struct completely.
4748         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
4749         (gl_tree_iterator_from_to): Likewise
4750         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
4751         * lib/gl_array_list.c [lint] (gl_array_iterator)
4752         (gl_array_iterator_from_to): Likewise.
4753         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
4754         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
4755         (gl_carray_iterator_from_to): Likewise.
4756
4757         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
4758         * lib/md4.c (md4_process_block): Remove unused variable.
4759         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
4760         parentheses for clarity.
4761
4762 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4763
4764         * modules/bison-i18n (Depends-on): Add gettext.
4765
4766 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4767
4768         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
4769         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
4770         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
4771         also add missing comma that caused broken test.
4772         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
4773         stdlib.h, for `abort'.
4774         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
4775         variables.
4776         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
4777         include unistd.h if present, for `rmdir'.
4778         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
4779         variables.
4780         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
4781         in the process include standard headers for prototypes.
4782         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
4783         gets declared on GNU/Linux.
4784         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
4785         unistd.h, for `rmdir'.
4786         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
4787
4788         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
4789         always true.
4790         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
4791
4792         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
4793
4794 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4795
4796         * gnulib-tool (func_version): Create output all at once.  This
4797         may help avoid triggering unnecessary SIGPIPEs, and at any
4798         rate it doesn't hurt.
4799
4800 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4801             Bruno Haible  <bruno@clisp.org>
4802
4803         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
4804         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
4805         * m4/signed.m4 (bh_C_SIGNED): Likewise.
4806
4807         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
4808         (gl_FUNC_VASPRINTF): Invoke it.
4809
4810 2006-09-22  Bruno Haible  <bruno@clisp.org>
4811
4812         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
4813         getloadavg.c as first argument.
4814
4815 2006-09-22  Bruno Haible  <bruno@clisp.org>
4816
4817         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
4818         at the beginning of the gl_INIT macro.
4819         * modules/getloadavg (configure.ac): Pass $gl_source_base to
4820         gl_GETLOADAVG.
4821
4822 2006-09-22  Bruno Haible  <bruno@clisp.org>
4823
4824         * gnulib-tool (func_create_megatestdir): Don't include the config-h
4825         module.
4826         Suggested by Ralf Wildenhues.
4827
4828 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
4829
4830         Import this patch from libc:
4831
4832         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
4833
4834         * lib/regex_internal.c (re_string_reconstruct): Handle
4835         offset < pstr->valid_raw_len && pstr->offsets_needed case.
4836         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
4837         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
4838         re_string_context_at.
4839
4840         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
4841         now requires it.
4842         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
4843         gl_REGEX now does it for us.
4844         (gl_REGEX): Add test taken from
4845         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
4846
4847         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
4848         Check that large offsets work.  Modernize Autoconf usages.
4849         Prefer "yes" to mean a good thing rather than a bad.
4850         Don't put "#define mkstemp" in config.h, as this might interfere
4851         with standard system headers that "#define mkstemp mkstemp64".
4852
4853         * modules/mkstemp (Depends-on): Add extensions, so that
4854         mkstemp is visible on some platforms.
4855         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
4856         (Include): Change to "mkstemp.h" from <stdlib.h>.
4857         (Files): Add mkstemp.h.
4858
4859         * lib/mkstemp.h: New file, since some standard headers
4860         #define mkstemp.
4861         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
4862         Include "mkstemp.h".
4863         Make the _LIBC code resemble glibc original more,
4864         e.g., use K&R style.
4865         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
4866         (mkstemp): Remove, since mkstemp.h does this for us.
4867         * lib/stdlib--.h: Include mkstemp.h.
4868
4869         Import this patch from libc:
4870
4871         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
4872
4873         * lib/tempname.c (__gen_tempname): Change attempts_min
4874         into a macro.  Use preprocessor to decide how to initialize
4875         attempts [Coverity CID 67].
4876
4877 2006-09-20  Bruno Haible  <bruno@clisp.org>
4878
4879         * lib/mkdtemp.c: Import from libc.
4880         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
4881                 * sysdeps/posix/tempname.c (__gen_tempname): Change
4882                 attempts_min into a macro.  Use preprocessor to decide how to
4883                 initialize attempts [Coverity CID 67].
4884         2001-11-27  Paul Eggert  <eggert@twinsun.com>
4885                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
4886                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
4887
4888 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4889
4890         * gnulib-tool (func_exit): New function, to allow to pass the
4891         exit status portably through the trap.  Use everywhere.
4892         (--help, --version): Signal a write error.
4893         (trap): catch SIGPIPE, for write errors.
4894         Exit at the end of the trap, with the correct exit status.
4895
4896 2006-09-19  Karl Berry  <karl@gnu.org>
4897
4898         * doc/gnulib.texi: note about the license texinfo files.
4899
4900 2006-09-19  Eric Blake  <ebb9@byu.net>
4901
4902         * gnulib-tool: Avoid space-tab.
4903
4904 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
4905
4906         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
4907         that prevented coreutils 6.1 from building.  Problem reported
4908         by Petter Reinholdtsen.
4909
4910 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
4911
4912         * gnulib-tool (avoidlist): Fix typo that broke options like
4913         --avoid=lock that are used by coreutils bootstrap.
4914
4915 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
4916
4917         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
4918         more systematically.
4919
4920 2006-09-18  Jim Meyering  <jim@meyering.net>
4921
4922         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
4923
4924 2006-09-18  Bruno Haible  <bruno@clisp.org>
4925
4926         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
4927
4928 2006-09-18  Bruno Haible  <bruno@clisp.org>
4929
4930         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
4931         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
4932         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
4933         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
4934         * m4/gettext.m4: Require autoconf >= 2.52.
4935         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
4936         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
4937         of gl_cv_header_inttypes_h.
4938
4939 2006-09-18  Bruno Haible  <bruno@clisp.org>
4940
4941         * lib/javaversion.c: Include configmake.h.
4942
4943 2006-09-18  Bruno Haible  <bruno@clisp.org>
4944
4945         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
4946         avoid that the while loops be executed in a subshell.
4947
4948 2006-09-18  Bruno Haible  <bruno@clisp.org>
4949
4950         * MODULES.html.sh (func_module): Break long lines.
4951         Suggested by Bruce Korb <bkorb@gnu.org>.
4952
4953 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4954
4955         Speed up by a factor of 1.12.
4956         * gnulib-tool (nl): New variable.
4957         (func_import): Rewrite include directive extraction to only read each
4958         directive once.
4959
4960 2006-09-17  Bruno Haible  <bruno@clisp.org>
4961
4962         * modules/javaversion (Makefile.am): Remove DEFS setting.
4963         (Depends-on): Add configmake, for PKGDATADIR definition.
4964
4965 2006-09-17  Bruno Haible  <bruno@clisp.org>
4966
4967         * gnulib-tool (func_create_testdir): Rewrite all files at once.
4968
4969 2006-09-17  Bruno Haible  <bruno@clisp.org>
4970
4971         * gnulib-tool (func_append): New function, stolen from libtool.m4.
4972         (func_modules_transitive_closure, func_modules_add_dummy,
4973         func_modules_to_filelist, func_import, func_create_testdir,
4974         func_create_megatestdir, ...): Use it wherever possible.
4975         Suggested by Ralf Wildenhues.
4976
4977 2006-09-16  Karl Berry  <karl@gnu.org>
4978
4979         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
4980         to avoid sectioning errors.
4981         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
4982         [ifinfo]: blank line after @center-ed titles.
4983         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
4984         Spell FSF address consistently with others.
4985         (These changes approved by rms.)
4986
4987 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4988
4989         Speed up by a factor of 1.61.
4990         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
4991         already checked module names again.
4992
4993 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4994
4995         Speed up by a factor of 1.13.
4996         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
4997         for new_files, and the input to func_add_or_update.
4998
4999 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5000
5001         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
5002         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
5003
5004 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
5005
5006         * modules/mkancesdirs (Depends-on): Add fcntl.
5007         * modules/savewd: New file.
5008         * MODULES.html.sh (File system functions): Add savewd.
5009
5010         * modules/configmake (Makefile.am): Add support for the
5011         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
5012
5013 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
5014
5015         * m4/savewd.m4: New file.
5016
5017 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
5018
5019         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
5020         (dirchownmod): New arg FD.  All callers changed.
5021         Use FD rather than opening the directory ourself, as opening is
5022         now the caller's responsibility.
5023         * lib/dirchownmod.h: Likewise.
5024         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
5025         hosts that require <sys/types.h> before <sys/stat.h>.  Include
5026         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
5027         (test_dir): Remove.
5028         (mkancesdirs): Return length of prefix of FILE that has already
5029         been made, or -2 if there is a child doing the work.  Redo
5030         algorithm so that it is O(N) rather than O(N**2).  Optimize away
5031         ".", and treat ".." specially since it might stray back into
5032         already-created areas.  Use a subprocess if necessary.  New arg
5033         WD; all users changed.  MAKE_DIR function should now return 1
5034         if it creates a directory that is not readable.  Return -2 if
5035         a child process is spun off.
5036         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
5037         Adjust signature to match code.
5038         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
5039         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
5040         all users changed.
5041         * lib/savewd.c, lib/savewd.h: New files.
5042
5043 2006-09-15  Jim Meyering  <jim@meyering.net>
5044
5045         * modules/rename-dest-slash: New module.
5046         * MODULES.html.sh (posix_compat): Add it here.
5047
5048         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
5049
5050 2006-09-15  Jim Meyering  <jim@meyering.net>
5051
5052         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
5053         file.
5054
5055         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
5056
5057 2006-09-15  Jim Meyering  <jim@meyering.net>
5058
5059         * lib/rename-dest-slash.c (has_trailing_slash): Use
5060         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
5061         (rpl_rename_dest_slash): Perform the cheaper trailing slash
5062         test before testing whether SRC is a directory.
5063         Suggestions from Bruno Haible.
5064
5065         Avoid a warning about an unused variable.
5066         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
5067         into the #ifdef block where it's used.
5068
5069         * lib/rename-dest-slash.c: New file.
5070
5071 2006-09-14  Bruno Haible  <bruno@clisp.org>
5072
5073         * lib/allocsa.c: Include <config.h> unconditionally.
5074         * lib/asnprintf.c: Likewise.
5075         * lib/asprintf.c: Likewise.
5076         * lib/c-strcasecmp.c: Likewise.
5077         * lib/c-strcasestr.c: Likewise.
5078         * lib/c-strncasecmp.c: Likewise.
5079         * lib/c-strstr.c: Likewise.
5080         * lib/classpath.c: Likewise.
5081         * lib/clean-temp.c: Likewise.
5082         * lib/concatpath.c: Likewise.
5083         * lib/copy-file.c: Likewise.
5084         * lib/csharpcomp.c: Likewise.
5085         * lib/csharpexec.c: Likewise.
5086         * lib/execute.c: Likewise.
5087         * lib/fatal-signal.c: Likewise.
5088         * lib/findprog.c: Likewise.
5089         * lib/fwriteerror.c: Likewise.
5090         * lib/gl_array_list.c: Likewise.
5091         * lib/gl_array_oset.c: Likewise.
5092         * lib/gl_avltree_list.c: Likewise.
5093         * lib/gl_avltree_oset.c: Likewise.
5094         * lib/gl_avltreehash_list.c: Likewise.
5095         * lib/gl_carray_list.c: Likewise.
5096         * lib/gl_linked_list.c: Likewise.
5097         * lib/gl_linkedhash_list.c: Likewise.
5098         * lib/gl_list.c: Likewise.
5099         * lib/gl_oset.c: Likewise.
5100         * lib/gl_rbtree_list.c: Likewise.
5101         * lib/gl_rbtree_oset.c: Likewise.
5102         * lib/gl_rbtreehash_list.c: Likewise.
5103         * lib/imaxabs.c: Likewise.
5104         * lib/imaxdiv.c: Likewise.
5105         * lib/javacomp.c: Likewise.
5106         * lib/javaexec.c: Likewise.
5107         * lib/javaversion.c: Likewise.
5108         * lib/linebreak.c: Likewise.
5109         * lib/localcharset.c: Likewise.
5110         * lib/lock.c: Likewise.
5111         * lib/mbchar.c: Likewise.
5112         * lib/mbswidth.c: Likewise.
5113         * lib/mkdtemp.c: Likewise.
5114         * lib/pipe.c: Likewise.
5115         * lib/printf-args.c: Likewise.
5116         * lib/printf-parse.c: Likewise.
5117         * lib/progname.c: Likewise.
5118         * lib/progreloc.c: Likewise.
5119         * lib/readlink.c: Likewise.
5120         * lib/sh-quote.c: Likewise.
5121         * lib/stpcpy.c: Likewise.
5122         * lib/stpncpy.c: Likewise.
5123         * lib/strcasecmp.c: Likewise.
5124         * lib/strcasestr.c: Likewise.
5125         * lib/strcspn.c: Likewise.
5126         * lib/striconv.c: Likewise.
5127         * lib/strncasecmp.c: Likewise.
5128         * lib/strnlen1.c: Likewise.
5129         * lib/strstr.c: Likewise.
5130         * lib/strtok_r.c: Likewise.
5131         * lib/tls.c: Likewise.
5132         * lib/tmpdir.c: Likewise.
5133         * lib/unicodeio.c: Likewise.
5134         * lib/unsetenv.c: Likewise.
5135         * lib/vasnprintf.c: Likewise.
5136         * lib/vasprintf.c: Likewise.
5137         * lib/wait-process.c: Likewise.
5138         * lib/xallocsa.c: Likewise.
5139         * lib/xsetenv.c: Likewise.
5140         * lib/xstriconv.c: Likewise.
5141
5142 2006-09-13  Simon Josefsson  <jas@extundo.com>
5143
5144         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
5145         that internally, suggested by Ralf Wildenhues
5146         <Ralf.Wildenhues@gmx.de>.
5147
5148 2006-09-13  Simon Josefsson  <jas@extundo.com>
5149
5150         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
5151         @LIBOBJS@.
5152         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
5153
5154 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
5155
5156         * lib/_fpending.c: Include <config.h> unconditionally, since we no
5157         longer worry about uses that don't define HAVE_CONFIG_H.
5158         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
5159         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
5160         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
5161         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
5162         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
5163         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
5164         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
5165         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
5166         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
5167         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
5168         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
5169         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
5170         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
5171         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
5172         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
5173         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
5174         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
5175         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
5176         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
5177         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
5178         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
5179         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
5180         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
5181         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
5182         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
5183         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
5184         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
5185         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
5186         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
5187         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
5188         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
5189         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
5190         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
5191         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
5192         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
5193         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
5194         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
5195         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
5196         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
5197         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
5198         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
5199         Likewise.
5200
5201 2006-09-13  Eric Blake  <ebb9@byu.net>
5202
5203         * lib/getopt.c: Fix typo in last commit.
5204
5205 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
5206
5207         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
5208         dgettext.
5209
5210 2006-09-12  Jim Meyering  <jim@meyering.net>
5211
5212         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
5213         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
5214         Reported by Nelson H. F. Beebe.
5215
5216 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
5217
5218         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
5219         program_invocation_name and program_invocation_short_name are
5220         initialized.
5221         * lib/argp-namefrob.h: Move declarations of program_invocation_name
5222         and program_invocation_short_name to argp.h, so they are visible
5223         to user programs.
5224         * lib/argp.h: Likewise
5225
5226 2006-09-10  Bruno Haible  <bruno@clisp.org>
5227
5228         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
5229         m4/inttypes_h.m4, m4/uintmax_t.m4.
5230
5231 2006-09-10  Bruno Haible  <bruno@clisp.org>
5232
5233         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
5234         gl_AC_TYPE_UINTMAX_T.
5235
5236 2006-09-10  Bruno Haible  <bruno@clisp.org>
5237
5238         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
5239
5240 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
5241
5242         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
5243         convention.  Text proposed by Bruno Haible.
5244         (struct argp_option): Document the use of N_() wrappers.
5245
5246         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
5247         '\v', and translate the two parts separately, instead of feeding
5248         the whole string to gettext.  This allows to exclude
5249         '\v' from the strings visible to the translator by writing doc
5250         strings as N_("..") "\v" N_("..").
5251
5252 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
5253
5254         * config/srclist.txt: Undo latest change; the bug was fixed.
5255
5256 2006-09-09  Bruno Haible  <bruno@clisp.org>
5257
5258         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
5259         assignments if building a library without libtool.
5260         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
5261         in func_emit_lib_Makefile_am.
5262         (func_import): When building a static library libfoo.a, arrange to
5263         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
5264         (func_create_testdir): Likewise.
5265         * modules/gc (configure.ac, Makefile.am): If building statically,
5266         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
5267         * modules/iconvme (configure.ac, Makefile.am): Likewise.
5268         * modules/striconv (configure.ac, Makefile.am): Likewise.
5269         Based on a suggestion by Ralf Wildenhues.
5270
5271 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
5272
5273         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
5274         Check for unistd.h too, since Autoconf doesn't assume POSIX.
5275         Also:
5276
5277         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
5278         Add year_2050_test to catch glibc bug 2821
5279         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
5280
5281         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
5282         Prefer #ifdef to #if.
5283
5284         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
5285         Return from 'main' instead of calling 'exit'.
5286
5287 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
5288
5289         * lib/mktime.c (guess_time_tm): Fix bug where mktime
5290         returned the maximum time_t value rather than (time_t) -1.
5291         Problem originally reported by William Bardwell
5292         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
5293
5294         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
5295         Moved to here ...
5296         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
5297         ... from here.
5298
5299 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
5300
5301         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
5302         2821 is fixed.
5303
5304 2006-09-08  Jim Meyering  <jim@meyering.net>
5305
5306         Don't make generated files read-only.  That would bother too many
5307         people.  However, do retain the ability to work when targets are
5308         read-only: remove the destination and temporary files before writing
5309         them (when generated via sed or echo), or by using the -f option for
5310         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
5311         * modules/alloca-opt, modules/argz, modules/arpa_inet:
5312         * modules/byteswap, modules/configmake, modules/fcntl:
5313         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
5314         * modules/localcharset, modules/netinet_in, modules/poll:
5315         * modules/stdbool, modules/stdint, modules/sys_select:
5316         * modules/sys_socket, modules/sys_stat, modules/sysexits:
5317
5318 2006-09-08  Jim Meyering  <jim@meyering.net>
5319
5320         Avoid new build failure on FreeBSD 6.0.
5321         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
5322         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
5323         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
5324
5325 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5326
5327         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
5328
5329 2006-09-07  Jim Meyering  <jim@meyering.net>
5330
5331         Fix global typo in last change: use chmod u-w, not chmod u-x.
5332         Spotted by Paul Eggert and Bruce Korb.
5333         * modules/alloca-opt, modules/argz, modules/arpa_inet:
5334         * modules/byteswap, modules/configmake, modules/fcntl:
5335         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
5336         * modules/localcharset, modules/netinet_in, modules/poll:
5337         * modules/stdbool, modules/stdint, modules/sys_select:
5338         * modules/sys_socket, modules/sys_stat, modules/sysexits:
5339
5340 2006-09-06  Jim Meyering  <jim@meyering.net>
5341
5342         Make generated files be read-only.
5343         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
5344         Ensure that each generated file is now read-only.
5345         * modules/argz: Likewise.
5346         * modules/arpa_inet: Likewise.
5347         * modules/byteswap: Likewise.
5348         * modules/configmake: Likewise.
5349         * modules/fcntl: Likewise.
5350         * modules/fnmatch: Likewise.
5351         * modules/getopt: Likewise.
5352         * modules/glob: Likewise.
5353         * modules/inttypes: Likewise.
5354         * modules/netinet_in: Likewise.
5355         * modules/poll: Likewise.
5356         * modules/stdbool: Likewise.
5357         * modules/stdint: Likewise.
5358         * modules/sys_select: Likewise.
5359         * modules/sys_socket: Likewise.
5360         * modules/sys_stat: Likewise.
5361         * modules/sysexits: Likewise.
5362         * modules/localcharset: Same as above, but continue using temporary
5363         file named "t-$@" (why different?) rather than the "$@-t" used
5364         everywhere else.
5365
5366         * modules/sysexits (Makefile.am): Replace literal occurrences
5367         of "sysexit.h" more readable, and more consistent, "$@".
5368
5369 2006-09-06  Bruno Haible  <bruno@clisp.org>
5370
5371         * modules/striconv: New file.
5372         * modules/xstriconv: New file.
5373         * MODULES.html.sh (Internationalization functions): Add striconv,
5374         xstriconv.
5375
5376 2006-09-06  Bruno Haible  <bruno@clisp.org>
5377
5378         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
5379         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
5380         not using libtool correctly.
5381
5382 2006-09-06  Bruno Haible  <bruno@clisp.org>
5383
5384         * lib/striconv.h: New file.
5385         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
5386         iconvstring.c.
5387         * lib/xstriconv.h: New file.
5388         * lib/xstriconv.c: New file.
5389
5390 2006-09-06  Bruno Haible  <bruno@clisp.org>
5391
5392         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
5393         lib_..._LDFLAGS.
5394
5395 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5396
5397         * lib/argz_.h: Sync from Libtool.
5398
5399         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
5400                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
5401
5402         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
5403
5404 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
5405
5406         * modules/trim: New file.
5407
5408 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
5409
5410         * lib/trim.h: New file.
5411         * lib/trim.c: New file.
5412
5413 2006-09-05  Bruno Haible  <bruno@clisp.org>
5414
5415         * MODULES.html.sh (String handling): Add trim.
5416
5417 2006-09-04  Karl Berry  <karl@gnu.org>
5418
5419         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
5420         until next release.
5421
5422 2006-09-03  Bruno Haible  <bruno@clisp.org>
5423
5424         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
5425         correctly.
5426
5427 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
5428
5429         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
5430         not gl_GETLOADAVG.  Omit unneeded semicolons.
5431         Problems reported by Ralf Wildenhues in
5432         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
5433         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
5434         at the end, which is the usual gnulib style.
5435
5436         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
5437         of doing all the work ourselves.
5438         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
5439         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
5440
5441 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
5442
5443         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
5444         Problem reported by Ralf Wildenhues in
5445         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
5446
5447         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
5448         HAVE_STRUCT_STATFS_F_FSTYPENAME.
5449
5450 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
5451
5452         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
5453         yesterday's patch by changing test -n to test -z.
5454
5455 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
5456
5457         * modules/getloadavg (Files): Add m4/getloadavg.m4.
5458         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
5459         the former is now obsolescent.
5460
5461         * modules/chdir-long (Depends-on): Add fcntl.
5462
5463 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
5464
5465         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
5466         obsolescent, and programs should use gnulib instead.
5467         * m4/getloadavg.m4: New file, with contents taken from Autoconf
5468         but with prefixes changed.
5469
5470 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
5471
5472         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
5473         or stdbool.h, because they might not exist while configuring.
5474
5475         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
5476         Don't include unistd.h or limits.h; not needed, since chdir-long.h
5477         does that for us.
5478         (O_DIRECTORY): Remove.
5479
5480 2006-08-31  Eric Blake  <ebb9@byu.net>
5481
5482         * gnulib-tool: Don't let emacs change spaces to TAB.
5483
5484 2006-08-31  Bruno Haible  <bruno@clisp.org>
5485
5486         * gnulib-tool: When calling func_import more than once, do it in a
5487         subshell.
5488         Reported by Eric Blake <ebb9@byu.net>.
5489
5490 2006-08-31  Bruno Haible  <bruno@clisp.org>
5491
5492         * gnulib-tool (nl): Remove variable.
5493         (sed_transform_lib_file): Use more robust test for config-h module.
5494         (func_import): Fix typo in 2006-08-25 patch.
5495
5496 2006-08-31  Bruno Haible  <bruno@clisp.org>
5497
5498         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
5499         specified, augment Makefile.am variables instead of assigning them.
5500
5501 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
5502
5503         Work around a bug in both the Linux and SunOS 64-bit kernels:
5504         nanosleep mishandles sleeps for longer than 2**31 seconds.
5505         Problem reported by Frank v Waveren in
5506         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
5507         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
5508         Check for nanosleep bug.
5509         (LIB_NANOSLEEP): Append clock_gettime library if needed.
5510
5511 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
5512
5513         Work around a bug in both the Linux and SunOS 64-bit kernels:
5514         nanosleep mishandles sleeps for longer than 2**31 seconds.
5515         Problem reported by Frank v Waveren in
5516         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
5517         * lib/nanosleep.c (BILLION): New constant.
5518         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
5519         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
5520         implementation.
5521
5522 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
5523
5524         * modules/nanosleep (Depends-on): Add gettime.
5525
5526 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
5527         and Simon Josefsson  <jas@extundo.com>
5528         and Oskar Liljeblad  <oskar@osk.mine.nu>
5529
5530         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
5531         * gnulib-tool (func_import): New license type 'unmodifiable license
5532         text'.
5533         * modules/fdl: Use it.  Longer description.
5534         * module/gpl, module/lgpl: New files.
5535
5536 2006-08-30  Jim Meyering  <jim@meyering.net>
5537
5538         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
5539         shadowing the parameter.
5540
5541 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5542
5543         Sync from Libtool:
5544
5545         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5546
5547         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
5548         sharing with gnulib.  Report by Eric Blake.
5549
5550 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
5551
5552         * modules/isapipe: New file.
5553         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
5554
5555 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
5556
5557         * modules/configmake (Makefile.am): Add a comment, and omit
5558         the CONFIGMAKE_ prefix from generated macro names.  Suggested
5559         by Bruno Haible.
5560
5561 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
5562
5563         * m4/isapipe.m4: New file.
5564
5565 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
5566
5567         * lib/isapipe.c, lib/isapipe.h: New files.
5568
5569 2006-08-29  Jim Meyering  <jim@meyering.net>
5570
5571         * modules/configmake (Makefile.am): Make configmake.h depend on
5572         Makefile.  Otherwise, a stale configmake.h could hang around.
5573
5574 2006-08-29  Eric Blake  <ebb9@byu.net>
5575
5576         * lib/error.c (error_at_line, print_errno_message): Match libc, after
5577         resolution of upstream bug 3044.
5578
5579 2006-08-29  Bruno Haible  <bruno@clisp.org>
5580
5581         * modules/localcharset (Depends-on): Add configmake.
5582         (Makefile.am): Remove setting of LIBDIR through DEFS.
5583
5584 2006-08-29  Bruno Haible  <bruno@clisp.org>
5585
5586         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
5587         defined.
5588
5589 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
5590
5591         * modules/fcntl: New file.
5592         * modules/chdir-safer (Depends-on): Add fcntl.
5593         * modules/fts: Likewise.
5594         * modules/mkdir-p: Likewise.
5595
5596         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
5597         This undoes the most recent change, since we're now addressing the
5598         problem in a different way.
5599
5600         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
5601         into output, since the output might be called Makefile.am even
5602         if $makefile_name is something different.
5603         (func_import): Use $makefile_am rather than
5604         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
5605         empty.
5606
5607         * modules/inttypes (Files): Add m4/inttypes-h.m4.
5608
5609 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
5610
5611         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
5612         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
5613         recent change to stdint.m4, since we're now addressing the problem in a
5614         different way.
5615
5616 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
5617
5618         * m4/fcntl_h.m4: New file.
5619
5620 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
5621
5622         * lib/fcntl_.h: New file.
5623         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
5624         the fcntl module.
5625         * lib/dirchownmod.c: Likewise.
5626         * lib/fts.c: Likewise.
5627
5628         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
5629         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
5630         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
5631         just before including <inttypes.h>, to avoid circular inclusion.
5632
5633 2006-08-28  Jim Meyering  <jim@meyering.net>
5634
5635         * doc/visibility.texi: Actually read and correct the grammar of the
5636         sentence affected by yesterday's change.
5637
5638 2006-08-28  Eric Blake  <ebb9@byu.net>
5639
5640         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
5641         needs wrapper.
5642
5643 2006-08-28  Eric Blake  <ebb9@byu.net>
5644
5645         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
5646
5647 2006-08-28  Eric Blake  <ebb9@byu.net>
5648
5649         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
5650
5651 2006-08-28  Bruno Haible  <bruno@clisp.org>
5652
5653         * modules/c-strstr: New file, from GNU gettext.
5654         * MODULES.html.sh (String handling): Add c-strstr.
5655
5656 2006-08-28  Bruno Haible  <bruno@clisp.org>
5657
5658         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
5659         macros.
5660         Reported by Eric Blake.
5661
5662 2006-08-28  Bruno Haible  <bruno@clisp.org>
5663
5664         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
5665         (VASNPRINTF): Return a string of length > INT_MAX without failing.
5666         * lib/vasprintf.c: Include errno.h, limits.h.
5667         (EOVERFLOW): New fallback definition.
5668         (vasprintf): Test here whether the string length is > INT_MAX.
5669         * lib/vsnprintf.c: Include errno.h, limits.h.
5670         (EOVERFLOW): New fallback definition.
5671         (vsnprintf): Fix bug when generated string was too long for the buffer.
5672         Test here whether the string length is > INT_MAX.
5673
5674 2006-08-28  Bruno Haible  <bruno@clisp.org>
5675
5676         * lib/inttypes_.h (SCNX*): Remove definitions.
5677         Reported by Eric Blake.
5678
5679 2006-08-28  Bruno Haible  <bruno@clisp.org>
5680
5681         * lib/c-strstr.h: New file, from GNU gettext.
5682         * lib/c-strstr.c: New file, from GNU gettext.
5683
5684 2006-08-28  Bruno Haible  <bruno@clisp.org>
5685
5686         * gnulib-tool: Reorder some statements.
5687
5688 2006-08-28  Bruno Haible  <bruno@clisp.org>
5689
5690         * gnulib-tool: New option --makefile-name.
5691         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
5692         $makefile_name.
5693         (func_import): Write $makefile_name to the cache file, and read it from
5694         there unless explicitly specified. Use $makefile_name as file name
5695         instead of Makefile.am. Adjust the recommendations accordingly.
5696
5697 2006-08-28  Bruno Haible  <bruno@clisp.org>
5698
5699         * gnulib-tool (func_verify_module): Check against misapplying patch.
5700
5701 2006-08-28  Bruno Haible  <bruno@clisp.org>
5702
5703         * gnulib-tool (func_relativize, func_relconcat): New functions.
5704         Give an error if --local-dir is given with --update.
5705         Remove trailing slashes from $local_gnulib_dir.
5706         (func_import): Store the relativized $local_gnulib_dir in
5707         gnulib-cache.m4, and read it from there if not specified explicitly.
5708
5709 2006-08-28  Bruno Haible  <bruno@clisp.org>
5710
5711         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
5712         is the current directory. Respect also $local_gnulib_dir.
5713
5714 2006-08-28  Bruno Haible  <bruno@clisp.org>
5715             Simon Josefsson  <jas@extundo.com>
5716
5717         BeOS portability.
5718         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
5719
5720 2006-08-27  Jim Meyering  <jim@meyering.net>
5721
5722         * doc/visibility.texi: Remove duplicate word: "pointer".
5723
5724 2006-08-26  Bruno Haible  <bruno@clisp.org>
5725
5726         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
5727         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
5728         (Makefile.am): Create inttypes.h from inttypes_.h.
5729         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
5730
5731         * modules/imaxabs: New file.
5732
5733         * modules/imaxdiv: New file.
5734
5735 2006-08-26  Bruno Haible  <bruno@clisp.org>
5736
5737         * m4/inttypes.m4: New file.
5738         * m4/_inttypes_h.m4: Remove file.
5739         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
5740         PRI_MACROS_BROKEN.
5741         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
5742
5743         * m4/imaxabs.m4: New file.
5744
5745         * m4/imaxdiv.m4: New file.
5746
5747 2006-08-26  Bruno Haible  <bruno@clisp.org>
5748
5749         * lib/inttypes_.h: New file.
5750         * lib/inttypes.h: Remove file.
5751         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
5752
5753         * lib/imaxabs.c: New file.
5754
5755         * lib/imaxdiv.c: New file.
5756
5757 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
5758
5759         New config-h module, so that "make" output needn't be cluttered
5760         by -DHAVE_CONFIG_H.
5761         * MODULES.html.sh (Support for building libraries and executables):
5762         Add config-h.
5763         * modules/config-h: New file.
5764         * gnulib-tool (nl, sed_transform_lib_file): New vars.
5765         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
5766         the config-h module is used.
5767
5768         New configmake module, so that "make" output needn't be cluttered
5769         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
5770         * MODULES.html.sh (Support for building libraries and executables):
5771         Add configmake.
5772         * modules/configmake: New file.
5773
5774 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
5775
5776         * m4/config-h.m4: New file.
5777
5778 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
5779
5780         * config/srclist.txt: Add elisp-comp.
5781
5782 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
5783
5784         * MODULES.html.sh (Support for building libraries and executables):
5785         Add elisp-comp.
5786         * build-aux/elisp-comp: New file.
5787         * modules/elisp-comp: New file.
5788
5789 2006-08-24  Bruno Haible  <bruno@clisp.org>
5790
5791         * gnulib-tool (func_create_testdir): Use non-default values of
5792         sourcebase and m4base.
5793
5794 2006-08-24  Bruno Haible  <bruno@clisp.org>
5795
5796         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
5797         HTML structure.
5798
5799 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
5800
5801         * modules/openat (Depends-on): Add lchown.
5802
5803 2006-08-23  Bruno Haible  <bruno@clisp.org>
5804
5805         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
5806         of gl_LOCK_EARLY instead of gl_LOCK.
5807
5808 2006-08-23  Bruno Haible  <bruno@clisp.org>
5809
5810         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
5811         on OSF/1 to no.
5812         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
5813
5814 2006-08-23  Bruno Haible  <bruno@clisp.org>
5815
5816         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
5817         as unusable.
5818
5819         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
5820         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
5821         (gl_LOCK): New macro.
5822
5823 2006-08-22  Simon Josefsson  <jas@extundo.com>
5824
5825         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
5826         to md5 module.
5827
5828 2006-08-22  Simon Josefsson  <jas@extundo.com>
5829
5830         * MODULES.html.sh: Add "Support for maintaining and release
5831         projects".
5832
5833         * build-aux/gnupload: New file, from coreutils.
5834
5835 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
5836
5837         Avoid the need for AC_LIBSOURCES in m4 macros.
5838         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
5839         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
5840         * modules/check-version (EXTRA_DIST): Add check-version.h.
5841         * modules/crc (EXTRA_DIST): Add crc.h.
5842         * modules/des (EXTRA_DIST): Add des.h.
5843         * modules/gc (EXTRA_DIST): Add gc.h.
5844         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
5845         * modules/getline (EXTRA_DIST): Add getline.h.
5846         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
5847         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
5848         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
5849         * modules/md2 (EXTRA_DIST): Add md2.h.
5850         * modules/md4 (EXTRA_DIST): Add md4.h.
5851         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
5852         * modules/read-file (EXTRA_DIST): Add read-file.h.
5853         * modules/readline (EXTRA_DIST): Add readline.h.
5854         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
5855         rijndael-api-fst.h.
5856
5857 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
5858
5859         * m4/rijndael.m4 (gl_ARCFOUR):
5860         * m4/arctwo.m4 (gl_ARCTWO):
5861         * m4/check-version.m4 (gl_CHECK_VERSION):
5862         * m4/crc.m4 (gl_CRC):
5863         * m4/des.m4 (gl_DES):
5864         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
5865         * m4/gc.m4 (gl_GC):
5866         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
5867         * m4/getline.m4 (gl_FUNC_GETLINE):
5868         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
5869         * m4/hmac-md5.m4 (gl_HMAC_MD5):
5870         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
5871         * m4/md2.m4 (gl_MD2):
5872         * m4/md4.m4 (gl_MD4):
5873         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
5874         * m4/read-file.m4 (gl_FUNC_READ_FILE):
5875         * m4/readline.m4 (gl_FUNC_READLINE):
5876         * m4/rijndael.m4 (gl_RIJNDAEL):
5877         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
5878         to get the necessary .h files and whatnot.
5879
5880 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
5881
5882         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
5883         gnulib rather than the other way around.
5884         * config/srclistvars.sh (COREUTILS): Remove.
5885
5886 2006-08-22  Jim Meyering  <jim@meyering.net>
5887
5888         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
5889
5890         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
5891
5892 2006-08-22  Eric Blake  <ebb9@byu.net>
5893
5894         * modules/regexprops-generic: New file.
5895         * MODULES.html.sh (Support for building documentation): List it.
5896
5897 2006-08-22  Eric Blake  <ebb9@byu.net>
5898
5899         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
5900         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
5901         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
5902         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
5903
5904 2006-08-22  Bruno Haible  <bruno@clisp.org>
5905
5906         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
5907         and lib_LTLIBRARIES like the other lib_* variables.
5908
5909 2006-08-22  Bruno Haible  <bruno@clisp.org>
5910
5911         * build-aux/x-to-1.in: New file, from GNU gettext.
5912
5913 2006-08-22  Bruno Haible  <bruno@clisp.org>
5914
5915         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
5916         <utmpx.h> exists.
5917
5918 2006-08-22  Bruno Haible  <bruno@clisp.org>
5919
5920         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
5921         <utmpx.h> exists.
5922
5923 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
5924
5925         BeOS portability.
5926         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
5927         exist.
5928         Problem reported by Bruno Haible.
5929
5930 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
5931
5932         Avoid the need for AC_LIBSOURCES in m4 macros.
5933         * modules/acl (EXTRA_DIST): Add acl.h.
5934         * modules/argmatch (Files): Add m4/argmatch.m4.
5935         (configure.ac): Add gl_ARGMATCH.
5936         (EXTRA_DIST): Renamed from lib_SOURCES, for
5937         consistency with the other modules.  Remove argmatch.c.
5938         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
5939         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
5940         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
5941         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
5942         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
5943         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
5944         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
5945         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
5946         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
5947         * modules/closeout (EXTRA_DIST): Add closeout.h.
5948         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
5949         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
5950         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
5951         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
5952         dirname.h; remove basename.c and stripslash.c.
5953         * modules/exclude (EXTRA_DIST): Add exclude.h.
5954         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
5955         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
5956         * modules/file-type (EXTRA_DIST): Add file-type.h.
5957         * modules/filemode (EXTRA_DIST): Add filemode.h.
5958         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
5959         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
5960         * modules/fpending (EXTRA_DIST): Add __fpending.h.
5961         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
5962         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
5963         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
5964         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
5965         * modules/getdate (EXTRA_DIST): Add getdate.c.
5966         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
5967         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
5968         * modules/getpass (EXTRA_DIST): Add getpass.h.
5969         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
5970         * modules/group-member (EXTRA_DIST): Add group-member.h.
5971         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
5972         * modules/hash (EXTRA_DIST): Add hash.h.
5973         * modules/human (EXTRA_DIST): Add human.h.
5974         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
5975         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
5976         * modules/lchown (EXTRA_DIST): Add lchown.h.
5977         * modules/long-options (EXTRA_DIST): Add long-options.h.
5978         * modules/lstat (EXTRA_DIST): Add lstat.h.
5979         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
5980         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
5981         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
5982         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
5983         * modules/memxor (EXTRA_DIST): Add memxor.h.
5984         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
5985         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
5986         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
5987         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
5988         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
5989         * modules/physmem (EXTRA_DIST): Add physmem.h.
5990         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
5991         * modules/posixver (EXTRA_DIST): Add posixver.h.
5992         * modules/quote (EXTRA_DIST): Add quote.h.
5993         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
5994         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
5995         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
5996         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
5997         regex_internal.h regexec.c.
5998         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
5999         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
6000         * modules/same (EXTRA_DIST): Add same.h.
6001         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
6002         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
6003         * modules/savedir (EXTRA_DIST): Add savedir.h.
6004         * modules/sha1 (EXTRA_DIST): Add sha1.h.
6005         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
6006         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
6007         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
6008         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
6009         * modules/strdup (EXTRA_DIST): Add strdup.h.
6010         * modules/strftime (EXTRA_DIST): Add strftime.h.
6011         * modules/strndup (EXTRA_DIST): Add strndup.h.
6012         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
6013         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
6014         * modules/time_r (EXTRA_DIST): Add time_r.h.
6015         * modules/timespec (EXTRA_DIST): Add timespec.h.
6016         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
6017         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
6018         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
6019         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
6020         * modules/userspec (EXTRA_DIST): Add userspec.h.
6021         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
6022         * modules/utimens (EXTRA_DIST): Add utimens.h.
6023         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
6024         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
6025         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
6026         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
6027         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
6028         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
6029         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
6030         * modules/yesno (EXTRA_DIST): Add yesno.h.
6031
6032 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
6033
6034         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
6035
6036         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
6037         * m4/dev-ino.m4, same-inode.m4: Remove.
6038
6039         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
6040         * m4/acl.m4 (AC_FUNC_ACL):
6041         * m4/backupfile.m4 (gl_BACKUPFILE):
6042         * m4/c-strtod.m4 (gl_C99_STRTOLD):
6043         * m4/canon-host.m4 (gl_CANON_HOST):
6044         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
6045         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
6046         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
6047         * m4/cloexec.m4 (gl_CLOEXEC):
6048         * m4/close-stream.m4 (gl_CLOSE_STREAM):
6049         * m4/closeout.m4 (gl_CLOSEOUT):
6050         * m4/dirfd.m4 (gl_FUNC_DIRFD):
6051         * m4/dirname.m4 (gl_DIRNAME):
6052         * m4/exclude.m4 (gl_EXCLUDE):
6053         * m4/exitfail.m4 (gl_EXITFAIL):
6054         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
6055         * m4/file-type.m4 (gl_FILE_TYPE):
6056         * m4/filemode.m4 (gl_FILEMODE):
6057         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
6058         * m4/fpending.m4 (gl_FUNC_FPENDING):
6059         * m4/fprintftime.m4 (gl_FPRINTFTIME):
6060         * m4/fts.m4 (gl_FUNC_FTS):
6061         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
6062         * m4/getdate.m4 (gl_GETDATE):
6063         * m4/gethrxtime.m4 (gl_GETHRXTIME):
6064         * m4/getpagesize.m4 (gl_GETPAGESIZE):
6065         * m4/getpass.m4 (gl_FUNC_GETPASS):
6066         * m4/gettime.m4 (gl_GETTIME):
6067         * m4/getugroups.m4 (gl_GETUGROUPS):
6068         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
6069         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
6070         * m4/hard-locale.m4 (gl_HARD_LOCALE):
6071         * m4/hash.m4 (gl_HASH):
6072         * m4/idcache.m4 (gl_IDCACHE):
6073         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
6074         * m4/lchown.m4 (gl_FUNC_LCHOWN):
6075         * m4/long-options.m4 (gl_LONG_OPTIONS):
6076         * m4/lstat.m4 (gl_FUNC_LSTAT):
6077         * m4/md5.m4 (gl_MD5):
6078         * m4/memcasecmp.m4 (gl_MEMCASECMP):
6079         * m4/memcoll.m4 (gl_MEMCOLL):
6080         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
6081         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
6082         * m4/memxor.m4 (gl_MEMXOR):
6083         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
6084         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
6085         * m4/modechange.m4 (gl_MODECHANGE):
6086         * m4/mountlist.m4 (gl_MOUNTLIST):
6087         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
6088         * m4/openat.m4 (gl_FUNC_OPENAT):
6089         * m4/pathmax.m4 (gl_PATHMAX):
6090         * m4/physmem.m4 (gl_PHYSMEM):
6091         * m4/posixtm.m4 (gl_POSIXTM):
6092         * m4/posixver.m4 (gl_POSIXVER):
6093         * m4/quote.m4 (gl_QUOTE):
6094         * m4/quotearg.m4 (gl_QUOTEARG):
6095         * m4/readtokens.m4 (gl_READTOKENS):
6096         * m4/readutmp.m4 (gl_READUTMP):
6097         * m4/regex.m4 (gl_REGEX):
6098         * m4/safe-read.m4 (gl_SAFE_READ):
6099         * m4/safe-write.m4 (gl_SAFE_WRITE):
6100         * m4/same.m4 (gl_SAME):
6101         * m4/save-cwd.m4 (gl_SAVE_CWD):
6102         * m4/savedir.m4 (gl_SAVEDIR):
6103         * m4/settime.m4 (gl_SETTIME):
6104         * m4/sha1.m4 (gl_SHA1):
6105         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
6106         * m4/stat-macros.m4 (gl_STAT_MACROS):
6107         * m4/stat-time.m4 (gl_STAT_TIME):
6108         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
6109         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
6110         * m4/strdup.m4 (gl_FUNC_STRDUP):
6111         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
6112         * m4/strndup.m4 (gl_FUNC_STRNDUP):
6113         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
6114         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
6115         * m4/time_r.m4 (gl_TIME_R):
6116         * m4/timespec.m4 (gl_TIMESPEC):
6117         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
6118         * m4/unlinkdir.m4 (gl_UNLINKDIR):
6119         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
6120         * m4/userspec.m4 (gl_USERSPEC):
6121         * m4/utimecmp.m4 (gl_UTIMECMP):
6122         * m4/utimens.m4 (gl_UTIMENS):
6123         * m4/xalloc.m4 (gl_XALLOC):
6124         * m4/xgetcwd.m4 (gl_XGETCWD):
6125         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
6126         * m4/xreadlink.m4 (gl_XREADLINK):
6127         * m4/xstrtod.m4 (gl_XSTRTOD):
6128         * m4/yesno.m4 (gl_YESNO):
6129         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
6130         to get the necessary .h files and whatnot.
6131
6132 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
6133             Bruno Haible  <bruno@clisp.org>
6134
6135         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
6136         /bin/sh understanding of '!' conditional negation.
6137
6138 2006-08-21  Jim Meyering  <jim@meyering.net>
6139
6140         * modules/openat (Depends-on): Really alphabetize.
6141
6142         * modules/acl (Depends-on): Add error and quote.
6143
6144         * check-module (find_included_lib_files): Add at-func.c to the
6145         ok-to-include-more-than-once white list.
6146
6147         * modules/openat (Depends-on): Add lstat.  Alphabetize.
6148
6149 2006-08-21  Bruno Haible  <bruno@clisp.org>
6150
6151         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
6152         Emit a pkgdata_DATA variable only if some snippets add contents to it.
6153         Reported by Martin Lambers <marlam@marlam.de>.
6154
6155 2006-08-21  Bruno Haible  <bruno@clisp.org>
6156
6157         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
6158         specify an installation location, don't emit a noinst_LIBRARIES or
6159         noinst_LTLIBRARIES assignment.
6160
6161 2006-08-21  Bruno Haible  <bruno@clisp.org>
6162
6163         BeOS portability.
6164         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
6165         BeOS has mbrtowc() but no <wctype.h>.
6166
6167 2006-08-21  Bruno Haible  <bruno@clisp.org>
6168
6169         BeOS portability.
6170         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
6171         exist.
6172
6173 2006-08-21  Bruno Haible  <bruno@clisp.org>
6174
6175         BeOS portability.
6176         * lib/mbchar.h: Include <wctype.h> only if it exists.
6177
6178 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
6179
6180         Remove files that are no longer needed by their respective modules.
6181         * m4/obstack.m4: Remove.
6182         * m4/strerror_r.m4: Remove.
6183         * m4/uint32_t.m4: Remove.
6184         * m4/uintptr_t.m4: Remove.
6185         * m4/ullong_max.m4: Remove.
6186         * m4/xstrtoimax.m4: Remove.
6187         * m4/xstrtoumax.m4: Remove.
6188
6189         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
6190         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
6191         dependencies now capture this.
6192
6193         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
6194         Do not use AC_LIBSOURCES, since gnulib modules now do this.
6195         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
6196         * m4/human.m4 (gl_HUMAN): Likewise.
6197         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
6198         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
6199
6200         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
6201
6202         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
6203         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
6204         stdint.
6205         * m4/human.m4 (gl_HUMAN): Likewise.
6206         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
6207         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
6208         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
6209         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
6210         * m4/xstrtol (gl_XSTRTOL): Likewise.
6211
6212         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
6213         AC_TYPE_LONG_LONG_INT.
6214         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
6215         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
6216         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
6217         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
6218
6219         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
6220         on stdbool.
6221
6222         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
6223         (gl_PREREQ_XSTRTOUL): Remove.
6224
6225         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
6226
6227         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
6228         mode.
6229
6230 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
6231
6232         Add and change modules to make it easier for coreutils to use
6233         gnulib-tool.
6234         * modules/backupfile (Files): Remove m4/d-ino.m4.
6235         (Depends-on): Add d-ino.
6236         * modules/cycle-check (Depends-on): Add stdint.
6237         (lib_SOURCES): Add cycle-check.h.
6238         * modules/d-ino: New module.
6239         * modules/d-type: New module.
6240         * modules/error (Files): Remove m4/strerror_r.m4.
6241         * modules/filemode (Files): Add m4/st_dm_mode.m4.
6242         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
6243         m4/inttypes_h.m4, m4/uintmax_t.m4.
6244         (Depends-on): Add stdint.
6245         (lib_SOURCES): Add fsusage.h.
6246         * modules/getcwd (Files): Remove d-ino.m4.
6247         (Depends-on): Add d-ino.
6248         * modules/getndelim2 (Depends-on): Add stdint.
6249         * modules/glob (Files): Remove m4/d-type.m4.
6250         (Depends-on): Add d-type.
6251         * modules/host-os: New module.
6252         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
6253         m4/inttypes_h.m4, m4/uintmax_t.m4.
6254         * Depends-on: Add stdint.
6255         (lib_SOURCES): Add human.h.
6256         * modules/inttostr (Files): Remove m4/intmax_t.m4,
6257         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
6258         m4/uintmax_t.m4, m4/ulonglong.m4.
6259         (Depends-on): Add stdint.
6260         (EXTRA_DIST): Add inttostr.h.
6261         * modules/lchmod: New module.
6262         * modules/link-follow: New module.
6263         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
6264         (Depends-on): Add lchmod.
6265         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
6266         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
6267         (Depends-on): Add stdint.
6268         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
6269         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
6270         (Depends-on): Add stdint.
6271         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
6272         * modules/perl: New module.
6273         * modules/regex (Depends-on): Add stdint.
6274         * modules/rmdir-errno: New module.
6275         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
6276         m4/intmax_t.m4.
6277         (Depends-on): Add stdint.
6278         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
6279         m4/uintmax_t.m4.
6280         (Depends-on): Add stdint.
6281         * modules/unlink-busy: New module.
6282         * modules/utimecmp (Depends-on): Add stdint.
6283         * modules/uptime: New module.
6284         * modules/winsz-ioctl: New module.
6285         * modules/winsz-termios: New module.
6286         * modules/xnanosleep (Depends-on): Add nanosleep.
6287         * modules/ullong_max: Remove.
6288         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
6289         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
6290         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
6291         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
6292         (Depends-on): Add inttypes.
6293         (lib_SOURCES): Add xstrtol.h.
6294         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
6295         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
6296         * MODULES.html.sh: Move 'assert' into the assert section.
6297         Move 'dummy' into the linking section.
6298         Remove ullong_max.
6299         Add section for compatibility checks for POSIX:2001 functions,
6300         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
6301         winsz-ioctl, and winsz-termios into it.
6302         Add lchmod.
6303         Add top-level Misc section and put host-os, perl, and uptime
6304         into it.
6305
6306 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
6307
6308         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
6309         now assume the stdint module.  Do not include inttypes.h.
6310         * lib/fsusage.h: Likewise.
6311         * lib/getndelim2.c: Likewise.
6312         * lib/human.h: Likewise.
6313         * lib/inttostr.h: Likewise.
6314         * lib/obstack.c: Likewise.
6315         * lib/regex_internal.h: Likewise.
6316         * lib/tempname.c: Likewise.
6317         * lib/utimecmp.c: Likewise.
6318         * lib/xstrtol.h: Likewise.
6319
6320         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
6321
6322         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
6323         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
6324         * lib/xtime.h: Likewise.
6325
6326 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
6327
6328         * modules/openat (Files): Add lib/fchmodat.c.
6329         Fixes problem reported by Jay Youngman.
6330
6331 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
6332
6333         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
6334         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
6335
6336 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
6337             Bruno Haible  <bruno@clisp.org>
6338
6339         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
6340         and is a script that invokes bison. Tighten the code. Add comments.
6341
6342 2006-08-18  Jim Meyering  <jim@meyering.net>
6343
6344         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
6345         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
6346         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
6347         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
6348
6349 2006-08-18  Bruno Haible  <bruno@clisp.org>
6350
6351         * modules/bison-i18n: New file.
6352         * MODULES.html.sh (Internationalization functions): Add it.
6353
6354 2006-08-18  Bruno Haible  <bruno@clisp.org>
6355
6356         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
6357         sys/statvfs.h. When getmntinfo was found, check its declaration and
6358         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
6359
6360 2006-08-18  Bruno Haible  <bruno@clisp.org>
6361
6362         * m4/bison-i18n.m4: New file, from bison.
6363
6364 2006-08-18  Bruno Haible  <bruno@clisp.org>
6365
6366         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
6367         (ME_DUMMY): Treat "kernfs" as a dummy.
6368         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
6369
6370 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
6371
6372         Update from coreutils.
6373
6374         2006-08-15  Jim Meyering  <jim@meyering.net>
6375
6376         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
6377
6378         2006-01-17  Jim Meyering  <jim@meyering.net>
6379
6380         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
6381
6382         2006-01-11  Jim Meyering  <jim@meyering.net>
6383
6384         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
6385         Check for the lchmod function.
6386
6387 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
6388
6389         Update from coreutils.
6390
6391         * lib/__fpending.h: Add copyright notice.
6392         * lib/fprintftime.h: Likewise.
6393         * lib/savedir.c: Use (C) in copyright notice.
6394         * lib/savedir.h: Likewise.
6395
6396         2006-08-15  Jim Meyering  <jim@meyering.net>
6397
6398         * lib/at-func.c: New file, with the logic of all emulated at-functions.
6399         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
6400         in support of the EXPECTED_ERRNO macro.
6401         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
6402         definitions.  Instead, define the appropriate symbols and include
6403         "at-func.c".
6404         * lib/mkdirat.c (mkdirat): Likewise.
6405         * lib/fchmodat.c (fchmodat): Likewise.
6406         (ENOSYS): Remove definition.
6407         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
6408         it.  Don't include "unistd--.h" -- it wasn't ever used.
6409
6410         2006-01-17  Jim Meyering  <jim@meyering.net>
6411
6412         Rewrite fts.c not to change the current working directory,
6413         by using openat, fstatat, fdopendir, etc..
6414
6415         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
6416         (HAVE_OPENAT_SUPPORT): Define.
6417         [_LIBC] (fchdir): Don't undef or define; no longer used.
6418         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
6419         Now, this `function' always succeeds, and consumes its file descriptor
6420         parameter -- so callers must not close such FDs.  Update callers.
6421         (diropen_fd, opendirat, cwd_advance_fd): New functions.
6422         (diropen): Add parameter, SP.  Adjust all callers.
6423         Implement using diropen_fd, rather than open.
6424         (fts_open): Initialize new member, fts_cwd_fd.
6425         Remove fts_rft-setting code.
6426         (fts_close): Close fts_cwd_fd, if necessary.
6427         (__opendir2): Define in terms of opendir or opendirat,
6428         depending on whether the FST_NOCHDIR flag is set.
6429         (fts_build): Since fts_safe_changedir consumes its FD, and since
6430         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
6431         and close the dup'd file descriptor upon failure.
6432         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
6433         (fts_safe_changedir): Tweak semantics to reflect that this function
6434         now calls cwd_advance_fd and hence consumes its FD argument.
6435         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
6436         [struct FTS] (fts_rft): Remove now-unused member.
6437         [struct FTS] (fts_cycle.state): Improve comment.
6438
6439         * lib/openat.c (openat_needs_fchdir): New function.
6440         * lib/openat.h (openat_needs_fchdir): Declare it.
6441
6442 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
6443
6444         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
6445         Problem and fix reported by Pádraig Brady in
6446         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
6447
6448 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
6449
6450         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
6451
6452 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
6453
6454         * lib/memcoll.c (memcoll): Optimize for the common case where the
6455         arguments are bytewise equal.
6456
6457 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
6458
6459         * doc/regexprops-generic.texi: Add a copyright notice.
6460
6461 2006-08-15  Bruno Haible  <bruno@clisp.org>
6462
6463         * modules/tmpdir (License): Change to LGPL.
6464
6465 2006-08-15  Bruno Haible  <bruno@clisp.org>
6466
6467         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
6468         module.
6469
6470 2006-08-14  Simon Josefsson  <jas@extundo.com>
6471
6472         * config/srclist.txt: Add gnupload.
6473
6474 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
6475
6476         Change copyright notice from LGPL 2 to GPL 2, since that's the
6477         standard form used in the gnulib repository.
6478         * tests/test-lock.c: Likewise.
6479         * tests/test-stdint.c: Likewise.
6480         * tests/test-tls.c: Likewise.
6481
6482         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
6483         prelude-manager.  User shorter URLs for GNU projects, without '?'.
6484         Add copyright notice.
6485
6486         * check-module: Add copyright notice.  Output a copyright
6487         notice if "--version" is specified.
6488         * modules/COPYING: New file.
6489         * tests/test-getaddrinfo.c: Add copyright notice.
6490         * tests/test-verify.c: Likewise.
6491
6492 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
6493
6494         Change copyright notice from LGPL 2 to GPL 2, since that's the
6495         standard form used in the gnulib repository.
6496         * lib/lock.c: LGPL -> GPL.
6497         * lib/lock.h: Likewise.
6498         * lib/strnlen1.c: Likewise.
6499         * lib/strnlen1.h: Likewise.
6500         * lib/tls.c: Likewise.
6501         * lib/tls.h: Likewise.
6502         * lib/tmpdir.c: Likewise.
6503
6504         * lib/TODO: Remove; this belongs only in coreutils.
6505
6506 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
6507
6508         Add copyright notices to long-enough files that lack them, since
6509         otherwise the files aren't clearly free.  Use the same notice that
6510         getdate.texi already uses.
6511         * doc/alloca-opt.texi: Add copyright notice.
6512         * doc/alloca.texi: Likewise.
6513         * doc/ctime.texi: Likewise.
6514         * doc/functions.texi: Likewise.
6515         * doc/gcd.texi: Likewise.
6516         * doc/gnulib-tool.texi: Likewise.
6517         * doc/inet_ntoa.texi: Likewise.
6518         * doc/visibility.texi: Likewise.
6519
6520         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
6521         * doc/quote.texi: Add copyright notice.
6522
6523         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
6524         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
6525         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
6526         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
6527         is now obsolete, and give a pointer to the Sun list.
6528         Add copyright notice.
6529
6530 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
6531
6532         * config/srclistvars.sh: Add copyright notice.
6533
6534 2006-08-14  Eric Blake  <ebb9@byu.net>
6535
6536         Import the following change from libc:
6537
6538         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
6539
6540         Upstream bug 2997.
6541         * lib/misc/error.c: Add space between program name and message if file
6542         name is missing.
6543
6544 2006-08-12  Karl Berry  <karl@gnu.org>
6545
6546         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
6547         remove, these originate in gnulib now.
6548
6549 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6550
6551         * doc/Makefile (standards.info standards.html standards.dvi):
6552         Also depend on make-stds.texi.
6553
6554 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
6555
6556         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
6557         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
6558
6559         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
6560         in wchar_t.  Problem reported by Eric Blake.
6561
6562         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
6563         LEN is smaller than SIZE.  Suggested by Bruno Haible.
6564         Also, help the compiler to keep LEN in a register.
6565
6566 2006-08-11  Eric Blake  <ebb9@byu.net>
6567
6568         * users.txt: Sort.  Add tar.
6569
6570 2006-08-11  Bruno Haible  <bruno@clisp.org>
6571
6572         * users.txt: New file.
6573
6574 2006-08-11  Bruno Haible  <bruno@clisp.org>
6575
6576         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
6577         before <wchar.h>. Needed for OSF/1 and BSD/OS.
6578
6579 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
6580
6581         * modules/snprintf (Depends-on): Remove minmax.
6582         (Maintainer): Add self and Bruno.
6583
6584 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
6585
6586         * lib/.cppi-disable: Add snprintf.h, socket_.h.
6587         * lib/snprintf.c: Include <errno.h> and <limits.h>.
6588         (EOVERFLOW): Define if the system does not.
6589         Do not include "minmax.h"; it wasn't used.
6590         (snprintf): Don't assume size_t promotes to an unsigned type.
6591         Fix bug when generated string was too long for the buffer: the
6592         buffer's contents are supposed to be the initial prefix of the
6593         output.  Don't assume vasnprintf returns EOVERFLOW if the size
6594         exceeds INT_MAX; do the check ourselves.
6595
6596         Import the following changes from libc:
6597
6598         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
6599
6600         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
6601         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
6602         set wc to the byte which couldn't be converted.
6603         (re_string_reconstruct): Don't clear valid_raw_len before calling
6604         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
6605         tip_context using re_string_context_at.
6606
6607         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
6608
6609         * lib/posix/regex.h: g++ still cannot handled [restrict].
6610
6611         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
6612
6613         * lib/posix/regex.h: Remove special handling for VMS.
6614
6615 2006-08-10  Jim Meyering  <jim@meyering.net>
6616
6617         * modules/same-inode: New module.
6618         * modules/dev-ino: New module.
6619         * modules/cycle-check: Depend on these modules, rather than simply
6620         including their .h files.
6621         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
6622         required via m4/cycle-check.m4.
6623         * modules/same: Depend on new same-inode module, rather than
6624         including same-inode.h.
6625         * modules/chdir-safer: New file.
6626
6627         * modules/chown (Depends-on): Add stat-macros.
6628
6629 2006-08-10  Jim Meyering  <jim@meyering.net>
6630
6631         * m4/cycle-check.m4: New file.
6632         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
6633         * m4/dev-ino.m4, m4/same-inode.m4: New files.
6634
6635 2006-08-10  Eric Blake  <ebb9@byu.net>
6636
6637         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
6638         in from original proposal.
6639
6640 2006-08-10  Eric Blake  <ebb9@byu.net>
6641         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
6642
6643         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
6644         namespace.
6645
6646 2006-08-10  Bruno Haible  <bruno@clisp.org>
6647
6648         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
6649         as well.
6650
6651 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
6652
6653         Sync from coreutils.
6654
6655         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
6656
6657         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
6658         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
6659
6660 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
6661
6662         * modules/restrict: Remove; no longer needed now that we assume
6663         Autoconf 2.59 or later.
6664         * MODULES.html.sh: Remove 'restrict'.
6665         * modules/argp (Depends-on): Remove 'restrict'.
6666         * modules/base64 (Depends-on): Likewise.
6667         * modules/gc (Depends-on): Likewise.
6668         * modules/getaddrinfo (Depends-on): Likewise.
6669         * modules/glob (Depends-on): Likewise.
6670         * modules/inet_ntop (Depends-on): Likewise.
6671         * modules/inet_pton (Depends-on): Likewise.
6672         * modules/memxor (Depends-on): Likewise.
6673         * modules/regex (Depends-on): Likewise.
6674         * modules/strtok_r (Depends-on): Likewise.
6675         * modules/time_r (Depends-on): Likewise.
6676
6677 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
6678
6679         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
6680         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
6681         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
6682         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
6683         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
6684         * m4/memxor.m4 (gl_MEMXOR): Likewise.
6685         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
6686         gl_C_RESTRICT replaced by AC_C_RESTRICT.
6687
6688         Merge from coreutils.
6689         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
6690         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
6691         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
6692         * m4/time_r.m4 (gl_TIME_R): Likewise.
6693
6694 2006-08-09  Karl Berry  <karl@gnu.org>
6695
6696         * config/srclist.txt: no more gettext-tools, per Bruno.
6697
6698 2006-08-08  Eric Blake  <ebb9@byu.net>
6699
6700         * modules/verror: New module.
6701         * MODULES.html.sh: Document it.
6702
6703 2006-08-08  Eric Blake  <ebb9@byu.net>
6704
6705         * lib/verror.h, lib/verror.c: New files.
6706
6707 2006-08-08  Eric Blake  <ebb9@byu.net>
6708
6709         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
6710         verror_at_line output complies with GNU Coding Standards even when
6711         file is NULL.
6712
6713 2006-08-07  Bruno Haible  <bruno@clisp.org>
6714
6715         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
6716         versions of AIX.
6717         Reported by Ralf Wildenhues.
6718
6719 2006-08-07  Bruno Haible  <bruno@clisp.org>
6720
6721         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
6722         in an AC_DEFUN. Needed so that the autoconf snippets can use
6723         AC_REQUIRE.
6724
6725 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6726
6727         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
6728         Initialize pkgdata_DATA.
6729         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
6730         overriding it.
6731
6732 2006-08-06  Eric Blake  <ebb9@byu.net>
6733
6734         * lib/error.h: Fold in some upstream changes from glibc.
6735         * lib/error.c: Likewise.
6736
6737 2006-08-04  Bruno Haible  <bruno@clisp.org>
6738
6739         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
6740         Make the mostlyclean-local rule depend on mostlyclean-generic.
6741         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
6742
6743 2006-07-31  Bruno Haible  <bruno@clisp.org>
6744
6745         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
6746         <stdlib.h>, <string.h>.
6747
6748 2006-07-30  Bruno Haible  <bruno@clisp.org>
6749
6750         * modules/readlink (License): Change to LGPL.
6751
6752 2006-07-30  Bruno Haible  <bruno@clisp.org>
6753
6754         * modules/javaversion (Makefile.am): Distribute javaversion.java and
6755         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
6756         set PKGDATADIR to point to it.
6757
6758 2006-07-30  Bruno Haible  <bruno@clisp.org>
6759
6760         * modules/csharpexec (configure.ac): Comment out macro invocation.
6761         * modules/javaexec (configure.ac): Likewise.
6762         * modules/javacomp-script (configure.ac): Likewise.
6763
6764         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
6765
6766 2006-07-30  Bruno Haible  <bruno@clisp.org>
6767
6768         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
6769         linked-list.
6770
6771 2006-07-30  Bruno Haible  <bruno@clisp.org>
6772
6773         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
6774
6775 2006-07-30  Bruno Haible  <bruno@clisp.org>
6776
6777         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
6778         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
6779         get removed.
6780
6781 2006-07-29  Bruno Haible  <bruno@clisp.org>
6782
6783         Make it possible for gnulib-tool to work with locally modified or
6784         augmented gnulib repositories.
6785         * gnulib-tool (func_usage): Document --local-dir option.
6786         (local_gnulib_dir): New variable.
6787         Handle --local-dir option.
6788         (func_lookup_file): New function.
6789         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
6790         (func_get_description, func_get_filelist, func_get_description,
6791         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
6792         func_get_automake_snippet, func_get_include_directive,
6793         func_get_license, func_get_maintainer): Use func_lookup_file.
6794         (func_import, func_create_testdir): Use func_lookup_file.
6795
6796 2006-07-29  Bruno Haible  <bruno@clisp.org>
6797
6798         * modules/setenv (Depends-on): Add unistd.
6799
6800 2006-07-29  Bruno Haible  <bruno@clisp.org>
6801
6802         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
6803
6804 2006-07-29  Bruno Haible  <bruno@clisp.org>
6805
6806         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
6807
6808 2006-07-29  Bruno Haible  <bruno@clisp.org>
6809
6810         * gnulib-tool (import, update): If there is no Makefile.am, look at
6811         aclocal.m4, instead of bailing out.
6812
6813 2006-07-29  Bruno Haible  <bruno@clisp.org>
6814
6815         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
6816         Categorize the options by when they are useful.
6817
6818 2006-07-29  Bruno Haible  <bruno@clisp.org>
6819
6820         * gnulib-tool (func_usage): Document option --no-libtool.
6821         Handle option --no-libtool.
6822         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
6823         for changed semantics of $libtool variable.
6824         (func_import): Likewise. If libtool is not used, show this through
6825         an option --no-libtool.
6826         (func_create_testdir): Update.
6827
6828 2006-07-29  Bruno Haible  <bruno@clisp.org>
6829
6830         * gnulib-tool (func_import): Extend error message about missing
6831         --doc-base.
6832
6833 2006-07-29  Bruno Haible  <bruno@clisp.org>
6834
6835         * gnulib-tool (func_import): Don't create the $docbase directory if
6836         there is no file to store there.
6837
6838 2006-07-29  Bruno Haible  <bruno@clisp.org>
6839
6840         * gnulib-tool (autoconf_minversion): If a --dir option is given and
6841         relevant, look for configure.ac there, not in the current directory.
6842         Also use a simple search for AC_PREREQ, not "autoconf --trace".
6843
6844 2006-07-29  Bruno Haible  <bruno@clisp.org>
6845
6846         * gnulib-tool (SORT): New variable.
6847         (func_usage): Undocument --assume-autoconf option.
6848         Remove --assume-autoconf option handling.
6849         (autoconf_minversion): Determine from the contents of configure.ac.
6850         (func_import): Remove autoconf_minversion handling.
6851         Suggested by Eric Blake.
6852
6853 2006-07-29  Bruno Haible  <bruno@clisp.org>
6854
6855         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
6856
6857 2006-07-29  Bruno Haible  <bruno@clisp.org>
6858
6859         * config/srclist.txt (*setenv.[ch]): Remove rules.
6860
6861 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
6862
6863         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
6864
6865 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
6866
6867         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
6868         arpa/inet.h.
6869
6870 2006-07-28  Simon Josefsson  <jas@extundo.com>
6871
6872         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
6873         * modules/inet_pton (Depends-on): Likewise.
6874
6875 2006-07-28  Simon Josefsson  <jas@extundo.com>
6876
6877         * m4/netinet_in_h.m4: New file.
6878
6879 2006-07-28  Simon Josefsson  <jas@extundo.com>
6880
6881         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
6882         #include's.
6883
6884 2006-07-28  Simon Josefsson  <jas@extundo.com>
6885
6886         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
6887         #include's.
6888
6889 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
6890
6891         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
6892         setgid on directories only if they set these bits.
6893         * lib/modechange.h: Remove obsolete comment about masks.
6894
6895 2006-07-28  Eric Blake  <ebb9@byu.net>
6896
6897         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
6898         macro expansion.
6899
6900 2006-07-28  Bruno Haible  <bruno@clisp.org>
6901
6902         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
6903
6904 2006-07-28  Bruno Haible  <bruno@clisp.org>
6905
6906         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
6907
6908 2006-07-28  Bruno Haible  <bruno@clisp.org>
6909
6910         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
6911         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
6912         Define fallbacks.
6913         Avoids link error on FreeBSD 4.x.
6914         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
6915
6916         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
6917         encoding.
6918         * lib/mbswidth.c (iswcntrl): Likewise.
6919
6920 2006-07-27  Bruno Haible  <bruno@clisp.org>
6921
6922         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
6923         test.
6924
6925 2006-07-27  Bruno Haible  <bruno@clisp.org>
6926
6927         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
6928         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
6929         defined.
6930
6931 2006-07-26  Eric Blake  <ebb9@byu.net>
6932
6933         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
6934
6935 2006-07-26  Eric Blake  <ebb9@byu.net>
6936
6937         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
6938         like mingw that lack mkstemp.
6939         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
6940         avoid compilation warning on mingw.
6941
6942 2006-07-26  Bruno Haible  <bruno@clisp.org>
6943
6944         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
6945         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
6946         INT_FAST*_MIN, INTPTR_MIN.
6947
6948 2006-07-25  Bruno Haible  <bruno@clisp.org>
6949
6950         * modules/version-etc (Depends-on): Add stdarg.
6951
6952 2006-07-25  Bruno Haible  <bruno@clisp.org>
6953
6954         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
6955         complex commands.
6956
6957 2006-07-25  Bruno Haible  <bruno@clisp.org>
6958
6959         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
6960         defined in <stdarg.h> or config.h.
6961
6962 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
6963
6964         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
6965         (gl_STDIO_SAFER): Remove.
6966
6967 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
6968
6969         * MODULES.html.sh (File stream based Input/Output):
6970         Add fopen-safer, tmpfile-safer; remove stdio-safer.
6971         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
6972         * modules/fopen-safer, modules/tmpfile-safer: New files.
6973         * modules/stdio-safer: Remove.
6974
6975 2006-07-24  Bruno Haible  <bruno@clisp.org>
6976
6977         * modules/tmpdir: New file.
6978         * MODULES.html.sh (File system functions): Add it.
6979
6980 2006-07-24  Bruno Haible  <bruno@clisp.org>
6981
6982         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
6983         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
6984
6985 2006-07-24  Bruno Haible  <bruno@clisp.org>
6986
6987         * modules/clean-temp: New file.
6988
6989 2006-07-24  Bruno Haible  <bruno@clisp.org>
6990
6991         * m4/tmpdir.m4: New file, from GNU gettext.
6992
6993 2006-07-24  Bruno Haible  <bruno@clisp.org>
6994
6995         * lib/tmpdir.h: New file, from GNU gettext.
6996         * lib/tmpdir.c: New file, from GNU gettext.
6997
6998 2006-07-24  Bruno Haible  <bruno@clisp.org>
6999
7000         * lib/clean-temp.h: New file, from GNU gettext.
7001         * lib/clean-temp.c: New file, from GNU gettext.
7002
7003 2006-07-23  Eric Blake  <ebb9@byu.net>
7004
7005         * modules/stdio-safer (Files): Add tmpfile-safer.c.
7006         (Depends-on): Add binary-io.
7007
7008 2006-07-23  Eric Blake  <ebb9@byu.net>
7009
7010         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
7011
7012 2006-07-23  Eric Blake  <ebb9@byu.net>
7013
7014         * lib/tmpfile-safer.c: New file.
7015         * lib/stdio-safer.h (fopen_safer): Add prototype.
7016         * lib/stdio--.h (tmpfile): Make safer.
7017
7018 2006-07-23  Bruno Haible  <bruno@clisp.org>
7019
7020         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
7021         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
7022         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
7023         gl_linked_remove_at): Use it.
7024
7025 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
7026         and Simon Josefsson <jas@extundo.com>
7027
7028         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
7029
7030         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
7031
7032 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
7033
7034         * modules/close-stream: New file.
7035         * modules/closeout (Description): Make it clear that it exits
7036         with a diagnostic on error.
7037         (Depends-on): Add close-stream.  Remove fpending, stdbool.
7038         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
7039
7040 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
7041
7042         * m4/close-stream.m4: New file.
7043
7044 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
7045
7046         * lib/close-stream.c, lib/close-stream.h: New files.
7047
7048 2006-07-22  Bruno Haible  <bruno@clisp.org>
7049
7050         Merge from GNU gettext 0.15.
7051
7052         2006-05-01  Bruno Haible  <bruno@clisp.org>
7053
7054                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
7055
7056         2006-07-22  Bruno Haible  <bruno@clisp.org>
7057
7058                 * modules/javaversion: New file.
7059                 * MODULES.html.sh (Java): Add javaversion.
7060
7061         2006-03-12  Bruno Haible  <bruno@clisp.org>
7062
7063                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
7064
7065         2005-12-04  Bruno Haible  <bruno@clisp.org>
7066
7067                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
7068                 (untested).
7069
7070         2006-06-21  Bruno Haible  <bruno@clisp.org>
7071
7072                 Avoid warnings from recent versions of mcs.
7073                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
7074                 -o, -L, -r any more. Use options documented since mcs-1.0
7075                 instead. Similarly for -g.
7076
7077         2005-12-04  Bruno Haible  <bruno@clisp.org>
7078
7079                 * build-aux/csharpcomp.sh.in: Suffix for resources is
7080                 .resources, not .resource.
7081
7082         2005-07-09  Bruno Haible  <bruno@clisp.org>
7083
7084                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
7085                 add a .dll suffix.
7086                 Reported by Mark Junker <mjscod@gmx.de>.
7087
7088         2006-07-22  Bruno Haible  <bruno@clisp.org>
7089
7090                 * modules/gettext: Upgrade to gettext-0.15.
7091                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
7092                 m4/visibility.m4.
7093                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
7094
7095 2006-07-22  Bruno Haible  <bruno@clisp.org>
7096
7097         Merge from GNU gettext 0.15.
7098
7099         2006-03-25  Bruno Haible  <bruno@clisp.org>
7100
7101                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
7102
7103         2006-07-21  Bruno Haible  <bruno@clisp.org>
7104
7105                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
7106                 "1.1".
7107
7108         2006-05-09  Bruno Haible  <bruno@clisp.org>
7109
7110                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
7111                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
7112                 for the conftestver execution.
7113
7114         2006-05-01  Bruno Haible  <bruno@clisp.org>
7115
7116                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
7117                 optional target-version argument. Verify that the compiler
7118                 groks source of the specified source-version, or add -source
7119                 option as necessary. Verify that the compiler produces
7120                 bytecode in the specified target-version, or add -target and
7121                 -source options as necessary. Make the result of the test
7122                 available as variable CONF_JAVAC. Also log error output in
7123                 config.log.
7124
7125         2006-03-11  Bruno Haible  <bruno@clisp.org>
7126
7127                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
7128
7129         2006-05-09  Bruno Haible  <bruno@clisp.org>
7130
7131                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
7132                 CLASSPATH_SEPARATOR to a semicolon.
7133
7134         2006-03-12  Bruno Haible  <bruno@clisp.org>
7135
7136                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
7137                 available as variable CONF_JAVA, for subsequent autoconf
7138                 tests. Also log error output in config.log.
7139
7140         2006-07-19  Bruno Haible  <bruno@clisp.org>
7141
7142                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
7143                 that getline works on glibc2 systems. Needed to avoid trouble
7144                 in relocatable.c.
7145                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
7146
7147         2005-12-04  Bruno Haible  <bruno@clisp.org>
7148
7149                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
7150                 launcher (untested).
7151
7152         2005-12-04  Bruno Haible  <bruno@clisp.org>
7153
7154                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
7155
7156         2006-07-22  Bruno Haible  <bruno@clisp.org>
7157
7158                 * gettext.m4: Update from GNU gettext-0.15.
7159                 * nls.m4: Likewise.
7160                 * po.m4: Likewise.
7161                 * inttypes-pri.m4: Likewise.
7162                 * inttypes-h.m4: Renamed from inttypes.m4.
7163                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
7164
7165 2006-07-22  Bruno Haible  <bruno@clisp.org>
7166
7167         Merge from GNU gettext 0.15.
7168
7169         2005-07-05  Bruno Haible  <bruno@clisp.org>
7170
7171                 * printf-args.c (printf_fetchargs): Work around broken
7172                 definition of wint_t on mingw.
7173
7174         2005-02-12  Bruno Haible  <bruno@clisp.org>
7175
7176                 * xallocsa.h: Add extern "C" for C++.
7177
7178         2006-05-17  Bruno Haible  <bruno@clisp.org>
7179
7180                 Cygwin portability.
7181                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
7182
7183         2006-04-30  Bruno Haible  <bruno@clisp.org>
7184
7185                 * progreloc.c: Include <mach-o/dyld.h> if available.
7186                 (find_executable): Use _NSGetExecutablePath when possible.
7187
7188         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
7189
7190                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
7191                 function.
7192
7193         2005-12-29  Bruno Haible  <bruno@clisp.org>
7194
7195                 * progreloc.c (set_program_name_and_installdir): Fix
7196                 compilation error.
7197
7198         2005-12-04  Bruno Haible  <bruno@clisp.org>
7199
7200                 Cygwin portability.
7201                 * progreloc.c: Include <windows.h> also on Cygwin.
7202                 (find_executable): Add support for Cygwin.
7203                 (set_program_name_and_installdir): Handle also platforms with
7204                 nonempty EXEEXT.
7205
7206         2006-07-11  Bruno Haible  <bruno@clisp.org>
7207
7208                 * javacomp.c: Fix a comment.
7209                 Reported by Jim Meyering.
7210
7211         2006-04-30  Bruno Haible  <bruno@clisp.org>
7212
7213                 * javacomp.h (compile_java_class): Add source_version,
7214                 target_version arguments.
7215                 * javacomp.c: Rewritten to choose only a compiler that
7216                 respects the specified source_version and target_version.
7217
7218         2006-06-27  Bruno Haible  <bruno@clisp.org>
7219
7220                 Assume correct S_ISDIR macro.
7221                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
7222
7223         2006-07-22  Bruno Haible  <bruno@clisp.org>
7224
7225                 * javaversion.h: New file, from GNU gettext.
7226                 * javaversion.c: New file, from GNU gettext.
7227                 * javaversion.java: New file, from GNU gettext.
7228                 * javaversion.class: New file, from GNU gettext.
7229
7230         2006-05-17  Bruno Haible  <bruno@clisp.org>
7231
7232                 Cygwin portability.
7233                 * javaexec.c (execute_java_class): Test for jview program
7234                 also on Cygwin.
7235
7236         2006-04-09  Bruno Haible  <bruno@clisp.org>
7237
7238                 * fatal-signal.c: Don't include string.h.
7239                 (at_fatal_signal): Use a copying loop instead of memcpy.
7240
7241         2005-12-04  Bruno Haible  <bruno@clisp.org>
7242
7243                 * csharpexec.c: Add support for 'clix' launcher (untested).
7244                 (execute_csharp_using_sscli): New function.
7245                 (execute_csharp_program): Call it.
7246
7247         2006-06-21  Bruno Haible  <bruno@clisp.org>
7248
7249                 Avoid warnings from recent versions of mcs.
7250                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
7251                 -o, -L, -r any more. Use options documented since mcs-1.0
7252                 instead. Similarly for -g.
7253
7254         2005-07-09  Bruno Haible  <bruno@clisp.org>
7255
7256                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
7257                 add a .dll suffix.
7258                 Reported by Mark Junker <mjscod@gmx.de>.
7259
7260         2006-06-17  Bruno Haible  <bruno@clisp.org>
7261
7262                 * config.charset: Update for NetBSD 3.0.
7263
7264         2006-05-17  Bruno Haible  <bruno@clisp.org>
7265
7266                 Cygwin portability.
7267                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
7268
7269         2006-05-16  Bruno Haible  <bruno@clisp.org>
7270
7271                 * localcharset.c [CYGWIN]: Include <windows.h>.
7272                 (get_charset_aliases): For Cygwin, return the same CPxxx
7273                 aliases list as under WIN32.
7274                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
7275                 the environment variables. Fall back to GetACP().
7276
7277         2006-04-05  Bruno Haible  <bruno@clisp.org>
7278
7279                 * config.charset: Update Juan Manuel Guerrero's address.
7280
7281         2005-02-12  Bruno Haible  <bruno@clisp.org>
7282
7283                 * allocsa.h: Add extern "C" for C++.
7284
7285         2005-02-10  Bruno Haible  <bruno@clisp.org>
7286
7287                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
7288                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
7289
7290         2006-07-22  Bruno Haible  <bruno@clisp.org>
7291
7292                 * gettext.h: Update to GNU gettext-0.15.
7293
7294 2006-07-22  Bruno Haible  <bruno@clisp.org>
7295
7296         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
7297         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
7298         lib-prefix.m4, longdouble.m4, ssize_t.m4.
7299
7300 2006-07-21  Eric Blake  <ebb9@byu.net>
7301
7302         * modules/stdlib-safer: New file.
7303         * MODULES.html.sh (File stream based Input/Output): Add
7304         stdlib-safer.
7305
7306 2006-07-21  Eric Blake  <ebb9@byu.net>
7307
7308         * lib/stdlib-safer.h: New file from coreutils, required by
7309         stdlib--.h.
7310
7311 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
7312
7313         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
7314
7315 2006-07-20  Bruno Haible  <bruno@clisp.org>
7316
7317         * gnulib-tool: Recognize new option --assume-autoconf.
7318         (autoconf_minversion): New variable.
7319         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
7320
7321 2006-07-20  Bruno Haible  <bruno@clisp.org>
7322
7323         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
7324
7325 2006-07-19  Derek R. Price  <derek@ximbiot.com>
7326
7327         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
7328         Reindent and repaginate.
7329
7330 2006-07-19  Derek Price  <derek@ximbiot.com>
7331
7332         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
7333         Correct grammar.
7334
7335 2006-07-17  Bruno Haible  <bruno@clisp.org>
7336
7337         * modules/list: New file.
7338         * modules/array-list: New file.
7339         * modules/carray-list, modules/carray-list-tests: New files.
7340         * modules/linked-list, modules/linked-list-tests: New files.
7341         * modules/avltree-list, modules/avltree-list-tests: New files.
7342         * modules/rbtree-list, modules/rbtree-list-tests: New files.
7343         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
7344         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
7345         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
7346         * modules/oset: New file.
7347         * modules/array-oset: New file.
7348         * modules/avltree-oset, modules/avltree-oset-tests: New files.
7349         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
7350         * tests/test-carray_list.c: New file.
7351         * tests/test-linked_list.c: New file.
7352         * tests/test-avltree_list.c: New file.
7353         * tests/test-rbtree_list.c: New file.
7354         * tests/test-linkedhash_list.c: New file.
7355         * tests/test-avltreehash_list.c: New file.
7356         * tests/test-rbtreehash_list.c: New file.
7357         * tests/test-avltree_oset.c: New file.
7358         * tests/test-rbtree_oset.c: New file.
7359         * MODULES.html.sh (Container data structures): New section.
7360
7361 2006-07-17  Bruno Haible  <bruno@clisp.org>
7362
7363         * m4/gl_list.m4: New file.
7364
7365 2006-07-17  Bruno Haible  <bruno@clisp.org>
7366
7367         * lib/gl_list.h: New file.
7368         * lib/gl_list.c: New file.
7369         * lib/gl_array_list.h: New file.
7370         * lib/gl_array_list.c: New file.
7371         * lib/gl_carray_list.h: New file.
7372         * lib/gl_carray_list.c: New file.
7373         * lib/gl_linked_list.h: New file.
7374         * lib/gl_linked_list.c: New file.
7375         * lib/gl_anylinked_list1.h: New file.
7376         * lib/gl_anylinked_list2.h: New file.
7377         * lib/gl_avltree_list.h: New file.
7378         * lib/gl_avltree_list.c: New file.
7379         * lib/gl_anyavltree_list1.h: New file.
7380         * lib/gl_anyavltree_list2.h: New file.
7381         * lib/gl_rbtree_list.h: New file.
7382         * lib/gl_rbtree_list.c: New file.
7383         * lib/gl_anyrbtree_list1.h: New file.
7384         * lib/gl_anyrbtree_list2.h: New file.
7385         * lib/gl_anytree_list1.h: New file.
7386         * lib/gl_anytree_list2.h: New file.
7387         * lib/gl_linkedhash_list.h: New file.
7388         * lib/gl_linkedhash_list.c: New file.
7389         * lib/gl_anyhash_list1.h: New file.
7390         * lib/gl_anyhash_list2.h: New file.
7391         * lib/gl_avltreehash_list.h: New file.
7392         * lib/gl_avltreehash_list.c: New file.
7393         * lib/gl_rbtreehash_list.h: New file.
7394         * lib/gl_rbtreehash_list.c: New file.
7395         * lib/gl_anytreehash_list1.h: New file.
7396         * lib/gl_anytreehash_list2.h: New file.
7397
7398         * lib/gl_oset.h: New file.
7399         * lib/gl_oset.c: New file.
7400         * lib/gl_array_oset.h: New file.
7401         * lib/gl_array_oset.c: New file.
7402         * lib/gl_avltree_oset.h: New file.
7403         * lib/gl_avltree_oset.c: New file.
7404         * lib/gl_rbtree_oset.h: New file.
7405         * lib/gl_rbtree_oset.c: New file.
7406         * lib/gl_anytree_oset.h: New file.
7407
7408 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
7409
7410         * m4/mkancesdirs.m4: New file.
7411         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
7412         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
7413         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
7414         it.
7415
7416 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
7417
7418         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
7419         * lib/mkancesdirs.h: New files.
7420         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
7421         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
7422         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
7423         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
7424         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
7425         callers changed.  Revamp internals significantly, by not
7426         attempting to create directories that are temporarily more
7427         permissive than the final results.  Do not attempt to use
7428         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
7429         This removes some race conditions, fixes some bugs, and simplifies
7430         things.  Use new dirchownmod function to do owner and mode changes.
7431         * lib/mkdir-p.h: Likewise.
7432         * lib/modechange.c (octal_to_mode): New function.
7433         (struct mode_change): New member mentioned.
7434         (make_node_op_equals): New arg mentioned.  All callers changed.
7435         (mode_compile): Keep track of which mode bits the user has explicitly
7436         mentioned.
7437         (mode_adjust): New arg DIR, so that we implement the X op correctly.
7438         New arg PMODE_BITS, to keep track of which mode bits the user
7439         mentioned; it treats S_ISUID and S_ISGID speciall.
7440         All callers changed.
7441         * lib/modechange.h: Likewise.
7442
7443 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
7444
7445         * MODULES.html.sh: Add mkancestors.
7446         * modules/mkancesdirs: New module.
7447         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
7448         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
7449         The chdir-safer and afs files are now orphans; I'll remove them
7450         unless someone speaks up.
7451         Add lib/dirchownmod.c, lib/dirchownmod.h.
7452         (Depends-on): Remove alloca, chown, save-cwd, dirname.
7453         Add lchown, mkancesdirs.
7454         (Maintainer): Add self.
7455
7456 2006-07-15  Karl Berry  <karl@gnu.org>
7457
7458         * gnulib-tool: help message wording/arrangement.
7459
7460 2006-07-14  Simon Josefsson  <jas@extundo.com>
7461
7462         * doc/gnulib.texi (Libtool and Windows): New section.
7463
7464 2006-07-12  Simon Josefsson  <jas@extundo.com>
7465
7466         * modules/gendocs (License): Fix license, approved by Karl.
7467
7468 2006-07-12  Eric Blake  <ebb9@byu.net>
7469
7470         * MODULES.html.sh: Add gendocs.
7471
7472 2006-07-11  Eric Blake  <ebb9@byu.net>
7473
7474         * modules/fdl: New module, to install doc/fdl.texi.
7475         * MODULES.html.sh: Add new section for documentation modules.
7476         * gnulib-tool: Avoid space-tab.
7477         (--doc-base): New option, to manage files from doc.
7478
7479 2006-07-11  Eric Blake  <ebb9@byu.net>
7480
7481         * m4/absolute-header.m4: Fix comments to match recent change.
7482
7483 2006-07-11  Eric Blake  <ebb9@byu.net>
7484
7485         * gnulib-tool: List --doc-base before --tests-base.
7486
7487 2006-07-11  Derek R. Price  <derek@ximbiot.com>
7488
7489         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
7490
7491 2006-07-11  Bruno Haible  <bruno@clisp.org>
7492
7493         * README: Mention where to put documentation.
7494
7495 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7496
7497         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
7498
7499 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
7500
7501         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
7502         to stdint.m4.
7503
7504 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
7505
7506         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
7507         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
7508         "no/such/file/stdint.h" when there is no such file, so that
7509         the resulting C code can be parsed by dodgy compilers.
7510         Problems reported by Bob Proulx.
7511
7512 2006-07-10  Derek R. Price  <derek@ximbiot.com>
7513
7514         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
7515         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
7516         macros into the GNU _D_EXACT_NAMLEN.
7517         * lib/savedir.c:  Likewise.
7518         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
7519
7520 2006-07-10  Derek R. Price  <derek@ximbiot.com>
7521         and Paul Eggert  <eggert@cs.ucla.edu>
7522
7523         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
7524         * m4/savedir.m4:
7525         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
7526         macros into the GNU _D_EXACT_NAMLEN.
7527
7528 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
7529
7530         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
7531         around the absolute name, to work around a problem with the HP-UX
7532         11.23 native C compiler, reported by Bob Proulx.
7533
7534 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
7535
7536         * doc/maintain.texi, make-stds.texi: Sync from
7537         <http://savannah.gnu.org/projects/gnustandards>.
7538
7539 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
7540
7541         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
7542
7543 2006-07-09  Jim Meyering  <jim@meyering.net>
7544
7545         * m4/glob.m4: Remove a doubled word in a comment.
7546
7547 2006-07-09  Jim Meyering  <jim@meyering.net>
7548
7549         * lib/argp-pv.c: Remove a doubled word in a comment.
7550         * lib/check-version.c (check_version): Likewise.
7551         * lib/javacomp.c (compile_java_class): Likewise.
7552
7553 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
7554
7555         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
7556         for the benefit of people using Autoconf 2.60.  If you want to
7557         support older Autoconf versions you can copy m4/onceonly_2_57.m4
7558         (or m4/onceonly.m4, if pre-2.57) manually.
7559
7560 2006-07-08  Jim Meyering  <jim@meyering.net>
7561
7562         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
7563         comment.
7564         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
7565         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
7566         comment.
7567
7568 2006-07-08  Jim Meyering  <jim@meyering.net>
7569
7570         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
7571
7572 2006-07-07  Simon Josefsson  <jas@extundo.com>
7573
7574         * tests/test-crc.c: Change expected crc value, the test vector
7575         were probably computed using the old broken crc.c?
7576
7577 2006-07-06  Simon Josefsson  <jas@extundo.com>
7578
7579         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
7580         now the canonical place for the M4 file).
7581
7582         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
7583         from the sys_socket dependency now.
7584
7585         * modules/inet_pton (Files): Ditto.
7586
7587         * modules/inet_ntop (Files): Ditto.
7588
7589 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
7590
7591         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
7592         not gl_PREREQ_GETUSERSHELL.
7593
7594 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7595
7596         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
7597         with only one argument, for Autoconf 2.60.
7598         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
7599         expand to nothing, so add a shell command to avoid syntax error.
7600         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
7601
7602 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7603
7604         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
7605
7606 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
7607
7608         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
7609         no longer needed.  Check for isblank decl.
7610         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
7611         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
7612         of existence.
7613
7614 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
7615
7616         * lib/getloadavg.c: Use __VMS, not VMS.
7617         * lib/getopt.c: Likewise.
7618         * lib/getpagesize.h: Likewise.
7619         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
7620         and probably does not work.
7621
7622 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
7623
7624         * lib/.cppi-disable: Add wcwidth.
7625         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
7626         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
7627         (ISGRAPH): Remove.  All uses changed to isgraph.
7628         (FOLD) [!defined _LIBC]: Remove special case.
7629         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
7630         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
7631         HAVE_ISBLANK.
7632         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
7633         case.
7634
7635 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
7636
7637         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
7638         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
7639         brackets.  Other minor changes to suppress some compiler
7640         warnings.
7641
7642 2006-07-06  Derek R. Price  <derek@ximbiot.com>
7643         and Paul Eggert  <eggert@cs.ucla.edu>
7644
7645         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
7646         of invoking obsolescent AC_HEADER_DIRENT macro.
7647         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
7648         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
7649         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
7650         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
7651         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
7652         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
7653         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
7654         * m4/readdir.m4: Remove; no longer needed.
7655
7656 2006-07-06  Derek R. Price  <derek@ximbiot.com>
7657         and Paul Eggert  <eggert@cs.ucla.edu>
7658
7659         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
7660         Don't worry about this obsolete case any more.
7661         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
7662         directories.
7663         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
7664         worry about this obsolete case any more.
7665         * lib/fts.c: Likewise.
7666         * lib/getcwd.c: Likewise.
7667         * lib/glob.h: Likewise.
7668         * lib/savedir.c: Likewise.
7669
7670 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
7671
7672         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
7673         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
7674         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
7675         needed.
7676         All uses removed.
7677         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
7678         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
7679         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
7680         needed.
7681         * m4/getdate.m4 (gl_GETDATE): Likewise.
7682         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
7683         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
7684         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
7685         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
7686         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
7687         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
7688         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
7689         needed.
7690
7691 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
7692
7693         * lib/memcasecmp.c: Include <limits.h>.
7694         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
7695         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
7696         Don't assume isdigit succeeds only on '0' through '9'.
7697
7698 2006-07-05  Eric Blake  <ebb9@byu.net>
7699
7700         * modules/getaddrinfo (Depends-on): Add snprintf.
7701
7702 2006-07-05  Eric Blake  <ebb9@byu.net>
7703
7704         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
7705         to avoid 'header present but could not be compiled' on cygwin.
7706
7707 2006-07-05  Eric Blake  <ebb9@byu.net>
7708
7709         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
7710         missing from netdb.h.
7711         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
7712
7713 2006-07-05  Derek R. Price  <derek@ximbiot.com>
7714
7715         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
7716         no longer needed.
7717         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
7718         * m4/getdate.m4 (gl_GETDATE): Likewise.
7719         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
7720         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
7721         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
7722         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
7723         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
7724
7725 2006-07-05  Derek R. Price  <derek@ximbiot.com>
7726
7727         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
7728         All uses of is_space replaced by isspace.
7729         * lib/exit.h: Don't talk about STDC_HEADERS.
7730         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
7731         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
7732         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
7733         replaced by isprint etc.
7734         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
7735         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
7736         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
7737         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
7738         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
7739         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
7740
7741 2006-07-05  Bruno Haible  <bruno@clisp.org>
7742
7743         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
7744         the function exists, before testing against AIX.
7745         Reported by Martin Lambers <marlam@marlam.de>.
7746
7747 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
7748
7749         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
7750         From Mark D. Baushke.
7751
7752 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
7753
7754         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
7755         to the absolute name, not just one, to bypass Sun C 5.8's
7756         "warning: #include of /usr/include/... may be non-portable".
7757
7758 2006-07-04  Eric Blake  <ebb9@byu.net>
7759
7760         * modules/dirname-tests: New test module.
7761         * tests/test-dirname.c: New file, replacing dirname.c
7762         TEST_DIRNAME section that was recently deleted.
7763
7764 2006-07-04  Bruno Haible  <bruno@clisp.org>
7765
7766         Assume ANSI C header files and <ctype.h> functions.
7767         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
7768         (mbsnwidth): Use isprint, iscntrl instead.
7769
7770 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
7771
7772         Merge from coreutils.
7773         * MODULES.html.sh: Add xstrtold.
7774         * modules/xstrtold: New file.
7775         * modules/cycle-check (Files): Add lib/same-inode.h.
7776         * modules/dirname (Files): Add m4/double-slash-root.m4.
7777         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
7778         * modules/mkdir-p (Files): Add lib/same-inode.h.
7779         * modules/same (Files): Add lib/same-inode.h.
7780
7781 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
7782
7783         * m4/absolute-header.m4: Renamed from full-header-path.m4.
7784         This is to keep the terminology clean; POSIX talks about
7785         "absolute pathnames", not "full pathnames", but the GNU
7786         Coding Standards say to use "path" for something else;
7787         so use "absolute" to keep both sides happy.
7788         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
7789         Set gl_absolute_header, not gl_full_header_path.
7790         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
7791         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
7792         All uses changed.
7793
7794         Merge from coreutils.
7795
7796         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
7797
7798         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
7799         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
7800         want to require the building of c-strtod.o.
7801         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
7802         needs -lm directly.
7803         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
7804
7805         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
7806
7807         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
7808         --as-needed option if available.  Problem reported by Albert Chin in
7809         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
7810         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
7811         cc merely issues a bunch of annoying warnings for --as-needed
7812         (this problem was reported by Bob Proulx).  Also, try linking with
7813         -lm to detect a bug in binutils 2.16 (this problem was reported
7814         by Ralf Wildenhues).
7815
7816         2006-06-18  Jim Meyering  <jim@meyering.net>
7817
7818         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
7819         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
7820         macro.
7821         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
7822         also check for glibc-2.4's abort-inducing bug.
7823
7824         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
7825         Low-probability clean-up should be to use rmdir to get rid of
7826         the just-created directory, not unlink.
7827
7828         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
7829         configure fail, and request a bug report to inform us about it.
7830         Add a comment that, barring reports to the contrary, in 2007 we'll
7831         assume ftruncate is universally available.
7832
7833         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
7834
7835         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
7836
7837         2006-03-12  Jim Meyering  <jim@meyering.net>
7838
7839         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
7840         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
7841         * m4/same.m4 (gl_SAME): Likewise.
7842         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
7843
7844         2006-03-11  Eric Blake  <ebb9@byu.net>
7845
7846         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
7847         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
7848         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
7849         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
7850
7851 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
7852
7853         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
7854         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
7855         reported by Mark D. Baushke, one in
7856         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
7857
7858         Merge from coreutils.
7859
7860         * lib/.cppi-disable: Add stdint_.h.
7861         * lib/.cvsignore: Add stdint.h.
7862
7863         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
7864
7865         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
7866         both double and long double versions.
7867         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
7868         * lib/xstrtold.c: New file.
7869         * lib/xstrtod.h (xstrtold): New decl.
7870
7871         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
7872
7873         * lib/filemode.c (setst): Remove.
7874         (strmode): Rewrite to avoid setst.  This makes the code shorter,
7875         (arguably) clearer, and the generated code is a bit smaller on my
7876         Debian GNU/Linux stable x86 host.
7877
7878         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
7879
7880         * lib/filemode.c: Include "filemode.h" first, to test the interface.
7881         Assume that filemode.h includes sys/types.h and sys/stat.h.
7882         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
7883         (ftypelet): Reorder to put common cases first, for efficiency.
7884         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
7885         to do 'M'.
7886         (strmode): Renamed from mode_string, and now stores 12 bytes instead
7887         of 10, for compatibility with FreeBSD.  All callers changed.
7888         (filemodestring): Now stores 12 bytes instead of 10, and sets file
7889         types that can't be deduced solely from st_mode.  First arg is now a
7890         const pointer.
7891         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
7892         (strmode): Renamed from mode_string.
7893         (filemodestring): New decl.
7894         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
7895         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
7896         needed.
7897         (S_ISPORT, S_ISWHT): New macros, if not already defined.
7898
7899         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
7900
7901         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
7902         fsusage.h now does that.  Include fsusage.h first, to test interface.
7903         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
7904         at most one method (the old code could have generated decls that
7905         didn't conform to C89, not that this was ever exercised).
7906         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
7907
7908         2006-03-19  Jim Meyering  <jim@meyering.net>
7909
7910         Work even in a chroot where d_ino values for entries in "/"
7911         don't match the stat.st_ino values for the same names.
7912         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
7913         number, iterate through all entries again, using lstat instead.
7914         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
7915         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
7916
7917         * lib/getcwd.c (__getcwd): Clarify a comment.
7918         Use memcpy in place of a call to strcpy.
7919
7920         2006-03-12  Jim Meyering  <jim@meyering.net>
7921
7922         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
7923         matches that of the current directory (which we're about to chdir ".."
7924         out of), then save the dev-ino of the parent, instead.
7925
7926         * lib/same-inode.h (SAME_INODE): New file/macro.
7927         * lib/chdir-safer.c (SAME_INODE): Remove definition.
7928         Include "same-inode.h", instead.
7929         * lib/same.c: Likewise.
7930         * lib/cycle-check.h: Include "same-inode.h".
7931         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
7932         * lib/cycle-check.c (SAME_INODE): Remove definition.
7933         * lib/root-dev-ino.h: Include "same-inode.h".
7934
7935         2006-03-11  Eric Blake  <ebb9@byu.net>
7936
7937         * lib/same.c (same_name): s/base_name/last_component/
7938         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
7939         * lib/filenamecat.c (file_name_concat): Likewise.
7940
7941         2006-03-11  Eric Blake  <ebb9@byu.net>,
7942                     Paul Eggert  <eggert@cs.ucla.edu>
7943
7944         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
7945         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
7946         drive prefix.
7947         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
7948         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
7949         (last_component): New method.
7950         * lib/dirname.c (dir_len): Determine when drive letters need a
7951         subsequent slash.  Preserve // when it is special.
7952         (dir_name): Don't append dot when drive letter is absolute.
7953         [TEST_DIRNAME]: Move into a full-blown gnulib test.
7954         * lib/basename.c (base_name): New semantics - malloc the result.
7955         Preserve // when it is special.  Preserve relative files that look
7956         like drive letters.
7957         (base_len): Preserve // when it is special.
7958         (last_component): New method, similar to old base_name semantics.
7959         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
7960         base_name.  Strip redundant slashes from ///.
7961
7962 2006-07-03  Jim Meyering  <jim@meyering.net>
7963
7964         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
7965         macro is used before the first cycle_check call.
7966
7967 2006-07-03  Eric Blake  <ebb9@byu.net>
7968
7969         * modules/dirname (Depends-on): Add xstrndup.
7970
7971 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
7972
7973         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
7974         test cases, so that config.log is a bit easier to follow.
7975
7976 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
7977
7978         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
7979         both are 64 bits, since this seems to be the tradition, and this
7980         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
7981         we ever run into a host that prefers long long to long in this
7982         case, we'll need another configure-time test.  Problem reported by
7983         Jim Meyering.
7984
7985 2006-07-02  Eric Blake  <ebb9@byu.net>
7986
7987         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
7988
7989 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
7990
7991         * modules/inttypes (Depends-on): No longer depends on stdint.
7992         * modules/stdint (Description): Say more about assumptions.
7993         Say that the fast types might differ.  Say macros are used.
7994         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
7995         (Makefile.am): Revise list of substituted symbols to match
7996         new stdint.m4.
7997         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
7998         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
7999         * tests/test-stdint.c (verify_same_types)
8000         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
8001         the code conforms to C99/C89.
8002         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
8003         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
8004
8005 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
8006
8007         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
8008         but fix a bug, by requiring at least 64 bits.
8009         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
8010         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
8011         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
8012         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
8013
8014         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
8015         changes.  Make 2.59 a prerequisite.  Check and substitute for
8016         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
8017         inttypes.h.  Do not use special include files; just use the
8018         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
8019         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
8020         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
8021         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
8022         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
8023         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
8024         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
8025         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
8026         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
8027         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
8028         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
8029         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
8030         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
8031         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
8032         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
8033         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
8034         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
8035         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
8036         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
8037         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
8038         WINT_MAX.  Check for C99 conformance more strictly, by detecting
8039         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
8040         not check for things that C99 does not require, e.g., int8_t.  If
8041         a test isn't needed unless <stdint.h> isn't working, and is
8042         unlikely to be needed for any other reason, then don't do it
8043         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
8044         size_t, since we assume C89 freestanding at least.  Do not check
8045         for sig_atomic_t, wchar_t, or wint_t, since the code now does
8046         the right thing even if the types are not defined.  Instead use:
8047         (gl_STDINT_TYPE_PROPERTIES): New macro.
8048         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
8049         testing whether <sys/types.h> clashes, as Autoconf does this for
8050         us now.  All uses removed.
8051         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
8052         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
8053         (gl_CHECK_TYPE_SAME):
8054         Remove; no longer needed.
8055         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
8056         exists, since we'll return 0 anyway in that case.
8057         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
8058
8059 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
8060
8061         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
8062         possible collision with system files.
8063         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
8064         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
8065         WCHAR_MIN and WCHAR_MAX in this case.
8066         (<stddef.h>): Do not include; no longer needed.
8067         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
8068         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
8069         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
8070         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
8071         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
8072         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
8073         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
8074         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
8075         !defined(__c99))]: Include in this case too, since it's harmless
8076         now.
8077         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
8078         dangerous to do so.
8079         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
8080         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
8081         (_STDINT_MIN, _STDINT_MAX): New macros.
8082         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
8083         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
8084         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
8085         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
8086         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
8087         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
8088         macros, not typedefs; this simplifies things quite a bit.
8089         Use long int for all types narrower than int64_t.
8090         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
8091         Define in terms of long long int or int64_t or long int,
8092         not int64_t or int32_t.  This saves some compile-time testing.
8093         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
8094         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
8095         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
8096         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
8097         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
8098         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
8099         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
8100         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
8101         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
8102         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
8103         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
8104         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
8105         undef any previous version and define our own version, for
8106         simplicity and consistency with the new macros for types.
8107         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
8108         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
8109         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
8110         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
8111         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
8112         @WINT_T_SUFFIX@ to keep things simple here.
8113         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
8114         Simplify by assuming typical 8/16/32/64 host, since we're
8115         already doing that elsewhere anyway.
8116         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
8117         and assume long long int is 64 bits if available.  This
8118         speeds up 'configure'.
8119
8120 2006-07-01  Eric Blake  <ebb9@byu.net>
8121
8122         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
8123         Reported by Andreas Buening.
8124
8125 2006-07-01  Eric Blake  <ebb9@byu.net>
8126
8127         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
8128
8129 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
8130
8131         * lib/getaddrinfo.c: fixed typo
8132
8133 2006-06-29  Jim Meyering  <jim@meyering.net>
8134
8135         * modules/strftime (Maintainer): Add my name, since with the
8136         FPRINTFTIME changes strftime.c has forked from glibc.
8137
8138 2006-06-29  Eric Blake  <ebb9@byu.net>
8139
8140         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
8141
8142 2006-06-29  Eric Blake  <ebb9@byu.net>
8143
8144         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
8145
8146 2006-06-29  Eric Blake  <ebb9@byu.net>
8147
8148         * lib/stat_.h: New file.
8149
8150 2006-06-29  Eric Blake  <ebb9@byu.net>
8151
8152         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
8153         unused static function.
8154
8155 2006-06-29  Eric Blake  <ebb9@byu.net>
8156
8157         * doc/functions.texi (Function Portability): Document missing lstat
8158         on mingw.
8159
8160 2006-06-29  Eric Blake  <ebb9@byu.net>
8161
8162         * MODULES.html.sh: Add sys_stat.
8163         * modules/sys_stat: New module.
8164         * modules/mkstemp (Depends-on): Add sys_stat.
8165
8166 2006-06-29  Derek R. Price  <derek@ximbiot.com>
8167
8168         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
8169
8170 2006-06-29  Derek R. Price  <derek@ximbiot.com>
8171
8172         * m4/c-bs-a.m4: Removed.
8173
8174 2006-06-29  Derek R. Price  <derek@ximbiot.com>
8175
8176         * lib/strftime.c: Assume strftime() exists.
8177
8178 2006-06-29  Derek Price  <derek@ximbiot.com>
8179
8180         * modules/c-bs-a: Removed - \a is C89.
8181         * MODULES.html.sh: Remove c-bs-a.
8182
8183 2006-06-29  Bruno Haible  <bruno@clisp.org>
8184
8185         * modules/wcwidth (License): Change to LGPL.
8186
8187 2006-06-28  Simon Josefsson  <jas@extundo.com>
8188
8189         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
8190         on _WIN32.
8191
8192         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
8193         getnameinfo.
8194
8195 2006-06-28  Simon Josefsson  <jas@extundo.com>
8196
8197         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
8198
8199 2006-06-28  Simon Josefsson  <jas@extundo.com>
8200
8201         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
8202         functions there.  It will succeed on Windows XP, but on Windows
8203         2000 and (presumably) earlier, it will fail, and use the internal
8204         re-implementation.
8205         (use_win32_p): New function.
8206         (getaddrinfo): Use strtoul on servname, to support numeric ports.
8207         Support AI_NUMERICSERV to disable getservbyname.
8208         (getnameinfo): New function, only supports
8209         NI_NUMERICHOST|NI_NUMERICSERV for now.
8210
8211         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
8212         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
8213         getnameinfo.
8214
8215 2006-06-28  Eric Blake  <ebb9@byu.net>
8216
8217         * modules/wcwidth: New file.
8218         * modules/mbchar (Depends-on): Add wcwidth.
8219         * modules/mbswidth (Depends-on): Add wcwidth.
8220         * MODULES.html.sh: Add wcwidth.
8221
8222 2006-06-28  Eric Blake  <ebb9@byu.net>
8223
8224         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
8225         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
8226
8227 2006-06-28  Eric Blake  <ebb9@byu.net>
8228
8229         * lib/xvasprintf.h: Fix comments.
8230
8231 2006-06-28  Eric Blake  <ebb9@byu.net>
8232
8233         * lib/mbchar.h (wcwidth): Include wcwidth.h.
8234         * lib/mbswidth.c (wcwidth): Move from here...
8235         * lib/wcwidth.h: ...to this new file.
8236
8237 2006-06-28  Derek R. Price  <derek@ximbiot.com>
8238
8239         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
8240
8241         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
8242         it's obsolete.
8243         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
8244
8245 2006-06-28  Derek R. Price  <derek@ximbiot.com>
8246
8247         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
8248         Autoconf 2.60 says this stuff was obsolete.
8249
8250 2006-06-28  Bruno Haible  <bruno@clisp.org>
8251
8252         * modules/wcwidth (Files): Add m4/wchar_t.m4.
8253
8254 2006-06-28  Bruno Haible  <bruno@clisp.org>
8255
8256         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
8257         gt_TYPE_WCHAR_T.
8258
8259 2006-06-28  Bruno Haible  <bruno@clisp.org>
8260
8261         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
8262         declaration for wcwidth.
8263         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
8264
8265 2006-06-28  Bruno Haible  <bruno@clisp.org>
8266
8267         * lib/mkdtemp.c [MINGW]: Include <io.h>.
8268         (mkdir): Define using _mkdir.
8269
8270 2006-06-28  Bruno Haible  <bruno@clisp.org>
8271
8272         * lib/getaddrinfo.h: Fix POSIX URL.
8273         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
8274         _WIN32.
8275         (use_win32_p): Make static.
8276         (getaddrinfo): Reject service name if it is empty or does not consist
8277         solely of decimal digits, or if its value is > 65535.
8278         (getnameinfo): Remove useless casts.
8279
8280 2006-06-27  Simon Josefsson  <jas@extundo.com>
8281
8282         * modules/sys_select: New file, suggested by Bruno Haible, Paul
8283         Eggert and Martin Lambers.
8284
8285 2006-06-27  Simon Josefsson  <jas@extundo.com>
8286
8287         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
8288         Eggert and Martin Lambers.
8289
8290 2006-06-27  Bruno Haible  <bruno@clisp.org>
8291
8292         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
8293         result to 0, not to empty.
8294         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
8295
8296 2006-06-27  Bruno Haible  <bruno@clisp.org>
8297
8298         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
8299
8300 2006-06-26  Simon Josefsson  <jas@extundo.com>
8301
8302         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
8303         present.
8304
8305 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
8306
8307         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
8308         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
8309         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
8310
8311 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
8312
8313         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
8314
8315 2006-06-26  Bruno Haible  <bruno@clisp.org>
8316
8317         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
8318
8319 2006-06-26  Bruno Haible  <bruno@clisp.org>
8320
8321         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
8322
8323 2006-06-26  Bruno Haible  <bruno@clisp.org>
8324
8325         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
8326         SGI C compiler in pre-C99 mode.
8327         Suggested by Mark D. Baushke and Larry Jones.
8328
8329 2006-06-26  Bruno Haible  <bruno@clisp.org>
8330
8331         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
8332         WCHAR_MAX.
8333         Reported by Mark D. Baushke and Larry Jones.
8334
8335 2006-06-26  Bruno Haible  <bruno@clisp.org>
8336
8337         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
8338         in pre-C99 mode.
8339         Suggested by Mark D. Baushke and Larry Jones.
8340
8341 2006-06-23  Simon Josefsson  <jas@extundo.com>
8342             Bruno Haible  <bruno@clisp.org>
8343
8344         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
8345         Emit mostlyclean-local rule.
8346         (func_emit_tests_Makefile_am): Likewise.
8347         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
8348
8349 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
8350
8351         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
8352
8353 2006-06-23  Bruno Haible  <bruno@clisp.org>
8354
8355         * tests/test-stdint.c: Update to match ISO C 99 Technical
8356         Corrigendum 1.
8357
8358 2006-06-23  Bruno Haible  <bruno@clisp.org>
8359
8360         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
8361
8362 2006-06-23  Bruno Haible  <bruno@clisp.org>
8363
8364         * lib/stdint_.h: Treat IRIX like OpenBSD.
8365
8366 2006-06-23  Bruno Haible  <bruno@clisp.org>
8367
8368         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
8369         ISO C 99 Technical Corrigendum 1.
8370
8371 2006-06-22  Simon Josefsson  <jas@extundo.com>
8372
8373         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
8374         MinGW.
8375
8376 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
8377
8378         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
8379         needed.  Some compiler complained about some of them.  Problem reported
8380         by Larry Jones in
8381         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
8382
8383 2006-06-21  Simon Josefsson  <jas@extundo.com>
8384
8385         * tests/test-getaddrinfo.c: New file.
8386
8387         * modules/getaddrinfo-tests: New file.
8388
8389         * MODULES.html.sh: Add inet_pton.
8390
8391         * modules/inet_pton: New file.
8392
8393 2006-06-21  Simon Josefsson  <jas@extundo.com>
8394
8395         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
8396         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
8397         of using the (limited) gnulib implementation on Windows XP.
8398
8399         * m4/inet_pton.m4: New file.
8400
8401 2006-06-21  Simon Josefsson  <jas@extundo.com>
8402
8403         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
8404         variable.
8405
8406         * lib/socket_.h: Don't define WINVER.
8407
8408         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
8409         slightly modified to work in gnulib.
8410
8411 2006-06-21  Simon Josefsson  <jas@extundo.com>
8412
8413         * doc/gnulib.texi (Windows sockets): Add.
8414
8415 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
8416
8417         * lib/read-file.c (fread_file): Start with buffer allocation of
8418         0 bytes rather than 1 byte; this simplifies the code.
8419         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
8420         code to free buffer and save/restore errno.
8421         (internal_read_file): Remove unused local.
8422
8423 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
8424
8425         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
8426         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
8427         Problem reported by Denis Excoffier in
8428         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
8429
8430 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
8431
8432         * modules/sys_socket, modules/socklen: Include sys/types since
8433         FreeBSD 4.x's sys/socket.h needs it.
8434
8435 2006-06-19  Simon Josefsson  <jas@extundo.com>
8436
8437         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
8438
8439 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
8440
8441         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
8442
8443 2006-06-19  Bruno Haible  <bruno@clisp.org>
8444
8445         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
8446         and FULL_PATH_INTTYPES_H in angle brackets.
8447         Reported by Mark D. Baushke <mdb@gnu.org>.
8448
8449 2006-06-17  Eric Blake  <ebb9@byu.net>
8450
8451         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
8452         errno.
8453
8454 2006-06-17  Bruno Haible  <bruno@clisp.org>
8455
8456         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
8457         <sys/inttypes.h>.
8458
8459 2006-06-17  Bruno Haible  <bruno@clisp.org>
8460
8461         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
8462         whether errno is declared. Assume <errno.h> declares errno.
8463
8464 2006-06-17  Bruno Haible  <bruno@clisp.org>
8465
8466         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
8467
8468 2006-06-17  Bruno Haible  <bruno@clisp.org>
8469
8470         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
8471         problem on Solaris 2.5.1.
8472
8473 2006-06-16  Eric Blake  <ebb9@byu.net>
8474
8475         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
8476         * lib/unicodeio.c [!defined errno]: Likewise.
8477         * lib/strtol.c [!defined errno]: Likewise.
8478         * lib/strtod.c [!defined errno]: Likewise.
8479
8480 2006-06-15  Eric Blake  <ebb9@byu.net>
8481
8482         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
8483
8484 2006-06-15  Eric Blake  <ebb9@byu.net>
8485
8486         * config/srclist.txt (ssize_t.m4): Lose sync.
8487
8488 2006-06-15  Bruno Haible  <bruno@clisp.org>
8489
8490         * modules/stdint (Files): Include m4/full-header-path.m4,
8491         m4/size_max.m4, m4/wchar_t.m4.
8492         (Makefile.am): Many more substitutions.
8493         * modules/stdint-tests: New file.
8494         * tests/test-stdint.c: New file.
8495
8496 2006-06-15  Bruno Haible  <bruno@clisp.org>
8497
8498         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
8499         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
8500         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
8501         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
8502         gl_CHECK_TYPE_SAME): New macros.
8503
8504 2006-06-15  Bruno Haible  <bruno@clisp.org>
8505
8506         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
8507
8508 2006-06-15  Bruno Haible  <bruno@clisp.org>
8509
8510         * lib/stdint_.h: Rewritten to be fully auto-configured.
8511         Fixes bug on HP-UX/IA64.
8512
8513 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
8514
8515         * lib/getdate.y (__attribute__): Don't define if already defined.
8516         Problem reported by Larry Jones.
8517         * lib/utimens.c (__attribute__): Likewise.
8518
8519 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
8520
8521         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
8522         reported by Andreas Schwab.
8523
8524 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8525             Bruno Haible  <bruno@clisp.org>
8526
8527         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
8528         check for the declaration of strnlen and a run test that exposes the
8529         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
8530         rpl_strndup.
8531
8532 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8533             Bruno Haible  <bruno@clisp.org>
8534
8535         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
8536
8537 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8538
8539         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
8540         compile test, for Tru64 4.0D.
8541
8542 2006-05-28  Karl Berry  <karl@gnu.org>
8543
8544         * config/srclist.txt (printf-args.c): lose sync.
8545
8546 2006-05-26  Martin Lambers  <marlam@marlam.de>
8547
8548         * lib/getpass.c: Updates the test for the native W32 API, and adds
8549         missing includes, thus fixing compilation warnings.
8550
8551 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
8552
8553         * lib/exclude.c (exclude_fnmatch): New function.
8554         (excluded_file_name): Call exclude_fnmatch.
8555         * lib/exclude.h (excluded_file_name): New prototype
8556
8557 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
8558
8559         * lib/tempname.c (small_open, large_open): New macros.
8560         (__open, __open64) [!_LIBC]: Remove.
8561         (__gen_tempname): Use small_open and large_open instead of __open
8562         and __open64.  This fixes a portability bug on HP-UX 11.11i
8563         reported by Simon Wing-Tang in
8564         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
8565
8566 2006-05-24  Bruno Haible  <bruno@clisp.org>
8567
8568         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
8569         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
8570         Reported by Thorsten Maerz <torte@netztorte.de> via
8571         Aaron Stone <aaron@serendipity.cx>.
8572
8573 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
8574
8575         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
8576         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
8577         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
8578         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
8579         not really conditional on the cache.
8580         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
8581
8582 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
8583
8584         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
8585         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
8586         (my_usleep): Don't mishandle maximum value.
8587
8588 2006-05-19  Jim Meyering  <jim@meyering.net>
8589
8590         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
8591
8592 2006-05-17  Bruno Haible  <bruno@clisp.org>
8593
8594         Cygwin portability.
8595         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
8596
8597 2006-05-17  Bruno Haible  <bruno@clisp.org>
8598
8599         * lib/stdint_.h: Fix recognition of Cygwin.
8600
8601 2006-05-15  Bruno Haible  <bruno@clisp.org>
8602
8603         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
8604         on libtool patch by Ralf Wildenhues.
8605
8606 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
8607
8608         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
8609         test for C99 conformance; (bool) 0.5 is an integer constant
8610         expression, but (bool) -0.5 is not.  Problem reported by Fedor
8611         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
8612
8613 2006-05-11  Simon Josefsson  <jas@extundo.com>
8614
8615         * m4/xvasprintf.m4: Fix obvious typo.
8616
8617 2006-05-11  Jim Meyering  <jim@meyering.net>
8618
8619         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
8620         James Lemley.
8621
8622 2006-05-10  Simon Josefsson  <jas@extundo.com>
8623
8624         * lib/md4.c: Typo fix, update copyright years.
8625         (K1, K2): Don't use L because it turn computations into 64-bit on
8626         64-bit platforms.
8627
8628 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
8629
8630         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
8631         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
8632         unwanted sign propagation, e.g., on hosts with 64-bit int.
8633         There still are some problems with reeelly weird theoretical hosts
8634         (e.g., 33-bit int) but it's not worth worrying about now.
8635         * lib/sha1.c (rol): Likewise.
8636         (K1, K2, K3, K4): Remove unnecessary L suffix.
8637
8638 2006-05-10  Bruno Haible  <bruno@clisp.org>
8639
8640         * lib/des.c: Cast to avoid warnings.
8641
8642 2006-05-09  Bruno Haible  <bruno@clisp.org>
8643
8644         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
8645         (Depends-on): Depend also on xsize, stdarg.
8646         (configure.ac): Add gl_XVASPRINTF.
8647
8648 2006-05-09  Bruno Haible  <bruno@clisp.org>
8649
8650         * m4/xvasprintf.m4: New file.
8651
8652 2006-05-09  Bruno Haible  <bruno@clisp.org>
8653
8654         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
8655         (EOVERFLOW): Define fallback value.
8656         (xstrcat): New function.
8657         (xvasprintf): Recognize the special case of a string concatenation.
8658
8659 2006-05-08  Eric Blake  <ebb9@byu.net>
8660
8661         * gnulib-tool (func_version): Base copyright year on CVS date.
8662         (func_emit_copyright_notice): New function.
8663         (func_emit_lib_Makefile_am): Use it.
8664         (func_emit_tests_Makefile_am): Likewise.
8665         (func_import): Likewise.
8666
8667 2006-05-08  Bruno Haible  <bruno@clisp.org>
8668
8669         * modules/stdarg: New file.
8670         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
8671
8672 2006-05-08  Bruno Haible  <bruno@clisp.org>
8673
8674         * m4/stdarg.m4: New file, from GNU gettext.
8675
8676 2006-05-08  Bruno Haible  <bruno@clisp.org>
8677
8678         * config/srclist.txt (build-aux/config.rpath): different from latest
8679         release.
8680
8681 2006-05-08  Bruno Haible  <bruno@clisp.org>
8682
8683         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
8684
8685 2006-05-05  Jim Meyering  <jim@meyering.net>
8686
8687         * m4/warning.m4: New file, derived from bison's file by the same name.
8688
8689 2006-05-03  Bruno Haible  <bruno@clisp.org>
8690
8691         * lib/stdint_.h: Shorter URL.
8692         * lib/inttypes.h: Likewise.
8693
8694 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
8695
8696         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
8697
8698 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
8699
8700         * lib/verify.h: Document the internals better.  Most of this change
8701         was written by Bruno Haible.
8702
8703 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
8704
8705         * doc/verify.texi: New file, partly based on a proposal by
8706         Bruno Haible.
8707
8708 2006-05-02  Bruno Haible  <bruno@clisp.org>
8709
8710         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
8711         test from here...
8712         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
8713
8714 2006-04-29  Bruno Haible  <bruno@clisp.org>
8715
8716         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
8717         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
8718
8719 2006-04-29  Bruno Haible  <bruno@clisp.org>
8720
8721         * gnulib-tool: Make --update option actually work.
8722
8723 2006-04-29  Bruno Haible  <bruno@clisp.org>
8724
8725         * doc/gcd.texi: New file.
8726         * doc/gnulib.texi: Include it.
8727
8728 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
8729
8730         * lib/getdate.y (get_date): When adding relative date, start with the
8731         initial time, not with the result of the first mktime call.
8732
8733 2006-04-25  Bruno Haible  <bruno@clisp.org>
8734
8735         * gnulib-tool (func_import): Output the include directives in three
8736         blocks, sorted separately.
8737         Reported by Ben Pfaff <blp@cs.stanford.edu>.
8738
8739 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
8740
8741         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
8742         to define main with arguments, for C++.  Reported by Eric Blake.
8743         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
8744         Prefer 'int main ()' to 'int main (void)', for C++.
8745         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
8746         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
8747         for 'main', for C99 and C++.
8748
8749 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
8750
8751         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
8752         Don't assume that exit status -1 is valid.
8753         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
8754         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
8755         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
8756         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
8757         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
8758         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
8759         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
8760         functions can be used without declaring them, or that you can
8761         exit with status -1.
8762         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
8763
8764 2006-04-24  Karl Berry  <karl@gnu.org>
8765
8766         * config/srclist.txt (longdouble.m4): sync lost.
8767
8768 2006-04-24  Eric Blake  <ebb9@byu.net>
8769
8770         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
8771
8772 2006-04-24  Bruno Haible  <bruno@clisp.org>
8773
8774         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
8775         poll() implementation in AIX.
8776         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
8777
8778 2006-04-24  Bruno Haible  <bruno@clisp.org>
8779
8780         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
8781         assigned exactly once.
8782
8783 2006-04-23  Claudio Fontana  <claudio@gnu.org>
8784             Bruno Haible  <bruno@clisp.org>
8785
8786         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
8787         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
8788         for AM_CPPFLAGS.
8789
8790 2006-04-23  Bruno Haible  <bruno@clisp.org>
8791
8792         * modules/copy-file: Depend on unistd.
8793         * modules/execute: Likewise.
8794         * modules/fatal-signal: Likewise.
8795         * modules/findprog: Likewise.
8796         * modules/mkdtemp : Likewise.
8797         * modules/pipe: Likewise.
8798         * modules/wait-process: Likewise.
8799
8800 2006-04-23  Bruno Haible  <bruno@clisp.org>
8801
8802         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
8803         condition was already detected.
8804         Reported by Ben Pfaff <blp@cs.stanford.edu>.
8805
8806 2006-04-23  Bruno Haible  <bruno@clisp.org>
8807
8808         * lib/copy-file.c: Include <unistd.h> unconditionally.
8809         * lib/execute.c: Likewise.
8810         * lib/fatal-signal.c: Likewise.
8811         * lib/findprog.c: Likewise.
8812         * lib/mkdtemp.c: Likewise.
8813         * lib/pipe.h: Likewise.
8814         * lib/pipe.c: Likewise.
8815         * lib/wait-process.h: Likewise.
8816
8817 2006-04-23  Bruno Haible  <bruno@clisp.org>
8818
8819         * gnulib-tool (func_usage): Fix --import description. Document
8820         --update.
8821         (func_import): Create temporary file in a temporary directory, if
8822         --dry-run is specified. Silence errors from 'grep' when there are no
8823         m4 files in $m4dir.
8824         (func_create_testdir): Silence errors from 'grep' when there are no
8825         m4 files in $m4dir.
8826         Reported by Karl Berry <karl@freefriends.org>.
8827
8828 2006-04-20  Bruno Haible  <bruno@clisp.org>
8829
8830         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
8831         one argument, so that the code will be portable to Autoconf 2.60.
8832         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
8833         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
8834         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
8835
8836 2006-04-19  Derek Price  <derek@ximbiot.com>
8837             Eric Blake  <ebb9@byu.net>
8838
8839         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
8840         rather than "/full/path.h".  Update comment to match.  Shorten &
8841         generalize m4_translit call via AS_TR_CPP.
8842
8843 2006-04-19  Derek Price  <derek@ximbiot.com>
8844             Eric Blake  <ebb9@byu.net>
8845
8846         * lib/inttypes.h: Correct grammar in comment.
8847
8848 2006-04-18  Derek Price  <derek@ximbiot.com>
8849             Paul Eggert  <eggert@cs.ucla.edu>
8850
8851         * modules/inttypes: New file.
8852         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
8853
8854 2006-04-18  Derek Price  <derek@ximbiot.com>
8855             Paul Eggert  <eggert@cs.ucla.edu>
8856
8857         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
8858         New files.
8859
8860 2006-04-18  Derek Price  <derek@ximbiot.com>
8861             Paul Eggert  <eggert@cs.ucla.edu>
8862
8863         * lib/inttypes.h: New file.
8864         * lib/strtoimax.c: Assume <inttypes.h>.
8865
8866 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
8867
8868         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
8869         isn't mounted.  Problem reported by Kir Kolyshkin.
8870
8871 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
8872
8873         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
8874         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
8875         Derek R. Price.
8876         * lib/regex.h (RE_DUP_MAX): Update comment to match current
8877         implementation.
8878
8879 2006-04-12  Eric Blake  <ebb9@byu.net>
8880
8881         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
8882         is now done automatically by the corresponding Autoconf macro.
8883
8884 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
8885
8886         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
8887         time_r.h.
8888
8889 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
8890
8891         Merge regex changes from libc, removing some of our
8892         POSIX-conformance changes that were rejected and redoing them in a
8893         less-intrusive way.
8894
8895         * lib/regcomp.c (re_compile_internal, init_dfa):
8896         Length arg is now size_t, not Idx.  All uses changed.
8897         (peek_token): Forward decl now says internal_function.
8898         (__re_error_msgid, __re_error_msgid_idx):
8899         Now static rather than extern with attribute_hidden.
8900         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
8901         For some reason libc prefers K&R style defns for external functions.
8902         (regerror) [!defined _LIBC]: Likewise.
8903         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
8904         (seek_collating_symbol_entry, lookup_collation_sequence_value):
8905         (build_range_exp, build_collating_symbol):
8906         Use K&R-style defn.
8907         (re_compile_fastmap): Use '\0' to memset, not 0.
8908         (utf8_sb_map): Make the calculations more obvious.
8909         (init_dfa, parse_bracket_exp, build_charclass_op):
8910         Call calloc and cast result, as glibc does.
8911         (init_word_char, fetch_token, peek_token, peek_token_bracket):
8912         (build_range_exp, build_collating_symbol):
8913         Now internal functions.
8914
8915         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
8916
8917         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
8918         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
8919         Don't depend on VMS; depend on __VMS instead, for POSIX
8920         namespace cleanness.
8921         (regoff_t): Define to ssize_t, not long int.
8922
8923         Remove the REG_ macros named below.  Instead, make the old names
8924         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
8925         __USE_GNU_REGEX.
8926         (REG_BACKSLASH_ESCAPE_IN_LISTS):
8927         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
8928         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
8929         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
8930         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
8931         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
8932         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
8933         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
8934         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
8935         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
8936         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
8937         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
8938         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
8939         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
8940         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
8941         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
8942         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
8943         (REG_NREGS):
8944         Remove.  All uses replaced by the old RE_* names.
8945         (RE_BACKSLASH_ESCAPE_IN_LISTS):
8946         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
8947         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
8948         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
8949         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
8950         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
8951         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
8952         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
8953         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
8954         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
8955         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
8956         Don't bother having these macros be independent of each others'
8957         values, since they no longer exist in the POSIX name space.
8958
8959         Rename the following member names back to their old names,
8960         unless !__USE_GNU_REGEX.  All uses changed back.
8961         (buffer): Renamed from re_buffer.
8962         (allocated): Renamed from re_allocated.
8963         (used): Renamed from re_used.
8964         (syntax): Renamed from re_syntax.
8965         (fastmap): Renamed from re_fastmap.
8966         (translate): Renamed from re_translate.
8967         (can_be_null): Renamed from re_can_be_null.
8968         (regs_allocated): Renamed from re_regs_allocated.
8969         (fastmap_accurate): Renamed from re_fastmap_accurate.
8970         (no_sub): Renamed from re_no_sub.
8971         (not_bol): Renamed from re_not_bol.
8972         (not_eol): Renamed from re_not_eol.
8973         (newline_anchor): Renamed from re_newline_anchor.
8974         (num_regs): Renamed from rm_num_regs.
8975         (start): Renamed from rm_start.
8976         (end): Renamed from rm_end.
8977
8978         (free_state): Move up a bit.
8979
8980         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
8981         #define to be empty.
8982         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
8983         when that is what is intended.
8984         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
8985         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
8986         (MAX): New macro.
8987         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
8988         All uses changed back to re_malloc, etc.  It's now the caller's
8989         responsibility to check for overflow; all callers changed.
8990         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
8991         (re_x2nrealloc): Remove.
8992         (free_state): Remove decl.
8993
8994         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
8995         (re_set_registers, re_exec):
8996         Use K&R-style defn.
8997
8998         2006-01-31  Roland McGrath  <roland@redhat.com>
8999
9000         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
9001         Reported by Mike Frysinger <vapier@gentoo.org>.
9002
9003         2006-01-15  Andreas Jaeger  <aj@suse.de>
9004
9005         [BZ #1950]
9006         * lib/regex_internal.c (re_string_reconstruct): Adjust for
9007         build_wcs_upper_buffer change.
9008         (build_wcs_upper_buffer): Change return type.
9009
9010         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
9011
9012         * lib/regex_internal.h: Include <stdint.h> if available.
9013
9014         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
9015
9016         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
9017
9018         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
9019
9020         * lib/regcomp.c: Adjust for changed secondary hash function.
9021
9022         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
9023
9024         * lib/regex.h: Pretty printing.
9025         Clean up namespace a bit.
9026
9027         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
9028
9029         * lib/regexec.c (update_cur_sifted_state, check_arrival,
9030         check_arrival_add_next_nodes): Avoid using uninitialized variable.
9031
9032         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
9033                     Ulrich Drepper  <drepper@redhat.com>
9034
9035         [BZ #1302]
9036         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
9037         changed.
9038         (bitset_word_t): Renamed from bitset_word.  All uses changed.
9039
9040         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
9041
9042         [BZ #281]
9043         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
9044         * lib/regcomp.c: Remove unnecessary uses of
9045         unsigned RE_TRANSLATE_TYPE.
9046         * lib/regex_internal.h: Likewise.
9047         * lib/regex_internal.c: Likewise.
9048         * lib/regexec.c: Likewise.
9049         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
9050
9051         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
9052
9053         * lib/regexec.c (find_recover_state): Remove unnecessary
9054         initialization.
9055         (transit_state_bkref): Make DFA a const pointer.
9056         (get_subexp): Likewise.
9057         (check_arrival): Likewise.
9058         (update_cur_sifted_state): Likewise.
9059         (re_search_internal): Likewise.
9060         (prune_impossible_nodes): Likewise.
9061         (acquire_init_state_context): Likewise.
9062         (proceed_next_node): Likewise.
9063         (set_regs): Likewise.
9064         (free_fail_stack_return): Likewise.
9065         (check_arrival_expand_ecl): Mark DFA parameter as const.
9066         (check_arrival_expand_ecl_sub): Likewise.
9067         (check_subexp_limits): Likewise.
9068         (sub_epsilon_src_nodes):  Likewise.
9069         (add_epsilon_src_nodes):  Likewise.
9070         (merge_state_array): Likewise.
9071         (update_regs): Likewise.
9072         (build_trtable): Likewise.
9073         (sift_states_backward): Mark MCTX parameter as const.
9074         (build_sifted_states): Likewise.
9075         (update_cur_sifted_state): Likewise.
9076         (sift_states_mkref): Likewise.
9077         (check_arrival_expand_ecl): Mark eclosure as const.
9078         (check_dst_limits_calc_pos_1): Likewise.
9079         * lib/regex_internal.h (re_match_context_t): Make dfa a const
9080         pointer.
9081
9082         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
9083
9084         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
9085         (transit_state_sb): Likewise.
9086         (transit_state_mb): Likewise.
9087         (sift_states_iter_mb): Likewise.
9088         (check_arrival_add_next_nodes): Likewise.
9089         (check_node_accept_bytes): Change first parameter to pointer-to-const.
9090         [_LIBC] (re_search_2_stub): Use mempcpy.
9091
9092         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
9093         mbrtowc for very simple UTF-8 case.
9094
9095         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
9096         a pointer-to-const.
9097         (re_acquire_state_context): Likewise.
9098         * lib/regex_internal.h: Adjust prototypes.
9099
9100         * lib/regex.c: Prevent using C++ compilers.
9101
9102         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
9103         (re_acquire_state_context): Likewise.
9104
9105 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
9106
9107         * modules/regex (Depends-on): Add ssize_t.
9108
9109 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
9110
9111         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
9112         translation table.
9113
9114 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
9115
9116         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
9117
9118 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
9119             Bruno Haible  <bruno@clisp.org>
9120
9121         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
9122         <sys/types.h> and <inttypes.h>.
9123
9124 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9125
9126         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
9127         `__error_t_defined', so argp.h will not typedef the former.
9128
9129 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
9130
9131         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
9132         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
9133         glibc names.  Even if glibc is changed to conform to POSIX, the
9134         traditional names will be available anyway, since regex depends on
9135         the extensions module.  Also, fix a longstanding typo in the
9136         implementation of Spencer ERE test #75 from grep 2.3.  Problems
9137         reported by Emanuele Giaquinta.  Also, change sense of cached
9138         variable, so that the message makes sense.
9139
9140 2006-03-24  Simon Josefsson  <jas@extundo.com>
9141
9142         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
9143         including some doc fixes.
9144         (base64_encode_alloc): Fix +1 bug on allocation failures.
9145
9146 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9147
9148         * lib/base64.c (base64_encode): Do not read past end of array with
9149         unsanitized input on systems with CHAR_BIT > 8.
9150
9151 2006-03-24  Eric Blake  <ebb9@byu.net>
9152
9153         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
9154
9155 2006-03-22  Karl Berry  <karl@gnu.org>
9156
9157         * config/srclist.txt (*setenv.[ch]): get from coreutils.
9158         * config/srclistvars.sh (COREUTILS): new var.
9159
9160 2006-03-17  Jim Meyering  <jim@meyering.net>
9161
9162         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
9163         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
9164
9165 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
9166
9167         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
9168         no longer needs it.  Instead, check that regoff_t is as least
9169         as wide as ptrdiff_t.
9170
9171         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
9172         so that our regex.h stays compatible with the installed regex.
9173         This is helpful for installers who configure --without-included-regex.
9174         Problem reported by Emanuele Giaquinta.
9175
9176 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
9177
9178         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
9179         Typedef to long int, not to off_, as POSIX will likely change
9180         in that direction.
9181
9182 2006-03-15  Eric Blake  <ebb9@byu.net>
9183
9184         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
9185
9186 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
9187
9188         * lib/argp-help.c (validate_uparams): Fix typo
9189         * lib/argp-parse.c (argp_default_options): Consistently begin help
9190         messages with a lowercase letter.
9191
9192 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
9193
9194         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
9195         overrun buffers and shouldn't be used (much as gets shouldn't be
9196         used).
9197         * lib/time_r.c (asctime_r, ctime_r): Likewise.
9198
9199 2006-03-08  Simon Josefsson  <jas@extundo.com>
9200
9201         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
9202         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
9203
9204 2006-03-08  Simon Josefsson  <jas@extundo.com>
9205
9206         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
9207         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
9208
9209 2006-03-08  Simon Josefsson  <jas@extundo.com>
9210
9211         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
9212         signal that configure disabled the device.
9213
9214 2006-03-08  Simon Josefsson  <jas@extundo.com>
9215
9216         * build-aux/maint.mk: Fix refresh-po, to handle no translated
9217         languages.
9218
9219 2006-03-07  Simon Josefsson  <jas@extundo.com>
9220
9221         * modules/getopt (Depends-on): Add unistd.
9222
9223         * modules/unistd: New file.
9224
9225 2006-03-07  Simon Josefsson  <jas@extundo.com>
9226
9227         * modules/gc-random: New file.
9228
9229 2006-03-07  Simon Josefsson  <jas@extundo.com>
9230
9231         * m4/unistd_h.m4: New file.
9232
9233 2006-03-07  Simon Josefsson  <jas@extundo.com>
9234
9235         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
9236         test to be side-effect free by storing the result in the cache
9237         variable gl_cv_lib_readline, and moving the assignment of
9238         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
9239         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
9240
9241 2006-03-07  Simon Josefsson  <jas@extundo.com>
9242
9243         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
9244         error on missing devices (the functions will return an error).
9245
9246         * m4/gc.m4: Move random stuff to gc-random.m4
9247
9248 2006-03-07  Simon Josefsson  <jas@extundo.com>
9249
9250         * lib/unistd_.h: New file.
9251
9252 2006-03-07  Simon Josefsson  <jas@extundo.com>
9253
9254         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
9255
9256 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
9257
9258         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
9259         Problem reported by Juan Manuel Guerrero.
9260
9261 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
9262
9263         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
9264         the unistd module.
9265         * lib/getlogin_r.c: Likewise.
9266         * lib/getlogin_r.h: Likewise.
9267         * lib/glob.c: Likewise.
9268         * lib/pagealign_alloc.c: Likewise.
9269         * lib/unistd_.h: Remove; no longer needed.
9270
9271 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
9272
9273         * MODULES.html.sh (Support for systems lacking POSIX:2001):
9274         Add unistd.
9275         * modules/c-stack (Depends-on): Add unistd.
9276         * modules/getlogin_r: Likewise.
9277         * modules/glob: Likewise.
9278         * modules/pagealign_alloc: Likewise.
9279         * modules/unistd (Files): Remove lib/unistd_.h.
9280         (EXTRA_DIST): Remove.
9281         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
9282         need unistd_.h.
9283         (MOSTLYCLEANFILES): Remove unistd.h-t.
9284
9285 2006-03-03  Simon Josefsson  <jas@extundo.com>
9286
9287         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
9288
9289 2006-03-03  Simon Josefsson  <jas@extundo.com>
9290
9291         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
9292         libidn and bison.
9293
9294 2006-03-03  Simon Josefsson  <jas@extundo.com>
9295
9296         * build-aux/maint.mk: Add indent target.
9297
9298 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
9299
9300         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
9301         our replacement poll.h in any case, to avoid a differing
9302         declaration from a system header.  Seen on AIX.
9303
9304 2006-03-01  Simon Josefsson  <jas@extundo.com>
9305
9306         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
9307         <kasal@ucw.cz>.
9308
9309 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
9310
9311         * modules/gettime (Depends-on): Add extensions module.
9312         * modules/nanosleep (Depends-on): Likewise.
9313         * modules/settime (Depends-on): Likewise.
9314
9315 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
9316
9317         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
9318         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
9319         pedantically.
9320         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
9321         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
9322
9323         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
9324         not "==".  Reported by Ralf Wildenhues.
9325
9326 2006-03-01  Karl Berry  <karl@gnu.org>
9327
9328         * doc/Copyright/request-*: new files, synced from gnuorg.
9329
9330 2006-03-01  Karl Berry  <karl@gnu.org>
9331
9332         * config/srclist.txt (Copyright/*): new entries.
9333
9334 2006-02-28  Simon Josefsson  <jas@extundo.com>
9335
9336         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
9337
9338 2006-02-27  Simon Josefsson  <jas@extundo.com>
9339
9340         * lib/base64.h: Indent #define's.  From Jim Meyering
9341         <jim@meyering.net>.
9342
9343 2006-02-27  Jim Meyering  <jim@meyering.net>
9344
9345         Revert the change of 2006-02-24, so these files can continue
9346         to be sync'd from gettext.
9347         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
9348         of `config.h'.
9349
9350 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
9351
9352         * modules/intprops: New file.
9353         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
9354         Add intprops.
9355         * modules/getloadavg (Files): Remove lib/intprops.h.
9356         (Depends-on): Add intprops.
9357         * modules/human: Likewise.
9358         * modules/inttostr: Likewise.
9359         * modules/openat: Likewise.
9360         * modules/sig2str: Likewise.
9361         * modules/userspec: Likewise.
9362         * modules/utimecmp: Likewise.
9363         * modules/xnanosleep: Likewise.
9364         * modules/xstrtol: Likewise.
9365
9366 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
9367
9368         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
9369         * modules/lock-tests (TESTS): Use $(EXEEXT).
9370         * modules/tls-tests: Likewise.
9371         * modules/argp-tests: Likewise.
9372         (check_PROGRAMS): New var, replacing...
9373         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
9374
9375 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9376
9377         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
9378         `config.h'.
9379
9380 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
9381
9382         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
9383
9384 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9385
9386         Sync from coreutils.
9387         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
9388         gl_CHDIR_SAFER.
9389
9390 2006-02-22  Jim Meyering  <jim@meyering.net>
9391
9392         Sync from coreutils.
9393         * m4/chdir-safer.m4: New file.
9394
9395 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
9396
9397         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
9398         AT_FDCWD exceeds INT_MAX.
9399         * lib/openat.h (AT_FDCWD): Likewise.
9400
9401 2006-02-17  Eric Blake  <address@hidden>
9402
9403         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
9404
9405 2006-02-16  Simon Josefsson  <jas@extundo.com>
9406
9407         * modules/getaddrinfo (Depends-on): Add sys_socket.
9408
9409 2006-02-15  Simon Josefsson  <jas@extundo.com>
9410
9411         * build-aux/maint.mk: Add dsyntax-check rule.
9412
9413 2006-02-15  Eric Blake  <ebb9@byu.net>
9414
9415         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
9416         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
9417         'present but cannot compile' warnings on cygwin.
9418         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
9419         use ws2tcpip.h if sys/socket.h works.
9420         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
9421         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
9422
9423 2006-02-14  Simon Josefsson  <jas@extundo.com>
9424
9425         * modules/maintainer-makefile (Files): Rename.
9426
9427         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
9428         and (the local) Makefile.cfg to maint-cfg.mk.
9429
9430         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
9431         to the latter.
9432
9433         * modules/maintainer-makefile: New module.
9434
9435         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
9436         severaly stripped to make it possible to build it up from scratch
9437         with reliable tests.
9438
9439         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
9440         fixes to permit overriding the default actions when configure and
9441         makefile are not available.
9442
9443 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
9444
9445         Sync from coreutils.
9446         * modules/lstat (Depends-on): Don't depend on xalloc.
9447         (License): Change from GPL to LGPL, since this is now simply a
9448         replacement for a libc function.
9449
9450 2006-02-14  Jim Meyering  <jim@meyering.net>
9451
9452         Sync from coreutils.
9453
9454         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
9455         failure on deficient systems, and simplify gnulib lgpl dependencies.
9456         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
9457         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
9458
9459         * lib/xalloc-die.c: Remove unused definition of N_.
9460
9461 2006-02-14  Jim Meyering  <jim@meyering.net>
9462
9463         Sync from coreutils.
9464         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
9465         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
9466         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
9467         double-quote uses of that variable, to accommodate the rare case in
9468         which getmntent is available in none of the libraries checked.  This
9469         happens at least on FreeBSD 5.0.
9470
9471 2006-02-13  Simon Josefsson  <jas@extundo.com>
9472
9473         * gnulib-tool (Usage): Fix --import, from
9474         karl@freefriends.org (Karl Berry).
9475
9476 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
9477
9478         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
9479
9480 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
9481
9482         * lib/argp-namefrob.h: Restore changes accidentally lost during the
9483         "autoupdate" on 2005-12-12.
9484
9485 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
9486
9487         * modules/closeout (Depends-on): Remove atexit.
9488
9489 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
9490
9491         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
9492         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
9493
9494 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
9495
9496         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
9497         __EXTENSIONS__ if this causes compilation to fail.  Problem
9498         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
9499         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
9500
9501 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
9502
9503         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
9504         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
9505         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
9506         All uses changed.
9507
9508 2006-01-26  Simon Josefsson  <jas@extundo.com>
9509
9510         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
9511         prototype is visible on mingw32.
9512
9513         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
9514         for mingw32.
9515
9516         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
9517         mingw32).
9518
9519 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
9520
9521         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
9522         attempt to open for write; this always fails, at least on POSIX
9523         hosts.  This reinstates the 2006-01-09 change, which was
9524         inadvertently removed.
9525
9526 2006-01-26  Bruno Haible  <bruno@clisp.org>
9527
9528         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
9529         Reported by Paul Eggert.
9530
9531 2006-01-26  Bruno Haible  <bruno@clisp.org>
9532             Paul Eggert  <eggert@cs.ucla.edu>
9533
9534         * lib/stdbool_.h (_Bool)
9535         [(! (defined __cplusplus || defined __BEOS__)
9536           && !defined __GNUC__
9537           && !(defined __HP_cc || defined __xlc__
9538                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
9539                || defined __sgi))]:
9540         #define to signed char in these cases too; this simplifies
9541         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
9542         etc., separately) and makes it more conservative.
9543
9544 2006-01-25  Simon Josefsson  <jas@extundo.com>
9545
9546         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
9547         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
9548         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
9549
9550 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
9551
9552         * lib/argp-namefrob.h: Bugfix. Remove stray #
9553
9554 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
9555
9556         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
9557         so that we test the test.
9558         Check for yet another HP-UX cc bug involving *bool |= bool.
9559
9560 2006-01-25  Karl Berry  <karl@gnu.org>
9561
9562         * config/srclist.txt (vasnprintf.c): sync lost.
9563
9564 2006-01-25  Jim Meyering  <jim@meyering.net>
9565
9566         Sync from the stable (b5) branch of coreutils:
9567
9568         * lib/fts.c (fts_children): Don't let close() clobber errno from
9569         failed fchdir().
9570
9571         * lib/fts.c (fts_stat): When following a symlink-to-directory,
9572         don't necessarily interpret stat-fails+lstat-succeeds as indicating
9573         a dangling symlink.  That can also happen at least for ELOOP.
9574         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
9575         FYI, this bug predates the inclusion of fts.c in coreutils.
9576
9577         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
9578         in their own block, so pre-c99 compilers don't object.
9579
9580         Avoid the double-free (first in fts_read, second in fts_close) that
9581         would occur when an `active' directory is made inaccessible (e.g.,
9582         via chmod a-x) during a traversal.
9583         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
9584         before returning.  Reproduce this failure by
9585         mkdir -p a/b; cd a; chmod a-x . b
9586         Reported by Stavros Passas.
9587
9588 2006-01-25  Jim Meyering  <jim@meyering.net>
9589
9590         * lib/fileblocks.c: Remove more useless parentheses.
9591         * lib/readutmp.h: Likewise.
9592
9593 2006-01-25  Bruno Haible  <bruno@clisp.org>
9594
9595         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
9596         warnings.
9597         Reported by Paul Eggert.
9598
9599 2006-01-25  Bruno Haible  <bruno@clisp.org>
9600
9601         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
9602         rid of a trap command. For Solaris sh.
9603         Reported by Mark D. Baushke <mdb@gnu.org>.
9604
9605 2006-01-24  Simon Josefsson  <jas@extundo.com>
9606
9607         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
9608         Bruno.
9609
9610 2006-01-24  Karl Berry  <karl@gnu.org>
9611
9612         * config/srclist.txt (argp-namefrob.h): sync lost.
9613
9614 2006-01-24  Jim Meyering  <jim@meyering.net>
9615
9616         * modules/openat (Files): Add lib/intprops.h.
9617         From Mark D. Baushke.
9618
9619 2006-01-24  Jim Meyering  <jim@meyering.net>
9620
9621         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
9622         Reported by Mark D. Baushke.
9623
9624 2006-01-24  Jim Meyering  <jim@meyering.net>
9625
9626         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
9627
9628 2006-01-24  Bruno Haible  <bruno@clisp.org>
9629
9630         * modules/strnlen (Maintainer): Change from glibc to all.
9631
9632 2006-01-24  Bruno Haible  <bruno@clisp.org>
9633
9634         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
9635         Patch by Paul Eggert.
9636
9637 2006-01-24  Bruno Haible  <bruno@clisp.org>
9638
9639         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
9640         already has it.
9641         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
9642         2005-11-26.
9643
9644         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
9645         'signed char' to avoid problems with the built-in _Bool type.
9646         Reported by Paul Eggert on 2005-11-26.
9647
9648 2006-01-24  Bruno Haible  <bruno@clisp.org>
9649
9650         * gnulib-tool (func_import): Avoid constructing complicated sed
9651         expressions inside backquote.
9652         Report and solution by Mark D. Baushke <mdb@gnu.org>.
9653
9654 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
9655
9656         These changes imported from libc.
9657         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
9658         test and two separate function calls.
9659         * lib/strndup.c (__strndup): Add libc_hidden_def.
9660
9661 2006-01-23  Simon Josefsson  <jas@extundo.com>
9662
9663         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
9664         Remove the test_*_SOURCES variable: automake infers it by default.
9665         * modules/tls-tests: Likewise.
9666
9667 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
9668
9669         Work around porting bugs reported by Dieter in
9670         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
9671         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
9672         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
9673         Include "getopt.h" first, to check interface.
9674         (getenv): Declare only if defined HAVE_DECL_GETENV &&
9675         !HAVE_DECL_GETENV.
9676         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
9677         (__strndup): Revert to K&R-style function dfns, the glibc style.
9678         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
9679         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
9680         Include strnlen.h first, to get prototype properly.
9681         (strnlen): Renamed from __strnlen.
9682         Remove weak alias.
9683
9684 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
9685
9686         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
9687
9688 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
9689
9690         * config/srclist.txt: Adjust to reflect glibc reorganization.
9691         This affects only comments.
9692
9693 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
9694
9695          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
9696          Reported by Bruce Korb <bkorb@gnu.org>.
9697
9698 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
9699
9700         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
9701         to pacify gcc -Wswitch-default.
9702
9703 2006-01-22  Bruno Haible  <bruno@clisp.org>
9704
9705         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
9706         temporary buffer for sprintf, take into account the precision also
9707         for 'd', 'i', 'u', 'o', 'x', 'X'.
9708
9709 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
9710
9711         * modules/argp-tests: New module
9712         * tests/test-argp.c: New file
9713         * tests/test-argp-2.sh: New file
9714
9715 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
9716
9717         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
9718         (__argp_base_name): Removed
9719         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
9720         typo.
9721         (__argp_base_name): Provide macro definition or extern declaration
9722         depending on the configuration
9723
9724 2006-01-20  Simon Josefsson  <jas@extundo.com>
9725
9726         * modules/inet_ntop (Depends-on): Depend on sys_socket.
9727
9728 2006-01-20  Simon Josefsson  <jas@extundo.com>
9729
9730         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
9731
9732 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
9733
9734         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
9735         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
9736         Suggested by Bruno Haible.
9737
9738 2006-01-20  Karl Berry  <karl@gnu.org>
9739
9740         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
9741         until changes propagate, I guess.
9742
9743 2006-01-19  Simon Josefsson  <jas@extundo.com>
9744
9745         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
9746
9747 2006-01-19  Simon Josefsson  <jas@extundo.com>
9748
9749         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
9750
9751 2006-01-19  Simon Josefsson  <jas@extundo.com>
9752
9753         * gnulib-tool: Set check_PROGRAMS.
9754
9755         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
9756         modules/des-tests, modules/gc-arcfour-tests,
9757         modules/gc-arctwo-tests, modules/gc-des-tests,
9758         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
9759         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
9760         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
9761         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
9762         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
9763         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
9764         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
9765         test_*_SOURCES.
9766
9767 2006-01-18  Simon Josefsson  <jas@extundo.com>
9768
9769         * modules/socklen (Depends-on): Depend on sys_socket.
9770
9771 2006-01-18  Simon Josefsson  <jas@extundo.com>
9772
9773         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
9774         modules/des-tests, modules/gc-arcfour-tests,
9775         modules/gc-arctwo-tests, modules/gc-des-tests,
9776         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
9777         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
9778         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
9779         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
9780         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
9781         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
9782         $(EXEEXT) to automake TESTS variable, for mingw32.
9783
9784 2006-01-17  Simon Josefsson  <jas@extundo.com>
9785
9786         * modules/socklen (Include): Need sys/socket.h.
9787
9788 2006-01-17  Bruno Haible  <bruno@clisp.org>
9789
9790         * modules/ssize_t (Include): Add <sys/types.h>.
9791
9792 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
9793
9794         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
9795         it's not portable and it doesn't work with cross-compiles.
9796         Problem reported by Bruno Haible.  Fix missing-$ typo in
9797         'test "gl_cv_ignore_unused_libraries" ...' that prevented
9798         -zignore from being used with Sun's C compiler.
9799
9800 2006-01-12  Simon Josefsson  <jas@extundo.com>
9801
9802         * lib/base64.c: Fix warning, reported by Bruno Haible
9803         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
9804
9805 2006-01-12  Bruno Haible  <bruno@clisp.org>
9806
9807         * modules/ldd: New file.
9808         * build-aux/ldd.sh.in: New file.
9809         * MODULES.html.sh (Support for building libraries and executables): Add
9810         ldd.
9811
9812 2006-01-12  Bruno Haible  <bruno@clisp.org>
9813
9814         * m4/ldd.m4: New file.
9815
9816 2006-01-12  Bruno Haible  <bruno@clisp.org>
9817
9818         * gnulib-tool (func_import, func_create_testdir): Don't go into an
9819         endless loop while replacing $auxdir with build-aux.
9820
9821 2006-01-11  Simon Josefsson  <jas@extundo.com>
9822
9823         * lib/stdint_.h (SIZE_MAX): Add missing (.
9824
9825 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
9826
9827         Sync from coreutils.
9828         * lib/md5.c: Fix commentary typos.
9829         (alignof, UNALIGNED_P): No need for a GCC-specific version.
9830         * lib/md5.h (__attribute__): Remove; unused.
9831         * lib/sha1.c: Fix commentary to match md5 better.
9832         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
9833         so that we don't need to worry about alignment.  All uses changed.
9834         This merges the 2005-10-28 md5 change into sha1.
9835
9836 2006-01-11  Jim Meyering  <jim@meyering.net>
9837
9838         Sync from coreutils.
9839         * lib/md5.c (OP): Fix spacing.
9840
9841 2006-01-11  Bruno Haible  <bruno@clisp.org>
9842
9843         Ensure automatic ordering between gl_LOCK and gl_ARGP.
9844         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
9845         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
9846
9847 2006-01-11  Bruno Haible  <bruno@clisp.org>
9848
9849         Ensure automatic ordering between gl_LOCK and gl_ARGP.
9850         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
9851         the "early" section as well.
9852
9853 2006-01-11  Bruno Haible  <bruno@clisp.org>
9854
9855         Avoid "ar: no archive members specified" error on MacOS X.
9856         * gnulib-tool (func_modules_add_dummy): New function.
9857         (func_import, func_create_testdir): Invoke it.
9858
9859 2006-01-11  Bruno Haible  <bruno@clisp.org>
9860
9861         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
9862         with $auxdir in AC_CONFIG_FILES statements.
9863
9864 2006-01-11  Bruno Haible  <bruno@clisp.org>
9865
9866         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
9867         Initialize also noinst_HEADERS to empty.
9868
9869 2006-01-11  Bruno Haible  <bruno@clisp.org>
9870
9871         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
9872         variables.
9873         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
9874         autoreconf.
9875
9876 2006-01-11  Bruno Haible  <bruno@clisp.org>
9877
9878         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
9879         overridable by the user.
9880         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
9881
9882 2006-01-10  Simon Josefsson  <jas@extundo.com>
9883
9884         * modules/sys_socket: New file.
9885
9886 2006-01-10  Simon Josefsson  <jas@extundo.com>
9887
9888         * m4/sys_socket_h.m4: New file.
9889
9890 2006-01-10  Simon Josefsson  <jas@extundo.com>
9891
9892         * lib/socket_.h: New file.
9893
9894 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
9895
9896         * modules/readutmp (Maintainer): Add myself.
9897
9898 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
9899
9900         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
9901         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
9902         People who are still concerned with buggy memcmp implementations
9903         can invoke gl_FUNC_MEMCMP themselves.
9904
9905 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
9906
9907         * lib/regex_internal.h (BITSET_WORD_BITS):
9908         Work around a bug in 64-bit PGC (before version 6.1-2), where the
9909         preprocessor mishandles large unsigned values as if they were signed.
9910         Problem reported by Claudio Fontana in
9911         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
9912
9913 2006-01-10  Jim Meyering  <jim@meyering.net>
9914
9915         Avoid the double-free (first in fts_read, second in fts_close) that
9916         would occur when an `active' directory is made inaccessible (e.g.,
9917         via chmod a-x) during a traversal.
9918         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
9919         before returning.  Reproduce this failure by
9920         mkdir -p a/b; cd a; chmod a-x . b
9921         Reported by Stavros Passas.
9922
9923         Sync from coreutils.
9924         * lib/sha1.c: Tweak grammar in a comment.
9925
9926 2006-01-10  Jim Meyering  <jim@meyering.net>
9927
9928         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
9929         Patch by Joerg Sonnenberger.
9930
9931 2006-01-10  Bruno Haible  <bruno@clisp.org>
9932
9933         * modules/readutmp: Depend on module free.
9934         * modules/strtok_r: Depend on module restrict.
9935
9936 2006-01-10  Bruno Haible  <bruno@clisp.org>
9937
9938         * modules/gettext (configure.ac): Add an invocation of
9939         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
9940
9941 2006-01-10  Bruno Haible  <bruno@clisp.org>
9942
9943         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
9944         Reported by Werner Lemberg <wl@gnu.org>.
9945
9946 2006-01-10  Bruno Haible  <bruno@clisp.org>
9947
9948         * lib/localcharset.c: Update from GNU gettext.
9949
9950 2006-01-10  Bruno Haible  <bruno@clisp.org>
9951
9952         * lib/argp.h (__const): Remove macro. Use const instead.
9953         * lib/argp-fmtstream.h (__const): Likewise.
9954         * lib/glob_.h (__const): Remove macro.
9955         * lib/glob-libc.h: Use const instead of __const.
9956
9957 2006-01-10  Bruno Haible  <bruno@clisp.org>
9958
9959         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
9960         variable.
9961         Needed to avoid an automake error regarding the 'gettext' module.
9962
9963 2006-01-09  Simon Josefsson  <jas@extundo.com>
9964
9965         * modules/inet_ntop (Depends-on): Add restrict.
9966
9967 2006-01-09  Simon Josefsson  <jas@extundo.com>
9968
9969         * modules/gc-rijndael-tests (License): Put under LGPL.
9970
9971         * modules/gc-des-tests (License): Likewise.
9972
9973         * modules/gc-arcfour-tests (License): Likewise.
9974
9975         * modules/gc-arctwo-tests (License): Likewise.
9976
9977         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
9978
9979         * modules/gc-hmac-sha1-tests (Files): Likewise.
9980
9981         * modules/gc-hmac-md5-tests (License): Likewise.
9982
9983         * modules/gc-sha1-tests (License): Likewise.
9984
9985         * modules/gc-md5-tests (License): Likewise.
9986
9987         * modules/gc-md4-tests (License): Likewise.
9988
9989         * modules/gc-md2-tests (License): Likewise.
9990
9991         * modules/gc-tests (License): Likewise.
9992
9993         * modules/des-tests (License): Likewise.
9994
9995         * modules/md4-tests (License): Likewise.
9996
9997         * modules/md2-tests (License): Likewise.
9998
9999 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
10000
10001         Sync from coreutils:
10002
10003         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
10004         * modules/lib-ignore: New file.
10005         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
10006         chdir-safer.m4, lchmod.m4.
10007         * modules/openat: Add mkdirat.c, openat-priv.h.
10008
10009 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
10010
10011         Sync from coreutils.
10012         * m4/lib-ignore.m4: New file.
10013         * m4/lchmod.m4: New file.
10014
10015 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
10016
10017         Sync from coreutils.
10018         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
10019         for write access: POSIX says that must fail.
10020         * lib/fts.c (diropen): Likewise.
10021         * lib/save-cwd.c (save_cwd): Likewise.
10022         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
10023         well, for minor improvements on hosts that lack O_DIRECTORY.
10024         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
10025         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
10026         Fall back on chown if open failed with EACCES.
10027
10028         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
10029         Report an error at compile-time if only a 1-second nominal clock
10030         resolution is found.
10031
10032         * lib/lchmod.h: New file.
10033         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
10034         (make_dir_parents): Use lchown rather than chown, and
10035         lchmod rather than chmod.
10036
10037         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
10038         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
10039         "proc" reported by n0dalus.
10040
10041         * lib/mountlist.c: Include <limits.h>.
10042         (dev_from_mount_options)
10043         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
10044         New function.  It no longer assumes "dev=" has the System V meaning
10045         on Linux (since it doesn't).  It also parses "dev=" more carefully.
10046         (read_file_system_list)
10047         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
10048         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
10049         dev= in that case.
10050
10051         * lib/posixtm.h (PDS_PRE_2000): New macro.
10052         * lib/posixtm.c (year): Arg is now syntax_bits rather than
10053         allow_century.  All usages changed.  Reject dates outside the range
10054         1969-1999 if PDS_PRE_2000 is used.
10055
10056 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
10057
10058         Sync from coreutils.
10059         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
10060         (Time of day items): Mention the possibility of leap seconds.
10061         Problem reported by Dr. David Alan Gilbert.
10062
10063 2006-01-09  Jim Meyering  <jim@meyering.net>
10064
10065         Sync from coreutils.
10066
10067         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
10068
10069         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
10070
10071         * lib/modechange.c (mode_compile): Reject an invalid mode string
10072         that starts with an octal digit.  From Andreas Gruenbacher.
10073
10074         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
10075         and dup to open_safer and dup_safer, respectively.
10076         (openat_permissive): Fix typo in comment.
10077
10078         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
10079         "gettext.h"; either no longer needed or are guaranteed by openat.h.
10080         (_): Remove; no longer needed.
10081         (openat): Renamed from rpl_openat; no need for rpl_openat
10082         since openat.h renames openat for us.
10083         Replace most of the body with a call to openat_permissive,
10084         to avoid duplicate code.
10085         Port to (probably hypothetical) environments were mode_t is
10086         wider than int.
10087         (openat_permissive): Require mode arg, so that we can check
10088         types better.  Put it just after flags.  Change cwd failure
10089         indicator from pointer-to-bool to pointer-to-errno-value.
10090         All callers changed.
10091         Invoke openat_save_fail and/or openat_restore_fail if
10092         cwd_errno is null, so that openat can call us.
10093         (openat_permissive, fdopendir, fstatat, unlinkat):
10094         Simplify errno handling to avoid some duplicate code,
10095         as it's OK to set errno on success.
10096         * lib/openat.h: Revamp code so that function macros depend on
10097         __OPENAT_PREFIX only, not also on AT_FDCWD.
10098         (openat_ro): Remove.  Caller changed to use openat_permissive.
10099         (openat_permissive): Now a macro, if not a function.
10100         (openat_restore_fail, openat_save_fail): Now always functions,
10101         since mkdirat needs them even if __OPENAT_PREFIX is defined.
10102
10103         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
10104         and openat.c.
10105         * lib/mkdirat.c: Include openat-priv.h.
10106         Remove definitions of macros defined therein.
10107         * lib/openat.c: Likewise.
10108
10109         * lib/mkdirat.c (mkdirat): New file and function.
10110         * lib/openat.h (mkdirat): Declare.
10111
10112         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
10113
10114         * lib/openat.h (openat_permissive): Declare.
10115         (openat_ro): Define.
10116
10117         * lib/openat.c (EXPECTED_ERRNO): New macro.
10118         (openat_permissive): New function -- used in remove.c rewrite.
10119         (all functions): Set errno just before returning, only if there
10120         was an actual failure.
10121         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
10122
10123         Emulate openat-family functions using Linux's procfs, if possible.
10124         Idea and some code based on Ulrich Drepper's glibc changes.
10125
10126         * lib/openat.c: (BUILD_PROC_NAME): New macro.
10127         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
10128         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
10129         before falling back on save_cwd and restore_cwd.
10130         (fdopendir, fstatat, unlinkat): Likewise.
10131
10132         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
10133         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
10134
10135         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
10136         as second argument to va_arg.  Otherwise, some versions of gcc
10137         warn that `if this code is reached, the program will abort'.
10138
10139 2006-01-09  Jim Meyering  <jim@meyering.net>
10140
10141         Sync from coreutils.
10142         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
10143         Require openat-priv.h.
10144
10145 2006-01-09  Bruno Haible  <bruno@clisp.org>
10146
10147         * modules/strnlen (Include): Use strnlen.h.
10148
10149 2006-01-09  Bruno Haible  <bruno@clisp.org>
10150
10151         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
10152
10153 2006-01-09  Bruno Haible  <bruno@clisp.org>
10154
10155         * lib/sysexit_.h (EX_OK): New macro.
10156         Suggested by Martin Lambers <marlam@marlam.de>.
10157
10158 2006-01-09  Bruno Haible  <bruno@clisp.org>
10159
10160         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
10161         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
10162
10163 2006-01-09  Bruno Haible  <bruno@clisp.org>
10164
10165         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
10166         numbers.
10167
10168 2006-01-09  Bruno Haible  <bruno@clisp.org>
10169
10170         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
10171         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
10172         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
10173         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
10174
10175 2006-01-09  Bruno Haible  <bruno@clisp.org>
10176
10177         * build-aux/javacomp.sh.in: New file, moved from lib/.
10178         * modules/javacomp-script (Files): Update.
10179         (configure.ac): Add AC_CONFIG_FILES invocation.
10180         (EXTRA_DIST): Remove variable.
10181
10182         * build-aux/javaexec.sh.in: New file, moved from lib/.
10183         * modules/javaexec (Files): Update.
10184         (configure.ac): Add AC_CONFIG_FILES invocation.
10185         (EXTRA_DIST): Remove javaexec.sh.in.
10186
10187         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
10188         * modules/csharpcomp-script (Files): Update.
10189         (configure.ac): Add AC_CONFIG_FILES invocation.
10190         (EXTRA_DIST): Remove variable.
10191
10192         * build-aux/csharpexec.sh.in: New file, moved from lib/.
10193         * modules/csharpexec (Files): Update.
10194         (configure.ac): Add AC_CONFIG_FILES invocation.
10195         (EXTRA_DIST): Remove csharpexec.sh.in.
10196
10197 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
10198
10199         Sync from coreutils.
10200
10201         Add POSIX ACL support
10202         * lib/acl.h (copy_acl, set_acl): Add declarations.
10203         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
10204         systems other than Linux.
10205         (chmod_or_fchmod): New function: use fchmod when possible,
10206         and chmod otherwise.
10207         (file_has_acl): Add a POSIX ACL implementation, with a
10208         Linux-specific subcase.
10209         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
10210         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
10211         acls are unsupported.
10212         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
10213         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
10214         are unsupported.
10215
10216 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
10217
10218         Sync from coreutils.
10219         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
10220
10221 2006-01-07  Bruno Haible  <bruno@clisp.org>
10222
10223         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
10224         gl_EARLY.
10225
10226 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
10227
10228         * lib/strftime.c (tzname): Don't declare if it is already #defined.
10229         Problem reported for Mingw by Mark Junker.
10230
10231 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
10232
10233         * README: Gnulib normally doesn't generate a tarball.
10234
10235 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
10236
10237         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
10238         long int, not int, for nanosecond counts, so that people who are
10239         used to POSIX struct timespec won't be surprised.  Reported by Jim
10240         Meyering.
10241
10242 2005-12-28  Bruno Haible  <bruno@clisp.org>
10243
10244         * build-aux/config.rpath: Update from GNU gettext.
10245
10246 2005-12-16  Jim Meyering  <jim@meyering.net>
10247
10248         * modules/fprintftime: New module.
10249         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
10250
10251 2005-12-16  Jim Meyering  <jim@meyering.net>
10252
10253         * m4/fprintftime.m4: New file.
10254
10255 2005-12-16  Jim Meyering  <jim@meyering.net>
10256
10257         * lib/fprintftime.c, lib/fprintftime.h: New files.
10258
10259 2005-12-15  Simon Josefsson  <jas@extundo.com>
10260
10261         * modules/socklen (configure.ac): Fix M4 macro name, to align with
10262         new m4/socklen.m4.
10263
10264 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
10265
10266         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
10267         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
10268
10269 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
10270
10271         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
10272         * lib/argp-help.c (fill_in_uparams): Check if the constructed
10273         struct uparams is valid. Fall back to the default values if it is
10274         not.
10275
10276 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
10277
10278         * modules/argp (Files): Add argp-pin.c
10279         (Depends-on): dirname
10280         (lib_SOURCES): Add argp-pin.c
10281
10282 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
10283
10284         * m4/argp.m4:  Check if program_invocation_name and
10285         program_invocation_short_name are declared and define appropriate
10286         macros if they are not.
10287
10288 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
10289
10290         * lib/argp-help.c (__argp_base_name): New function
10291         (__argp_short_program_name): Rewrite using __argp_base_name
10292         * lib/argp-namefrob.h: Define program_invocation_name and
10293         program_invocation_short_name if requested
10294         (__argp_base_name): Add prototype
10295         * lib/argp-parse.c (argp_def): Use gettext wrappers
10296         (argp_default_parser): Use __argp_base_name
10297         * lib/argp-pin.c: New file. Defines program_invocation_name and
10298         program_invocation_short_name on systems that lack them.
10299
10300 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
10301
10302         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
10303         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
10304         porting problem reported by Georg Schwarz in
10305         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
10306
10307 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
10308
10309         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
10310         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
10311         porting problem reported by Georg Schwarz in
10312         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
10313
10314 2005-12-05  Bruno Haible  <bruno@clisp.org>
10315
10316         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
10317         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
10318         Reported by Mark Junker <mjscod@gmx.de>.
10319
10320 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
10321
10322         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
10323         Use implementation from Albert Chin, with some
10324         comments/corrections by Stepan Kasal and myself.
10325
10326 2005-12-02  Bruno Haible  <bruno@clisp.org>
10327
10328         * gnulib-tool (func_import): Accept GPLed build tool modules when
10329         --lgpl is given.
10330         * modules/csharpcomp-script: New file.
10331         * modules/csharpcomp: Depend on it.
10332         * modules/javacomp-script: New file.
10333         * modules/javacomp: Depend on it.
10334         Suggested by Simon Josefsson.
10335
10336 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
10337
10338         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
10339         statement, to work around an HP-UX 10.20 compiler bug reported by
10340         Peter O'Gorman.
10341
10342 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
10343
10344         * modules/savedir (Depends-on): Add openat.
10345
10346 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
10347
10348         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
10349         (uintmax_t) [defined uintmax_t]: Do not declare.
10350         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
10351         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
10352         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
10353         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
10354         sake of portability to weird hosts that C allows (though we don't
10355         know of any practical examples).
10356
10357         * lib/savedir.h (fdsavedir): New decl.
10358         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
10359         contains most of the former guts of savedir.
10360         (savedir): Use savedirstream.
10361         Include "openat.h".
10362
10363 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
10364
10365         * modules/obstack (Files): Add m4/ulonglong.m4.
10366         Problem reported by Davide Angelocola.
10367
10368 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
10369
10370         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
10371         coreutils no longer futzes with rounding modes.
10372
10373 2005-11-14  Jim Meyering  <jim@meyering.net>
10374
10375         * lib/mkstemp-safer.c: Include <config.h>, required for possible
10376         replacement of mkstemp.
10377
10378 2005-11-10  Simon Josefsson  <jas@extundo.com>
10379
10380         * lib/readline.c: Remove EOL.
10381
10382 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
10383
10384         * modules/gethrxtime (Depends-on): Add gettime.
10385
10386 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
10387
10388         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
10389         or gettimeofday; no longer needed.
10390
10391 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
10392
10393         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
10394         time business.
10395         (gethrxtime) [! (HAVE_NANOUPTIME
10396         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
10397         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
10398         our own approximation.
10399
10400 2005-11-08  Eric Blake  <ebb9@byu.net>
10401
10402         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
10403
10404 2005-11-08  Eric Blake  <ebb9@byu.net>
10405
10406         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
10407
10408 2005-11-04  Bruno Haible  <bruno@clisp.org>
10409
10410         * gnulib-tool: Implement --update mode.
10411
10412 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
10413
10414         Fix porting problem reported by Theodoros V. Kalamatianos.
10415         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
10416         Don't assume that futimes failing means we must fail.
10417
10418 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
10419
10420         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
10421         variables to suggest the intended function of the PATH_MAX check.
10422
10423 2005-10-30  Kean Johnston  <jkj@sco.com>
10424
10425         Trivial changes to support SCO systems.
10426         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
10427         as PATH_MAX.
10428         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
10429         where __ptr is null when no I/O is pending.
10430
10431 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
10432
10433         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
10434         leave errno alone.  Problem reported by Dmitry V. Levin.
10435
10436 2005-10-28  Simon Josefsson  <jas@extundo.com>
10437
10438         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
10439         Test more.
10440
10441         * tests/test-gc-md2.c, tests/test-md2.c: New files.
10442
10443         * modules/md2, modules/md2-tests: New files.
10444
10445 2005-10-28  Simon Josefsson  <jas@extundo.com>
10446
10447         * m4/inet_ntop.m4: More tests.
10448
10449         * m4/gc-md2.m4, md2.m4: New file.
10450
10451 2005-10-28  Simon Josefsson  <jas@extundo.com>
10452
10453         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
10454         "restrict" keywords, as per POSIX.  Protect the function
10455         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
10456         Don't use K&R prototypes.  Check the sprintf return values.
10457         Re-define EAFNOSUPPORT if not present.  Indent.
10458
10459         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
10460         suggested by Bruno Haible <bruno@clisp.org>.
10461
10462         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
10463
10464         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
10465
10466         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
10467         libgcrypt).
10468
10469         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
10470
10471         * lib/md2.h, lib/md2.c: New files.
10472
10473 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
10474
10475         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
10476         errno alone.  Problem reported by Frederic Jolliton.
10477
10478 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
10479
10480         * modules/verify (License): Change from GPL to LGPL.  This is a
10481         tiny module and there are apparently near-equivalents that are
10482         under the BSD license.
10483
10484 2005-10-24  Simon Josefsson  <jas@extundo.com>
10485
10486         * modules/sha1: Relicense to LGPL.
10487
10488 2005-10-24  Simon Josefsson  <jas@extundo.com>
10489
10490         * lib/md4.h: Shrink buffer size, now that we changed the type.
10491
10492 2005-10-23  Simon Josefsson  <jas@extundo.com>
10493
10494         * gnulib-tool (func_import): Fix --tests-base.
10495
10496 2005-10-22  Simon Josefsson  <jas@extundo.com>
10497
10498         * modules/arcfour (Depends-on): Need stdint.
10499
10500 2005-10-22  Simon Josefsson  <jas@extundo.com>
10501
10502         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
10503         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
10504
10505 2005-10-22  Simon Josefsson  <jas@extundo.com>
10506
10507         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
10508         suggested by Bruno Haible <bruno@clisp.org>.
10509
10510 2005-10-22  Simon Josefsson  <jas@extundo.com>
10511
10512         * lib/crc.h: Include stddef.h, for size_t.
10513
10514 2005-10-22  Simon Josefsson  <jas@extundo.com>
10515
10516         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
10517         arcfour_context struct (simplify test vector testing in GNU
10518         Shishi).
10519
10520 2005-10-21  Simon Josefsson  <jas@extundo.com>
10521
10522         * modules/des, modules/des-tests: New files.
10523
10524         * modules/gc-des, modules/gc-des-tests: New files.
10525
10526         * tests/test-des.c, tests/test-gc-des.c: New file.
10527
10528 2005-10-21  Simon Josefsson  <jas@extundo.com>
10529
10530         * modules/arctwo, modules/arctwo-tests: New files.
10531
10532         * tests/test-arctwo.c: New file.
10533
10534         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
10535
10536         * tests/test-gc-arctwo.c: New file.
10537
10538 2005-10-21  Simon Josefsson  <jas@extundo.com>
10539
10540         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
10541         Bruno Haible <bruno@clisp.org>.
10542
10543         * m4/gc-des.m4: New file.
10544
10545 2005-10-21  Simon Josefsson  <jas@extundo.com>
10546
10547         * m4/arctwo.m4: New file.
10548
10549         * m4/gc-arctwo.m4: New file.
10550
10551 2005-10-21  Simon Josefsson  <jas@extundo.com>
10552
10553         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
10554         block.
10555
10556 2005-10-21  Simon Josefsson  <jas@extundo.com>
10557
10558         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
10559         <bruno@clisp.org>.
10560
10561         * lib/hmac-sha1.c (hmac_sha1): Likewise.
10562
10563         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
10564         Bruno Haible <bruno@clisp.org>.
10565
10566         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
10567         <bruno@clisp.org>.
10568
10569 2005-10-21  Simon Josefsson  <jas@extundo.com>
10570
10571         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
10572
10573 2005-10-21  Simon Josefsson  <jas@extundo.com>
10574
10575         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
10576
10577 2005-10-21  Simon Josefsson  <jas@extundo.com>
10578
10579         * lib/des.h, lib/des.c: New files.
10580
10581         * lib/gc-gnulib.c: Support DES.c
10582
10583 2005-10-21  Simon Josefsson  <jas@extundo.com>
10584
10585         * lib/arctwo.h, lib/arctwo.c: New files.
10586
10587         * lib/gc-gnulib.c: Support ARCTWO.
10588
10589 2005-10-21  Simon Josefsson  <jas@extundo.com>
10590
10591         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
10592         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
10593
10594 2005-10-21  Simon Josefsson  <jas@extundo.com>
10595
10596         * gnulib-tool (func_import, func_create_testdir): Define automake
10597         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
10598         Makefile.am snippet),
10599         suggested by Bruno Haible <bruno@clisp.org>.
10600
10601         * modules/gc (Makefile.am): Use it.
10602
10603 2005-10-21  Bruno Haible  <bruno@clisp.org>
10604
10605         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
10606         patch.
10607
10608 2005-10-19  Simon Josefsson  <jas@extundo.com>
10609
10610         * tests/test-gc-rijndael.c: New file.
10611
10612         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
10613
10614 2005-10-19  Simon Josefsson  <jas@extundo.com>
10615
10616         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
10617         interface too.
10618
10619 2005-10-19  Simon Josefsson  <jas@extundo.com>
10620
10621         * tests/test-gc-arcfour.c: New file.
10622
10623         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
10624
10625 2005-10-19  Simon Josefsson  <jas@extundo.com>
10626
10627         * modules/gc-md4, modules/gc-md4-tests: New file.
10628
10629         * tests/test-gc-md4.c: New file.
10630
10631 2005-10-19  Simon Josefsson  <jas@extundo.com>
10632
10633         * m4/gc-md4.m4: New file.
10634
10635 2005-10-19  Simon Josefsson  <jas@extundo.com>
10636
10637         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
10638         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
10639         <kasal@ucw.cz>.
10640
10641 2005-10-19  Simon Josefsson  <jas@extundo.com>
10642
10643         * m4/gc-arcfour.m4: New file.
10644
10645         * m4/gc-rijndael.m4: New file.
10646
10647 2005-10-19  Simon Josefsson  <jas@extundo.com>
10648
10649         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
10650
10651 2005-10-19  Simon Josefsson  <jas@extundo.com>
10652
10653         * lib/gc-gnulib.c: Support ARCFOUR.
10654
10655 2005-10-19  Simon Josefsson  <jas@extundo.com>
10656
10657         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
10658         support.
10659
10660         * lib/gc.h: Add ECB enum type.
10661
10662         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
10663
10664 2005-10-18  Simon Josefsson  <jas@extundo.com>
10665
10666         * tests/test-md5.c: New file.
10667
10668         * modules/md5-tests: New file.
10669
10670 2005-10-18  Simon Josefsson  <jas@extundo.com>
10671
10672         * tests/test-md4.c: New file.
10673
10674         * modules/md4, modules/md4-tests: New files.
10675
10676 2005-10-18  Simon Josefsson  <jas@extundo.com>
10677
10678         * m4/md4.m4: New file.
10679
10680 2005-10-18  Simon Josefsson  <jas@extundo.com>
10681
10682         * lib/md4.h, lib/md4.c: New files, based on md5.?.
10683
10684 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
10685
10686         * gnulib-tool (func_create_testdir): Omit the second check whether
10687         BUILT_SOURCES in nonempty.
10688
10689 2005-10-17  Simon Josefsson  <jas@extundo.com>
10690
10691         * tests/test-rijndael.c: New file.
10692
10693 2005-10-17  Simon Josefsson  <jas@extundo.com>
10694
10695         * modules/sha1: Depend on stdint instead of md5.
10696
10697         * modules/md5: Depend on stdint, remove uint32_t.
10698
10699 2005-10-17  Simon Josefsson  <jas@extundo.com>
10700
10701         * modules/gc-sha1-tests: New file.
10702
10703         * tests/test-gc-sha1.c: New file.
10704
10705 2005-10-17  Simon Josefsson  <jas@extundo.com>
10706
10707         * m4/md5.m4: Remove call to uint32_t.m4.
10708
10709 2005-10-17  Simon Josefsson  <jas@extundo.com>
10710
10711         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
10712
10713         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
10714         md5.h.
10715
10716         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
10717
10718         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
10719
10720 2005-10-17  Simon Josefsson  <jas@extundo.com>
10721
10722         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
10723
10724 2005-10-17  Simon Josefsson  <jas@extundo.com>
10725
10726         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
10727
10728 2005-10-17  Simon Josefsson  <jas@extundo.com>
10729
10730         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
10731
10732         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
10733
10734 2005-10-17  Bruno Haible  <bruno@clisp.org>
10735
10736         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
10737         that it can also be used in a test.
10738
10739 2005-10-16  Bruno Haible  <bruno@clisp.org>
10740
10741         * gnulib-tool (func_emit_tests_Makefile_am): Also define
10742         TESTS_ENVIRONMENT, so that individual tests can augment it.
10743
10744         * gnulib-tool (func_create_testdir): Use an intermediate target for
10745         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
10746         macros, like $(ALLOCA_H), which cannot be passed through the command
10747         line.
10748
10749 2005-10-15  Simon Josefsson  <jas@extundo.com>
10750
10751         * modules/rijndael-tests: New file.
10752
10753         * modules/rijndael: New file.
10754
10755 2005-10-15  Simon Josefsson  <jas@extundo.com>
10756
10757         * m4/rijndael.m4: New file.
10758
10759 2005-10-15  Simon Josefsson  <jas@extundo.com>
10760
10761         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
10762
10763         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
10764
10765 2005-10-14  Simon Josefsson  <jas@extundo.com>
10766
10767         * tests/test-arcfour.c: New file.
10768
10769         * modules/arcfour, modules/arcfour-tests: New files.
10770
10771 2005-10-14  Simon Josefsson  <jas@extundo.com>
10772
10773         * m4/arcfour.m4: New file.
10774
10775 2005-10-14  Simon Josefsson  <jas@extundo.com>
10776
10777         * lib/arcfour.h, lib/arcfour.c: New files.
10778
10779 2005-10-14  Roland McGrath  <roland@redhat.com>
10780
10781         Import from libc.  [BZ #1331]
10782         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
10783         macro argument.
10784         Reported by Matej Vela <vela@debian.org>.
10785
10786 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
10787
10788         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
10789         include <wchar.h>; no longer needed.
10790
10791 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
10792
10793         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
10794
10795 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
10796         and  Ulrich Drepper  <drepper@redhat.com>
10797
10798         Import from libc.
10799         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
10800         instead of inline stream orientation test and two separate
10801         function calls.  Pay no attention to USE_IN_LIBIO.
10802
10803 2005-10-13  Simon Josefsson  <jas@extundo.com>
10804
10805         * modules/gc-hmac-md5-tests: New file.
10806
10807         * tests/test-gc-hmac-sha1.c: New file.
10808
10809         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
10810
10811         * modules/gc-hmac-md5-tests: New file.
10812
10813         * tests/test-gc-md5.c: New file.
10814
10815         * modules/gc-md5-tests: New file.
10816
10817 2005-10-13  Simon Josefsson  <jas@extundo.com>
10818
10819         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
10820         Move memory allocation outside of loop.
10821
10822 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
10823
10824         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
10825         intermediate directory is in a read-only file system.  Problem
10826         reported by Eric Blake.
10827
10828 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
10829
10830         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
10831
10832 2005-10-12  Simon Josefsson  <jas@extundo.com>
10833
10834         * tests/test-hmac-sha1.c: New file.
10835
10836         * modules/hmac-sha1-tests: New file.
10837
10838         * modules/hmac-sha1: New file.
10839
10840 2005-10-12  Simon Josefsson  <jas@extundo.com>
10841
10842         * modules/gc-sha1: New file.
10843
10844 2005-10-12  Simon Josefsson  <jas@extundo.com>
10845
10846         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
10847
10848         * tests/test-gc-pbkdf2-sha1.c: New file.
10849
10850 2005-10-12  Simon Josefsson  <jas@extundo.com>
10851
10852         * modules/gc-md5, modules/gc-hmac-md5: New files.
10853
10854         * modules/gc (Files): Remove md5, memxor and hmac files.
10855
10856 2005-10-12  Simon Josefsson  <jas@extundo.com>
10857
10858         * m4/gc-pbkdf2-sha1.m4: New file.
10859
10860         * m4/gc-hmac-sha1.m4: New file.
10861
10862         * m4/gc-sha1: New file.
10863
10864         * m4/hmac-sha1.m4: New file.
10865
10866 2005-10-12  Simon Josefsson  <jas@extundo.com>
10867
10868         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
10869
10870         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
10871
10872 2005-10-12  Simon Josefsson  <jas@extundo.com>
10873
10874         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
10875         suggested by Bruno Haible <bruno@clisp.org>.
10876
10877 2005-10-12  Simon Josefsson  <jas@extundo.com>
10878
10879         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
10880
10881 2005-10-12  Simon Josefsson  <jas@extundo.com>
10882
10883         * lib/gc-pbkdf2-sha1.c: New file.
10884
10885         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
10886
10887 2005-10-12  Simon Josefsson  <jas@extundo.com>
10888
10889         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
10890
10891         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
10892
10893 2005-10-12  Simon Josefsson  <jas@extundo.com>
10894
10895         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
10896         GC_USE_HMAC_MD5, respectively.
10897
10898         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
10899         (gc_md5): Fix typo.
10900
10901         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
10902
10903         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
10904
10905         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
10906
10907 2005-10-12  Bruno Haible  <bruno@clisp.org>
10908
10909         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
10910         Reported by Stepan Kasal <kasal@ucw.cz>.
10911
10912 2005-10-11  Simon Josefsson  <jas@extundo.com>
10913
10914         * tests/test-crc.c: New file.
10915
10916         * modules/crc, modules/crc-tests: New files.
10917
10918 2005-10-11  Simon Josefsson  <jas@extundo.com>
10919
10920         * m4/crc.m4: New file.
10921
10922 2005-10-11  Simon Josefsson  <jas@extundo.com>
10923
10924         * lib/gc.h: Add gc_hash and gc_hash_buffer.
10925
10926         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
10927
10928         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
10929
10930 2005-10-11  Simon Josefsson  <jas@extundo.com>
10931
10932         * lib/crc.h, lib/crc.c: New files.
10933
10934         * lib/gc.h (gc_hash_buffer): Add doc.
10935
10936 2005-10-11  Bruno Haible  <bruno@clisp.org>
10937
10938         * modules/c-strcasestr: New file.
10939         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
10940
10941 2005-10-11  Bruno Haible  <bruno@clisp.org>
10942
10943         * modules/c-strcase: New file.
10944         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
10945
10946 2005-10-11  Bruno Haible  <bruno@clisp.org>
10947
10948         * lib/strcasecmp.c: Include limits.h.
10949         (strcasecmp): Avoid integer overflow on exotic platforms.
10950         * lib/strncasecmp.c: Include limits.h.
10951         (strncasecmp): Avoid integer overflow on exotic platforms.
10952         Reported by Paul Eggert.
10953
10954 2005-10-11  Bruno Haible  <bruno@clisp.org>
10955
10956         * lib/c-strcasestr.h: New file, from GNU gettext.
10957         * lib/c-strcasestr.c: New file, from GNU gettext.
10958
10959 2005-10-11  Bruno Haible  <bruno@clisp.org>
10960
10961         * lib/c-strcase.h: New file, from GNU gettext.
10962         * lib/c-strcasecmp.c: New file, from GNU gettext.
10963         * lib/c-strncasecmp.c: New file, from GNU gettext.
10964
10965 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
10966
10967         * modules/mempcpy (License): GPL -> LGPL.
10968         * modules/strchrnul (License): Likewise.
10969         * modules/sysexits (License): Likewise.
10970
10971 2005-10-08  Simon Josefsson  <jas@extundo.com>
10972
10973         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
10974
10975 2005-10-07  Simon Josefsson  <jas@extundo.com>
10976
10977         * m4/memxor.m4: Remove gl_C_RESTRICT call.
10978
10979 2005-10-06  Simon Josefsson  <jas@extundo.com>
10980
10981         * tests/test-hmac-md5.c: New file.
10982
10983         * modules/hmac-md5-tests: New file.
10984
10985         * modules/hmac-md5: New file.
10986
10987 2005-10-06  Simon Josefsson  <jas@extundo.com>
10988
10989         * m4/hmac-md5.m4: New file.
10990
10991         * m4/memxor.m4: Require gl_C_RESTRICT.
10992
10993 2005-10-06  Simon Josefsson  <jas@extundo.com>
10994
10995         * lib/memxor.c (memxor): Avoid casts and warnings.
10996
10997 2005-10-06  Simon Josefsson  <jas@extundo.com>
10998
10999         * lib/hmac-md5.c: New file.
11000
11001         * lib/hmac.h: New file.
11002
11003 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
11004
11005         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
11006         promotes to int, not unsigned int, to catch the AIX 5.3
11007         compiler bug.
11008
11009 2005-10-05  Simon Josefsson  <jas@extundo.com>
11010
11011         * modules/memxor: New file.
11012
11013         * modules/iconv (Files): Move config.rpath to havelib, it is used
11014         there.
11015
11016         * modules/havelib (Files): Add config.rpath.
11017
11018 2005-10-05  Simon Josefsson  <jas@extundo.com>
11019
11020         * m4/memxor.m4: New file.
11021
11022 2005-10-05  Simon Josefsson  <jas@extundo.com>
11023
11024         * lib/memxor.c (memxor): Fix compiler error.
11025
11026         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
11027         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
11028
11029         * lib/memxor.h, lib/memxor.c: New files.
11030
11031         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
11032         we assume all systems have it, suggested by Jim Meyering
11033         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
11034         any systems lack sys/socket.h; mingw32 is known to lack it, but we
11035         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
11036         same reasons.
11037
11038 2005-10-05  Simon Josefsson  <jas@extundo.com>
11039
11040         * config/srclist.txt: Add glibc bug 1423 for md5.h.
11041
11042 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
11043
11044         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
11045         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
11046         needed, since the source code now assumes these .h files.
11047
11048 2005-10-05  Derek Price  <derek@ximbiot.com>
11049
11050         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
11051
11052 2005-10-05  Bruno Haible  <bruno@clisp.org>
11053
11054         * modules/stdint (License): Change to LGPL.
11055
11056 2005-10-04  Simon Josefsson  <jas@extundo.com>
11057
11058         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
11059         D. Baushke" <mdb@gnu.org>.
11060
11061 2005-10-04  Bruno Haible  <bruno@clisp.org>
11062
11063         * lib/verify.h (verify_true): Provide alternative definition for C++.
11064
11065 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
11066
11067         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
11068         (SSIZE_MAX): New macro, if not already defined.
11069         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
11070         than 2 GiB.
11071
11072 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
11073
11074         Sync from coreutils.
11075         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
11076         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
11077         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
11078         ULLONG_MAX doesn't work with 2.7.2.1.
11079
11080 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
11081
11082         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
11083         From Ben Pfaff.
11084
11085         * modules/exclude (Depends-on): Depend on verify.
11086         * modules/strtoimax (Depends-on): Likewise.
11087         * modules/utimecmp (Depends-on): Likewise.
11088
11089 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
11090
11091         * lib/exclude.c: Include verify.h.
11092         (verify): Remove.  All callers changed to use verify.h's version.
11093         * lib/strtoimax.c: Likewise.
11094         * lib/utimecmp.c: Likewis.e
11095
11096         Sync from coreutils.
11097         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
11098         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
11099         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
11100         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
11101         bother returning ENOSYS if settimeofday or stime fails; just let
11102         them return whatever errno they want to return.
11103         * lib/utimens.c: Include unistd.h, for dup2.
11104         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
11105         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
11106
11107 2005-10-02  Jim Meyering  <jim@meyering.net>
11108
11109         Sync from coreutils.
11110         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
11111         from glibc-2.2.5 that fails for read-only files.
11112
11113 2005-10-02  Jim Meyering  <jim@meyering.net>
11114
11115         Sync from coreutils.
11116         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
11117         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
11118         `#if HAVE_CONFIG_H'.
11119         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
11120         Remove AT_FDCWD test.
11121         Do not consume the fd unless successful.
11122         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
11123         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
11124         block, so that we don't even try to compile it if settimeofday is
11125         available.  This works around a compilation failure on OSF1 V5.1,
11126         due to stime requiring a `long int*' while tv_sec is `int'.
11127
11128 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
11129
11130         Sync from coreutils.
11131         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
11132         against `yes', rather than just testing for nonempty.
11133
11134 2005-10-01  Simon Josefsson  <jas@extundo.com>
11135
11136         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
11137         and Darwin.
11138
11139         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
11140         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
11141         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
11142         freeaddrinfo and gai_strerror are declared by the POSIX headers.
11143         Check if struct addrinfo is declared.
11144
11145 2005-10-01  Simon Josefsson  <jas@extundo.com>
11146
11147         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
11148         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
11149         AI_* and EAI_* definitions.  Protect function declarations.
11150
11151 2005-10-01  Jim Meyering  <jim@meyering.net>
11152
11153         Sync from coreutils.
11154
11155         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
11156         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
11157         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
11158         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
11159         in the inet and nsl libraries.  Required on Solaris 5.7.
11160
11161 2005-10-01  Jim Meyering  <jim@meyering.net>
11162
11163         Sync from coreutils.
11164         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
11165         in the inet and nsl libraries.  Required on Solaris 5.7.
11166
11167 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
11168
11169         * lib/getdelim.c (getdelim): Remove unused variables.
11170
11171 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
11172
11173         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
11174         so that the code works even with ancient cpp.  Portability problem
11175         with GCC 2.7.2.1 reported by Thomas M.Ott.
11176
11177 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
11178
11179         * modules/regex (Depends-on): Add strcase.
11180
11181         * modules/gethostname (Licence): Change from GPL to LGPL, since
11182         gethostname.c is a trivial implementation of a standard library
11183         function.
11184         * modules/poll (License): Change from GPL to LGPL, since it's
11185         derived from LGPL code.
11186
11187 2005-09-27  Jim Meyering  <jim@meyering.net>
11188
11189         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
11190         HAVE_CONFIG_H.
11191
11192         * lib/intprops.h (signed_type_or_expr__): Define.
11193         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
11194         for unsigned types.
11195
11196 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
11197
11198         * lib/verify.h (verify_expr): Remove, replacing with:
11199         (verify_true): New macro that returns true instead of void.
11200         (verify_type__): Remove.
11201         (verify): Use verify_true rather than verify_type__.
11202
11203 2005-09-26  Bruno Haible  <bruno@clisp.org>
11204
11205         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
11206         is necessary.
11207         (lib_SOURCES): Remove mbchar.c.
11208         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
11209         (Files): Add m4/mbrtowc.m4.
11210         * modules/mbiter: Likewise.
11211         * modules/mbuiter: Likewise.
11212
11213 2005-09-26  Bruno Haible  <bruno@clisp.org>
11214
11215         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
11216         compile mbchar.c if they are not both present.
11217         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
11218         * m4/mbiter.m4 (gl_MBITER): Likewise.
11219         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
11220         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
11221         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
11222
11223 2005-09-25  Jim Meyering  <jim@meyering.net>
11224
11225         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
11226         also uses socklen_t.
11227
11228 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
11229
11230         * lib/utimens.c (ENOSYS): Define if not already defined.
11231         (futimens): Support having a null PATH if the file descriptor
11232         is nonnegative.
11233
11234         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
11235         Remove.
11236         (__attribute): Define to empty unless GCC 3.1 or later.
11237         This works around a core dump on OpenBSD 3.4, which has GCC
11238         2.95.3, which dumps core when given __attribute__(()).  It also
11239         simplifies other tests, since we really don't want to bother with
11240         worrying about which ancient version of GCC supported what.
11241         Original problem reported by Yoann Vandoorselaere, with part of
11242         the fix suggested by Derek Price.
11243
11244 2005-09-24  Jim Meyering  <jim@meyering.net>
11245
11246         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
11247         so we can once again use a positive bitfield width of 1 -- now we
11248         don't have to explain why we were using a bitfield width of 2.
11249
11250 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
11251
11252         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
11253         and similarly for the other external symbols.  Problem reported
11254         by James Gallager.
11255
11256         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
11257         bug reported by Jim Meyering.
11258
11259         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
11260         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
11261         not needed, since socklen is a prerequisite module.
11262
11263 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
11264
11265         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
11266         Problem reported by Eric Blake.
11267         (getaddrinfo): Initialize se so that it's not garbage.
11268         Redo internal storage allocation so that it doesn't make unportable
11269         assumptions about alignment.
11270         Fix a memory leak.
11271
11272         * lib/utimens.c (futimens): Use futimesat if available.
11273         Prefer it to futimes since it doesn't have the futimes bug.
11274
11275         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
11276         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
11277         Instead, declare a function that returns a pointer to an array,
11278         and use verify_type__ to declare the size of the array.
11279         Problem and germ of a solution reported by Bruno Haible.
11280         (verify_type__): Use 2, not 1, for bitfield size, to avoid
11281         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
11282
11283 2005-09-23  Jim Meyering  <jim@meyering.net>
11284
11285         Sync from coreutils.
11286         Correct build failure (socklen_t not defined) on at least
11287         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
11288         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
11289
11290 2005-09-23  Jim Meyering  <jim@meyering.net>
11291
11292         * modules/getaddrinfo (Depends-on): Add socklen.
11293
11294 2005-09-23  Bruno Haible  <bruno@clisp.org>
11295
11296         * tests/test-verify.c: New file.
11297
11298 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
11299
11300         Sync from coreutils.
11301
11302         * modules/argmatch (Depends-on): Add verify.
11303         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
11304         unistd-safer.
11305         * modules/save-cwd (Depends-on): Likewise.
11306
11307         * modules/openat (Files): Add lib/openat-die.c.
11308         (Depends-on): Remove error, exitfail.
11309         Add dirname.
11310
11311         * modules/verify: New file.
11312         * MODULES.html.sh (Diagnostics <assert.h>): New section,
11313         with "verify" module.
11314
11315 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
11316
11317         Sync from coreutils.
11318
11319         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
11320         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
11321         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
11322         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
11323         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
11324         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
11325         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
11326         Don't bother checking for string.h, stdlib.h, unistd.h.
11327         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
11328         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
11329         module's job.
11330         * m4/jm-macros.m4 (gl_MACROS): Likewise.
11331         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
11332
11333         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
11334         (gl_GETDATE): Use it.
11335
11336         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
11337
11338 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
11339
11340         Sync from coreutils.
11341
11342         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
11343         stat-time.h.
11344         * lib/argmatch.h: Include verify.h
11345         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
11346         (ARGMATCH_ASSERT): Remove; unused.
11347         * lib/canonicalize.c: Assume STDC_HEADERS.
11348         * lib/exclude.c: Include "strcase.h".
11349         * lib/regex_internal.h [!defined _LIBC]: Likewise.
11350         * lib/getusershell.c: Include stdio--.h rather than stdio.h
11351         and stdio-safer.h.
11352         (getusershell): Call fopen, not fopen_safer.
11353         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
11354         Do not include unistd-safer.h.
11355         (save_cwd): Don't call fd_safer; no longer needed
11356         now that we include fcntl--.h.
11357
11358         * lib/getdate.y (relative_time): New type.
11359         (RELATIVE_TIME_0): New constant.
11360         (parser_control): Use relative_time instead of doing it ourselves.
11361         (%union): Add new relative_time rel member.
11362         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
11363         Now typeless.
11364         (relunit, relunit_snumber): Now of type rel.
11365         (zone, rel, relunit, get_date): Adjust to above changes.
11366
11367         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
11368         Do not include unistd-safer.h.
11369         (getloadavg): Don't call fd_safer; no longer needed
11370         now that we include fcntl--.h.
11371
11372         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
11373         (make_dir_parents): Treat ENOSYS like EEXIST.
11374
11375         Improve quality of diagnostics on restore_cwd failure.
11376         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
11377         (make_dir_parents): Last arg is now int * (for errno), not bool *.
11378         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
11379         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
11380         each time through the loop.  Do not diagnose restore_cwd failure;
11381         that is the caller's job (and perhaps the caller does not care).
11382
11383         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
11384         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
11385         If the file already exists but is not a directory, don't bother
11386         to try to make its parents.
11387         Close potential file descriptor leak if we can't chdir("/") (!).
11388         Don't always return true if chdir($PWD) fails; return true only
11389         if the requested action was done successfully (except for the
11390         chdir($PWD)).
11391         Don't log final directory unless we actually made it.
11392         Refactor to avoid duplicate code to fix up permissions.
11393         Don't attempt to fix up parent permissions if chdir($PWD) fails.
11394
11395         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
11396         to make it a bit faster and (I hope) clearer.
11397         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
11398         Fix bug in formats like %2N.
11399
11400         * lib/verify.h: New file.
11401
11402 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
11403
11404         Sync from coreutils.
11405         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
11406
11407 2005-09-22  Jim Meyering  <jim@meyering.net>
11408
11409         Sync from coreutils.
11410
11411         * m4/lstat.m4 (gl_FUNC_LSTAT):
11412         Use AC_LIBSOURCES to require lstat.c and lstat.h.
11413         Remove obsolete comment.
11414         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
11415         * m4/xstrtod.m4: Likewise.
11416
11417         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
11418
11419 2005-09-22  Jim Meyering  <jim@meyering.net>
11420
11421         Sync from coreutils.
11422
11423         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
11424
11425         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
11426         the .tm_year member, since otherwise gcc-4.0 would now warn about
11427         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
11428
11429         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
11430         order to avoid an unsuppressible warning from gcc on 64-bit systems.
11431
11432         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
11433         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
11434         when run in a time zone for which daylight savings time is in effect
11435         for the starting date.
11436
11437         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
11438         stop us from restricting permissions of just-created absolute-named
11439         directories.
11440         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
11441         to restore initial working directory.
11442         * lib/mkdir-p.c (make_dir_parents): New parameter:
11443         different_working_dir, to tell caller if/when we change the working
11444         directory and are unable to return to the initial one.
11445         * lib/mkdir-p.h (make_dir_parents): Update prototype.
11446         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
11447         `return false'.  This fixes a bug introduced on 2004-07-30.
11448
11449         * lib/openat.c (fdopendir): Be sure to close the supplied
11450         file descriptor before returning.  This makes our replacement
11451         implementation a little closer to Solaris's, where fdopendir
11452         ties the file descriptor to the returned DIR* pointer.
11453         * lib/openat.c (unlinkat): New function.
11454         * lib/openat.h (unlinkat): Add prototype.
11455         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
11456         (openat_restore_fail): Rename from openat_restore_die.
11457         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
11458
11459         Provide an alternative to exiting immediately upon save_cwd or
11460         restore_cwd failure.  Now, an application can arrange e.g.,
11461         to perform a longjump in that case.
11462         * lib/openat.c: Include dirname.h.
11463         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
11464         (rpl_openat, fdopendir, fstatat): Call openat_save_die
11465         and openat_restore_die rather than calling error directly.
11466         Don't include "error.h" or "exitfail.h"; they're no longer needed.
11467
11468         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
11469         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
11470         define.
11471
11472         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
11473         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
11474                             int utc, int nanoseconds);
11475         Background:
11476         date should not have to allocate a megabyte of virtual memory to
11477         handle a format argument like +%1048575T.  When implemented with
11478         strftime, it must allocate such a buffer, use strftime to fill it
11479         in, print it, then free it.
11480         With fprintftime, it simply prints everything and exits.
11481         With no need for memory allocation, that's one fewer way to fail.
11482         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
11483         optional field width, not before, so we accept %9:z, not %:9z.
11484         (my_strftime): Be sure to use L_('x') for literals.
11485
11486         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
11487         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
11488         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
11489         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
11490         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
11491         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
11492         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
11493         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
11494         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
11495         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
11496         * lib/xgethostname.c, lib/xreadlink.c:
11497         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
11498
11499         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
11500         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
11501         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
11502         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
11503         and don't include <sys/file.h>).
11504
11505 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
11506
11507         Sync from coreutils.
11508
11509         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
11510         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
11511         [!LDAV_DONE]: Avoid unused variable warning.
11512
11513 2005-09-21  Bruno Haible  <bruno@clisp.org>
11514
11515         * lib/unicodeio.h (unicode_to_mb): New declaration.
11516
11517 2005-09-20  Derek Price  <derek@ximbiot.com>
11518
11519         * lib/getaddrinfo.c: Don't include <netdb.h> included from
11520         getaddrinfo.h.
11521
11522 2005-09-20  Bruno Haible  <bruno@clisp.org>
11523
11524         * gnulib-tool: Remove trailing slashes from the values specified for
11525         --source-base, --m4-base, --tests-base, --aux-dir.
11526         Suggested by Simon Josefsson <jas@extundo.com>.
11527
11528 2005-09-20  Bruno Haible  <bruno@clisp.org>
11529
11530         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
11531         func_modules_to_filelist, func_import, func_create_testdir): Make all
11532         sorting results locale-independent, so that gnulib-cache.m4 doesn't
11533         change when gnulib-tool is invoked in a different locale.
11534
11535 2005-09-19  Simon Josefsson  <jas@extundo.com>
11536
11537         * m4/socklen.m4: Fix typo.
11538
11539 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11540
11541         Use a consistent style for including <config.h>.
11542         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
11543         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
11544         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
11545         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
11546         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
11547         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
11548         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
11549         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
11550         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
11551         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
11552         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
11553         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
11554         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
11555         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
11556         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
11557         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
11558         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
11559         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
11560         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
11561         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
11562         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
11563         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
11564         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
11565         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
11566         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
11567         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
11568         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
11569         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
11570         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
11571         lib/xstrtoumax.c, lib/yesno.c:
11572         Standardize inclusion of config.h.
11573         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
11574         lib/inttostr.h:  Removed inclusion of config.h from header files.
11575         * lib/inttostr.c:  Adjusted in-tree users.
11576         * lib/timespec.h: Remove superfluous warning to include config.h.
11577         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
11578         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
11579         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
11580         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
11581         config.h with HAVE_CONFIG_H.
11582
11583 2005-09-19  Jim Meyering  <jim@meyering.net>
11584
11585         * modules/pathmax (License): Change to LGPL.
11586
11587 2005-09-19  Derek Price  <derek@ximbiot.com>
11588
11589         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
11590
11591 2005-09-19  Bruno Haible  <bruno@clisp.org>
11592
11593         * gnulib-tool (import): Provide default for --tests-base.
11594
11595 2005-09-19  Bruno Haible  <bruno@clisp.org>
11596
11597         * doc/quote.texi: New file, extracted from gnulib.texi.
11598         * doc/ctime.texi: New file, extracted from gnulib.texi.
11599         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
11600         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
11601         * doc/gnulib.texi: Include them.
11602
11603 2005-09-18  Bruno Haible  <bruno@clisp.org>
11604
11605         Portability fix.
11606         * gnulib-tool (func_readlink): New function.
11607         (func_ln_if_changed): Use it.
11608
11609 2005-09-18  Bruno Haible  <bruno@clisp.org>
11610
11611         * gnulib-tool: Support --with-tests also with --import.
11612         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
11613         (func_import): Use variables $testsbase and $inctests. Emit a
11614         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
11615         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
11616         SUBDIRS += $testsdir.
11617         (func_create_testdir): Update.
11618
11619 2005-09-18  Bruno Haible  <bruno@clisp.org>
11620
11621         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
11622         instead of $dry_run.
11623         (func_cp_if_changed, func_mv_if_changed): Remove functions.
11624         (func_ln_if_changed): Don't handle dry-run here.
11625         (func_import): In dry-run mode, detect more precisely which actions
11626         would be performed, and don't use "...ing" verbs.
11627
11628 2005-09-18  Bruno Haible  <bruno@clisp.org>
11629
11630         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
11631         (func_import): Use join on two temporary files instead of three nested
11632         loops, in order to determine which files are new or old.
11633
11634 2005-09-18  Bruno Haible  <bruno@clisp.org>
11635
11636         * gnulib-tool (func_import): Comment out code that spits out the
11637         new files with --dry-run.
11638
11639 2005-09-18  Bruno Haible  <bruno@clisp.org>
11640
11641         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
11642
11643 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
11644
11645         * lib/stat-time.h: New file.
11646         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
11647         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
11648         in a different way.
11649         (timespec_cmp): New function.
11650         * lib/utimecmp.c: Include stat-time.h.
11651         (SYSCALL_RESOLUTION): Depend on whether various struct stat
11652         members exist, not on the obsolescent ST_MTIM_NSEC.
11653         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
11654
11655 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
11656
11657         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
11658
11659 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
11660
11661         * MODULES.html.sh (File system functions): Add stat-time.
11662         * modules/stat-time: New file.
11663         * modules/timespec (Files): Remove m4/st_mtim.m4; this
11664         is now done in a different way, by the stat-time module.
11665         * modules/utimecmp (Depends-on): Add stat-time.
11666
11667 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
11668
11669         * m4/st_mtim.m4: Remove.  Superseded by...
11670         * m4/stat-time.m4: New file.
11671         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
11672         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
11673
11674 2005-09-15  Derek Price  <derek@ximbiot.com>
11675
11676         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
11677
11678 2005-09-15  Derek Price  <derek@ximbiot.com>
11679
11680         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
11681         * lib/regex_internal.c: Ditto, using this...
11682         (__GNUC_PREREQ): ...new macro.
11683         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
11684         using...
11685         (__GNUC_PREREQ): ...this new macro.
11686
11687         * lib/strstr.h: Include string.h. Define strstr as a macro here.
11688
11689 2005-09-15  Derek Price  <derek@ximbiot.com>
11690             Paul Eggert  <eggert@cs.ucla.edu>
11691
11692         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
11693         changes, consolidating in...
11694         * lib/regex_internal.h: ...this file.
11695
11696 2005-09-13  Jim Meyering  <jim@meyering.net>
11697
11698         * lib/canon-host.c: Filter through gnu indent and reword comments
11699         slightly.
11700         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
11701
11702 2005-09-13  Derek Price  <derek@ximbiot.com>
11703
11704         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
11705         failure.
11706         Reported by Jim Meyering  <jim@meyering.net>.
11707
11708 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
11709
11710         * lib/base64.c: Typo.
11711         (base64_encode): Put b64str in initialized data section.
11712
11713 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
11714
11715         Merge glibc and coreutils changes into gnulib, plus a few
11716         extra fixes.
11717         * lib/md5.c: Use #error rather than a string.
11718         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
11719         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
11720         (__attribute__): Define to empty for non recent-GCC.
11721         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
11722         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
11723         Renamed from their non-__ counterparts, with new macros replacing
11724         them if not _LIBC.  Add __THROW attribute.
11725         (rol): Remove.
11726         (struct md5_ctx): Align buffer if using GCC.
11727         * lib/sha1.h (struct sha1_ctx): Likewise.
11728         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
11729         The old name was backwards.
11730         (NOTSWAP): Remove; not used.
11731         (rol): New macro, moved here from md5.h.
11732         (sha1_process_block): Remove a FIXME that doesn't make sense.
11733
11734 2005-09-12  Derek Price  <derek@ximbiot.com>
11735
11736         Return usable errors from canon-host.
11737         * lib/canon-host.h: New file.
11738         * lib/canon-host.c (canon_host): Wrap...
11739         (canon_host_r): ...this new function, which now relies exclusively on
11740         getaddrinfo.
11741         (ch_strerror): New function.
11742         (last_cherror): New global.
11743         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
11744         interface.
11745         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
11746         void *.
11747         (freeaddrinfo): Free ai->ai_canonname when set.
11748
11749 2005-09-12  Derek Price  <derek@ximbiot.com>
11750
11751         Make canon-host require getaddrinfo.
11752         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
11753         AC_LIBSOURCE canon-host.h.  Call...
11754         (gl_PREREQ_CANON_HOST): ...this new function, which requires
11755         gl_GETADDRINFO.
11756         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
11757
11758 2005-09-12  Derek Price  <derek@ximbiot.com>
11759
11760         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
11761         LGPL.
11762         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
11763
11764 2005-09-12  Derek Price  <derek@ximbiot.com>
11765
11766         * lib/gai_strerror.c: Include config.h when available.  Include
11767         getaddrinfo.h before other headers to test interface.
11768         Reported by Larry Jones <lawrence.jones@ugs.com>.
11769
11770 2005-09-12  Derek Price  <derek@ximbiot.com>
11771             Paul Eggert  <eggert@cs.ucla.edu>
11772
11773         * modules/glob (Files): Add glob-libc.h.
11774
11775 2005-09-12  Derek Price  <derek@ximbiot.com>
11776             Paul Eggert  <eggert@cs.ucla.edu>
11777
11778         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
11779         glob_.h, glob-libc.h.
11780         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
11781
11782 2005-09-12  Derek Price  <derek@ximbiot.com>
11783             Paul Eggert  <eggert@cs.ucla.edu>
11784
11785         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
11786         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
11787         protecting things that should be done only in gnulib contexts.
11788         * lib/glob_.h: New file, containing only the glob things needed for
11789         gnulib.
11790         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
11791         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
11792         (glob, globfree, glob_pattern_p): Now defined simply in terms of
11793         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
11794         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
11795         and to respect the namespace rules better.
11796
11797 2005-09-08  Simon Josefsson  <jas@extundo.com>
11798
11799         * modules/socklen: New file.
11800
11801 2005-09-08  Simon Josefsson  <jas@extundo.com>
11802
11803         * m4/socklen.m4: New file.
11804
11805 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
11806
11807         * modules/utimens (Files): Add m4/utimbuf.m4, since
11808         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
11809         Reported by Sergey Poznyakoff.
11810
11811 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
11812
11813         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
11814         definitions, since that's the preferred style in glibc.
11815         Fix a minor spacing issue, and update copyright notice to match
11816         glibc's.
11817
11818 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
11819
11820         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
11821
11822 2005-09-06  Simon Josefsson  <jas@extundo.com>
11823
11824         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
11825         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
11826
11827 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
11828
11829         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
11830         warning.
11831
11832 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
11833
11834         * config/srclist.txt: Add glibc bug 1302.
11835
11836 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
11837
11838         Change bitset word type from unsigned int to unsigned long int,
11839         as this has better performance on typical 64-bit hosts.
11840         Port bitset code to hosts with unusual word sizes.
11841         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
11842         (build_collating_symbol):
11843         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
11844         argument is a bitset.  This is merely a style issue, but it makes
11845         it clearer that an entire array is expected.
11846         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
11847         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
11848         Port to the case where bitset_word is not the same as unsigned int.
11849         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
11850         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
11851         Likewise.
11852         * lib/regexec.c (check_dst_limits_calc_pos_1,
11853         check_subexp_matching_top):
11854         (build_trtable, group_nodes_into_DFAstates):
11855         Likewise.
11856         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
11857         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
11858         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
11859         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
11860         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
11861         * lib/regcomp.c (optimize_subexps, lower_subexp):
11862         Work even if bitset_word has holes in its bitwise representation.
11863         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
11864         * lib/regexec.c (check_dst_limits_calc_pos_1,
11865         check_subexp_matching_top):
11866         Likewise.
11867         * lib/regex_internal.c (re_string_reconstruct):
11868         Don't assume UCHAR_MAX == 255.
11869         * lib/regex_internal.h (bitset_set_all): Likewise.
11870         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
11871         All uses changed.
11872         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
11873         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
11874         All uses changed.
11875         (BITSET_WORD_MAX): New macro.
11876         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
11877         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
11878         (bitset_empty, bitset_copy):
11879         Prefer sizeof (bitset) to multiplying it out ourselves.
11880         (bitset_not_merge): Remove; unused.
11881         (bitset_contain): Return bool, not unsigned int with one bit on.
11882         All callers changed.
11883         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
11884         alignment than re_node_set; do this by defining a new internal
11885         type struct dests_alloc and using it to allocate memory.
11886
11887 2005-09-05  Bruno Haible  <bruno@clisp.org>
11888
11889         * gnulib-tool (func_import): Fix comparison in handling of symbolic
11890         links.
11891
11892 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
11893
11894         * modules/size_max (Makefile.am): Add size_max.h
11895
11896 2005-09-04  Derek Price  <derek@ximbiot.com>
11897
11898         * gnulib-tool (func_import): Fix reversed $symbolic logic.
11899
11900 2005-09-03  Simon Josefsson  <jas@extundo.com>
11901
11902         * gnulib-tool: Fix typo.
11903
11904 2005-09-03  Simon Josefsson  <jas@extundo.com>
11905
11906         * config/srclist.txt: Add glibc bug 1293.
11907
11908 2005-09-03  Derek Price  <derek@ximbiot.com>
11909
11910         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
11911         From Larry Jones <lawrence.jones@ugs.com>.
11912
11913 2005-09-02  Simon Josefsson  <jas@extundo.com>
11914
11915         * modules/socklen: New file.
11916
11917 2005-09-02  Simon Josefsson  <jas@extundo.com>
11918
11919         * modules/havelib: New module.
11920
11921         * modules/gettext, modules/iconv, modules/lock, modules/readline:
11922         Use havelib.
11923
11924 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
11925
11926         Check for arithmetic overflow when calculating sizes, to prevent
11927         some buffer-overflow issues.  These patches are conservative, in the
11928         sense that when I couldn't determine whether an overflow was possible,
11929         I inserted a run-time check.
11930         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
11931         macros.
11932         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
11933         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
11934         (re_xnrealloc, re_x2nrealloc): New inline functions.
11935         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
11936         parse_bracket_exp):
11937         (build_equiv_class, build_charclass): Check for arithmetic overflow
11938         in size expression calculations.
11939         * lib/regex_internal.c (re_string_realloc_buffers):
11940         (build_wcs_upper_buffer, re_node_set_add_intersect):
11941         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
11942         (re_dfa_add_node, register_state): Likewise.
11943         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
11944         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
11945         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
11946         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
11947
11948 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
11949
11950         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
11951         m4/ulonglong.m4.  Problem reported by Martin Lambers.
11952
11953 2005-09-02  Bruno Haible  <bruno@clisp.org>
11954
11955         Support for lib vs. lib64 distinction on biarch platforms.
11956         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
11957         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
11958         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
11959
11960 2005-09-02  Bruno Haible  <bruno@clisp.org>
11961
11962         * gnulib-tool (import): In the other first-use case, provide defaults
11963         as well.
11964
11965 2005-09-02  Bruno Haible  <bruno@clisp.org>
11966
11967         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
11968         patches not yet found in the latest gettext release.
11969
11970 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
11971
11972         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
11973         to avoid a collision with bits/local_lim.h in glibc.
11974         All uses changed.  Problem reported by Dmitry V. Levin in
11975         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
11976
11977         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
11978         bugs in int versus size_t comparisons.
11979         (re_string_context_at): Fix bug where the code assumed that
11980         Idx is signed.
11981
11982         Use bool where appropriate.
11983         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
11984         All callers changed.
11985         (calc_eclosure_iter): Likewise, for ROOT arg.
11986         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
11987         (build_charclass_op): Likewise, for NON_MATCH arg.
11988         * lib/regex_internal.c (re_string_allocate, re_string_construct):
11989         (re_string_construct_common): Likewise, for ICASE arg.
11990         * lib/regexec.c (re_search_2_stub, re_search_stub):
11991         Likewise, for RET_LEN arg.
11992         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
11993         (set_regs): Likewise, for FL_BACKTRACK arg.
11994         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
11995         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
11996         (calc_eclosure_iter, parse_bracket_exp):
11997         Use bool for internal variables that are booleans.
11998         * lib/regexec.c (re_search_internal, check_matching,
11999         proceed_next_node):
12000         (set_regs, build_sifted_states, sift_states_bkref):
12001         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
12002         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
12003         (find_collation_sequence_value):
12004         Likewise.
12005         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
12006         (re_node_set_compare):
12007         Return bool, not int. All callers changed.
12008         * lib/regexec.c (check_halt_node_context, check_dst_limits):
12009         (build_trtable, check_node_accept): Likewise.
12010         * lib/regex_internal.h: Include stdbool.h.
12011
12012         Fix bugs uncovered when converting to bool.
12013         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
12014         failure instead of charging ahead blindly.
12015         * lib/regex_internal.c (register_state): Likewise.
12016         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
12017         for freeing internal storage.
12018         (group_nodes_into_DFA_states): Use unsigned int, not int, for
12019         bitset pieces used as boolean, to avoid undefined behavior
12020         on hosts that do int overflow checking.
12021
12022 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
12023
12024         * config/srclist.txt: Add glibc bugs 1285-1287.
12025
12026 2005-09-01  Jim Meyering  <jim@meyering.net>
12027
12028         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
12029         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
12030         Require gl_STAT_MACROS, too.
12031
12032 2005-09-01  Bruno Haible  <bruno@clisp.org>
12033
12034         * gnulib-tool (import): In the first-use case, provide defaults.
12035
12036 2005-09-01  Bruno Haible  <bruno@clisp.org>
12037
12038         * gnulib-tool (func_import): Remove the .tmp files.
12039
12040 2005-09-01  Bruno Haible  <bruno@clisp.org>
12041
12042         * gnulib-tool (func_import): Fix handling of symbolic links.
12043
12044 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
12045
12046         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
12047         old glibc regex code mishandles strings longer than 2**31 bytes.
12048         This patch fixes this when the regex code is used in gnulib
12049         (i.e., outside glibc).
12050
12051         This patch should not affect the use of the regex code inside
12052         glibc.  No doubt this problem also needs to be handled for glibc
12053         as well, but the result will be an incompatible change to the
12054         glibc ABI, and the old ABI will have to be supported too.  That
12055         can be the the subject for another patch.
12056
12057         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
12058         governing whether the rest of this patch is active.  By default,
12059         the macro is disabled and the patch has no effect.
12060         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
12061         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
12062         (struct re_pattern_buffer, re_search, re_search_2, re_match):
12063         (re_match_2, re_set_registers): Use the new types.
12064         * lib/regex_internal.h (Idx, re_hashval_t): New types.
12065         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
12066         New macros.
12067         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
12068         (re_string_context_at, bin_tree_t, re_dfastate_t):
12069         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
12070         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
12071         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
12072         (re_string_char_size_at, re_string_wchar_at):
12073         (re_string_elem_size_at):
12074         Use the new types and macros to port to 64-bit hosts.
12075         Use unsigned types for internal values, so that the code
12076         mostly works even for arrays larger than SSIZE_MAX.
12077         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
12078         (search_duplicated_node, calc_eclosure_iter, fetch_number):
12079         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
12080         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
12081         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
12082         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
12083         (calc_inveclosure, parse_dup_op, build_range_exp):
12084         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
12085         (fetch_number, create_token_tree, mark_opt_subexp):
12086         Likewise.
12087         * lib/regex_internal.c (re_string_construct_common,
12088         create_ci_newstate):
12089         (create_cd_newstate, re_string_allocate, re_string_construct):
12090         (re_string_realloc_buffers, build_wcs_upper_buffer):
12091         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
12092         (re_string_reconstruct, re_string_peek_byte_case):
12093         (re_string_fetch_byte_case, re_string_context_at):
12094         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
12095         (re_node_set_init_copy, re_node_set_add_intersect):
12096         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
12097         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
12098         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
12099         (re_acquire_state, re_acquire_state_context, register_state):
12100         Likewise.
12101         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
12102         search_cur_bkref_entry):
12103         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
12104         (re_search_internal, re_search_2_stub, re_search_stub)
12105         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
12106         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
12107         (update_cur_sifted_state, check_dst_limits):
12108         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
12109         (check_subexp_limits, sift_states_bkref, merge_state_array):
12110         (check_subexp_matching_top, get_subexp, get_subexp_sub):
12111         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
12112         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
12113         (expand_bkref_cache, check_node_accept_bytes):
12114         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
12115         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
12116         (acquire_init_state_context, check_halt_node_context):
12117         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
12118         (sift_states_backward, clean_state_log_if_needed):
12119         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
12120         (find_recover_state, transit_state_sb, transit_state_mb):
12121         (transit_state_bkref, build_trtable, match_ctx_clean):
12122         Likewise.
12123         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
12124         to work around an assumption that REG_MISSING is negative.
12125
12126         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
12127         (seek_collating_symbol_entry) [defined _LIBC]:
12128         (lookup_collation_sequence_value) [defined _LIBC]:
12129         (build_range_exp, build_collating_symbol) [defined _LIBC]:
12130         Use prototypes rather than old-style function definitions.
12131         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
12132         (transit_state_sb) [0]:
12133         (find_collation_sequence_value) [defined _LIBC]: Likewise.
12134
12135         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
12136         rm_eo.
12137
12138         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
12139         (optimize_subexps, lower_subexp):
12140         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
12141         since the signed shift might overflow.  Use 1u<<31 instead.
12142         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
12143         Likewise.
12144         * lib/regexec.c (check_dst_limits_calc_pos_1,
12145         check_subexp_matching_top): Likewise.
12146
12147         * lib/regcomp.c (optimize_subexps, lower_subexp):
12148         Use CHAR_BIT rather than 8, for clarity.
12149         * lib/regexec.c (check_dst_limits_calc_pos_1):
12150         (check_subexp_matching_top): Likewise.
12151         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
12152         have to worry about portability issues when shifting it left.
12153         Remove no-longer-needed test for table_size > 0.
12154         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
12155         in a word, as the resulting behavior is undefined.
12156         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
12157         in one case, a <= should have been an <, and in another case the
12158         whole test was missing.
12159         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
12160         the standard name CHAR_BIT.
12161         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
12162         this is not true on one's complement and signed-magnitude hosts.
12163
12164         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
12165         next_last_offset.
12166         (struct re_dfa_t): Remove unused member states_alloc.
12167         * lib/regcomp.c (init_dfa): Don't initialize unused members.
12168
12169 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
12170
12171         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
12172         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
12173         and large-file glibc and in 32-bit large-file Solaris.
12174
12175 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
12176
12177         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
12178         lengths fit in regoff_t; this isn't true if regoff_t is the same
12179         width as size_t.
12180         * lib/regex.c (re_search_internal): 5th arg is LAST_START
12181         (= START + RANGE) instead of RANGE.  This avoids overflow
12182         problems when regoff_t is the same width as size_t.
12183         All callers changed.
12184         (re_search_2_stub): Check for overflow when adding the
12185         sizes of the two strings.
12186         (re_search_stub): Check for overflow when adding START
12187         to RANGE; if it occurs, substitute the extreme value.
12188
12189 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
12190
12191         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
12192
12193 2005-08-31  Jim Meyering  <jim@meyering.net>
12194
12195         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
12196         a pointer-to-const.
12197         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
12198         (register_state): Likewise.
12199         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
12200         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
12201         (group_nodes_into_DFAstates): Likewise.
12202
12203 2005-08-31  Jim Meyering  <jim@meyering.net>
12204
12205         * check-module: Add a FIXME comment.
12206
12207 2005-08-31  Eric Blake  <ebb9@byu.net>
12208
12209         * modules/unistd-safer (Files): Add unistd--.h.
12210         * modules/stdio-safer (Files): Add stdio--.h.
12211
12212 2005-08-31  Derek Price  <derek@ximbiot.com>
12213
12214         * lib/getdelim.c (getdelim): Return EOF on EOF.
12215         Reported by Larry Jones <lawrence.jones@ugs.com>.
12216
12217 2005-08-31  Bruno Haible  <bruno@clisp.org>
12218
12219         Avoid unnecessary diffs in the generated lib/Makefile.am.
12220         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
12221         the generated files.
12222         (func_import): Don't set cmd.
12223
12224 2005-08-31  Bruno Haible  <bruno@clisp.org>
12225
12226         * lib/strstr.c: Include <stddef.h>, for NULL.
12227         * lib/strcasestr.c: Likewise.
12228         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
12229
12230 2005-08-31  Bruno Haible  <bruno@clisp.org>
12231
12232         * gnulib-tool: New option --macro-prefix.
12233         (func_import): Use macro_prefix.
12234         (import): Handle option --macro-prefix.
12235
12236 2005-08-31  Bruno Haible  <bruno@clisp.org>
12237
12238         * gnulib-tool (import): Rename most ac_* variables to cached_*.
12239         Also use new variables cached_lgpl, cached_libtool.
12240
12241 2005-08-31  Bruno Haible  <bruno@clisp.org>
12242
12243         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
12244         always instantiating them.
12245
12246 2005-08-31  Bruno Haible  <bruno@clisp.org>
12247
12248         * gnulib-tool (func_import): Read the previous cached settings
12249         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
12250         earlier added by gnulib but are now dropped. Warn when a gnulib file
12251         overwrites a non-gnulib file.
12252
12253 2005-08-31  Bruno Haible  <bruno@clisp.org>
12254
12255         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
12256         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
12257         projects that don't keep autogenerated files in CVS. Put into
12258         actioncmd only the specified modules, not the transitive closure.
12259
12260 2005-08-31  Bruno Haible  <bruno@clisp.org>
12261
12262         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
12263         Create directories that shall be filled.
12264         (import): Don't look for gl_* macros in configure.ac. Recurse across
12265         all directories containing a gnulib-cache.m4 files, if meaningful.
12266
12267 2005-08-31  Bruno Haible  <bruno@clisp.org>
12268
12269         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
12270         (import): Set seen_libtool when we see gl_LIBTOOL.
12271
12272 2005-08-31  Bruno Haible  <bruno@clisp.org>
12273
12274         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
12275         declaration macro definitions from generated gnulib.m4.
12276
12277 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
12278
12279         * lib/iconvme.h: Add prototype for iconv_alloc.
12280
12281 2005-08-29  Simon Josefsson  <jas@extundo.com>
12282
12283         * lib/iconvme.c: Fix errno.
12284
12285 2005-08-29  Bruno Haible  <bruno@clisp.org>
12286
12287         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
12288         that it works when the directory contains spaces.
12289
12290 2005-08-29  Bruno Haible  <bruno@clisp.org>
12291
12292         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
12293
12294 2005-08-29  Bruno Haible  <bruno@clisp.org>
12295
12296         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
12297         Emit more advice.
12298
12299 2005-08-29  Bruno Haible  <bruno@clisp.org>
12300         and Stepan Kasal  <kasal@ucw.cz>
12301
12302         * check-module: If more parameters are given, check each of them
12303         separately; add more exceptions, as noted by Jim Meyering.
12304         (check_module): New procedure.
12305         (%exempt_header): Now contains all exceptions.
12306
12307 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
12308
12309         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
12310
12311 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
12312
12313         * lib/iconvme.c: Split iconv_string into iconv_alloc.
12314
12315 2005-08-28  Bruno Haible  <bruno@clisp.org>
12316
12317         * m4/gnulib-tool.m4: New file.
12318
12319 2005-08-27  Jim Meyering  <jim@meyering.net>
12320
12321         * modules/unistd-safer (Files): Add pipe-safer.c.
12322         * modules/fcntl-safer (Files): Add creat-safer.c.
12323
12324 2005-08-27  Jim Meyering  <jim@meyering.net>
12325
12326         * m4/stdlib-safer.m4: New file.  From coreutils.
12327         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
12328         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
12329         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
12330         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
12331         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
12332
12333 2005-08-27  Jim Meyering  <jim@meyering.net>
12334
12335         * lib/fopen-safer.c: Merge minor changes from coreutils.
12336         * lib/dup-safer.c: Likewise.
12337         * lib/fd-safer.c: Likewise.
12338
12339         Merge from coreutils.
12340         * lib/stdio--.h: New file.
12341         * lib/stdlib--.h: New file.
12342         * lib/mkstemp-safer.c: New file.
12343
12344         GNU tar needs these.
12345         * lib/pipe-safer.c: New file.
12346         * lib/creat-safer.c: New file.
12347         * lib/fcntl--.h (creat): Define to creat_safer.
12348         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
12349         * lib/unistd--.h (pipe): Define to pipe_safer.
12350         * lib/unistd-safer.h: Declare pipe_safer.
12351
12352 2005-08-26  Simon Josefsson  <jas@extundo.com>
12353
12354         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
12355         Haible <bruno@clisp.org>.
12356
12357 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
12358
12359         * lib/regex_internal.h: Remove all references to
12360         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
12361         or better.
12362         (bitset_not, bitset_merge, bitset_not_merge):
12363         (bitset_mask, re_string_allocate, re_string_construct):
12364         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
12365         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
12366         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
12367         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
12368         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
12369         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
12370         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
12371         (re_acquire_state_context):
12372         Remove unnecessary forward decls.
12373         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
12374         Put __attribute at function definition,
12375         now that the function decl has been removed.
12376         * lib/regex_internal.c (re_string_peek_byte_case):
12377         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
12378         Likewise.
12379
12380 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
12381
12382         * m4/regex.m4: Add AC_PREREQ(2.50).
12383         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
12384
12385 2005-08-25  Simon Josefsson  <jas@extundo.com>
12386
12387         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
12388         __fsetlocking.
12389
12390 2005-08-25  Simon Josefsson  <jas@extundo.com>
12391
12392         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
12393         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
12394         GLIBC specific code.
12395
12396 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
12397
12398         Make regex safe for g++.  This fixes one real bug (an "err"
12399         that should have been "*err").  g++ problem reported by
12400         Sam Steingold.
12401         * lib/regex_internal.h (re_calloc): New macro, consistent with
12402         re_malloc etc.  All callers of calloc changed to use re_calloc.
12403         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
12404         not int.  All callers changed.
12405         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
12406         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
12407         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
12408         (find_recover_state): Change "err" to "*err"; this fixes what
12409         appears to be a real bug.
12410         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
12411         versus int.
12412
12413 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
12414
12415         * modules/regex (Depends-on): Add malloc, since the code
12416         assumes that !malloc(0) means failure.
12417
12418 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
12419
12420         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
12421
12422         alloca modernization/simplification for regex.
12423         * lib/regex.c: Remove portability cruft for alloca.  This no longer
12424         needs to be at the start of the file, and can be moved into
12425         regex_internal.h and simplified.
12426         * lib/regex_internal.h: Include <alloca.h>.
12427         (__libc_use_alloca) [!defined _LIBC]: New macro.
12428         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
12429         now works outside glibc.
12430
12431 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
12432
12433         * config/srclist.txt: Add glibc bugs 1241, 1245.
12434
12435 2005-08-25  Jim Meyering  <jim@meyering.net>
12436
12437         * lib/open-safer.c: Include <config.h>.
12438         Otherwise, we'd lose LARGEFILE support in any file using
12439         e.g. "fcntl--.h"
12440
12441 2005-08-25  Bruno Haible  <bruno@clisp.org>
12442
12443         * m4/minmax.m4: Require autoconf 2.52.
12444         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
12445         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
12446         alternatives of translit over the alphabet.
12447         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
12448
12449 2005-08-24  Simon Josefsson  <jas@extundo.com>
12450
12451         * tests/test-getpass.c: New file.
12452
12453 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
12454
12455         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
12456         for GNU regex features.
12457
12458 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
12459
12460         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
12461         * lib/regex.h (regerror): Likewise.
12462
12463         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
12464         requires this.  (The code never needed it.)
12465
12466         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
12467         All uses of recently-renamed identifiers changed to use the new,
12468         POSIX-compliant names.  The code will build and run just fine
12469         without these changes, but it's better to eat our own dog food
12470         and use the standard-conforming names.
12471
12472         * lib/regex.h: Fix a multitude of POSIX name space violations.
12473         These changes have an effect only for programs that define
12474         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
12475         do not change anything for programs compiled in the normal way.
12476         Also, there is no effect on the ABI.
12477
12478         (_REGEX_SOURCE): New macro.
12479         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
12480         defined and _GNU_SOURCE is not; this fixes a name space violation.
12481
12482         Rename the following macros to obey POSIX requirements.
12483         The old names are still visible as macros if _REGEX_SOURCE is defined.
12484         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
12485         RE_BACKSLASH_ESCAPE_IN_LISTS.
12486         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
12487         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
12488         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
12489         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
12490         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
12491         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
12492         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
12493         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
12494         (REG_INTERVALS): renamed from RE_INTERVALS.
12495         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
12496         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
12497         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
12498         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
12499         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
12500         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
12501         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
12502         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
12503         RE_UNMATCHED_RIGHT_PAREN_ORD.
12504         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
12505         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
12506         (REG_DEBUG): renamed from RE_DEBUG.
12507         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
12508         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
12509         unusual, since we can't clash with the POSIX REG_ICASE.
12510         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
12511         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
12512         (REG_NO_SUB): renamed from RE_NO_SUB.
12513         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
12514         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
12515         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
12516         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
12517         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
12518         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
12519         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
12520         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
12521         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
12522         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
12523         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
12524         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
12525         RE_SYNTAX_POSIX_MINIMAL_BASIC.
12526         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
12527         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
12528         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
12529         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
12530         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
12531         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
12532         (REG_FIXED): Renamed from REGS_FIXED.
12533         (REG_NREGS): Renamed from RE_NREGS.
12534
12535         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
12536         of other REG_* macros, since POSIX says the user is allowed to
12537         #undef these macros selectively.
12538
12539         (reg_errcode_t): Update comment stating what other tables need
12540         to be consistent.
12541
12542         Rename the following enum values to obey POSIX requirements.
12543         The old names are still visible as macros.
12544         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
12545         is not defined, since GNU is supposed to be a superset of POSIX as
12546         much as possible, and since we want reg_errcode_t to be a signed
12547         type for implementation consistency.
12548         (_REG_NOERROR): Renamed from REG_NOERROR.
12549         (_REG_NOMATCH): Renamed from REG_NOMATCH.
12550         (_REG_BADPAT): Renamed from REG_BADPAT.
12551         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
12552         (_REG_ECTYPE): Renamed from REG_ECTYPE.
12553         (_REG_EESCAPE): Renamed from REG_EESCAPE.
12554         (_REG_ESUBREG): Renamed from REG_ESUBREG.
12555         (_REG_EBRACK): Renamed from REG_EBRACK.
12556         (_REG_EPAREN): Renamed from REG_EPAREN.
12557         (_REG_EBRACE): Renamed from REG_EBRACE.
12558         (_REG_BADBR): Renamed from REG_BADBR.
12559         (_REG_ERANGE): Renamed from REG_ERANGE.
12560         (_REG_ESPACE): Renamed from REG_ESPACE.
12561         (_REG_BADRPT): Renamed from REG_BADRPT.
12562         (_REG_EEND): Renamed from REG_EEND.
12563         (_REG_ESIZE): Renamed from REG_ESIZE.
12564         (_REG_ERPAREN): Renamed from REG_ERPAREN.
12565         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
12566         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
12567         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
12568         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
12569
12570         (_REG_RE_NAME, _REG_RM_NAME): New macros.
12571         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
12572         changed.  But support the old name if the new one is not defined
12573         and if _REGEX_SOURCE.
12574
12575         Change the following member names in struct re_pattern_buffer.
12576         The old names are still supported if !_REGEX_SOURCE.
12577         The new names are always supported, regardless of _REGEX_SOURCE.
12578         (re_buffer): Renamed from buffer.
12579         (re_allocated): Renamed from allocated.
12580         (re_used): Renamed from used.
12581         (re_syntax): Renamed from syntax.
12582         (re_fastmap): Renamed from fastmap.
12583         (re_translate): Renamed from translate.
12584         (re_can_be_null): Renamed from can_be_null.
12585         (re_regs_allocated): Renamed from regs_allocated.
12586         (re_fastmap_accurate): Renamed from fastmap_accurate.
12587         (re_no_sub): Renamed from no_sub.
12588         (re_not_bol): Renamed from not_bol.
12589         (re_not_eol): Renamed from not_eol.
12590         (re_newline_anchor): Renamed from newline_anchor.
12591
12592         Change the following member names in struct re_registers.
12593         The old names are still supported if !_REGEX_SOURCE.
12594         The new names are always supported, regardless of _REGEX_SOURCE.
12595         (rm_num_regs): Renamed from num_regs.
12596         (rm_start): Renamed from start.
12597         (rm_end): Renamed from end.
12598
12599         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
12600         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
12601         Prepend __ to parameter names.
12602
12603         Undo yesterday's changes.
12604
12605 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
12606
12607         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
12608         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
12609         lib/regex.c.
12610
12611 2005-08-24  Jim Meyering  <jim@meyering.net>
12612
12613         Sync from coreutils.
12614         * m4/fcntl-safer.m4: New file.
12615
12616         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
12617         and object files for this module.
12618
12619 2005-08-24  Jim Meyering  <jim@meyering.net>
12620
12621         Sync from coreutils.
12622         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
12623
12624 2005-08-24  Jim Meyering  <jim@meyering.net>
12625
12626         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
12627         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
12628
12629 2005-08-24  Jim Meyering  <jim@meyering.net>
12630
12631         * modules/fcntl-safer: New module.
12632         * modules/fts (Depends-on): Add fcntl-safer.
12633         * MODULES.html.sh (File descriptor based Input/Output):
12634         Add fcntl-safer.
12635
12636 2005-08-24  Bruno Haible  <bruno@clisp.org>
12637
12638         Support for unit test modules.
12639         * modules/README: Mention tests modules.
12640         * modules/TEMPLATE-TESTS: New file.
12641         * gnulib-tool: New options --extract-tests-module, --with-tests and
12642         --tests-base (unused for the moment).
12643         (testsbase, inctests): New variables.
12644         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
12645         (func_verify_module): Exclude TEMPLATE-TESTS.
12646         (func_verify_nontests_module, func_verify_tests_module): New functions.
12647         (func_get_dependencies): Add implicit dependency for tests modules.
12648         (func_get_tests_module): New function.
12649         (func_modules_transitive_closure): When --with-tests was specified,
12650         include the unit tests as well, unless explicitly avoided.
12651         (func_emit_lib_Makefile_am): Ignore the tests modules here.
12652         (func_emit_tests_Makefile_am): New function.
12653         (func_create_testdir): When --with-tests was specified, emit a
12654         tests/ directory.
12655         * MODULES.html.sh (Future developments): Update.
12656
12657 2005-08-24  Bruno Haible  <bruno@clisp.org>
12658
12659         * modules/tls-tests: New file.
12660         * tests/test-tls.c: New file, from GNU gettext.
12661
12662 2005-08-24  Bruno Haible  <bruno@clisp.org>
12663
12664         * modules/lock-tests: New file.
12665         * tests/test-lock.c: New file, from GNU gettext.
12666
12667 2005-08-24  Bruno Haible  <bruno@clisp.org>
12668
12669         * lib/lock.h: Add multiple inclusion guard.
12670         * lib/tls.h: Add multiple inclusion guard.
12671
12672 2005-08-24  Bruno Haible  <bruno@clisp.org>
12673
12674         * gnulib-tool: Add support for the --aux-dir option to
12675         --create-testdir, --create-megatestdir, --test, --megatest.
12676         (func_create_testdir, func_create_megatestdir): Optionally emit a
12677         AC_CONFIG_AUX_DIR directive.
12678         (create-testdir, create-megatestdir, test, megatest): Provide a
12679         default value for $auxdir.
12680
12681 2005-08-24  Bruno Haible  <bruno@clisp.org>
12682
12683         * gnulib-tool (import): Use compound statement instead of subshell
12684         where possible.
12685
12686 2005-08-24  Bruno Haible  <bruno@clisp.org>
12687
12688         * gnulib-tool (import): Change --aux-dir default to "build-aux".
12689
12690 2005-08-24  Bruno Haible  <bruno@clisp.org>
12691
12692         * gnulib-tool (func_version): Update.
12693
12694 2005-08-24  Bruno Haible  <bruno@clisp.org>
12695
12696         * gnulib-tool (func_import, func_create_testdir,
12697         func_create_megatestdir): Quote all autoconf macro arguments.
12698
12699 2005-08-24  Bruno Haible  <bruno@clisp.org>
12700
12701         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
12702         option --force, because --force causes the aclocal.m4 of each
12703         subdirectory to be newer than the corresponding config.h.in.
12704
12705 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
12706
12707         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
12708         All contents moved to gl_REGEX.
12709         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
12710         assume that it does.
12711
12712 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
12713
12714         * lib/regex.h (REG_NOSYS)
12715         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
12716         Define, since POSIX requires it as of 2001.
12717         (_REG_ENOSYS)
12718         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
12719         New private symbol, used to keep the enum signed in all cases.
12720         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
12721         Youngman in
12722         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
12723
12724         * lib/regex_internal.c (re_string_skip_chars, register_state):
12725         (calc_state_hash):
12726         Remove forward decls; no longer needed now that we use prototypes.
12727         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
12728         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
12729         (clean_state_log_if_needed): Likewise.
12730
12731 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
12732
12733         * config/srclist.txt: Add glibc bugs 1231-1233.
12734
12735 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
12736
12737         Fix problems reported by Sam Steingold in
12738         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
12739         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
12740         assumed that reg_errcode_t is a signed type, which is not
12741         necessarily true if _XOPEN_SOURCE is not defined.
12742         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
12743         since some compilers warn about it otherwise.
12744
12745 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
12746
12747         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
12748         (init_word_char, create_initial_state, duplicate_node_closure):
12749         (fetch_token, peek_token_bracket, build_range_exp):
12750         (build_collating_symbol): Remove forward decls; no longer needed
12751         now that we use prototypes.
12752
12753         * lib/regcomp.c:
12754         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
12755         (re_compile_fastmap_iter, regcomp, regerror, regfree):
12756         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
12757         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
12758         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
12759         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
12760         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
12761         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
12762         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
12763         (build_range_exp, build_collating_symbol, parse_bracket_exp):
12764         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
12765         (build_charclass, build_charclass_op, fetch_number, create_tree):
12766         (create_token_tree, mark_opt_subexp, duplicate_tree):
12767         Use prototypes rather than old-style definitions.
12768
12769         * lib/regex_internal.c:
12770         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
12771         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
12772         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
12773         (re_string_reconstruct, re_string_peek_byte_case):
12774         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
12775         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
12776         (re_node_set_init_copy, re_node_set_add_intersect):
12777         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
12778         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
12779         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
12780         (re_acquire_state, re_acquire_state_context, register_state):
12781         (create_ci_newstate, create_cd_newstate, free_state):
12782         Likewise.
12783         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
12784         re_search_2):
12785         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
12786         (re_search_internal, prune_impossible_nodes):
12787         (acquire_init_state_context, check_matching, static):
12788         (check_halt_node_context, check_halt_state_context, proceed_next_node):
12789         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
12790         (update_regs, sift_states_backward, build_sifted_states):
12791         (clean_state_log_if_needed, merge_state_array):
12792         (update_cur_sifted_state, add_epsilon_src_nodes):
12793         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
12794         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
12795         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
12796         (find_recover_state, check_subexp_matching_top, transit_state_mb):
12797         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
12798         (check_arrival, check_arrival_add_next_nodes):
12799         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
12800         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
12801         (check_node_accept_bytes, check_node_accept, extend_buffers):
12802         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
12803         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
12804         (sift_ctx_init):
12805         Likewise.
12806
12807         * lib/regex_internal.h:
12808         (re_string_allocate, re_string_construct, re_string_reconstruct):
12809         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
12810         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
12811         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
12812         (re_string_context_at, re_string_peek_byte_case):
12813         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
12814         is defined, since we now use prototypes always.
12815
12816         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
12817         C89 or better.  All uses removed.
12818
12819 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
12820
12821         * config/srclist.txt: Add glibc bugs 1220-1227.
12822
12823 2005-08-20  Jim Meyering  <jim@meyering.net>
12824
12825         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
12826         of unused local, dfa.
12827
12828 2005-08-20  Bruno Haible  <bruno@clisp.org>
12829
12830         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
12831
12832 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
12833
12834         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
12835         (re_node_set_insert_last, re_dfa_add_node):
12836         Rename local variables to avoid GCC shadowing warnings.
12837
12838 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
12839
12840         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
12841         [defined lint]: Suppress bogus uninitialized-variable warnings.
12842
12843         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
12844         and let the caller return REG_ESPACE if out of space.  This
12845         removes an uninitialied-variable warning with GCC 4.0.1, and also
12846         avoids taking the address of a local variable.  All callers
12847         changed.
12848
12849 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
12850
12851         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
12852         $LIBCSRC/posix/regexec.c.
12853         Add glibc bug 1217 for regcomp.c.
12854
12855 2005-08-19  Jim Meyering  <jim@meyering.net>
12856
12857         * lib/regexec.c (proceed_next_node): Redo local variables to
12858         avoid GCC shadowing warnings.
12859
12860 2005-08-18  Bruno Haible  <bruno@clisp.org>
12861
12862         * lib/strstr.c (strstr): Fix return value in multibyte case.
12863         * lib/strcasestr.c (strcasestr): Likewise.
12864
12865 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
12866
12867         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
12868
12869 2005-08-17  Jim Meyering  <jim@meyering.net>
12870
12871         Make the %s format (seconds since the epoch) work for a negative
12872         number and when used with a zero-padded field width, e.g. %015s.
12873
12874         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
12875         label so that it precedes the code to set `digits'.  Otherwise,
12876         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
12877         print `00-22'.  Now, it prints `-0022', as it should.
12878
12879 2005-08-17  Bruno Haible  <bruno@clisp.org>
12880
12881         * modules/strstr (Files): Add m4/mbrtowc.m4.
12882         (Depends-on): Add mbuiter.
12883
12884 2005-08-17  Bruno Haible  <bruno@clisp.org>
12885
12886         * modules/strcasestr: New file.
12887         * MODULES.html.sh (String handling, based on ANSI C 89): Add
12888         strcasestr.
12889
12890 2005-08-17  Bruno Haible  <bruno@clisp.org>
12891
12892         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
12893
12894 2005-08-17  Bruno Haible  <bruno@clisp.org>
12895
12896         * modules/mbuiter: New file.
12897         * MODULES.html.sh (Extended multibyte and wide character utilities):
12898         Add mbuiter.
12899
12900 2005-08-17  Bruno Haible  <bruno@clisp.org>
12901
12902         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
12903         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
12904
12905 2005-08-17  Bruno Haible  <bruno@clisp.org>
12906
12907         * m4/strcasestr.m4: New file.
12908
12909 2005-08-17  Bruno Haible  <bruno@clisp.org>
12910
12911         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
12912         * lib/strstr.c: Completely rewritten, with multibyte locale support.
12913
12914 2005-08-17  Bruno Haible  <bruno@clisp.org>
12915
12916         * lib/strcasestr.h: New file.
12917         * lib/strcasestr.c: New file.
12918
12919 2005-08-17  Bruno Haible  <bruno@clisp.org>
12920
12921         * lib/strcasecmp.c: Use mbuiter.h.
12922
12923 2005-08-17  Bruno Haible  <bruno@clisp.org>
12924
12925         * lib/mbuiter.h: New file.
12926
12927 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
12928
12929         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
12930         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
12931         and gl_GETOPT are both invoked via different paths (as happens
12932         with GNU tar CVS because it uses both argp and getopt), the former
12933         wins.
12934
12935 2005-08-16  Bruno Haible  <bruno@clisp.org>
12936
12937         * modules/tls: New file.
12938         * MODULES.html.sh (Multithreading): Add tls.
12939
12940 2005-08-16  Bruno Haible  <bruno@clisp.org>
12941
12942         * modules/strnlen1: New file.
12943         * MODULES.html.sh (String handling): Add strnlen1.
12944
12945 2005-08-16  Bruno Haible  <bruno@clisp.org>
12946
12947         * modules/strcase (Files): Add m4/mbrtowc.m4.
12948         (Depends-on): Add strnlen1, mbchar.
12949
12950 2005-08-16  Bruno Haible  <bruno@clisp.org>
12951
12952         * modules/mbiter: New file.
12953         * MODULES.html.sh (Extended multibyte and wide character utilities):
12954         Add mbiter.
12955
12956 2005-08-16  Bruno Haible  <bruno@clisp.org>
12957
12958         * modules/mbfile: New file.
12959         * MODULES.html.sh (Extended multibyte and wide character utilities):
12960         Add mbfile.
12961
12962 2005-08-16  Bruno Haible  <bruno@clisp.org>
12963
12964         * modules/mbchar: New file.
12965         * MODULES.html.sh (Extended multibyte and wide character utilities):
12966         New section.
12967
12968 2005-08-16  Bruno Haible  <bruno@clisp.org>
12969
12970         * m4/tls.m4: New file, from GNU gettext.
12971
12972 2005-08-16  Bruno Haible  <bruno@clisp.org>
12973
12974         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
12975         always.
12976         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
12977
12978 2005-08-16  Bruno Haible  <bruno@clisp.org>
12979
12980         * m4/mbiter.m4: New file.
12981
12982 2005-08-16  Bruno Haible  <bruno@clisp.org>
12983
12984         * m4/mbfile.m4: New file.
12985
12986 2005-08-16  Bruno Haible  <bruno@clisp.org>
12987
12988         * m4/mbchar.m4: New file.
12989
12990 2005-08-16  Bruno Haible  <bruno@clisp.org>
12991
12992         * lib/tls.h: New file, from GNU gettext.
12993         * lib/tls.c: New file, from GNU gettext.
12994
12995 2005-08-16  Bruno Haible  <bruno@clisp.org>
12996
12997         * lib/strnlen1.h: New file.
12998         * lib/strnlen1.c: New file.
12999
13000 2005-08-16  Bruno Haible  <bruno@clisp.org>
13001
13002         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
13003         (mbi_init): Update.
13004         (mbi_avail, mbi_advance): Let the iteration end before the terminating
13005         NUL byte, not after it.
13006
13007 2005-08-16  Bruno Haible  <bruno@clisp.org>
13008
13009         * lib/strcase.h (strcasecmp): Add note in comments.
13010         * lib/strncasecmp.c: Use code from strcasecmp.c.
13011         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
13012         (strcasecmp): Work correctly in multibyte locales.
13013
13014 2005-08-16  Bruno Haible  <bruno@clisp.org>
13015
13016         * lib/mbiter.h: New file.
13017
13018 2005-08-16  Bruno Haible  <bruno@clisp.org>
13019
13020         * lib/mbfile.h: New file.
13021
13022 2005-08-16  Bruno Haible  <bruno@clisp.org>
13023
13024         * lib/mbchar.h: New file.
13025         * lib/mbchar.c: New file.
13026
13027 2005-08-16  Bruno Haible  <bruno@clisp.org>
13028
13029         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
13030         the valid ones. Makes the comparison operations transitive:
13031         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
13032         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
13033
13034 2005-08-15  Simon Josefsson  <jas@extundo.com>
13035
13036         * modules/ssize_t (License): Change to 'unlimited'.
13037
13038         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
13039
13040 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
13041
13042         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
13043         Add comments for each pending glibc patch.
13044
13045 2005-08-15  Bruno Haible  <bruno@clisp.org>
13046
13047         * lib/regex.h (__restrict_arr): Don't define to __restrict if
13048         __cplusplus is defined.
13049
13050 2005-08-14  Jim Meyering  <jim@meyering.net>
13051
13052         Sync from coreutils.
13053
13054         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
13055         Use the hash-table-based cycle-detection code not just when
13056         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
13057         Reported by James Youngman in
13058         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
13059         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
13060         FTS_TIGHT_CYCLE_CHECK.
13061         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
13062         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
13063         once again.
13064         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
13065         * lib/fts.c (fd_safer): Remove decl.
13066         Include fcntl--.h rather than unistd-safer.h
13067         (fts_safe_changedir): Don't call fd_safer; no longer needed
13068         now that we include fcntl--.h.
13069
13070 2005-08-12  Simon Josefsson  <jas@extundo.com>
13071
13072         * modules/getndelim2: Use ssize_t module.
13073         * modules/getnline: Likewise.
13074         * modules/safe-read: Likewise.
13075         * modules/xreadlink: Likewise.
13076
13077         * modules/ssize_t: New file.
13078
13079 2005-08-12  Simon Josefsson  <jas@extundo.com>
13080
13081         * m4/readline.m4: Look for termcap, curses or ncurses if required.
13082
13083 2005-08-12  Simon Josefsson  <jas@extundo.com>
13084
13085         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
13086         ssize_t.
13087
13088 2005-08-12  Simon Josefsson  <jas@extundo.com>
13089
13090         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
13091         readline, getdelim and check_version.
13092         (Support for systems lacking ISO C 99: Sizes of integer types):
13093         Add size_max.
13094
13095 2005-08-12  Bruno Haible  <bruno@clisp.org>
13096
13097         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
13098
13099 2005-08-11  Simon Josefsson  <jas@extundo.com>
13100
13101         * modules/readline: New file.
13102
13103         * modules/strnlen (Files): Add strnlen.h.
13104
13105 2005-08-11  Simon Josefsson  <jas@extundo.com>
13106
13107         * m4/readline.m4: New file.
13108
13109 2005-08-11  Simon Josefsson  <jas@extundo.com>
13110
13111         * lib/readline.h, readline.c: New file.
13112
13113 2005-08-11  Simon Josefsson  <jas@extundo.com>
13114
13115         * doc/gnulib.texi (Initial import, Finishing touches): Mention
13116         gl_AVOID.
13117
13118 2005-08-11  Bruno Haible  <bruno@clisp.org>
13119
13120         * lib/strnlen.h (strnlen): Change parameter name to match comment.
13121
13122 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
13123
13124         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
13125
13126 2005-08-10  Simon Josefsson  <jas@extundo.com>
13127
13128         * tests/test-iconvme.c: New file.
13129
13130 2005-08-10  Simon Josefsson  <jas@extundo.com>
13131
13132         * m4/strnlen.m4: New file.
13133
13134         * m4/strndup.m4: Don't check for strnlen declaration, done in
13135         strnlen.m4.
13136
13137 2005-08-10  Simon Josefsson  <jas@extundo.com>
13138
13139         * lib/strndup.c: Use strnlen.h.
13140
13141         * lib/strnlen.h: New file.
13142
13143 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
13144
13145         * README: Typos.
13146
13147 2005-08-02  Simon Josefsson  <jas@extundo.com>
13148
13149         * modules/readline: New file.
13150
13151 2005-08-02  Simon Josefsson  <jas@extundo.com>
13152
13153         * modules/getdelim: New file.
13154
13155         * modules/getline: Rewrite, don't use getndelim2.
13156
13157 2005-08-02  Simon Josefsson  <jas@extundo.com>
13158
13159         * m4/getline.m4: Separate out getdelim stuff into separate module.
13160
13161         * m4/getdelim.m4: New file.
13162
13163 2005-08-02  Simon Josefsson  <jas@extundo.com>
13164
13165         * lib/getline.h, getline.c: Rewrite.
13166
13167         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
13168
13169 2005-07-31  Bruno Haible  <bruno@clisp.org>
13170
13171         * lib/lock.h (gl_lock_initializer): New macro.
13172         (gl_lock_define_initialized): Use it.
13173         (gl_rwlock_initializer): New macro.
13174         (gl_rwlock_define_initialized): Use it.
13175         (gl_recursive_lock_initializer): New macro.
13176         (gl_recursive_lock_define_initialized): Use it.
13177
13178 2005-07-30  Karl Berry  <karl@gnu.org>
13179
13180         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
13181         Report from Ben Pfaff, regarding getopt.
13182
13183 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
13184
13185         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
13186         normal way.
13187         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
13188         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
13189         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
13190         (gl_GETOPT): Use the new macros.  Most of the implementation
13191         is moved to the new macros.  This is for programs like Emacs
13192         that don't want all the functionality of gl_GETOPT.
13193
13194 2005-07-26  Bruno Haible  <bruno@clisp.org>
13195
13196         * m4/lock.m4: Update from GNU gettext.
13197
13198 2005-07-26  Bruno Haible  <bruno@clisp.org>
13199
13200         * lib/lock.h: Update from GNU gettext.
13201         * lib/lock.c: Update from GNU gettext.
13202
13203 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
13204
13205         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
13206         obsolescent AC_TRY_RUN.  Include the default includes files, for
13207         'exit'.
13208
13209 2005-07-24  Bruno Haible  <bruno@clisp.org>
13210
13211         * modules/visibility: New file.
13212         * MODULES.html.sh (Misc): Add visibility.
13213
13214 2005-07-24  Bruno Haible  <bruno@clisp.org>
13215
13216         * m4/visibility.m4: New file.
13217
13218 2005-07-24  Bruno Haible  <bruno@clisp.org>
13219
13220         * doc/visibility.texi: New file.
13221
13222 2005-07-22  Bruno Haible  <bruno@clisp.org>
13223
13224         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
13225         $(ALLOCA_H), redundant through BUILT_SOURCES.
13226         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
13227         redundant through BUILT_SOURCES.
13228         * modules/byteswap (Makefile.am): Remove explicit dependency on
13229         $(BYTESWAP_H), redundant through BUILT_SOURCES.
13230         * modules/fnmatch (Makefile.am): Remove explicit dependency on
13231         $(FNMATCH_H), redundant through BUILT_SOURCES.
13232         * modules/getopt (Makefile.am): Remove explicit dependency on
13233         $(GETOPT_H), redundant through BUILT_SOURCES.
13234         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
13235         redundant through BUILT_SOURCES.
13236         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
13237         redundant through BUILT_SOURCES.
13238         * modules/stdbool (Makefile.am): Remove explicit dependency on
13239         $(STDBOOL_H), redundant through BUILT_SOURCES.
13240         * modules/stdint (Makefile.am): Remove explicit dependency on
13241         $(STDINT_H), redundant through BUILT_SOURCES.
13242         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
13243         Remove explicit dependency on $(SYSEXITS_H).
13244         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
13245
13246 2005-07-18  Simon Josefsson  <jas@extundo.com>
13247
13248         * lib/check-version.c (check_version): Accept identical versions too.
13249
13250 2005-07-18  Bruno Haible  <bruno@clisp.org>
13251
13252         * modules/lock: New file.
13253         * MODULES.html.sh (Multithreading): New section.
13254
13255 2005-07-18  Bruno Haible  <bruno@clisp.org>
13256
13257         * m4/lock.m4: New file, from GNU gettext.
13258
13259 2005-07-18  Bruno Haible  <bruno@clisp.org>
13260
13261         * lib/lock.h: New file, from GNU gettext.
13262         * lib/lock.c: New file, from GNU gettext.
13263
13264 2005-07-18  Bruno Haible  <bruno@clisp.org>
13265
13266         * lib/lock.h (gl_once_t): New type.
13267         (gl_once_define, gl_once): New macros.
13268         * lib/lock.c (fresh_once): New variable.
13269         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
13270         functions.
13271
13272 2005-07-16  Simon Josefsson  <jas@extundo.com>
13273
13274         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
13275         workaround, suggested by Bruno.
13276
13277 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
13278
13279         * modules/xalloc (Depends-on): Add xalloc-die.
13280         * modules/xvasprintf (Depends-on): Add xalloc-die.
13281
13282 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
13283
13284         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
13285         with a minor change.
13286
13287 2005-07-15  Bruno Haible  <bruno@clisp.org>
13288
13289         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
13290         When using lib/poll.c, define poll as rpl_poll.
13291
13292 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
13293
13294         * modules/argp (Depends-on): Remove unlocked-io.
13295
13296 2005-07-14  Derek Price  <derek@ximbiot.com>
13297
13298         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
13299         for glob symlink bug.
13300
13301 2005-07-14  Bruno Haible  <bruno@clisp.org>
13302
13303         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
13304         Instead, test for *_unlocked function declarations directly.
13305
13306 2005-07-11  Simon Josefsson  <jas@extundo.com>
13307
13308         * modules/size_max: New file.
13309
13310         * modules/xsize: Depend on size_max module for size_max.m4.
13311
13312 2005-07-11  Simon Josefsson  <jas@extundo.com>
13313
13314         * lib/size_max.h: New file.
13315
13316 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
13317
13318         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
13319         copyright symbol and the year.
13320         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
13321         (version_etc_va): Use parameterized copyright notice.
13322         Reword to conform to the current GNU coding standards.
13323
13324 2005-07-11  Karl Berry  <karl@gnu.org>
13325
13326         * doc/gnulib.texi (Quoting): new node.
13327         (Initial import): more info, from Patrice.
13328
13329 2005-07-11  Bruno Haible  <bruno@clisp.org>
13330
13331         * gnulib-tool (func_usage): Document option --avoid.
13332         (Command line options): Handle --avoid.
13333         (func_acceptable): New function.
13334         (func_modules_transitive_closure): Use it.
13335
13336 2005-07-11  Bruno Haible  <bruno@clisp.org>
13337
13338         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
13339         Reported by Jim Meyering.
13340
13341 2005-07-10  Bruno Haible  <bruno@clisp.org>
13342
13343         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
13344         Needed when size_t is smaller than 'unsigned int'.
13345         Reported by Paul Eggert.
13346
13347 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
13348
13349         * modules/argp (Depends-on): Add unlocked-io
13350
13351 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
13352
13353         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
13354         block of defines.
13355
13356 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
13357
13358         * config/srclist.txt: Comment out regcomp.c, since we have a porting
13359         fix now.
13360
13361 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
13362         and Paul Eggert  <eggert@cs.ucla.edu>
13363
13364         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
13365         in wint_t, not wchar_t.  Remove now-unnecessary cast.
13366
13367 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
13368
13369         * modules/regex (Files): Add lib/regex_internal.c,
13370         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
13371         (Depends-on): Add extensions.
13372         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
13373
13374 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
13375
13376         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
13377         pathconf.
13378         * m4/same.m4 (gl_SAME): Likewise.
13379         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
13380
13381         * m4/regex.m4: Adjust to new libc regex implementation.
13382         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
13383         all the .c and .h parts of (the new) regex.
13384         Quote the m4 stuff better.
13385         Check for RE_ICASE bug of old gnulib.
13386         Check for REG_STARTEND of recent libc.
13387         Rename local variables from jm_* to gl_*.
13388         Quote operand of "test -f".
13389         Say "recent enough" version of libc, not "version 2".
13390         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
13391         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
13392         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
13393         Remove check for btowc, isascii.
13394         Require AM_LANGINFO_CODESET.
13395
13396 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
13397
13398         * lib/regex.c, regex.h: Sync from libc.
13399         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
13400         * lib/regexec.c:
13401         New files, synced from libc, except that regex_internal.h
13402         currently has a small porting fix.
13403
13404 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
13405
13406         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
13407         regex_internal.c, regexec.c.
13408         Add regex_internal.h too, but as a comment, since the libc version
13409         is currently broken in gnulib mode.
13410
13411 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
13412
13413         Support programs like Emacs that use gnulib but not gettext.
13414         * MODULES.html.sh (Internationalization functions): Add gettext-h.
13415         * modules/gettext-h: New file.
13416         * modules/gettext (Files): Remove lib/gettext.h.
13417         (Depends-on): Add gettext-h.
13418         (Makefile.am): Remove lib_SOURCES.
13419         * modules/argmatch, modules/c-stack, modules/closeout:
13420         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
13421         * modules/execute, modules/file-type, modules/getaddrinfo:
13422         * modules/getopt, modules/human, modules/javacomp:
13423         * modules/javaexec, modules/mkdir-p, modules/obstack:
13424         * modules/openat, modules/pagealign_alloc, modules/pipe:
13425         * modules/quotearg, modules/regex, modules/rpmatch:
13426         * modules/unicodeio, modules/userspec, modules/version-etc:
13427         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
13428         * modules/xsetenv:
13429         Depend on gettext-h, not gettext.
13430
13431 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
13432
13433         * gnulib-tool (func_import): Add support for 'public domain' license.
13434         * modules/alloca, modules/atexit, modules/memmove:
13435         Now public domain, not GPL.
13436         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
13437         * modules/realloc, modules/strerror, modules/strtod:
13438         Now LGPL, not GPL.
13439
13440 2005-07-05  Bruno Haible  <bruno@clisp.org>
13441
13442         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
13443         autoconf CVS. Needed for mingw.
13444
13445 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
13446
13447         Remove the dependency of the strftime module on the tzset module.
13448         * modules/strftime (Depends-on): Remove dependency on tzset.
13449
13450 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
13451
13452         Remove the dependency of the strftime module on the tzset module.
13453         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
13454         gl_FUNC_TZSET_CLOBBER.
13455
13456 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
13457
13458         Remove the dependency of the strftime module on the tzset module.
13459         * lib/strftime.c (my_strftime)
13460         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
13461         Copy the input structure, to work around some of the bug with
13462         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
13463         Solaris releases, you should also use the tzset module, but we won't
13464         require it as a dependency any more since we don't want LGPLed code
13465         to depend on GPLed code.
13466
13467 2005-07-02  Jim Meyering  <jim@meyering.net>
13468
13469         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
13470         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
13471         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
13472         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
13473
13474 2005-07-02  Jim Meyering  <jim@meyering.net>
13475
13476         * lib/backupfile.c (backup_args): Change a `0' to NULL.
13477
13478 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
13479
13480         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
13481         declares only 'struct timespec;' (!).
13482
13483 2005-07-01  Jim Meyering  <jim@meyering.net>
13484
13485         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
13486         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
13487         * lib/save-cwd.c, tempname.c:
13488         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
13489         and don't include <sys/file.h>).
13490
13491 2005-06-29  Jim Meyering  <jim@meyering.net>
13492
13493         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
13494         type name.  Use the variable name instead.
13495         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
13496         Likewise.
13497
13498 2005-06-28  Simon Josefsson  <jas@extundo.com>
13499
13500         * modules/check-version (Files): Add check-version.m4.
13501
13502 2005-06-28  Simon Josefsson  <jas@extundo.com>
13503
13504         * m4/check-version.m4: New file, suggested by Jim Meyering
13505         <jim@meyering.net>.
13506
13507 2005-06-28  Simon Josefsson  <jas@extundo.com>
13508
13509         * lib/check-version.h, lib/check-version.c: New files.
13510
13511 2005-06-28  Simon Josefsson  <jas@extundo.com>
13512
13513         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
13514         collision with global variable.  Better indentation.  Don't
13515         increment buffer pointer beyond buffer end.  Based on comments
13516         from Paul Eggert <eggert@cs.ucla.edu>.
13517
13518         * lib/base64.h: Indent.
13519
13520 2005-06-28  Simon Josefsson  <jas@extundo.com>
13521
13522         * doc/gnulib.texi (Library version handling): New section.
13523
13524 2005-06-28  Jim Meyering  <jim@meyering.net>
13525
13526         * check-module (find_included_lib_files): Hard-code another
13527         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
13528         but modules/fts-lgpl (correctly) does not list those files.
13529
13530         * modules/canonicalize (Files): Add lib/pathmax.h.
13531
13532 2005-06-25  Simon Josefsson  <jas@extundo.com>
13533
13534         * modules/check-version: New file.
13535
13536 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
13537
13538         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
13539         initializer of struct addrinfo, as an indication that we don't
13540         care how many members the structure has.
13541
13542 2005-06-24  Derek Price  <derek@ximbiot.com>
13543         and Bruno Haible  <bruno@clisp.org>
13544
13545         Remove stat module & update lstat.
13546         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
13547         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
13548         * m4/stat.m4: Remove this file.
13549
13550 2005-06-24  Derek Price  <derek@ximbiot.com>
13551         and Bruno Haible  <bruno@clisp.org>
13552
13553         Remove stat module & update lstat.
13554         * lib/stat.c: Remove this file...
13555         (slash_aware_lstat): ...moving this content and its support...
13556         * lib/lstat.c (rpl_lstat): ...into here.
13557         * lib/lstat.h: New file.
13558
13559 2005-06-24  Derek Price  <derek@ximbiot.com>
13560         and Bruno Haible  <bruno@clisp.org>
13561
13562         Remove stat module & update lstat.
13563         * config/srclist.txt (libc sources): Remove stat.
13564
13565 2005-06-24  Derek Price  <derek@ximbiot.com>
13566         and Bruno Haible  <bruno@clisp.org>
13567
13568         Remove stat module & update lstat.
13569         * MODULES.html.sh (stat): Remove.
13570         * MODULES.html: Regenerated.
13571         * modules/lstat (Description): Correct function name.
13572         (Files): Add "lstat.h".
13573         (Depends-on): Remove stat, add xalloc, stat-macros.
13574         * modules/stat: Remove this file.
13575         (Include): Add "lstat.h", remove <sys/stat.h>.
13576
13577 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
13578
13579         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
13580         (ranged_convert): Don't save conversion in a temporary struct.
13581         This causes a warning with GCC 4.0.0, and anyway in the typical
13582         case it's not worth the extra 100 bytes or so of code.
13583         (ranged_convert, __mktime_internal): When calling a function via a
13584         pointer P, use P () rather than (*P) (), as we now assume C89 or
13585         better.
13586
13587 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
13588
13589         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
13590         "who -r" failed to give output.  Problem reported by Tim Waugh.
13591
13592         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
13593         (xcalloc): Use it to avoid needless tests.
13594         Problem reported by Jim Meyering.
13595
13596 2005-06-20  Derek Price  <derek@ximbiot.com>
13597
13598         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
13599         unnecessary for Autoconfs > 2.59c.
13600
13601 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
13602
13603         * lib/argp.h (__option_is_short): Check upper limit of
13604         __key. Isprint() requires its argument to have the value
13605         of an unsigned char or EOF.
13606
13607 2005-06-16  Jim Meyering  <jim@meyering.net>
13608
13609         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
13610         when either N or S is zero.
13611
13612 2005-06-16  Derek Price  <derek@ximbiot.com>
13613
13614         * m4/bison.m4: Declare YACC & YFLAGS precious.
13615
13616 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
13617
13618         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
13619         multibyte string or pattern, fall back on unibyte matching.
13620         Problem reported by James Youngman.
13621
13622 2005-06-08  Bruno Haible  <bruno@clisp.org>
13623
13624         * modules/csharpcomp: New file.
13625         * MODULES.html.sh (C#): Add csharpcomp.
13626
13627 2005-06-08  Bruno Haible  <bruno@clisp.org>
13628
13629         * m4/csharpcomp.m4: New file, from GNU gettext.
13630
13631 2005-06-08  Bruno Haible  <bruno@clisp.org>
13632
13633         * lib/csharpcomp.h: New file, from GNU gettext.
13634         * lib/csharpcomp.c: New file, from GNU gettext.
13635         * lib/csharpcomp.sh.in: New file, from GNU gettext.
13636
13637 2005-06-08  Bruno Haible  <bruno@clisp.org>
13638
13639         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
13640         warning on mingw.
13641
13642 2005-06-07  Derek Price  <derek@ximbiot.com>
13643
13644         Sync from CVS.
13645         * lib/glob_.h: Indent nested #ifdef.
13646
13647 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
13648
13649         Sync from coreutils.
13650         Use "file name" when talking about file names, instead of "filename"
13651         or "path", as per the GNU coding standards.
13652         * lib/mkdir-p.c: Renamed from makepath.c.
13653         (make_dir_parents): Renamed from make_path.  All callers changed.
13654         * lib/mkdir-p.h: Likewise.  All includers changed.
13655         * lib/filenamecat.c: Renamed from path-concat.c.
13656         (file_name_concat): Renamed from path_concat.  All callers changed.
13657         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
13658         * lib/filenamecat.h: Likewise.  All includers changed.
13659         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
13660         in comments or local variable names.
13661         * lib/basename.c: Likewise.
13662         * lib/canonicalize.c, canonicalize.h: Likewise.
13663         * lib/dirname.c, dirname.h: Likewise.
13664         * lib/euidaccess.c: Likewise.
13665         * lib/exclude.c: Likewise
13666         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
13667         * lib/fsusage.c, fsuage.h: Likewise.
13668         * lib/fts.c, fts_.h: Likewise.
13669         * lib/getcwd.c: Likewise.
13670         * lib/getloadavg.c: Likewise.
13671         * lib/mkstemp.c: Likewise.
13672         * lib/mountlist.c, mountlist.h: Likewise.
13673         * lib/openat.c, openat.h: Likewise.
13674         * lib/readlink-stub.c: Likewise.
13675         * lib/readutmp.c, readutmp.h: Likewise.
13676         * lib/rename.c: Likewise.
13677         * lib/rmdir.c: Likewise.
13678         * lib/same.c: Likewise.
13679         * lib/savedir.c: Likewise.
13680         * lib/stripslash.c: Likewise.
13681         * lib/tempname.c: Likewise.
13682         * lib/xreadlink.c: Likewise.
13683         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
13684         All uses changed.
13685         * lib/exclude.h: Likewise.
13686
13687         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
13688         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
13689         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
13690         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
13691         * lib/pathmax.h: Include <limits.h> unconditionally, since other
13692         files have been getting away with it for years (MORE/BSD 4.3
13693         is extinct now).
13694         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
13695         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
13696
13697         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
13698         Define to 256, not 255, as per modern POSIX.
13699
13700 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
13701
13702         Sync from coreutils.
13703         Use "file name" when talking about file names, instead of "filename"
13704         or "path", as per the GNU coding standards.
13705         * MODULES.html.sh: mkdir-p renamed from makepath.
13706         filenamecat renamed from path-concat.
13707         * modules/filenamecat: Renamed from modules/path-concat.
13708         (Files): filenamecat.h and filenamecat.c renamed from
13709         path-concat.h and path-concat.c.
13710         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
13711         (Include): filenamecat.h, not path-concat.h.
13712         * modules/mkdir-p: Renamed from modules/makepath.
13713         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
13714         makepath.c.
13715         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
13716         (Include): mkdir-p.h, not makepath.h.
13717
13718 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
13719
13720         Sync from coreutils.
13721         * m4/mkdir-p.m4: Renamed from makepath.m4.
13722         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
13723         Rename files from makepath.c to mkdir-p.c, and from
13724         makepath.h to mkdir-p.h.
13725         * m4/filenamecat.m4: Renamed from path-concat.m4.
13726         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
13727         Rename files from path-concat.c to filenamecat.c,
13728         and from path-concat.h to filenamecat.h.
13729         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
13730         "file name" in local variables or comments.
13731         * m4/rename.m4: Likewise.
13732
13733 2005-06-01  Bruno Haible  <bruno@clisp.org>
13734
13735         * modules/csharpexec: New file.
13736         * MODULES.html.sh (C#): New section.
13737
13738 2005-06-01  Bruno Haible  <bruno@clisp.org>
13739
13740         * m4/csharp.m4: New file, from GNU gettext.
13741         * m4/csharpexec.m4: New file, from GNU gettext.
13742
13743 2005-06-01  Bruno Haible  <bruno@clisp.org>
13744
13745         * lib/csharpexec.h: New file, from GNU gettext.
13746         * lib/csharpexec.c: New file, from GNU gettext.
13747         * lib/csharpexec.sh.in: New file, from GNU gettext.
13748
13749 2005-05-31  Derek Price  <derek@ximbiot.com>
13750             Paul Eggert  <eggert@cs.ucla.edu>
13751
13752         Sync from cvs.
13753         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
13754
13755 2005-05-31  Derek Price  <derek@ximbiot.com>
13756             Paul Eggert  <eggert@cs.ucla.edu>
13757
13758         Sync from cvs.
13759         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
13760
13761 2005-05-29  Derek Price  <derek@ximbiot.com>
13762
13763         * config/srclist.txt (glob_.h, glob.c): Add these files.
13764
13765 2005-05-29  Derek Price  <derek@ximbiot.com>
13766
13767         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
13768         * modules/glob: New file.
13769         * modules/getlogin_r: Add link to POSIX spec in description.
13770
13771 2005-05-29  Derek Price  <derek@ximbiot.com>
13772             Paul Eggert  <eggert@cs.ucla.edu>
13773
13774         * m4/glob.m4: New file.
13775
13776 2005-05-29  Derek Price  <derek@ximbiot.com>
13777             Paul Eggert  <eggert@cs.ucla.edu>
13778
13779         * lib/glob_.h, lib/glob.c: New files.
13780
13781 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
13782
13783         * modules/fts (Files): Remove m4/inttypes-pri.m4.
13784         * modules/fts-lgpl (Depends-on): Remove gettext.
13785
13786 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
13787
13788         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
13789         and don't require gt_INTTYPES_PRI.
13790
13791 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
13792
13793         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
13794
13795         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
13796         the configuration hassle isn't worth it.
13797         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
13798         (LONGEST_MODIFIER, PRIuMAX): Remove.
13799
13800 2005-05-27  Bruno Haible  <bruno@clisp.org>
13801
13802         * lib/getlogin_r.h: Remove second include of <stddef.h>.
13803
13804 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
13805
13806         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
13807         _POSIX_PTHREAD_SEMANTICS for Solaris.
13808
13809 2005-05-25  Derek Price  <derek@ximbiot.com>
13810
13811         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
13812
13813 2005-05-25  Derek Price  <derek@ximbiot.com>
13814             Paul Eggert  <eggert@cs.ucla.edu>
13815
13816         * modules/getlogin_r, m4/getlogin_r.m4: New files.
13817         * lib/getlogin_r.c, getlogin_r.h: New files.
13818
13819 2005-05-25  Bruno Haible  <bruno@clisp.org>
13820             Derek Price  <derek@ximbiot.com>
13821
13822         * lib/getlogin_r.h: Simplify API documentation.
13823
13824 2005-05-23  Derek Price  <derek@ximbiot.com>
13825
13826         * modules/minmax (Files): Add m4/minmax.m4.
13827         (configure.ac): Add gl_MINMAX.
13828
13829 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
13830
13831         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
13832         so that unistd-safer.h (GPL'ed code) need not be included.
13833
13834 2005-05-22  Bruno Haible  <bruno@clisp.org>
13835
13836         * m4/minmax.m4: New file.
13837         Based on a patch by Derek Price <derek@ximbiot.com>.
13838
13839 2005-05-22  Bruno Haible  <bruno@clisp.org>
13840
13841         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
13842         (INT64_MIN): Fix definition.
13843         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
13844
13845         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
13846         NEED_SIGNED_INT_TYPES.
13847
13848         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
13849         HAVE_SYSTEM_INTTYPES.
13850
13851 2005-05-22  Bruno Haible  <bruno@clisp.org>
13852
13853         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
13854         Also include <sys/param.h> if it defines MIN, MAX.
13855         Based on a patch by Derek Price <derek@ximbiot.com>.
13856
13857 2005-05-21  Jim Meyering  <jim@meyering.net>
13858
13859         * modules/fts (Files): Add m4/inttypes-pri.m4.
13860         (Depends-on): Add lstat and remove gettext.  Alphabetize.
13861
13862 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
13863
13864         New fts module.
13865         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
13866         (setup_dir, free_dir): New functions.
13867         (enter_dir, leave_dir): Define trivial
13868         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
13869         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
13870         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
13871         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
13872         Move to fts-cycle.c.
13873         (fts_open): Use setup_dir.
13874         (fts_close): Use free_dir.
13875         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
13876         This adds a label and some gotos, but the alternatives were messier.
13877         Check for memory allocation failure when entering a dir.
13878         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
13879         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
13880         (FTS): New member fts_cycle, that is a union that contains the
13881         old active_dir_ht and cycle_state.  All uses changed to mention
13882         fts_cycle.ht and fts_cycle.state.
13883         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
13884         fts.c, with the following changes:
13885         (setup_dir, free_dir): New functions.
13886         (enter_dir): Now returns bool.  Return true if successful, false
13887         if memory exhausted.  All callers changed.
13888         Do not bother partly cleaning up on
13889         memory allocation failure; that is free_dir's job.
13890         However, free ad if hash_insert fails, to avoid memory leak.
13891         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
13892         fts->fts_options to see which union member to use.
13893
13894 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
13895
13896         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
13897         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
13898
13899 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
13900
13901         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
13902
13903 2005-05-20  Jim Meyering  <jim@meyering.net>
13904
13905         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
13906         Now a macro, to pacify GCC.
13907
13908 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
13909
13910         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
13911         of -1.
13912
13913 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
13914
13915         * lib/chown.c (rpl_chown): Return -1 on failure.
13916
13917 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
13918
13919         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
13920         Don't check for stddef.h.
13921         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
13922         don't use its results.
13923         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
13924         since we include them unconditionally.  Don't require
13925         AM_STDBOOL_H, since stdbool is a prerequisite.
13926         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
13927         since we assume C89 or better.
13928         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
13929         as we don't use their results.
13930         Don't check for fchdir, memmove, memset, strrchr, as we use
13931         them unconditionally.
13932         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
13933         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
13934
13935 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
13936
13937         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
13938         Include <stddef.h> unconditionally, since we assume C89 now.
13939         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
13940         * lib/fts.c: Include fts_.h first, to check interface.
13941         Do not include intprops.h; no longer needed.
13942         Include cycle-check.h and hash.h, since fts_.h no longer does.
13943         Remove unnecessary casts of closedir to void.
13944         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
13945         decide whether to decrement nlinks.
13946         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
13947         (FTS): Use struct hash_table * instead of Hash_table, so that
13948         we no longer need to include hash.h here.
13949
13950 2005-05-18  Jim Meyering  <jim@meyering.net>
13951
13952         * modules/dirfd (License): Change to LGPL.  Most of the code
13953         is already in the public domain.
13954
13955 2005-05-18  Jim Meyering  <jim@meyering.net>
13956
13957         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
13958         Reported by Yoann Vandoorselaere.
13959
13960 2005-05-17  Jim Meyering  <jim@meyering.net>
13961
13962         * m4/fts.m4: New file, from coreutils.
13963
13964 2005-05-17  Jim Meyering  <jim@meyering.net>
13965
13966         * lib/fts.c, lib/fts_.h: New files, from coreutils.
13967
13968 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
13969
13970         Sync from coreutils.
13971         * m4/unlinkdir.m4: New file.
13972
13973 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
13974
13975         Sync from coreutils.
13976         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
13977         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
13978         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
13979         White space changes only.
13980         * lib/makepath.c (make_path): Port to hosts where leading "//" is
13981         special.
13982         * lib/yesno.c: Include getline.h, not ctype.h.
13983         (yesno): Don't remove leading white space; POSIX doesn't allow it.
13984         Use getline to remove arbitrary restriction on response length.
13985
13986 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
13987
13988         * config/srclist-update: Spell out "Street" in FSF postal
13989         mail address; this is the style the FSF seems to prefer.
13990
13991         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
13992         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
13993         this updates FSF postal mail address.
13994
13995         Sync from coreutils.
13996         * modules/unlinkdir: New file.
13997         * modules/yesno (Depends-on): Add getline.
13998         * MODULES.html.sh (File system functions): Add unlinkdir.
13999
14000 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
14001
14002         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
14003         lib/strsep.h:
14004         Change the initial comment to refer to GPL, not LGPL.
14005         gnulib-tool will change it to LGPL as needed.
14006
14007         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
14008         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
14009         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
14010         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
14011         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
14012         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
14013         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
14014         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
14015         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
14016         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
14017         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
14018         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
14019         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
14020         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
14021         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
14022         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
14023         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
14024         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
14025         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
14026         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
14027         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
14028         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
14029         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
14030         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
14031         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
14032         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
14033         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
14034         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
14035         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
14036         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
14037         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
14038         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
14039         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
14040         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
14041         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
14042         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
14043         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
14044         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
14045         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
14046         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
14047         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
14048         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
14049         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
14050         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
14051         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
14052         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
14053         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
14054         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
14055         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
14056         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
14057         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
14058         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
14059         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
14060         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
14061         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
14062         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
14063         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
14064         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
14065         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
14066         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
14067         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
14068         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
14069         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
14070         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
14071         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
14072         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
14073         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
14074         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
14075         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
14076         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
14077         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
14078         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
14079         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
14080         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
14081         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
14082         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
14083         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
14084         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
14085         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
14086         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
14087         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
14088         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
14089         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
14090         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
14091         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
14092         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
14093         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
14094         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
14095         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
14096         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
14097         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
14098         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
14099         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
14100         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
14101         lib/yesno.c, lib/yesno.h:
14102         Update FSF postal mail address.
14103
14104 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
14105
14106         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
14107         tests/test-memmem.c, tests/test-stpncpy.c:
14108         Update FSF postal mail address.
14109
14110 2005-05-13  Bruno Haible  <bruno@clisp.org>
14111
14112         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
14113         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
14114         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
14115         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
14116         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
14117         Add support for 64-bit integers in the MSVC compiler.
14118
14119 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
14120
14121         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
14122
14123 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
14124
14125         * gnulib-tool (func_import): Sort and uniquify recommended includes.
14126
14127 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
14128
14129         * doc/getdate.texi (General date syntax): Don't say that date
14130         date --iso-8601=ns generates acceptable dates; it doesn't yet.
14131         Problem reported by Nic Ferrier.
14132
14133 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14134
14135         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
14136         specified in ai_socktype. Fix invalid ai_protocol
14137         check. ai_protocol is usually set to 0 or depending on
14138         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
14139         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
14140         ai_socktype / ai_protocol in the returned addrinfo structure.
14141
14142 2005-05-10  Simon Josefsson  <jas@extundo.com>
14143
14144         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
14145         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
14146
14147 2005-05-10  Karl Berry  <karl@gnu.org>
14148
14149         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
14150         (from http://www.gnu.org/licenses).
14151         * doc/COPYING.LIB: also rename to COPYING.LESSER.
14152         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
14153         fdl.texi suffices.
14154
14155 2005-05-10  Karl Berry  <karl@gnu.org>
14156
14157         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
14158         (COPYING.DOC): remove.
14159
14160         * config/srclist-update: new FSF address.
14161
14162 2005-05-10  Derek Price  <derek@ximbiot.com>
14163
14164         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
14165         possible.
14166
14167 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14168             Bruno Haible  <bruno@clisp.org>
14169
14170         * modules/inet_ntop: New file.
14171         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
14172         inet_ntop.
14173
14174 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14175             Bruno Haible  <bruno@clisp.org>
14176
14177         * m4/inet_ntop.m4: New file.
14178
14179 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14180             Bruno Haible  <bruno@clisp.org>
14181
14182         * lib/inet_ntop.h: New file.
14183         * lib/inet_ntop.c: New file, from glibc with modifications.
14184
14185 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
14186
14187         * modules/time_r (License): Change to LGPL.
14188         * modules/extensions (License): Change to LGPL.  Actually,
14189         the license is more permissive than that, but currently gnulib-tool
14190         doesn't know how to handle more-permissive licenses.
14191
14192         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
14193         Problem reported by Dave Love.
14194
14195 2005-05-08  Jim Meyering  <jim@meyering.net>
14196
14197         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
14198         blank.
14199
14200 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
14201
14202         * modules/argmatch (Depends-on): Add stdbool.
14203         * modules/backupfile (Depends-on): Likewise.
14204         * modules/chdir-long (Depends-on): Likewise.
14205         * modules/closeout (Depends-on): Likewise.
14206         * modules/cycle-check (Depends-on): Likewise.
14207         * modules/dirname (Depends-on): Likewise.
14208         * modules/fnmatch (Depends-on): Likewise.
14209         * modules/fsusage (Depends-on): Likewise.
14210         * modules/fwriteerror (Depends-on): Likewise.
14211         * modules/getcwd (Depends-on): Likewise.
14212         * modules/getloadavg (Depends-on): Likewise.
14213         * modules/hard-locale (Depends-on): Likewise.
14214         * modules/makepath (Depends-on): Likewise.
14215         * modules/mountlist (Depends-on): Likewise.
14216         * modules/nanosleep (Depends-on): Likewise.
14217         * modules/posixtm (Depends-on): Likewise.
14218         * modules/quotearg (Depends-on): Likewise.
14219         * modules/readtokens (Depends-on): Likewise.
14220         * modules/readtokens0 (Depends-on): Likewise.
14221         * modules/readutmp (Depends-on): Likewise.
14222         * modules/save-cwd (Depends-on): Likewise.
14223         * modules/strftime (Depends-on): Likewise.
14224         * modules/userspec (Depends-on): Likewise.
14225         * modules/utimecmp (Depends-on): Likewise.
14226         * modules/xgetcwd (Depends-on): Likewise.
14227         * modules/xnanosleep (Depends-on): Likewise.
14228         * modules/xstrtod (Depends-on): Likewise.
14229         * modules/yesno (Depends-on): Likewise.
14230
14231 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
14232
14233         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
14234         needless checks.
14235
14236 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
14237
14238         Merge from coreutils.  Among other things,
14239         add bulletproofing for cases where stdin, stdout, or stderr are closed.
14240         * lib/fd-safer.c: New file.
14241         * lib/fcntl-safer.h, open-safer.c: Remove.
14242         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
14243         * lib/dup-safer.c: Include unistd-safer.h first.
14244         Don't include errno.h.
14245         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
14246         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
14247         * lib/file-type.c: Rely on file-type.h change.
14248         * lib/getloadavg.c: Include unistd-safer.h.
14249         (getloadavg): Use safer open.
14250         * lib/getusershell.c: Include "stdio-safer.h".
14251         (getusershell): Use safer fopen.
14252         * lib/long-options.c (long_options): Use NULL rather than 0.
14253         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
14254         'free'.
14255         * lib/modechange.c: Likewise.
14256         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
14257         (MODE_DONE): New constant.
14258         (struct mode_change): Remove 'next' member.
14259         (make_node_op_equals): New function; like the old one of the
14260         same name, except it allocates an array.
14261         (mode_compile, mode_create_from_ref): Use it.
14262         (mode_compile): Allocate result as an array, not a linked list.
14263         Parse octal string ourself, so that we catch mistakes like "+0".
14264         (mode_adjust): Arg is an array, not a linked list.
14265         * lib/modechange.c: Include stat-macros.h, xalloc.h.
14266         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
14267         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
14268         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
14269         Remove.  This is now stat-macros.h's job.
14270         (talloc): Remove.  All callers replaced by xalloc, so that
14271         our invokers don't have to worry about reporting memory failures.
14272         (make_node_op_equals): Remove.
14273         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
14274         New constants.
14275         (struct mode_change): Moved here from modechange.h.
14276         (mode_append_entry): Remove.
14277         (mode_compile): Remove MASKED_OPS arg, since it encouraged
14278         apps to have incorrect behavior.  Use simpler algorithm for head
14279         and tail.  Don't futz with umask; that's now the job of mode_adjust.
14280         Detect more invalid usages rather than having somewhat-random behavior.
14281         Don't insert an "a=" action, as that leads to incorrect behavior.
14282         (mode_compile, mode_create_from_ref): Return NULL on error instead
14283         of an enum, since now there's only one way to have an error.  All
14284         callers changed.
14285         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
14286         at the correct time.  Simplify calculation of "+u" and its ilk.
14287         Don't mishandle "+X".
14288         (mode_free): Remove "register" and localize decls.
14289         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
14290         (struct mode_change): Move to modechange.c; callers don't
14291         need to see this stuff.
14292         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
14293         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
14294         (mode_change, mode_adjust): Reflect the new signatures noted above.
14295         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
14296         that might redefine system include files.
14297         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
14298         (my_usleep): Use NULL rather than (void *) 0.
14299         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
14300         Use siginterrupt to specify that system calls should be interrupted.
14301         (rpl_nanosleep): Move initialization of suspended closer to call of
14302         my_usleep.
14303         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
14304         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
14305         (desirable_utmp_entry): New function.
14306         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
14307         using x2nrealloc, to simplify logic.
14308         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
14309         size calculation.  Do not assume utmp file is a regular file.
14310         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
14311         (READ_UTMP_CHECK_PIDS): New constant.
14312         * lib/save-cwd.c: Include unistd-safer.h.
14313         (save_cwd): Use fd_safer.
14314         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
14315         [!_LIBC] Include "stat-macros.h" instead.
14316         * lib/unistd-safer.h (fd_safer): New decl.
14317
14318 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
14319
14320         * modules/getloadavg (Depends-on): Add unistd-safer.
14321         * modules/getusershell (Depends-on): Add stdio-safer.
14322         * modules/lstat (Depends-on): Remove xalloc.
14323         * modules/mkstemp (Depends-on): Add stat-macros.
14324         * modules/modechange (Depends-on): Remove xstrtol.
14325         Add stat-macros, xalloc.
14326         * modules/save-cwd (Depends-on): Add unistd-safer.
14327         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
14328         * modules/unistd-safer (Files): Add lib/fd-safer.c
14329         (Makefile.am): Remove lib_SOURCES.
14330
14331         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
14332         Remove fcntl-safer; unistd-safer supersedes it.
14333
14334 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
14335
14336         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
14337         AC_HEADER_STAT.
14338         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
14339         (gl_PREREQ_CHOWN): Remove.
14340         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
14341         it.  Don't require AC_HEADER_STAT.
14342         (gl_PREREQ_LSTAT): Remove.
14343         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
14344         Don't require AC_HEADER_STAT.
14345         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
14346         (gl_PREREQ_RMDIR): Remove.
14347         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
14348         mention stat-macros.h or AC_HEADER_STAT, since we'll make
14349         the stat-macros module a prerequisite.
14350         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
14351         * m4/filemode.m4 (gl_FILEMODE): Likewise.
14352         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
14353         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
14354         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
14355         variable names.
14356         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
14357         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
14358         variable prefixes.
14359         * m4/fcntl-safer.m4: Remove.
14360         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
14361         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
14362         Invoke gl_PREREQ_FD_SAFER.
14363         (gl_PREREQ_FD_SAFER): New macro.
14364         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
14365         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
14366         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
14367         Remove duplicate call to AC_LIBOBJ(readutmp).
14368         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
14369
14370         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
14371         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
14372
14373 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
14374
14375         * MODULES.html.sh (Misc): Add byteswap.
14376
14377 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
14378
14379         * modules/getcwd (Depends-on): Add extensions.
14380         * modules/openat (Depends-on): Likewise.
14381
14382 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
14383
14384         * modules/byteswap: New file.
14385
14386 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
14387
14388         * m4/byteswap.m4: New file.
14389
14390 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
14391
14392         * lib/byteswap_.h: New file.
14393
14394 2005-04-25  Karl Berry  <karl@gnu.org>
14395
14396         * m4/gettext.m4: Update from GNU gettext 0.14.4.
14397
14398 2005-04-25  Albert Chin  <china@thewrittenword.com>
14399
14400         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
14401         Toolkit C bug.
14402
14403 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
14404
14405         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
14406         (func_ln_if_changed) Remove forcibly for no error message
14407         in case file does not exist.
14408
14409 2005-04-19  Simon Josefsson  <jas@extundo.com>
14410
14411         * gnulib-tool (Options): Make --symlink mean --symbolic.
14412
14413 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
14414
14415         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
14416
14417 2005-04-16  Simon Josefsson  <jas@extundo.com>
14418
14419         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
14420
14421 2005-04-15  Simon Josefsson  <jas@extundo.com>
14422
14423         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
14424
14425 2005-04-15  Simon Josefsson  <jas@extundo.com>
14426
14427         * gnulib-tool: Rename --symlink to --symbolic.
14428
14429 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
14430
14431         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
14432         symbolic links to files instead of copying/moving.  Add --aux-dir,
14433         specifying directory relative --dir where auxiliary build tools
14434         are placed.
14435
14436 2005-04-14  Bruno Haible  <bruno@clisp.org>
14437
14438         * modules/allocsa (License): Change to LGPL.
14439         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
14440
14441 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
14442
14443         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
14444         that "UTC +1 second" continues to work.  Problem reported
14445         by Dmitry V. Levin.
14446         (relunit_snumber): New rule.
14447         (relunit): Use it.
14448
14449 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
14450
14451         * lib/getdate.y (universal_time_zone_table): New constant.
14452         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
14453         universal_time_zone_table.
14454         (lookup_zone): Prefer universal_time_zone_table to
14455         local_time_zone_table, so that "GMT" time stamps are allowed in
14456         London during the summer.  Problem reported by Ian Abbott.
14457
14458 2005-04-12  Jim Meyering  <jim@meyering.net>
14459
14460         * lib/human.c (humblock): Set *options even when returning due to
14461         xstrtoumax conversion failure.  Thanks to a used-uninitialized
14462         warning from gcc-4.
14463
14464 2005-04-09  Jim Meyering  <jim@meyering.net>
14465
14466         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
14467         -Wuninitialized: initialize tm0.tm_year.
14468
14469 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
14470
14471         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
14472         count, since there's no maximum.  All uses changed.
14473         Add member dsts_seen.
14474         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
14475         not being INT_MAX.
14476         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
14477         Use pc_rels_seen to decide whther a date is absolute.
14478
14479         * lib/getdate.y (number): Don't overwrite year.
14480         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
14481         check.
14482
14483 2005-04-02  Simon Josefsson  <jas@extundo.com>
14484
14485         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
14486         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
14487
14488 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
14489
14490         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
14491         where no absolute path name can be longer than PATH_MAX.
14492
14493 2005-03-27  Jim Meyering  <jim@meyering.net>
14494
14495         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
14496
14497 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
14498
14499         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
14500         "one's complement" -> "ones' complement" in comment, as per Knuth.
14501         "value of type" -> "type or expression" in comment.
14502         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
14503
14504 2005-03-26  Jim Meyering  <jim@meyering.net>
14505
14506         Comment nits.
14507         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
14508         Correct typos: s/or/of/.
14509
14510 2005-03-26  Jim Meyering  <jim@meyering.net>
14511
14512         * modules/check-include-files: Move to ../ and rename to...
14513         * check-module: ...this.
14514
14515 2005-03-25  Jim Meyering  <jim@meyering.net>
14516
14517         * modules/xvasprintf (Files): Add xalloc.h.
14518
14519 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
14520
14521         * modules/gettext (Files): config/config.rpath ->
14522         build-aux/config.rpath
14523         * modules/iconv (Files): Likewise.
14524         Problem reported by Oskar Liljeblad.
14525
14526 2005-03-23  Jim Meyering  <jim@meyering.net>
14527
14528         * modules/check-include-files: New script to check for
14529         missing dependencies, multiple includes, etc.
14530
14531         * modules/c-strtold (Depends-on): Add xalloc.
14532         * modules/c-strtod (Depends-on): Add xalloc.
14533         * modules/hash (Depends-on): Add xalloc.
14534         (Files): Remove lib/xalloc.h.
14535
14536         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
14537         * modules/userspec (Files): Add lib/inttostr.h.
14538
14539 2005-03-23  Jim Meyering  <jim@meyering.net>
14540
14541         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
14542
14543 2005-03-22  Jim Meyering  <jim@meyering.net>
14544
14545         * modules/stat-macros: New module.
14546         * modules/canonicalize, modules/euidaccess, modules/file-type,
14547         * modules/filemode, modules/lchown, modules/makepath,
14548         * modules/rmdir, modules/stat: Depend on new stat-macros module
14549         rather than listing lib/stat-macros.h manually.
14550         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
14551
14552 2005-03-22  Jim Meyering  <jim@meyering.net>
14553
14554         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
14555
14556 2005-03-22  Bruno Haible  <bruno@clisp.org>
14557
14558         * config/srclist.txt: Replace target directory 'config' with
14559         'build-aux'.
14560         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
14561         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
14562         ../build-aux/.
14563
14564 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
14565
14566         * modules/chdir-long (Depends-on): Add mempcpy.
14567
14568         * modules/acl, modules/backupfile, modules/c-strtod,
14569         modules/c-strtold, modules/canon-host, modules/canonicalize,
14570         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
14571         modules/exclude, modules/exitfail, modules/file-type,
14572         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
14573         modules/getdate, modules/getline, modules/getpagesize,
14574         modules/getpass, modules/getugroups, modules/group-member,
14575         modules/hard-locale, modules/hash, modules/human, modules/idcache,
14576         modules/inttostr, modules/long-options, modules/makepath,
14577         modules/md5, modules/memcasecmp, modules/memcoll,
14578         modules/modechange, modules/mountlist, modules/path-concat,
14579         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
14580         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
14581         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
14582         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
14583         modules/strftime, modules/strndup, modules/strverscmp,
14584         modules/timespec, modules/unlocked-io, modules/userspec,
14585         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
14586         modules/yesno:
14587         Remove lib_SOURCES line from Makefile.am section, as this is now
14588         done automatically by the corresponding Autoconf macro.
14589
14590 2005-03-21  Jim Meyering  <jim@meyering.net>
14591
14592         Changes imported from coreutils.
14593
14594         * lib/cycle-check.c: Don't include xalloc.h.
14595
14596         * lib/path-concat.c: Don't include assert.h.
14597         (path_concat): Remove assertion that would have triggered
14598         for ABASE starting with more than one slash.
14599         Reported by Andreas Schwab.
14600
14601         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
14602         properly when ABASE is an absolute file name.
14603         Correct the description of this function.
14604         Include <assert.h>.
14605         Add an assertion and a test driver.
14606         This fixes a bug introduced on 2004-07-02.
14607         Andreas Schwab reported the resulting failure of cp --parents:
14608         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
14609
14610 2005-03-21  Jim Meyering  <jim@meyering.net>
14611
14612         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
14613         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
14614
14615 2005-03-21  Jim Meyering  <jim@meyering.net>
14616         and  Paul Eggert  <eggert@cs.ucla.edu>
14617
14618         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
14619         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
14620         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
14621         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
14622         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
14623         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
14624         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
14625         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
14626         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
14627         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
14628         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
14629         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
14630         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
14631         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
14632         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
14633         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
14634         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
14635         for these modules.
14636
14637 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
14638
14639         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
14640         (which shouldn't happen), generate nothing instead of returning 0
14641         immediately, so that nstrftime (NULL, ...) doesn't return 0.
14642
14643 2005-03-16  Bruno Haible  <bruno@clisp.org>
14644
14645         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
14646         HAVE_LONGLONG_64BIT.
14647
14648 2005-03-16  Bruno Haible  <bruno@clisp.org>
14649
14650         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
14651         HAVE_LONGLONG_64BIT.
14652
14653 2005-03-16  Bruno Haible  <bruno@clisp.org>
14654
14655         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
14656         HAVE_LONGLONG_64BIT.
14657
14658 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
14659
14660         * lib/strftime.c (my_strftime): Prepend space to format so that we can
14661         reliably distinguish strftime failure from empty output on POSIX
14662         hosts.
14663
14664 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
14665
14666         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
14667         (iconv_string): Don't guess a size-zero buffer, as that might cause
14668         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
14669         result would be 'too large', where 'too large' is (heuristically)
14670         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
14671         overflow concerns.  This will prevent some unwanted malloc failures
14672         when the inputs are very large.
14673
14674 2005-03-15  Karl Berry  <karl@gnu.org>
14675
14676         * config/srclist.txt (config.rpath): from gettext.
14677         * config/config.rpath: update.
14678
14679 2005-03-15  Bruno Haible  <bruno@clisp.org>
14680
14681         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
14682         to 'negate'.
14683
14684         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
14685         variable.
14686
14687         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
14688         results.
14689
14690 2005-03-14  Simon Josefsson  <jas@extundo.com>
14691
14692         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
14693         <fx@gnu.org>.
14694
14695 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
14696
14697         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
14698         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
14699         intprops.h.
14700         * lib/strtol.c: Likewise.
14701
14702 2005-03-14  Jim Meyering  <jim@meyering.net>
14703
14704         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
14705         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
14706         to be nonzero so that we (and caller) can detect the difference
14707         between a valid zero-length expansion and an error return, even
14708         when the underlying strftime fails before writing anything into
14709         that location.
14710
14711 2005-03-14  Bruno Haible  <bruno@clisp.org>
14712
14713         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
14714         Update from GNU gettext 0.14.3.
14715
14716 2005-03-10  Jim Meyering  <jim@meyering.net>
14717
14718         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
14719
14720 2005-03-10  Jim Meyering  <jim@meyering.net>
14721
14722         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
14723         so that this module works on systems without fchdir.
14724
14725 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
14726
14727         Factor int-properties macros into a single file, except for
14728         glibc-related files.
14729         * lib/intprops.h: New file.
14730         * lib/getloadavg.c: Include it instead of limits.h.
14731         (INT_STRLEN_BOUND): Remove.
14732         * lib/human.c: Include intprops.h.
14733         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
14734         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
14735         302/1000.
14736         * lib/inttostr.h: Include intprops.h instead of limits.h.
14737         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
14738         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
14739         for consistency with intprops.h.
14740         (time_t_is_integer, twos_complement_arithmetic): Use them.
14741         * lib/sig2str.h: Include <signal.h>, intprops.h.
14742         (INT_STRLEN_BOUND): Remove.
14743         * lib/strftime.c (TYPE_SIGNED): Remove.
14744         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
14745         * lib/strtol.c: Adjust comments to match intprops.h.
14746         * lib/userspec.c: Include intprops.h.
14747         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
14748         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
14749         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
14750         instead of rolling our own expressions.
14751         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
14752
14753         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
14754         instead of int.
14755         (my_strftime): Do not mishandle years close to INT_MAX, by doing
14756         the right thing even if adding 1900 would overflow.  Similarly
14757         for tm_mon + 1 and tm_yday + 1.
14758         Make %Y always equivalent to %C%y, and similarly for %G and %g.
14759         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
14760         (DO_SIGNED_NUMBER): New macro.
14761         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
14762
14763 2005-03-07  Bruno Haible  <bruno@clisp.org>
14764
14765         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
14766
14767 2005-03-07  Bruno Haible  <bruno@clisp.org>
14768
14769         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
14770
14771 2005-03-04  Derek R. Price  <derek@ximbiot.com>
14772
14773         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
14774         (func_import): Only replace files via --import when they have actually
14775         changed.
14776
14777 2005-03-03  Derek R. Price  <derek@ximbiot.com>
14778
14779         * m4/mmap-anon.m4: New file.
14780         * m4/pagealign_alloc.m4: New file.
14781
14782 2005-03-03  Derek R. Price  <derek@ximbiot.com>
14783             Bruno Haible  <bruno@clisp.org>
14784
14785         * modules/pagealign_alloc: New file.
14786         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
14787
14788 2005-03-03  Derek R. Price  <derek@ximbiot.com>
14789             Bruno Haible  <bruno@clisp.org>
14790
14791         * lib/pagealign_alloc.h: New file.
14792         * lib/pagealign_alloc.c: New file.
14793
14794 2005-03-03  Bruno Haible  <bruno@clisp.org>
14795
14796         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
14797         Use an all-permissive copyright notice, recommended by RMS.
14798
14799 2005-03-02  Bruno Haible  <bruno@clisp.org>
14800
14801         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
14802         of AIX, the replacement has to be done only after <string.h> is
14803         included, therefore not in config.h. stpncpy.h does the replacement,
14804         and stpncpy.c uses it.
14805
14806 2005-03-02  Bruno Haible  <bruno@clisp.org>
14807
14808         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
14809         stpncpy.c uses it.
14810
14811 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
14812
14813         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
14814         The workaround isn't strictly needed for POSIX conformance, and
14815         it's too much of a pain to configure and maintain.  We'll ask
14816         people to fix their kernels instead.
14817         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
14818         (NANOSLEEP_BUG_WORKAROUND): Remove.
14819         (xnanosleep): Remove the workaround.
14820
14821 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
14822
14823         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
14824         Reported by Derek Price.
14825         (Include): Add "timespec.h".
14826
14827         * modules/xnanosleep (Depends-on): Remove gethrxtime.
14828
14829 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
14830
14831         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
14832         to detect nanosleep bug.
14833
14834 2005-03-01  Bruno Haible  <bruno@clisp.org>
14835
14836         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
14837
14838 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
14839
14840         * modules/gethrxtime: New file.
14841         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
14842         (Depends-on): Add gethrxtime.
14843         (configure.ac): Add gl_XNANOSLEEP.
14844         (Makefile.am): Remove lib_SOURCES line.
14845
14846 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
14847
14848         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
14849         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
14850
14851 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
14852
14853         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
14854         * lib/timespec.h (gettime): Return void, since it always
14855         succeeds now.  All uses changed.
14856         * lib/gettime.c (gettime) Likewise.
14857         [HAVE_NANOTIME]: Prefer nanotime.
14858         Assume gettimeofday succeeds, as POSIX requires.
14859         Assime time () succeeds, since other code already does.
14860         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
14861         (timespec_subtract): Remove.
14862         (NANOSLEEP_BUG_WORKAROUND): New constant.
14863         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
14864         things considerably.  Use it only on GNU/Linux hosts, since the
14865         workaround shouldn't be needed elsewhere.
14866
14867 2005-02-24  Bruno Haible  <bruno@clisp.org>
14868
14869         * modules/gettext (Files): Add m4/glibc2.m4.
14870
14871 2005-02-24  Bruno Haible  <bruno@clisp.org>
14872
14873         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
14874         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
14875         * m4/progtest.m4:
14876         Update from GNU gettext 0.14.2.
14877         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
14878
14879 2005-02-24  Bruno Haible  <bruno@clisp.org>
14880
14881         * lib/localcharset.c: Update from GNU gettext 0.14.2.
14882         * lib/config.charset: Update from GNU gettext 0.14.2.
14883
14884 2005-02-24  Bruno Haible  <bruno@clisp.org>
14885
14886         * lib/gettext.h: Update from GNU gettext 0.14.2.
14887
14888 2005-02-23  Simon Josefsson  <jas@extundo.com>
14889
14890         * m4/iconvme.m4: New file.
14891
14892 2005-02-23  Jim Meyering  <jim@meyering.net>
14893
14894         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
14895         change.
14896         Thanks to Bruno Haible for catching it.
14897
14898 2005-02-22  Simon Josefsson  <jas@extundo.com>
14899
14900         * modules/iconvme: New file.
14901
14902         * MODULES.html.sh: Add iconvme.
14903
14904 2005-02-22  Simon Josefsson  <jas@extundo.com>
14905
14906         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
14907
14908 2005-02-22  Simon Josefsson  <jas@extundo.com>
14909
14910         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
14911
14912 2005-02-22  Jim Meyering  <jim@meyering.net>
14913
14914         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
14915         s/ifndef/ifdef/.
14916
14917 2005-02-20  Neil Conway  <neilc@samurai.com>
14918
14919         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
14920         returned by OSX/Darwin if the specified buffer is not large
14921         enough for the hostname.
14922
14923 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
14924
14925         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
14926         pass it to _help, otherwise the latter coredumps trying to
14927         dereference state.root_argp.
14928
14929 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
14930
14931         * modules/chdir-long (Depends-on): Add memrchr.
14932         * modules/memrchr (Files): Add lib/memrchr.h.
14933         (Include): "memrchr.h".
14934
14935 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
14936
14937         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
14938
14939 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
14940
14941         * lib/memrchr.h: New file.
14942         * lib/chdir-long.c: Include it.
14943         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
14944         Don't bother including stddef.h.
14945
14946 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
14947
14948         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
14949         inclusion.
14950         Include <sys/types.h>, for dev_t.
14951         (ME_DUMMY, ME_REMOTE): Move from here....
14952         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
14953         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
14954         Dmitry V. Levin.
14955         Include mountlist.h first, to test the interface.
14956
14957 2005-01-29  Bruno Haible  <bruno@clisp.org>
14958
14959         * lib/progname.c (program_name): Initialize.
14960         Needed when linking statically on MacOS X.
14961
14962 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
14963
14964         Sync from coreutils.
14965         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
14966         (Depends-on): Add c-strtod.
14967         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
14968
14969 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
14970
14971         Sync from coreutils.
14972         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
14973
14974         Remove files that are specific to coreutils.
14975         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
14976
14977 2005-01-28  Bruno Haible  <bruno@clisp.org>
14978
14979         * modules/javacomp: New file.
14980         * MODULES.html.sh (Java): Add javacomp.
14981
14982 2005-01-28  Bruno Haible  <bruno@clisp.org>
14983
14984         * m4/javacomp.m4: New file, from GNU gettext.
14985
14986 2005-01-28  Bruno Haible  <bruno@clisp.org>
14987
14988         * lib/javacomp.sh.in: New file, from GNU gettext.
14989         * lib/javacomp.h: New file, from GNU gettext.
14990         * lib/javacomp.c: New file, from GNU gettext.
14991
14992 2005-01-26  Simon Josefsson  <jas@extundo.com>
14993
14994         * lib/gai_strerror.c: Use GPL in header.
14995
14996 2005-01-26  Bruno Haible  <bruno@clisp.org>
14997
14998         * modules/javaexec: New file.
14999         * MODULES.html.sh (Java): Add javaexec.
15000
15001 2005-01-26  Bruno Haible  <bruno@clisp.org>
15002
15003         * m4/javaexec.m4: New file, from GNU gettext.
15004
15005 2005-01-26  Bruno Haible  <bruno@clisp.org>
15006
15007         * lib/javaexec.sh.in: New file, from GNU gettext.
15008         * lib/javaexec.h: New file, from GNU gettext.
15009         * lib/javaexec.c: New file, from GNU gettext.
15010
15011 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
15012
15013         * modules/lchown (Depends-on): Remove lchown.h
15014
15015 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
15016
15017         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
15018         must be defined if the header file was not found, in order
15019         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
15020
15021 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
15022
15023         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
15024         initializers for struct pentry_state.
15025         (__argp_error): Check return value of __asprintf
15026         (__argp_failure): Translate error message
15027
15028         * lib/argp-parse.c: Removed braces around the expansion of N_()
15029
15030 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
15031
15032         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
15033         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
15034         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
15035         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
15036         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
15037         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
15038         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
15039         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
15040         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
15041         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
15042         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
15043         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
15044         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
15045         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
15046         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
15047         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
15048         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
15049         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
15050         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
15051         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
15052         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
15053         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
15054         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
15055         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
15056         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
15057         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
15058         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
15059         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
15060         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
15061         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
15062         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
15063         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
15064         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
15065         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
15066         xstrtol.m4, xstrtoumax.m4, yesno.m4:
15067         Use an all-permissive copyright notice, recommended by RMS.
15068
15069 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
15070
15071         * modules/chdir-long (Depends-on): Remove mempcpy.
15072
15073 2005-01-21  Jim Meyering  <jim@meyering.net>
15074
15075         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
15076         same value as for Solaris 9.
15077
15078         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
15079         component length.  This included changing the parameter to be
15080         of type `char *' rather than `char const *'.
15081         * lib/chdir-long.h (chdir_long): Update prototype.
15082
15083         * lib/openat.c (fdopendir, fstatat): New functions.
15084         * lib/openat.h: Include headers required for use of DIR and struct
15085         stat.
15086         [AT_SYMLINK_NOFOLLOW]: Define.
15087         (fdopendir, fstatat): Add prototypes.
15088
15089 2005-01-21  Bruno Haible  <bruno@clisp.org>
15090
15091         * modules/classpath: New file.
15092         * MODULES.html.sh (Java): Add classpath.
15093
15094 2005-01-21  Bruno Haible  <bruno@clisp.org>
15095
15096         * lib/classpath.h: New file, from GNU gettext.
15097         * lib/classpath.c: New file, from GNU gettext.
15098
15099 2005-01-20  Simon Josefsson  <jas@extundo.com>
15100
15101         * modules/version-etc-fsf: New file.
15102
15103 2005-01-20  Simon Josefsson  <jas@extundo.com>
15104
15105         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
15106         * lib/version-etc.c: Remove version_etc_copyright.
15107         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
15108         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
15109
15110 2005-01-20  Simon Josefsson  <jas@extundo.com>
15111
15112         * lib/base64.h (isbase64): Add.
15113
15114         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
15115         using a unsigned prototype, don't inline.
15116         (base64_decode): Use it.
15117
15118 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
15119
15120         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
15121         it.
15122
15123 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
15124
15125         * lib/save-cwd.c (save_cwd): Remove code to support the case
15126         where fchdir is missing or flaky.
15127
15128 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
15129
15130         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
15131
15132 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
15133
15134         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
15135         AC_LIBSOURCES now does this.
15136         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
15137         with new ullong_max module.
15138
15139 2005-01-19  Bruno Haible  <bruno@clisp.org>
15140
15141         * modules/sh-quote: New file.
15142         * MODULES.html.sh (Executing programs): Add sh-quote.
15143
15144 2005-01-19  Bruno Haible  <bruno@clisp.org>
15145
15146         * lib/sh-quote.h: New file, from GNU gettext.
15147         * lib/sh-quote.c: New file, from GNU gettext.
15148
15149 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
15150
15151         Merge from coreutils.
15152         * m4/ullong_max.m4: New file.
15153         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
15154         (gl_MACROS): Assume localeconv exists.
15155
15156 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
15157
15158         Merge changes from coreutils, as described below in several
15159         changelogs dated today.
15160
15161         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
15162         (O_DIRECTORY): Remove; not needed here, since "." must be
15163         a directory.  All uses removed.
15164         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
15165         universal on Suns, and we also need to test for IRIX.
15166         Revamp code to use 'if' rather than '#if'.
15167         Avoid unnecessary comparison of cwd->desc to 0.
15168
15169         * lib/utimens.c (futimens): Robustify the previous patch, by checking
15170         for known valid error numbers rather than observed invalid ones.
15171
15172 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
15173
15174         * modules/ullong_max: New file.
15175
15176         * modules/chdir-long, modules/openat: New files.
15177         * modules/save-cwd (Depends-on): Depend on chdir-long.
15178         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
15179
15180 2005-01-18  Jim Meyering  <jim@meyering.net>
15181
15182         Merge from coreutils.
15183         * m4/chdir-long.m4, m4/openat.m4: New files.
15184         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
15185         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
15186         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
15187         is sane and DOES follow symlinks.  Besides, testing 20 different
15188         systems found no broken chown implementations.
15189         Prompted by a change in rsync's copy of this macro.
15190         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
15191
15192         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
15193
15194         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
15195         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
15196         NULL-means-set-to-current-time semantics.
15197         Remove temporary file immediately, rather than waiting
15198         for configure's at-exit trap code to do it.
15199
15200 2005-01-18  Jim Meyering  <jim@meyering.net>
15201
15202         * lib/version-etc.c (version_etc_copyright): Update copyright date.
15203
15204         * lib/utimens.c (futimens): Account for the fact that futimes
15205         can also fail with errno == ENOSYS or errno == ENOENT.
15206         Patch from Dmitry V. Levin.
15207
15208         Change the name of the robust chdir function from chdir to chdir_long.
15209         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
15210         (restore_cwd): Use chdir_long, not chdir.
15211         * lib/chdir-long.c: Renamed from chdir.c.
15212         * lib/chdir-long.h: Renamed from chdir.h.
15213         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
15214         Hurd.
15215
15216 2005-01-18  Bruno Haible  <bruno@clisp.org>
15217
15218         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
15219         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
15220         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
15221         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
15222         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
15223         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
15224         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
15225         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
15226         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
15227         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
15228         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
15229         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
15230         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
15231         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
15232         Use an all-permissive copyright notice, recommended by RMS.
15233
15234 2005-01-18  Bob Proulx  <bob@proulx.com>
15235
15236         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
15237         simplify offsetof() macro construct to avoid compile failure with
15238         native HP-UX 11.0 ANSI C compiler.
15239
15240 2005-01-17  Bruno Haible  <bruno@clisp.org>
15241
15242         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
15243         redundant because stpncpy.m4 takes care of it.
15244
15245 2005-01-17  Bruno Haible  <bruno@clisp.org>
15246
15247         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
15248
15249 2005-01-17  Bruno Haible  <bruno@clisp.org>
15250
15251         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
15252         used.
15253
15254 2005-01-17  Bruno Haible  <bruno@clisp.org>
15255
15256         * lib/fwriteerror.h (fwriteerror): Change specification to include
15257         fclose.
15258         * lib/fwriteerror.c: Include <stdbool.h>.
15259         (fwriteerror): At the end, close the file stream. Record whether
15260         stdout was already closed.
15261
15262 2005-01-17  Bruno Haible  <bruno@clisp.org>
15263
15264         * lib/execute.c (environ): Declare if needed.
15265         * lib/pipe.c (environ): Likewise.
15266         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
15267
15268 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
15269
15270         * modules/argp: Depend on vsnprintf
15271
15272 2005-01-10  Jim Meyering  <jim@meyering.net>
15273
15274         * modules/closeout (Depends-on): Add atexit.
15275
15276 2005-01-06  Bruno Haible  <bruno@clisp.org>
15277
15278         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
15279
15280 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
15281
15282         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
15283         definitions to be after all include files, to avoid collisions.
15284         Problem reported by Bob Proulx.
15285
15286 2005-01-04  Jim Meyering  <jim@meyering.net>
15287
15288         Changes imported from coreutils.
15289         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
15290         as the mkstemp template, use a temporary directory and an
15291         8.3-friendly template to avoid trouble on systems like DJGPP.
15292         Reported by Juan M. Guerrero via Stepan Kasal.
15293         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
15294         close. Remove the temporary directory right away, rather than waiting
15295         for configure's at-exit trap code to do it.
15296         Suggestion from Stepan Kasal.
15297
15298 2005-01-01  Simon Josefsson  <jas@extundo.com>
15299
15300         * gnulib-tool: Print #include directives when --import'ing.
15301
15302 2004-12-28  Simon Josefsson  <jas@extundo.com>
15303
15304         * tests/test-base64.c: Include required header files.  Remove
15305         unused variables.
15306
15307 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
15308
15309         * modules/error (Depends-on): Remove gettext.
15310
15311 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
15312
15313         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
15314         not needed.  This removes a dependency on the gettext module.
15315         [defined _LIBC]: Do not include <libintl.h>; not needed.
15316
15317 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
15318
15319         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
15320         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
15321
15322 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
15323
15324         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
15325         HAVE_DECL_STRTOLD.
15326
15327 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
15328
15329         * modules/getdate (Depends-on): Remove alloca-opt.
15330
15331 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
15332
15333         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
15334
15335 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
15336
15337         * lib/argp-parse.c: Include <stddef.h>.
15338         (alignof, alignto): New macros.
15339         (parser_init): Don't assume that void * is aligned sufficiently
15340         for struct option.
15341
15342         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
15343         need to extend the stack.
15344         (YYINITDEPTH): New macro, so that the initial stack isn't overly
15345         large.
15346
15347 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
15348
15349         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
15350
15351 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
15352
15353         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
15354         (2004-10-24) change.  Apparently this was a false alarm.
15355
15356         * modules/getdate: Depend on alloca-opt, not alloca.
15357
15358 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
15359
15360         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
15361         Remove now-obsolete comment about AIX.
15362         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
15363         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
15364         (YYMAXDEPTH): New macro.
15365
15366 2004-12-18  Simon Josefsson  <jas@extundo.com>
15367
15368         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
15369
15370 2004-12-18  Bruno Haible  <bruno@clisp.org>
15371
15372         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
15373
15374 2004-12-18  Bruno Haible  <bruno@clisp.org>
15375
15376         * lib/fatal-signal.c (fatal_signals): Make non-const.
15377         (init_fatal_signals): New function.
15378         (uninstall_handlers, install_handlers): Ignore signals that were set to
15379         SIG_IGN.
15380         (at_fatal_signal): Call init_fatal_signals.
15381         (init_fatal_signal_set): Likewise. Ignore signals that were set to
15382         SIG_IGN.
15383         Reported by Paul Eggert.
15384
15385 2004-12-18  Bruno Haible  <bruno@clisp.org>
15386
15387         * doc/alloca.texi: New file.
15388         * doc/alloca-opt.texi: New file.
15389
15390 2004-12-17  Jim Meyering  <jim@meyering.net>
15391
15392         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
15393         Otherwise, install-sh could exit with improper exit status when
15394         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
15395
15396 2004-12-16  Simon Josefsson  <jas@extundo.com>
15397
15398         * tests/test-base64.c: Add license.
15399
15400 2004-12-15  Stepan Kasal  <address@hidden>
15401
15402         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
15403
15404 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
15405
15406         * modules/getcwd (Files): Add m4/d-ino.m4.
15407         Suggested by Mark D. Baushke.
15408
15409 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
15410
15411         * lib/getdate.y (textint): New member "negative".
15412         (time_zone_hhmm): New function.
15413         Expect 14 shift-reduce conflicts, not 13.
15414         (o_colon_minutes): New rule.
15415         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
15416         (yylex): Set the "negative" member of signed numbers.
15417
15418 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
15419
15420         * doc/getdate.texi (Time of day items, Time zone items):
15421         Describe new formats +00:00, UTC+00:00.
15422
15423 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
15424
15425         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
15426         spurious "-l"s.  Problem reported by Stepan Kasal.
15427
15428 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
15429
15430         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
15431         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
15432
15433 2004-12-04  Simon Josefsson  <jas@extundo.com>
15434
15435         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
15436         Vandoorselaere <yoann@prelude-ids.org>.
15437
15438 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
15439
15440         Changes imported from coreutils.
15441         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
15442         exist.
15443         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
15444
15445 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
15446
15447         Changes imported from coreutils.
15448         * lib/hard-locale.c: Assume <locale.h> exists.
15449         Include "strdup.h".
15450         (GLIBC_VERSION): New macro.
15451         (hard_locale): Assume setlocale exists.
15452         Rewrite to avoid #ifdef.
15453         Use strdup rather than malloc + strcpy.
15454         * lib/human.c: Assume <locale.h> exists.
15455         (human_readable): Assume localeconv exists.
15456
15457 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
15458
15459         * modules/hard-locale (Depends-on): Add strdup.
15460
15461 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
15462
15463         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
15464         convert T2, not T.  (Imported from libc.)
15465
15466 2004-11-30  Simon Josefsson  <jas@extundo.com>
15467
15468         * modules/restrict (License): Change to LGPL.
15469
15470 2004-11-30  Simon Josefsson  <jas@extundo.com>
15471
15472         * m4/restrict.m4: Add copyright and copying conditions.
15473
15474 2004-11-30  Simon Josefsson  <jas@extundo.com>
15475
15476         * m4/base64.m4: New file.
15477
15478 2004-11-30  Simon Josefsson  <jas@extundo.com>
15479
15480         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
15481         base64.
15482
15483         * tests/test-base64.c: New file.
15484
15485         * modules/base64: New file.
15486
15487 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
15488
15489         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
15490         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
15491
15492         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
15493
15494 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
15495
15496         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
15497         (__getcwd.c): Don't restore errno; glibc doesn't.
15498         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
15499         first, falling back to our code only if its results look suspicious.
15500         Ensure that the resulting buffer is only as large as necessary.
15501
15502         * lib/readutmp.c: Include readutmp.h first.
15503         Include <errno.h>, since readutmp.h no longer does that.
15504         * lib/readutmp.h: Don't include <errno.h>,
15505         <sys/param.h>, <time.h>; not needed to establish interface.
15506         (errno): Remove decl.
15507         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
15508         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
15509         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
15510
15511 2004-11-28  Simon Josefsson  <jas@extundo.com>
15512
15513         * lib/base64.h, base64.c: New file.
15514
15515 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
15516
15517         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
15518
15519 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
15520
15521         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
15522         (Depends-on): Remove pathmax, same.  Add mempcpy.
15523         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
15524         (Makefile.am): Append getcwd.h to lib_SOURCES.
15525         (Include): Add getcwd.h.
15526         (Maintainer): Change from Jim Meyering to "all, glibc",
15527         since getdate now uses intended-for-glibc code.
15528         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
15529         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
15530
15531 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
15532
15533         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
15534         HP's ANSI C compiler.
15535         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
15536         Declaring int functions causes warnings on some modern systems and
15537         shouldn't be needed to compile on ancient ones.
15538         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
15539         defined.
15540
15541         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
15542         with the following changes.
15543         (__set_errno): Parenthesize properly.
15544         Include <stdbool.h>.
15545         (MIN, MAX, MATCHING_INO): New macros.
15546         (__getcwd): Define with prototype, not K&R form.
15547         Use heuristics to allocate default buffer on stack if possible.
15548         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
15549         behavior, and to avoid the PATH_MAX limit when computing
15550         ../../../../...
15551         Use MATCHING_INO to compare inode number to file.
15552         Check for arithmetic overflow in size calculations.
15553         Fix bug in reallocation of dot array that caused getcwd to fail
15554         on directories nested deeper than 75.
15555         Be more careful about saving errno on error.
15556         Do not use realloc; use only free+malloc, as this is a bit
15557         more flexible and avoids a needless copy operation.
15558         Do not inspect st_dev and st_ino for symbolic links; POSIX
15559         doesn't specify the latter.
15560         Check for closedir errors.
15561         Avoid needless casts.
15562         Use "#ifdef weak_alias" around weak_alias, to be like other
15563         glibc code.
15564         The following changes to getcwd.c have effect only when used in
15565         gnulib; they have no effect inside glibc proper.
15566         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
15567         as alloca isn't used.
15568         (alloca, __alloca): Likewise.
15569         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
15570         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
15571         unconditionally, as gnulib assumes C89 or better.
15572         Do not include <sys/param.h>.
15573         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
15574         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
15575         better.
15576         (NULL) [!defined NULL]: Remove; we assume C89 or better.
15577         Include <dirent.h> in a way that is compatible with modern Autoconf.
15578         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
15579         New macros, if not already defined.
15580         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
15581         Use "_LIBC", not "defined _LIBC", for consistency.
15582         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
15583         a mempcpy module.
15584         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
15585         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
15586         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
15587         credit only to Jim Meyering and adjust the copyright dates.
15588         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
15589         <stdlib.h>, <unistd.h>, "pathmax.h".
15590         Instead, include "xgetcwd.h" (first) and "getcwd.h".
15591         (INITIAL_BUFFER_SIZE): Remove.
15592         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
15593
15594 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
15595
15596         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
15597         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
15598         Use the _ONCE methods, for efficiency.
15599         Check for fcntl.h.  In test program, include <errno.h>
15600         and <fcntl.h> if available.  Remove old K&R cruft from
15601         test program.  Check for common errors in GNU/Linux,
15602         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
15603         don't do AC_LIBOBJ, as that's getcwd.m4's job.
15604         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
15605         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
15606         name accordingly.
15607         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
15608         accommodate new getcwd.c.
15609         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
15610         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
15611         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
15612         that's all we need now.
15613
15614 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
15615
15616         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
15617         argp-parse.c depends on getopt internals, that means we should
15618         always use our getopt, to be on the safe side.
15619         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
15620         order not to spoil the result of an eventual previous invocation
15621         of gl_GETOPT_SUBSTITUTE.
15622
15623 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
15624
15625         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
15626         redefinition warnings. To avoid them, include the defines
15627         in `#if !defined __need_getopt ... #endif'. The only place
15628         where __getopt_argv_const is used is in definitions
15629         of getopt_long and getopt_long_only below, which are as well
15630         protected by `#ifndef __need_getopt'.
15631         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
15632         __need_getopt after including <stdio.h> and <unistd.h> These
15633         headers might have defined it.
15634
15635 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
15636
15637         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
15638
15639 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
15640
15641         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
15642         (futimens): New function, which uses futimes if available.
15643         (futimens, utimens): Support timespec==NULL, with same semantics
15644         as utime and utimens.
15645         * lib/utimens.h (futimens): New decl.
15646
15647 2004-11-23  Jim Meyering  <jim@meyering.net>
15648
15649         * lib/getopt_.h: Remove trailing blanks.
15650
15651 2004-11-23  Jim Meyering  <jim@meyering.net>
15652
15653         * lib/__fpending.c: Add comment.
15654
15655 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
15656
15657         * modules/canonicalize (Depends-on): Add xreadlink.
15658         Problem reported by James Youngman.
15659
15660 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
15661
15662         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
15663         New macros.
15664         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
15665         optopt): Use them instead of invoking ## directly; otherwise, the
15666         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
15667
15668 2004-11-19  Bruno Haible  <bruno@clisp.org>
15669
15670         * lib/strtok_r.c: Move comments from here...
15671         * lib/strtok_r.h: ... to here.
15672
15673 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
15674
15675         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
15676         implementations that mishandle size_t overflow.
15677
15678 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
15679
15680         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
15681         might fail.  Problem reported by Yoann Vandoorselaere.
15682         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
15683         implementations that mishandle size_t overflow.
15684
15685 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
15686
15687         * modules/canon-host (Depends-on): Add strdup.
15688
15689 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
15690
15691         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
15692
15693 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
15694
15695         * lib/canon-host.c: Include "strdup.h".
15696         (canon_host): Use getaddrinfo if available, so that IPv6 works.
15697         Use strdup instead of malloc/strcpy to duplicate strings.
15698
15699         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
15700         (human_space_before_unit): New constant.
15701         * lib/human.c (human_readable): Support it.
15702
15703         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
15704         (xgetcwd): Set errno correctly when failing.
15705         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
15706         the failure is actually due to a PATH_MAX problem.
15707
15708         Further getopt changes to make it more likely that glibc will
15709         buy the changes back.
15710         * lib/getopt.c (POSIXLY_CORRECT): New constant.
15711         (getopt): Use it, so to preserve glibc semantic
15712         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
15713         when compiling for libc.
15714         * lib/getopt_.h (__getopt_argv_const): Bring it back.
15715         (getopt_long, getopt_long_only): Use it.
15716
15717         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
15718         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
15719         (getopt): Argv is now char * const *, as per standard.
15720         (_getopt_internal_r, _getopt_internal): Argv is now char **,
15721         not char *__getopt_argv_const *.
15722         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
15723         _getopt_long_only_r): Likewise.
15724         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
15725         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
15726         _getopt_long_r, _getopt_long_only_r): Likewise.
15727         * lib/getopt_.h (__getopt_argv_const): Remove.
15728         (getopt): Argv is now char * const *, as per standard.
15729
15730         * lib/getdate.y (tORDINAL): New token.
15731         (day, relunit): Allow it for relative times.
15732         (relative_time_table): Use tORDINAL for ordinals.
15733
15734 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
15735
15736         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
15737         Document that "second" isn't allowed as an ordinal number.
15738
15739 2004-11-16  Jim Meyering  <jim@meyering.net>
15740
15741         * modules/closeout (Depends-on): Add fpending.
15742
15743 2004-11-15  Jim Meyering  <jim@meyering.net>
15744
15745         * lib/closeout.c: Include "__fpending.h" once again.
15746         Include <stdbool.h>.
15747         (close_stdout): Don't fail just because stdout was closed initially,
15748         since some programs don't write to stdout in the normal course of
15749         operation (other than --version and --help), and we don't want this
15750         function to make e.g. `touch file >&-' fail.
15751         But do fail if it was closed and someone has tried to write to it.
15752         E.g., `printf foo >&-' must fail.
15753
15754 2004-11-13  Jim Meyering  <jim@meyering.net>
15755
15756         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
15757
15758 2004-11-12  Simon Josefsson  <jas@extundo.com>
15759
15760         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
15761         small doc fix is still pending.
15762
15763 2004-11-11  Simon Josefsson  <jas@extundo.com>
15764
15765         * modules/strtok_r: New file.
15766
15767         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
15768         strtok_r.
15769
15770 2004-11-11  Simon Josefsson  <jas@extundo.com>
15771
15772         * m4/strtok_r.m4: New file.
15773
15774         * m4/getopt.m4: Replace opterr.
15775
15776 2004-11-11  Simon Josefsson  <jas@extundo.com>
15777
15778         * lib/strtok_r.h, strtok_r.c: New file.
15779
15780 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
15781
15782         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
15783         of replacing opterr, getopt, etc.  This should handle the
15784         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
15785
15786 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
15787
15788         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
15789         we can stop lying to compilers about the constness of argv when we
15790         are compiled outside glibc.
15791         (getopt, getopt_long, getopt_long_only): Use it.
15792         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
15793         _getopt_internal, getopt): Likewise.
15794         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
15795         _getopt_long_only_r): Likewise.
15796         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
15797         _getopt_long_r, _getopt_long_only_r): Likewise.
15798
15799         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
15800         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
15801         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
15802         the other external symbols.
15803         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
15804         declaration, since the above renaming now works around collisions.
15805
15806 2004-11-11  Jim Meyering  <jim@meyering.net>
15807
15808         * lib/linebreak.c: Remove trailing blanks.
15809         * lib/alloca_.h: Likewise.
15810         * lib/acosl.c: Likewise.
15811         * lib/euidaccess.c: Likewise.
15812         * lib/allocsa.h: Likewise.
15813
15814 2004-11-10  Simon Josefsson  <jas@extundo.com>
15815
15816         * m4/getaddrinfo.m4: New file.
15817
15818 2004-11-10  Simon Josefsson  <jas@extundo.com>
15819
15820         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
15821
15822 2004-11-10  Simon Josefsson  <jas@extundo.com>
15823
15824         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
15825         getaddrinfo.
15826
15827         * modules/getaddrinfo: New file.
15828
15829 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
15830
15831         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
15832
15833 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
15834
15835         * lib/mktime.c (SHR): New macro, which is a portable
15836         substitute for >> that should work even on Crays.
15837         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
15838         Problem reported by Mark D. Baushke in
15839         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
15840         * lib/getdate.y (SHR): Likewise.
15841         (tm_diff): Use it.
15842         * lib/strftime.c (SHR): Likewise.
15843         (tm_diff): Use it.
15844         * lib/quotearg.c (struct quoting_options): Use unsigned int for
15845         quote_these_too, so that right shifts are well defined.  All uses
15846         changed.
15847
15848 2004-11-10  Jim Meyering  <jim@meyering.net>
15849
15850         Ensure that no close failure goes unreported.
15851         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
15852         return early when it seems there's nothing to flush.
15853         Don't include __fpending.h.
15854
15855 2004-11-10  Jim Meyering  <jim@meyering.net>
15856
15857         * modules/closeout (Depends-on): Remove fpending.
15858
15859 2004-11-10  Jim Meyering  <jim@meyering.net>
15860
15861         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
15862
15863 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
15864
15865         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
15866         gl_FUNC_STRFTIME.
15867         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
15868         and AC_REQUIRE when possible, to avoid duplicate checks.
15869         Check for <wchar.h>.
15870
15871 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
15872
15873         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
15874
15875 2004-11-09  Bruno Haible  <bruno@clisp.org>
15876
15877         * m4/sockpfaf.m4: New file.
15878
15879 2004-11-05  Bruno Haible  <bruno@clisp.org>
15880
15881         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
15882         Reported by Mark D. Baushke <mdb@cvshome.org>.
15883
15884 2004-11-04  Bruno Haible  <bruno@clisp.org>
15885
15886         2004-09-11  Bruno Haible  <bruno@clisp.org>
15887                 * allocsa.valgrind: New file.
15888         2004-02-06  Bruno Haible  <bruno@clisp.org>
15889                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
15890                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
15891                 Reported by Christopher Seip <chris.seip@hp.com>.
15892
15893 2004-11-04  Bruno Haible  <bruno@clisp.org>
15894
15895         * modules/allocsa (Files): Add lib/allocsa.valgrind.
15896         (Makefile.am): Distribute it.
15897
15898 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
15899
15900         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
15901         with errno == ERANGE if the buffer is too small.
15902         Problem reported by Mark D. Baushke.
15903
15904 2004-11-03  Albert Chin  <china@thewrittenword.com>
15905             Paul Eggert  <eggert@cs.ucla.edu>
15906
15907         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
15908         equivalent, substitute $ac_type for equivalent type rather than
15909         blindly using uint32_t *always* which won't work if uint32_t is not
15910         available.  Define _UINT32_T to work around typedef of uint32_t if
15911         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
15912         2.5.1.
15913
15914 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
15915
15916         * m4/jm-macros.m4: Sync from coreutils.
15917         (gl_MACROS): Check for mbrlen, for pathchk.
15918         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
15919
15920 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
15921
15922         * lib/xreadlink.c (MAXSIZE): New macro.
15923         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
15924         size does not exceed MAXSIZE.  Avoid cast.
15925         As suggested by Mark D. Baushke in
15926         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
15927         if readlink fails with buffer size just under MAXSIZE, try again
15928         with MAXSIZE.
15929
15930 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
15931
15932         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
15933
15934 2004-11-02  Derek R. Price  <derek@ximbiot.com>
15935         and  Paul Eggert  <eggert@cs.ucla.edu>
15936
15937         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
15938         (get_date): Overparenthesize to avoid GCC warning.
15939
15940 2004-11-02  Bruno Haible  <bruno@clisp.org>
15941
15942         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
15943         returns void.
15944
15945 2004-11-02  Bruno Haible  <bruno@clisp.org>
15946
15947         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
15948         function returns void.
15949
15950 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
15951
15952         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
15953         fflush_unlocked, flockfile, funlockfile, funlockfile,
15954         fputs_unlocked, putc_unlocked.
15955
15956 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
15957
15958         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
15959         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
15960         already declared.
15961
15962 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
15963
15964         * modules/getdate (Files): Add doc/getdate.texi.
15965         (Depends-on): Add setenv, xalloc.
15966
15967 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
15968
15969         * lib/getdate.y: Add support for TZ="foo" within a date string.
15970         Fix some bugs near time_t boundaries.  Reject dates with
15971         out-of-range components, e.g., "Sept 31".
15972         Include <stdlib.h>, "setenv.h", "xalloc.h".
15973         (ISDIGIT_LOCALE): Remove; unused.
15974         Note that the TZ and time functions used here are not reentrant.
15975         (mktime_ok, get_tz): New functions.
15976         (TZBUFSIZE): New constant.
15977         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
15978         This requires that we sometimes generate our own TZ="XXX..." setting.
15979
15980 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
15981
15982         * doc/getdate.texi: New file, from coreutils with modifications for
15983         the new TZ parsing.
15984
15985 2004-10-27  Derek R. Price  <derek@ximbiot.com>
15986
15987         * lib/mktime.c (not_equal_tm): Remove redundant check.
15988
15989 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
15990
15991         * modules/regex (lib_SOURCES): Add regex.c.
15992         Reported by James Youngman in
15993         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
15994
15995 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
15996
15997         * lib/getdate.y: Use Bison 1.875 features, and some minor
15998         code cleanups.  This change does not affect semantics.
15999         Don't include <stdlib.h>; no longer needed.
16000         Don't include unlocked-io.h; only the "#if TEST" code uses
16001         stdio, and performance isn't crucial there.
16002         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
16003         Bison 1.875 features as described below.
16004         All uses of "PC." replaced by "pc->".
16005         (YYSTYPE): Add a forward declaration.
16006         (yylex, yyerror): Use full prototypes in forward decls.
16007         Use "%pure-parser" rather than obsolescent "%pure_parser".
16008         Use %parse-param and %lex-param instead of obsolescent
16009         YYPARSE_PARAM and YYLEX_PARAM.
16010         (meridian_table, month_and_day_table, time_units_table,
16011         relative_time_table, time_zone_table, military_table,
16012         lookup_zone, lookup_word, get_date):
16013         Use NULL instead of 0 where appropriate.
16014         (to_hour): Avoid abort (), to avoid a dependency on
16015         stdlib.h.
16016         (yyerror, yylex): Now accepts parser_control * arg.
16017         (main) [TEST]: Use '\0' rather than 0 for char.
16018
16019 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
16020
16021         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
16022
16023 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
16024
16025         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
16026         It's now the caller's responsibility to handle the case where
16027         !HAVE_GETPAGESIZE && !defined getpagesize.
16028
16029         * lib/mktime.c (leapyear): Arg is long int, not int.
16030
16031 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
16032
16033         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
16034
16035 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
16036
16037         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
16038         missing.  Problem reported by James Youngman.
16039
16040 2004-10-16  Simon Josefsson  <jas@extundo.com>
16041
16042         * gnulib-tool: Fix comments.  Fix parse problem.
16043         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
16044
16045 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
16046
16047         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
16048         implementation of getopt_long.  Problem reported by Alexander Taler in:
16049         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
16050
16051 2004-10-15  Bruno Haible  <bruno@clisp.org>
16052
16053         * gnulib-tool: Untabify. Initialize supplied_libname.
16054         (func_usage): More homogenous output.
16055         (func_modules_transitive_closure, func_modules_to_filelist,
16056         func_emit_lib_Makefile_am): New functions.
16057         (func_import): New function, extracted from big case statement. Use
16058         func_get_license, func_modules_transitive_closure,
16059         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
16060         opt_lgpl. Don't use test -a, as it's not portable.
16061         (func_create_testdir): Use func_modules_transitive_closure,
16062         func_modules_to_filelist, func_emit_lib_Makefile_am.
16063
16064 2004-10-15  Bruno Haible  <bruno@clisp.org>
16065
16066         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
16067
16068 2004-10-15  Bruno Haible  <bruno@clisp.org>
16069
16070         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
16071         the portions belonging to each module.
16072         Suggested by Derek Robert Price <derek@ximbiot.com>.
16073
16074 2004-10-12  Simon Josefsson  <jas@extundo.com>
16075
16076         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
16077         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
16078         to real functions.
16079
16080 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
16081
16082         * modules/vsnprintf: New file.
16083
16084 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
16085
16086         * m4/vsnprintf.m4: New file.
16087
16088 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
16089
16090         * lib/vsnprintf.h: New file.
16091         * lib/vsnprintf.c: New file.
16092
16093 2004-10-11  Bruno Haible  <bruno@clisp.org>
16094
16095         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
16096         vsnprintf.
16097
16098 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
16099
16100         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
16101
16102 2004-10-07  Bruno Haible  <bruno@clisp.org>
16103
16104         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
16105         fits into the provided buffer.
16106
16107 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
16108
16109         * lib/diacrit.c, diacrit.h: Add GPL notice.
16110
16111         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
16112         notice.
16113         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
16114         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
16115         This avoids a potential constant-folding bug.
16116
16117 2004-10-05  Bruno Haible  <bruno@clisp.org>
16118
16119         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
16120         for the declaration of strsep.
16121
16122 2004-10-05  Bruno Haible  <bruno@clisp.org>
16123
16124         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
16125
16126 2004-10-04  Simon Josefsson  <jas@extundo.com>
16127
16128         * modules/memmem: New file.
16129         * tests/test-memmem.c: New file.
16130         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
16131
16132 2004-10-04  Simon Josefsson  <jas@extundo.com>
16133
16134         * m4/memmem.m4: New file.
16135
16136 2004-10-04  Simon Josefsson  <jas@extundo.com>
16137
16138         * lib/memmem.h: New file.
16139         * lib/memmem.c: New file, taken from glibc.
16140
16141 2004-10-04  Simon Josefsson  <jas@extundo.com>
16142
16143         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
16144         '#ifdef USE_UNLOCKED_IO'.
16145
16146 2004-10-04  Simon Josefsson  <jas@extundo.com>
16147
16148         * config/srclist.txt: Add memmem from glibc.
16149
16150 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
16151
16152         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
16153
16154         * modules/argmatch, modules/argp, modules/closeout, modules/error,
16155         modules/exclude, modules/getdate, modules/getline,
16156         modules/getndelim2, modules/getpass, modules/getpass-gnu,
16157         modules/getusershell, modules/linebuffer, modules/md5,
16158         modules/mountlist, modules/posixtm, modules/readtokens,
16159         modules/readutmp, modules/regex, modules/sha1,
16160         modules/version-etc, modules/yesno:
16161         Remove dependency on unlocked-io.
16162
16163 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
16164
16165         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
16166
16167         * m4/unlocked-io.m4: Add copyright notice.
16168         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
16169
16170 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
16171
16172         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
16173         * lib/xmalloc.c (xmemdup): Likewise.
16174         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
16175         XFREE): Remove these long-obsolescent macros.
16176         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
16177         * lib/xstrdup.c: Remove.
16178
16179         * lib/regex.c (re_comp): Cast gettext return value to char *,
16180         Problem reported by Martin Neitzel via Mark D. Baushke.
16181
16182 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
16183
16184         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
16185         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
16186         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
16187         regex.c, sha1.c, version-etc.c, yesno.c:
16188         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
16189         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
16190         the includer's responsibility.
16191
16192         Sync from coreutils.
16193
16194         * lib/modechange.c (mode_compile): Don't decrement a pointer that
16195         points to the start of a string, as the C Standard says the
16196         resulting behavior is undefined.
16197
16198         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
16199         simple -> simple_backups, numbered_existing ->
16200         numbered_existing_backups, numbered -> numbered_backups
16201         to avoid shadowing problems.  All uses changed.
16202         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
16203         * lib/backupfile.c (check_extension, numbered_backup):
16204         Rename locals to avoid shadowing 'basename'.
16205         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
16206         once.
16207
16208         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
16209         * lib/.cvsignore: Add getopt.h.
16210
16211 2004-10-04  Bruno Haible  <bruno@clisp.org>
16212
16213         * modules/README: New file.
16214         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
16215         not a module.
16216
16217 2004-10-02  Jim Meyering  <jim@meyering.net>
16218
16219         * lib/dirfd.h, getpagesize.h: Add copyright notice.
16220
16221 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
16222
16223         * modules/strsep: New file.
16224
16225 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
16226
16227         * m4/strsep.m4: New file.
16228
16229 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
16230
16231         * lib/strsep.h: New file.
16232         * lib/strsep.c: New file.
16233
16234 2004-10-01  Simon Josefsson  <jas@extundo.com>
16235
16236         * lib/snprintf.c (snprintf): Handle size==0.
16237
16238 2004-10-01  Simon Josefsson  <jas@extundo.com>
16239             Bruno Haible  <bruno@clisp.org>
16240
16241         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
16242         (snprintf): Declare 'args'.
16243
16244 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
16245
16246         * lib/snprintf.c: Remove comments as to why each header is needed.
16247
16248 2004-10-01  Bruno Haible  <bruno@clisp.org>
16249
16250         * MODULES.html.sh: Add strsep.
16251
16252 2004-09-30  Simon Josefsson  <jas@extundo.com>
16253
16254         * modules/snprintf: New file.
16255
16256 2004-09-30  Simon Josefsson  <jas@extundo.com>
16257
16258         * m4/snprintf.m4: New file.
16259
16260 2004-09-30  Simon Josefsson  <jas@extundo.com>
16261
16262         * lib/snprintf.h, lib/snprintf.c: New files.
16263
16264 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
16265
16266         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
16267         (hol_entry_help): Never translate an empty string.
16268         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
16269         * lib/argp.h (OPTION_NO_TRANS): New option.
16270
16271 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
16272
16273         * modules/argp (Maintainer): Replace Simon Josefsson
16274         by Sergey Poznyakoff.
16275
16276 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
16277
16278         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
16279         changes merged back into glibc.
16280
16281 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
16282
16283         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
16284
16285 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
16286
16287         * lib/xvasprintf.c: Include xalloc.h.
16288         (xvasprintf): Use xalloc_die, not xmalloc_die.
16289
16290 2004-09-29  Bruno Haible  <bruno@clisp.org>
16291
16292         * modules/alloca-opt: New file, derived from modules/alloca.
16293         * modules/allocsa: Depend on alloca-opt instead of alloca.
16294         * modules/setenv: Likewise.
16295         * modules/vasnprintf: Likewise.
16296         * MODULES.html.sh: Add alloca-opt.
16297
16298 2004-09-28  Simon Josefsson  <jas@extundo.com>
16299
16300         * gnulib-tool: New parameter --lgpl, to asseert that modules are
16301         LGPL, and to replace license template from GPL to LGPL.
16302
16303 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
16304
16305         * modules/dummy: Change license to LGPL.
16306
16307 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
16308
16309         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
16310
16311 2004-09-24  Simon Josefsson  <jas@extundo.com>
16312
16313         * modules/minmax (License): Change from GPL to LGPL.
16314
16315 2004-09-23  Simon Josefsson  <jas@extundo.com>
16316
16317         * gnulib-tool (--import): Typo.
16318
16319 2004-09-23  Simon Josefsson  <jas@extundo.com>
16320
16321         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
16322
16323 2004-09-22  Bruno Haible  <bruno@clisp.org>
16324
16325         * modules/*: Add 'License' field.
16326         * gnulib-tool: Accept --extract-license option.
16327         (func_get_license): New function.
16328
16329 2004-09-21  Bruno Haible  <bruno@clisp.org>
16330
16331         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
16332         Reported by Simon Josefsson.
16333
16334 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
16335
16336         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
16337         gl_AC_TYPE_LONG_LONG.
16338
16339 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
16340
16341         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
16342
16343 2004-09-18  Simon Josefsson  <jas@extundo.com>
16344         and  Paul Eggert  <eggert@cs.ucla.edu>
16345
16346         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
16347         calls with autoreconf.  Define GL_LIB.
16348
16349 2004-09-14  Karl Berry  <karl@gnu.org>
16350
16351         * config/srclist.txt: unsync setenv.c, sigh.
16352
16353 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
16354
16355         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
16356         Problem reported by Bruno Haible in:
16357         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
16358
16359 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
16360
16361         * config/srclist.txt: Comment out argp-pvh.c.
16362
16363 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
16364
16365         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
16366         in case some system header has #define'd it.  Problem reported by
16367         Soeren D. Schulze in
16368         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
16369
16370 2004-09-09  Karl Berry  <karl@gnu.org>
16371
16372         * regex.[ch]: delete from the root.  These were supposed to be
16373                 synced with emacs cvs, but this has not happened for about
16374                 a year, and anyway nothing else uses emacs regex.[ch].
16375                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
16376                 lib/regex[.ch] is untouched.
16377
16378 2004-09-09  Bruno Haible  <bruno@clisp.org>
16379
16380         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
16381
16382 2004-09-09  Bruno Haible  <bruno@clisp.org>
16383
16384         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
16385         modifications.
16386         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
16387
16388 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
16389
16390         * modules/xvasprintf: New file.
16391         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
16392
16393 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
16394
16395         * lib/xvasprintf.h: New file.
16396         * lib/xvasprintf.c: New file.
16397         * lib/xasprintf.c: New file.
16398
16399 2004-09-08  Bruno Haible  <bruno@clisp.org>
16400
16401         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
16402
16403 2004-09-08  Bruno Haible  <bruno@clisp.org>
16404
16405         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
16406         length is > INT_MAX.
16407         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
16408         more.
16409
16410 2004-09-08  Bruno Haible  <bruno@clisp.org>
16411
16412         * lib/stdint_.h: New file, taken from GNU clisp.
16413
16414 2004-09-08  Bruno Haible  <bruno@clisp.org>
16415             Oskar Liljeblad  <oskar@osk.mine.nu>
16416
16417         * modules/stdint: New file.
16418         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
16419
16420 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
16421
16422         Import from coreutils.
16423         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
16424         strings on unbounded length.  alloca's performance benefits aren't
16425         that important here.
16426         (V_STRDUP): Remove.
16427         (parse_with_separator): New function, with most of the internals
16428         of the old parse_user_spec.  Allow user to omit both user and group,
16429         for compatibility with FreeBSD.
16430         Clone only the user name, not the entire spec.
16431         Do not set *uid, *gid unless entirely successful.
16432         Avoid memory leak in some failing cases.
16433         Fix regression for USER.GROUP reported by Dmitry V. Levin in
16434         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
16435         (parse_user_spec): Rewrite to use parse_with_separator.
16436
16437 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
16438
16439         * modules/userspec: Don't depend on alloca.
16440
16441 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
16442
16443         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
16444
16445 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
16446
16447         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
16448         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
16449         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
16450
16451 2004-08-16  Simon Josefsson  <jas@extundo.com>
16452
16453         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
16454         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
16455         Add --dry-run for --import.
16456         Let user provided command line parameters override configure.ac
16457         settings.
16458
16459 2004-08-12  Simon Josefsson  <jas@extundo.com>
16460
16461         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
16462         as discussed with Paul Eggert in threads rooted at
16463         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
16464         and
16465         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
16466         Before, the test was empty, and relied on ELIDE_CODE in source
16467         code.)
16468         (gl_PREREQ_GETOPT): New macro.
16469         (gl_GETOPT): Use them.
16470
16471 2004-08-12  Simon Josefsson  <jas@extundo.com>
16472
16473         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
16474         * lib/getopt_.h: Renamed from getopt.h.
16475
16476 2004-08-12  Simon Josefsson  <jas@extundo.com>
16477
16478         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
16479         Change default library name from libfoo to libgnu.
16480         Now, if you have a configure.ac that says:
16481                 gl_SOURCE_BASE(gl)
16482                 gl_M4_BASE(gl/m4)
16483                 gl_MODULES(error getopt etcetera)
16484                 gl_INIT
16485         you can import all you need by running:
16486                 ../gnulib/gnulib-tool --import
16487
16488         * modules/getopt (Files): Rename getopt.h to getopt_.h.
16489         (Makefile.am): Rewrite, use logic from argz.
16490         (Include): Use <getopt.h> instead of "getopt.h".
16491
16492 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
16493
16494         * modules/argp (Files): Add m4/unlocked-io.m4.
16495         (Depends-on): Add extensions.
16496
16497 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
16498
16499         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
16500         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
16501         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
16502         Check for program_invocation_name, program_invocation_short_name,
16503         flockfile, funlockfile, features.h, _getopt_long_only_r.
16504
16505 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
16506
16507         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
16508         its complicated substitute.
16509         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
16510         and program_invocation_name.
16511         (__argp_basename) [!_LIBC]: Remove; the only use was
16512         replaced by its body.
16513         (__argp_short_program_name): Change condition from
16514         !defined __argp_short_program_name to
16515         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
16516         to match argp-namefrob.h.
16517         (__argp_failure): Don't assume strerror_r returns char *.
16518         * lib/argp-parse.c (N_): Define unconditionally.
16519         (argp_default_options): Fill out initializers with 0 to avoid
16520         gcc warnings.
16521
16522 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
16523
16524         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
16525         getopt1.c.
16526
16527 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
16528
16529         Merge from coreutils.
16530
16531         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
16532
16533         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
16534         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
16535
16536 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
16537
16538         Merge from coreutils.
16539
16540         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
16541         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
16542         for Reliant Unix 5.43.
16543
16544         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
16545         (union fooround): Use uintmax_t, not long int.
16546         The rest is a merge from libc:
16547         [defined _LIBC]: Include <shlib-compat.h>.
16548         (_obstack) [defined _LIBC]: Remove after 2.3.4.
16549
16550         * lib/settime.c (settime): Recode to avoid warning with
16551         Sun Forte C 6U2.
16552
16553         * lib/strverscmp.c: Convert to UTF-8.
16554
16555 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
16556
16557         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
16558         m4/uintmax_t.m4.
16559
16560 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
16561
16562         * modules/xalloc-die: New file.
16563         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
16564
16565         * modules/md5 (Files): Add m4/uint32_t.m4.
16566         * modules/sha1: Renamed from modules/sha.
16567         (Files):
16568         Rename lib/sha.h to lib/sha1.h.
16569         Rename lib/sha.c to lib/sha1.c.
16570         Rename m4/sha.m4 to m4/sha1.m4.
16571         (lib_SOURCES): Likewise.
16572         (configure.ac): Rename gl_SHA to gl_SHA1.
16573         (Include): sha.h -> sha1.h.
16574
16575 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
16576
16577         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
16578         * m4/sha1.m4: Renamed from sha.m4.
16579         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
16580
16581 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
16582
16583         * lib/obstack.h (obstack_empty_p):
16584         Don't assume that chunk->contents is suitably aligned.
16585         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
16586         Likewise. Problem reported by Benno in
16587         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
16588
16589         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
16590         readable.  This could be improved further but it'd take some work.
16591
16592 2004-08-08  Simon Josefsson  <jas@extundo.com>
16593
16594         * modules/xgethostname (Depends-on): Remove exit and error (not
16595         used).
16596
16597         * modules/getpass-gnu: Add getpass.h.
16598         (Depends-on): Add stdbool.
16599         * modules/getpass: Add getpass.h.
16600
16601 2004-08-08  Simon Josefsson  <jas@extundo.com>
16602
16603         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
16604         Check getpass declaration.
16605
16606 2004-08-08  Simon Josefsson  <jas@extundo.com>
16607
16608         * lib/xgethostname.c: Don't include error.h (not used).
16609
16610         * lib/getpass.h: Add.
16611         * lib/getpass.c: Include getpass.h first.
16612
16613 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
16614
16615         * lib/xalloc-die.c: New file.
16616         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
16617         All uses removed.
16618         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
16619         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
16620         xalloc-die.c.
16621         (_, N_, xalloc_die): Move to xalloc-die.c.
16622         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
16623         so that we needn't mess with xalloc_msg_memory_exhausted.
16624
16625         * lib/sha1.h: Renamed from sha.h.
16626         (SHA1_H): Renamed from _SHA_H.
16627         (sha1_ctx): Renamed from sha_ctx.
16628         (sha1_init_ctx): Renamed from sha_init_ctx.
16629         (sha1_process_block): Renamed from sha_process_block.
16630         (sha1_process_bytes): Renamed from sha_process_bytes.
16631         (sha1_finish_ctx): Renamed from sha_finish_ctx.
16632         (sha1_read_ctx): Renamed from sha_read_ctx.
16633         (sha1_stream): Renamed from sha_stream.
16634         (sha1_buffer): Renamed from sha_buffer.
16635         * lib/sha1.c: Likewise; renamed from sha.c.
16636         Do not include <sys/types.h>.
16637         Include <stddef.h> rather than <stdlib.h>.
16638
16639 2004-08-08  Bruno Haible  <bruno@clisp.org>
16640
16641         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
16642         FILESYSTEM_PREFIX_LEN.
16643         * lib/progreloc.c: Likewise.
16644         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
16645
16646 2004-08-06  Simon Josefsson  <jas@extundo.com>
16647
16648         * modules/progname (Depends-on): Don't depend on stdbool.
16649
16650 2004-08-06  Simon Josefsson  <jas@extundo.com>
16651
16652         * modules/getsubopt: New file.
16653         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
16654         getsubopt.
16655
16656 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
16657
16658         More merge from coreutils.
16659
16660         * m4/utimens.m4, m4/utimecmp.m4: New files.
16661         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
16662         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
16663         prereq.m4, sha.m4: Import changes from coreutils.
16664
16665 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
16666
16667         More merge from coreutils.
16668         * modules/raise, modules/readtokens0, modules/utimens:
16669         * modules/utimecmp, module/xnanosleep: New files.
16670         * modules/strftime: Add lib/strftime.h.
16671         Change include from <time.h> to "strftime.h".
16672         * modules/yesno: Add lib/yesno.h.
16673         * modules/backupfile: Remove lib/addext.c.
16674         * modules/euidaccess: Add stat-macros.h.
16675         * modules/canonicalize, modules/euidaccess,
16676         modules/filemode, modules/lchown, modules/makepath,
16677         modules/rmdir, modules/stat: Likewise.
16678
16679 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
16680
16681         Merge from tar.
16682         * lib/argp-help.c (make_hol, hol_append): Don't assume that
16683         SIZE_MAX is a valid preprocessor constant.
16684         (__argp_basename): Change from "#ifndef _LIBC"
16685         to "#ifndef __argp_short_program_name", so that
16686         we don't compile these functions for tar.
16687
16688         More merges from coreutils.
16689         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
16690         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
16691         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
16692         * lib/addext.c: Remove; no longer needed.
16693         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
16694         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
16695         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
16696         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
16697         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
16698         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
16699         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
16700         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
16701         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
16702         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
16703         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
16704         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
16705         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
16706         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
16707         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
16708         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
16709         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
16710         Import changes from coreutils.
16711
16712 2004-08-05  Simon Josefsson  <jas@extundo.com>
16713
16714         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
16715
16716 2004-08-05  Simon Josefsson  <jas@extundo.com>
16717
16718         * m4/getsubopt.m4: New file.
16719
16720 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
16721
16722         Merge from coreutils.
16723
16724         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
16725         * m4/getcwd-path-max.m4: New files.
16726
16727         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
16728         FILESYSTEM_PREFIX_LEN ->
16729         FILE_SYSTEM_PREFIX_LEN.
16730         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
16731         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
16732         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
16733         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
16734
16735         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
16736         prerequisite modules now handle the DOS stuff.
16737         Don't check for unistd.h.
16738
16739 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
16740
16741         Merge from coreutils.
16742
16743         * lib/.gdb-history: Remove; this doesn't belong here.
16744
16745         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
16746         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
16747         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
16748         * lib/getcwd.c: New files.
16749
16750         * lib/dirname.h: Include <stdbool.h>.
16751         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
16752         for consistency with POSIX terminology.  All uses changed.
16753         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
16754         (strip_trailing_slashes): Use bool for booleans.
16755         * lib/stripslash.c (strip_trailing_slashes): Likewise.
16756
16757         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
16758         sometimes returns a positive errno value even when it succeeds.
16759         (print_errno_message) [!LIBC]: Fall back on strerror if
16760         __strerror_r fails.
16761
16762         * lib/path-concat.c (mempcpy): Don't define if a system header defines
16763         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
16764         (longest_relative_suffix): New function.
16765         (path_concat): Use it.  Assume first argument is not NULL.
16766         Port to DOS.  Omit redundant separators.
16767         Report an error instead of returning NULL.
16768         Use mempcpy instead of memcpy.
16769         (xpath_concat): Remove: not declared or used.
16770
16771         * lib/same.h: Include <stdbool.h>
16772         (same_name): Return bool, not int.
16773         * lib/same.c (same_name): Likewise.
16774         (errno): Don't declare; we assume C89 or better now.
16775
16776         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
16777         if not already defined.
16778
16779         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
16780         * lib/dup-safer.c (errno): Likewise.
16781
16782 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
16783
16784         Merge from coreutils.
16785         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
16786         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
16787         * modules/path-concat: Don't depend on strdup.
16788
16789 2004-08-03  Simon Josefsson  <jas@extundo.com>
16790
16791         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
16792         * lib/progname.h: Don't include stdbool.h.
16793
16794 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
16795
16796         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
16797         * MODULES.html.sh (func_all_modules): Remove fatal.
16798
16799 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
16800
16801         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
16802
16803 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
16804
16805         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
16806         working.
16807
16808 2004-08-02  Simon Josefsson  <jas@extundo.com>
16809
16810         * lib/getsubopt.h: New file, with comments from Bruno Haible.
16811         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
16812         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
16813
16814 2004-08-01  Simon Josefsson  <jas@extundo.com>
16815
16816         * lib/xgetdomainname.c: Include stdlib.h, for free().
16817
16818 2004-07-19  Bruno Haible  <bruno@clisp.org>
16819
16820         * MODULES.html.sh (func_all_modules): Add dummy.
16821
16822 2004-07-16  Simon Josefsson  <jas@extundo.com>
16823
16824         * modules/dummy: New file.
16825
16826 2004-07-16  Simon Josefsson  <jas@extundo.com>
16827
16828         * lib/dummy.c: New file.
16829
16830 2004-07-16  Bruno Haible  <bruno@clisp.org>
16831
16832         * lib/backupfile.h: Add extern "C" for C++.
16833         * lib/closeout.h: Likewise.
16834         * lib/copy-file.h: Likewise.
16835         * lib/findprog.h: Likewise.
16836         * lib/full-write.h: Likewise.
16837         * lib/pathname.h: Likewise.
16838         * lib/progname.h: Likewise.
16839         * lib/stpcpy.h: Likewise.
16840         * lib/stpncpy.h: Likewise.
16841         * lib/strcase.h: Likewise.
16842         * lib/strstr.h: Likewise.
16843         * lib/xalloc.h: Likewise.
16844
16845         * lib/mbswidth.h: Add extern "C" for C++.
16846         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
16847
16848 2004-07-13  Robert Millan  <robertmh@gnu.org>
16849
16850         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
16851
16852 2004-07-09  Simon Josefsson  <jas@extundo.com>
16853
16854         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
16855         failed without this.)
16856
16857 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
16858
16859         * modules/chown (Files): Add lib/fchown-stub.c, since
16860         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
16861
16862 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
16863
16864         * lib/fchown-stub.c: New file.
16865
16866 2004-06-24  Jim Meyering  <jim@meyering.net>
16867
16868         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
16869
16870 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
16871
16872         * modules/argz: Omit "#include".
16873
16874         * MODULES.html.sh (func_all_modules): Add calloc, to match
16875         2004-06-01 addition of calloc module.
16876
16877 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
16878
16879         * m4/argz.m4: New file, which is autoupdated from libtool.
16880
16881 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
16882
16883         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
16884         libtool.
16885
16886 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
16887
16888         * config/srclist-update: Don't insist on "USA." before the
16889         close-comment, as libtool omits the period and puts the */ on a
16890         separate line.
16891         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
16892         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
16893
16894 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
16895
16896         * modules/argz: New file.
16897         * MODULES.html.sh (func_all_modules): Add argz.
16898
16899 2004-06-12  Jim Meyering  <jim@meyering.net>
16900         and  Paul Eggert  <eggert@cs.ucla.edu>
16901
16902         * modules/hash (Files): Add lib/xalloc.h.
16903         * modules/pipe (Depends-on): Add wait-process.
16904         * modules/stat (Depends-on): Add xalloc.
16905         * modules/userspec (Files): Add lib/userspec.h.
16906         * modules/xstrto
16907
16908         Upgrade from gettext-0.13.
16909         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
16910         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
16911         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
16912
16913 2004-06-10  Jim Meyering  <jim@meyering.net>
16914
16915         * lib/calloc.c: New file.
16916
16917 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
16918
16919         * lib/getdate.y (yylex): Allow space between sign and number.
16920         Problem reported by Dan Jacobson.
16921
16922 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
16923
16924         Merge from coreutils CVS.
16925
16926         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
16927         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
16928         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
16929         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
16930         xstrtol.m4: Fix copyright date and/or serial number.
16931
16932         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
16933         See if we need an fchown replacement.
16934         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
16935         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
16936         and use the replacement function if we detect either defect.
16937
16938         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
16939         gl_UTIMECMP.
16940
16941 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
16942         and  Jim Meyering  <jim@meyering.net>
16943
16944         Merge from coreutils CVS.
16945
16946         * lib/stat-macros.h: New file, with contents from file-type.h
16947         and coreutils' system.h.
16948         * lib/file-type.c: Include "stat-macros.h".
16949         * lib/file-type.h (file_type): Move all macro definitions to new file,
16950         stat-macros.h.
16951
16952         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
16953         Wrap old code with this conditional.
16954         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
16955         function that does not dereference symlinks.
16956         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
16957
16958         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
16959         dependency problems.
16960         (xreadlink): Accept new arg SIZE, for efficiency.
16961         All decls and uses changed.
16962         * lib/xreadlink.h: Include <stddef.h>, for size_t.
16963
16964         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
16965         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
16966
16967         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
16968         sysexits.h.
16969
16970 2004-06-01  Jim Meyering  <jim@meyering.net>
16971
16972         * m4/calloc.m4: New file.
16973
16974 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
16975
16976         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
16977         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
16978         Also, fix a typo in a diagnostic.
16979
16980 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
16981
16982         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
16983         or AC_FUNC_REALLOC.
16984
16985 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
16986
16987         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
16988         macros to be defined.
16989         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
16990         the allocator returns NULL because the requested size is zero.
16991
16992 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
16993
16994         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
16995         var.  Add comment explaining why libc still defines it.  This
16996         merges the following patch from glibc:
16997         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
16998
16999 2004-05-20  Andreas Schwab  <schwab@suse.de>
17000
17001         * m4/free.m4: Replace free if it not known to work, not the other
17002         way round.
17003
17004 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
17005
17006         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
17007         present in glibc since revision 1.1 of this file.
17008         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
17009         obstack_alignment_mask, obstack_alloc, obstack_base,
17010         obstack_blank, obstack_blank_fast, obstack_chunk_size,
17011         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
17012         obstack_grow0, obstack_init, obstack_int_grow,
17013         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
17014         obstack_next_free, obstack_object_size, obstack_ptr_grow,
17015         obstack_ptr_grow_fast, obstack_room): Remove declarations of
17016         nonexistent functions.
17017
17018 2004-05-18  Karl Berry  <karl@gnu.org>
17019
17020         * config/srclist.txt: break link for vasnprintf.c.
17021
17022 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
17023
17024         Port obstack to the AS/400, where pointers are 16 bytes wide and
17025         you cannot cast an integer to a valid pointer.  This patch is
17026         currently waiting to be integrated into glibc; see
17027         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
17028
17029         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
17030         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
17031         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
17032         (struct obstack): temp member is now a union of a pointer and
17033         an integer, instead of an integer.  All integer uses changed.
17034         This does not affect the physical layout of struct obstack,
17035         except on hosts (like the AS/400) where the size or alignment of
17036         void * is greater than that of ptrdiff_t.
17037         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
17038         __STDC__)]: Store temporary in pointer member of union, not
17039         integer member.
17040         * lib/obstack.c: Include <stddef.h>, for offsetof.
17041         (struct fooalign): Remove; it doesn't need a name.
17042         (union fooround): Change double to long double, and add void *.
17043         (DEFAULT_ALIGNMENT): Use offsetof to compute.
17044         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
17045         not a macro.  Hence the values are always int; so remove all
17046         casts-to-int in uses.
17047
17048 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
17049
17050         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
17051         we can get this patch merged into glibc.
17052
17053 2004-05-17  Derek R. Price  <derek@ximbiot.com>
17054             Paul Eggert  <eggert@cs.ucla.edu>
17055
17056         * m4/argp: Depend on alloca.
17057
17058 2004-05-17  Derek R. Price  <derek@ximbiot.com>
17059             Paul Eggert  <eggert@cs.ucla.edu>
17060
17061         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
17062         freecoding.
17063
17064 2004-05-17  Bruno Haible  <bruno@clisp.org>
17065
17066         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
17067         precision that consists of a '.' followed by an empty digit string.
17068         Patch by Tor Lillqvist <tml@iki.fi>.
17069
17070 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
17071
17072         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
17073         for backward compatibility with older code.  We need our own
17074         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
17075         it under some other name, and our alloca.h will define it.
17076
17077 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
17078             Derek Price  <derek@ximbiot.com>
17079
17080         * lib/alloca.c: Include <alloca.h>, to get our interface.
17081         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
17082         include <alloca.h> first.  Use C89 prototype for alloca; this
17083         requires including <stddef.h> for size_t.  Use extern "C" if C++.
17084         Use #elif for simplicity, since we can assume C89 now.
17085         Don't try to source the system alloca.h since it will not be found
17086         and to prevent recursively including its replacement.
17087         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
17088         * lib/regex.c: Likewise.
17089
17090 2004-05-16  Derek Price  <derek@ximbiot.com>
17091             Paul Eggert  <eggert@cs.ucla.edu>
17092
17093         getline cleanup.  This changes the getndelim2 API: both order of
17094         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
17095         no delimiter).
17096
17097         * lib/getline.c: Don't include stddef.h or stdio.h, since our
17098         interface does that.
17099         (getline): Always use getdelim, so that we don't have two
17100         copies of this code.
17101         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
17102         if available.
17103         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
17104         (GETNDELIM2_MAXIMUM): New macro.
17105         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
17106         instead of the old practice of delim2==0.  All callers changed.
17107         Return -1 on overflow, instead of returning junk.
17108         Do not set *linesize unless allocation succeeds.
17109         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
17110         that we include sys/types.h.
17111         * lib/getnline.h: Likewise.
17112         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
17113         (getndelim2): Reorder arguments.
17114         * lib/getnline.c (getnline, getndelim):
17115         Don't discard the NMAX argument.
17116         (getnline): Invoke getndelim, to avoid code duplication.
17117         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
17118         of (size_t) -1 by callers of the getnline family.
17119
17120 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
17121
17122         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
17123         Check for gettimeofday.
17124         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
17125         Check for settimeofday, stime.
17126
17127 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
17128
17129         * lib/nanosleep.c (suspended): Change its type from int to
17130         sig_atomic_t volatile.
17131         (first_call): Make it private to rpl_nanosleep, and have it
17132         be zero initially as that's a bit faster.
17133         (my_usleep): Round up fractional times instead of truncating them,
17134         as this is the usual meaning for 'sleep'.
17135
17136         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
17137         doesn't work.
17138         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
17139         (ENOSYS): Define if not defined.
17140         (settime): Fall back on stime if it exists and settimeofday fails.
17141         But don't bother with fallbacks if a method fails with errno == EPERM.
17142
17143 2004-05-11  Jim Meyering  <jim@meyering.net>
17144
17145         Prior to this change, the save_cwd caller required read access to the
17146         current directory on most systems (ones with the fchdir function).
17147
17148         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
17149         fails, try write-only, and finally, resort to using xgetcwd.
17150
17151 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
17152
17153         * lib/obstack.c, obstack.h: Import changes from libc.
17154
17155 2004-04-28  Bruno Haible  <bruno@clisp.org>
17156
17157         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
17158         also implicitly appends .exe to executables.
17159         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
17160         accepts Windows pathnames.
17161         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
17162         Treat Cygwin like Windows, since it now accepts Windows pathnames.
17163         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
17164         Treat Cygwin like Windows, since it now accepts Windows pathnames.
17165         Reported by Derek Robert Price <derek@ximbiot.com>.
17166
17167 2004-04-21  Karl Berry  <karl@gnu.org>
17168
17169         * config/srclist.txt (localcharset.c): break sync.
17170
17171 2004-04-20  Paul Eggert  <eggert@twinsun.com>
17172
17173         * m4/host-os.m4: Add a copyright notice.
17174
17175 2004-04-20  Jim Meyering  <jim@meyering.net>
17176
17177         Change UTILS_ to gl_ in AC_DEFINE'd names.
17178         Change utils_- and jm_-prefixed variables, too.
17179         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
17180         UTILS_FUNC_MKDIR_TRAILING_SLASH.
17181         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
17182
17183         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
17184         Don't emit trailing blanks.
17185         Also rename jm_-prefixed variables to have gl_ prefix.
17186
17187         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
17188         Also rename jm_-prefixed variables to have gl_ prefix.
17189
17190         * m4/jm-macros.m4: Reflect the renamings.
17191         * m4/prereq.m4: Likewise.
17192
17193 2004-04-20  Jim Meyering  <jim@meyering.net>
17194
17195         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
17196         memory.
17197
17198 2004-04-20  Jim Meyering  <jim@meyering.net>
17199             Bruno Haible  <bruno@clisp.org>
17200
17201         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
17202         memory when realloc fails.
17203
17204 2004-04-19  Jim Meyering  <jim@meyering.net>
17205
17206         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
17207         now that readutmp.c may call `free (0)'.
17208
17209 2004-04-19  Bruno Haible  <bruno@clisp.org>
17210
17211         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
17212         * m4/inttypes_h.m4: Likewise.
17213         * m4/stdint_h.m4: Likewise.
17214         * m4/intmax_t.m4: Likewise.
17215         * m4/uintmax_t.m4: Likewise.
17216
17217 2004-04-18  Jim Meyering  <jim@meyering.net>
17218
17219         * m4/prereq.m4: Don't forbid jm_ prefix.
17220
17221         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
17222         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
17223         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
17224         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
17225         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
17226         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
17227         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
17228         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
17229         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
17230         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
17231         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
17232         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
17233         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
17234         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
17235         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
17236         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
17237         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
17238         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
17239         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
17240
17241 2004-04-18  Jim Meyering  <jim@meyering.net>
17242
17243         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
17244         failure, don't leak memory and do call END_UTMP_ENT.
17245
17246 2004-04-16  Jim Meyering  <jim@meyering.net>
17247
17248         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
17249         coreutils' stat program.
17250         (gl_PREREQ): Don't require jm_PREREQ_STAT.
17251
17252 2004-04-11  Paul Eggert  <eggert@twinsun.com>
17253
17254         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
17255         C89.
17256         (CHAR_BIT): Remove, since we assume C89.
17257         Include <stdint.h> if available, as per current Autoconf CVS advice.
17258
17259 2004-03-31  Jim Meyering  <jim@meyering.net>
17260
17261         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
17262         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
17263         * m4/xalloc.m4: Likewise.
17264
17265 2004-03-30  Paul Eggert  <eggert@twinsun.com>
17266
17267         Merge from coreutils.
17268
17269         * m4/inttostr.m4: New file.
17270         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
17271         Require AM_STDBOOL_H and gl_TIMESPEC instead.
17272         Require gl_CLOCK_TIME.
17273         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
17274
17275 2004-03-30  Paul Eggert  <eggert@twinsun.com>
17276
17277         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
17278         not bool, to be more consistent with Unix conventions.
17279         Suggested by Bruno Haible.
17280
17281         Merge from coreutils.
17282
17283         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
17284         * lib/umaxtostr.c: New files.
17285
17286         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
17287         the usual <time.h> dance.
17288         (get_date): Change signature to support fractional time stamps.
17289         All callers changed.
17290         * lib/getdate.y: Include "getdate.h" first, as we can now
17291         assume C89 and don't need to worry about 'const'.
17292         Similarly, include "unlocked-io.h" near start, not in middle.
17293         Include <limits.h>.
17294         (textint.value): Use long int rather than int.
17295         (textint.digits): Use size_t rather than int.
17296         (BILLION, LOG10_BILLION): New constants.
17297         (parser_control): New member rel_ns.  Members day_ordinal,
17298         time_zone, month, day, hour, minutes, rel_year, rel_month,
17299         rel_day, rel_hour, rel_minutes, rel_seconds
17300         are now long int, not int.  Member seconds is now struct timespec,
17301         not int.  New member timespec_seen.  Members dates_seen, days_seen,
17302         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
17303         not int.
17304         (%union.intval): Now long int, not int.
17305         New member timespec.
17306         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
17307         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
17308         (spec): Now is a timespec or an item list.
17309         (timespec, items): New nonterminals.
17310         (time, rel, relunit, number, get_date):
17311         Add support for fractional seconds.
17312         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
17313         (gmtime, localtime, mktime): Remove decls; not needed with C89.
17314         (to_hour): First arg is now long int, not int.
17315         (to_year): Returns long int, not int.
17316         Don't treat year -70 like 70.
17317         (tm_diff): Returns long int, not int.
17318         (lookup_word): Use bool instead of int when appropriate.
17319         (yylex): Use size_t for count, not int.
17320         Detect overflow when parsing large integer constants.
17321         Add support for fractions.
17322         (get_date): Make pointers 'const' if possible.
17323         Use more-portable code to detect integer overflow.
17324         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
17325         Don't use ctime; it's not reliable if the year has >4 digits.
17326
17327         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
17328         This is for compatibility with BSD.
17329
17330         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
17331         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
17332         From coreutils' system.h.
17333
17334         * lib/userspec.c: Don't include "posixver.h".
17335         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
17336         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
17337         compatible extension.  Simplify code by removing a boolean int
17338         that was always nonzero if a string was nonnull.
17339
17340 2004-03-30  Jim Meyering  <jim@meyering.net>
17341
17342         Merge from coreutils.
17343
17344         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
17345         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
17346         on some systems one must include <grp.h> before it.
17347         Reported by Christian Krackowizer.
17348
17349 2004-03-30  Jim Meyering  <jim@meyering.net>
17350
17351         Merge from coreutils.
17352
17353         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
17354
17355         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
17356         an empty input stream.
17357
17358         * lib/readtokens.c: Include <stdbool.h>.
17359         (readtoken): Use `size_t' rather than int/long.
17360         All callers adjusted.
17361         Use `bool' rather than `int' where appropriate.
17362         Use memset rather than an explicit loop.
17363         Use x2nrealloc rather than xrealloc.
17364         Allow the use of `\0' as a delimiter.
17365         (readtokens): Likewise.
17366         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
17367
17368 2004-03-30  Jim Meyering  <jim@meyering.net>
17369
17370         * m4/realloc.m4: Remove file, since now it does no more than
17371         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
17372         the `configure.ac' section of module/realloc.
17373         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
17374
17375 2004-03-30  Bruno Haible  <bruno@clisp.org>
17376
17377         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
17378         nonnull.
17379
17380 2004-03-29  Paul Eggert  <eggert@twinsun.com>
17381
17382         Merge changes to getloadavg.c from coreutils and Emacs.
17383
17384         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
17385         Define to an expression, not to the empty string.
17386         Include cloexec.h and xalloc.h.
17387         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
17388         Use set_cloexec_flag rather than rolling our own.
17389         * lib/cloexec.c, lib/cloexec.h: New files.
17390
17391 2004-03-29  Paul Eggert  <eggert@twinsun.com>
17392
17393         * m4/cloexec.m4: New file.
17394
17395 2004-03-18  Paul Eggert  <eggert@twinsun.com>
17396
17397         * lib/getopt.h: Sync with libc CVS.
17398
17399 2004-03-18  Paul Eggert  <eggert@twinsun.com>
17400             Bruno Haible  <bruno@clisp.org>
17401
17402         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
17403         mbswidth.
17404
17405 2004-03-18  Paul Eggert  <eggert@twinsun.com>
17406             Bruno Haible  <bruno@clisp.org>
17407
17408         * lib/mbswidth.h: Include <wchar.h> only if
17409         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
17410         <wchar.h>.
17411         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
17412
17413 2004-03-09  Paul Eggert  <eggert@twinsun.com>
17414
17415         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
17416         Sync with libc CVS.
17417         * lib/getopt_int.h: New file, also synced from libc.
17418
17419 2004-03-09  Paul Eggert  <eggert@twinsun.com>
17420
17421         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
17422         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
17423         Bring back getopt.c, getopt.h, getopt1.c.
17424
17425 2004-03-07  Paul Eggert  <eggert@twinsun.com>
17426
17427         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
17428         All uses changed.  Check for sa_sigaction member; this fixes
17429         a bug first reported by Jason Andrade in
17430         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
17431
17432 2004-03-07  Paul Eggert  <eggert@twinsun.com>
17433
17434         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
17435         '#if' expressions.  Unlike the code it replaces, it does not
17436         depend on (defined _SC_PAGESIZE).  However, it does depend on
17437         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
17438         first reported by Jason Andrade in
17439         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
17440
17441 2004-02-25  Simon Josefsson  <jas@extundo.com>
17442
17443         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
17444
17445 2004-02-25  Simon Josefsson  <jas@extundo.com>
17446
17447         * lib/strdup.h: New file.
17448         * lib/strdup.c: Include it.
17449         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
17450         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
17451
17452 2004-02-23  Karl Berry  <karl@gnu.org>
17453
17454         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
17455         (from fencepost.gnu.org:/gd/gnuorg).
17456
17457 2004-02-23  Karl Berry  <karl@gnu.org>
17458
17459         * config/srclistvars.sh (GNUORG) [karl]: redefine.
17460         * config/srclist.txt: add maintain/standards documents.
17461
17462 2004-02-18  Bruno Haible  <bruno@clisp.org>
17463
17464         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
17465         Reported by Derek Robert Price <derek@ximbiot.com>.
17466
17467 2004-02-16  Karl Berry  <karl@gnu.org>
17468
17469         * config/mkinstalldirs, install-sh: update from automake.
17470
17471 2004-02-06  Karl Berry  <karl@gnu.org>
17472
17473         * m4/po.m4: update from gettext 0.14.1.
17474
17475 2004-02-06  Karl Berry  <karl@gnu.org>
17476
17477         * lib/config.charset: update from gettext 0.14.1.
17478
17479 2004-02-05  Paul Eggert  <eggert@twinsun.com>
17480
17481         Add comments and code, prompted by suggestions from Bruno Haible
17482         for sh-quote.
17483         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
17484         describing the enum quoting_style values.
17485         * lib/quotearg.c (quotearg_alloc): New function.
17486         (quotearg_buffer_restyled): Treat lone { and } as special.
17487         Treat = as special.  Work around bug with older shells
17488         that "see" a '\' that is really the 2nd byte of a multibyte char.
17489         Quote empty string with shell_quoting_style.
17490
17491 2004-02-03  Bruno Haible  <bruno@clisp.org>
17492
17493         * m4/pipe.m4: New file, from GNU gettext.
17494
17495 2004-02-03  Bruno Haible  <bruno@clisp.org>
17496
17497         * lib/pipe.h: New file, from GNU gettext.
17498         * lib/pipe.c: New file, from GNU gettext.
17499
17500 2004-01-27  Bruno Haible  <bruno@clisp.org>
17501
17502         * m4/execute.m4: New file, from GNU gettext.
17503
17504 2004-01-27  Bruno Haible  <bruno@clisp.org>
17505
17506         * lib/execute.h: New file, from GNU gettext.
17507         * lib/execute.c: New file, from GNU gettext.
17508         * lib/w32spawn.h: New file, from GNU gettext.
17509
17510 2004-01-24  Paul Eggert  <eggert@twinsun.com>
17511
17512         Merge from diffutils.
17513
17514         * lib/file-type.c (file_type): Add typed memory objects.
17515         * lib/file-type.h (S_TYPEISTMO): New macro.
17516
17517         * lib/c-stack.h (c_stack_action): Remove argv argument.
17518         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
17519         (die): Don't calculate message unless segv_action returns.
17520         (get_stack_location, min_address_from_argv, max_address_from_argv,
17521         volatile stack_base, volatile_stack_size): Remove.
17522         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
17523         that every segmentation violation is a stack overflow.  (Ouch!)
17524         See Debian bug 136249 (still outstanding) for more info about why
17525         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
17526
17527 2004-01-24  Paul Eggert  <eggert@twinsun.com>
17528
17529         Exit-status fix from coreutils.
17530
17531         Use exit_failure consistently in place of EXIT_FAILURE,
17532         so that program exit statuses are consistent on failure.
17533
17534         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
17535         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
17536         * lib/argmatch.h: Comment fix to match the above.
17537         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
17538         Now a macro referring to exit_failure, instead of a separate
17539         variable.  Include "exitfail.h" to get it.
17540         * lib/xstrtol.h: Include "exitfail.h".
17541         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
17542
17543         * lib/long-options.c (parse_long_options): Use prototype
17544         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
17545         for clarity.
17546
17547 2004-01-21  Jim Meyering  <jim@meyering.net>
17548
17549         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
17550         so as not to conflict with a different-sized __mktime_internal
17551         function in GNU libc.
17552         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
17553         Problem building statically-linked `ls' reported by Michael Brunnbauer.
17554
17555 2004-01-20  Karl Berry  <karl@gnu.org>
17556
17557         * config/config.guess: update from config.
17558
17559         * config/srclistvars.sh: GNUWWWLICENSES for karl.
17560
17561 2004-01-20  Bruno Haible  <bruno@clisp.org>
17562
17563         Safer stack allocation.
17564         * lib/setenv.c: Include allocsa.h.
17565         (alloca): Remove fallback definition.
17566         (freea): Remove macro.
17567         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
17568         instead of freea.
17569
17570 2004-01-20  Bruno Haible  <bruno@clisp.org>
17571
17572         * m4/eealloc.m4: New file, from GNU gettext.
17573
17574 2004-01-20  Bruno Haible  <bruno@clisp.org>
17575
17576         * m4/allocsa.m4: New file, from GNU gettext.
17577
17578 2004-01-20  Bruno Haible  <bruno@clisp.org>
17579
17580         * lib/xallocsa.h: New file, from GNU gettext.
17581         * lib/xallocsa.c: New file, from GNU gettext.
17582
17583 2004-01-20  Bruno Haible  <bruno@clisp.org>
17584
17585         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
17586
17587 2004-01-20  Bruno Haible  <bruno@clisp.org>
17588
17589         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
17590         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
17591         specially.
17592
17593 2004-01-20  Bruno Haible  <bruno@clisp.org>
17594
17595         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
17596         patch.
17597
17598 2004-01-20  Bruno Haible  <bruno@clisp.org>
17599
17600         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
17601
17602 2004-01-20  Bruno Haible  <bruno@clisp.org>
17603
17604         * lib/eealloc.h: New file.
17605
17606 2004-01-20  Bruno Haible  <bruno@clisp.org>
17607
17608         * lib/binary-io.h: Avoid warnings on Cygwin.
17609
17610 2004-01-20  Bruno Haible  <bruno@clisp.org>
17611
17612         * lib/allocsa.h: New file, from GNU gettext.
17613         * lib/allocsa.c: New file, from GNU gettext.
17614
17615 2004-01-18  Karl Berry  <karl@gnu.org>
17616
17617         * doc/gpl.texi, doc/lgpl.texi: new files.
17618
17619 2004-01-18  Karl Berry  <karl@gnu.org>
17620
17621         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
17622         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
17623
17624 2004-01-15  Paul Eggert  <eggert@twinsun.com>
17625
17626         Merge from coreutils.
17627
17628         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
17629         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
17630         (gl_DEFAULT_POSIX2_VERSION): Move
17631         the documentation from 'configure' into 'config.hin',
17632         so that 'configure --help' isn't burdened by it and
17633         we don't have to worry about its formatting there.
17634         Reword the documentation so that it's more succinct
17635         and can be run together into a single paragraph.
17636         * m4/same.m4 (gl_SAME): Check for pathconf.
17637
17638 2004-01-15  Paul Eggert  <eggert@twinsun.com>
17639
17640         Merge from coreutils.
17641
17642         * lib/posixver.c: Include posixver.h.
17643
17644         * lib/same.c: Include <stdbool.h>, <limits.h>.
17645         (_POSIX_NAME_MAX): Define if not defined.
17646         (MIN): New macro.
17647         (same_name): If file names are silently truncated, report
17648         that the file names are the same if they are the same after
17649         the silent truncation.
17650
17651         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
17652         conversion function.
17653         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
17654         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
17655         longer needed.
17656
17657 2004-01-15  Jim Meyering  <jim@meyering.net>
17658
17659         Merge from coreutils.
17660
17661         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
17662         if no library is required.
17663         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
17664         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
17665         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
17666         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
17667         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
17668         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
17669         value, $ac_cv_search_crypt, if it's "none required".
17670         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
17671         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
17672         not gl_FUNC_GETLOADAVG.
17673         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
17674         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
17675
17676 2004-01-15  Jim Meyering  <jim@meyering.net>
17677
17678         Merge from coreutils.
17679
17680         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
17681         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
17682         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
17683
17684         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
17685         optional configure-time default.
17686
17687         * lib/version-etc.c (version_etc_copyright): Update copyright date.
17688
17689         * lib/xreadlink.c (xreadlink): Correct outdated comment.
17690
17691 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
17692
17693         Merge from coreutils.
17694
17695         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
17696         value, $ac_cv_search_nanosleep, if it's "none required".
17697
17698 2004-01-14  Paul Eggert  <eggert@twinsun.com>
17699
17700         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
17701         with like-named macro in fnmatch.c.
17702         (EXT): Use an internal constant instead.
17703
17704         Merge fnmatch patches from glibc.
17705         * lib/fnmatch.c (mbsinit): Remove define.
17706         Add libc_hidden_ver (__fnmatch, fnmatch).
17707         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
17708         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
17709
17710 2004-01-14  Karl Berry  <karl@gnu.org>
17711
17712         * config/install-sh: update from automake.
17713
17714 2004-01-13  Karl Berry  <karl@gnu.org>
17715
17716         * config/install-sh: update from automake.
17717
17718 2004-01-09  Karl Berry  <karl@gnu.org>
17719
17720         * config/install-sh: update from automake.
17721
17722 2004-01-05  Karl Berry  <karl@gnu.org>
17723
17724         * config/config.{sub,guess}: update from config.
17725
17726 2003-12-31  Karl Berry  <karl@gnu.org>
17727
17728         * config/depcomp: update from automake.
17729
17730 2003-12-14  Karl Berry  <karl@gnu.org>
17731
17732         * lib/config.charset: update from gettext-runtime.
17733
17734 2003-12-03  Paul Eggert  <eggert@twinsun.com>
17735
17736         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
17737         Bug reported by Alfred M. Szmidt.
17738
17739 2003-12-03  Bruno Haible  <bruno@clisp.org>
17740
17741         * m4/gettext.m4: Upgrade from gettext-0.13.
17742         * m4/po.m4: Upgrade from gettext-0.13.
17743         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
17744         * m4/intmax.m4: New file, from gettext-0.13.
17745         * m4/printf-posix.m4: New file, from gettext-0.13.
17746
17747 2003-11-29  Karl Berry  <karl@gnu.org>
17748
17749         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
17750
17751 2003-11-25  Paul Eggert  <eggert@twinsun.com>
17752             Bruno Haible  <bruno@clisp.org>
17753
17754         * lib/printf-parse.h: Don't include sys/types.h.
17755         (ARG_NONE): New macro.
17756         (char_directive): Change type of *arg_index fields to size_t.
17757         * lib/printf-parse.c: Don't include sys/types.h.
17758         (SSIZE_MAX): Remove macro.
17759         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
17760         Remove unnecessary overflow check.
17761         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
17762         fields.
17763
17764 2003-11-25  Bruno Haible  <bruno@clisp.org>
17765
17766         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
17767
17768 2003-11-25  Bruno Haible  <bruno@clisp.org>
17769
17770         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
17771         gt_TYPE_SSIZE_T.
17772
17773 2003-11-24  Paul Eggert  <eggert@twinsun.com>
17774
17775         * modules/alloca: Remove dependency on xalloc.
17776
17777 2003-11-24  Paul Eggert  <eggert@twinsun.com>
17778
17779         * lib/alloca.c: Remove dependency on xalloc module.
17780         (xalloc_die): Remove.
17781         (memory_full) [!defined emacs]: New macro.
17782         [!defined emacs]: Don't include xalloc.h.
17783         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
17784         address arithmetic overflows.  Change datatypes a bit to avoid
17785         unnecessary casts.
17786
17787 2003-11-22  Jim Meyering  <jim@meyering.net>
17788
17789         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
17790         s/size/size_t/.
17791
17792 2003-11-21  Karl Berry  <karl@gnu.org>
17793
17794         * config/config.{sub,guess}: update from config.
17795
17796 2003-11-18  Karl Berry  <karl@gnu.org>
17797
17798         * config/config.{sub,guess}: update from config.
17799
17800         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
17801
17802 2003-11-17  Paul Eggert  <eggert@twinsun.com>
17803
17804         * README: Mention that S+T cannot overflow if S is the size of
17805         an existing object and T is sufficiently small.
17806
17807 2003-11-17  Jim Meyering  <jim@meyering.net>
17808
17809         On systems without utime and without a utimes function capable of
17810         dealing with a NULL struct utimbuf* argument, this utime replacement
17811         could -- in unusual circumstances -- leak a file descriptor.
17812         * lib/utime.c: Include <unistd.h> and <errno.h>.
17813         (utime_null): Be sure to close `fd' and to preserve errno.
17814         Reported by Geoff Collyer via Arnold Robbins.
17815
17816 2003-11-17  Bruno Haible  <bruno@clisp.org>
17817
17818         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
17819         (Depends-on): Add xsize.
17820
17821 2003-11-17  Bruno Haible  <bruno@clisp.org>
17822
17823         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
17824
17825 2003-11-17  Bruno Haible  <bruno@clisp.org>
17826
17827         * lib/vasnprintf.c (alloca): Remove fallback definition.
17828         (freea): Remove definition.
17829         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
17830         Reported by Paul Eggert.
17831
17832 2003-11-16  Paul Eggert  <eggert@twinsun.com>
17833             Bruno Haible  <bruno@clisp.org>
17834
17835         Protect against address arithmetic overflow.
17836         * lib/printf-args.h: Include stddef.h.
17837         (arguments): Change type of field 'count' to size_t.
17838         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
17839         'unsigned int' where appropriate.
17840         * lib/printf-parse.h: Include sys/types.h.
17841         (char_directive): Change type of *arg_index fields to ssize_t.
17842         (char_directives): Change type of fields 'count', max_*_length to
17843         size_t.
17844         * lib/printf-parse.c: Include sys/types.h and xsize.h.
17845         (SSIZE_MAX): Define fallback value.
17846         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
17847         instead of 'int' where appropriate. Check a_allocated, d_allocated
17848         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
17849         * lib/vasnprintf.c: Include xsize.h.
17850         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
17851         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
17852         overflow. Avoid wraparound when converting a width or precision from
17853         decimal to binary.
17854
17855 2003-11-16  Bruno Haible  <bruno@clisp.org>
17856
17857         Update from GNU gettext.
17858         * lib/printf-parse.c: Generalize to it can be compiled for wide
17859         strings.
17860         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
17861         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
17862         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
17863         SNPRINTF): New macros.
17864         Don't include <alloca.h> if the file is used inside libintl.
17865         (local_wcslen): New function, for Solaris 2.5.1.
17866         (VASNPRINTF): Use it instead of wcslen.
17867
17868 2003-11-16  Bruno Haible  <bruno@clisp.org>
17869
17870         * lib/xsize.h (xmax): New function.
17871         (xsum, xsum3, xsum4): Declare as "pure" functions.
17872
17873 2003-11-12  Paul Eggert  <eggert@twinsun.com>
17874
17875         * modules/xalloc (Files): Undo latest change, since xalloc.h
17876         no longer needs SIZE_MAX or PTRDIFF_MAX.
17877
17878 2003-11-12  Paul Eggert  <eggert@twinsun.com>
17879
17880         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
17881         gl_PTRDIFF_MAX.
17882
17883 2003-11-12  Paul Eggert  <eggert@twinsun.com>
17884
17885         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
17886         "return", to pacify some unknown compiler.  Problem reported
17887         by Joerg Schilling.
17888
17889 2003-11-12  Paul Eggert  <eggert@twinsun.com>
17890
17891         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
17892         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
17893         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
17894         heuristic is just as accurate as far as we know, and it removes a
17895         dependency on size_max.m4 and ptrdiff_max.m4.
17896
17897 2003-11-11  Bruno Haible  <bruno@clisp.org>
17898
17899         * modules/xsize (Files): Add m4/size_max.m4.
17900         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
17901
17902 2003-11-11  Bruno Haible  <bruno@clisp.org>
17903
17904         * m4/size_max.m4: New file.
17905         * m4/ptrdiff_max.m4: New file.
17906         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
17907         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
17908         (gl_XALLOC): Invoke it.
17909
17910 2003-11-11  Bruno Haible  <bruno@clisp.org>
17911
17912         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
17913         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
17914         defined.
17915
17916 2003-11-10  Paul Eggert  <eggert@twinsun.com>
17917
17918         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
17919         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
17920         rejected some allocations of exactly SIZE_MAX - 2 bytes.
17921         From Bruno Haible.
17922         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
17923         not (size_t) -1, since it's defined here.
17924
17925 2003-11-09  Karl Berry  <karl@gnu.org>
17926
17927         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
17928
17929 2003-11-06  Paul Eggert  <eggert@twinsun.com>
17930
17931         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
17932         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
17933         Reject sizes of exactly SIZE_MAX bytes.
17934         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
17935         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
17936
17937 2003-11-05  Bruno Haible  <bruno@clisp.org>
17938
17939         * lib/xsize.h: Include limits.h, to avoid a possible collision with
17940         SIZE_MAX defined in <limits.h> on Solaris.
17941
17942 2003-11-04  Jim Meyering  <jim@meyering.net>
17943
17944         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
17945         variable names, rather than @VAR@.
17946         * modules/poll: Likewise.
17947
17948 2003-11-04  Bruno Haible  <bruno@clisp.org>
17949
17950         * modules/xsize: New file.
17951         * modules/linebreak: Depend on xsize.
17952         * MODULES.html.sh (func_all_modules): Add xsize.
17953
17954 2003-11-04  Bruno Haible  <bruno@clisp.org>
17955
17956         * m4/xsize.m4: New file.
17957
17958 2003-11-04  Bruno Haible  <bruno@clisp.org>
17959
17960         * lib/xsize.h: New file.
17961         * lib/linebreak.c: Include xsize.h.
17962         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
17963         argument for overflow.
17964         Suggested by Paul Eggert.
17965
17966 2003-11-03  Karl Berry  <karl@gnu.org>
17967
17968         * config/config.{guess,sub}: update from config.
17969
17970 2003-11-03  Jim Meyering  <jim@meyering.net>
17971
17972         * modules/userspec (lib_SOURCES): Add userspec.h.
17973         (Include): Add "userspec.h".
17974         Improve description.
17975
17976 2003-11-03  Jim Meyering  <jim@meyering.net>
17977
17978         * lib/userspec.c: Include "userspec.h".
17979         * lib/userspec.h: New file.
17980
17981 2003-11-03  Bruno Haible  <bruno@clisp.org>
17982
17983         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
17984
17985 2003-11-03  Bruno Haible  <bruno@clisp.org>
17986
17987         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
17988         available, to avoid (extremely rare) race condition.
17989         Suggested by Paul Eggert.
17990
17991 2003-11-02  Karl Berry  <karl@gnu.org>
17992
17993         * config/srclist.txt (vasprintf.c): sync broken, sigh.
17994
17995 2003-10-31  Paul Eggert  <eggert@twinsun.com>
17996
17997         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
17998         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
17999         (read_filesystem_list): Set and use me_type_malloced.
18000         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
18001         whatever the type happens to be), for brevity and consistency.
18002         Check for size calculation overflow on Alphas running OSF/1.
18003
18004 2003-10-31  Jim Meyering  <jim@meyering.net>
18005
18006         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
18007
18008         * lib/linebuffer.c: Include <string.h> for declaration of memset.
18009
18010 2003-10-30  Paul Eggert  <eggert@twinsun.com>
18011             Bruno Haible  <bruno@clisp.org>
18012
18013         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
18014         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
18015
18016 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
18017
18018         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
18019         netbsd*-gnu*.  Suggested by Robert Millan.
18020
18021 2003-10-29  Paul Eggert  <eggert@twinsun.com>
18022
18023         * modules/group-member: Depend on stdbool.
18024
18025 2003-10-29  Paul Eggert  <eggert@twinsun.com>
18026
18027         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
18028
18029 2003-10-29  Paul Eggert  <eggert@twinsun.com>
18030
18031         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
18032         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
18033         after the 'gnu' in these cases.  This fixes some bugs in the
18034         previous change, and is based on suggestions by Robert Millan.
18035
18036 2003-10-29  Paul Eggert  <eggert@twinsun.com>
18037
18038         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
18039         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
18040         no longer needed.
18041         * lib/quotearg.c (quotearg_n_options): Use it.
18042         * lib/group-member.c: Include <stdbool.h>.
18043         (free_group_info): Arg is now const *; don't free arg.
18044         (get_group_info): Now returns bool and accepts struct group_info *,
18045         rather than returning a malloc'ed struct group_info *.
18046         All uses changed.  Check for overflow in internal size calculation.
18047
18048         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
18049         rather than xmalloc/xrealloc.
18050         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
18051         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
18052         conformance bug: the old code used a pointer after freeing the
18053         storage that it addressed.
18054         * lib/hash.c (hash_initialize): Simplify the code by using
18055         xalloc_oversized rather than doing it by hand.
18056         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
18057         the buffer preserved.  Use free and xmalloc instead.
18058         * lib/quotearg.c (quotearg_n_options): Likewise.
18059         Use a simpler test for size overflow.  Don't use xalloc_oversized
18060         because unsigned int might be wider than size_t (!); this suggests
18061         that we should switch from unsigned int to size_t for slot numbers.
18062
18063 2003-10-28  Paul Eggert  <eggert@twinsun.com>
18064
18065         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
18066         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
18067         NetBSD kernels.  Requested by Richard Stallman.
18068
18069 2003-10-27  Paul Eggert  <eggert@twinsun.com>
18070
18071         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
18072         to allocate the returned structure.  Do not allocate a subarray,
18073         as x2nrealloc will do that.
18074         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
18075         instead of xnrealloc.
18076         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
18077
18078 2003-10-27  Bruno Haible  <bruno@clisp.org>
18079
18080         * lib/stdbool_.h: Better support for BeOS.
18081
18082 2003-10-26  Paul Eggert  <eggert@twinsun.com>
18083
18084         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
18085         now uses inline.
18086
18087 2003-10-26  Paul Eggert  <eggert@twinsun.com>
18088
18089         * lib/xalloc.h (xalloc_oversized): New static inline function, for
18090         callers that want to do their own size-overflow checking.  Include
18091         <stdbool.h>, since xalloc_oversized returns bool.
18092         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
18093         to use xalloc_oversized.
18094
18095         Add two functions x2realloc, x2nrealloc, for programs that grow
18096         arrays dynamically by doubling their sizes.
18097         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
18098         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
18099         New functions.
18100
18101         Port to C99 semantics for 'inline' of external functions.
18102         Bug reported by Bruno Haible.
18103         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
18104         with the old contents of xnmalloc.
18105         (xnmalloc, xmalloc): Use it.
18106         (xnrealloc_inline): New static inline function,
18107         with the old contents of xnrealloc.
18108         (xnrealloc, xrealloc): Use it.
18109
18110         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
18111         that.
18112
18113 2003-10-26  Karl Berry  <karl@gnu.org>
18114
18115         * config/srclist.txt (COPYING.DOC): no longer available from
18116         /gd/gnuorg; don't know where the ultimate source is.
18117
18118 2003-10-25  Paul Eggert  <eggert@twinsun.com>
18119
18120         Fix several address-calculation bugs in the hash modules,
18121         plus some minor code cleanup.
18122
18123         * lib/hash.h: Include <stdbool.h>, for bool.
18124         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
18125         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
18126         hash_get_n_entries, hash_get_max_bucket_length,
18127         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
18128         hash_rehash): Use size_t rather than unsigned.
18129         * lib/hash.c (struct hash_table, hash_get_n_buckets,
18130         hash_get_n_buckets_used, hash_get_n_entries,
18131         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
18132         hash_get_entries, hash_do_for_each, hash_string, is_prime,
18133         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
18134         Likewise.
18135         (SIZE_MAX): Define if not defined.
18136         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
18137         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
18138         hash_print):
18139         Use const * when possible.
18140         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
18141         (check_tuning): Fix bug: if tuning parameters were very close to
18142         0 or 1, rounding errors could have caused subscript violations.
18143         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
18144         (hash_initialize): Add 'fail:' label
18145         to free table and return NULL, and use it to simplify code.
18146         Use calloc rather than clearing the storage ourself.
18147         (hash_initialize, hash_rehash): Check for arithmetic overflow in
18148         buffer size calculations.
18149         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
18150         Include <stddef.h>, for size_t.
18151         * lib/hash-pjw.c (hash_pjw): Likewise.
18152         Switch to method described by Bruno Haible.
18153         Include <limits.h>, for CHAR_BIT.
18154         (SIZE_BITS): New macro.
18155
18156 2003-10-23  Paul Eggert  <eggert@twinsun.com>
18157
18158         * m4/getline.m4 (AM_FUNC_GETLINE):
18159         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
18160         hosts.  Problem reported by Derek Robert Price in
18161         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
18162         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
18163         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
18164
18165 2003-10-21  Paul Eggert  <eggert@twinsun.com>
18166
18167         * lib/getndelim2.c (getndelim2): When size calculation overflows,
18168         ceiling the allocation at NMAX bytes rather than silently
18169         discarding input bytes before NMAX is reached.  This makes
18170         a difference only if NMAX exceeds SIZE_MAX / 2.
18171
18172         * lib/obstack.c: Merge from glibc.
18173         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
18174         Add libc_hidden_def (_obstack_newchunk).
18175         (_obstack_free) [! defined _LIBC]: Remove.
18176         [defined _LIBC]: Make a strong alias from obstack_free, rather than
18177         a clone of the function body.
18178         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
18179         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
18180
18181         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
18182         glibc.
18183         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
18184         arg to memcpy.
18185
18186         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
18187         (obstack_ptr_grow_fast, obstack_int_grow_fast):
18188         Don't use lvalue casts, as GCC plans to remove support for them
18189         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
18190         was also present in the non-GCC version, indicating that this
18191         code had always been buggy and had never been widely used.
18192         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
18193         Use the fast variant of each macro, rather than copying the
18194         definiens of the fast variant; that way, we'll be more likely to
18195         catch future bugs in the fast variants.
18196
18197 2003-10-20  Bruno Haible  <bruno@clisp.org>
18198
18199         * modules/wait-process: New file.
18200         * MODULES.html.sh (func_all_modules): Add wait-process.
18201
18202 2003-10-20  Bruno Haible  <bruno@clisp.org>
18203
18204         * m4/wait-process.m4: New file.
18205
18206 2003-10-20  Bruno Haible  <bruno@clisp.org>
18207
18208         * lib/wait-process.h: New file, from GNU gettext.
18209         * lib/wait-process.c: New file, from GNU gettext.
18210
18211 2003-10-19  Jim Meyering  <jim@meyering.net>
18212
18213         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
18214         HPUX 10.20.
18215
18216 2003-10-18  Karl Berry  <karl@gnu.org>
18217
18218         * config/config.guess: update from config.
18219
18220 2003-10-16  Paul Eggert  <eggert@twinsun.com>
18221
18222         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
18223         (getgroups): First arg is int, not size_t.
18224         Don't let 'free' mangle errno.
18225
18226 2003-10-16  Paul Eggert  <eggert@twinsun.com>
18227
18228         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
18229
18230 2003-10-16  Karl Berry  <karl@gnu.org>
18231
18232         * config/config.{guess,sub}: update from config.
18233
18234 2003-10-16  Jim Meyering  <jim@meyering.net>
18235
18236         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
18237         memcpy.
18238
18239 2003-10-15  Paul Eggert  <eggert@twinsun.com>
18240
18241         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
18242         (SIZE_MAX): Remove.
18243         (new_exclude, add_exclude_file): Initial size no longer needs to
18244         be a power of 2.
18245         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
18246         our own address arithmetic overflow checking.
18247
18248         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
18249         (fnmatch): Do not alloca more than 2000 wide characters;
18250         instead, use malloc for large buffers.
18251         Check for address arithmetic overflow, and return -1
18252         with errno set to ENOMEM in that case.
18253         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
18254         (NEW_PATTERN): Do not alloca more than 8000 bytes;
18255         instead, return -1.  Check for address arithmetic overflow.
18256
18257 2003-10-14  Paul Eggert  <eggert@twinsun.com>
18258
18259         Handle invalid suffixes and overflow independently, so that
18260         callers can treat them independently as needed.  Fix some bugs in
18261         suffix handling, e.g., "100k@" was not diagnosed as an invalid
18262         suffix for a human-readable blocksize.  The major caller-visible
18263         change is the addition of a new
18264         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
18265         that both overflow and suffix chars were found.
18266
18267         * lib/human.c (humblock): Don't check separately for invalid suffix
18268         char; that is xstrtoumax's job (now that its bug is fixed).
18269         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
18270         INTMAX_MAX]: New macros.
18271         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
18272         TYPE_MAXIMUM): New macros.
18273         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
18274         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
18275         if overflow occurs, as it's what __strtol does and it's more useful
18276         in practice.
18277         (__xstrtol): If __strtol reports some error other than ERANGE,
18278         reflect it to the caller as LONGINT_INVALID.  If it reports
18279         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
18280         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
18281         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
18282         value.
18283         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
18284         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
18285         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
18286         [defined UINTMAX_MAX]: New macros.
18287
18288 2003-10-14  Bruno Haible  <bruno@clisp.org>
18289
18290         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
18291
18292 2003-10-14  Bruno Haible  <bruno@clisp.org>
18293
18294         * m4/sig_atomic_t: New file, from GNU gettext.
18295         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
18296
18297 2003-10-14  Bruno Haible  <bruno@clisp.org>
18298
18299         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
18300         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
18301         Also use volatile where needed.
18302
18303 2003-10-12  Paul Eggert  <eggert@twinsun.com>
18304
18305         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
18306         Change maintainer from Bruno Haible to 'all'.
18307
18308 2003-10-12  Paul Eggert  <eggert@twinsun.com>
18309
18310         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
18311
18312 2003-10-12  Paul Eggert  <eggert@twinsun.com>
18313
18314         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
18315         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
18316         and define in terms of the other primitives.
18317         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
18318         (SIZE_MAX): Define if not already defined.
18319         (array_size_overflow): New function.
18320         (xalloc_die): Abort instead of exiting if 'error' returns.
18321         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
18322         (xmalloc, xrealloc): Use them.
18323         (xcalloc): Check for address arithmetic overflow.
18324         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
18325         a bit faster than strcpy.
18326
18327 2003-10-10  Simon Josefsson  <jas@extundo.com>
18328
18329         * modules/argp (Depends-on): Add restrict and strcase.
18330
18331 2003-10-10  Simon Josefsson  <jas@extundo.com>
18332
18333         * m4/argp.m4: Add AC_C_INLINE.
18334
18335 2003-10-08  Paul Eggert  <eggert@twinsun.com>
18336
18337         Merge getpass from libc, plus a few fixes.
18338
18339         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
18340         Include <stdbool.h>.
18341         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
18342         __fsetlocking to empty.
18343         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
18344         do include <bits/libc-lock.h>.
18345         Do not include <fcntl.h>; not needed.
18346         [_LIBC]: Include <wchar.h>.
18347         (NOTCANCEL_MODE): New macro.
18348         (flockfile, funlockfile) [_LIBC]: New macros.
18349         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
18350         [!_LIBC]: New macros.
18351         (call_fclose): New function.
18352         (getpass): Use it.  Save tty stream separately; this simplifies the
18353         code and makes it more reliable if stdin happens to equal stdout.
18354         Invoke __fsetlocking on tty.
18355         Handle thread cancellation if needed.
18356         Namespace cleanup (use __tcgetattr, __getline).
18357         Use bool for Booleans.
18358         [USE_IN_LIBIO]: Handle wide streams.
18359         [!_LIBC]: Unconditionally do the fseek, since we don't know what
18360         stream might go where.
18361
18362         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
18363         doesn't have to include <stdio.h> before us.
18364         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
18365         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
18366         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
18367         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
18368         if not declared, so that we can use getpass.c code from libc without
18369         rewriting it.
18370         (flockfile, ftrylockfile, funlockfile): New macros.
18371
18372 2003-10-08  Paul Eggert  <eggert@twinsun.com>
18373
18374         * modules/getpass: Depend on stdbool.
18375
18376 2003-10-08  Paul Eggert  <eggert@twinsun.com>
18377
18378         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
18379
18380 2003-10-07  Karl Berry  <karl@gnu.org>
18381
18382         * config/config.{guess,sub}: update from config.
18383
18384 2003-10-06  Jim Meyering  <jim@meyering.net>
18385             Bruno Haible  <bruno@clisp.org>
18386
18387         This lets translators provide better translations for the
18388         "Written by ..." part of --version output.
18389         * lib/version-etc.h: Include stdarg.h.
18390         (version_etc_copyright): Declare as readonly.
18391         (version_etc): Make this function variadic with a NULL-terminated list
18392         of author name strings.
18393         (version_etc_va): New declaration.
18394         * lib/version-etc.c: Include stdarg.h, stdlib.h.
18395         (version_etc_copyright): Declare as readonly.
18396         (version_etc_va): New function. Provide a different translatable string
18397         for each possible number of authors < 10. Abbreviate when there are 10
18398         authors or more.
18399         (version_etc): Make this function variadic. Call version_etc_va.
18400         Suggestion from Gary V. Vaughan.
18401
18402         * lib/long-options.h (parse_long_options): Change prototype: the
18403         authors string is moved to the end and becomes variadic.
18404         * lib/long-options.c: Include stdarg.h.
18405         (parse_long_options): Make this function variadic, too.
18406         Call version_etc_va, not version_etc.
18407
18408 2003-10-06  Bruno Haible  <bruno@clisp.org>
18409
18410         * modules/version-etc-2: Remove file.
18411         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
18412
18413 2003-10-06  Bruno Haible  <bruno@clisp.org>
18414
18415         * modules/fatal-signal: New file.
18416         * MODULES.html.sh (func_all_modules): Add fatal-signal.
18417
18418 2003-10-06  Bruno Haible  <bruno@clisp.org>
18419
18420         * m4/fatal-signal.m4: New file.
18421         * m4/signalblocking.m4: New file, from GNU gettext.
18422
18423 2003-10-06  Bruno Haible  <bruno@clisp.org>
18424
18425         * lib/version-etc-2.h: Remove file.
18426         * lib/version-etc-2.c: Remove file.
18427
18428 2003-10-06  Bruno Haible  <bruno@clisp.org>
18429
18430         * lib/fatal-signal.h: New file, from GNU gettext.
18431         * lib/fatal-signal.c: New file, from GNU gettext.
18432
18433 2003-10-05  Paul Eggert  <eggert@twinsun.com>
18434
18435         * README: Rework advice for preventing empty .o files.
18436         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
18437         not <sys/types.h>.
18438
18439 2003-10-04  Karl Berry  <karl@gnu.org>
18440
18441         * lib/argp*: update from libc.
18442
18443 2003-10-04  Karl Berry  <karl@gnu.org>
18444
18445         * config/config.{guess,sub}: update from config.
18446
18447 2003-10-02  Bruno Haible  <bruno@clisp.org>
18448
18449         * modules/lchown (Include): Add lchown.h.
18450         * modules/time_r (Include): Use "..." syntax.
18451         * modules/xgetdomainname (Include): Add xgetdomainname.h.
18452
18453 2003-10-01  Simon Josefsson  <jas@extundo.com>
18454
18455         * MODULES.html.sh (func_all_modules): Move gethostname from section
18456         'based on' to section 'lacking' POSIX:2001.
18457
18458 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
18459
18460         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
18461         to output mode on the same stream.
18462
18463 2003-09-29  Paul Eggert  <eggert@twinsun.com>
18464
18465         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
18466         Fix arg typo in previous patch.
18467
18468 2003-09-28  Jim Meyering  <jim@meyering.net>
18469
18470         * lib/error.c: Correct cpp indentation.
18471
18472 2003-09-27  Paul Eggert  <eggert@twinsun.com>
18473
18474         * modules/free: New file.
18475
18476 2003-09-27  Paul Eggert  <eggert@twinsun.com>
18477
18478         * m4/free.m4: New file.
18479
18480 2003-09-27  Paul Eggert  <eggert@twinsun.com>
18481
18482         * lib/minmax.h (MIN, MAX)
18483         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
18484         Omit the special code that used __typeof__, since we worry that
18485         it could be more trouble than it's worth.  See:
18486         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
18487         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
18488
18489         * lib/free.c: New file.
18490
18491 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
18492
18493         Trivial fixes to Makefile.am parts of module listings.
18494         * modules/strstr: Append strstr.h to lib_SOURCES.
18495         * modules/strcase: Likewise, for strcase.h.
18496
18497 2003-09-27  Karl Berry  <karl@gnu.org>
18498
18499         * config/mkinstalldirs: update from automake.
18500
18501 2003-09-26  Paul Eggert  <eggert@twinsun.com>
18502
18503         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
18504         (error_tail): Do not loop, reallocating temporary buffer, since
18505         the output cannot contain more wide characters than the input
18506         contains bytes, the size must be big enough already.  This avoids
18507         one potential size overflow calculation.  Check for size overflow
18508         when calculating temporary buffer size.  Free temporary buffer
18509         when done, if it was allocated with malloc; this plugs a memory
18510         leak.  Remove casts from void * to pointers, that are no longer
18511         needed now that we're assuming C89 or better.
18512
18513         Merge error changes from glibc.
18514
18515         * lib/error.c, error.h: Update copyright notice header to match glibc.
18516         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
18517         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
18518         Disable cancellation while printing error.
18519         * lib/error.h: Prepend __ to parameter names.
18520
18521 2003-09-26  Jim Meyering  <jim@meyering.net>
18522
18523         * lib/error.c (error_tail): Move some declarations
18524         into inner scope where the local variables are used.
18525
18526 2003-09-26  Bruno Haible  <bruno@clisp.org>
18527
18528         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
18529         stpncpy().
18530         Don't define stpncpy through config.h; it's now done through stpncpy.h.
18531
18532 2003-09-26  Bruno Haible  <bruno@clisp.org>
18533
18534         * lib/stpncpy.h (gnu_stpncpy): New declaration.
18535         (stpncpy): Define as alias for gnu_stpncpy.
18536         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
18537
18538 2003-09-25  Simon Josefsson  <jas@extundo.com>
18539
18540         * lib/xgetdomainname.h: New file.
18541         * lib/xgetdomainname.c: New file.
18542
18543 2003-09-25  Simon Josefsson  <jas@extundo.com>
18544             Bruno Haible  <bruno@clisp.org>
18545
18546         * modules/getdomainname: New file.
18547         * modules/xgetdomainname: New file.
18548         * MODULES.html.sh (func_all_modules): Add getdomainname,
18549         xgetdomainname.
18550
18551 2003-09-25  Simon Josefsson  <jas@extundo.com>
18552             Bruno Haible  <bruno@clisp.org>
18553
18554         * m4/getdomainname.m4: New file.
18555
18556 2003-09-25  Simon Josefsson  <jas@extundo.com>
18557             Bruno Haible  <bruno@clisp.org>
18558
18559         * lib/getdomainname.h: New file.
18560         * lib/getdomainname.c: New file.
18561
18562 2003-09-25  Karl Berry  <karl@gnu.org>
18563
18564         * lib/argp-fmtstream.c, argp-help.c: update from libc.
18565
18566 2003-09-25  Karl Berry  <karl@gnu.org>
18567
18568         * config/install-sh: update from automake.
18569
18570 2003-09-25  Bruno Haible  <bruno@clisp.org>
18571
18572         * modules/version-etc-2: New file, from modules/version-etc with
18573         modifications.
18574         * MODULES.html.sh (func_all_modules): Add version-etc-2.
18575
18576 2003-09-25  Bruno Haible  <bruno@clisp.org>
18577
18578         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
18579         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
18580
18581 2003-09-24  Simon Josefsson  <jas@extundo.com>
18582
18583         * modules/xgethostname: Add xgethostname.h.
18584
18585 2003-09-24  Paul Eggert  <eggert@twinsun.com>
18586
18587         * lib/linebuffer.c (freebuffer): Don't free the argument, just
18588         the buffer associated with the argument.  Bug reported by
18589         Simon Josefsson.
18590
18591 2003-09-24  Paul Eggert  <eggert@twinsun.com>
18592
18593         * README: Document assumptions that 'int' is at least 32 bits
18594         wide, that integer arithmetic is 2's complement without overflow,
18595         that there are no holes in integer values, that adding sizes of
18596         two nonoverlapping objects can't overflow, and that all-bits-zero
18597         yields scalar zero.  Fix spelling and capitalization typos.
18598
18599 2003-09-19  Karl Berry  <karl@gnu.org>
18600
18601         * lib/argp.h: update from libc.
18602
18603 2003-09-17  Paul Eggert  <eggert@twinsun.com>
18604
18605         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
18606         to avoid spurious warnings like "AC_RUN_IFELSE was called before
18607         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
18608
18609 2003-09-17  Paul Eggert  <eggert@twinsun.com>
18610
18611         * gnulib-tool: Use "test -h", not "test -L", for portability
18612         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
18613         (tags_regexp): Remove, since \| doesn't conform to POSIX.
18614         (sed_extract_prog): Issue s commands one-by-one, rather than
18615         using \| in one s command.
18616
18617 2003-09-16  Paul Eggert  <eggert@twinsun.com>
18618
18619         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
18620         input error, instead of returning NULL the next time we are called
18621         (and therefore losing track of errno).
18622
18623 2003-09-16  Bruno Haible  <bruno@clisp.org>
18624
18625         * gnulib-tool (func_create_testdir): Warn about duplicated
18626         dependencies.
18627
18628 2003-09-15  Paul Eggert  <eggert@twinsun.com>
18629
18630         * modules/argmatch, modules/fatal, modules/obstack,
18631         modules/xalloc, modules/xgethostname: Sort dependencies by
18632         importance, not alphabetically.
18633
18634 2003-09-15  Paul Eggert  <eggert@twinsun.com>
18635
18636         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
18637         fails, so that the caller gets the proper errno.
18638
18639         * lib/readutmp.c (read_utmp): Likewise.
18640         Check for fstat error.  Close stream and free storage
18641         when failing.
18642
18643 2003-09-14  Karl Berry  <karl@gnu.org>
18644
18645         * config/srclist.txt (strdup.c): disable for c89 changes.
18646
18647 2003-09-14  Jim Meyering  <jim@meyering.net>
18648
18649         * lib/getloadavg.c: Correct cpp indentation.
18650         * lib/strdup.c: Likewise.
18651         * lib/vasnprintf.c: Likewise.
18652
18653 2003-09-14  Bruno Haible  <bruno@clisp.org>
18654
18655         * modules/fwriteerror: New file.
18656         * MODULES.html.sh (func_all_modules): Add fwriteerror.
18657
18658 2003-09-14  Bruno Haible  <bruno@clisp.org>
18659
18660         * lib/fwriteerror.h: New file.
18661         * lib/fwriteerror.c: New file.
18662
18663 2003-09-12  Paul Eggert  <eggert@twinsun.com>
18664
18665         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
18666         modules/xgethostname, modules/xalloc: Depend on exit.
18667
18668 2003-09-12  Paul Eggert  <eggert@twinsun.com>
18669
18670         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
18671
18672         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
18673         and AC_MINIX, too, so that their extensions are available.
18674
18675         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
18676         This macro has been superseded by gl_BACKUPFILE.
18677
18678         More patches to assume C89 or better.
18679
18680         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
18681
18682         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
18683         unconditionally.
18684         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
18685         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
18686         Include <string.h>, <stdlib.h> unconditionally.
18687         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
18688         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
18689         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
18690         headers or for string.h.
18691         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
18692         or strtoul.
18693
18694         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
18695         headers.
18696         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
18697         * m4/userspec.m4 (gl_USERSPEC): Likewise.
18698         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
18699         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
18700         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
18701         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
18702         memcpy, memset.
18703         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
18704         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
18705         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
18706         strtol.
18707         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
18708         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
18709         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
18710         strtoul.
18711
18712 2003-09-12  Paul Eggert  <eggert@twinsun.com>
18713
18714         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
18715         * lib/obstack.c [!defined _LIBC]: Likewise.
18716         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
18717         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
18718         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
18719
18720         More changes to assume C89 or better.
18721
18722         * lib/error.c (error_tail): Assume vprintf.
18723
18724         * lib/argmatch.c (getenv): Remove decl.
18725         * lib/progreloc.c (get_full_program_name): Define via prototype.
18726         * lib/setenv.c (clearenv): Likewise.
18727         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
18728         needed.
18729         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
18730         (malloc, memcpy): Remove decls.
18731         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
18732         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
18733         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
18734         (memcpy): Remove macro.
18735         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
18736         (__P): Remove.  All uses removed.
18737         (PTR): Remove.  All uses changed to void *.
18738         (CHAR_BIT, NULL): Remove.
18739         (spaces, zeros, memset_space, memset_zero)
18740         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
18741         Remove.
18742         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
18743         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
18744         Define with prototype.
18745         Remove now-unnecessary prototype decl.
18746         (extra_args_spec): Assume ANSI C.  All uses changed.
18747         (extra_args_spec_iso): Remove.
18748         (my_strftime, emacs_strftimeu): Define via prototype.
18749         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
18750         unconditionally.
18751         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
18752         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
18753         (strtoul, strtol): Remove decls.
18754         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
18755         LONG_MAX): Remove.
18756         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
18757         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
18758         (LOCALE_PARAM_PROTO): New macro.
18759         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
18760         (INTERNAL (strtol), strtol): Define with a prototype.
18761         (PARAMS): Remove.  All uses removed.
18762         * lib/tempname.c: Include <string.h> unconditionally.
18763         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
18764         * lib/xgethostname.c (main): Define with a prototype.
18765         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
18766         Include <stdlib.h> unconditionally.
18767         (calloc, malloc, realloc, free): Remove decls.
18768         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
18769         Include <stdlib.h> unconditionally.  Sort include file names.
18770         (strtod): Remove.
18771         (xstrtod): Define with a prototype.
18772         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
18773         (strtol, strtoul): Remove decls.
18774
18775 2003-09-11  Paul Eggert  <eggert@twinsun.com>
18776
18777         More patches to assume C89 or better.
18778         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
18779         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
18780         string.h, memchr, STDC_HEADERS.
18781
18782 2003-09-11  Paul Eggert  <eggert@twinsun.com>
18783
18784         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
18785         Include <stdlib.h>, <string.h> unconditionally.
18786         Remove now-unnecessary cast to char *.
18787         * lib/strnlen.c: Include <string.h> unconditionally.
18788         * lib/yesno.c (yesno): Define with a prototype.
18789
18790 2003-09-11  Bruno Haible  <bruno@clisp.org>
18791
18792         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
18793
18794 2003-09-10  Jim Meyering  <jim@meyering.net>
18795
18796         * lib/error.c: Correct indentation of cpp directives.
18797
18798 2003-09-10  Bruno Haible  <bruno@clisp.org>
18799
18800         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
18801         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
18802         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
18803         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
18804         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
18805         <stdlib.h> and <string.h> checks.
18806         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
18807         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
18808
18809 2003-09-10  Bruno Haible  <bruno@clisp.org>
18810
18811         * lib/strcspn.c: Include <string.h> unconditionally.
18812         * lib/strpbrk.c: Include <string.h> unconditionally.
18813         * lib/strstr.c: Include <string.h> unconditionally.
18814         * lib/unicodeio.c: Include <string.h> unconditionally.
18815         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
18816         * lib/unsetenv.c: Likewise.
18817         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
18818         * lib/yesno.c: Include <stdlib.h> unconditionally.
18819         (rpmatch): Add prototype.
18820
18821 2003-09-09  Paul Eggert  <eggert@twinsun.com>
18822
18823         More patches to assume C89 or better.
18824         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
18825         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
18826         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
18827         or for string.h.
18828         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
18829         stdlib.h.
18830         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
18831         C headers.
18832         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
18833         string.h.
18834         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
18835         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
18836         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
18837         or for string.h.
18838         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
18839         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
18840         C headers.
18841         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
18842         memcpy.
18843         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
18844         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
18845         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
18846         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
18847         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
18848         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
18849         string.h, free.
18850         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
18851         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
18852         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
18853         C headers, or for string.h.
18854         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
18855         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
18856         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
18857         headers, memory.h, stdlib.h, string.h, strings.h.
18858         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
18859         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
18860         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
18861         strchr.
18862         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
18863         headers, memory.h, string.h.
18864         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
18865         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
18866         free.
18867         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
18868         headers.
18869         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
18870         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
18871         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
18872         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
18873         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
18874
18875 2003-09-09  Paul Eggert  <eggert@twinsun.com>
18876
18877         More K&R removal.
18878
18879         * lib/acosl.c (main): Use a prototype.
18880         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
18881         tanl.c: Likewise.
18882
18883         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
18884
18885         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
18886         (getopt, etopt_long, getopt_long_only, _getopt_internal)
18887         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
18888         with a prototype.
18889         * lib/getopt.c (const): Remove macro.
18890         Include <string.h> unconditionally.
18891         (my_index): Remove; all uses changed to strchr.
18892         (strlen): Remove decl.
18893         (exchange): Remove forward decl; no longer needed.
18894         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
18895         Define with prototype.
18896         * lib/getopt1.c (const): Remove macro.
18897         (getopt_long, getopt_long_only, main): Define with prototype.
18898
18899         * lib/getugroups.c: Include <string.h> unconditionally.
18900
18901         * lib/getusershell.c: Include <stdlib.h> unconditionally.
18902         (getusershell, setusershell, endusershell, readname, main):
18903         Define with prototypes.
18904
18905         * lib/group-member.c: Include group-member.h first.
18906         Include <stdlib.h> unconditionally.
18907
18908         * lib/hard-locale.c: Include hard-locale.h first.
18909         Include <stdlib.h>, <string.h> unconditionally.
18910
18911         * lib/hash.c (free, malloc): Remove decls.
18912         Include <stdlib.h> unconditionally.
18913
18914         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
18915         (getenv): Do not declare.
18916
18917         * lib/idcache.c: Include <string.h> unconditionally.
18918
18919         * lib/long-options.c: Include long-options.h first, to test interface.
18920         Include <stdlib.h> unconditionally.
18921
18922         * lib/makepath.c: Include makepath.h first, to test interface.
18923         Include <stdlib.h> and <string.h> unconditionally.
18924
18925         * lib/linebuffer.c: Include <stdlib.h>.
18926         (free): Remove decl.
18927
18928         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
18929         stddef.h. rpl_malloc returns void *, not char *.
18930         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
18931         prototype.
18932
18933         * lib/md5.h: Include <limits.h> unconditionally.
18934         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
18935         (__P): Remove; all uses removed.
18936         * lib/md5.c: Include "md5.h" first.
18937         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
18938         md5_buffer, md5_process_bytes, md5_process_block):
18939         Define with prototypes.
18940         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
18941         * lib/sha.c: Include "sha.h" first.
18942         Include <stdlib.h>, <string.h> unconditionally.
18943
18944         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
18945         * lib/memcmp.c (__ptr_t): Likewise.
18946         * lib/memrchr.c (__ptr_t): Likewise.
18947         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
18948         Include <string.h> unconditionally.
18949         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
18950         * lib/memchr.c: Include <stdlib.h> unconditionally.
18951         * lib/memchr.c (LONG_MAX): Remove.
18952         * lib/memrchr.c (LONG_MAX): Likewise.
18953         * lib/memchr.c (__memchr): Define via a prototype.
18954         * lib/memrchr.c (__memrchr): Likewise.
18955         * lib/memcmp.c (__P): Remove, and remove all uses.
18956         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
18957         Remove forward decls; no longer needed.
18958         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
18959         Use types required by C89 in prototype.
18960
18961         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
18962         * lib/savedir.c: Likewise.
18963         * lib/mkdir.c (free): Remove decl.
18964         * lib/rmdir.c (rmdir): Define with a prototype.
18965         * lib/savedir.c: Include savedir.h first, to test interface.
18966
18967         * lib/mktime.c (STDC_HEADERS): Remove.
18968         Include <stdlib.h>, <string.h> unconditionally.
18969
18970         * lib/modechange.c: Include <stdlib.h> unconditionally.
18971         (malloc): Remove decl.
18972
18973         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
18974         (free): Remove decl.
18975
18976         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
18977         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
18978         (This type really should be intptr_t, but that's a C99ism.)
18979         (_obstack_memcpy): Remove: all uses changed to memcpy.
18980         Include <string.h> unconditionally.
18981         (struct obstack): Assume __STDC__ for types of members
18982         chunkfun, freefun, extra_arg.
18983         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
18984         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
18985         obstack_begin, obstack_specify_allocation,
18986         obstack_specify_allocation_with_arg, obstack_chunkfun,
18987         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
18988         Remove unprototyped decls and the macros that use them.
18989         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
18990         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
18991         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
18992         (defined __STDC__ && __STDC__)]:
18993         Remove nonprototyped code.
18994         Include <stdlib.h> unconditionally.
18995         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
18996         _obstack_allocated_p, _obstack_free, obstack_free,
18997         _obstack_memory_used, print_and_abort):
18998         Define using prototypes.
18999         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
19000         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
19001         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
19002         obstack_next_free, obstack_object_size, obstack_room) [0]:
19003         Remove unused, unprototyped code.
19004
19005         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
19006
19007         * lib/physmem.c (physmem_total, physmem_available, main): Define
19008         with prototypes.
19009
19010         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
19011         (main): Define with a prototype.
19012
19013         * lib/posixver.c (getenv): Remove decl.
19014
19015         * lib/putenv.c (malloc): Returns void *, not char *.
19016         Include <string.h> unconditionally.
19017         (strchr, memcpy, NULL): Do not define.
19018
19019         * lib/readtokens.c: Include readtokens.h first, to test interface.
19020         Include <stdlib.h>, <string.h> unconditionally.
19021         (init_tokenbuffer): Define with a prototype.
19022
19023         * lib/regex.c (PARAMS): Remove.  All uses removed.
19024         All uses of _RE_ARGS removed, too.
19025         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
19026         unconditionally.
19027         (bzero): Assume memset exists.
19028         (memcmp, memcpy, NULL): Remove.
19029         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
19030         char, or assignments to local vars of type signed char.
19031         (init_syntax_once, PREFIX(extract_number_and_incr),
19032         PREFIX(print_partial_compiled_pattern),
19033         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
19034         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
19035         PREFIX(regex_grow_registers), PREFIX(regex_compile),
19036         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
19037         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
19038         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
19039         wcs_compile_range, byte_compile_range, truncate_wchar,
19040         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
19041         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
19042         count_mbs_length, wcs_re_match_2_internal,
19043         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
19044         PREFIX(alt_match_null_string_p),
19045         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
19046         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
19047         regfree, PREFIX(extract_number)): Define with prototype.  Remove
19048         now-unnecessary declaration, if any.
19049         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
19050         regcomp, regexec):
19051         Remove now-unnecessary casts among pointer types.
19052         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
19053
19054         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
19055         (free): Remove decl.
19056
19057         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
19058
19059         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
19060         (free): Remove decl.
19061
19062         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
19063         * lib/xgetcwd.c: Likewise.
19064
19065         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
19066         (free): Remove decl.
19067
19068         * lib/strchrnul.c (strchrnul): Define with a prototype.
19069         Fix bug: c_in was not converted to char before searching.
19070
19071         The following changes are not K&R related:
19072
19073         * lib/group-member.h: Include <sys/types.h>, so that this file is
19074         self-contained.
19075         * lib/makepath.h: Likewise.
19076
19077         * lib/getusershell.c (readname, default_index, line_size, readname):
19078         Use size_t, not int, for sizes.
19079         (readname): If the size overflows, report an error instead of
19080         looping forever.
19081
19082 2003-09-09  Paul Eggert  <eggert@twinsun.com>
19083
19084         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
19085         libc.
19086
19087 2003-09-09  Paul Eggert  <eggert@twinsun.com>
19088
19089         * README: New section: portability guidelines.
19090
19091 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
19092
19093         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
19094         C89 spec.
19095
19096 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
19097
19098         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
19099
19100 2003-09-08  Paul Eggert  <eggert@twinsun.com>
19101
19102         Assume C89 or better; remove K&R cruft.
19103         A few of these changes were first proposed by Derek Robert Price
19104         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
19105
19106         * lib/addext.c: Include <string.h> unconditionally.
19107         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
19108         Don't declare getenv or malloc.
19109
19110         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
19111         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
19112         (NULL): Remove.
19113         (find_stack_direction, alloca): Use prototypes.
19114
19115         * lib/atexit.c (atexit): Define using a prototype.
19116
19117         * lib/basename.c, dirname.c, stripslash.c:
19118         Include <string.h> unconditionally.
19119
19120         * lib/bcopy.c: Include <stddef.h>.
19121         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
19122
19123         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
19124
19125         * lib/error.h (error, error_at_line, error_print_progname)
19126         [! (defined (__STDC__) && __STDC__)]: Remove decls.
19127         * lib/error.c: Include error.h first, to check interface.
19128         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
19129         (VA_START): Remove; all uses changeed to va_start.
19130         (exit, strerror): Remove decls.
19131         (error_print_progname): Prototype uncondionally.
19132         Don't include <errno.h>; no longer needed.
19133         (private_strerror): Remove.
19134         (error_tail): Always define.
19135         (error, error_at_line): Assume C89 or better; always use prototypes.
19136         * lib/fatal.c: Include "fatal.h" first, to test interface.
19137         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
19138         (VA_START): Remove; all uses changed to va_start.
19139         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
19140         this case.
19141         (exit): Remove decl.
19142         (fatal): Prototype unconditionally.  Assume va_start works.
19143         Abort at end, to pacify gcc.
19144
19145         * lib/euidaccess.c (main): Define with a prototype.
19146
19147         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
19148
19149         * lib/exitfail.c: Include <stdlib.h> unconditionally.
19150
19151         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
19152         prototypes.
19153         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
19154         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
19155         (getenv): Remove decl.
19156         (fnmatch): Define using a prototype.
19157         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
19158         (FCT): Define using a prototype.
19159
19160         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
19161
19162         * lib/gethostname.c: Include <stddef.h>.
19163         (gethostname): Define with prototype.  Length is size_t, not int.
19164
19165 2003-09-08  Paul Eggert  <eggert@twinsun.com>
19166
19167         Assume C89 or better; remove K&R cruft.
19168         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
19169         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
19170         string.h, getenv, malloc.
19171         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
19172         headers.
19173         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
19174         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
19175         do not check for strerror.
19176         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
19177         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
19178         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
19179         do not check for doprnt or vprintf.
19180         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
19181         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
19182
19183 2003-09-08  Paul Eggert  <eggert@twinsun.com>
19184
19185         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
19186         getversion.c should have been removed then, but was accidentally
19187         preserved.
19188
19189         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
19190         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
19191
19192 2003-09-08  Karl Berry  <karl@gnu.org>
19193
19194         * config/config.sub, config.guess, srclistvars.sh: update from savannah
19195                 config, forget about prep.
19196
19197         * config/depcomp, missing: update from automake.
19198
19199 2003-09-07  Paul Eggert  <eggert@twinsun.com>
19200
19201         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
19202         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
19203
19204 2003-09-07  Paul Eggert  <eggert@twinsun.com>
19205
19206         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
19207         copy_tm_result.  Bug reported by Simon Josefsson in
19208         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
19209
19210 2003-09-06  Paul Eggert  <eggert@twinsun.com>
19211
19212         * m4/time_r.m4: New file.
19213         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
19214         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
19215         is. Check for timegm declaration.
19216         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
19217         Do not check for gmtime_r.
19218         Replace mktime if __mktime_internal does not exist and if mktime
19219         hasn't been replaced already.
19220
19221 2003-09-06  Paul Eggert  <eggert@twinsun.com>
19222
19223         * lib/time_r.c, lib/time_r.h: New files.
19224
19225         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
19226         __localtime_r.
19227         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
19228         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
19229
19230         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
19231         __gmtime_r.
19232         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
19233         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
19234         Include <time_r.h>.
19235
19236         * lib/timegm.c: Switch to glibc implementation, with the following
19237         changes:
19238         [defined HAVE_CONFIG_H]: Include <config.h>.
19239         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
19240         (__mktime_internal) [!defined _LIBC]: New decl.
19241         (__gmtime_r) [!defined _LIBC]: New macro and function.
19242         (timegm): Use a prototype, since gnulib assumes C89.
19243         Do not bother declaring tmp to be const, as it's not really usefu.
19244         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
19245         (timegm): Declare only if HAVE_DECL_TIMEGM.
19246
19247 2003-09-06  Paul Eggert  <eggert@twinsun.com>
19248
19249         * MODULES.html.sh (func_all_modules): Add time_r.
19250         * modules/time_r: New file.
19251         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
19252         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
19253
19254 2003-09-03  Paul Eggert  <eggert@twinsun.com>
19255
19256         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
19257         Bug reported by Lute Kamstra in
19258         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
19259
19260         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
19261         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
19262         course with correspondingly smaller numbers for tomorrow and
19263         yesterday.  From Tadayoshi Funaba.  Originally installed into
19264         sh-utils on 1999-08-07, but the patch got lost (I guess during the
19265         coreutils merge?).
19266
19267 2003-08-31  Simon Josefsson  <jas@extundo.com>
19268
19269         * modules/timegm: New file.
19270         * MODULES.html.sh (func_all_modules): Add timegm.
19271
19272 2003-08-31  Simon Josefsson  <jas@extundo.com>
19273
19274         * m4/timegm.m4: New file.
19275
19276 2003-08-31  Simon Josefsson  <jas@extundo.com>
19277
19278         * lib/timegm.h: New file.
19279         * lib/timegm.c: New file.  Based on
19280         wget-1.8.2/src/http.c:mktime_from_utc.
19281
19282 2003-08-31  Karl Berry  <karl@gnu.org>
19283
19284         * lib/argp.h: update from libc.
19285
19286 2003-08-28  Bruno Haible  <bruno@clisp.org>
19287
19288         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
19289         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
19290         followed by '#define fnmatch fnmatch_posix' gives an error.
19291
19292 2003-08-28  Bruno Haible  <bruno@clisp.org>
19293
19294         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
19295         warning on QNX, which defines O_BINARY to 000000.
19296
19297 2003-08-27  Jim Meyering  <jim@meyering.net>
19298
19299         * m4/mkstemp.m4: Require that the system mkstemp be able to create
19300         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
19301         would fail after 32.  Reported by Danny Levinson.  Details here:
19302         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
19303
19304 2003-08-24  Bruno Haible  <bruno@clisp.org>
19305
19306         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
19307         MSVC7 <stdio.h> is included later.
19308
19309 2003-08-22  Simon Josefsson  <jas@extundo.com>
19310
19311         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
19312
19313 2003-08-20  Karl Berry  <karl@gnu.org>
19314
19315         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
19316
19317 2003-08-20  Bruno Haible  <bruno@clisp.org>
19318
19319         * modules/progname: New file.
19320         * MODULES.html.sh (func_all_modules): Add progname.
19321
19322 2003-08-20  Bruno Haible  <bruno@clisp.org>
19323
19324         * lib/progname.h: New file, from GNU gettext.
19325         * lib/progname.c: New file, from GNU gettext.
19326         * lib/progreloc.c: New file, from GNU gettext.
19327
19328 2003-08-19  Jim Meyering  <jim@meyering.net>
19329
19330         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
19331         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
19332
19333 2003-08-19  Bruno Haible  <bruno@clisp.org>
19334
19335         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
19336         more.
19337
19338 2003-08-19  Bruno Haible  <bruno@clisp.org>
19339
19340         * lib/xstrdup.c: Assume <string.h> exists.
19341
19342 2003-08-18  Paul Eggert  <eggert@twinsun.com>
19343
19344         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
19345         in makefile rules.
19346
19347 2003-08-18  Jim Meyering  <jim@meyering.net>
19348
19349         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
19350         * m4/lib-ld.m4: Likewise.
19351
19352 2003-08-18  Jim Meyering  <jim@meyering.net>
19353
19354         * lib/setenv.h: Indent nested cpp directive.
19355         * lib/vasnprintf.c: Remove trailing blanks.
19356
19357 2003-08-17  Simon Josefsson  <jas@extundo.com>
19358
19359         * modules/xstrndup: New file.
19360         * MODULES.html.sh (func_all_modules): Add xstrndup.
19361
19362 2003-08-17  Simon Josefsson  <jas@extundo.com>
19363
19364         * modules/argp: Fix autoconf macro name. Add more dependencies.
19365
19366 2003-08-17  Simon Josefsson  <jas@extundo.com>
19367
19368         * m4/xstrndup.m4: New file.
19369
19370 2003-08-17  Simon Josefsson  <jas@extundo.com>
19371
19372         * m4/argp.m4: New file.
19373
19374 2003-08-17  Simon Josefsson  <jas@extundo.com>
19375             Bruno Haible  <bruno@clisp.org>
19376
19377         * lib/xstrndup.h: New file.
19378         * lib/xstrndup.c: New file.
19379
19380 2003-08-17  Bruno Haible  <bruno@clisp.org>
19381
19382         * modules/strndup (Files, Include): Add lib/strndup.h.
19383
19384 2003-08-17  Bruno Haible  <bruno@clisp.org>
19385
19386         * modules/euidaccess (Files): Add lib/euidaccess.h.
19387
19388 2003-08-17  Bruno Haible  <bruno@clisp.org>
19389
19390         * lib/strndup.h: New file.
19391
19392 2003-08-17  Bruno Haible  <bruno@clisp.org>
19393
19394         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
19395         like AC_GNU_SOURCE.
19396         * modules/extensions (configure.ac): Comment out the invocation of
19397         gl_USE_SYSTEM_EXTENSIONS.
19398
19399 2003-08-16  Paul Eggert  <eggert@twinsun.com>
19400
19401         Merges from coreutils, etc.
19402         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
19403         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
19404         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
19405         fixing a typo.
19406         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
19407         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
19408
19409 2003-08-16  Paul Eggert  <eggert@twinsun.com>
19410
19411         Document merge from coreutils.
19412         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
19413         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
19414         * modules/utime: Add m4/utimes-null.m4.
19415
19416 2003-08-16  Paul Eggert  <eggert@twinsun.com>
19417
19418         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
19419         space, undoing this 2003-08-12 change:
19420         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
19421
19422 2003-08-16  Paul Eggert  <eggert@twinsun.com>
19423
19424         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
19425         strtoul.c from libc, undoing this 2003-08-12 change:
19426         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
19427
19428 2003-08-16  Jim Meyering  <jim@meyering.net>
19429
19430         Merges from coreutils.
19431         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
19432         prefix.  Adjust cache variables similarly.  Create 500 rather than
19433         just 300 files, to exercise bug on Darwin6.5, too.
19434         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
19435         $missing_dir.
19436         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
19437         AM_SYS_POSIX_TERMIOS.
19438         Reported by mkc@mathdogs.com.
19439         Also change use of $am_cv_sys_posix_termios
19440         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
19441         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
19442         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
19443         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
19444         in /proc/mounts until it finds one with matching device number.  This
19445         is unnecessary when the FILE argument *is* a mount point.  No stat call
19446         is necessary in that case.  So, disable the statvfs-testing code on
19447         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
19448         as RedHat bug# 84846.
19449         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
19450         to 1MB, so as not to render systems with no stack size limit (e.g.,
19451         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
19452         Include <unistd.h>.  On some systems,
19453         it is required for the definition of _SC_PAGESIZE.
19454
19455 2003-08-16  Jim Meyering  <jim@meyering.net>
19456
19457         Merge from coreutils.
19458         * lib/xstrtoimax.c: #else #if -> #elif.
19459         * lib/xstrtoumax.c: Likewise.
19460
19461 2003-08-16  Jim Meyering  <jim@meyering.net>
19462
19463         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
19464         * m4/utimes.m4: Removed.
19465         * m4/utimes-null.m4: Renamed from utimes.m4.
19466
19467         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
19468         to 1MB, so as not to render systems with no stack size limit (e.g.,
19469         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
19470         Include <unistd.h>.  On some systems,
19471         it is required for the definition of _SC_PAGESIZE.
19472
19473 2003-08-16  Jim Meyering  <jim@meyering.net>
19474         and Paul Eggert  <eggert@cs.ucla.edu>
19475
19476         Merges from coreutils, etc.
19477
19478         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
19479         using the latest version from cvs.  This avoids problems with #line
19480         directives using a vendor (Sun) compiler.
19481         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
19482         Don't set GETGROUPS_LIB here; now it's
19483         done via getgroups.m4's wrapper function.
19484         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
19485         rather than just in sh-util/configure.in, so that the
19486         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
19487         same.
19488         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
19489         AC_FUNC_GETLOADAVG where to find getloadavg.c.
19490         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
19491         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
19492         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
19493         Remove code that is now done by the newly-required macros.
19494         Append $(EXEEXT) to DF_PROG.
19495         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
19496         Do not invoke or require the following here,
19497         since prereq.m4 or some gnulib .m4 now does this for us:
19498         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
19499         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
19500         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
19501         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
19502         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
19503         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
19504         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
19505         AC_FUNC_OBSTACK.
19506         Do not replace the following functions, as this is now the job
19507         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
19508         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
19509         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
19510         atexit getpass, strdup, getpagesize.
19511         Replace 'raise'.
19512         Do not check for the following functions, as this is now the job
19513         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
19514         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
19515         setregid.
19516         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
19517         Check for sys/sysctl.h.
19518         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
19519         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
19520         of checking for ssize_t ourselves.
19521
19522         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
19523         Require every macro that gnulib/modules/* suggests for us.
19524         (jm_PREREQ_ADDEXT): New macro.
19525         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
19526         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
19527
19528         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
19529         (gl_PHYSMEM): Use it.
19530         Also check for `table' function.
19531         Check for new headers and functions.
19532         Add check for sys/sysmp.h.
19533         With suggestions from Kaveh Ghazi.
19534         Ignore headers that are present but cannot be compiled.  This
19535         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
19536         C 5.4.
19537
19538 2003-08-15  Paul Eggert  <eggert@twinsun.com>
19539
19540         Document merge from coreutils.
19541         * modules/userspec: Depend on posixver.
19542         * modules/strftime: Depend on tzset.
19543
19544 2003-08-15  Paul Eggert  <eggert@twinsun.com>
19545
19546         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
19547         rather than tab, after '#' in shell-script copyright notices.
19548         Suggested by Bruno Haible.
19549
19550 2003-08-15  Paul Eggert  <eggert@twinsun.com>
19551
19552         * config/srclist-update: Use three spaces, rather than tab, after '#'
19553         in shell-script copyright notices.  Suggested by Bruno Haible.
19554         Remove unnecessary parenthesization in regular expression.
19555
19556 2003-08-15  Jim Meyering  <jim@meyering.net>
19557
19558         Merge from coreutils.
19559         * lib/xgethostname.c: Include <stdlib.h>.
19560         (xghostname): Don't exit for anything other than memory-related
19561         failure; just return NULL.
19562         * lib/userspec.c: Include "posixver.h".
19563         (parse_user_spec): Accept `.' as a separator only
19564         in pre-POSIX-200112 mode.
19565         * lib/strtoimax.c: Use #elif rather than #else #if.
19566         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
19567         Remove function, now that we can rely on a working tzset function.
19568         [!_LIBC]: Ensure that the required autoconf test has been run.
19569         [!defined _NL_CURRENT && HAVE_STRFTIME]:
19570         Use underlying_strftime for %r.
19571         * lib/sha.c: Merge in some clean-up and optimization changes from
19572         glibc.
19573         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
19574         Ensure that it is a multiple of 64.
19575         Rearrange loop exit tests so as to avoid performing an
19576         additional fread after encountering an error or EOF.
19577         * lib/realloc.c: Update copyright date.
19578
19579 2003-08-15  Jim Meyering  <jim@meyering.net>
19580         and Paul Eggert  <eggert@twinsun.com>
19581
19582         Merge from coreutils.
19583         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
19584         member but strut utmpx does not.  Needed for AIX 4.3.3.
19585         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
19586
19587 2003-08-15  Jim Meyering  <jim@meyering.net>
19588         and Paul Eggert  <eggert@cs.ucla.edu>
19589
19590         Merges from coreutils, etc.
19591         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
19592         Require gl_FUNC_TZSET_CLOBBER.
19593         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
19594         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
19595         members.
19596
19597 2003-08-14  Paul Eggert  <eggert@twinsun.com>
19598
19599         Help the merge from coreutils.
19600         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
19601         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
19602         * m4/tzset.m4: Use it too.
19603
19604 2003-08-14  Paul Eggert  <eggert@twinsun.com>
19605
19606         * modules/tzset: New file.
19607
19608 2003-08-14  Jim Meyering  <jim@meyering.net>
19609
19610         Merges from coreutils.
19611         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
19612         variable names, rather than @FNMATCH_H@.
19613         * modules/alloca: Likewise for $(ALLOCA_H).
19614
19615         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
19616         the three copies of the literal target, `fnmatch.h'.
19617         * modules/alloca (alloca.h): Likewise.
19618
19619 2003-08-14  Jim Meyering  <jim@meyering.net>
19620
19621         Merge from coreutils.
19622         * m4/tzset.m4: New file.
19623         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
19624         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
19625         otherwise, AIX 5.1 systems would end up using the latter.
19626         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
19627         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
19628         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
19629         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
19630
19631 2003-08-14  Jim Meyering  <jim@meyering.net>
19632
19633         Merge from coreutils.
19634         * lib/obstack.h: Whitespace changes.
19635         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
19636         and xcalloc return values.
19637         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
19638         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
19639         hang on OSF/1 5.1 for DIR on both local and remote file systems.
19640         Reported by (and fix confirmed by) Nelson H. F. Beebe.
19641         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
19642         error from mntctl.
19643         Use mntctl's return value to drive the entry-processing loop, since
19644         we can't rely on the value of the vmt_length member in the last
19645         entry.  On some systems doing so could result in exhausting
19646         virtual memory.  Based in part on a patch from Mike Jetzer.
19647
19648 2003-08-14  Jim Meyering  <jim@meyering.net>
19649         and Paul Eggert  <eggert@twinsun.com>
19650
19651         Merges from coreutils, plus other fixes.
19652         * lib/physmem.c: Merge in portability changes from gcc/libiberty
19653         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
19654         for credits and details.  Thanks to Kaveh Ghazi for helping
19655         to keep these files in sync.
19656         (ARRAY_SIZE): Define it.
19657         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
19658         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
19659         (memcasecmp): Don't assume size_t fits in unsigned int.
19660         Remove casts and duplicate code.
19661         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
19662         (memcpy): Remove definition.
19663         Merge in some clean-up and optimization changes from glibc.
19664         [BLOCKSIZE]: Move definition to top of file.
19665         Ensure that it is a multiple of 64.
19666         Rearrange loop exit tests so as to avoid performing an
19667         additional fread after encountering an error or EOF.
19668         * lib/md5.h (md5_uintptr): Define.
19669         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
19670         return to the initial working directory.  Preserve errno
19671         for caller.
19672         * lib/idcache.c: Include "xalloc.h".
19673         (xmalloc, xrealloc): Remove decls.
19674         (getuser): Remove casts no longer required in C89.
19675         * lib/human.c: Include stdio.h, for sprintf.
19676         * lib/group-member.c: Include "xalloc.h".
19677         (xmalloc, xrealloc): Remove decls.
19678         (get_group_info): Remove casts no longer required in C89.
19679         * lib/getusershell.c (readname): Remove casts no longer required in
19680         C89.
19681         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
19682         * lib/getline.c: Whitespace fix, from coreutils.
19683
19684 2003-08-13  Paul Eggert  <eggert@twinsun.com>
19685
19686         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
19687         Check for isascii.
19688
19689         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
19690         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
19691         Undo previous (whitespace-only) change.
19692
19693 2003-08-13  Paul Eggert  <eggert@twinsun.com>
19694
19695         * lib/exclude.c: Include <ctype.h>
19696         (IN_CTYPE_DOMAIN): New macro.
19697         (is_space): New fn.
19698         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
19699         and empty lines.
19700
19701         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
19702         Undo previous (whitespace-only) change.
19703
19704 2003-08-13  Paul Eggert  <eggert@twinsun.com>
19705
19706         * config/srclist-update: Change update back to the old behavior,
19707         leaving whitespace alone.  Use one 'sed' command rather than a
19708         pipeline.
19709         (fixlicense): Now a variable, not a function.
19710         (remove_trailing_blanks): Remove.
19711         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
19712         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
19713         Undo previous (whitespace-only) change.
19714
19715 2003-08-12  Paul Eggert  <eggert@twinsun.com>
19716
19717         Merge from coreutils.
19718         * modules/euidaccess: Add lib_SOURCES, include for new
19719         file euidaccess.h
19720
19721 2003-08-12  Paul Eggert  <eggert@twinsun.com>
19722
19723         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
19724         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
19725         Normalize leading white space and remove trailing white space.
19726
19727         Merge from coreutils
19728         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
19729
19730         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
19731         0.12.1.  These files are now being upgraded automatically by
19732         ../config/srclist-update.
19733
19734 2003-08-12  Paul Eggert  <eggert@twinsun.com>
19735
19736         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
19737         Normalize leading white space and remove trailing white space.
19738         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
19739         notice, as per ../config/srclist-update.
19740
19741         Merge from coreutils.
19742         * lib/euidaccess.h: New file.
19743         * lib/euidaccess.c: Include it.
19744         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
19745         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
19746         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
19747
19748 2003-08-12  Paul Eggert  <eggert@twinsun.com>
19749
19750         * config/srclist-update: Add copyright notice.
19751         (remove_id_lines, remove_trailing_blanks): New constants.
19752         (fixfile): Use them to normalize spacing a bit in copied files.
19753         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
19754         Normalize leading white space and remove trailing white space.
19755
19756         * config/texinfo.tex: Sync with texinfo.
19757
19758         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
19759         strtoul.c from libc, to merge coreutils whitespace changes.
19760
19761         * config/srclist.txt: Get the following m4 files from gettext:
19762         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
19763         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
19764         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
19765         wint_t.m4.
19766
19767 2003-08-12  Karl Berry  <karl@gnu.org>
19768
19769         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
19770         been made.
19771
19772 2003-08-11  Paul Eggert  <eggert@twinsun.com>
19773
19774         * modules/gnu-source, m4/gnu-source.m4:
19775         Remove; we're assuming Autoconf 2.54 or later now.
19776         Suggested by Bruno Haible.
19777         * MODULES.html.sh (func_all_modules): Remove gnu-source.
19778
19779 2003-08-11  Bruno Haible  <bruno@clisp.org>
19780
19781         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
19782
19783 2003-08-11  Bruno Haible  <bruno@clisp.org>
19784
19785         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
19786         (vasnprintf): Use it instead of wcslen.
19787
19788 2003-08-11  Bruno Haible  <bruno@clisp.org>
19789
19790         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
19791         value to ensure that _Bool promotes to int. Use #define for _Bool when
19792         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
19793
19794 2003-08-10  Karl Berry  <karl@gnu.org>
19795
19796         * lib/regex.h: update from libc (whitespace fix).
19797
19798 2003-08-09  Paul Eggert  <eggert@twinsun.com>
19799
19800         Merge some files from coreutils.  These changes were
19801         originally made by Jim Meyering.
19802         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
19803         many older Unixes require this.
19804         * lib/alloca.c (alloca): Remove cast to argument of free;
19805         no longer needed in C89.
19806         * lib/alloca_.h, regex.h: Fix white space to match
19807         what GNU indent does.
19808
19809 2003-08-09  Paul Eggert  <eggert@twinsun.com>
19810
19811         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
19812         apparently Emacs's Unicode mode got confused before my 2003-08-05
19813         checkin.
19814
19815 2003-08-08  Paul Eggert  <eggert@twinsun.com>
19816
19817         * m4/extensions.m4: New file.
19818         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
19819         Require gl_USE_SYSTEM_EXTENSIONS.
19820         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
19821         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
19822
19823 2003-08-08  Paul Eggert  <eggert@twinsun.com>
19824
19825         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
19826         * modules/extensions, modules/gnu-source: New files.
19827         * modules/timespec, modules/unlocked-io: Depend on extensions.
19828
19829 2003-08-07  Paul Eggert  <eggert@twinsun.com>
19830
19831         * modules/restrict: New file.
19832         * MODULES.html.sh (func_all_modules): Add restrict.
19833         * modules/regex: Depend on restrict.
19834
19835 2003-08-07  Paul Eggert  <eggert@twinsun.com>
19836
19837         * m4/restrict.m4: New file.
19838         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
19839
19840 2003-08-07  Bruno Haible  <bruno@clisp.org>
19841
19842         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
19843         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
19844
19845 2003-08-07  Bruno Haible  <bruno@clisp.org>
19846
19847         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
19848         makes the module 'getndelim2' compatible with the module 'getline'.
19849
19850 2003-08-05  Paul Eggert  <eggert@twinsun.com>
19851
19852         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
19853         byte with "\201" to avoid glitches when editing that source file
19854         with multi-gnome-terminal.
19855
19856 2003-08-05  Paul Eggert  <eggert@twinsun.com>
19857
19858         * lib/bumpalloc.h: Remove.
19859
19860 2003-08-05  Paul Eggert  <eggert@twinsun.com>
19861
19862         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
19863         * modules/bumpalloc: Remove.
19864
19865 2003-08-04  Paul Eggert  <eggert@twinsun.com>
19866
19867         * lib/getloadavg.c: Change copyright notice and spacing to conform to
19868         GNU coding style.
19869
19870         Merge from coreutils.
19871         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
19872         1. From glibc.
19873         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
19874         from Karl Berry, implemented by Jim Meyering.
19875         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
19876         from Dmitry V. Levin.
19877         Remove anachronistic cast of xrealloc.
19878         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
19879         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
19880         type. Otherwise, it wouldn't compile with at least /bin/cc on
19881         ymp-cray-unicos9.0.2.X.
19882         Combine two mostly-identical uses of alloca into one.
19883         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
19884
19885 2003-08-04  Dave Love  <d.love@dl.ac.uk>
19886
19887         [From Emacs.]
19888
19889         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
19890         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
19891         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
19892         obsolete NLIST_NAME_UNION.
19893         [__GNU__]: Undef BSD and FSCALE.
19894         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
19895
19896 2003-08-03  Paul Eggert  <eggert@twinsun.com>
19897
19898         * lib/stdbool_.h (_Bool): Make it signed char, instead of
19899         an enum type, so that it's guaranteed to promote to int.  See:
19900         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
19901
19902 2003-08-03  Karl Berry  <karl@gnu.org>
19903
19904         * config/depcomp: update from automake.
19905
19906 2003-07-31  Paul Eggert  <eggert@twinsun.com>
19907
19908         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
19909         (strerror): Don't assume that a printable int fits in 14 bytes.
19910
19911 2003-07-31  Bruno Haible  <bruno@clisp.org>
19912
19913         * modules/getpass-gnu: New file.
19914         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
19915
19916 2003-07-31  Bruno Haible  <bruno@clisp.org>
19917
19918         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
19919
19920 2003-07-24  Karl Berry  <karl@gnu.org>
19921
19922         * config/missing: update from automake.
19923
19924 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
19925             Bruno Haible  <bruno@clisp.org>
19926
19927         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
19928         * lib/getline.c (getline, getdelim): Likewise.
19929         Remove _GNU_SOURCE define; now it's defined in config.h through
19930         m4/getline.m4.
19931
19932 2003-07-23  Karl Berry  <karl@gnu.org>
19933
19934         * config/config.sub: update from prep.
19935
19936 2003-07-22  Paul Eggert  <eggert@twinsun.com>
19937
19938         * modules/xalloc (Depends-on): Add exitfail.
19939         * modules/xmemcoll: Likewise.
19940
19941 2003-07-22  Paul Eggert  <eggert@twinsun.com>
19942
19943         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
19944         over-parenthesization in macros.
19945
19946         Sync with coreutils.
19947
19948         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
19949         required by C99.
19950
19951         Use `exit_failure' for xalloc and xmemcoll instead of their own
19952         private exit-failure variables.
19953         * lib/xalloc.h (xalloc_exit_failure): Remove.
19954         * lib/xmalloc.c: Likewise.  Include exitfail.h.
19955         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
19956         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
19957         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
19958         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
19959
19960 2003-07-20  Jim Meyering  <jim@meyering.net>
19961
19962         * modules/closeout (Depends-on): Add exitfail.
19963         Suggestion from Bruno Haible.
19964
19965 2003-07-19  Karl Berry  <karl@gnu.org>
19966
19967         * config/config.sub: update from prep.
19968
19969 2003-07-18  Paul Eggert  <eggert@twinsun.com>
19970
19971         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
19972         Remove.
19973         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
19974         to test that it can stand by itself.  Include "exitfail.h".
19975         Clients should set exit_failure instead.
19976         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
19977
19978 2003-07-18  Bruno Haible  <bruno@clisp.org>
19979
19980         * modules/getndelim2: New file.
19981         * modules/getline: Share files with module getndelim2.
19982         * modules/getnline: Depend on getndelim2 instead of sharing files with
19983         it. Add getnline.c to lib_SOURCES.
19984         * MODULES.html.sh (func_all_modules): Add getndelim2.
19985
19986 2003-07-18  Bruno Haible  <bruno@clisp.org>
19987
19988         * m4/getndelim2.m4: New file.
19989         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
19990         invoke gl_PREREQ_GETNDELIM2.
19991         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
19992         gl_PREREQ_GETNDELIM2.
19993         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
19994         gl_GETNDELIM2.
19995
19996 2003-07-18  Bruno Haible  <bruno@clisp.org>
19997
19998         * lib/getndelim2.h: New file.
19999         * lib/getndelim2.c: Make into a module of its own. Include config.h,
20000         getndelim2.h.
20001         (getndelim2): Make non-static. Change return type to ssize_t.
20002         * lib/getline.h: Change argument names.
20003         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
20004         * lib/getnline.c: Include getndelim2.h.
20005
20006 2003-07-18  Andreas Schwab  <schwab@suse.de>
20007
20008         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
20009
20010 2003-07-17  Karl Berry  <karl@gnu.org>
20011
20012         * config/config.sub: update from prep.
20013
20014 2003-07-17  Bruno Haible  <bruno@clisp.org>
20015
20016         * modules/getnline: New file.
20017         * modules/getline: Add lib/getndelim2.c to source file list.
20018         * MODULES.html.sh (func_all_modules): Add getnline.
20019
20020 2003-07-17  Bruno Haible  <bruno@clisp.org>
20021
20022         * m4/getnline.m4: New file.
20023
20024 2003-07-17  Bruno Haible  <bruno@clisp.org>
20025
20026         * m4/Makefile.am.in: Remove file.
20027         * m4/Makefile.am: Remove file.
20028         * m4/Makefile.in: Remove file.
20029
20030 2003-07-17  Bruno Haible  <bruno@clisp.org>
20031
20032         * lib/getnline.h: New file.
20033         * lib/getnline.c: New file.
20034         * lib/getndelim2.c: New file, extracted from getline.c.
20035         (getndelim2): Renamed from getdelim2, with added nmax argument.
20036         * lib/getline.c: Include getndelim2.c.
20037         (getdelim2): Moved out to getndelim2.c.
20038         (getline, getdelim): Update.
20039
20040 2003-07-17  Bruno Haible  <bruno@clisp.org>
20041
20042         * lib/Makefile.am: Remove file.
20043         * lib/Makefile.in: Remove file.
20044
20045 2003-07-17  Bruno Haible  <bruno@clisp.org>
20046
20047         * configure.in: Remove file.
20048         * Makefile.in: Remove file.
20049
20050 2003-07-17  Bruno Haible  <bruno@clisp.org>
20051
20052         * MODULES.html.sh: Put the </BODY> right before </HTML>.
20053
20054 2003-07-16  Karl Berry  <karl@gnu.org>
20055
20056         * config/srclist-update: was running fixlicense twice, which caused
20057                 texinfo.tex to be nullified for some reason.  Simplify,
20058                 $gplsrc is no longer needed as far as I can see?
20059
20060 2003-07-16  Jim Meyering  <jim@meyering.net>
20061
20062         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
20063
20064 2003-07-15  Paul Eggert  <eggert@twinsun.com>
20065
20066         * config/srclist.txt: Get the following files from gettext-runtime/intl
20067         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
20068         ref-del.sin.  From Bruno Haible.
20069         * config/srclist-update (fixfile): Change grep pattern again, since the
20070         previous fix didn't work (there was another trailing $).  Use
20071         '[$]' to escape the $s.
20072
20073 2003-07-15  Karl Berry  <karl@gnu.org>
20074
20075         * lib/vasnprintf.c: update from gettext.
20076
20077 2003-07-15  Karl Berry  <karl@gnu.org>
20078
20079         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
20080         gets expanded when surrounded by '$'.
20081
20082 2003-07-15  Jim Meyering  <jim@meyering.net>
20083
20084         * modules/save-cwd: Don't depend on error.  From Derek Price.
20085
20086 2003-07-15  Jim Meyering  <jim@meyering.net>
20087
20088         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
20089
20090 2003-07-14  Simon Josefsson  <jas@extundo.com>
20091
20092         * modules/mempcpy: New file.
20093         * MODULES.html.sh (func_all_modules): Add mempcpy.
20094
20095 2003-07-14  Simon Josefsson  <jas@extundo.com>
20096
20097         * m4/mempcpy.m4: New file.
20098
20099 2003-07-14  Simon Josefsson  <jas@extundo.com>
20100
20101         * lib/mempcpy.h: New file.
20102         * lib/mempcpy.c: New file.
20103
20104 2003-07-14  Paul Eggert  <eggert@twinsun.com>
20105
20106         * modules/getdate, modules/posixtm: Depend on mktime.
20107
20108 2003-07-14  Paul Eggert  <eggert@twinsun.com>
20109
20110         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
20111         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
20112         unicodeio.c, unicodeio.h, unlocked-io.h:
20113         Switch from LGPL to GPL.
20114
20115 2003-07-14  Paul Eggert  <eggert@twinsun.com>
20116
20117         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
20118         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
20119         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
20120         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
20121         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
20122         updated automatically by ../config/srclist-update.  This changes
20123         their license from LPGL to GPL.
20124
20125 2003-07-14  Paul Eggert  <eggert@twinsun.com>
20126
20127         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
20128         assumed to refer to the root of the most recent stable gettext version.
20129         * config/srclistvars.sh: Add defaults for eggert.
20130         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
20131         Match "This program" as well as "The program".  This is needed
20132         for gettext.
20133
20134 2003-07-14  Jim Meyering  <jim@meyering.net>
20135
20136         Don't emit diagnostics.  Let callers do that.
20137         * lib/save-cwd.c: Don't include "error.h".
20138         (save_cwd): Don't call error.  Ensure that errno is valid
20139         when returning nonzero.
20140
20141         * lib/save-cwd.h (restore_cwd): Update prototype.
20142         * lib/save-cwd.c (restore_cwd): Remove two parameters.
20143         Simplify.  Don't call error upon failure.  Let callers do that.
20144         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
20145         when auditing is enabled.  But don't bother updating the #if.
20146
20147 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
20148
20149         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
20150         it breaks C++ compilation.
20151         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
20152
20153 2003-07-10  Simon Josefsson  <jas@extundo.com>
20154
20155         * modules/strchrnul (Makefile.am): Add strchrnul.h.
20156
20157 2003-07-10  Jim Meyering  <jim@meyering.net>
20158
20159         * m4/clock_time.m4: Remove trailing blank.
20160         * m4/intmax_t.m4: Likewise.
20161
20162 2003-07-10  Jim Meyering  <jim@meyering.net>
20163
20164         * lib/vasnprintf.c: Remove trailing blanks.
20165         Make cpp indentation consistent.
20166
20167 2003-07-09  Paul Eggert  <eggert@twinsun.com>
20168
20169         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
20170         posixver.c, strftime.c, strnlen.c, strverscmp.c:
20171         Switch from LGPL to GPL.
20172
20173 2003-07-09  Paul Eggert  <eggert@twinsun.com>
20174
20175         * config/srclist.txt: Sort sublists.  Add
20176         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
20177         that differ from gnulib for one reason or another; we'd like this list
20178         to be smaller but for now let's document what we have.
20179
20180 2003-07-08  Paul Eggert  <eggert@twinsun.com>
20181
20182         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
20183         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
20184         and sweeter "eval x=$x".
20185         * config/srclist.txt: Get lib/argp* from glibc.
20186
20187 2003-07-07  Paul Eggert  <eggert@twinsun.com>
20188
20189         * lib/mktime.c: Fix some boundary cases and remove need for floating
20190         point.
20191
20192         Issue a compile-time diagnostic if time_t is floating point, or if
20193         two's complement arithmetic is not in effect, or if arithmetic
20194         right shift does not propagate the sign.  These assumptions were
20195         all in the original code but they weren't checked.
20196
20197         (TIME_T_MIDPOINT, verify): New macros.
20198         (__isleap): Remove; it has integer overflow problems.
20199         (leapyear): New function, without those problems.
20200         (ydhms_tm_diff): Remove; splitting into two parts.
20201         (ydhms_diff): New function, containing the arithmetic part of
20202         the old ydhms_tm_diff function.  Issue a compile-time
20203         diagnostic if we are not using C99 integer division.
20204         Avoid casts when possible.
20205         (guess_time_tm): New function, containing the checking part of
20206         the old ydhms_tm_diff function.  Return the new value, rather than
20207         the difference between it and the old.  Accept a new argument T
20208         so that *T specifies the old value.  Check for overflow in the result.
20209
20210         (__mktime_internal): Use a time_t offset, not a long int offset.
20211         This undoes the 2003-06-04 change, which is no longer needed now
20212         that we have better overflow checking.
20213         (localtime_offset): Likewise.
20214
20215         (__mktime_internal): Avoid harmful overflow on hosts where time_t
20216         and long are 64-bit but int is only 32-bit.
20217         (ydhms_diff): Use long int to store year1 and yday1.
20218         Issue a compile-time diagnostic if long int is not wide enough.
20219
20220         (__mktime_internal): Use long int to store adjusted year and yday.
20221         Use plain C rather than preprocessor commands, if that doesn't
20222         affect efficiency.
20223         Check for overflow (and try to repair) after each probe
20224         rather than checking only at the very end.  This avoids some bugs
20225         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
20226         does not equal GMT offset at maximum time).
20227         Use integer to check for overflow rather than floating point; this
20228         is more portable to non-IEEE hosts, and is a tad faster.
20229         When we detect that we are oscillating between two values,
20230         don't check whether tm_isdst has the requested value, since
20231         we already know the answer.  When tm_isdst has the wrong value,
20232         use a different heuristic to find the right one, based on the
20233         extreme values actually observed in practice in tz2003a,
20234         rather than the (overly optimistic) "previous 3 calendar quarters".
20235
20236         (not_equal_tm, print_tm, check_result): Use "const T" rather than
20237         "T const" to accommodate glibc style.
20238         (check_result): Use less-confusing report format.  "long" -> "long int.
20239         (main): Likewise.
20240         Don't loop if the iteration overflows time_t.
20241         Allow a negative step in the iteration.
20242
20243 2003-07-06  Karl Berry  <karl@gnu.org>
20244
20245         * config/depcomp: update from automake.
20246         * config/config.sub: update from prep.
20247
20248 2003-07-03  Karl Berry  <karl@gnu.org>
20249
20250         * config/config.guess: update from prep.
20251
20252 2003-07-01  Paul Eggert  <eggert@twinsun.com>
20253
20254         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
20255         xreadlink.c now includes it unconditionally.
20256
20257 2003-07-01  Paul Eggert  <eggert@twinsun.com>
20258
20259         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
20260         having it depend on HAVE_SYS_TYPES_H.
20261
20262 2003-07-01  Bruno Haible  <bruno@clisp.org>
20263
20264         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
20265         <sys/types.h> should be sufficient.
20266         Reported by Paul Eggert.
20267
20268 2003-06-26  Karl Berry  <karl@gnu.org>
20269
20270         * config/depcomp: update from automake.
20271
20272 2003-06-26  Bruno Haible  <bruno@clisp.org>
20273
20274         * modules/human: Depend on module stdbool.
20275
20276 2003-06-25  Bruno Haible  <bruno@clisp.org>
20277
20278         * modules/readlink: New file.
20279         * modules/xreadlink: Depend on it.
20280         * MODULES.html.sh (func_all_modules): Add readlink.
20281
20282 2003-06-25  Bruno Haible  <bruno@clisp.org>
20283
20284         * m4/readlink.m4: New file.
20285
20286 2003-06-25  Bruno Haible  <bruno@clisp.org>
20287
20288         * lib/readlink.c: New file.
20289
20290 2003-06-22  Karl Berry  <karl@gnu.org>
20291
20292         * config/srclist.txt: update mkinstalldirs from automake.
20293         * config/mkinstalldirs: update.
20294
20295 2003-06-22  Bruno Haible  <bruno@clisp.org>
20296
20297         Portability to mingw32.
20298         * m4/ssize_t.m4: New file, from GNU gettext.
20299         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
20300         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
20301
20302 2003-06-22  Bruno Haible  <bruno@clisp.org>
20303
20304         * modules/safe-read: Add m4/ssize_t.m4.
20305         * modules/xreadlink: Add m4/ssize_t.m4.
20306
20307 2003-06-20  Bruno Haible  <bruno@clisp.org>
20308
20309         Assume C89, so PARAMS isn't needed.
20310         * lib/unicodeio.h (PARAMS): Remove.
20311         * lib/unicodeio.c: Don't use PARAMS.
20312
20313 2003-06-18  Karl Berry  <karl@gnu.org>
20314
20315         * config/config.{guess,sub}: update from prep.
20316
20317 2003-06-18  Jim Meyering  <jim@meyering.net>
20318
20319         Merge changes from coreutils.
20320         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
20321         Remove explicit declarations of xmalloc and realloc.
20322         Include xalloc.h.
20323         (read_utmp): Remove anachronistic cast of xmalloc.
20324
20325 2003-06-17  Paul Eggert  <eggert@twinsun.com>
20326
20327         Assume C89, so PARAMS isn't needed.
20328         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
20329         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
20330         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
20331         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
20332         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
20333         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
20334         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
20335         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
20336         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
20337         lib/xstrtod.h, lib/xstrtol.h: Likewise.
20338         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
20339         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
20340         no longer needed. Anyway, config.h should always be included before any
20341         other file.
20342
20343 2003-06-11  Simon Josefsson  <jas@extundo.com>
20344
20345         * modules/sysexits: New file.
20346         * MODULES.html.sh (func_all_modules): Add sysexits.
20347
20348 2003-06-11  Simon Josefsson  <jas@extundo.com>
20349
20350         * lib/sysexit_.h: New file.
20351
20352 2003-06-11  Derek Price  <derek@ximbiot.com>
20353
20354         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
20355         necessary.
20356
20357 2003-06-11  Bruno Haible  <bruno@clisp.org>
20358
20359         * m4/sysexits.m4: New file.
20360
20361 2003-06-10  Simon Josefsson  <jas@extundo.com>
20362
20363         * lib/argp.h: New file, from glibc.
20364         * lib/argp-ba.c: New file, from glibc.
20365         * lib/argp-eexst.c: New file, from glibc.
20366         * lib/argp-fmtstream.c: New file, from glibc.
20367         * lib/argp-fmtstream.h: New file, from glibc.
20368         * lib/argp-fs-xinl.c: New file, from glibc.
20369         * lib/argp-help.c: New file, from glibc.
20370         * lib/argp-namefrob.h: New file, from glibc.
20371         * lib/argp-parse.c: New file, from glibc.
20372         * lib/argp-pv.c: New file, from glibc.
20373         * lib/argp-pvh.c: New file, from glibc.
20374         * lib/argp-xinl.c: New file, from glibc.
20375
20376 2003-06-10  Simon Josefsson  <jas@extundo.com>
20377
20378         * modules/strchrnul: New file.
20379
20380 2003-06-10  Simon Josefsson  <jas@extundo.com>
20381
20382         * modules/argp: New file.
20383
20384 2003-06-10  Simon Josefsson  <jas@extundo.com>
20385
20386         * m4/strchrnul.m4: New file.
20387
20388 2003-06-10  Simon Josefsson  <jas@extundo.com>
20389
20390         * lib/strchrnul.h: New file.
20391         * lib/strchrnul.c: New file.
20392
20393 2003-06-10  Bruno Haible  <bruno@clisp.org>
20394
20395         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
20396
20397 2003-06-07  Karl Berry  <karl@gnu.org>
20398
20399         * config/config.{guess,sub}: update from prep.
20400
20401 2003-06-07  Jim Meyering  <jim@meyering.net>
20402
20403         * modules/strtod: Use $(...) notation, not @...@ for
20404         AC_REPLACE'd variables.
20405         * modules/localcharset: Likewise.
20406
20407 2003-06-07  Jim Meyering  <jim@meyering.net>
20408
20409         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
20410         in place of my name in the copyright comment.
20411         Remove definition and uses of __P.
20412
20413         From coreutils.
20414         * lib/stat.c: Don't declare xmalloc explicitly.
20415         Instead, include "xalloc.h".
20416         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
20417         xrealloc, and xcalloc return values.
20418         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
20419         Improve comment.
20420         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
20421
20422 2003-06-07  Bruno Haible  <bruno@clisp.org>
20423
20424         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
20425         avoid AC_CONFIG_LINKS.
20426         * modules/fnmatch (Makefile.am): Use explicit creation rule for
20427         fnmatch.h, to avoid AC_CONFIG_LINKS.
20428         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
20429
20430 2003-06-07  Bruno Haible  <bruno@clisp.org>
20431
20432         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
20433         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
20434         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
20435         directory.
20436         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
20437         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
20438         directory.
20439
20440 2003-06-06  Jim Meyering  <jim@meyering.net>
20441
20442         Merge from coreutils.
20443         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
20444         Consolidate declarations and initializations of *_base* locals.
20445
20446         Merge from coreutils.
20447         This avoids a core dump on systems without GNU putenv,
20448         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
20449         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
20450         (unsetenv): New static function, from GNU libc.
20451         (rpl_putenv): Use it.
20452
20453         * lib/modechange.c: Remove trailing blanks.
20454
20455         Merge from coreutils.
20456         * lib/fsusage.c: Remove declaration of statfs.
20457         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
20458
20459         * lib/posixtm.c: Include <stdbool.h> unconditionally.
20460
20461 2003-06-06  Jim Meyering  <jim@meyering.net>
20462
20463         * lib/stdbool_.h: Renamed from stdbool.h.in.
20464
20465 2003-06-06  Jim Meyering  <jim@meyering.net>
20466             Bruno Haible  <bruno@clisp.org>
20467
20468         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
20469         Adjust Makefile.am snippet not to redirect directly to target.
20470         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
20471
20472 2003-06-05  Paul Eggert  <eggert@twinsun.com>
20473
20474         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
20475         mismatch, look in future quarters as well as past.  This fixes a
20476         bug when processing fall-backwards gaps immediately after a long
20477         period of daylight-saving time.
20478
20479         * lib/mktime.c: Assume freestanding C89 or better.
20480         (HAVE_LIMITS_H): Remove.  Assume it's 1.
20481         (__P): Remove; not used.
20482         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
20483         (mktime, not_equal_tm, print_tm, check_result,
20484         main): Use prototypes.  Use const * where appropriate.
20485         (main): Fix typo in testing code that uncovered by above changes.
20486         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
20487
20488 2003-06-04  Paul Eggert  <eggert@twinsun.com>
20489
20490         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
20491         locale.h, localeconv.  This merges changes from coreutils.
20492
20493         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
20494         It can be removed after the next Autoconf is released.
20495         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
20496         needed.
20497
20498 2003-06-04  Paul Eggert  <eggert@twinsun.com>
20499
20500         * lib/mktime.c: Fix Debian bug 177940
20501         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
20502         (localtime_offset): Now long int, not time_t, because we want it
20503         to be guaranteed to be signed.  All uses changed.
20504         (__mktime_internal): If overflow would occur when adding offset,
20505         don't add it.
20506
20507         Merge 'human' changes from coreutils.  Rewrite to support
20508         locale-specific notations like thousands separators.
20509         * lib/human.c: Simplify authorship notice.
20510         Include human.h immediately after config.h.
20511         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
20512         <limits.h>: Do not include, since human.h does.
20513         (SIZE_MAX, UINTMAX_MAX): New macros.
20514         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
20515         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
20516         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
20517         (power_letter): Renamed from suffixes.
20518         (generate_suffix_backwards): Remove.
20519         (adjust_value): Now takes int style (because of human.h changes)
20520         and long double value (for greater precision on some platforms).
20521         (group_number): New function.
20522         (human_readable): Use it.  Use integer options, not enum.
20523         Put the options before the sizes in the arg list.
20524         Support all the new options.
20525         The old human_readable function has been removed;
20526         use inttostr.h instead.
20527         (human_readable, default_block_size, humblock):
20528         Use uintmax_t, not int, for block sizes.
20529         (human_readable_inexact, block_size_types): Remove.
20530         (block_size_opts): New constant.
20531         (human_options): Renamed from human_block_size, with new signature
20532         that allows block sizes up to UINTMAX_MAX.  All callers changed.
20533         * lib/human.h: Add copyright and authorship notice.
20534         Include <limits.h> and <stdbool.h> unconditionally.
20535         (PARAMS): Remove.  All uses removed.
20536         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
20537         (enum human_inexact_style): Remove tag; now a nameless enum.
20538         (human_floor, human_ceiling, human_round_to_even): Now have
20539         values 2, 0, 1 rather than -1, 1, 0.
20540         (human_group_digits, human_suppress_point_zero, human_autoscale,
20541         human_base_1024, human_SI, human_B): New constants.
20542         (human_readable_inexact, human_block_size): Remove.
20543         (human_readable): Size args are now uintmax_t, not int.
20544         (human_options): New decl.
20545
20546         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
20547         unnecessary now that we assume C89 or better.  This change
20548         imported from coreutils.
20549
20550         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
20551         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
20552         in the 2003-05-30 sync from glibc.
20553
20554         .h files should stand alone, but we shouldn't include <sys/types.h>
20555         if we can get away with just <stddef.h>.
20556
20557         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
20558         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
20559         rather than <sys/types.h>, as we merely need size_t.
20560         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
20561         to get size_t.
20562         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
20563         Include <stdio.h>, to get FILE.
20564         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
20565         memcasecmp.h has included <stddef.h> and all we need is size_t.
20566         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
20567         our interface, instead of including <sys/types.h>
20568
20569 2003-06-04  Paul Eggert  <eggert@twinsun.com>
20570
20571         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
20572         now, as glibc mktime is buggy on non-glibc systems.
20573
20574 2003-06-03  Karl Berry  <karl@gnu.org>
20575
20576         * config/config.sub: update from prep.
20577
20578 2003-06-02  Paul Eggert  <eggert@twinsun.com>
20579
20580         [from coreutils]
20581         Fix some minor time-related bugs with POSIX time arguments.
20582         Some valid time stamps were being rejected (notably -1, and
20583         time stamps before 1900 on 64-bit hosts).  And some invalid
20584         time stamps were being accepted, e.g. September 31.
20585
20586         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
20587         that we can return (time_t) -1 successfully.
20588         * lib/posixtm.c: Likewise.
20589         [HAVE_STDBOOL_H]: Include <stdbool.h>.
20590         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
20591         (t): Remove static var.
20592         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
20593         of static var.  All uses changed.
20594         (year): Do not reject years before 1900; they can occur with
20595         64-bit time_t.
20596         (posix_time_parse): Do not check for out-of-range components;
20597         that is now the caller's responsibility, since our checks were
20598         only approximations.
20599         (posixtime): Use mktime to check for out-of-range components,
20600         since it knows them exactly.
20601         If mktime returns (time_t) -1, check whether an error actually occurred
20602         by invoking localtime on -1.
20603         (main) [TEST_POSIXTIME]: Check for input data errors, and report
20604         posixtime failures better.
20605         Improve the test data (in comments only).
20606
20607 2003-06-02  Karl Berry  <karl@gnu.org>
20608
20609         * config/mkinstalldirs (version): new variable.
20610         (--version): new option.
20611         (usage): improve message.
20612
20613 2003-05-30  Karl Berry  <karl@gnu.org>
20614
20615         * lib/mktime.c: update from libc.
20616
20617 2003-05-30  Bruno Haible  <bruno@clisp.org>
20618
20619         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
20620         * config/config.rpath: Upgrade to gettext-0.12.1.
20621
20622 2003-05-30  Bruno Haible  <bruno@clisp.org>
20623
20624         * m4/gettext.m4: Upgrade to gettext-0.12.1.
20625         * m4/nls.m4: New file, from gettext-0.12.1.
20626         * m4/po.m4: New file, from gettext-0.12.1.
20627         * m4/progtest.m4: Upgrade to gettext-0.12.1.
20628
20629 2003-05-30  Bruno Haible  <bruno@clisp.org>
20630
20631         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
20632         * lib/localcharset.h: Likewise.
20633         * lib/localcharset.c: Likewise.
20634
20635 2003-05-29  Karl Berry  <karl@gnu.org>
20636
20637         * config/config.rpath: update from gettext.
20638
20639 2003-05-28  Paul Eggert  <eggert@twinsun.com>
20640
20641         Assume the headers required for C89 freestanding compilers.
20642         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
20643         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
20644         * m4/human.m4 (gl_HUMAN): Likewise.
20645         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
20646         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
20647         * m4/userspec.m4 (gl_USERSPEC): Likewise.
20648         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
20649         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
20650         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
20651
20652 2003-05-28  Paul Eggert  <eggert@twinsun.com>
20653
20654         Assume the headers required for C89 freestanding compilers.
20655         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
20656         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
20657         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
20658         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
20659         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
20660         define, since <limits.h> is guaranteed to do that.
20661         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
20662         * lib/exclude.c: Include <stdbool.h> unconditionally.
20663         * lib/tempname.c: Include <stddef.h> unconditionally.
20664         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
20665         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
20666         <stddef.h> does that.
20667         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
20668         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
20669         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
20670         needed.
20671         * lib/xstrtol.c: Likewise.
20672         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
20673         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
20674
20675         * lib/addext.c (addext): Use assignment rather than cast, to avoid
20676         warnings on some platforms.
20677
20678         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
20679         arbitrarily.
20680
20681 2003-05-26  Jim Meyering  <jim@meyering.net>
20682
20683         Merge in a change from coreutils:
20684         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
20685         that is guaranteed to be `no'.  Use `no_such_member' to indicate
20686         that condition, rather than `-1' which is slightly misleading.
20687         Change the name of the cache variable to have the gl_ prefix.
20688         Prompted by a patch from Richard Dawe for DJGPP.
20689
20690 2003-05-24  Karl Berry  <karl@gnu.org>
20691
20692         * config/config.guess: update from prep.
20693
20694 2003-05-22  Karl Berry  <karl@gnu.org>
20695
20696         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
20697
20698 2003-05-20  Karl Berry  <karl@gnu.org>
20699
20700         * config/config.guess: update from prep.
20701
20702 2003-05-18  Karl Berry  <karl@gnu.org>
20703
20704         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
20705         might actually be set by the user.
20706
20707         * config/depcomp, install-sh, mdate-sh: update from automake.
20708
20709 2003-05-17  Bruno Haible  <bruno@clisp.org>
20710
20711         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
20712         invalid expansion for AC_EGREP_CPP.
20713         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
20714         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
20715         Suggested by Akim Demaille <akim@epita.fr> in
20716         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
20717
20718 2003-05-12  Jim Meyering  <jim@meyering.net>
20719
20720         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
20721         the space-padded-by-default conversion specifiers, %e, %k, %l.
20722
20723 2003-05-12  Bruno Haible  <bruno@clisp.org>
20724
20725         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
20726         the string is longer than 4 KB.
20727
20728 2003-05-11  Karl Berry  <karl@gnu.org>
20729
20730         * config/config.{guess,sub}: update from prep.
20731
20732 2003-05-09  Bruno Haible  <bruno@clisp.org>
20733
20734         * modules/error: Add m4/strerror_r.m4 to file list.
20735
20736 2003-05-03  Bruno Haible  <bruno@clisp.org>
20737
20738         Upgrade to Unicode-4.0.
20739         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
20740         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
20741         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
20742         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
20743         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
20744         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
20745         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
20746         Change width of U+E0100..U+E01EF from 1 to 0.
20747
20748 2003-04-25  Jim Meyering  <jim@meyering.net>
20749
20750         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
20751         of type size_t, not int.
20752
20753 2003-04-25  Bruno Haible  <bruno@clisp.org>
20754
20755         * lib/copy-file.c: Include <stddef.h>, for size_t.
20756
20757 2003-04-21  Paul Eggert  <eggert@twinsun.com>
20758
20759         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
20760         code which expansion is under static control.  Patch imported from
20761         Akim Demaille's patch to Bison; see
20762         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
20763
20764 2003-04-14  Bruno Haible  <bruno@clisp.org>
20765
20766         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
20767
20768 2003-04-11  Jim Meyering  <jim@meyering.net>
20769
20770         Merge changes from Coreutils.
20771
20772         2003-03-22  Jim Meyering  <jim@meyering.net>
20773
20774         * lib/strftime.c (widen): Cast alloca return value to proper type.
20775
20776         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
20777
20778         From GNU libc.
20779         * lib/strftime.c (my_strftime): Handle very large width
20780         specifications for numeric values correctly.  Improve checks for
20781         overflow.
20782
20783         2003-01-19  Jim Meyering  <jim@meyering.net>
20784
20785         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
20786         definitions.
20787         (nl_get_alt_digit) [! defined my_strftime]: Define.
20788         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
20789         _nl_get_alt_digit and _nl_get_walt_digit.
20790
20791         * lib/strftime.c (my_strftime): Merge in locale-related changes from
20792         libc. These changes have no effect outside of _LIBC.
20793
20794 2003-04-10  Bruno Haible  <bruno@clisp.org>
20795
20796         * modules/findprog: New file.
20797         * MODULES.html.sh (func_all_modules): Add it.
20798
20799 2003-04-10  Bruno Haible  <bruno@clisp.org>
20800
20801         * m4/findprog.m4: New file.
20802         * m4/eaccess.m4: New file.
20803
20804 2003-04-10  Bruno Haible  <bruno@clisp.org>
20805
20806         * lib/findprog.h: New file, from GNU gettext.
20807         * lib/findprog.c: New file, from GNU gettext.
20808
20809 2003-04-05  Jim Meyering  <jim@meyering.net>
20810
20811         Merge changes from Coreutils.
20812
20813         * lib/exclude.h (PARAMS): Remove definition and uses.
20814         * lib/exclude.c: Remove uses of `PARAMS'.
20815
20816         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
20817         Add test-cases for DOS filenames. Declare program_name.
20818         (main): Set up program_name.  Patch by Rich Dawe.
20819
20820         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
20821         error from mntctl.
20822         Use mntctl's return value to drive the entry-processing loop, since
20823         we can't rely on the value of the vmt_length member in the last
20824         entry.  On some systems doing so could result in exhausting
20825         virtual memory.  Based in part on a patch from Mike Jetzer.
20826
20827 2003-04-04  Bruno Haible  <bruno@clisp.org>
20828
20829         * modules/linebreak: New file.
20830         * MODULES.html.sh (func_all_modules): Add it.
20831
20832 2003-04-04  Bruno Haible  <bruno@clisp.org>
20833
20834         * m4/linebreak.m4: New file.
20835
20836 2003-04-04  Bruno Haible  <bruno@clisp.org>
20837
20838         * lib/linebreak.h: New file, from GNU gettext.
20839         * lib/linebreak.c: New file, from GNU gettext with slight
20840         modifications.
20841         * lib/lbrkprop.h: New file, from GNU gettext.
20842
20843 2003-04-03  Bruno Haible  <bruno@clisp.org>
20844
20845         * modules/utf8-ucs4: New file.
20846         * modules/utf16-ucs4: New file.
20847         * modules/ucs4-utf8: New file.
20848         * modules/ucs4-utf16: New file.
20849         * MODULES.html.sh (func_all_modules): Add them.
20850
20851 2003-04-03  Bruno Haible  <bruno@clisp.org>
20852
20853         * m4/utf-ucs4.m4: New file.
20854         * m4/ucs4-utf.m4: New file.
20855
20856 2003-04-03  Bruno Haible  <bruno@clisp.org>
20857
20858         * lib/utf8-ucs4.h: New file, from GNU gettext.
20859         * lib/utf16-ucs4.h: New file, from GNU gettext.
20860         * lib/ucs4-utf8.h: New file, from GNU gettext.
20861         * lib/ucs4-utf16.h: New file, from GNU gettext.
20862
20863 2003-04-02  Bruno Haible  <bruno@clisp.org>
20864
20865         * modules/binary-io: New file.
20866         * MODULES.html.sh (func_all_modules): Add it.
20867
20868 2003-04-02  Bruno Haible  <bruno@clisp.org>
20869
20870         * lib/binary-io.h: New file, from GNU gettext.
20871
20872 2003-04-01  Bruno Haible  <bruno@clisp.org>
20873
20874         * modules/pathname: New file.
20875         * MODULES.html.sh (func_all_modules): Add it.
20876
20877 2003-04-01  Bruno Haible  <bruno@clisp.org>
20878
20879         * lib/pathname.h: New file, from GNU gettext.
20880         * lib/concatpath.c: New file, from GNU gettext.
20881
20882 2003-03-30  Bruno Haible  <bruno@clisp.org>
20883
20884         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
20885
20886 2003-03-30  Bruno Haible  <bruno@clisp.org>
20887
20888         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
20889         function chown() doesn't exist.
20890
20891 2003-03-28  Bruno Haible  <bruno@clisp.org>
20892
20893         * modules/copy-file: New file.
20894         * MODULES.html.sh (func_all_modules): Add it.
20895
20896 2003-03-28  Bruno Haible  <bruno@clisp.org>
20897
20898         * m4/copy-file.m4: New file.
20899
20900 2003-03-28  Bruno Haible  <bruno@clisp.org>
20901
20902         * lib/copy-file.h: New file, from GNU gettext.
20903         * lib/copy-file.c: New file, from GNU gettext.
20904
20905 2003-03-18  Jim Meyering  <jim@meyering.net>
20906
20907         * lib/quote.c (quote_n): Fix typo in comment.
20908
20909 2003-03-18  Bruno Haible  <bruno@clisp.org>
20910
20911         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
20912         checking.
20913         * m4/onceonly_2_57.m4: Likewise.
20914
20915 2003-03-17  Bruno Haible  <bruno@clisp.org>
20916
20917         * m4/onceonly.m4: Require autoconf 2.54 or newer.
20918         (m4_quote): Remove macro.
20919         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
20920
20921 2003-03-14  Jim Meyering  <jim@meyering.net>
20922
20923         Merge changes from Coreutils.
20924         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
20925         to be const, in order to avoid warnings.
20926         (obstack_room): Likewise.
20927         (obstack_empty_p): Likewise.
20928
20929 2003-03-14  Bruno Haible  <bruno@clisp.org>
20930
20931         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
20932         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
20933
20934 2003-03-13  Paul Eggert  <eggert@twinsun.com>
20935
20936         Merge changes from Bison.
20937         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
20938         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
20939         when compiling Bison 1.875's `bitset bset = obstack_alloc
20940         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
20941         * lib/hash.c: Include <stdbool.h> unconditionally.
20942
20943 2003-03-13  Paul Eggert  <eggert@twinsun.com>
20944
20945         * m4/onceonly.m4 (m4_quote): New macro.
20946         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
20947         Quote AC_FOREACH variable-expansions properly.
20948
20949 2003-03-13  Paul Eggert  <eggert@twinsun.com>
20950
20951         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
20952
20953 2003-03-09  Paul Eggert  <eggert@twinsun.com>
20954
20955         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
20956         Reported by Bruce Becker; see:
20957         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
20958
20959 2003-03-03  Paul Eggert  <eggert@twinsun.com>
20960             Bruno Haible  <bruno@clisp.org>
20961
20962         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
20963         Reported by John Hughes, see
20964         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
20965
20966 2003-02-20  Bruno Haible  <bruno@clisp.org>
20967
20968         * MODULES.html.sh (func_all_modules): Add poll.
20969
20970 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
20971
20972         * modules/poll: New file.
20973
20974 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
20975
20976         * lib/poll_.h: New file.
20977         * lib/poll.c: New file.
20978
20979 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
20980
20981         * m4/poll.m4: New file.
20982
20983 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
20984
20985         * modules/mathl: New file.
20986
20987 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
20988
20989         * lib/mathl.h: New file.
20990         * lib/acosl.c: New file.
20991         * lib/asinl.c: New file.
20992         * lib/atanl.c: New file.
20993         * lib/ceill.c: New file.
20994         * lib/cosl.c: New file.
20995         * lib/expl.c: New file.
20996         * lib/floorl.c: New file.
20997         * lib/frexpl.c: New file.
20998         * lib/ldexpl.c: New file.
20999         * lib/logl.c: New file.
21000         * lib/sincosl.c: New file.
21001         * lib/sinl.c: New file.
21002         * lib/sqrtl.c: New file.
21003         * lib/tanl.c: New file.
21004         * lib/trigl.c: New file.
21005         * lib/trigl.h: New file.
21006
21007 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
21008
21009         * m4/mathl.m4: New file.
21010
21011 2003-02-18  Bruno Haible  <bruno@clisp.org>
21012
21013         * MODULES.html.sh (func_all_modules): Add mathl.
21014
21015 2003-02-17  Bruno Haible  <bruno@clisp.org>
21016
21017         * modules/mkdtemp: New module.
21018         * MODULES.html.sh (func_all_modules): Add it.
21019
21020 2003-02-17  Bruno Haible  <bruno@clisp.org>
21021
21022         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
21023
21024 2003-02-17  Bruno Haible  <bruno@clisp.org>
21025
21026         * lib/mkdtemp.h: New file, from GNU gettext.
21027         * lib/mkdtemp.c: New file, from GNU gettext.
21028
21029 2003-02-02  Jim Meyering  <jim@meyering.net>
21030
21031         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
21032         e.g. glibc-2.2.93.
21033
21034 2003-01-31  Bruno Haible  <bruno@clisp.org>
21035
21036         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
21037         'rpl_rename'.
21038         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
21039         'rpl_strnlen'.
21040         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
21041         'rpl_strtod'.
21042         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
21043         'rpl_utime'.
21044
21045 2003-01-31  Bruno Haible  <bruno@clisp.org>
21046
21047         * lib/rename.c: #undef rename before defining rpl_rename.
21048         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
21049
21050 2003-01-30  Bruno Haible  <bruno@clisp.org>
21051
21052         * modules/vasnprintf, modules/vasprintf: New modules.
21053         * MODULES.html.sh (func_all_modules): Add them.
21054
21055 2003-01-30  Bruno Haible  <bruno@clisp.org>
21056
21057         * m4/signed.m4: New file, from GNU gettext.
21058         * m4/longdouble.m4: New file, from GNU gettext.
21059         * m4/wchar_t.m4: New file, from GNU gettext.
21060         * m4/wint_t.m4: New file, from GNU gettext.
21061         * m4/vasnprintf.m4: New file.
21062         * m4/vasprintf.m4: New file.
21063
21064 2003-01-30  Bruno Haible  <bruno@clisp.org>
21065
21066         * lib/printf-args.h: New file, from GNU gettext.
21067         * lib/printf-args.c: New file, from GNU gettext.
21068         * lib/printf-parse.h: New file, from GNU gettext.
21069         * lib/printf-parse.c: New file, from GNU gettext.
21070         * lib/vasnprintf.h: New file, from GNU gettext.
21071         * lib/vasnprintf.c: New file, from GNU gettext.
21072         * lib/asnprintf.c: New file, from GNU gettext.
21073         * lib/vasprintf.h: New file, from GNU gettext with modifications.
21074         * lib/vasprintf.c: New file, from GNU gettext.
21075         * lib/asprintf.c: New file, from GNU gettext.
21076
21077 2003-01-29  Bruno Haible  <bruno@clisp.org>
21078
21079         * modules/stpncpy: New module.
21080         * MODULES.html.sh (func_all_modules): Add it.
21081
21082 2003-01-29  Bruno Haible  <bruno@clisp.org>
21083
21084         * m4/stpncpy.m4: New file.
21085
21086 2003-01-29  Bruno Haible  <bruno@clisp.org>
21087
21088         * lib/stpncpy.h: New file, from GNU gettext with modifications.
21089         * lib/stpncpy.c: New file, from GNU gettext with modifications.
21090
21091 2003-01-28  Bruno Haible  <bruno@clisp.org>
21092
21093         * modules/c-ctype: New module.
21094         * MODULES.html.sh (func_all_modules): Add it.
21095
21096 2003-01-28  Bruno Haible  <bruno@clisp.org>
21097
21098         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
21099         Paul Eggert.
21100         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
21101         Paul Eggert.
21102
21103 2003-01-27  Bruno Haible  <bruno@clisp.org>
21104
21105         * modules/xsetenv: New module.
21106         * MODULES.html.sh (func_all_modules): Add it.
21107
21108 2003-01-27  Bruno Haible  <bruno@clisp.org>
21109
21110         * lib/xsetenv.h: New file, from GNU gettext.
21111         * lib/xsetenv.c: New file, from GNU gettext.
21112
21113 2003-01-23  Jim Meyering  <jim@meyering.net>
21114
21115         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
21116         from working on systems without dirfd (at least Irix and OSF1/Tru64).
21117
21118 2003-01-23  Bruno Haible  <bruno@clisp.org>
21119
21120         * modules/minmax: New module.
21121         * MODULES.html.sh (func_all_modules): Add it.
21122
21123 2003-01-23  Bruno Haible  <bruno@clisp.org>
21124
21125         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
21126         Eggert.
21127
21128 2003-01-22  Bruno Haible  <bruno@clisp.org>
21129
21130         * modules/exit: New module.
21131         * MODULES.html.sh (func_all_modules): Add it.
21132
21133 2003-01-22  Bruno Haible  <bruno@clisp.org>
21134
21135         * lib/exit.h: New file, from GNU gettext.
21136
21137 2003-01-19  Bruno Haible  <bruno@clisp.org>
21138
21139         * gnulib-tool: Recognize option --extract-maintainer.
21140         (func_get_maintainer): New function.
21141         * modules/*: Add Maintainer entry.
21142
21143 2003-01-16  Jim Meyering  <jim@meyering.net>
21144
21145         * m4/regex.m4: The `regex' struct is both input and output.
21146         Initialize it before each use.  Patch by Tim Waugh.
21147
21148 2003-01-16  Bruno Haible  <bruno@clisp.org>
21149
21150         * MODULES.html.sh: Add a table of contents. Add the module name as
21151         leftmost column. Add hyperlinks.
21152
21153 2003-01-15  Bruno Haible  <bruno@clisp.org>
21154
21155         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
21156
21157 2003-01-15  Bruno Haible  <bruno@clisp.org>
21158
21159         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
21160         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
21161         suffix.
21162
21163 2003-01-15  Bruno Haible  <bruno@clisp.org>
21164
21165         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
21166
21167 2003-01-15  Bruno Haible  <bruno@clisp.org>
21168
21169         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
21170         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
21171
21172 2003-01-14  Jim Meyering  <jim@meyering.net>
21173
21174         * lib/same.c (same_name): Tweak a comment.
21175
21176 2003-01-14  Bruno Haible  <bruno@clisp.org>
21177
21178         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
21179         when a string comparison is sufficient.
21180
21181 2003-01-14  Bruno Haible  <bruno@clisp.org>
21182
21183         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
21184         'unsigned int'.
21185
21186 2003-01-14  Bruno Haible  <bruno@clisp.org>
21187
21188         * lib/hash-pjw.c: Add comment about low quality of this function.
21189
21190 2003-01-13  Bruno Haible  <bruno@clisp.org>
21191
21192         * modules/stpcpy: Distribute lib/stpcpy.h.
21193         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
21194
21195 2003-01-13  Bruno Haible  <bruno@clisp.org>
21196
21197         * modules/*: Add a description.
21198         * modules/strpbrk: Fix Makefile.am snippet.
21199         * modules/strtoimax: Fix dependencies.
21200         * modules/strtoumax: Likewise.
21201
21202 2003-01-13  Bruno Haible  <bruno@clisp.org>
21203
21204         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
21205         * modules/alloca (Makefile.am): All object files depend on alloca.h.
21206         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
21207
21208 2003-01-13  Bruno Haible  <bruno@clisp.org>
21209
21210         * gnulib-tool (func_create_testdir): Store config/* files in the main
21211         directory.
21212         * config.rpath: Move to ...
21213         * config/config.rpath: ... here.
21214         * modules/gettext: Contains config/config.rpath, not config.rpath.
21215         * modules/iconv: Likewise.
21216
21217 2003-01-12  Paul Eggert  <eggert@twinsun.com>
21218
21219         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
21220         to avoid collisions with libcurses and libreadline.
21221
21222         * m4/getstr.m4: Remove.
21223         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
21224
21225 2003-01-12  Paul Eggert  <eggert@twinsun.com>
21226
21227         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
21228         to avoid collisions with libcurses and libreadline.
21229
21230         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
21231         * lib/getstr.h, getstr.c: Remove.
21232         * lib/getline.c: Include "getline.h", to check interface.
21233         Move body of old getstr.c here: this defines MIN_CHUNK and
21234         declares getdelim2, which is renamed from getstr.
21235         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
21236
21237         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
21238         All uses changed.
21239         * lib/linebuffer.h: Likewise.
21240         (readline): Remove backward-compatibility macro.
21241
21242 2003-01-12  Paul Eggert  <eggert@twinsun.com>
21243
21244         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
21245         to avoid collisions with libcurses and libreadline.
21246         * getstr: Remove.
21247         * MODULES.html.sh: Remove getstr.
21248         * modules/getline: Depend on unlocked-io, not getstr.
21249
21250 2003-01-12  Jim Meyering  <jim@meyering.net>
21251
21252         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
21253
21254 2003-01-10  Bruno Haible  <bruno@clisp.org>
21255
21256         * modules/alloca: Change Makefile.am requirements. Simplify Include
21257         requirements. Add lib/alloca_.h to file list.
21258
21259 2003-01-10  Bruno Haible  <bruno@clisp.org>
21260
21261         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
21262
21263 2003-01-10  Bruno Haible  <bruno@clisp.org>
21264
21265         * lib/alloca_.h: New file.
21266         * lib/getdate.y: Unconditionally include alloca.h.
21267         * lib/makepath.c: Likewise.
21268         * lib/setenv.c: Likewise.
21269         * lib/userspec.c: Likewise.
21270
21271 2003-01-09  Karl Berry  <karl@gnu.org>
21272
21273         * MODULES.html.sh: include `dirname $0` in PATH, to find
21274         gnulib-tool.
21275
21276 2003-01-09  Bruno Haible  <bruno@clisp.org>
21277
21278         * modules/stdbool: Change configure.ac, Makefile.am requirements.
21279         Simplify Include requirements. Add lib/stdbool.h.in to file list.
21280
21281 2003-01-09  Bruno Haible  <bruno@clisp.org>
21282
21283         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
21284
21285 2003-01-09  Bruno Haible  <bruno@clisp.org>
21286
21287         * lib/stdbool.h.in: New file.
21288
21289 2003-01-09  Bruno Haible  <bruno@clisp.org>
21290
21291         * gnulib-tool (func_all_modules): Ignore files ending in ~.
21292         * MODULES.html.sh: Likewise.
21293
21294 2003-01-08  Jim Meyering  <jim@meyering.net>
21295
21296         * lib/full-write.c: Undefine and define-away `const' after inclusion
21297         of errno.h, not before.  Suggestion from Bruno Haible.
21298
21299 2003-01-08  Bruno Haible  <bruno@clisp.org>
21300
21301         * modules/full-read: Depend on full-write.
21302
21303 2003-01-08  Bruno Haible  <bruno@clisp.org>
21304
21305         * lib/safe-read.c: Include specification header first, to ensure its
21306         selfcontainedness.
21307         * lib/full-write.c: Likewise.
21308
21309 2003-01-07  Jim Meyering  <jim@meyering.net>
21310
21311         * lib/full-write.c: Rework so that it may serve to define full_read,
21312         too.
21313         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
21314
21315 2003-01-07  Bruno Haible  <bruno@clisp.org>
21316
21317         * lib/strtoimax.c: Include <stdint.h> as an alternative to
21318         <inttypes.h>.
21319         * lib/xstrtol.h: Likewise.
21320         * lib/xstrtoimax.c: Likewise.
21321         * lib/xstrtoumax.c: Likewise.
21322         * lib/human.h: Likewise.
21323
21324         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
21325         on systems that have <inttypes.h> but not <stdint.h>.
21326
21327 2003-01-07  Bruno Haible  <bruno@clisp.org>
21328
21329         * MODULES.html.sh: Add copyright notice.
21330         (missed_files): Omit CVS directory entries.
21331         (func_module): Make it work with sed-3.02.
21332         * MODULES.txt: Remove file.
21333
21334 2003-01-06  Jim Meyering  <jim@meyering.net>
21335
21336         * lib/version-etc.c: Update year in translatable copyright string.
21337
21338 2003-01-03  Karl Berry  <karl@gnu.org>
21339
21340         * config/config.{guess,sub}: update from prep.
21341
21342 2003-01-02  Karl Berry  <karl@gnu.org>
21343
21344         * doc/COPYING.DOC: belatedly updated to 1.2.
21345
21346 2003-01-01  Karl Berry  <karl@gnu.org>
21347
21348         * gnulib-tool (func_verify_module): report module name $module in
21349         error message, not $1.
21350         * gnulib-tool (create-testdir): don't complain if destdir couldn't
21351         be created, only if it doesn't exist.
21352         * gnulib-tool (last_checkin_date): don't expand the $Date here.
21353
21354 2002-12-31  Paul Eggert  <eggert@twinsun.com>
21355
21356         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
21357
21358 2002-12-31  Paul Eggert  <eggert@twinsun.com>
21359
21360         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
21361         memcmp if strcoll doesn't work.
21362
21363 2002-12-31  Bruno Haible  <bruno@clisp.org>
21364
21365         * lib/utime.c (utime_null): No need to call ftruncate if the file was
21366         nonempty.
21367
21368 2002-12-31  Bruno Haible  <bruno@clisp.org>
21369
21370         * lib/memcoll.c (STRCOLL): New macro.
21371         (memcoll): Use it.
21372
21373 2002-12-31  Bruno Haible  <bruno@clisp.org>
21374
21375         * lib/localcharset.h: New file.
21376         * lib/localcharset.c: Include it.
21377         * lib/unicodeio.c: Likewise.
21378
21379 2002-12-31  Bruno Haible  <bruno@clisp.org>
21380
21381         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
21382         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
21383
21384 2002-12-31  Bruno Haible  <bruno@clisp.org>
21385
21386         * lib/getline.h: Include <stddef.h>, for size_t.
21387
21388         * lib/unicodeio.h: Include <stddef.h>, for size_t.
21389         * lib/unicodeio.c: Don't include <stddef.h>.
21390
21391 2002-12-31  Bruno Haible  <bruno@clisp.org>
21392
21393         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
21394         HAVE_TM_ZONE.
21395
21396 2002-12-24  Karl Berry  <karl@gnu.org>
21397
21398         * config/config.guess: update from prep.
21399
21400 2002-12-24  Bruno Haible  <bruno@clisp.org>
21401
21402         General infrasructure.
21403         * m4/README: Rewritten.
21404         * m4/onceonly.m4: New file.
21405         * m4/onceonly_2_57.m4: New file.
21406
21407         Module atexit.
21408         * m4/atexit.m4: New file.
21409
21410         Module strtod.
21411         * m4/strtod.m4: New file.
21412
21413         Module strtol.
21414         * m4/strtol.m4: New file.
21415
21416         Module strtoul.
21417         * m4/strtoul.m4: New file.
21418
21419         Module memchr.
21420         * m4/memchr.m4: New file.
21421
21422         Module memcmp.
21423         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
21424         (jm_FUNC_MEMCMP): Invoke it.
21425
21426         Module memcpy.
21427         * m4/memcpy.m4: New file.
21428
21429         Module memmove.
21430         * m4/memmove.m4: New file.
21431
21432         Module memset.
21433         * m4/memset.m4: New file.
21434
21435         Module strcspn.
21436         * m4/strcspn.m4: New file.
21437
21438         Module strpbrk.
21439         * m4/strpbrk.m4: New file.
21440
21441         Module strstr.
21442         * m4/strstr.m4: New file.
21443
21444         Module strerror.
21445         * m4/strerror.m4: New file.
21446
21447         Module mktime.
21448         * m4/mktime.m4: Renamed from jm-mktime.m4.
21449         (gl_PREREQ_MKTIME): New macro.
21450         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
21451
21452         Module malloc.
21453         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
21454         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
21455         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
21456
21457         Module realloc.
21458         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
21459         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
21460         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
21461
21462         Module strftime.
21463         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
21464         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
21465         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
21466         gl_TM_GMTOFF.
21467         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
21468
21469         Module xalloc.
21470         * m4/xalloc.m4: New file.
21471
21472         Module alloca.
21473         * m4/alloca.m4: New file.
21474
21475         Module putenv.
21476         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
21477         (jm_FUNC_PUTENV): Invoke it.
21478
21479         Module setenv.
21480         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
21481         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
21482         when invoked twice.
21483         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
21484         gt_FUNC_SETENV.
21485
21486         Module memrchr.
21487         * m4/memrchr.m4: New file.
21488
21489         Module stpcpy.
21490         * m4/stpcpy.m4: New file.
21491
21492         Module strcase.
21493         * m4/strcase.m4: New file.
21494
21495         Module strdup.
21496         * m4/strdup.m4: New file.
21497
21498         Module strnlen.
21499         * m4/strnlen.m4: New file.
21500
21501         Module strndup.
21502         * m4/strndup.m4: New file.
21503
21504         Module xstrtod.
21505         * m4/xstrtod.m4: New file.
21506
21507         Module xstrtol.
21508         * m4/xstrtol.m4: New file.
21509
21510         Module getdate.
21511         * m4/getdate.m4: New file.
21512
21513         Module unlocked-io.
21514         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
21515         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
21516         * m4/jm-glibc-io.m4n: Remove file.
21517
21518         Module long-options.
21519         * m4/long-options.m4: New file.
21520
21521         Module md5.
21522         * m4/md5.m4: New file.
21523
21524         Module sha.
21525         * m4/sha.m4: New file.
21526
21527         Module getstr.
21528         * m4/getstr.m4: New file.
21529
21530         Module getline.
21531         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
21532         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
21533         <sys/types.h>, for size_t. Use the function name gnu_getline, not
21534         simply getline. Infoke gl_PREREQ_GETLINE.
21535
21536         Module obstack.
21537         * m4/obstack.m4: New file.
21538
21539         Module hash.
21540         * m4/hash.m4: New file.
21541
21542         Module readtokens.
21543         * m4/readtokens.m4: New file.
21544
21545         Module strverscmp.
21546         * m4/strverscmp.m4: New file.
21547
21548         Module stdbool.
21549         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
21550         OSF/1.
21551
21552         Module strtoll.
21553         * m4/strtoll.m4: New file.
21554
21555         Module strtoull.
21556         * m4/strtoull.m4: New file.
21557
21558         Module strtoimax.
21559         * m4/strtoimax.m4: New file.
21560
21561         Module strtoumax.
21562         * m4/strtoumax.m4: New file.
21563
21564         Module xstrtoimax.
21565         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
21566         jm_AC_PREREQ_XSTRTOIMAX.
21567         Moved the strtol prerequisites to strtol.m4.
21568         Moved the strtoll prerequisites to strtoll.m4.
21569         Moved the strtoimax prerequisites to strtoimax.m4.
21570
21571         Module xstrtoumax.
21572         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
21573         jm_AC_PREREQ_XSTRTOUMAX.
21574         Moved the strtoul prerequisites to strtoul.m4.
21575         Moved the strtoull prerequisites to strtoull.m4.
21576         Moved the strtoumax prerequisites to strtoumax.m4.
21577
21578         Module chown.
21579         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
21580         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
21581
21582         Module dup2.
21583         * m4/dup2.m4: New file.
21584
21585         Module ftruncate.
21586         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
21587         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
21588
21589         Module getgroups.
21590         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
21591         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
21592
21593         Module gettimeofday.
21594         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
21595         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
21596         gl_PREREQ_GETTIMEOFDAY.
21597
21598         Module mkdir.
21599         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
21600         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
21601
21602         Module mkstemp.
21603         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
21604         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
21605         jm_AC_TYPE_UINTMAX_T.
21606         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
21607
21608         Module stat.
21609         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
21610         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
21611
21612         Module lstat.
21613         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
21614         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
21615
21616         Module timespec.
21617         * m4/timespec.m4 (gl_TIMESPEC): New macro.
21618         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
21619         * m4/st_mtim.m4: Indentation.
21620
21621         Module nanosleep.
21622         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
21623         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
21624         gl_PREREQ_NANOSLEEP.
21625
21626         Module regex.
21627         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
21628         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
21629         (gl_REGEX): New macro.
21630
21631         Module rename.
21632         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
21633         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
21634
21635         Module rmdir.
21636         * m4/rmdir.m4: New file.
21637
21638         Module utime.
21639         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
21640         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
21641         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
21642
21643         Module dirname.
21644         * m4/dirname.m4: New file.
21645
21646         Module getopt.
21647         * m4/getopt.m4: New file.
21648
21649         Module unistd-safer.
21650         * m4/unistd-safer.m4: New file.
21651
21652         Module fnmatch.
21653         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
21654         declaration.
21655         (gl_PREREQ_FNMATCH_EXTRA): New macro.
21656         (gl_FUNC_FNMATCH_POSIX): New macro.
21657         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
21658         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
21659         simply fnmatch.
21660
21661         Module exclude.
21662         * m4/exclude.m4: New file.
21663
21664         Module human.
21665         * m4/human.m4: New file.
21666
21667         Module acl.
21668         * m4/acl.m4: Nop.
21669
21670         Module backupfile.
21671         * m4/backupfile.m4: New file.
21672         * m4/d-ino.m4: Indentation.
21673
21674         Module fsusage.
21675         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
21676         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
21677         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
21678
21679         Module dirfd.
21680         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
21681         requirements.
21682
21683         Module euidaccess.
21684         * m4/euidaccess.m4: New file.
21685
21686         Module file-type.
21687         * m4/file-type.m4: New file.
21688
21689         Module fileblocks.
21690         * m4/fileblocks.m4: New file.
21691
21692         Module filemode.
21693         * m4/filemode.m4: New file.
21694
21695         Module isdir.
21696         * m4/isdir.m4: New file.
21697
21698         Module lchown.
21699         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
21700         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
21701
21702         Module makepath.
21703         * m4/makepath.m4: New file.
21704
21705         Module modechange.
21706         * m4/modechange.m4: New file.
21707
21708         Module mountlist.
21709         * m4/mountlist.m4: New file.
21710         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
21711         Indentation.
21712
21713         Module path-concat.
21714         * m4/path-concat.m4: New file.
21715
21716         Module pathmax.
21717         * m4/pathmax.m4: New file.
21718
21719         Module same.
21720         * m4/same.m4: New file.
21721
21722         Module save-cwd.
21723         * m4/save-cwd.m4: New file.
21724
21725         Module savedir.
21726         * m4/savedir.m4: New file.
21727
21728         Module xgetcwd.
21729         * m4/xgetcwd.m4: New file.
21730         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
21731
21732         Module xreadlink.
21733         * m4/xreadlink.m4: New file.
21734
21735         Module safe-read.
21736         * m4/safe-read.m4: New file.
21737
21738         Module safe-write.
21739         * m4/safe-write.m4: New file.
21740
21741         Module closeout.
21742         * m4/closeout.m4: New file.
21743
21744         Module stdio-safer.
21745         * m4/stdio-safer.m4: New file.
21746
21747         Module getpass.
21748         * m4/getpass.m4: New file.
21749
21750         Module getugroups.
21751         * m4/getugroups.m4: New file.
21752
21753         Module group-member.
21754         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
21755         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
21756
21757         Module idcache.
21758         * m4/idcache.m4: New file.
21759
21760         Module userspec.
21761         * m4/userspec.m4: New file.
21762
21763         Module gettime.
21764         * m4/clock_time.m4: New file.
21765         * m4/gettime.m4: New file.
21766
21767         Module settime.
21768         * m4/settime.m4: New file.
21769
21770         Module posixtm.
21771         * m4/posixtm.m4: New file.
21772
21773         Module gethostname.
21774         * m4/gethostname.m4: New file.
21775
21776         Module canon-host.
21777         * m4/canon-host.m4: New file.
21778
21779         Module gettext.
21780         * m4/codeset.m4: New file, from gettext-0.11.5.
21781         * m4/gettext.m4: New file, from gettext-0.11.5.
21782         * m4/glibc21.m4: New file, from gettext-0.11.5.
21783         * m4/iconv.m4: New file, from gettext-0.11.5.
21784         * m4/intdiv0.m4: New file, from gettext-0.11.5.
21785         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
21786         * m4/inttypes.m4: New file, from gettext-0.11.5.
21787         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
21788         * m4/isc-posix.m4: New file, from gettext-0.11.5.
21789         * m4/lcmessage.m4: New file, from gettext-0.11.5.
21790         * m4/lib-ld.m4: New file, from gettext-0.11.5.
21791         * m4/lib-link.m4: New file, from gettext-0.11.5.
21792         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
21793         * m4/progtest.m4: New file, from gettext-0.11.5.
21794         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
21795         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
21796         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
21797
21798         Module localcharset.
21799         * m4/localcharset.m4: New file.
21800
21801         Module hard-locale.
21802         * m4/hard-locale.m4: New file.
21803
21804         Module mbswidth.
21805         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
21806         onceonly macros.
21807         * m4/mbrtowc.m4: Add comment.
21808
21809         Module memcasecmp.
21810         * m4/memcasecmp.m4: New file.
21811
21812         Module memcoll.
21813         * m4/memcoll.m4: New file.
21814
21815         Module unicodeio.
21816         * m4/unicodeio.m4: New file.
21817
21818         Module rpmatch.
21819         * m4/rpmatch.m4: New file.
21820
21821         Module yesno.
21822         * m4/yesno.m4: New file.
21823
21824         Module exitfail.
21825         * m4/exitfail.m4: New file.
21826
21827         Module c-stack.
21828         * m4/c-stack.m4 (gl_C_STACK): New macro.
21829         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
21830
21831         Module error.
21832         * m4/error.m4 (gl_ERROR): New macro.
21833         (jm_PREREQ_ERROR): Use onceonly macros.
21834
21835         Module fatal.
21836         * m4/fatal.m4: New file.
21837
21838         Module getloadavg.
21839         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
21840         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
21841
21842         Module getpagesize.
21843         * m4/getpagesize.m4: New file.
21844
21845         Module getusershell.
21846         * m4/getusershell.m4: New file.
21847
21848         Module physmem.
21849         * m4/physmem.m4: New file.
21850
21851         Module posixver.
21852         * m4/posixver.m4: New file.
21853
21854         Module quotearg.
21855         * m4/quotearg.m4: New file.
21856
21857         Module quote.
21858         * m4/quote.m4: New file.
21859
21860         Module readutmp.
21861         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
21862
21863         Module sig2str.
21864         * m4/sig2str.m4: New file.
21865
21866         Other.
21867         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
21868         ulonglong.m4.
21869         * m4/intmax_t.m4: New file.
21870         * m4/d-type.m4: Indentation.
21871         * m4/jm-macros.m4: Update.
21872         * m4/prereq.m4 (jm_PREREQ): Update.
21873         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
21874         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
21875         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
21876         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
21877         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
21878         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
21879         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
21880         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
21881         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
21882         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
21883         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
21884         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
21885         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
21886         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
21887         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
21888         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
21889         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
21890         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
21891         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
21892
21893 2002-12-24  Bruno Haible  <bruno@clisp.org>
21894
21895         * MODULES.txt: Update according to m4/ changes.
21896
21897         Module gettext.
21898         * config.rpath: New file, from gettext-0.11.5.
21899
21900         * modules/*: New module descriptions.
21901         * gnulib-tool: New file.
21902         * MODULES.html.sh: New file.
21903
21904 2002-12-21  Karl Berry  <karl@gnu.org>
21905
21906         * doc/fdl.texi: update to version 1.2.
21907
21908 2002-12-19  Karl Berry  <karl@gnu.org>
21909
21910         * config/config.guess: update from prep.
21911
21912 2002-12-18  Bruno Haible  <bruno@clisp.org>
21913
21914         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
21915         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
21916
21917 2002-12-17  Bruno Haible  <bruno@clisp.org>
21918
21919         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
21920         stdlib.h, string.h.
21921
21922 2002-12-17  Bruno Haible  <bruno@clisp.org>
21923
21924         * lib/canon-host.c (strdup): Remove unused declaration.
21925
21926         * lib/fsusage.c: Include full_read.h.
21927         (get_fs_usage): Use full_read instead of safe_read.
21928
21929         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
21930
21931 2002-12-12  Karl Berry  <karl@gnu.org>
21932
21933         * config/config.guess: update from prep.
21934
21935 2002-12-11  Bruno Haible  <bruno@clisp.org>
21936
21937         * m4/setenv.m4: New file, from gettext-0.11.5.
21938
21939 2002-12-11  Bruno Haible  <bruno@clisp.org>
21940
21941         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
21942         not unsetenv().
21943         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
21944         modifications:
21945
21946         2002-12-11  Bruno Haible  <bruno@clisp.org>
21947
21948                 * setenv.c (alloca): Fall back to malloc.
21949                 (freea): New macro.
21950                 (setenv): Use freea() to free memory allocated with alloca().
21951
21952         2002-11-13  Bruno Haible  <bruno@clisp.org>
21953
21954                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
21955                 function declarations.
21956                 * unsetenv.c (unsetenv): Likewise.
21957
21958         2002-03-04  Bruno Haible  <bruno@clisp.org>
21959
21960                 Portability to AIX 4.3.3.
21961                 * unsetenv.c: New file, extracted from setenv.c.
21962                 * setenv.c: Move the unsetenv() function to unsetenv.c.
21963
21964         2001-12-20  Bruno Haible  <bruno@clisp.org>
21965
21966                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
21967                 use malloc instead. For SunOS 4.
21968
21969         2001-12-11  Bruno Haible  <bruno@clisp.org>
21970
21971                 * setenv.c: Declare alloca.
21972                 (compar_fn_t): New typedef.
21973                 (KNOWN_VALUE, STORE_VALUE): Use it.
21974
21975         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
21976         setenv.h.
21977
21978 2002-12-10  Paul Eggert  <eggert@twinsun.com>
21979
21980         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
21981         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
21982         Choose values that are less likely to collide with system fnmatch
21983         options.
21984         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
21985         defined (e.g., a pure POSIX system).
21986         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
21987         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
21988
21989 2002-12-06  Paul Eggert  <eggert@twinsun.com>
21990
21991         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
21992         a pain in practice to deal with generated m4 files.  This change
21993         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
21994
21995         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
21996         and jm-glibc-io.m4, as they are no longer a special case.
21997         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
21998         kludge and the auto-generation stuff.  Check only whether the
21999         functions are declared, not whether they exist, since older hosts
22000         that don't declare the functions can't use the optimization anyway.
22001
22002 2002-12-06  Jim Meyering  <jim@meyering.net>
22003
22004         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
22005
22006         Merge in changes from libc's misc/error.c, in preparation
22007         for the merge of gnulib's changes back into libc.
22008
22009         * lib/error.c (_): Define only if not already defined.
22010         Move definition to follow all #include directives.
22011         Include unlocked-io.h only if !_LIBC.
22012         [_LIBC]: Include <libio/libioP.h>.
22013         [USE_IN_LIBIO]: Include <libio/iolibio.h>
22014         (fflush): Tweak definition to use INTUSE.
22015         (putc): Define.
22016
22017 2002-12-05  Paul Eggert  <eggert@twinsun.com>
22018
22019         * lib/alloca.c [defined emacs]: Include "lisp.h".
22020         (xalloc_die) [defined emacs]: New macro.
22021         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
22022         [! defined emacs]: Include <xalloc.h>.
22023         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
22024         (pointer): Typedef to POINTER_TYPE *.
22025         (malloc): Remove decl; we now always use xmalloc.
22026         (alloca): Use old-style definition, since Emacs needs this.
22027         Check for arithmetic overflow when computing combined size.
22028
22029 2002-12-04  Paul Eggert  <eggert@twinsun.com>
22030
22031         Do not generate unlocked-io.h automatically, since it's easier to
22032         maintain it by hand.
22033
22034         * lib/unlocked-io.h: New file, from GNU diffutils,
22035         but with proper copyright notice and attribution.
22036         * lib/gen-uio: Remove.
22037         * lib/Makefile.am: Add copyright notice.
22038         (libfetish_a_SOURCES): Add unlocked-io.h.
22039         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
22040         (DISTCLEANFILES, io_functions): Remove macros.
22041         (EXTRA_DIST): Remove gen_uio.
22042         (unlocked-io.h): Remove rule.
22043
22044 2002-12-04  Jim Meyering  <jim@meyering.net>
22045
22046         Reflect the fact that stat.c and lstat.c are no longer generated.
22047         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
22048         (DISTCLEANFILES): Likewise.
22049         (EXTRA_DIST): Likewise.
22050         (all_local): Don't depend on stat.c or lstat.c.
22051         (stat.c, lstat.c): Remove rules.
22052         (EXTRA_DIST): Remove xstat.in.
22053
22054         * lib/xstat.in: Remove file.  Contents moved into stat.c.
22055         * lib/stat.c: New file.  Contents mostly from xstat.in.
22056         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
22057         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
22058
22059         * lib/safe-read.c: Rework so that it may serve to define safe_write,
22060         too.
22061         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
22062
22063 2002-12-03  Jim Meyering  <jim@meyering.net>
22064
22065         * lib/safe-read.c, safe-write.c: Change variable names and comments,
22066         but not semantics, to minimize the differences between these two files.
22067         (safe_read): Change comment to mention SAFE_READ_ERROR.
22068
22069         * lib/safe-read.c (IS_EINTR): Define.
22070         (safe_read): Use IS_EINTR in place of in-function cpp directives.
22071
22072 2002-12-02  Jim Meyering  <jim@meyering.net>
22073
22074         * lib/safe-read.c (EINTR): Define.
22075         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
22076         (INT_MAX): Provide fallback.
22077         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
22078
22079         * lib/safe-read.h (SAFE_READ_ERROR): Define.
22080
22081 2002-12-02  Bruno Haible  <bruno@clisp.org>
22082
22083         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
22084         Define, taken from safe-read.c.
22085         (INT_MAX): Provide fallback.
22086         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
22087         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
22088
22089         * lib/safe-read.c (EINTR): Remove definition.
22090         (safe_read): Don't use EINTR if it is absent.
22091
22092 2002-12-01  Jim Meyering  <jim@meyering.net>
22093
22094         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
22095         zero.
22096         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
22097
22098 2002-11-27  Paul Eggert  <eggert@twinsun.com>
22099
22100         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
22101         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
22102         with `if (! (value < limit)) abort ();', for readability.
22103
22104 2002-11-26  Karl Berry  <karl@gnu.org>
22105
22106         * lib/strdup.c: copy from libc again, with jim's ok.
22107         * lib/.cppi-disable: re-add strdup.c
22108
22109 2002-11-25  Karl Berry  <karl@gnu.org>
22110
22111         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
22112         instead of "strtol.c".
22113
22114 2002-11-25  Karl Berry  <karl@gnu.org>
22115
22116         * config/install-sh: update from automake for variable quoting, $0 in
22117         error msgs, etc.
22118
22119         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
22120         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
22121         entry.
22122
22123 2002-11-25  Jim Meyering  <jim@meyering.net>
22124
22125         * lib/mktime.c: Sync from libc, now that it has the latest fix.
22126
22127 2002-11-24  Karl Berry  <karl@gnu.org>
22128
22129         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
22130         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
22131
22132 2002-11-24  Jim Meyering  <jim@meyering.net>
22133
22134         Update from coreutils:
22135
22136         * lib/mktime.c: Merge in changes from libc.
22137
22138         Avoid a link-time failure on some Linux systems.
22139         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
22140         (otherwise).
22141         (__mon_yday): Declare with the STATIC attribute.
22142         (__mktime_internal): Likewise.
22143         Based on a report from Greg Schafer.
22144
22145 2002-11-23  Jim Meyering  <jim@meyering.net>
22146
22147         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
22148         Use `unsigned', not `int', as type of index.
22149
22150         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
22151
22152         * lib/fsusage.c: Remove unneeded parentheses around operands of
22153         `defined'.
22154
22155 2002-11-22  Paul Eggert  <eggert@twinsun.com>
22156
22157         * lib/quotearg.h: Allow multiple inclusion by surrounding with
22158         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
22159         so that we can be included first.
22160         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
22161         * lib/quotearg.c: Include quotearg.h immediately after config.h.
22162         No need to include stddef.h or sys/types.h any more.
22163         Surround local include files with "", not "<>".
22164         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
22165         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
22166         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
22167         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
22168         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
22169         (ISPRINT): Remove; no longer needed now that we assume C89.
22170
22171         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
22172         Preserve errno.
22173
22174         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
22175         quotearg_char): Use SIZE_MAX rather than
22176         (size_t) -1 when we are talking about "infinity".
22177
22178         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
22179
22180 2002-11-22  Paul Eggert  <eggert@twinsun.com>
22181
22182         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
22183         hint that one should use `if (! x) abort ();' rather than `assert
22184         (x);', and anyway it's one less thing to worry about configuring.
22185         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
22186         hash_rehash, hash_insert): Use abort rather than assert.
22187
22188 2002-11-22  Bruno Haible  <bruno@clisp.org>
22189
22190         * lib/safe-read.h: Assume C89. Add comments.
22191         (safe_read): Change return type to size_t.
22192         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
22193         byte counts > SSIZE_MAX correctly.
22194         * lib/safe-write.h: New file.
22195         * lib/safe-write.c: New file.
22196         * lib/full-read.h: New file.
22197         * lib/full-read.c: New file.
22198         * lib/full-write.h: Assume C89. Add comments.
22199         * lib/full-write.c: Include safe-write.h.
22200         (full_write): Rewritten to use safe_write.
22201         Suggested by Jim Meyering and Paul Eggert.
22202
22203 2002-11-21  Jim Meyering  <jim@meyering.net>
22204
22205         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
22206
22207         Merge in changes from the coreutils.
22208
22209         2002-09-25  Paul Eggert  <eggert@twinsun.com>
22210         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
22211         <stdint.h>.
22212         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
22213         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
22214         int.  Work more efficiently if X is the same width as uintmax_t.
22215         Do not compare X to -1, to avoid bogus compiler warning.
22216         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
22217         Don't assume that f_frsize and f_bsize are the same type.
22218
22219         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
22220         warning on FreeBSD.
22221
22222         * lib/makepath.c (make_path): Restore umask *before* creating the final
22223         component.
22224         (make_path): Minor reformatting.
22225
22226         * lib/xmalloc.c: Adjust to work with new autoconf macros,
22227         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
22228         HAVE_MALLOC/HAVE_REALLOC.
22229
22230         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
22231         dummy ones.  At least on GNU/Linux systems, `auto' means something
22232         else.
22233         From Michael Stone.
22234
22235 2002-11-21  Bruno Haible  <bruno@clisp.org>
22236
22237         Remove case insensitive option matching.
22238         * lib/argmatch.h (argcasematch): Remove declaration.
22239         (ARGCASEMATCH): Remove macro.
22240         (__xargmatch_internal): Remove case_sensitive argument.
22241         (XARGMATCH): Update.
22242         (XARGCASEMATCH): Remove macro.
22243         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
22244         case_sensitive argument.
22245         (argcasematch): Remove function.
22246         (__xargmatch_internal): Remove case_sensitive argument.
22247         (main): Use XARGMATCH instead of XARGCASEMATCH.
22248
22249         * lib/xmalloc.c: Change compile-time error message. Add comment about
22250         required autoconf version.
22251
22252 2002-11-20  Paul Eggert  <eggert@twinsun.com>
22253
22254         Merge argmatch cleanups from Bison.  Assume C89.
22255
22256         * lib/argmatch.c: Include config.h here, not in argmatch.h.
22257         Include stdlib.h, for EXIT_FAILURE.
22258         Always include <string.h>, since we assume C89.
22259         (EXIT_FAILURE): Remove pre-C89 bug workaround.
22260         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
22261         Include <stddef.h> instead, since it's all we need for size_t.
22262         (PARAMS): Remove.  All uses removed.
22263         (ARRAY_CARDINALITY): Do not bother to #undef.
22264         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
22265         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
22266         Remove unnecessary parentheses.
22267         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
22268         Insert necessary parentheses.
22269         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
22270         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
22271
22272 2002-11-19  Bruno Haible  <bruno@clisp.org>
22273
22274         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
22275         * lib/mbswidth.h: Include <stddef.h>, for size_t.
22276
22277         * lib/mbswidth.h (PARAMS): Remove macro.
22278         (mbswidth, mbsnwidth): Use ANSI C function declarations.
22279         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
22280
22281         * lib/gcd.h (PARAMS): Remove macro.
22282         (gcd): Use ANSI C function declarations.
22283         * lib/gcd.c (gcd): Likewise.
22284
22285 2002-11-15  Bruno Haible  <bruno@clisp.org>
22286
22287         * lib/strcspn.c: Include <stddef.h>.
22288         (strcspn): Use ANSI C function declaration. Change return type to
22289         size_t. Use NULL.
22290         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
22291         (strpbrk): Use NULL.
22292         * lib/strpbrk.h (PARAMS): Remove macro.
22293         (strpbrk): Use ANSI C function declaration.
22294         * lib/strstr.c: Don't include <sys/types.h>.
22295         * lib/strstr.h (PARAMS): Remove macro.
22296         (strstr): Use ANSI C function declarations.
22297
22298 2002-11-14  Karl Berry  <karl@gnu.org>
22299
22300         * config/mkinstalldirs: `do' on separate line, instead of
22301         `for var; do'.
22302
22303 2002-11-06  Bruno Haible  <bruno@clisp.org>
22304
22305         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
22306         * lib/gcd.c (gcd): Likewise.
22307
22308 2002-11-05  Bruno Haible  <bruno@clisp.org>
22309
22310         * lib/gcd.h: New file, from gettext-0.11.5.
22311         * lib/gcd.c: New file, from gettext-0.11.5.
22312
22313 2002-11-05  Bruno Haible  <bruno@clisp.org>
22314
22315         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
22316         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
22317         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
22318         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
22319
22320         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
22321         <libintl.h>.
22322         * lib/makepath.c: Include gettext.h instead of <locale.h> and
22323         <libintl.h>.
22324
22325         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
22326         * lib/human.c: Include gettext.h instead of <libintl.h>.
22327         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
22328         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
22329         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
22330         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
22331         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
22332         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
22333         (textdomain): Remove definition.
22334         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
22335
22336         * lib/long-options.c: Remove include of <libintl.h> and definition of
22337         _.
22338         * lib/same.c: Remove include of <libintl.h> and definition of _.
22339
22340 2002-11-04  Owen Taylor  <otaylor@redhat.com>
22341
22342         * lib/config.charset: A few additions for Solaris.
22343
22344 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
22345
22346         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
22347         * lib/localcharset.c (locale_charset): Declare as extern "C".
22348
22349 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
22350
22351         * lib/config.charset: msdos in uk_UA uses CP1125.
22352
22353 2002-11-04  Bruno Haible  <bruno@clisp.org>
22354
22355         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
22356         * lib/strcase.h: New file, from GNU gettext-0.11.5.
22357         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
22358         * lib/strstr.h: New file, from GNU gettext-0.11.5.
22359         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
22360
22361 2002-11-04  Bruno Haible  <bruno@clisp.org>
22362
22363         * lib/localcharset.c (locale_charset): Don't return an empty string.
22364
22365 2002-11-04  Bruno Haible  <bruno@clisp.org>
22366
22367         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
22368         aliases.
22369
22370 2002-11-04  Bruno Haible  <bruno@clisp.org>
22371
22372         * lib/config.charset: Update for newest glibc. Add canonical names
22373         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
22374
22375 2002-11-04  Bruno Haible  <bruno@clisp.org>
22376
22377         * lib/config.charset: Add support for NetBSD.
22378
22379 2002-11-04  Bruno Haible  <bruno@clisp.org>
22380
22381         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
22382
22383 2002-11-01  Bruno Haible  <bruno@clisp.org>
22384
22385         * configure.in: Add AC_CONFIG_AUX_DIR call.
22386         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
22387         test/Makefile.
22388         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
22389
22390 2002-09-28  Karl Berry  <karl@gnu.org>
22391
22392         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
22393         installed automake until the next release, since changes have been
22394         made.
22395
22396 2002-09-25  Karl Berry  <karl@gnu.org>
22397
22398         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
22399         * lib/getopt*: copy from libc/posix.
22400         * lib/gettext.h: copy from gettext.
22401         * lib/.cppi-disable: add strdup.c, gettext.h.
22402
22403 2002-09-25  Karl Berry  <karl@gnu.org>
22404
22405         * config/srclist.txt: enable gettext.h check.
22406         * config/config.{guess,sub}: update from prep.
22407         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
22408                 from automake 1.6.3.
22409         See srclist*.
22410
22411 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
22412
22413         * regex.c (PATFETCH): Remove the translating fetch.
22414         (PATFETCH_RAW): Rename to PATFETCH.
22415         (set_image_of_range): New fun.
22416         (SET_RANGE_TABLE_WORK_AREA): Use it.
22417         (regex_compile): Don't translate the pattern chars so eagerly.
22418         Only do it when inserting an `exactn' bytecode or when handling
22419         a char-range.
22420         (mutually_exclusive_p): Avoid empty statement.
22421
22422 2002-07-06  Jim Meyering  <meyering@lucent.com>
22423
22424         * m4/README: Don't mention Makefile.am.in.
22425         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
22426
22427 2002-07-01  Jim Meyering  <meyering@lucent.com>
22428
22429         * lib/c-stack.c: Include sys/time.h.
22430         From Volker Borchert.
22431
22432 2002-06-26  Paul Eggert  <eggert@twinsun.com>
22433
22434         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
22435
22436 2002-06-26  Paul Eggert  <eggert@twinsun.com>
22437
22438         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
22439         New macro.  Use it uniformly instead of
22440         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
22441         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
22442         reported by Vin Shelton.
22443
22444 2002-06-22  Paul Eggert  <eggert@twinsun.com>
22445
22446         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
22447         Do not assume SA_SIGINFO behavior.
22448         Bug reported by Jim Meyering on NetBSD 1.5.2.
22449
22450 2002-06-22  Jim Meyering  <meyering@lucent.com>
22451
22452         * m4/c-stack.m4: New file, from diffutils-2.8.2.
22453         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
22454
22455         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
22456         now that configure.ac uses AC_GNU_SOURCE.
22457         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
22458         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
22459
22460         Update to latest tools.  Suggestions from Paul Eggert.
22461         * m4/stdbool.m4: New file, from diffutils-2.8.2.
22462         * m4/gnu-source.m4: Update from diffutils-2.8.2.
22463         * m4/fnmatch.m4: Likewise.
22464         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
22465         to AC_HEADER_STDBOOL
22466
22467 2002-06-22  Jim Meyering  <meyering@lucent.com>
22468
22469         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
22470         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
22471
22472 2002-06-22  Jim Meyering  <meyering@lucent.com>
22473
22474         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
22475
22476         * lib/exitfail.c, exitfail.h: Likewise.
22477         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
22478
22479         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
22480         of fnmatch.h.
22481         (EXTRA_DIST): Add fnmatch_loop.c.
22482         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
22483
22484         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
22485         * lib/fnmatch.c: Update from diffutils-2.8.2.
22486         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
22487         * lib/fnmatch.h: Remove file.
22488
22489 2002-06-21  Jim Meyering  <meyering@lucent.com>
22490
22491         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
22492         * m4/mbrtowc.m4: Likewise.
22493
22494         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
22495         * m4/mbswidth.m4: Reflect name change:
22496         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
22497         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
22498
22499         * m4/lib-link.m4: Update from gettext-0.11.2.
22500         * m4/gettext.m4: Likewise.
22501
22502         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
22503         From Alfred M. Szmidt.
22504
22505 2002-06-18  Paul Eggert  <eggert@twinsun.com>
22506
22507         * lib/file-type.h: Report an error if neither S_ISREG nor
22508         S_IFREG is defined, instead of using a test specific to glibc
22509         2.2.  This should be safe, since POSIX requires S_ISREG and
22510         Unix Version 7 had S_IFREG.  We don't need to check for
22511         <sys/types.h> since we don't use any symbols that it defines.
22512
22513 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
22514
22515         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
22516         $@-t, so that each temporary file name is unique and valid in the first
22517         8 characters, for operation under DOS.
22518
22519 2002-06-15  Paul Eggert  <eggert@twinsun.com>
22520
22521         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
22522
22523 2002-06-15  Jim Meyering  <meyering@lucent.com>
22524
22525         Work even with DJGPP 2.03, which lacks support for symlinks.
22526         From Richard Dawe.
22527         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
22528         is defined.
22529         * lib/lchown.c (S_ISLNK): Likewise.
22530
22531 2002-06-15  Jim Meyering  <meyering@lucent.com>
22532
22533         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
22534         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
22535         have been included before this file.
22536
22537 2002-06-14  Jim Meyering  <meyering@lucent.com>
22538
22539         * lib/file-type.h: Use the version from diffutils-2.8.2.
22540         * lib/file-type.c: Likewise.
22541
22542 2002-06-07  Jim Meyering  <meyering@lucent.com>
22543
22544         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
22545         They're needed at least for NetBSD 1.5.2.
22546         ($statxfs_includes): Include those same headers.
22547         ($statxfs_includes): Include sys/vfs.h if available.
22548         ($statxfs_includes): Likewise for sys/statvfs.h.
22549         Check for the following members in both structs statfs and statvfs:
22550         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
22551
22552 2002-06-01  Jim Meyering  <meyering@lucent.com>
22553
22554         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
22555         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
22556
22557 2002-05-28  Jim Meyering  <meyering@lucent.com>
22558
22559         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
22560         Reported by Volker Borchert.
22561
22562 2002-05-27  Jim Meyering  <meyering@lucent.com>
22563
22564         Fix a problem seen only on nonconforming systems whereby ls.c's
22565         use of localtime, and then of gettimeofday would cause trouble:
22566         the localtime call used to initialize rpl_gettimeofday's save
22567         mechanism would clobber ls's current local time information so
22568         that in any long listing the first file would always be listed
22569         with date 1970-01-01.  Analysis by Volker Borchert.
22570
22571         * lib/gettimeofday.c (localtime): Undefine.
22572         (rpl_localtime): New function.
22573
22574 2002-05-27  Jim Meyering  <meyering@lucent.com>
22575
22576         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
22577         localtime.
22578
22579         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
22580         use the replacement function; it wouldn't resolve at link time.
22581         Reported by Volker Borchert.
22582
22583 2002-05-22  Jim Meyering  <meyering@lucent.com>
22584
22585         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
22586         file-type.h.
22587         * lib/file-type.h: New file.
22588         * lib/file-type.c (file_type): New file/function.  Extracted from
22589         diffutils.
22590
22591 2002-04-30  Jim Meyering  <meyering@lucent.com>
22592
22593         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
22594
22595 2002-04-29  Paul Eggert  <eggert@twinsun.com>
22596
22597         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
22598
22599 2002-04-29  Paul Eggert  <eggert@twinsun.com>
22600
22601         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
22602         Do not check for alloca.h (no longer used) or stdbool.h (was never
22603         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
22604
22605 2002-04-29  Paul Eggert  <eggert@twinsun.com>
22606
22607         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
22608
22609 2002-04-29  Jim Meyering  <meyering@lucent.com>
22610
22611         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
22612         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
22613         Use AC_FUNC_STRNLEN here instead.
22614
22615         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
22616         With autoconf-2.53a, it's part of AC_PROG_CC.
22617
22618 2002-04-28  Paul Eggert  <eggert@twinsun.com>
22619
22620         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
22621         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
22622
22623 2002-04-28  Paul Eggert  <eggert@twinsun.com>
22624
22625         * lib/sig2str.h, lib/sig2str.c: New files.
22626         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
22627
22628 2002-04-28  Paul Eggert  <eggert@twinsun.com>
22629
22630         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
22631         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
22632         of 127, since 64 is the largest conceivable number for ancient
22633         nonstandard hosts.
22634         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
22635
22636 2002-04-28  Jim Meyering  <meyering@lucent.com>
22637
22638         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
22639
22640 2002-04-24  Jim Meyering  <meyering@lucent.com>
22641
22642         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
22643         (jm_PREREQ): Use it.
22644
22645         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
22646         mach/mach.h fcntl.h.
22647         Check for this function: setlocale.
22648
22649 2002-04-24  Jim Meyering  <meyering@lucent.com>
22650
22651         * lib/gettext.h: New file, from Gettext.
22652         * lib/Makefile.am (INCLUDES): Remove -I../intl.
22653         (libfetish_a_SOURCES): Add gettext.h.
22654
22655 2002-04-16  Jim Meyering  <meyering@lucent.com>
22656
22657         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
22658         ut_pid, ut_id, ut_exit.
22659
22660 2002-04-16  Jim Meyering  <meyering@lucent.com>
22661
22662         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
22663         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
22664         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
22665
22666 2002-04-12  Jim Meyering  <meyering@lucent.com>
22667
22668         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
22669         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
22670         existence of the getmntinfo function.  Needed for Darwin 5.3.
22671
22672         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
22673         This is necessary at least on Darwin 5.3.
22674
22675         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
22676         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
22677         strnlen.o in the library, and that makes some versions of ranlib
22678         object.
22679
22680 2002-04-12  Jim Meyering  <meyering@lucent.com>
22681
22682         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
22683
22684 2002-04-09  Jim Meyering  <meyering@lucent.com>
22685
22686         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
22687         to be more precise.  Rather than saying we're checking whether the
22688         function `works', say what we're testing.
22689         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
22690         Reported by Bruno Haible.
22691
22692 2002-03-10  Jim Meyering  <meyering@lucent.com>
22693
22694         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
22695         Suggestion from Santiago Vila.
22696
22697 2002-03-08  Jim Meyering  <meyering@lucent.com>
22698
22699         * lib/rename.c: Mention that this wrapper is needed also on
22700         mips-dec-ultrix4.4 systems.
22701
22702 2002-03-02  Jim Meyering  <meyering@lucent.com>
22703
22704         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
22705         not HAVE_CLOCK_SETTIME.
22706
22707 2002-02-27  Paul Eggert  <eggert@twinsun.com>
22708
22709         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
22710         Check for clock_settime.
22711
22712 2002-02-27  Paul Eggert  <eggert@twinsun.com>
22713
22714         * lib/nanosleep.h: Rename to....
22715         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
22716
22717         * lib/gettime.c: New file.
22718         * lib/settime.c: New file.
22719         * lib/stime.c: Remove.
22720
22721         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
22722         timespec.h.  Remove nanosleep.h.
22723
22724 2002-02-25  Paul Eggert  <eggert@twinsun.com>
22725
22726         * m4/acl.m4: New file.
22727         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
22728         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
22729
22730 2002-02-25  Paul Eggert  <eggert@twinsun.com>
22731
22732         * lib/acl.c, lib/acl.h: New files.
22733         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
22734
22735 2002-02-24  Jim Meyering  <meyering@lucent.com>
22736
22737         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
22738         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
22739         cause trouble.  Reported by Nelson Beebe.
22740
22741 2002-02-23  Paul Eggert  <eggert@twinsun.com>
22742
22743         * lib/path-concat.c (xpath_concat): Reorder code to pacify
22744         compilers that don't know that xalloc_die never returns.
22745
22746 2002-02-20  Jim Meyering  <meyering@lucent.com>
22747
22748         * lib/getdate.c: Regenerate using bison-1.33.
22749
22750 2002-02-17  Jim Meyering  <meyering@lucent.com>
22751
22752         * config/config.guess (main): Don't use `head -1'; it's no longer
22753         portable. Use `sed 1q' instead.
22754
22755 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
22756
22757         * m4/codeset.m4: Upgrade to gettext-0.11.
22758         * m4/gettext.m4: Upgrade to gettext-0.11.
22759         * m4/glibc21.m4: Upgrade to gettext-0.11.
22760         * m4/iconv.m4: Upgrade to gettext-0.11.
22761         * m4/isc-posix.m4: Upgrade to gettext-0.11.
22762         * m4/lcmessage.m4: Upgrade to gettext-0.11.
22763         * m4/lib-ld.m4: New file, from gettext-0.11.
22764         * m4/lib-link.m4: New file, from gettext-0.11.
22765         * m4/lib-prefix.m4: New file, from gettext-0.11.
22766         * m4/progtest.m4: Upgrade to gettext-0.11.
22767
22768 2002-02-15  Paul Eggert  <eggert@twinsun.com>
22769
22770         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
22771         (jm_PREREQ): Use it.
22772
22773 2002-02-15  Paul Eggert  <eggert@twinsun.com>
22774
22775         * lib/posixver.c, lib/posixver.h: New files.
22776         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
22777
22778 2002-02-02  Paul Eggert  <eggert@twinsun.com>
22779             Bruno Haible  <bruno@clisp.org>
22780
22781         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
22782         (fwrite_success_callback): New declaration.
22783         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
22784         print_unicode_char. Call failure callback instead of error.
22785         (fwrite_success_callback): New function.
22786         (exit_failure_callback): New function.
22787         (fallback_failure_callback): New function.
22788         (print_unicode_char): Call unicode_to_mb.
22789
22790 2002-01-26  Jim Meyering  <meyering@lucent.com>
22791
22792         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
22793         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
22794
22795 2002-01-26  Jim Meyering  <meyering@lucent.com>
22796
22797         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
22798
22799 2002-01-22  Paul Eggert  <eggert@twinsun.com>
22800
22801         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
22802
22803 2002-01-22  Jim Meyering  <meyering@lucent.com>
22804
22805         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
22806         Otherwise, some versions of automake would omit the rule that makes
22807         Makefile from Makefile.in.
22808
22809 2002-01-21  Paul Eggert  <eggert@twinsun.com>
22810
22811         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
22812         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
22813         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
22814         (memcoll): Set errno to zero if there is no error.
22815
22816         * lib/quotearg.c (quotearg_buffer_restyled):
22817         Fix bug with quoting buffers containing NUL when backslashing escapes.
22818         This bug was exposed by the other changes in this patch.
22819         (quotearg_n_options): New arg ARGSIZE.
22820         All callers changed.
22821         (quoting_options_from_style): New function.
22822         (quotearg_n_style): Use it.
22823         (quotearg_n_style_mem): New function.
22824
22825         * lib/quotearg.h (quotearg_n_style_mem): New function.
22826
22827 2002-01-19  Jim Meyering  <meyering@lucent.com>
22828
22829         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
22830         Remove useless quotes: DF_PROG="df".
22831         * m4/strnlen.m4: New file.
22832
22833 2002-01-16  Paul Eggert  <eggert@twinsun.com>
22834
22835         * lib/backupfile.c (ISDIGIT): Comment fix.
22836         * lib/getdate.y (ISDIGIT): Likewise.
22837         * lib/posixtm.c (ISDIGIT, year): Likewise.
22838         * lib/strverscmp.c (ISDIGIT): Likewise.
22839         * lib/userspec.c (ISDIGIT): Likewise.
22840
22841 2002-01-16  Jim Meyering  <meyering@lucent.com>
22842
22843         * lib/getdate.y: Add three semicolons, each just before a closing
22844         brace. Bison (as of version 1.31) no longer papers over that mistake.
22845
22846 2002-01-05  Jim Meyering  <meyering@lucent.com>
22847
22848         * lib/version-etc.c (version_etc_copyright): Update copyright year.
22849
22850 2001-12-19  Paul Eggert  <eggert@twinsun.com>
22851
22852         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
22853         not silently exit merely because the output buffer happens to
22854         have nothing pending.
22855
22856 2001-12-18  Paul Eggert  <eggert@twinsun.com>
22857
22858         See the big note in ../ChangeLog.
22859         * lib/human.c (suffixes): Prefer K to k for 1024.
22860         (generate_suffix_backwards): New function.
22861         (human_readable_inexact): Use it.
22862         * lib/xstrtol.c (__xstrtol): If there is no number but there
22863         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
22864         Accept 'K' as well as 'k'.
22865
22866 2001-12-15  Jim Meyering  <meyering@lucent.com>
22867
22868         * lib/regex.h (__restrict_arr): Update from libc.
22869
22870         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
22871         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
22872         (STREQ): Define.
22873
22874 2001-12-14  Jim Meyering  <meyering@lucent.com>
22875
22876         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
22877         Suggestion from Bruno Haible.
22878
22879 2001-12-10  Jim Meyering  <meyering@lucent.com>
22880
22881         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
22882         xrealloc, Instead, include "xalloc.h".
22883         (initbuffer): Don't cast xmalloc return value to char*.
22884         (readline): Reword comment.
22885         Don't cast xrealloc return value to char*
22886         Return NULL, not 0.
22887
22888 2001-12-09  Jim Meyering  <meyering@lucent.com>
22889
22890         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
22891         about `signed and unsigned type in conditional expression'.
22892         * lib/posixtm.c (posix_time_parse): Likewise.
22893
22894         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
22895
22896         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
22897         to avoid a pedantic warning.
22898
22899         * lib/getstr.c: Don't include assert.h.
22900         (getstr): Remove warning-evoking assertions.
22901         Return -1 if offset parameter is out of bounds.
22902         Change the type of a local from int to size_t.
22903
22904         * lib/strftime.c (my_strftime_localtime_r): Include this function
22905         definition in the `#if ! HAVE_TM_GMTOFF' block.
22906
22907         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
22908         Include xalloc.h instead.
22909
22910 2001-12-02  Jim Meyering  <meyering@lucent.com>
22911
22912         * lib/tempname.c: Don't declare getenv, thus reverting the change of
22913         2001-11-18.  It's no longer necessary, now that stdlib.h is always
22914         included.
22915
22916         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
22917         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
22918
22919 2001-11-30  Akim Demaille  <akim@epita.fr>
22920
22921         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
22922         before being defined.
22923
22924 2001-11-27  Paul Eggert  <eggert@twinsun.com>
22925
22926         * lib/quotearg.h (quotearg_n, quotearg_n_style):
22927         First arg is int, not unsigned.
22928         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
22929         (SIZE_MAX, UINT_MAX): New macros.
22930         (quotearg_n_options): Abort if N is negative.
22931         Avoid overflow check on hosts where size_t is 64 bits and int
22932         is 32 bits, as overflow is impossible there.
22933         Fix off-by-one typo that caused unnecessary reallocation.
22934
22935 2001-11-27  Jim Meyering  <meyering@lucent.com>
22936
22937         * lib/tempname.c: Merge with version from libc.
22938         * lib/regex.c: Likewise.
22939
22940         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
22941         systems for which STDC_HEADERS is 0, it was not included, resulting in
22942         a warning about an integer-to-pointer conversion problem with getenv.
22943         Reported by Volker Borchert.
22944
22945 2001-11-26  Jim Meyering  <meyering@lucent.com>
22946
22947         * lib/gtod.h: Remove file.
22948         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
22949         * lib/gettimeofday.c: Don't include gtod.h.
22950         (GTOD_init): Remove function.
22951         (rpl_gettimeofday): Do its job here instead, rather than aborting.
22952         Suggestion from Volker Borchert.
22953
22954 2001-11-23  Jim Meyering  <meyering@lucent.com>
22955
22956         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
22957         it.
22958         * lib/hash.c (struct hash_table): Define it here instead.
22959
22960 2001-11-22  Jim Meyering  <meyering@lucent.com>
22961
22962         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
22963
22964 2001-11-20  Jim Meyering  <meyering@lucent.com>
22965
22966         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
22967         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
22968
22969 2001-11-19  Jim Meyering  <meyering@lucent.com>
22970
22971         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
22972         directory.  Use "conftestXXXXXX" as the template.
22973         Suggestion from Paul Eggert.
22974
22975         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
22976         immediately, so the test doesn't mistakenly hit the max-open-files
22977         limit.
22978
22979 2001-11-18  Paul Eggert  <eggert@twinsun.com>
22980
22981         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
22982         (TEMPORARIES): New macro.
22983         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
22984         removes an artificial limitation (e.g. HP-UX 10.20, where
22985         TMP_MAX is 17576).
22986
22987 2001-11-18  Jim Meyering  <meyering@lucent.com>
22988
22989         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
22990
22991 2001-11-18  Jim Meyering  <meyering@lucent.com>
22992
22993         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
22994         on SunOS 4.
22995
22996         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
22997         files will be created before anything else.
22998
22999 2001-11-17  Paul Eggert  <eggert@twinsun.com>
23000
23001         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
23002         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
23003
23004 2001-11-17  Jim Meyering  <meyering@lucent.com>
23005
23006         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
23007         Prompted by a report from Bob Proulx.
23008
23009         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
23010         Instead, require UTILS_FUNC_MKSTEMP.
23011
23012 2001-11-17  Jim Meyering  <meyering@lucent.com>
23013
23014         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
23015         Now, that's done as part of AC_FUNC_STRTOD.
23016
23017 2001-11-17  Jim Meyering  <meyering@lucent.com>
23018
23019         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
23020         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
23021         rather than group writable.  Patch by Juan F. Codagnone.
23022
23023         * lib/readtokens.c: Remove explicit declarations of xmalloc and
23024         xrealloc, Instead, include "xalloc.h".
23025
23026         * lib/mountlist.c: Include unlocked-io.h after all system headers.
23027         Remove explicit declarations of xmalloc, xrealloc,
23028         and xstrdup.  Instead, include "xalloc.h".
23029
23030         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
23031         unlocked-io.h.
23032         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
23033         Likewise.
23034         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
23035
23036         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
23037         Reported by Padraig Brady.
23038
23039         * lib/mkstemp.c: #undef mkstemp.
23040         Include config.h.
23041         (rpl_mkstemp): Rename from mkstemp.
23042         Protoize.
23043
23044 2001-11-16  Jim Meyering  <meyering@lucent.com>
23045
23046         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
23047         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
23048         determine the amount of total physical memory, use pstat_getstatic.
23049         HPUX-11 doesn't define _SC_PHYS_PAGES.
23050         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
23051         If sysconf couldn't be used to determine the amount of available
23052         physical memory, use both pstat_getstatic and pstat_getdynamic.
23053         Based on a patch from Bob Proulx.
23054
23055 2001-11-10  Jim Meyering  <meyering@lucent.com>
23056
23057         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
23058         (jm_PREREQ): Use it.
23059
23060 2001-11-09  Jim Meyering  <meyering@lucent.com>
23061
23062         * m4/jm-macros.m4: Require autoconf-2.52f.
23063         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
23064         Use these AC_-prefixed names, not the AM_-prefixed ones.
23065
23066         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
23067
23068 2001-11-05  Jim Meyering  <meyering@lucent.com>
23069
23070         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
23071
23072 2001-11-04  Jim Meyering  <meyering@lucent.com>
23073
23074         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
23075         $DEFS.
23076
23077 2001-11-03  Jim Meyering  <meyering@lucent.com>
23078
23079         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
23080         of AC_DEFUN.
23081
23082         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
23083         know the name of the variable in the macro definition.
23084
23085 2001-11-03  Jim Meyering  <meyering@lucent.com>
23086
23087         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
23088         in argmatch_to_argument call.
23089
23090         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
23091         argument.
23092
23093         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
23094         e.g., a fault due to an attempt to free a NULL pointer.
23095
23096 2001-11-01  Jim Meyering  <meyering@lucent.com>
23097
23098         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
23099         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
23100
23101 2001-11-01  Jim Meyering  <meyering@lucent.com>
23102
23103         * lib/dirfd.c, lib/dirfd.h: New files.
23104         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
23105
23106         * lib/hash.c (hash_print) [TESTING]: Clean up.
23107
23108 2001-10-22  Paul Eggert  <eggert@twinsun.com>
23109
23110         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
23111         to avoid a warning if -Wall.
23112
23113 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
23114
23115         * README: New file
23116         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
23117         (per RMS's instructions, this is now the canonical source)
23118         * lgpl/, gpl/: New directories.
23119
23120 2001-10-21  Paul Eggert  <eggert@twinsun.com>
23121
23122         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
23123
23124 2001-10-21  Jim Meyering  <meyering@lucent.com>
23125
23126         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
23127         this code would end up calling gettext even in packages built
23128         with --disable-nls.
23129         * lib/getopt.c (_): Likewise.
23130         * lib/regex.c (_): Likewise.
23131
23132 2001-10-20  Paul Eggert  <eggert@twinsun.com>
23133
23134         * m4/error.m4 (jm_PREREQ_ERROR):
23135         Do not invoke AC_CHECK_FUNCS with strerror_r, as
23136         AC_FUNC_STRERROR_R does that.
23137         Check for strerror declaration.
23138
23139         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
23140         are supposed to have them these days.
23141         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
23142         Merge changes from latest Autoconf CVS.
23143         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
23144         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
23145         POSIX decided to standardize on the int flavor of strerror_r.
23146
23147 2001-10-20  Paul Eggert  <eggert@twinsun.com>
23148
23149         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
23150         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
23151         Use strerror_r that is only a macro, even if it is not a function.
23152         (strerror): Check for HAVE_DECL_STRERROR before declaring.
23153         (private_strerror): Use prototypes, not old-style function definition.
23154         (print_errno_message): New function.
23155         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
23156         char*-flavored one.
23157         (error_tail, error, error_at_line): Use it.
23158
23159 2001-10-11  Jim Meyering  <meyering@lucent.com>
23160
23161         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
23162         and quote_n (1, ... to avoid clobbering a buffer.
23163
23164 2001-10-05  Jim Meyering  <meyering@lucent.com>
23165
23166         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
23167         hash-pjw.h.
23168         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
23169         * lib/hash-pjw.h: New file.
23170
23171 2001-09-30  Jim Meyering  <meyering@lucent.com>
23172
23173         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
23174         `struct fsstat' has the `f_fstypename' member.
23175         Use that to define FS_TYPE, which is now used to make
23176         the getfsstat link test tighter.
23177
23178 2001-09-30  Jim Meyering  <meyering@lucent.com>
23179
23180         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
23181         Include <sys/ucred.h>, for Apple Darwin.
23182         Include sys/mount.h and sys/fs_types.h only if available.
23183         (FS_TYPE): Define.
23184         (read_filesystem_list): Use FS_TYPE.
23185
23186 2001-09-29  Paul Eggert  <eggert@twinsun.com>
23187
23188         * lib/exclude.c (excluded_filename): 0 -> false, since it's
23189         a boolean context.
23190
23191 2001-09-29  Jim Meyering  <meyering@lucent.com>
23192
23193         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
23194         [one-argument getmntent function]): Include stdio.h before mntent.h.
23195         SunOS 4.1.x needs it for the declaration of `FILE'.
23196         Patch by Volker Borchert.
23197
23198         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
23199         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
23200         sys/fs_types.h, and make the link-test for getfsstat guard #include
23201         directives with appropriate #if HAVE_*_H tests so that we can
23202         detect getfsstat on Apple Darwin1.3.7 systems.
23203         Reported by Nelson Beebe.
23204         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
23205
23206 2001-09-28  Paul Eggert  <eggert@twinsun.com>
23207
23208         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
23209         #defines strtoimax.  Also treat the other strto* functions
23210         like strtoimax.
23211
23212         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
23213         Check for strtoul and strtoumax,
23214         as those declarations are made even in the signed case.
23215         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
23216         Likewise, for strtol and strtoimax.
23217
23218 2001-09-28  Paul Eggert  <eggert@twinsun.com>
23219
23220         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
23221         #defines strtoimax.  Also treat the other strto* functions
23222         like strtoimax.
23223
23224         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
23225         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
23226         (strtoimax, strtoumax): Do not declare if already defined as a macro.
23227
23228 2001-09-26  Jim Meyering  <meyering@lucent.com>
23229
23230         Most macros in unlocked-io.h had the wrong number of arguments.
23231         * lib/gen-uio: New script.
23232         (USE_UNLOCKED_IO): Define to 1 if not already defined.
23233         * lib/unlocked-io.hin: Remove file.
23234         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
23235         rather than trying to embed it here.
23236         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
23237         Reported by Padraig Brady.
23238
23239 2001-09-25  Volker Borchert  <bt@teknon.de>
23240
23241         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
23242         `result'.
23243
23244 2001-09-24  Jim Meyering  <meyering@lucent.com>
23245
23246         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
23247
23248 2001-09-23  Jim Meyering  <meyering@lucent.com>
23249
23250         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
23251         instead of the mere test for existence of mntent.h.  The latter
23252         would get a false-positive on AIX 3.4 systems.
23253         In the outer getmntent if-block, don't die if neither of the getmntent
23254         tests succeeds.  Instead, just fall through and continue with the
23255         remaining tests.
23256
23257 2001-09-23  Jim Meyering  <meyering@lucent.com>
23258
23259         * lib/mountlist.c: Remove useless parentheses in #if directives.
23260         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
23261         the deprecated MOUNTED symbol is no longer defined in mntent.h.
23262
23263 2001-09-22  Jim Meyering  <meyering@lucent.com>
23264
23265         * m4/gettext.m4: New file.  From gettext.
23266         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
23267         * m4/progtest.m4: Likewise
23268         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
23269         * m4/glibc21.m4: Likewise.
23270
23271         * m4/libintl.m4: Remove.  No longer used.
23272
23273 2001-09-22  Jim Meyering  <meyering@lucent.com>
23274
23275         * lib/localcharset.c: Update from latest gettext.
23276         * lib/config.charset: Likewise.
23277
23278 2001-09-20  Jim Meyering  <meyering@lucent.com>
23279
23280         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
23281         strtoimax.
23282         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
23283         strtoumax.
23284
23285 2001-09-20  Jim Meyering  <meyering@lucent.com>
23286
23287         * lib/xstrtol.c (strtoimax): Guard declaration with
23288         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
23289         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
23290         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
23291         (strtoumax): Likewise, for completeness (it wasn't necessary).
23292
23293 2001-09-17  Paul Eggert  <eggert@twinsun.com>
23294
23295         * lib/strtoimax.c (HAVE_LONG_LONG):
23296         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
23297         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
23298         to work around bug in IBM C compiler.
23299
23300 2001-09-17  Jim Meyering  <meyering@lucent.com>
23301
23302         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
23303         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
23304         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
23305         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
23306         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
23307         whenever the right hand side need not be expanded by the shell.
23308
23309 2001-09-16  Paul Eggert  <eggert@twinsun.com>
23310
23311         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
23312         library.  It's not correct, as some older glibcs are buggy.
23313         fnmatch wasn't fixed until glibc 2.2.
23314
23315         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
23316         special shell magic here.
23317
23318 2001-09-16  Jim Meyering  <meyering@lucent.com>
23319
23320         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
23321         * m4/jm-macros.m4: Require it.
23322
23323 2001-09-16  Jim Meyering  <meyering@lucent.com>
23324
23325         * lib/mkdir.c: New file.
23326
23327 2001-09-15  Jim Meyering  <meyering@lucent.com>
23328
23329         * m4/jm-macros.m4: Check for help2man.
23330
23331 2001-09-11  Jim Meyering  <meyering@lucent.com>
23332
23333         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
23334         The body, by Paul Eggert, was moved here from configure.in.
23335         * m4/jm-macros.m4: Require UTILS_HOST_OS.
23336
23337 2001-09-04  Paul Eggert  <eggert@twinsun.com>
23338
23339         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
23340         (jm_PREREQ): Use it.
23341
23342 2001-09-04  Paul Eggert  <eggert@twinsun.com>
23343
23344         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
23345         Use ssize_t, not int, to store result of readlink.
23346         Check for ssize_t overflow as well as size_t overflow,
23347         as POSIX says the result of readlink is implementation-defined
23348         when ssize_t overflows.
23349         Remove unnecessary cast to char*.
23350         Use free+malloc instead of realloc, as the storage doesn't need
23351         to be preserved and it's clearer and can be more efficient that way.
23352         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
23353         * lib/xreadlink.h (xreadlink): Update prototype.
23354
23355 2001-09-04  Paul Eggert  <eggert@twinsun.com>
23356
23357         * lib/xgetcwd.c: Revert some of the previous change; intead,
23358         fix the HAVE_GETCWD_NULL code to behave more like the
23359         !HAVE_GETCWD_NULL code used to.
23360
23361         Include "xalloc.h".
23362         (xgetcwd): Do not return NULL when memory is exhausted; instead,
23363         invoke xalloc_die.
23364
23365 2001-09-03  Paul Eggert  <eggert@twinsun.com>
23366
23367         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
23368         sys/param.h, as pathmax.h includes them.
23369
23370 2001-09-03  Paul Eggert  <eggert@twinsun.com>
23371
23372         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
23373         (jm_PREREQ_XGETCWD): New macro.
23374
23375         * m4/getcwd.m4: New file.
23376
23377 2001-09-03  Paul Eggert  <eggert@twinsun.com>
23378
23379         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
23380         like the HAVE_GETCWD_NULL code.
23381         Include pathmax.h if not HAVE_GETCWD.
23382         Do not include xalloc.h.
23383         (INITIAL_BUFFER_SIZE): New symbol.
23384         Do not use xmalloc / xrealloc, since the caller is responsible for
23385         handling errors.  Preserve errno around `free' during failure.
23386         Do not overrun buffer when using getwd.
23387
23388 2001-09-03  Paul Eggert  <eggert@twinsun.com>
23389
23390         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
23391         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
23392         getcwd (NULL, 0).
23393
23394 2001-09-03  Paul Eggert  <eggert@twinsun.com>
23395
23396         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
23397         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
23398         spotted by Jim Meyering.
23399
23400 2001-09-03  Jim Meyering  <meyering@lucent.com>
23401
23402         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
23403         failure.
23404
23405 2001-09-02  Jim Meyering  <meyering@lucent.com>
23406
23407         * lib/error.c: Update from GNU libc.
23408
23409 2001-09-01  Jim Meyering  <meyering@lucent.com>
23410
23411         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
23412         Used by df.
23413
23414 2001-09-01  Jim Meyering  <meyering@lucent.com>
23415
23416         * lib/xreadlink.c: New file.
23417         * lib/xreadlink.h: New file.
23418         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
23419         xreadlink.h.
23420
23421         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
23422         doesn't conflict with sparc Solaris 7's definition in
23423         /usr/include/sys/int_types.h.
23424
23425         * lib/exclude.c: Use `""', not `<>' to #include non-system header
23426         files.
23427         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
23428         and strncasecmp as r-values.  Unixware didn't have declarations.
23429
23430 2001-08-31  Paul Eggert  <eggert@twinsun.com>
23431
23432         * lib/xstrtol.h: Add copyright notice.
23433         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
23434         LONGINT_INVALID_SUFFIX_CHAR.
23435
23436 2001-08-31  Paul Eggert  <eggert@twinsun.com>
23437
23438         * lib/xstrtol.c (strtoimax): New decl.
23439
23440 2001-08-31  Paul Eggert  <eggert@twinsun.com>
23441
23442         * lib/xgetcwd.c: Don't include pathmax.h.
23443         Include stdlib.h and unistd.h if available.
23444         Include xalloc.h.
23445         (xmalloc, xstrdup, free): Remove decls.
23446         (xgetcwd): Don't assume sizes fit in unsigned.
23447         Check for overflow when computing sizes.
23448         Simplify reallocation code.
23449
23450 2001-08-31  Paul Eggert  <eggert@twinsun.com>
23451
23452         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
23453         a directory's st_size can have an arbitrary value, so the old
23454         usage could waste an arbitrary amount of memory.  All uses
23455         changed.
23456         * lib/savedir.h: Update prototype.
23457
23458 2001-08-31  Paul Eggert  <eggert@twinsun.com>
23459
23460         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
23461
23462         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
23463         old strtoimax.c.
23464
23465         Also, make the following further changes to make this file's
23466         configuration more similar to that of strtol.c:
23467         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
23468         (strtoumax, uintmax_t, strtoull, strtol): Remove.
23469         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
23470         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
23471         changed to signed values.
23472
23473         And make the following changes as well:
23474         Fix copyright notice, as 1999 was missing.
23475         (verify): New macro.
23476         (strtoimax): Check sizes at compile-time, not run-time.
23477         Prefer strtol to strtoll if both work.
23478         (main): Remove; it was not that useful and was a pain to maintain.
23479
23480         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
23481
23482 2001-08-31  Jim Meyering  <meyering@lucent.com>
23483
23484         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
23485         Use an initial, malloc'd, buffer of length 128 rather than
23486         a statically allocated one of length 1024.
23487
23488 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23489
23490         Simplify code, partly by assuming autoconf 2.52 semantics.
23491
23492         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
23493
23494         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
23495         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
23496         All uses removed.
23497         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
23498         Move AC_REQUIRE to next-to-top level, to avoid confusion.
23499         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
23500         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
23501         jm_AC_HEADER_INTTYPES_H.
23502         * m4/jm-macros.m4 (jm_MACROS): Likewise.
23503
23504         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
23505
23506         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
23507         Quote first arg of AC_DEFUN.
23508         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
23509         since they are needed to parse the include file even if we need
23510         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
23511         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
23512         but with opposite signedness.
23513
23514 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23515
23516         Merge 'exclude' changes from tar 1.13.22.
23517         This fixes one or two unlikely storage allocation overflow bugs,
23518         but doesn't change user-visible behavior otherwise.
23519
23520 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23521
23522         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
23523         (jm_PREREQ_EXCLUDE): New macro.
23524
23525 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23526
23527         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
23528         tm to be declared.
23529
23530 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23531
23532         * lib/hash.c: Remove '2001' from copyright notice.
23533
23534 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23535
23536         * lib/full-write.h: New file.
23537         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
23538         * lib/full-write.c: Correct credits, as cccp.c no longer
23539         exists and anyway it was so heavily changed from the old cccp
23540         code as to be unrecognizable.  Include full-write.h.
23541         (full_write) Return size_t, with short writes meaning failure.
23542         All callers changed.  This fixes a bug with large buffers
23543         on 64-bit hosts.
23544         * lib/utime.c: Include full-write.h.
23545
23546 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23547
23548         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
23549         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
23550         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
23551         Include if available.
23552         (<xalloc.h>): Include
23553         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
23554         (verify): New macro.  Use it to verify that EXCLUDE macros do not
23555         collide with FNM macros.
23556         (struct patopts): New struct.
23557         (struct exclude): Use it, as exclude patterns now come with options.
23558         (new_exclude): Support above changes.
23559         (new_exclude, add_exclude_file):
23560         Initial size must now be a power of two to simplify overflow checking.
23561         (free_exclude, fnmatch_no_wildcards): New function.
23562         (excluded_filename): No longer requires options arg, as the options
23563         are determined by add_exclude.  Now returns bool, not int.
23564         (excluded_filename, add_exclude):
23565         Add support for the fancy new exclusion options.
23566         (add_exclude, add_exclude_file): Now takes int options arg.
23567         Check for arithmetic overflow when computing sizes.
23568         (add_exclude_file): xrealloc might modify errno, so don't
23569         realloc until after errno might be used.
23570
23571         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
23572         New macros.
23573         (free_exclude): New decl.
23574         (add_exclude, add_exclude_file): Now takes int options arg.
23575         (excluded_filename): No longer requires options arg, as the options
23576         are determined by add_exclude.  Now returns bool, not int.
23577
23578 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23579
23580         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
23581
23582 2001-08-27  Jim Meyering  <meyering@lucent.com>
23583
23584         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
23585
23586         * lib/version-etc.c (N_): Remove definition.
23587         Revert most of last change.
23588         Instead, simply don't mark the `Copyright...' string for translation.
23589         Based on advice from Paul Eggert.
23590
23591         * lib/strtoxmax.c: Tweak comment.
23592
23593 2001-08-26  Jim Meyering  <meyering@lucent.com>
23594
23595         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
23596
23597         * m4/xstrtoimax.m4: New file.
23598         * m4/xstrtoumax.m4: Add comments explaining why we
23599         AC_REPLACE_FUNCS(strtol).
23600
23601 2001-08-26  Jim Meyering  <meyering@lucent.com>
23602
23603         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
23604         of copyright with `%s' so translators don't get an untranslated
23605         message in 2002.
23606         (COPYRIGHT_YEAR): Define.
23607         (version_etc): Use fprintf rather than fputs.
23608         Suggestion from Ulrich Drepper.
23609
23610         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
23611
23612         * lib/strtoll.c: New file, from GNU libc.
23613         * lib/xstrtoimax.c: New file.
23614
23615         * lib/xstrtol.h: Add xstrtoimax.
23616         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
23617         * lib/strtoimax.c: New file.  Likewise, but first define
23618         STRTOUXMAX_SIGNED.
23619
23620         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
23621         ...
23622         * lib/strtoxmax.c: ... then renamed to this.
23623
23624 2001-08-18  Paul Eggert  <eggert@twinsun.com>
23625
23626         * m4/inttypes.m4: Add AC_PREREQ(2.13).
23627         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
23628         (jm_AC_TYPE_INTMAX_T): New macro.
23629         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
23630
23631         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
23632
23633         * m4/longlong.m4: Renamed from ulonglong.m4.
23634         * m4/inttypes.m4: Renamed from inttypes_h.m4.
23635         * m4/uintmax_t.m4: Removed.
23636
23637 2001-08-13  Paul Eggert  <eggert@twinsun.com>
23638
23639         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
23640         Port to Solaris 8, where 'sed' requires a space after the 'r'
23641         command, and where sh dislikes "$/".  Clean up the spacing a bit.
23642         Redirect output to $tmp just once.
23643
23644 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
23645
23646         * lib/addext.c (<errno.h>): Include.
23647         (errno): Declare if not defined.
23648         (addext): Work correctly when pathconf returns -1 and leaves
23649         errno alone because there is no limit.  Also, work even if
23650         pathconf returns a value greater than SIZE_MAX.
23651
23652 2001-08-12  Jim Meyering  <meyering@lucent.com>
23653
23654         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
23655         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
23656         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
23657         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
23658         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
23659         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
23660         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
23661         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
23662         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
23663         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
23664         utime.m4, utimes.m4, xstrtoumax.m4:
23665         Quote the first argument in each use of AC_DEFUN.
23666
23667 2001-08-12  Jim Meyering  <meyering@lucent.com>
23668
23669         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
23670         Simply `return getcwd (NULL, 0);'.
23671         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
23672         Use 1300 as initial value for length, not PATH_MAX.
23673
23674         * lib/pathmax.h: Clean up cpp syntax.
23675
23676 2001-08-12  Jim Meyering  <meyering@lucent.com>
23677
23678         * lib/gettimeofday.c: New file.
23679         * lib/gtod.h: New file.
23680         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
23681
23682 2001-08-05  Jim Meyering  <meyering@lucent.com>
23683
23684         * m4/jm-macros.m4: Require autoconf-2.52.
23685
23686 2001-08-04  Jim Meyering  <meyering@lucent.com>
23687
23688         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
23689         stmt, to get in sync with glibc.
23690
23691 2001-08-03  Paul Eggert  <eggert@twinsun.com>
23692
23693         The following changes are from gettext 0.10.39 as maintained by
23694         Bruno Haible.
23695
23696         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
23697         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
23698         with inverted sense.  All uses changed.
23699
23700         * lib/mbswidth.c: Don't include <limits.h>.
23701         Include <stdlib.h> and <string.h> unconditionally.
23702         (iswcntrl, mbsinit, ISCNTRL): New macros.
23703         (mbsnwidth): Use K&R style function declarations.
23704         Don't bother checking for MB_LEN_MAX == 1, since the compiler
23705         can optimize it when MB_CUR_MAX == 1.
23706         The width of control characters is zero, not 1.
23707
23708 2001-08-03  Paul Eggert  <eggert@twinsun.com>
23709
23710         The following changes are from gettext 0.10.39 as maintained by
23711         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
23712
23713         * m4/codeset.m4: Upgrade to serial AM1.
23714         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
23715         all uses changed.  Quote first arg of AC_DEFUN.
23716         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
23717
23718         * m4/iconv.m4: Upgrade to serial AM2.
23719         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
23720         Add --with-libconv-prefix.
23721         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
23722         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
23723         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
23724         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
23725         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
23726
23727         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
23728         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
23729         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
23730         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
23731         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
23732         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
23733         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
23734         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
23735         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
23736
23737         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
23738         string.h any more.
23739
23740         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
23741         not the default value.
23742
23743         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
23744         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
23745         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
23746         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
23747         Also check for iswcntrl, used for wcwidth fallback.
23748         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
23749         to Autoconf 2.13.
23750
23751 2001-08-03  Jim Meyering  <meyering@lucent.com>
23752
23753         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
23754         as it was in the original.  Reported by Paul Eggert.
23755
23756 2001-07-16  Jim Meyering  <meyering@lucent.com>
23757
23758         * m4/gettimeofday.m4: New file.
23759         Prompted by a report from Bernhard Baehr.
23760
23761 2001-07-15  Jim Meyering  <meyering@lucent.com>
23762
23763         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
23764         stuff. Now it's in ../Makefile.cfg.
23765
23766 2001-07-15  Jim Meyering  <meyering@lucent.com>
23767
23768         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
23769         (BUILT_SOURCES): Add unlocked-io.h.
23770         (io_functions): Define.
23771         (unlocked-io.h): New rule.
23772         (DISTCLEANFILES): Add unlocked-io.h.
23773         (all-local): Depend on unlocked-io.h, to ensure it is created.
23774
23775         * lib/unlocked-io.hin: New file
23776
23777         * lib/regex.c: Update from glibc.
23778
23779 2001-07-05  Jim Meyering  <meyering@lucent.com>
23780
23781         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
23782         recommendation.
23783         (libfetish_a_SOURCES): Put all .h files here instead.
23784         Remove a thus-exposed (better checks in automake) duplicate and
23785         two unnecessary .h files.
23786
23787 2001-07-04  Jim Meyering  <meyering@lucent.com>
23788
23789         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
23790         that generates jm-glibc-io.m4 so that it doesn't trigger any make
23791         distcheck failure.
23792
23793 2001-07-02  Jim Meyering  <meyering@lucent.com>
23794
23795         The following changes were prompted by suggestions from Bruno Haible.
23796
23797         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
23798         is now generated.
23799         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
23800         definition of EXTRA_DIST.
23801         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
23802         ensure that the generated file is created/updated whenever the list
23803         of $(unlocked_functions) is changed.
23804         (jm-glibc-io.m4): New rule.
23805         (unlocked-io.h): New rule -- currently unused.
23806
23807 2001-06-24  Jim Meyering  <meyering@lucent.com>
23808
23809         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
23810         unmatched right bracket, rather than kludging it with an extra,
23811         falsely-matching quote in a comment.  Patch by Akim Demaille.
23812
23813 2001-06-11  Jim Meyering  <meyering@lucent.com>
23814
23815         * lib/regex.c: Update from GNU libc.
23816
23817 2001-05-27  Jim Meyering  <meyering@lucent.com>
23818
23819         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
23820         Check for ut_type in struct utmp.
23821
23822 2001-05-27  Jim Meyering  <meyering@lucent.com>
23823
23824         * lib/readutmp.h (UT_TYPE): Define.
23825
23826 2001-05-24  Jim Meyering  <meyering@lucent.com>
23827
23828         * lib/argmatch.c: Include "quote.h".
23829         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
23830         quote function.  Reported by Göran Uddeborg.
23831
23832 2001-05-22  Jim Meyering  <meyering@lucent.com>
23833
23834         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
23835         now that we use the package-supplied version unconditionally.
23836         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
23837
23838 2001-05-21  Jim Meyering  <meyering@lucent.com>
23839
23840         * m4/regex.m4: Change a couple backticks to single quotes to avoid
23841         shell syntax errors.
23842
23843 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
23844
23845         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
23846
23847 2001-05-20  Paul Eggert  <eggert@twinsun.com>
23848
23849         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
23850         Don't bother to check library strftime, since
23851         we'll be using our own my_strftime function anyway.
23852         Define my_strftime instead of strftime.
23853
23854 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
23855
23856         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
23857         which is not yet declared.
23858
23859 2001-05-15  Jim Meyering  <meyering@lucent.com>
23860
23861         * m4/regex.m4: Use proper quoting so brackets appear in the test
23862         program.
23863         Reported by, and with help from, Bruno Haible.
23864
23865 2001-05-13  Jim Meyering  <meyering@lucent.com>
23866
23867         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
23868         undefined.
23869
23870 2001-05-11  Paul Eggert  <eggert@twinsun.com>
23871
23872         dirname code cleanup.  base_name now behaves more compatibly
23873         with POSIX basename when given file names that have trailing
23874         slashes, and similarly for dir_name.  Add new primitives
23875         base_len and dir_len.  Put the directory-name-related decls
23876         into dirname.h.
23877
23878         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
23879         * lib/backupfile.c (base_name): Likewise.
23880         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
23881         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
23882         * lib/makepath.c (strip_trailing_slashes): Likewise.
23883         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
23884         ISSLASH): Likewise.
23885         * lib/rename.c (strip_trailing_slashes): Likewise.
23886         * lib/same.c (base_name): Likewise.
23887         * lib/stripslash.c (ISSLASH): Likewise.
23888
23889         * lib/addext.c: Include <dirname.h> after size_t is defined.
23890         * lib/backupfile.c: Likewise.
23891
23892         * lib/addext.c (addext): Use base_len to trim redundant
23893         trailing slashes instead of doing it ourselves.
23894         But do not trim the last slash if it is not redundant.
23895
23896         * lib/backupfile.c (find_backup_file_name,
23897         max_backup_version): Use base_len instead of rolling it ourselves.
23898         Handle the case of "" and (on DOS) "C:" correctly.
23899
23900         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
23901         needed. Include <string.h>, <dirname.h>.
23902         (base_name): Allow file names ending in slashes, other than names
23903         that are all slashes.  In this case, return the basename followed
23904         by the slashes.  This is more general, and can be used in places
23905         where the original base_name purposely had an assertion failure.
23906         (base_len): New function.
23907
23908         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
23909         Do not include <assert.h>; no longer needed.
23910         Include xalloc.h.
23911         (memrchr): Remove decl.
23912         (dir_name_r): Remove.
23913         (dir_len): Renamed from dirlen.  All callers changed.
23914         Rewrite in terms of base_name, for simplicity and consistency.
23915         (dir_name): Never return NULL.  All callers changed.
23916         Do not include <stdlib.h> in test program; no longer needed.
23917         return 0; is fine for test program.
23918
23919         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
23920         New macros.
23921         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
23922
23923         * lib/path-concat.c (path_concat): Use base_len to compute
23924         base length, not strlen; this means we cannot rely on memcpy
23925         to null-terminate.
23926
23927         * lib/same.c (STREQ): Remove.
23928         (same_name): Handle the case where the basename ends in trailing '/'.
23929
23930         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
23931         a slash was stripped.  Do not strip the last slash after a
23932         file system prefix.
23933
23934 2001-05-11  Paul Eggert  <eggert@twinsun.com>
23935
23936         * lib/Makefile.am (libfetish_a_SOURCES):
23937         Add strftime.c, since we now compile it on all hosts.
23938
23939         * lib/strftime.c (my_strftime):
23940         Define to nstrftime if emacs, but only if my_strftime is not defined.
23941         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
23942         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
23943         Add one more extra argument: a nanoseconds value.
23944         All uses changed.
23945         (ns): New macro.
23946         (my_strftime function): Add %N format.
23947         (emacs_strftimeu): Renamed from emacs_strftime,
23948         with extra ut argument.
23949
23950 2001-05-09  Paul Eggert  <eggert@twinsun.com>
23951
23952         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
23953
23954 2001-04-21  Jim Meyering  <meyering@lucent.com>
23955
23956         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
23957         doesn't interfere.
23958
23959 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
23960
23961         * m4/ftruncate.m4: Check for chsize.
23962         Link with ftruncate.o unconditionally if ftruncate is missing.
23963         This was required when cross-compiling to i586-mingw32msvc.
23964
23965 2001-04-08  Jim Meyering  <meyering@lucent.com>
23966
23967         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
23968         recomputed; that's necessary when the offset spans a DST transition.
23969         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
23970
23971 2001-04-02  Jim Meyering  <meyering@lucent.com>
23972
23973         * lib/regex.h, regex.c: Update from GNU libc.
23974
23975 2001-03-24  Jim Meyering  <meyering@lucent.com>
23976
23977         * m4/jm-macros.m4: Require autoconf-2.49d.
23978
23979 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
23980
23981         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
23982
23983 2001-03-19  Paul Eggert  <eggert@twinsun.com>
23984
23985         * lib/version-etc.c (version_etc_copyright): Update to 2001.
23986
23987 2001-03-17  Jim Meyering  <meyering@lucent.com>
23988
23989         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
23990         now that the version in autoconf is equivalent.
23991         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
23992
23993         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
23994         Suggestion from Akim Demaille.
23995
23996         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
23997         (jm_PREREQ_TEMPNAME): New function.
23998
23999 2001-03-16  Paul Eggert  <eggert@twinsun.com>
24000
24001         * lib/tempname.c (uint64_t): Define to uintmax_t if
24002         not defined, and if UINT64_MAX is not defined.
24003         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
24004         Reported by John David Anglin.
24005
24006 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
24007
24008         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
24009         resolve alias if codeset is empty.
24010         * lib/config.charset (BeOS): Use wildcard syntax.
24011
24012 2001-03-13  Jim Meyering  <meyering@lucent.com>
24013
24014         * lib/path-concat.c (path_concat)
24015         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
24016         concatenating e.g., `C:' and `foo'.
24017         From Bruno Haible.
24018
24019 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
24020
24021         * lib/localcharset.c (locale_charset): Don't use
24022         setlocale(LC_CTYPE,NULL). Don't return NULL.
24023         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
24024
24025 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
24026
24027         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
24028         support for DOS/DJGPP.
24029
24030 2001-03-01  Paul Eggert  <eggert@twinsun.com>
24031
24032         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
24033         lacks mkstemp.  Compile our own tempname.c if we compile our own
24034         mkstemp.c, as mkstemp relies on tempname.
24035
24036 2001-03-01  Jim Meyering  <meyering@lucent.com>
24037
24038         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
24039         AH_VERBATIM really does output its argument verbatim.
24040
24041 2001-02-28  Paul Eggert  <eggert@twinsun.com>
24042
24043         * lib/Makefile.am (libfetish_a_SOURCES):
24044         Add dup-safer.c, fopen-safer.c.
24045         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
24046
24047         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
24048         * lib/unistd-safer.h: New files.
24049
24050 2001-02-25  Paul Eggert  <eggert@twinsun.com>
24051
24052         The mkstemp replacement is taken from glibc 2.2.2, with some
24053         portability fixes for use outside glibc, as follows:
24054
24055         * lib/tempname.c (struct_stat64): New macro.
24056         (direxists, __gen_tempname): Use it.
24057         This avoids a portability problem with Solaris 8.
24058
24059         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
24060         (<stddef.h>, <stdint.h>, <string.h>):
24061         Include only if STDC_HEADERS || _LIBC.
24062         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
24063         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
24064         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
24065         (__set_errno): Define this macro if <errno.h> doesn't.
24066         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
24067         Define these macros if <stdio.h> doesn't.
24068         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
24069         Define these macros if <sys/stat.h>
24070         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
24071         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
24072         __xstat64): Define if not _LIBC.
24073         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
24074         (__gen_tempname): Invoke gettimeofday only if
24075         HAVE_GETTIMEOFDAY || _LIBC;
24076         otherwise, fall back on plain "time".
24077         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
24078
24079         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
24080
24081         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
24082
24083 2001-02-18  Paul Eggert  <eggert@twinsun.com>
24084
24085         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
24086
24087 2001-02-17  Paul Eggert  <eggert@twinsun.com>
24088
24089         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
24090         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
24091         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
24092         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
24093
24094 2001-02-17  Paul Eggert  <eggert@twinsun.com>
24095
24096         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
24097         Remove workaround macros for hosts that have mbrtowc but not
24098         mbstate_t, as we now insist on proper declarations for both
24099         before using mbrtowc.
24100
24101 2001-02-17  Jim Meyering  <meyering@lucent.com>
24102
24103         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
24104         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
24105         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
24106         UnixWare 7.1.1.
24107
24108         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
24109         rather than AC_CACHE_VAL.
24110
24111 2001-02-17  Jim Meyering  <meyering@lucent.com>
24112
24113         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
24114         around included file name.
24115
24116         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
24117
24118         * lib/strftime.c: Update from GNU libc (the only changes were to
24119         comments).
24120
24121 2001-02-17  Jim Meyering  <meyering@lucent.com>
24122
24123         * lib/regex.c: Update from libc.
24124
24125 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
24126
24127         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
24128         clash.
24129
24130 2001-02-16  Paul Eggert  <eggert@twinsun.com>
24131
24132         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
24133         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
24134         Reported by Mark Hounschell via Paul Eggert.
24135
24136 2001-02-07  Jim Meyering  <meyering@lucent.com>
24137
24138         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
24139
24140 2001-02-05  Jim Meyering  <meyering@lucent.com>
24141
24142         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
24143         it includes the patch required for `large file' support with at least
24144         HP-UX's 10.20 /bin/cc.
24145
24146 2001-02-03  Jim Meyering  <meyering@lucent.com>
24147
24148         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
24149         AS_IF, now that it works once again (mysteriously).
24150         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
24151
24152 2001-01-30  Jim Meyering  <meyering@lucent.com>
24153
24154         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
24155         * m4/chown.m4: Rename conftestchown to conftest.chown.
24156         * m4/rename.m4: s/conftestdir/conftest.d1/ and
24157         s/conftestdir2/conftest.d2/.
24158         * m4/utimes.m4: s/conftestdata/conftest.data/
24159         Inspired by Pavel Roskin's change in autoconf.
24160
24161 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
24162
24163         * lib/config.charset: Update for FreeBSD 4.2.
24164
24165 2001-01-27  Jim Meyering  <meyering@lucent.com>
24166
24167         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
24168         a use of AS_IF.
24169         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
24170
24171 2001-01-26  Jim Meyering  <meyering@lucent.com>
24172
24173         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
24174         quotearg.c includes it.
24175
24176 2001-01-26  Jim Meyering  <meyering@lucent.com>
24177
24178         * lib/quotearg.c: Include stddef.h.
24179         * lib/quote.c: Include stddef.h.
24180         Reported by Axel Kittenberger.
24181
24182         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
24183         line in double quotes so that it evokes a better diagnostic.
24184         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
24185         Reported by Axel Kittenberger.
24186
24187 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
24188
24189         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
24190         as if it was a `charset'.
24191
24192 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
24193
24194         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
24195         has const.
24196
24197 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
24198
24199         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
24200         to avoid a warning.  Add back 'const' to inptr.
24201
24202 2001-01-20  Jim Meyering  <meyering@lucent.com>
24203
24204         Be sure that headers are checked before used in code compiled
24205         for the type checks.
24206         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
24207         In place of that, invoke jm_CHECK_ALL_TYPES.
24208         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
24209         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
24210         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
24211         The check for ssize_t was mistakenly run before the test for unistd.h.
24212
24213         The configure-time check for stdbool.h was missing.
24214         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
24215         (jm_PREREQ_HASH): New function.
24216
24217 2001-01-17  Jim Meyering  <meyering@lucent.com>
24218
24219         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
24220         for autoconf-2.49c.
24221         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
24222
24223 2001-01-16  Jim Meyering  <meyering@lucent.com>
24224
24225         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
24226         From Bruno Haible.
24227
24228 2001-01-14  Jim Meyering  <meyering@lucent.com>
24229
24230         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
24231         foo and bar.  Create conftestdir/ in the script, not in the C code.
24232         Remove directories in the script, not in the C code.
24233         Remove conftestdir{,2} before trying to create the directory.
24234         Make the entire configure script fail if the mkdir fails.
24235
24236 2001-01-14  Jim Meyering  <meyering@lucent.com>
24237
24238         * lib/rename.c: New file.  From Volker Borchert.
24239         Include stdlib.h, string.h or strings.h, and xalloc.h.
24240         Use strip_trailing_slashes rather than open-coding it.
24241
24242 2001-01-03  Paul Eggert  <eggert@twinsun.com>
24243
24244         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
24245
24246 2001-01-03  Jim Meyering  <meyering@lucent.com>
24247
24248         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
24249         of local `inptr' to avoid warning with some system declarations of
24250         iconv.
24251
24252 2001-01-02  Volker Borchert  <bt@teknon.de>
24253
24254         * m4/rename.m4: New file.
24255         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
24256
24257 2001-01-01  Jim Meyering  <meyering@lucent.com>
24258
24259         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
24260         even on systems with utmpx.h.  It's necessary for the declaration of
24261         utmp's ut_user member.  Reported by Andreas Jaeger.
24262
24263         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
24264         available. They are required for the declarations of getgrgid and
24265         getpwuid resp.
24266         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
24267         Reported by Andreas Jaeger.
24268
24269 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
24270
24271         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
24272         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
24273         so `make install' also works in VPATH builds.
24274
24275 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
24276
24277         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
24278         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
24279         can be used in subdirectories.
24280
24281 2000-12-29  Paul Eggert  <eggert@twinsun.com>
24282
24283         * lib/modechange.c: Do not assume that mode_t uses the
24284         traditional octal encoding.  E.g. "chmod 1 FOO" should set
24285         the other-execute bit of FOO even if S_IXOTH != 1.
24286
24287         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
24288         WOTH, XOTH, ALLM): New macros.
24289         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
24290          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
24291         Use them.
24292         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
24293         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
24294         (mode_compile):
24295         No need to use uintmax_t; unsigned long is long enough.
24296         Don't bother to get suffix since we don't use it.
24297
24298 2000-12-26  Jim Meyering  <meyering@lucent.com>
24299
24300         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
24301         better with autoheader.
24302
24303 2000-12-24  Jim Meyering  <meyering@lucent.com>
24304
24305         * lib/hash.c (is_prime): Return explicit boolean values.
24306         (hash_get_first): Return NULL to appease Irix5.6's 89.
24307         Reported by Nelson Beebe.
24308
24309 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
24310
24311         * lib/localcharset.c (locale_charset): Add support for Win32.
24312
24313 2000-12-18  Paul Eggert  <eggert@twinsun.com>
24314
24315         * lib/physmem.h, lib/physmem.c: New files.
24316
24317         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
24318         (noinst_HEADERS): Add physmem.h.
24319
24320         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
24321         't' for compatibility with Solaris 8 sort.
24322
24323 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
24324
24325         * lib/config.charset: Add support for BeOS.
24326
24327 2000-12-17  Jim Meyering  <meyering@lucent.com>
24328
24329         * m4/dos.m4 (jm_AC_DOS): New file and macro.
24330         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
24331
24332 2000-12-16  Jim Meyering  <meyering@lucent.com>
24333
24334         This bug had a serious impact on chown: `chown N:M FILE' (for integer
24335         N and M) would have treated it like `chown N:N FILE'.
24336
24337         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
24338
24339 2000-12-16  Jim Meyering  <meyering@lucent.com>
24340
24341         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
24342         SHELLS_FILE to a file name that's useful on djgpp systems.
24343         Include stdlib.h.
24344         (ADDITIONAL_DEFAULT_SHELLS): Define.
24345         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
24346         Based mostly on a patch from Prashant TR.
24347
24348 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
24349
24350         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
24351         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
24352         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
24353
24354 2000-12-08  Andreas Schwab  <schwab@suse.de>
24355
24356         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
24357         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
24358
24359 2000-12-07  Jim Meyering  <meyering@lucent.com>
24360
24361         * lib/stripslash.c (ISSLASH): Define.
24362         (strip_trailing_slashes): Use ISSLASH rather than comparing against
24363         `/'.
24364         From Prashant TR.
24365
24366         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
24367         (dir_name_r): Declare this function as static.
24368         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
24369         manifest itself on a name containing a mix of slashes and
24370         backslashes.
24371         Make this function work with names starting with a DOS-style
24372         drive letter and colon prefix.
24373         (dir_name): Append `.' if necessary.
24374         Based mostly on patches from Prashant TR and Eli Zaretskii.
24375
24376         * lib/dirname.h (dir_name_r): Remove prototype.
24377
24378 2000-12-06  Paul Eggert  <eggert@twinsun.com>
24379
24380         * m4/off_t-format.m4: Remove this file.
24381         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
24382
24383 2000-12-06  Jim Meyering  <meyering@lucent.com>
24384
24385         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
24386         replacement strtoull, we may well need the replacement strtoul, too.
24387         Check for declarations of strtoul and strtoull.
24388         Check for strtol.  Mainly as a cue to cause automake to include
24389         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
24390         Check for limits.h -- strtol.c needs it.
24391
24392 2000-12-05  Jim Meyering  <meyering@lucent.com>
24393
24394         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
24395
24396 2000-12-04  Jim Meyering  <meyering@lucent.com>
24397
24398         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
24399         Also include memory.h, stdlib.h, unistd.h if appropriate.
24400         Reported by Andreas Jaeger (conflicting declaration of malloc).
24401
24402 2000-12-02  Jim Meyering  <meyering@lucent.com>
24403
24404         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
24405         * m4/jm-macros.m4 (jm_MACROS): require it.
24406
24407 2000-12-02  Jim Meyering  <meyering@lucent.com>
24408
24409         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
24410
24411 2000-12-01  Paul Eggert  <eggert@twinsun.com>
24412
24413         * lib/memrchr.c: Include <config.h> before any system include file.
24414
24415 2000-11-30  Jim Meyering  <meyering@lucent.com>
24416
24417         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
24418
24419 2000-11-30  Jim Meyering  <meyering@lucent.com>
24420
24421         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
24422
24423 2000-11-29  Paul Eggert  <eggert@twinsun.com>
24424
24425         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
24426
24427 2000-11-26  Jim Meyering  <meyering@lucent.com>
24428
24429         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
24430
24431 2000-11-22  Paul Eggert  <eggert@twinsun.com>
24432
24433         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
24434         size of (size_t) -1; it's not portable.
24435
24436 2000-11-17  Jim Meyering  <meyering@lucent.com>
24437
24438         * lib/strstr.c: Update from GNU libc.
24439
24440 2000-11-17  Akim Demaille  <akim@epita.fr>
24441
24442         * lib/obstack.h: Formatting changes.
24443         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
24444         prevent type checking.
24445         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
24446         cast the value to (void *): assigning a `foo *' to a `void *'
24447         variable is valid.
24448         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
24449
24450 2000-11-16  Jim Meyering  <meyering@lucent.com>
24451
24452         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
24453
24454 2000-11-11  Jim Meyering  <meyering@lucent.com>
24455
24456         * lib/error.c: Add a couple #includes, merging from GNU libc version.
24457
24458 2000-11-10  Jim Meyering  <meyering@lucent.com>
24459
24460         * lib/obstack.h: Update from GNU libc.
24461         * lib/obstack.c: Likewise.
24462
24463 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
24464
24465         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
24466
24467 2000-11-06  Paul Eggert  <eggert@twinsun.com>
24468
24469         * lib/getusershell.c (setusershell): Use rewind rather than
24470         fseek/fseeko, to avoid configuration hassles with fseeko.
24471         Don't bother opening SHELLS_FILE if shellstream is NULL;
24472         it's not necessary.
24473
24474 2000-11-05  Jim Meyering  <meyering@lucent.com>
24475
24476         * lib/makepath.h (make_dir): Declare.
24477         * lib/makepath.c (make_dir): Remove `static' attribute.
24478         Tweak a comment.
24479
24480 2000-11-04  Jim Meyering  <meyering@lucent.com>
24481
24482         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
24483
24484 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
24485
24486         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
24487         last one in a bucket, advance to the next bucket.
24488
24489 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
24490
24491         * lib/fnmatch.c: Do not comment out all the code if we are using
24492         the GNU C library, because in some cases we are replacing buggy
24493         code in the GNU C library itself.
24494
24495 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
24496
24497         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
24498         (regex_compile): Catch bogus \(\1\).
24499
24500 2000-10-30  Paul Eggert  <eggert@twinsun.com>
24501
24502         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
24503         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
24504         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
24505
24506 2000-10-30  Paul Eggert  <eggert@twinsun.com>
24507
24508         * lib/error.h, getline.h, modechange.h:
24509         Remove "2000" from Copyright line, as the file hasn't been
24510         changed this year other than in the copyright notice.
24511
24512         * lib/xalloc.h: Add "2000" to Copyright line, as this file
24513         was changed this year.
24514
24515 2000-10-29  Jim Meyering  <meyering@lucent.com>
24516
24517         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
24518         renaming.
24519         * m4/ls-mntd-fs.m4: Likewise
24520
24521 2000-10-29  Jim Meyering  <meyering@lucent.com>
24522
24523         * lib/xstat.in: Fix grammar in comment.
24524
24525 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
24526
24527         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
24528         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
24529         doesn't define __restrict_arr.
24530
24531 2000-10-28  Jim Meyering  <meyering@lucent.com>
24532
24533         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
24534         (jm_PREREQ_MEMCHR): New function.
24535
24536 2000-10-28  Jim Meyering  <meyering@lucent.com>
24537
24538         * lib/memchr.c: Update from libc.
24539         Adjust for portability:
24540         [HAVE_STDLIB_H]: Include stdlib.h.
24541         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
24542         Undef __memchr, too.
24543         [!weak_alias]: Define __memchr to memchr.
24544
24545         * lib/regex.c: Update from libc.
24546         * lib/regex.h: Likewise.
24547         * lib/getopt1.c: Likewise.
24548         * lib/memcmp.c: Likewise.
24549
24550         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
24551         Avoid using fseek, when possible -- it's broken by design.
24552         Patch by Ulrich Drepper.
24553
24554 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
24555
24556         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
24557         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
24558         Giving in to popular pressure to shut up the compiler with casts.
24559
24560 2000-10-26  Jim Meyering  <meyering@lucent.com>
24561
24562         * lib/strftime.c: Update from libc.
24563
24564 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
24565
24566         * regex.c: More `unsigned char' -> `re_char' changes.
24567         Also change several `int' into `re_wchar_t'.
24568         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
24569         (PUSH_FAILURE_POINTER): Don't cast any more.
24570         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
24571         We want GCC to complain, since this piece of code makes
24572         re_match non-reentrant, which *should* be fixed.
24573         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
24574         (EXTEND_BUFFER): Use RETALLOC.
24575         (SET_LIST_BIT): Don't cast.
24576         (re_wchar_t): New type.
24577         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
24578         that those two functions will always properly return.
24579         (IMMEDIATE_QUIT_CHECK): Cast to void.
24580         (analyse_first): Use recursion rather than an explicit stack.
24581         (re_compile_fastmap): Can't fail anymore.
24582         (re_search_2): Don't check re_compile_fastmap for failure.
24583         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
24584         Now also sets the new value (passed in a new argument).
24585         (re_match_2_internal): Use it.
24586         Also, use a new var `reg' of type size_t when looping through regs
24587         rather than reuse the inappropriate `mcnt'.
24588
24589 2000-10-25  Jim Meyering  <meyering@lucent.com>
24590
24591         * lib/obstack.c: Update from libc.
24592
24593 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
24594
24595         * regex.c (regex_compile): Change the way of handling a range from
24596         a char less than 256 to a char not less than 256.
24597
24598 2000-10-24  Andrew Innes  <andrewi@gnu.org>
24599
24600         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
24601         NT-Emacs only.
24602         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
24603         so that re_search functions only quit when callers expect them to.
24604
24605 2000-10-23  Jim Meyering  <meyering@lucent.com>
24606
24607         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
24608         wrong.  That set_locale call must not have any side effects.
24609         From Paul Eggert.
24610
24611 2000-10-22  Jim Meyering  <meyering@lucent.com>
24612
24613         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
24614         [CYCLIC]: Remove now-unused definition.
24615
24616         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
24617         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
24618         Suggestion from Ulrich Drepper.
24619
24620 2000-10-21  Jim Meyering  <meyering@lucent.com>
24621
24622         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
24623         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
24624         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
24625
24626 2000-10-21  Jim Meyering  <meyering@lucent.com>
24627
24628         * lib/dirname.c (memrchr): Declare if necessary.
24629         (dir_name): Remove the restriction that there be no
24630         trailing slashes.  Now, this code skips past them, effectively
24631         ignoring them.
24632         [TEST_DIRNAME] (main): New unit tests.
24633
24634         * lib/memrchr.c: New file from GNU libc.
24635         Undef __memrchr, too.
24636         [!weak_alias]: Define __memrchr to memrchr.
24637         Guard weak_alias use with `#ifdef weak_alias'.
24638
24639 2000-10-21  Jim Meyering  <meyering@lucent.com>
24640
24641         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
24642         (dir_name): Use dir_name_r.
24643         * lib/dirname.h (dir_name_r): Declare it.
24644
24645 2000-10-17  Jim Meyering  <meyering@lucent.com>
24646
24647         * lib/quote.h (PARAMS): Define and use.
24648         Reported by Akim Demaille.
24649
24650         * lib/getopt.c: Update from libc.
24651
24652 2000-10-16  Jim Meyering  <meyering@lucent.com>
24653
24654         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
24655         setlocale.
24656         From Jan Fedak.
24657
24658 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
24659
24660         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
24661
24662 2000-09-25  Jim Meyering  <meyering@lucent.com>
24663
24664         * lib/md5.h (rol): Define (from GnuPG).
24665
24666         * lib/sha.c: Give credit (GnuPG) where due.
24667         (M): Use rol rather than open-coding it.
24668         Add a FIXME comment.
24669
24670 2000-09-21  Jim Meyering  <meyering@lucent.com>
24671
24672         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
24673         Reported by Michael Stone.
24674
24675 2000-09-20  Jim Meyering  <meyering@lucent.com>
24676
24677         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
24678         (noinst_HEADERS): Add sha.h.
24679         Based on code from Scott G. Miller and from GnuPG.
24680
24681 2000-09-18  Jim Meyering  <meyering@lucent.com>
24682
24683         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
24684         LIBS. Otherwise, everyone ends up linking with -lelf for some
24685         configurations.
24686         Reported by Mike Stone.
24687
24688 2000-09-15  Jim Meyering  <meyering@lucent.com>
24689
24690         * lib/regex.c: Update from libc.
24691
24692 2000-09-10  Jim Meyering  <meyering@lucent.com>
24693
24694         * lib/getopt.c (_getopt_internal): Update from glibc.
24695
24696 2000-09-09  Jim Meyering  <meyering@lucent.com>
24697
24698         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
24699         think it should be used as a general replacement for isascii.
24700         * lib/fnmatch.c: Likewise.
24701         * lib/mbswidth.c: Likewise
24702         * lib/regex.c: Likewise.
24703
24704         Don't use atoi.
24705         * lib/userspec.c: Include sys/param.h and limits.h.
24706         Include xstrtol.h.
24707         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
24708         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
24709         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
24710         UID, GID.  Check range.
24711
24712 2000-09-06  Jim Meyering  <meyering@lucent.com>
24713
24714         * lib/getopt.c (_getopt_internal): Update from glibc.
24715
24716 2000-08-30  Jim Meyering  <meyering@lucent.com>
24717
24718         * lib/strftime.c: Merge in changes from GNU libc.
24719
24720 2000-08-26  Jim Meyering  <meyering@lucent.com>
24721
24722         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
24723         * m4/fpending.m4: New file.
24724
24725 2000-08-26  Jim Meyering  <meyering@lucent.com>
24726
24727         * lib/closeout.c: Include "__fpending.h".
24728         (close_stdout_status): Return right away if there's nothing to flush.
24729
24730         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
24731         * lib/__fpending.c: New file.
24732         * lib/__fpending.h: New file.
24733
24734 2000-08-20  Jim Meyering  <meyering@lucent.com>
24735
24736         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
24737         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
24738         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
24739
24740 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
24741
24742         Improve fileutils installation on systems where running
24743         programs (like install) can't be unlinked.
24744         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
24745         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
24746
24747 2000-08-07  Paul Eggert  <eggert@twinsun.com>
24748
24749         Standardize on "memory exhausted" instead of "Memory exhausted"
24750         or "virtual memory exhausted".
24751         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
24752         "virtual memory exhausted".
24753         * lib/same.c (same_name): Invoke xalloc_die instead of printing
24754         our own message.
24755         * lib/userspec.c (parse_user_spec): Likewise.
24756         * lib/bumpalloc.h: comment fix
24757         * lib/same.c, userspec.c: Include xalloc.h.
24758
24759         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
24760         not char *const and pointing to a constant array.
24761         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
24762         (xrealloc): Comment fix.
24763
24764         * lib/userspec.c (parse_user_spec):
24765         Don't translate a message until just before returning,
24766         to avoid unnecessary translation.
24767
24768 2000-08-07  Jim Meyering  <meyering@lucent.com>
24769
24770         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
24771         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
24772         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
24773         getgroups.c, gethostname.c, getopt.h, group-member.c,
24774         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
24775         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
24776         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
24777         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
24778         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
24779         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
24780         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
24781         yesno.c: Back out Copyright date changes for each file with no change
24782         this year.  This eases coordination with other programs using the same
24783         source code modules.  From Paul Eggert.
24784
24785 2000-08-06  Paul Eggert  <eggert@twinsun.com>
24786
24787         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
24788         not char, for compatibility with glibc 2.1.3 strftime.c.
24789
24790 2000-08-03  Greg McGary  <greg@mcgary.org>
24791
24792         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
24793         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
24794         (EXTEND_BUFFER): Use them.
24795
24796 2000-08-01  Jim Meyering  <meyering@lucent.com>
24797
24798         * lib/dirname.c (ISSLASH): Define.
24799         (BACKSLASH_IS_PATH_SEPARATOR): Define.
24800         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
24801         both `\' and `/' may be use as path separators.
24802         Based on a patch from Prashant TR.
24803
24804 2000-07-31  Paul Eggert  <eggert@twinsun.com>
24805
24806         * lib/quotearg.c (quotearg_n_options): Don't make the initial
24807         slot vector a constant, since it might get modified.
24808
24809 2000-07-31  Jim Meyering  <meyering@lucent.com>
24810
24811         * lib/xmalloc.c: Use `virtual memory exhausted', not
24812         `Memory exhausted'.
24813         * lib/obstack.c (print_and_abort): Likewise.
24814
24815 2000-07-30  Paul Eggert  <eggert@twinsun.com>
24816
24817         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
24818         buffer, so that the caller can always quote one small
24819         component of a "memory exhausted" message in slot 0.
24820         From a suggestion by Jim Meyering.
24821
24822 2000-07-30  Jim Meyering  <meyering@lucent.com>
24823
24824         * lib/makepath.c (make_path): Quote the other instance, too.
24825
24826         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
24827         (STATIC_BUF_SIZE): Define.
24828         (quotearg_n_options): Use only statically allocated storage when
24829         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
24830         than STATIC_BUF_SIZE.
24831
24832 2000-07-29  Jim Meyering  <meyering@lucent.com>
24833
24834         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
24835         * lib/dirname.c (dir_name): Likewise.
24836
24837         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
24838         `/'.
24839
24840         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
24841         (dir_name): Assert that there are no trailing slashes.
24842
24843 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
24844
24845         * lib/mbswidth.h (mbswidth): Add a flags argument.
24846         (mbswidth): New declaration.
24847         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
24848         * lib/mbswidth.c (mbswidth): Add a flags argument.
24849         (mbsnwidth): New function.
24850
24851 2000-07-24  Jim Meyering  <meyering@lucent.com>
24852
24853         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
24854
24855 2000-07-23  Paul Eggert  <eggert@twinsun.com>
24856
24857         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
24858
24859 2000-07-23  Paul Eggert  <eggert@twinsun.com>
24860
24861         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
24862         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
24863         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
24864         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
24865         invoke multibyte primitives.
24866
24867 2000-07-23  Paul Eggert  <eggert@twinsun.com>
24868
24869         * lib/quotearg.c:
24870         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
24871         so that mbstate_t is always defined.
24872
24873         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
24874         be 1 in at least one GCC installation, and this configuration
24875         error is likely to be common.  Ignoring MB_LEN_MAX hurts
24876         performance on hosts that have mbrtowc but have only unibyte
24877         locales, but I assume these hosts are rare.
24878
24879 2000-07-23  Paul Eggert  <eggert@twinsun.com>
24880
24881         * lib/mbswidth.c (_XOPEN_SOURCE):
24882         Don't define; this causes problems on Solaris 7.
24883         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
24884
24885 2000-07-23  Jim Meyering  <meyering@lucent.com>
24886
24887         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
24888         too: getgrgid, getpwuid, getuid.
24889
24890 2000-07-23  Jim Meyering  <meyering@lucent.com>
24891
24892         * lib/basename.c (base_name): Add an assertion.
24893
24894 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
24895
24896         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
24897         shadow its mbsinit function.
24898
24899 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
24900
24901         * lib/mbswidth.h: New file.
24902         * lib/mbswidth.c: New file.
24903         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
24904         (noinst_HEADERS): Add mbswidth.h.
24905
24906 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
24907
24908         * lib/config.charset: Add support for FreeBSD. Improve support for
24909         HP-UX and IRIX 6.
24910
24911 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
24912
24913         * m4/mbswidth.m4: New file.
24914         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
24915
24916 2000-07-15  Jim Meyering  <meyering@lucent.com>
24917
24918         * lib/makepath.c: Include quote.h.
24919         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
24920         corresponding argument in a `quote (...)' call.
24921         Give better diagnostics.
24922
24923         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
24924         (noinst_HEADERS): Add quote.h.
24925
24926         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
24927         from tar's src/misc.c.
24928         * lib/quote.h: New file.  Prototypes for same.
24929
24930 2000-07-14  Paul Eggert  <eggert@twinsun.com>
24931
24932         From a suggestion by Bruno Haible.
24933         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
24934         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
24935         to decide whether to define the BeOS workaround macro;
24936         this adjusts to the change to AC_MBSTATE_T.
24937
24938 2000-07-14  Jim Meyering  <meyering@lucent.com>
24939
24940         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
24941         jm_AC_TYPE_UINTMAX_T.
24942
24943 2000-07-13  Paul Eggert  <eggert@twinsun.com>
24944
24945         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
24946
24947         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
24948         quotearg_buffer_restyled): Add support for
24949         clocale_quoting_style.  Undo previous change to
24950         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
24951         and "{RIGHT QUOTATION MARK}" msgids.
24952
24953 2000-07-10  Paul Eggert  <eggert@twinsun.com>
24954
24955         From a suggestion by Bruno Haible.
24956         * m4/mbstate_t.m4 (AC_MBSTATE_T):
24957         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
24958         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
24959         and mbstate_t, to a single-part test that simply defines mbstate_t.
24960         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
24961         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
24962
24963 2000-07-10  Jim Meyering  <meyering@lucent.com>
24964
24965         * m4/strerror_r.m4: Mirror the correction made in autoconf.
24966
24967         * m4/gnu-source.m4: Output to confdefs.h directly.
24968         Suggestion from Akim Demaille.
24969
24970 2000-07-09  Paul Eggert  <eggert@twinsun.com>
24971
24972         The old behavior of quoting `like this' doesn't look good with
24973         newer, ISO-style fonts.  See:
24974         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
24975
24976         Instead, quote "like this" by default.  Let the translator
24977         tailor the locale-specific quoting behavior by providing
24978         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
24979
24980         * lib/quotearg.c (N_): New macro.
24981         (gettext_default): New function.
24982         (quotearg_buffer_restyled): Use
24983         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
24984         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
24985
24986 2000-07-09  Jim Meyering  <meyering@lucent.com>
24987
24988         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
24989         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
24990
24991         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
24992         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
24993
24994 2000-07-09  Jim Meyering  <meyering@lucent.com>
24995
24996         * lib/Most files: Update copyright dates to include 2000.
24997
24998 2000-07-08  Jim Meyering  <meyering@lucent.com>
24999
25000         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
25001         if not defined.
25002         (xgethostname): Remove now-unnecessary #ifdef.
25003         Move declaration of `err' into loop where it's used.
25004
25005 2000-07-05  Paul Eggert  <eggert@twinsun.com>
25006         and Bruno Haible  <haible@clisp.cons.org>
25007
25008         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
25009         only if the test for an object-type mbstate_t fails.  This
25010         prevents us from mistakenly reporting that mbstate_t is a
25011         system object type after we "#define mbstate_t int" to work
25012         around its lack.
25013
25014 2000-07-05  Paul Eggert  <eggert@twinsun.com>
25015         and Bruno Haible  <haible@clisp.cons.org>
25016
25017         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
25018
25019 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
25020
25021         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
25022         to strerror_r.
25023         Include <ctype.h> for use of isalpha.
25024
25025 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
25026
25027         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
25028         by allocating a larger buffer. Test the gethostname return value for
25029         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
25030         returns an error and ENAMETOOLONG isn't defined.
25031
25032 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
25033
25034         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
25035         dimension.
25036
25037 2000-07-04  Jim Meyering  <meyering@lucent.com>
25038
25039         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
25040         of the deprecated AC_CHECKING.
25041
25042 2000-07-04  Jim Meyering  <meyering@lucent.com>
25043
25044         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
25045         Reported by Bruno Haible.
25046
25047 2000-07-04  Jim Meyering  <meyering@lucent.com>
25048
25049         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
25050         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
25051         lacks mbrtowc.
25052
25053 2000-07-03  Paul Eggert  <eggert@twinsun.com>
25054
25055         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
25056         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
25057
25058 2000-07-03  Paul Eggert  <eggert@twinsun.com>
25059         and Bruno Haible  <haible@clisp.cons.org>
25060
25061         * lib/quotearg.c (mbrtowc):
25062         Assign to *pwc, and return 1 only if result is nonzero.
25063         (iswprint): Use ISPRINT when substituting our own mbrtowc.
25064
25065 2000-07-03  Jim Meyering  <meyering@lucent.com>
25066
25067         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
25068
25069 2000-07-03  Jim Meyering  <meyering@lucent.com>
25070
25071         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
25072         This is necessary to get a definition of e.g., UTMP_FILE on
25073         HP-UX 10.20.
25074         From Bob Proulx.
25075
25076 2000-07-02  Jim Meyering  <meyering@lucent.com>
25077
25078         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
25079
25080         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
25081         AC_LIBOBJ(function_name).
25082         * m4/chown.m4: Likewise.
25083         * m4/fnmatch.m4: Likewise.
25084         * m4/ftruncate.m4: Likewise.
25085         * m4/getgroups.m4: Likewise.
25086         * m4/getline.m4: Likewise.
25087         * m4/group-member.m4: Likewise.
25088         * m4/jm-macros.m4: Likewise.
25089         * m4/lstat.m4: Likewise.
25090         * m4/malloc.m4: Likewise.
25091         * m4/memcmp.m4: Likewise.
25092         * m4/nanosleep.m4: Likewise.
25093         * m4/putenv.m4: Likewise.
25094         * m4/realloc.m4: Likewise.
25095         * m4/regex.m4: Likewise.
25096         * m4/stat.m4: Likewise.
25097         * m4/strftime.m4: Likewise.
25098
25099 2000-07-02  Jim Meyering  <meyering@lucent.com>
25100
25101         * lib/quotearg.c (mbstate_t): Don't define here.
25102
25103 2000-07-02  Jim Meyering  <meyering@lucent.com>
25104
25105         * lib/nanosleep.c (SIGCONT): Define if not already defined.
25106
25107 2000-07-01  Jim Meyering  <meyering@lucent.com>
25108
25109         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
25110
25111 2000-07-01  Jim Meyering  <meyering@lucent.com>
25112
25113         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
25114         problem.
25115
25116 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
25117
25118         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
25119         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
25120
25121 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
25122
25123         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
25124         per change in ../m4/ls-mntd-fs.m4.
25125         (read_filesystem_list): Ignore symbolic links.
25126
25127 2000-06-29  Jim Meyering  <meyering@lucent.com>
25128
25129         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
25130         for declaration of strcmp.
25131
25132         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
25133
25134         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
25135         Avoid warning by casting result to `char *' to remove `const'.
25136
25137 2000-06-28  Jim Meyering  <meyering@lucent.com>
25138
25139         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
25140         included by quotearg.c, for which we perform this test.  From
25141         Bruno Haible.
25142
25143 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
25144
25145         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
25146         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
25147         <utmpx.h> exists, put readutmp.o into LIBOBJS.
25148
25149 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
25150
25151         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
25152
25153 2000-06-26  Paul Eggert  <eggert@twinsun.com>
25154
25155         savedir now sets errno on failure and invokes xmalloc to get memory.
25156         Fix a couple of other minor bugs while we're at it.
25157
25158         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
25159         (NAMLEN): Remove macro.
25160         (malloc, realloc): Remove decls.
25161         (stpcpy): Likewise.
25162         ("xalloc.h"): Include.
25163         (NAME_SIZE_DEFAULT): New macro.
25164         (savedir): Use xmalloc / xrealloc to allocate memory.
25165         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
25166         Skip "" directory entries.
25167         Use strlen to calculate directory entry length, since the old method
25168         is rarely used these days and isn't worth supporting.
25169         Don't use a pointer after freeing it.
25170         Check for integer overflow when calculating allocation size.
25171         Use memcpy to copy entries, instead of stpcpy.
25172         Set errno properly when returning NULL.
25173         Check for readdir error.
25174
25175 2000-06-26  Jim Meyering  <meyering@lucent.com>
25176
25177         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
25178
25179 2000-06-25  Jim Meyering  <meyering@lucent.com>
25180
25181         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
25182         Linux header bug when _XOPEN_SOURCE is defined to 500.
25183
25184 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
25185
25186         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
25187         deficiency.
25188
25189 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
25190
25191         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
25192         Include xalloc.h.
25193         Don't include <stdlib.h>.  Don't declare malloc, realloc.
25194
25195 2000-06-24  Jim Meyering  <meyering@lucent.com>
25196
25197         * m4/strerror_r.m4: Revive this file -- to try out an experimental
25198         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
25199         for which strerror does return char*, but which lacks a conveniently
25200         accessible declaration of the function.  If the compile-test says
25201         strerror_r doesn't work, then resort to a `run'-test that works on
25202         BeOS and segfaults on DEC Unix.
25203
25204 2000-06-24  Jim Meyering  <meyering@lucent.com>
25205
25206         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
25207
25208 2000-06-23  Paul Eggert  <eggert@twinsun.com>
25209
25210         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
25211         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
25212
25213 2000-06-23  Paul Eggert  <eggert@twinsun.com>
25214
25215         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
25216         (mbrtowc, mbstate_t): Define substitutes if
25217         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
25218         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
25219         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
25220
25221 2000-06-23  Jim Meyering  <meyering@lucent.com>
25222
25223         * m4/afs.m4: Add missing AC_MSG_RESULT.
25224         Reported by Bruno Haible.
25225
25226         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
25227         Suggestion from Bruno Haible.
25228
25229 2000-06-23  Jim Meyering  <meyering@lucent.com>
25230
25231         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
25232
25233 2000-06-21  Jim Meyering  <meyering@lucent.com>
25234
25235         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
25236
25237 2000-06-21  Jim Meyering  <meyering@lucent.com>
25238
25239         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
25240         (noinst_HEADERS): Add getstr.h.
25241
25242         * lib/getline.c (getstr): Move into a separate file.
25243         * lib/getstr.c (getstr): New file, extracted from getline.c, with
25244         the following changes: new parameter, delim2; both delim[12]
25245         parameters have type `int', not `char'.  The latter would lose
25246         with 8-bit delimiters.
25247         * lib/getstr.h: New file.
25248
25249 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
25250
25251         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
25252         than 1024, return a memory chunk of least possible size, instead
25253         of size PATH_MAX + 2. In the loop, increment the size proportionally.
25254         Use free/xmalloc instead of xrealloc to avoid copying for very long
25255         paths.
25256
25257 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
25258
25259         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
25260         the empty string.
25261
25262 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
25263
25264         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
25265         address, not strdup.  Include <stdlib.h> and don't declare free().
25266
25267 2000-06-19  Jim Meyering  <meyering@lucent.com>
25268
25269         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
25270
25271 2000-06-18  Jim Meyering  <meyering@lucent.com>
25272
25273         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
25274
25275         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
25276         `checking whether...' message to be consistent with that of the
25277         lstat test.
25278
25279 2000-06-18  Jim Meyering  <meyering@lucent.com>
25280
25281         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
25282         Besides, these days every porting target provides a mkdir function.
25283
25284         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
25285         needed. (this snippet comes from src/system.h).
25286
25287 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
25288
25289         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
25290
25291 2000-06-15  Paul Eggert  <eggert@twinsun.com>
25292
25293         * lib/human.c (adjust_value): New function.
25294         (human_readable_inexact): Apply rounding style even when
25295         printing approximate values.
25296
25297 2000-06-14  Paul Eggert  <eggert@twinsun.com>
25298
25299         * lib/human.c (human_readable_inexact): Allow an input block
25300         size that is not a multiple of the output block size, and vice versa.
25301         Reported by Piergiorgio Sartor.
25302
25303 2000-06-14  Paul Eggert  <eggert@twinsun.com>
25304
25305         * lib/getdate.y (get_date): Apply relative times after time
25306         zone indicator, not before.  Reported by Todd A. Jacobs.
25307
25308 2000-06-13  Jim Meyering  <meyering@lucent.com>
25309
25310         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
25311
25312         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
25313
25314 2000-06-12  Paul Eggert  <eggert@twinsun.com>
25315
25316         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
25317
25318 2000-06-12  Jim Meyering  <meyering@lucent.com>
25319
25320         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
25321         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
25322         optional argument.
25323         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
25324         the optional argument, `lib'.
25325
25326 2000-06-08  Jim Meyering  <meyering@lucent.com>
25327
25328         * m4/largefile.m4: Remove file (now that it's part of autoconf).
25329
25330 2000-06-04  Paul Eggert  <eggert@twinsun.com>
25331
25332         Rewrite largefile configuration so that we don't need to run
25333         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
25334         AC_CANONICAL_HOST in configure.in -- jmm]
25335
25336         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
25337         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
25338         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
25339         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
25340         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
25341         All uses changed.
25342         Instead of inspecting the output of getconf, try to compile the
25343         test program without and with the macro definition.
25344         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
25345         for getconf.  Instead, check for the needed flags by compiling
25346         test programs.
25347
25348 2000-06-04  Paul Eggert  <eggert@twinsun.com>
25349
25350         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
25351
25352 2000-06-04  Jim Meyering  <meyering@lucent.com>
25353
25354         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
25355         SunOS 4.1.4 for which gid_t is an unsigned type.
25356
25357 2000-06-03  Jim Meyering  <meyering@lucent.com>
25358
25359         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
25360         now that autoconf requires that.
25361
25362         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
25363         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
25364         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
25365
25366 2000-06-03  Jim Meyering  <meyering@lucent.com>
25367
25368         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
25369
25370 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
25371
25372         * m4/glibc21.m4: New file.
25373         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
25374
25375 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
25376
25377         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
25378         newer, don't install charset.alias.
25379         * lib/config.charset: Change the Linux/glibc rules so they become empty
25380         on glibc-2.1 or newer.
25381
25382 2000-06-02  Jim Meyering  <meyering@lucent.com>
25383
25384         * lib/mountlist.c: Back out last change.  Instead, do this...
25385         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
25386         me_dummy member using the same `ignore'-testing code.
25387         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
25388         fs_type strings.
25389         From Mark D. Roth.
25390
25391 2000-05-29  Jim Meyering  <meyering@lucent.com>
25392
25393         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
25394         mounts with the `ignore' attribute.  Based on a patch from
25395         Mark D. Roth.
25396
25397 2000-05-28  Jim Meyering  <meyering@lucent.com>
25398
25399         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
25400         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
25401         * m4/stat.m4: Likewise.
25402         * m4/lstat.m4: Likewise.
25403         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
25404
25405         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
25406         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
25407
25408 2000-05-26  Jim Meyering  <meyering@lucent.com>
25409
25410         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
25411
25412 2000-05-24  Jim Meyering  <meyering@lucent.com>
25413
25414         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
25415         autoconf requires that.
25416         * m4/lib-check.m4: Likewise.
25417         * m4/jm-macros.m4: Likewise.
25418         * m4/strftime.m4: Likewise.
25419
25420         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
25421         AC_CHECK_DECLS, now that autoconf requires that.
25422
25423 2000-05-22  Jim Meyering  <meyering@lucent.com>
25424
25425         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
25426         * m4/lstat.m4: Likewise.
25427
25428 2000-05-22  Jim Meyering  <meyering@lucent.com>
25429
25430         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
25431
25432 2000-05-20  Jim Meyering  <meyering@lucent.com>
25433
25434         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
25435         (jm_PREREQ): Use it.
25436
25437 2000-05-18  Jim Meyering  <meyering@lucent.com>
25438
25439         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
25440         back, too, since it may have been modified by allocate_entry.
25441         (hash_delete): Rewrite to use neither the assignment operator
25442         nor the comma operator in an if-expression.
25443
25444 2000-05-15  Paul Eggert  <eggert@twinsun.com>
25445
25446         * lib/closeout.c:
25447         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
25448         Remove; no longer needed.
25449         "quotearg.h": Add include.
25450         (file_name): Do not bother to explicitly initialize to NULL; it's less
25451         efficient on some hosts.
25452         (close_stdout_status): Remove test as to whether stdout was already
25453         closed; it breaks for the case "echo x | sort >&-".
25454         Quote file name colons.
25455         Do not assume that _("write error") lacks format strings.
25456
25457 2000-05-15  Jim Meyering  <meyering@lucent.com>
25458
25459         * lib/version-etc.c (version_etc_copyright): Update the copyright
25460         string used in all --version output.
25461
25462 2000-05-14  Jim Meyering  <meyering@lucent.com>
25463
25464         * lib/closeout.c (close_stdout_set_file_name): New function.
25465         (close_stdout_status): Use new file-scoped global.
25466         Return right away if fstat says the stdout file descriptor is invalid.
25467         * lib/closeout.h (close_stdout_set_file_name): Declare.
25468
25469 2000-05-10  Jim Meyering  <meyering@lucent.com>
25470
25471         * lib/closeout.c [default_exit_status]: New file-scoped variable.
25472         (close_stdout_set_status): New function.
25473         * lib/closeout.h (close_stdout_set_status): Declare.
25474
25475 2000-05-09  Jim Meyering  <meyering@lucent.com>
25476
25477         * m4/gettext.m4: Rename this...
25478         * m4/libintl.m4: ...to this.
25479
25480 2000-05-08  Jim Meyering  <meyering@lucent.com>
25481
25482         * lib/long-options.c: Don't include closeout.h.
25483         (parse_long_options): Don't call close_stdout for --version.
25484
25485 2000-05-06  Paul Eggert  <eggert@twinsun.com>
25486
25487         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
25488         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
25489         2.1.3 bug.  This avoids a clash when files like regex.c define
25490         _GNU_SOURCE.
25491
25492 2000-05-06  Jim Meyering  <meyering@lucent.com>
25493
25494         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
25495         (AC_REPLACE_FUNCS): Add strnlen.
25496
25497         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
25498         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
25499
25500         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
25501         AC_SEARCH_LIBS call for nanosleep.
25502         (LIB_NANOSLEEP): Set and AC_SUBST.
25503
25504 2000-05-06  Jim Meyering  <meyering@lucent.com>
25505
25506         * lib/strnlen.c: Undefine __strnlen and strnlen.
25507         [!weak_alias]: Define __strnlen to strnlen.
25508
25509         * lib/atexit.c: New file, from libiberty.
25510
25511 2000-05-06  Jim Meyering  <meyering@lucent.com>
25512
25513         * lib/closeout.c (close_stdout_status): Also check for errors on the
25514         stderr stream.
25515
25516 2000-05-05  Jim Meyering  <meyering@lucent.com>
25517
25518         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
25519         AC_SEARCH_LIBS call for clock_gettime.
25520         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
25521
25522         * m4/search-libs.m4: Update from autoconf.
25523
25524         su doesn't work on Solaris 2.6.
25525         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
25526         <shadow.h>.  Reported by Dragos Harabor.
25527
25528 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
25529
25530         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
25531         memcpy instead of xmalloc, xrealloc, path_concat.
25532         (locale_charset): Treat empty environment variables as absent.
25533         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
25534
25535 2000-05-04  Jim Meyering  <meyering@lucent.com>
25536
25537         * lib/getopt.c: Update from glibc.
25538         * lib/obstack.c: Likewise.
25539         * lib/obstack.h: Likewise.
25540         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
25541         file
25542
25543         * lib/regex.h: Likewise.
25544         * lib/strndup.c: Likewise.
25545         * lib/strnlen.c: New file, from glibc.
25546
25547 2000-05-03  Jim Meyering  <meyering@lucent.com>
25548
25549         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
25550
25551 2000-05-02  Paul Eggert  <eggert@twinsun.com>
25552
25553         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
25554         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
25555         compile-time test, rather than inspecting host and OS, to
25556         decide whether to define _LARGEFILE_SOURCE.
25557
25558 2000-05-01  Jim Meyering  <meyering@lucent.com>
25559
25560         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
25561
25562         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
25563         Based on a patch from Bruno Haible.
25564
25565 2000-05-01  Jim Meyering  <meyering@lucent.com>
25566
25567         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
25568
25569 2000-04-29  Jim Meyering  <meyering@lucent.com>
25570
25571         * lib/path-concat.c: Declare strdup only if it's not defined.
25572         * lib/canon-host.c: Likewise.
25573
25574 2000-04-28  Jim Meyering  <meyering@lucent.com>
25575
25576         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
25577         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
25578         is included first, then limits.h is included by locale.h by libintl.h.
25579         From John David Anglin.
25580
25581 2000-04-25  Jim Meyering  <meyering@lucent.com>
25582
25583         * lib/makepath.c (S_IRWXUGO): Define.
25584         (make_path): Always perform explicit chmod if MODE specifies any
25585         of the `special' permission bits.  Prompted by a bug report against
25586         install from Mate Wierdl and Joost van Baal.
25587
25588 2000-04-18  Jim Meyering  <meyering@lucent.com>
25589
25590         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
25591         (jm_PREREQ): Use it.
25592
25593 2000-04-18  Jim Meyering  <meyering@lucent.com>
25594
25595         * lib/README: New file.
25596
25597         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
25598         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
25599
25600 2000-04-17  Jim Meyering  <meyering@lucent.com>
25601
25602         Get it right :-)
25603         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
25604         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
25605         Suggestion from Akim Demaille.
25606
25607 2000-04-17  Jim Meyering  <meyering@lucent.com>
25608
25609         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
25610         the definition of it to rpl_strftime also defined-away the system's
25611         declaration.
25612
25613 2000-04-15  Jim Meyering  <meyering@lucent.com>
25614
25615         Use `C' to denote so-called `contiguous' files, the same way
25616         that tar does.
25617         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
25618         (ftypelet): Use S_ISCTG.
25619         From Michael Deutschmann.
25620
25621 2000-04-14  Jim Meyering  <meyering@lucent.com>
25622
25623         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
25624         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
25625         clobbered.
25626
25627 2000-04-14  Jim Meyering  <meyering@lucent.com>
25628
25629         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
25630
25631 2000-04-13  Jim Meyering  <meyering@lucent.com>
25632
25633         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
25634         AH_VERBATIM to insert required #ifndef into config.h.in.
25635         Suggestion from Akim Demaille.
25636
25637 2000-04-12  Jim Meyering  <meyering@lucent.com>
25638
25639         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
25640         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
25641         Christian Krackowizer.
25642
25643         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
25644         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
25645         (AC_SYS_LARGEFILE): Require.
25646         (AM_C_PROTOTYPES): Require.
25647
25648 2000-04-08  Jim Meyering  <meyering@lucent.com>
25649
25650         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
25651         names don't conflict.  Reported by Eli Zaretskii.
25652
25653 2000-04-07  Jim Meyering  <meyering@lucent.com>
25654
25655         * lib/putenv.c: Move inclusion of errno.h so it follows that of
25656         sys/types.h, to work around system header problems on AIX 3.2.5.
25657         From Bruno Haible.
25658
25659 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
25660
25661         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
25662         bug.  Deal with the different error behavior of Irix iconv.
25663
25664 2000-04-05  Paul Eggert  <eggert@twinsun.com>
25665
25666         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
25667         IRIX if the installer said otherwise.
25668
25669 2000-04-05  Jim Meyering  <meyering@lucent.com>
25670
25671         Portability tweaks required for ultrix4.3.
25672         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
25673         (jm_CHECK_DECLS): Add getutent to the list of functions.
25674         (_jm_DECL_HEADERS): Add utmpx.h.
25675         From John David Anglin.
25676
25677         * m4/strftime.m4: Back out the 2000-04-02 change.
25678         Instead of that change, simply undefine putenv in the test program.
25679
25680 2000-04-05  Jim Meyering  <meyering@lucent.com>
25681
25682         Portability tweaks required for ultrix4.3.
25683         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
25684         getutent.
25685         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
25686         * lib/canon-host.c: Declare strdup.
25687         * lib/path-concat.c: Likewise.
25688         From John David Anglin.
25689
25690 2000-04-04  Jim Meyering  <meyering@lucent.com>
25691
25692         Be more DOS 8.3-friendly.
25693         * lib/ref-add.sin: Renamed from ref-add.sed.in.
25694         * lib/ref-del.sin: Renamed from ref-del.sed.in.
25695         * lib/Makefile.am: Reflect renaming.
25696         Reported by Eli Zaretskii.
25697
25698         Use a temporary file name that won't clash with `charset.alias'
25699         in the DOS 8.3 name space.
25700         * lib/Makefile.am (charset_tmp): Define.
25701         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
25702         (uninstall-local): Likewise.
25703         Reported by Eli Zaretskii.
25704
25705 2000-04-03  Jim Meyering  <meyering@lucent.com>
25706
25707         * m4/gettext.m4: Fix typo in comment.
25708
25709         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
25710         textutils/configure.in).  Suggestion from Paul Eggert.
25711         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
25712
25713 2000-04-02  Paul Eggert  <eggert@twinsun.com>
25714
25715         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
25716         variable in the shell rather than using putenv, which isn't
25717         portable.  This avoids the configure-time inter-test dependency
25718         on the potentially-renamed putenv function.
25719
25720 2000-03-30  Paul Eggert  <eggert@twinsun.com>
25721
25722         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
25723         before checking struct stat.st_blksize, so that
25724         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
25725
25726 2000-03-29  Paul Eggert  <eggert@twinsun.com>
25727
25728         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
25729         since strftime.c uses HAVE_STRFTIME to decide whether to use
25730         the underlying strftime.
25731
25732 2000-03-29  Paul Eggert  <eggert@twinsun.com>
25733
25734         * lib/time/strftime.c (my_strftime): Make sure we call the system
25735         strftime, not ourselves, when invoking the underlying strftime.
25736
25737 2000-03-24  Jim Meyering  <meyering@lucent.com>
25738
25739         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
25740         (charset_alias): Define.
25741         (install-exec-local): Factor out common code.
25742         (uninstall-local): Split lines longer than 80.
25743         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
25744         (SUFFIXES): Define.
25745         (.sed.in.sed): New rule.  Don't redirect directly to $@.
25746         (CLEANFILES): Add ref-add.sed and ref-del.sed.
25747
25748 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
25749
25750         * lib/config.charset: Output a line containing "Packages using this
25751         file".
25752         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
25753         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
25754         ref-del.sed): New rules.
25755
25756 2000-03-17  Jim Meyering  <meyering@lucent.com>
25757
25758         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
25759         Otherwise, include <strings.h>
25760
25761 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
25762
25763         * lib/unicodeio.c (utf8_wctomb): New function.
25764         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
25765         format instead of in UCS-4 with platform dependent endianness.
25766
25767 2000-03-10  Jim Meyering  <meyering@lucent.com>
25768
25769         * m4/lib-check.m4: Look for getspnam in -lgen, too.
25770         From Marco Franzen.
25771
25772 2000-03-07  Paul Eggert  <eggert@twinsun.com>
25773
25774         * lib/savedir.c (savedir): Work even if directory size is
25775         negative; this can happen with some screwy NFS configurations.
25776
25777 2000-03-06  Jim Meyering  <meyering@lucent.com>
25778
25779         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
25780         if it's NULL (because we ran out of memory).  From Bruno Haible.
25781
25782 2000-03-05  Jim Meyering  <meyering@lucent.com>
25783
25784         * lib/localcharset.c ("path-concat.h"): Include.
25785         (get_charset_aliases): Use path_concat instead of ANSI string
25786         concatenation.
25787
25788         * lib/unicodeio.h (PARAMS): Define.
25789         Use it to guard prototype.
25790
25791 2000-03-04  Jim Meyering  <meyering@lucent.com>
25792
25793         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
25794         for lib/localcharset.c.
25795
25796 2000-03-04  Jim Meyering  <meyering@lucent.com>
25797
25798         * lib/Makefile.am (install-exec-local): Create $(libdir) before
25799         installing into it.
25800         (uninstall-local): Uncomment this rule so `make distcheck' works
25801         once again.
25802
25803         * lib/unicodeio.c (<errno.h>): Include it.
25804         (errno): Declare if not defined.
25805
25806         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
25807
25808         * lib/config.charset: New version, incorporating remarks from a linux
25809         i18n mailing list.  From Bruno Haible.
25810
25811 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
25812
25813         * m4/codeset.m4: New file.
25814         * m4/iconv.m4: New file.
25815         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
25816
25817 2000-03-03  Jim Meyering  <meyering@lucent.com>
25818
25819         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
25820
25821 2000-03-02  Jim Meyering  <meyering@lucent.com>
25822
25823         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
25824         the messages come out on separate lines.
25825
25826         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
25827         rather than jm_CHECK_DECLARATIONS.
25828         * m4/decl.m4: Remove now-unused file.
25829
25830         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
25831         geteuid.
25832
25833 2000-03-02  Jim Meyering  <meyering@lucent.com>
25834
25835         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
25836
25837 2000-03-01  Jim Meyering  <meyering@lucent.com>
25838
25839         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
25840         * lib/unicodeio.c: Likewise.
25841
25842 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
25843
25844         * lib/config.charset: New file.
25845         * lib/localcharset.c: New file.
25846         * lib/unicodeio.h, lib/unicodeio.c: New files.
25847         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
25848         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
25849         (noinst_HEADERS): Add unicodeio.h.
25850         (all-local, install-exec-local, charset.alias): New targets.
25851
25852 2000-02-28  Paul Eggert  <eggert@twinsun.com>
25853
25854         * lib/quotearg.c (ALERT_CHAR): New macro.
25855         (quotearg_buffer_restyled): Use it.
25856
25857 2000-02-27  Jim Meyering  <meyering@lucent.com>
25858
25859         * m4/check-decl.m4: Add getenv to the list.
25860
25861 2000-02-27  Jim Meyering  <meyering@lucent.com>
25862
25863         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
25864         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
25865
25866         * lib/backupfile.c: Guard inclusion of stdlib.h with
25867         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
25868         Declare malloc if needed.
25869
25870         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
25871         `#ifndef HAVE_DECL..'
25872         now that autoconf always defines the HAVE_DECL_ symbols.
25873         * lib/human.c: Likewise.
25874         * lib/same.c: Likewise.
25875         * lib/strtoumax.c: Likewise.
25876
25877         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
25878         declaration check was not run.
25879         * lib/hash.c: Likewise.
25880         * lib/human.c: Likewise.
25881         * lib/same.c: Likewise.
25882         * lib/strtoumax.c: Likewise.
25883
25884         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
25885         `.', then first look up the entire `.'-containing string as a login
25886         name.
25887
25888 2000-02-23  Jim Meyering  <meyering@lucent.com>
25889
25890         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
25891         in place of my hack.
25892
25893 2000-02-18  Paul Eggert  <eggert@twinsun.com>
25894
25895         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
25896         (textint): New typedef.
25897         (parser_control): Member year changed from int to textint.
25898         All uses changed.
25899         (YYSTYPE): Removed; replaced by %union with int and textint members.
25900         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
25901         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
25902         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
25903         (tSNUMBER, tUNUMBER): Now of type <textintval>.
25904         (date, number, to_year): Use width of number in digits, not its value,
25905         to determine whether it's a 2-digit year, or a 2-digit time.
25906         (yylex): Store number of digits of numeric tokens.
25907         Reported by John Kendall.
25908
25909         (parser_control): Changed from struct parser_control to typedef (for
25910         consistency).  All uses changed.
25911
25912         (tID): Removed; not used.
25913         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
25914
25915 2000-02-14  Paul Eggert  <eggert@twinsun.com>
25916
25917         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
25918         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
25919
25920 2000-02-12  Jim Meyering  <meyering@lucent.com>
25921
25922         * lib/userspec.c (ISDIGIT): Define it.
25923         (isdigit): Remove definition.
25924         (is_number): Use ISDIGIT, not isdigit.
25925         <libintl.h>: Include.
25926         (_ and N_): Define.
25927         (parse_user_spec): Mark translatable strings.
25928
25929 2000-02-10  Jim Meyering  <meyering@lucent.com>
25930
25931         With these changes, nanosleep.[ch] are finally enough like the other
25932         lib/* replacement files to compile on a few more losing systems.
25933
25934         * lib/nanosleep.h: Don't include config.h.
25935         Remove prototype from declaration of nanosleep.
25936         (PARAMS): Remove now-unneeded definition.
25937         * lib/nanosleep.c: #undef nanosleep.
25938         (rpl_nanosleep): Rename from nanosleep.
25939
25940 2000-02-10  Jim Meyering  <meyering@lucent.com>
25941
25942         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
25943         gnu_nanosleep to rpl_nanosleep.
25944
25945 2000-02-09  Jim Meyering  <meyering@lucent.com>
25946
25947         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
25948         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
25949
25950 2000-02-08  Akim Demaille  <akim@epita.fr>
25951
25952         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
25953         `[' and `]' and remove uses of `changequote'.
25954         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
25955         (AC_SYS_LARGEFILE): Likewise.
25956         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
25957         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
25958         of changequote.
25959         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
25960         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
25961         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
25962         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
25963
25964 2000-02-05  Jim Meyering  <meyering@lucent.com>
25965
25966         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
25967         Remove explicit use of AC_HEADER_TIME.  It is required by
25968         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
25969         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
25970         in autoconf whereby the expansion of the latter ended up preceding
25971         the expansion of its prerequisite, AC_HEADER_TIME.
25972         Reported by Volker Borchert.
25973
25974 2000-02-03  Jim Meyering  <meyering@lucent.com>
25975
25976         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
25977
25978 2000-02-03  Jim Meyering  <meyering@lucent.com>
25979
25980         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
25981         rather than with `#if HAVE_UTMPNAME'.
25982
25983 2000-02-02  Jim Meyering  <meyering@lucent.com>
25984
25985         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
25986         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
25987         Reported by Eli Zaretskii.
25988
25989 2000-02-01  Jim Meyering  <meyering@lucent.com>
25990
25991         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
25992
25993 2000-01-31  Jim Meyering  <meyering@lucent.com>
25994
25995         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
25996         functions.  Add the time.h and sys/time.h headers along with the
25997         AC_REQUIRE'ment of AC_HEADER_TIME.
25998
25999 2000-01-31  Jim Meyering  <meyering@lucent.com>
26000
26001         * lib/nanosleep.h (nanosleep): Guard declaration with
26002         `#if ! HAVE_DECL_NANOSLEEP'.
26003         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
26004         the declaration in that vendor's sys/timers.h.
26005         Reported by Christian Krackowizer.
26006
26007         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
26008         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
26009         (ISPRINT): Likewise.
26010         Reported by Tom Tromey.
26011
26012 2000-01-30  Jim Meyering  <meyering@lucent.com>
26013
26014         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
26015
26016         * m4/prereq.m4 (utmp_includes): Define.
26017         Check for ut_user and ut_name members in both struct utmpx
26018         and struct utmp.
26019
26020 2000-01-30  Jim Meyering  <meyering@lucent.com>
26021
26022         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
26023         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
26024         header files where only utmpx.ut_user is declared.
26025
26026         * lib/readutmp.h (UT_USER): Define.
26027
26028 2000-01-29  Jim Meyering  <meyering@lucent.com>
26029
26030         * m4/lib-check.m4: New file containing library-related checks from
26031         fileutils and sh-utils (textutils had none).
26032
26033 2000-01-28  Jim Meyering  <meyering@lucent.com>
26034
26035         * m4/perl.m4: Change format of warning message to look more like that
26036         from the missing script.  Suggestion from François Pinard.
26037
26038 2000-01-25  Jim Meyering  <meyering@lucent.com>
26039
26040         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
26041         well as time.h in the compile check.
26042         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
26043         Fix typo in cross-compiling case: s/yes/no/.
26044
26045 2000-01-23  Jim Meyering  <meyering@lucent.com>
26046
26047         * m4/jm-macros.m4: Move df-related tests here from
26048         fileutils/configure.in
26049
26050         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
26051         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
26052
26053         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
26054         s/space/ac_fsusage_space/.
26055         (jm_FILE_SYSTEM_USAGE): Take two parameters.
26056
26057         * m4/ftruncate.m4: New file (derived from part of
26058         fileutils/configure.in).
26059         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
26060         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
26061
26062         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
26063         AC_SUBST these here, rather than just in sh-util/configure.in, so
26064         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
26065         all the same.
26066         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
26067         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
26068         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
26069         (AC_SUBST(POW_LIBM)): Likewise.
26070         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
26071
26072 2000-01-23  Jim Meyering  <meyering@lucent.com>
26073
26074         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
26075         obstack.c.
26076
26077 2000-01-22  Jim Meyering  <meyering@lucent.com>
26078
26079         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
26080
26081         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
26082
26083         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
26084         configure.in
26085         (AC_CHECK_HEADERS): Likewise for sh-utils.
26086         (AC_CHECK_HEADERS): Likewise for textutils.
26087         Merge the three lists of headers.
26088
26089         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
26090         from fileutils' configure.in.
26091
26092         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
26093         code. Moved tests into their own function (_jm_DECL_HEADERS) in
26094         check-decl.m4.
26095
26096         * m4/check-decl.m4: Use #if rather than #ifdef.
26097         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
26098         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
26099         (_jm_DECL_HEADERS): Define new function.
26100         (jm_CHECK_DECLARATIONS): Require it.
26101
26102 2000-01-22  Jim Meyering  <meyering@lucent.com>
26103
26104         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
26105         [! HAVE_DECL_STRTOULL]: Declare strtoull.
26106         Required for some AIX systems.  Reported by Christian Krackowizer.
26107         [TESTING] (main): New function.
26108
26109         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
26110         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
26111         letters.
26112
26113         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
26114         iswprint.
26115
26116         * lib/strverscmp.c (ISDIGIT): Define.
26117         (strverscmp): Use ISDIGIT, not isdigit.
26118
26119 2000-01-19  Jim Meyering  <meyering@lucent.com>
26120
26121         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
26122         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
26123         defines `struct timespec' in <sys/time.h>
26124
26125         * m4/c-bs-a.m4: Remove uses of changequote altogether.
26126         Thanks to Akim for explaining.
26127
26128 2000-01-17  Paul Eggert  <eggert@twinsun.com>
26129
26130         * lib/nanosleep.c (nanosleep):
26131         Don't use SA_INTERRUPT to decide whether to call sigaction, as
26132         POSIX.1 doesn't require SA_INTERRUPT and some systems
26133         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
26134         it's been part of POSIX.1 since day 1 (in 1988).
26135
26136 2000-01-17  Jim Meyering  <meyering@lucent.com>
26137
26138         * lib/interlock: Remove unused file.  Reported by François Pinard.
26139
26140 2000-01-16  Paul Eggert  <eggert@twinsun.com>
26141
26142         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
26143         alert, backslash, formfeed, and vertical tab unnecessarily in
26144         shell quoting style.
26145
26146 2000-01-16  Jim Meyering  <meyering@lucent.com>
26147
26148         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
26149         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
26150         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
26151         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
26152
26153 2000-01-16  Jim Meyering  <meyering@lucent.com>
26154
26155         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
26156         because the latter didn't work.
26157
26158 2000-01-15  Jim Meyering  <meyering@lucent.com>
26159
26160         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
26161         (AC_REPLACE_FUNCS): Add memcpy and memset.
26162         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
26163         Add strpbrk.
26164         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
26165
26166 2000-01-12  Jim Meyering  <meyering@lucent.com>
26167
26168         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
26169         (jm_PREREQ): Use it.
26170         (jm_PREREQ_READUTMP): New macro.
26171         (jm_PREREQ): Use it.
26172
26173 2000-01-11  Paul Eggert  <eggert@twinsun.com>
26174
26175         Quote multibyte characters correctly.
26176         * m4/c-bs-a.m4: New file.
26177         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
26178         (jm_PREREQ): Use it.
26179
26180 2000-01-11  Paul Eggert  <eggert@twinsun.com>
26181
26182         * m4/uintmax_t.m4: Port to autoconf 2.13.
26183
26184 2000-01-08  Jim Meyering  <meyering@ascend.com>
26185
26186         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
26187         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
26188
26189 2000-01-04  Jim Meyering  <meyering@ascend.com>
26190
26191         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
26192         jm_STRUCT_DIRENT_D_TYPE.
26193         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
26194         jm_STRUCT_DIRENT_D_INO.
26195         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
26196         jm_STRUCT_UTIMBUF.
26197         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
26198         renamings.
26199         * m4/utime.m4: Likewise.
26200
26201         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
26202         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
26203
26204 2000-01-03  Paul Eggert  <eggert@twinsun.com>
26205
26206         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
26207         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
26208
26209 2000-01-02  Jim Meyering  <meyering@ascend.com>
26210
26211         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
26212         remember if this is necessary.
26213
26214 1999-12-26  Jim Meyering  <meyering@ascend.com>
26215
26216         * m4/jm-macros.m4: Use it here.
26217         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
26218
26219 1999-12-23  Jim Meyering  <meyering@ascend.com>
26220
26221         * m4/jm-macros.m4: Check for clock_gettime (moved from
26222         fileutils/configure.in)
26223         Check for gettimeofday.
26224
26225 1999-12-20  Jim Meyering  <meyering@ascend.com>
26226
26227         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
26228         autoconf-2.14a-1999-12-20.
26229
26230 1999-12-19  Jim Meyering  <meyering@ascend.com>
26231
26232         * m4/lstat-slash.m4: New file.
26233         * m4/jm-macros.m4: Use the new macro:
26234         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
26235
26236 1999-12-07  Jim Meyering  <meyering@ascend.com>
26237
26238         * m4/perl.m4: Require that File::Compare be available, too.
26239         Too many systems seem to lack it.
26240
26241         * m4/strftime.m4: Add checks for most of the cpp macros tested in
26242         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
26243
26244 1999-11-18  Paul Eggert  <eggert@twinsun.com>
26245
26246         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
26247         problem with the QNX 4.25 shell, which doesn't propagate exit
26248         status of failed commands inside shell assignments.
26249
26250 1999-11-17  Jim Meyering  <meyering@ascend.com>
26251
26252         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
26253
26254 1999-11-07  Jim Meyering  <meyering@ascend.com>
26255
26256         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
26257
26258 1999-11-06  Jim Meyering  <meyering@ascend.com>
26259
26260         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
26261         * m4/jm-macros.m4 (jm_MACROS): Use it here.
26262
26263 1999-11-05  Jim Meyering  <meyering@ascend.com>
26264
26265         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
26266         configure.in of textutils, fileutils, and sh-utils into this one
26267         (shared between those packages) file.
26268         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
26269         AC_STRUCT_ST_BLKSIZE.
26270
26271 1999-11-03  Jim Meyering  <meyering@ascend.com>
26272
26273         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
26274         of AC_CHECK_TYPE checks includes unistd.h.
26275         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
26276         Suggestion from Akim Demaille.
26277
26278 1999-10-30  Jim Meyering  <meyering@ascend.com>
26279
26280         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
26281         m4-quoted string.
26282         * m4/ls-mntd-fs.m4: Likewise.
26283         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
26284         * m4/jm-winsz1.m4: Likewise.
26285
26286         * m4/const.m4: Remove file, since the fix made it into the experimental
26287         version of autoconf.
26288         * m4/mktime.m4: Likewise.
26289
26290         * m4/check-type.m4: Remove file, now that the latest version of
26291         AC_CHECK_TYPE takes a third arg to specify additional #includes.
26292
26293         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
26294         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
26295         AC_CHECK_TYPE.
26296
26297 1999-10-04  Jim Meyering  <meyering@ascend.com>
26298
26299         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
26300
26301 1999-09-22  Paul Eggert  <eggert@twinsun.com>
26302
26303         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
26304         2.95.1 bug with HP-UX 10.20.
26305
26306 1999-09-17  Jim Meyering  <meyering@ascend.com>
26307
26308         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
26309         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
26310         due to missing strdup (against sh-utils-2.0).
26311
26312 1999-08-29  Jim Meyering  <meyering@ascend.com>
26313
26314         * m4/jm-macros.m4: Require jm_BISON.
26315         * m4/bison.m4: New file.
26316
26317 1999-08-17  Paul Eggert  <eggert@twinsun.com>
26318
26319         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
26320         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
26321
26322 1999-08-05  Jim Meyering  <meyering@ascend.com>
26323
26324         * m4/getline.m4: Rename test file from conftestdata to conftest.data
26325         to avoid conflicts with `conftest' on 8+3 filesystems.
26326         Suggestion from Eli Zaretskii.
26327
26328 1999-08-04  Jim Meyering  <meyering@ascend.com>
26329
26330         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
26331         fileutils and sh-utils (textutils's getline test was inadequate).
26332         (AM_FUNC_GETLINE): Run this test.
26333         (AC_CHECK_FUNCS): Check for getdelim.
26334         Reported by Bob Proulx.
26335
26336 1999-08-02  Jim Meyering  <meyering@ascend.com>
26337
26338         * m4/jm-macros.m4: Add a comment.
26339
26340 1999-08-01  Paul Eggert  <eggert@twinsun.com>
26341
26342         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
26343         <inttypes.h> defines strtoumax as a macro (and not as a
26344         function).
26345
26346 1999-08-01  Paul Eggert  <eggert@twinsun.com>
26347
26348         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
26349         that we can shift, multiply and divide unsigned long long
26350         values; Ultrix cc can't do it.
26351
26352 1999-08-01  Paul Eggert  <eggert@twinsun.com>
26353
26354         * m4/mktime.m4: New file, which is a preview of what should appear
26355         in the next public autoconf release.
26356
26357 1999-08-01  Paul Eggert  <eggert@twinsun.com>
26358
26359         * m4/lfs.m4: Remove this file.
26360         * m4/largefile.m4: New file.  It contains the old contents of
26361         lfs.m4, except that all names with prefix AC_LFS have been
26362         changed to use the prefix AC_SYS_LARGEFILE instead, to be
26363         compatible with future autoconf versions.  Also, some minor m4
26364         quoting problems have been fixed.
26365
26366 1999-08-01  Paul Eggert  <eggert@twinsun.com>
26367
26368         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
26369         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
26370         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
26371         and simplify the shell code.
26372
26373 1999-08-01  Jim Meyering  <meyering@ascend.com>
26374
26375         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
26376         m4.
26377
26378 1999-07-20  Jim Meyering  <meyering@ascend.com>
26379
26380         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
26381
26382 1999-07-15  Jim Meyering  <meyering@ascend.com>
26383
26384         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
26385
26386 1999-05-22  Jim Meyering  <meyering@ascend.com>
26387
26388         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
26389
26390 1999-05-20  Jim Meyering  <meyering@ascend.com>
26391
26392         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
26393         Add a colon after each `then' in case $4 is empty.
26394
26395 1999-05-16  Jim Meyering  <meyering@ascend.com>
26396
26397         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
26398
26399 1999-05-10  Jim Meyering  <meyering@ascend.com>
26400
26401         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
26402
26403         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
26404         AC_FUNC_MKTIME.
26405
26406 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
26407
26408         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
26409
26410 1999-05-04  Paul Eggert  <eggert@twinsun.com>
26411
26412         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
26413         not CPPFLAGS, so that linking works correctly in IRIX.
26414
26415 1999-04-30  Paul Eggert  <eggert@twinsun.com>
26416
26417         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
26418
26419 1999-04-20  Paul Eggert  <eggert@twinsun.com>
26420
26421         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
26422         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
26423         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
26424         jm_AC_TYPE_UNSIGNED_LONG_LONG.
26425         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
26426
26427         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
26428
26429 1999-04-20  Jim Meyering  <meyering@ascend.com>
26430
26431         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
26432         AC_REPLACE xstroull if necessary.  From Paul Eggert.
26433         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
26434
26435 1999-04-18  Jim Meyering  <meyering@ascend.com>
26436
26437         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
26438         * m4/jm-macros.m4: Use it.
26439
26440 1999-04-06  Jim Meyering  <meyering@ascend.com>
26441
26442         * m4/strftime.m4: Remove test for %f.
26443
26444 1999-03-29  Jim Meyering  <meyering@ascend.com>
26445
26446         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
26447         superset of the AC_TYPE_* checks in the textutils, fileutils,
26448         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
26449         AC_TYPE_PID_T.
26450
26451 1999-03-28  Jim Meyering  <meyering@ascend.com>
26452
26453         * m4/jm-macros.m4: Define GNU_PACKAGE here.
26454         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
26455         replaced e.g., in the *.sh files of the sh-utils.
26456
26457 1999-03-20  Jim Meyering  <meyering@ascend.com>
26458
26459         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
26460         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
26461         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
26462
26463 1999-03-19  Jim Meyering  <meyering@ascend.com>
26464
26465         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
26466
26467 1999-03-12  Jim Meyering  <meyering@ascend.com>
26468
26469         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
26470
26471 1999-03-07  Jim Meyering  <meyering@ascend.com>
26472
26473         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
26474         declared.
26475
26476 1999-02-17  Jim Meyering  <meyering@ascend.com>
26477
26478         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
26479         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
26480
26481 1999-02-07  Jim Meyering  <meyering@ascend.com>
26482
26483         * m4/group-member.m4: New file -- extracted from sh-utils'
26484         configure.in.
26485
26486         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
26487         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
26488
26489 1999-02-06  Jim Meyering  <meyering@ascend.com>
26490
26491         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
26492         * m4/fnmatch.m4: Likewise.
26493         * m4/getgroups.m4: Likewise.
26494         * m4/lstat.m4: Likewise.
26495         * m4/malloc.m4: Likewise.
26496         * m4/putenv.m4: Likewise.
26497         * m4/realloc.m4: Likewise.
26498         * m4/regex.m4: Likewise.
26499         * m4/stat.m4: Likewise.
26500         * m4/strftime.m4: Likewise.
26501         Suggestion from Alain Magloire.
26502
26503         * m4/chown.m4: Use `.$ac_objext', not `.o'.
26504         * m4/fnmatch.m4: Likewise.
26505         * m4/getgroups.m4: Likewise.
26506         * m4/getline.m4: Likewise.
26507         * m4/lstat.m4: Likewise.
26508         * m4/malloc.m4: Likewise.
26509         * m4/memcmp.m4: Likewise.
26510         * m4/putenv.m4: Likewise.
26511         * m4/realloc.m4: Likewise.
26512         * m4/regex.m4: Likewise.
26513         * m4/stat.m4: Likewise.
26514         * m4/strftime.m4: Likewise.
26515         Suggestion from Alain Magloire.
26516
26517         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
26518         an argument.
26519
26520         * m4/regex.m4: Add a run-time Test for proper operation of
26521         re_compile_pattern.
26522
26523 1999-01-31  Jim Meyering  <meyering@ascend.com>
26524
26525         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
26526
26527 1999-01-30  Jim Meyering  <meyering@ascend.com>
26528
26529         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
26530
26531         * m4/jm-mktime.m4: Make this a wrapper around the official
26532         AM_FUNC_MKTIME rather than my private copy, now that the official one
26533         is up to date.
26534         * m4/mktime.m4: Remove file.
26535
26536         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
26537         * m4/uptime.m4: Likewise.
26538         * m4/uintmax_t.m4: Likewise.
26539
26540 1999-01-28  Jim Meyering  <meyering@ascend.com>
26541
26542         * m4/jm-macros.m4: Use jm_AFS.
26543         * m4/afs.m4: New file (from fileutils' configure.in).
26544
26545         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
26546         * m4/chown.m4: Likewise.
26547         * m4/d-ino.m4: Likewise.
26548         * m4/d-type.m4: Likewise.
26549         * m4/fnmatch.m4: Likewise.
26550         * m4/getgroups.m4: Likewise.
26551         * m4/gettext.m4: Likewise.
26552         * m4/jm-mktime.m4: Likewise.
26553         * m4/jm-winsz2.m4: Likewise.
26554         * m4/lcmessage.m4: Likewise.
26555         * m4/ls-mntd-fs.m4: Likewise.
26556         * m4/malloc.m4: Likewise.
26557         * m4/memcmp.m4: Likewise.
26558         * m4/putenv.m4: Likewise.
26559         * m4/realloc.m4: Likewise.
26560         * m4/st_mtim.m4: Likewise.
26561         * m4/strftime.m4: Likewise.
26562
26563 1999-01-16  Jim Meyering  <meyering@ascend.com>
26564
26565         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
26566         (ARGMATCH_DIE_DECL): Define.
26567
26568 1999-01-12  Jim Meyering  <meyering@ascend.com>
26569
26570         * m4/Makefile.am.in: Rewrite to avoid using fmt.
26571         Reported by Lars Hecking.
26572
26573 1999-01-10  Jim Meyering  <meyering@ascend.com>
26574
26575         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
26576         gross kludge.
26577         * m4/inttypes_h.m4: Likewise.
26578         * m4/lstat.m4: Likewise.
26579         * m4/malloc.m4: Likewise.
26580         * m4/readdir.m4: Likewise.
26581         * m4/realloc.m4: Likewise.
26582         * m4/st_dm_mode.m4: Likewise.
26583         * m4/stat.m4: Likewise.
26584         * m4/utimbuf.m4: Likewise.
26585         * m4/utimes.m4: Likewise.
26586
26587         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
26588         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
26589         comments in config.h.in are meaningful.
26590
26591         * m4/jm-macros.m4: Require autoconf-2.13 here.
26592
26593         * m4/regex.m4: By default, don't use the included regex.c on systems
26594         with glibc 2.  Suggestion from Uli Drepper.
26595
26596 1999-01-02  Jim Meyering  <meyering@ascend.com>
26597
26598         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
26599
26600 1998-12-18  Jim Meyering  <meyering@ascend.com>
26601
26602         * m4/Makefile.am.in (Makefile.am): Simplify rule.
26603         Based on a suggestion from Lars Hecking.
26604
26605 1998-11-16  Paul Eggert  <eggert@twinsun.com>
26606
26607         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
26608
26609 1998-11-16  Jim Meyering  <meyering@ascend.com>
26610
26611         * m4/lfs.m4: Double-quote the `uname...` expression.
26612
26613 1998-11-14  Jim Meyering  <meyering@ascend.com>
26614
26615         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
26616         * m4/stat.m4: Likewise.
26617
26618 1998-11-03  Jim Meyering  <meyering@ascend.com>
26619
26620         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
26621         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
26622
26623 1998-10-18  Jim Meyering  <meyering@ascend.com>
26624
26625         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
26626
26627 1998-10-17  Jim Meyering  <meyering@ascend.com>
26628
26629         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
26630         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
26631         calls for those previously hard-coded headers.  Instead, take a new
26632         parameter.
26633         (jm_CHECK_DECLARATIONS): Reflect interface change.
26634         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
26635         (jm_CHECK_DECL_LOCALTIME_R): New macro.
26636
26637         * m4/mktime.m4: Test for spring-forward gap before long-running test.
26638
26639 1998-10-14  Jim Meyering  <meyering@ascend.com>
26640
26641         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
26642         instead of "TZ=America/Vancouver".  From Paul Eggert.
26643
26644 1998-10-11  Jim Meyering  <meyering@ascend.com>
26645
26646         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
26647         This adds a test for a recently added compatibility fix for mktime.c.
26648         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
26649
26650 1998-09-27  Jim Meyering  <meyering@ascend.com>
26651
26652         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
26653
26654         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
26655         ../configure.in, including a change from Gordon Matzigkeit to allow
26656         cross-compiling for the Hurd.
26657
26658         * m4/glibc.m4: New file/macro to test for the GNU C Library
26659         versions 1 and 2.  From Gordon Matzigkeit.
26660         Indent.
26661
26662 1998-09-21  Jim Meyering  <meyering@ascend.com>
26663
26664         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
26665
26666 1998-08-18  Paul Eggert  <eggert@twinsun.com>
26667
26668         Port nanosecond-resolution times to UnixWare 2.1.2 and
26669         pedantic Solaris 2.6.
26670
26671         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
26672         AC_STRUCT_ST_MTIM.
26673         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
26674         Generate name of ns member, instead of just 1 or undef.
26675         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
26676
26677 1998-08-15  Jim Meyering  <meyering@ascend.com>
26678
26679         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
26680         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
26681         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
26682         instead of jm_TYPE_SSIZE_T.
26683
26684 1998-08-12  Jim Meyering  <meyering@ascend.com>
26685
26686         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
26687
26688 1998-08-02  Jim Meyering  <meyering@ascend.com>
26689
26690         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
26691         in acconfig.h manually.
26692
26693 1998-07-31  Paul Eggert  <eggert@twinsun.com>
26694
26695         * m4/st_mtim.m4: New file.
26696
26697 1998-07-28  Jim Meyering  <meyering@ascend.com>
26698
26699         * m4/utimes.m4: Undef stat.
26700
26701 1998-07-25  Jim Meyering  <meyering@ascend.com>
26702
26703         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
26704         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
26705
26706 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
26707
26708         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
26709         uid and gid actually remain unchanged.
26710
26711 1998-07-07  Jim Meyering  <meyering@ascend.com>
26712
26713         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
26714
26715 1998-07-04  Jim Meyering  <meyering@ascend.com>
26716
26717         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
26718         to prove that this macro can be used in packages without regex.c.
26719
26720 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
26721
26722         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
26723         is to be used.
26724
26725 1998-07-03  Jim Meyering  <meyering@ascend.com>
26726
26727         * m4/gettext.m4: Add -lintl if it's found to be necessary.
26728
26729         * m4/gettext.m4: New file -- from gettext-0.10.35.
26730         * m4/lcmessage.m4: Likewise.
26731         * m4/progtest.m4: Likewise.
26732
26733         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
26734         * m4/jm-macros.m4: Require the new macro.
26735
26736 1998-06-29  Jim Meyering  <meyering@ascend.com>
26737
26738         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
26739         for the definition of NGROUPS (used in a system header included
26740         by sys/mount.h).
26741
26742 1998-06-28  Jim Meyering  <meyering@ascend.com>
26743
26744         * m4/ls-mntd-fs.m4: New file.
26745         * m4/fstypename.m4: New file.
26746
26747         * m4/jm-macros.m4: Require the new macro.
26748         * m4/jm-glibc-io.m4: New file.
26749
26750 1998-05-19  Jim Meyering  <meyering@ascend.com>
26751
26752         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
26753         * m4/lchown.m4: New file.
26754
26755         * m4/Makefile.am.in: New file.
26756         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
26757
26758 1998-05-14  Jim Meyering  <meyering@ascend.com>
26759
26760         * m4/Makefile.am (EXTRA_DIST): Add them.
26761         * m4/jm-macros.m4: New file.
26762         * m4/utimbuf.m4: New file.
26763
26764 1998-05-12  Jim Meyering  <meyering@ascend.com>
26765
26766         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
26767
26768 1998-05-11  Jim Meyering  <meyering@ascend.com>
26769
26770         * m4/isc-posix.m4: New file.
26771
26772 1998-05-10  Jim Meyering  <meyering@ascend.com>
26773
26774         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
26775
26776 1998-05-09  Jim Meyering  <meyering@ascend.com>
26777
26778         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
26779         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
26780         with automake.
26781
26782         * m4/ssize_t.m4: New file.
26783         * m4/mktime.m4: Remove file -- the new automake has this now.
26784
26785 1998-04-26  Jim Meyering  <meyering@ascend.com>
26786
26787         * m4/assert.m4: New file.
26788         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
26789
26790 1998-04-05  Jim Meyering  <meyering@ascend.com>
26791
26792         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
26793         (jm_PREREQ): Use it here.
26794
26795 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
26796
26797         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
26798         in acconfig.h.
26799
26800 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
26801
26802         * m4/prereq.m4: New file.
26803         * m4/error.m4: New file.
26804         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
26805
26806 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
26807
26808         * m4/getline.m4: Don't set am_cv_func_working_getline before the
26809         cache-check for the same variable -- that defeated the purpose of
26810         the test; the test program was never run.  This was a problem only
26811         on systems with losing getline functions -- HP-UX 10.20 is one.
26812         Reported by Bjorn Helgaas.
26813
26814 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
26815
26816         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
26817
26818 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
26819
26820         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
26821
26822         * m4/const.m4: New file.  Use an initializer in this declaration
26823         typedef int charset[2]; const charset x;
26824         Reported by Bob Glickstein.
26825
26826 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
26827
26828         * m4/chown.m4: Fix reversed types on -1 args to chown.
26829         From Kaveh Ghazi.
26830
26831 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
26832
26833         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
26834         Add lseek and memchr.
26835
26836         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
26837         T.E.Dickey <dickey@clark.net> said that some older preprocessors
26838         have a 20-character limit on names.
26839
26840 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
26841
26842         * m4/inttypes_h.m4: New file.
26843         * m4/uintmax_t.m4: New file.
26844         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
26845
26846 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
26847   Free Software Foundation, Inc.
26848 Copying and distribution of this file, with or without modification,
26849 are permitted provided the copyright notice and this notice are preserved.