9222f8b0598dcc365f7aeed3257f47db848889fc
[gnulib.git] / ChangeLog
1 2007-02-14  Paul Eggert  <eggert@cs.ucla.edu>
2
3         Fix regex code so it doesn't rely on strcasecmp.
4         * lib/regex_internal.h: Include <langinfo.h> only if _LIBC is defined.
5         Otherwise, include gnulib's langinfo.h.
6         * lib/regcomp.c (init_dfa): Don't use strcasecmp, as it can have
7         undesirable behavior in non-C locales.  Instead, rely on localecharset.
8         * m4/regex.m4 (gl_PREREQ_REGEX): Don't require AM_LANGINFO_CODESET.
9         * modules/regex (FILES): Remove m4/codeset.m4.
10         (Depends-on): Add localcharset.  Remove strcase.
11
12 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13
14         * m4/unlinkdir.m4 (gl_UNLINKDIR): Fix m4 quoting bug.
15         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Likewise.
16
17 2007-02-13  Bruno Haible  <bruno@clisp.org>
18
19         * m4/intdiv0.m4 (gt_INTDIV0): Assume ANSI C. Fix underquoting bug.
20         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
21
22 2007-02-12  Bruno Haible  <bruno@clisp.org>
23
24         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
25         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): If
26         GNULIB_POSIXCHECK and the gnulib module not enabled, provoke a link-
27         time warning rather than a link error.
28
29 2007-02-12  Bruno Haible  <bruno@clisp.org>
30
31         * m4/locale-fr.m4 (gt_LOCALE_FR): Fix m4 quoting bug.
32         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
33         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
34
35 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
36
37         * lib/string_.h (strncasecmp): Fix typo: this macro takes 3
38         args, not 2.
39
40 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
41
42         New module 'time', so that apps can include <time.h> as per
43         POSIX and GNU instead of separate include files like time_r.h
44         and timegm.h.  This implementation tries out a simpler approach
45         for replacing decls in standard include files (as compared to
46         the string module), somewhat as an experiment.
47
48         * config/srclist.txt: Comment out mktime.c for now.
49         * doc/gnulib-tool.texi (Initial import): Don't use time_r as an example
50         since it doesn't apply any more.  Use generic wording instead.
51         * MODULES.html.sh (Support for systems lacking POSIX:2001): New module
52         'time'.
53         * lib/time_.h, m4/time_h.m4, modules/time: New files.
54         * lib/strptime.h, lib/time_r.h, lib/timegm.h: Remove.
55         * lib/mktime.c: Include config.h depending on _LIBC, not HAVE_CONFIG_H.
56         Don't include <sys/types.h>; no longer needed since we assume C89.
57         * lib/mktime.c: Don't include "time_r.h"; no longer needed.
58         * lib/strftime.c: Likewise.
59         * lib/time_r.c: Likewise.
60         * lib/nanosleep.c (nanosleep): #undef after include files, not before.
61         * lib/nanosleep.c: Include <time.h> first, to check interface.
62         * lib/strptime.c: Likewise.
63         * lib/time_r.c: Likewise.
64         * lib/timegm.c: Likewise.
65         * lib/strptime.c: Don't include strptime.h or time_r.h; no longer
66         needed.
67         * lib/timegm.c: Don't include timegm.h; no longer needed.
68         * lib/timespec.h: Don't include <sys/time.h> before <time.h>;
69         time.h now handles any problems in that area.
70         (struct timespec, nanosleep): Remove; time.h now arranges for these.
71         * lib/xnanosleep.c: Don't include timespec.h; no longer needed now
72         that time.h defines struct timespec.
73         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check that nanosleep is declared.
74         Set REPLACE_NANOSLEEP.  Don't AC_DEFINE nanosleep; the time module now
75         handles that.
76         * m4/strptime.m4 (gl_FUNC_STPRTIME): Set REPLACE_STRPTIME.
77         * m4/time_r.m4 (gl_TIME_R): Don't define HAVE_TIME_R_POSIX; no longer
78         needed.  Set REPLACE_LOCALTIME.
79         * m4/timegm.m4 (gl_FUNC_TIMEGM): Set REPLACE_TIMEGM.
80         * m4/timespec.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Move to time_h.m4.
81         (gl_TIMESPEC): Don't check for sys/time.h or struct timespec or
82         nanosleep; time_h.m4 now does that.  Don't require
83         gl_USE_SYSTEM_EXTENSIONS; no longer needed directly, and the time
84         module handles this now.
85         * modules/getdate (Depends-on): Remove timespec.  Add time.
86         * modules/nanosleep (Depends-on): Likewise.
87         * modules/stat-time (Depends-on): Likewise.
88         * modules/nanosleep (Include): Include time.h, not timespec.h.
89         * modules/strptime (Files): Remove lib/strptime.h.
90         (Depends-on): Add extensions, time.
91         (Include): Include time.h, not strptime.h.
92         * modules/time_r (Files): Remove lib/time_r.h.
93         (Depends-on): Add time.
94         (Include): Include time.h, not time_r.h.
95         * modules/timegm: Likewise.
96         * modules/timespec (Description): Now does timespec-related decls
97         of our own, instead of struct timespec itself.
98         (Depends-on): Add time; remove extensions.
99         (Maintainer): Add self.
100         * modules/utimecmp (Depends-on): Add time; remove timespec.
101         * modules/utimens (Depends-on): Likewise.
102         * modules/xnanosleep (Depends-on): Likewise.
103
104 2007-02-11  Bruno Haible  <bruno@clisp.org>
105
106         * lib/c-strstr.c: Include allocsa.h.
107         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
108         * lib/c-strcasestr.c: Include allocsa.h.
109         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
110         * lib/strcasestr.c: Include allocsa.h.
111         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
112         * lib/mbsstr.c: Include allocsa.h.
113         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
114         allocsa/freesa instead of malloc/free.
115         * lib/mbscasestr.c: Include allocsa.h.
116         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
117         allocsa/freesa instead of malloc/free.
118         * modules/c-strstr (Depends-on): Add allocsa.
119         * modules/c-strcasestr (Depends-on): Likewise.
120         * modules/strcasestr (Depends-on): Likewise.
121         * modules/mbsstr (Depends-on): Likewise.
122         * modules/mbscasestr (Depends-on): Likewise.
123
124 2007-02-11  Bruno Haible  <bruno@clisp.org>
125
126         * lib/mbsspn.c (mbsspn): Fix bug. Remove unnecessary strlen call.
127
128         * modules/mbsspn-tests: New file.
129         * tests/test-mbsspn.sh: New file.
130         * tests/test-mbsspn.c: New file.
131
132 2007-02-11  Bruno Haible  <bruno@clisp.org>
133
134         * lib/mbspbrk.c (mbspbrk): Remove unneeded cast.
135
136         * modules/mbspbrk-tests: New file.
137         * tests/test-mbspbrk.sh: New file.
138         * tests/test-mbspbrk.c: New file.
139
140 2007-02-11  Bruno Haible  <bruno@clisp.org>
141
142         * lib/mbscspn.c (mbscspn): Remove unnecessary strlen call and
143         unneeded cast.
144
145         * modules/mbscspn-tests: New file.
146         * tests/test-mbscspn.sh: New file.
147         * tests/test-mbscspn.c: New file.
148
149 2007-02-11  Bruno Haible  <bruno@clisp.org>
150
151         * modules/mbscasecmp-tests: New file.
152         * tests/test-mbscasecmp.sh: New file.
153         * tests/test-mbscasecmp.c: New file.
154
155 2007-02-11  Bruno Haible  <bruno@clisp.org>
156
157         Ensure O(n) worst-case complexity of mbscasestr.
158         * lib/mbscasestr.c: Include stdbool.h.
159         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
160         functions.
161         (mbscasestr): Add some bookkeeping. Invoke knuth_morris_pratt_* when
162         the bookkeeping indicates that it's worth it.
163         * modules/mbscasestr (Depends-on): Add stdbool, mbslen, strnlen.
164
165         * modules/mbscasestr-tests: New file.
166         * tests/test-mbscasestr1.c: New file.
167         * tests/test-mbscasestr2.sh: New file.
168         * tests/test-mbscasestr2.c: New file.
169         * tests/test-mbscasestr3.sh: New file.
170         * tests/test-mbscasestr3.c: New file.
171         * tests/test-mbscasestr4.sh: New file.
172         * tests/test-mbscasestr4.c: New file.
173         * m4/locale-tr.m4: New file.
174
175 2007-02-11  Bruno Haible  <bruno@clisp.org>
176
177         Ensure O(n) worst-case complexity of mbsstr.
178         * lib/mbsstr.c: Include stdbool.h.
179         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
180         functions.
181         (mbsstr): Add some bookkeeping. Invoke knuth_morris_pratt_* when the
182         bookkeeping indicates that it's worth it.
183         * modules/mbsstr (Depends-on): Add stdbool, mbslen, strnlen.
184
185         * modules/mbsstr-tests: New file.
186         * tests/test-mbsstr1.c: New file.
187         * tests/test-mbsstr2.sh: New file.
188         * tests/test-mbsstr2.c: New file.
189         * tests/test-mbsstr3.sh: New file.
190         * tests/test-mbsstr3.c: New file.
191         * m4/locale-fr.m4: New file.
192
193 2007-02-11  Bruno Haible  <bruno@clisp.org>
194
195         * lib/mbsrchr.c (mbsrchr): Fix bug.
196
197         * modules/mbsrchr-tests: New file.
198         * tests/test-mbsrchr.sh: New file.
199         * tests/test-mbsrchr.c: New file.
200
201 2007-02-11  Bruno Haible  <bruno@clisp.org>
202
203         * lib/mbschr.c (mbschr): Fix bug.
204
205         * modules/mbschr-tests: New file.
206         * tests/test-mbschr.sh: New file.
207         * tests/test-mbschr.c: New file.
208         * m4/locale-zh.m4: New file.
209
210 2007-02-11  Bruno Haible  <bruno@clisp.org>
211
212         Support for copying multibyte string iterators.
213         * lib/mbiter.h: Include <string.h>.
214         (mbiter_multi_copy): New function.
215         (mbi_copy): New macro.
216         * lib/mbuiter.h: Include <string.h>.
217         (mbuiter_multi_copy): New function.
218         (mbui_copy): New macro.
219
220 2007-02-11  Bruno Haible  <bruno@clisp.org>
221
222         New module mbslen.
223         * modules/mbslen: New file.
224         * lib/mbslen.c: New file.
225         * lib/string_.h (mbslen): New declaration.
226         * m4/mbslen.m4: New file.
227         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
228         GNULIB_MBSLEN.
229         * modules/string (string.h): Also substitute GNULIB_MBSLEN.
230         * MODULES.html.sh (Internationalization functions): Add mbslen.
231
232 2007-02-11  Bruno Haible  <bruno@clisp.org>
233
234         Ensure O(n) worst-case complexity of strcasestr substitute.
235         * lib/strcasestr.c: Include stdbool.h.
236         (knuth_morris_pratt): New function.
237         (strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when the
238         bookkeeping indicates that it's worth it.
239         * modules/strcasestr (Depends-on): Add stdbool, strnlen.
240
241         * modules/strcasestr-tests: New file.
242         * tests/test-strcasestr.c: New file.
243
244 2007-02-11  Bruno Haible  <bruno@clisp.org>
245
246         Ensure O(n) worst-case complexity of c_strcasestr.
247         * lib/c-strcasestr.c: Include stdbool.h, string.h.
248         (knuth_morris_pratt): New function.
249         (c_strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when
250         the bookkeeping indicates that it's worth it.
251         * modules/c-strcasestr (Depends-on): Add stdbool, strnlen.
252
253         * modules/c-strcasestr-tests: New file.
254         * tests/test-c-strcasestr.c: New file.
255
256 2007-02-11  Bruno Haible  <bruno@clisp.org>
257
258         Ensure O(n) worst-case complexity of c_strstr.
259         * lib/c-strstr.c: Include stdbool.h, string.h.
260         (knuth_morris_pratt): New function.
261         (c_strstr): Add some bookkeeping. Invoke knuth_morris_pratt when the
262         bookkeeping indicates that it's worth it.
263         * modules/c-strstr (Depends-on): Add stdbool, strnlen.
264
265         * lib/c-strstr.c: Complete rewrite for maintainability.
266
267         * modules/c-strstr-tests: New file.
268         * tests/test-c-strstr.c: New file.
269
270 2007-02-11  Bruno Haible  <bruno@clisp.org>
271
272         * m4/javacomp.m4 (gt_JAVACOMP): Work around a 'tr' bug in coreutils
273         5.2.1 and earlier, whereby \055 was treated just like the range
274         delimiter '-'.  Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
275
276 2007-02-08  Bruno Haible  <bruno@clisp.org>
277
278         * modules/regex (Depends-on): Add stdbool.
279         Reported by Dalibor Topic <robilad@kaffe.org>.
280
281 2007-02-05  Paul Eggert  <eggert@cs.ucla.edu>
282
283         * m4/regex.m4 (gl_REGEX): Check for glibc bug #3957.
284         Prefer returning from main to exiting from it.
285         Remove unnecessary parens after sizeof.
286
287 2007-02-05  Bruno Haible  <bruno@clisp.org>
288
289         New module mbssep.
290         * modules/mbssep: New file.
291         * lib/mbssep.c: New file.
292         * lib/string_.h (strsep): Add a conditional link warning.
293         (mbssep): New declaration.
294         * m4/mbssep.m4: New file.
295         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
296         GNULIB_MBSSEP.
297         * modules/string (string.h): Also substitute GNULIB_MBSSEP.
298         * MODULES.html.sh (Internationalization functions): Add mbssep.
299
300 2007-02-05  Bruno Haible  <bruno@clisp.org>
301
302         * lib/strsep.c (strsep): Fix actions in case of no delimiters.
303         Optimize search in case of 1 delimiter.
304
305 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
306
307         * lib/acl.h: Include sys/types.h before sys/acl.h.
308
309 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
310
311         Merge upstream fix for glibc bugzilla #3957:
312
313         2007-02-05  Jakub Jelinek  <jakub@redhat.com>
314
315         * lib/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
316         bit for RE_HAT_LISTS_NOT_NEWLINE.
317         (build_charclass_op): Remove bogus comment.
318
319 2007-02-05  Simon Josefsson  <simon@josefsson.org>
320
321         * lib/gc.h, lib/gc-libgcrypt.c: Support SHA-256/384/512.
322
323 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
324
325         * lib/getsubopt.c [!_LIBC]: Include config.h and getsubopt.h.
326         * lib/memmem.c [!defined _LIBC]: Include config.h.
327
328 2007-02-04  Bruno Haible  <bruno@clisp.org>
329
330         * lib/string_.h (GL_LINK_WARNING2): Put the word "warning:" into the
331         warning message.
332
333 2007-02-04  Bruno Haible  <bruno@clisp.org>
334
335         New module mbstok_r.
336         * modules/mbstok_r: New file.
337         * lib/mbstok_r.c: New file.
338         * lib/string_.h (strtok_r): Change argument names to match the
339         comments. Add a conditional link warning.
340         (mbstok_r): New declaration.
341         * m4/mbstok_r.m4: New file.
342         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
343         GNULIB_MBSTOK_R.
344         * modules/string (string.h): Also substitute GNULIB_MBSTOK_R.
345         * MODULES.html.sh (Internationalization functions): Add mbstok_r.
346
347 2007-02-04  Bruno Haible  <bruno@clisp.org>
348
349         New module mbsspn.
350         * modules/mbsspn: New file.
351         * lib/mbsspn.c: New file.
352         * lib/string_.h (strspn): Add a conditional link warning.
353         (mbsspn): New declaration.
354         * m4/mbsspn.m4: New file.
355         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
356         GNULIB_MBSSPN.
357         * modules/string (string.h): Also substitute GNULIB_MBSSPN.
358         * MODULES.html.sh (Internationalization functions): Add mbsspn.
359
360 2007-02-04  Bruno Haible  <bruno@clisp.org>
361
362         New module mbspbrk.
363         * modules/mbspbrk: New file.
364         * lib/mbspbrk.c: New file.
365         * lib/string_.h (strpbrk): Add a conditional link warning.
366         (mbspbrk): New declaration.
367         * m4/mbspbrk.m4: New file.
368         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
369         GNULIB_MBSPBRK.
370         * modules/string (string.h): Also substitute GNULIB_MBSPBRK.
371         * MODULES.html.sh (Internationalization functions): Add mbspbrk.
372
373 2007-02-04  Bruno Haible  <bruno@clisp.org>
374
375         New module mbscspn.
376         * modules/mbscspn: New file.
377         * lib/mbscspn.c: New file.
378         * lib/string_.h (strcspn): Add a conditional link warning.
379         (mbscspn): New declaration.
380         * m4/mbscspn.m4: New file.
381         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
382         GNULIB_MBSCSPN.
383         * modules/string (string.h): Also substitute GNULIB_MBSCSPN.
384         * MODULES.html.sh (Internationalization functions): Add mbscspn.
385
386 2007-02-04  Bruno Haible  <bruno@clisp.org>
387
388         New module mbscasestr, reduced goal of strcasestr.
389         * modules/mbscasestr: New file.
390         * lib/mbscasestr.c: New file, copied from lib/strcasestr.c.
391         (mbscasestr): Renamed from strcasestr.
392         * lib/strcasestr.c: Don't include mbuiter.h.
393         (strcasestr): Remove support for multibyte locales.
394         * lib/string_.h (strcasestr): Don`t rename. Declare only if missing.
395         Change the conditional link warning.
396         (mbscasestr): New declaration.
397         * m4/mbscasestr.m4: New file.
398         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Enable the replacement only if
399         the system does not have strcasestr. Set HAVE_STRCASESTR instead of
400         REPLACE_STRCASESTR.
401         (gl_PREREQ_STRCASESTR): Don't require gl_FUNC_MBRTOWC.
402         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
403         HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
404         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSCASESTR.
405         * modules/string (string.h): Also substitute GNULIB_MBSCASESTR.
406         Substitute HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
407         * modules/strcasestr (Files): Remove m4/mbrtowc.m4.
408         (Depends-on): Remove mbuiter.
409         * MODULES.html.sh (Internationalization functions): Add mbscasestr.
410
411 2007-02-04  Bruno Haible  <bruno@clisp.org>
412
413         Simplify handling of strncasecmp.
414         * lib/string_.h (strncasecmp): Remove test for GNULIB_STRCASE. Change
415         the conditional link warning.
416         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
417         HAVE_STRCASECMP, not REPLACE_STRCASECMP.
418         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Don't initialize GNULIB_STRCASE.
419         * modules/strcase (configure.ac): Don't invoke
420         gl_STRING_MODULE_INDICATOR.
421         * modules/string (string.h): Don't substitute GNULIB_STRCASE.
422
423 2007-02-04  Bruno Haible  <bruno@clisp.org>
424
425         New module mbscasecmp, reduced goal of strcasecmp.
426         * modules/mbscasecmp: New file.
427         * lib/mbscasecmp.c: New file, copied from lib/strcasecmp.c.
428         (mbscasecmp): Renamed from strcasecmp.
429         * lib/strcasecmp.c: Don't include mbuiter.h.
430         (strcasecmp): Remove support for multibyte locales.
431         * lib/string_.h (strcasecmp): Don`t rename. Declare only if missing.
432         Change the conditional link warning.
433         (mbscasecmp): New declaration.
434         * m4/mbscasecmp.m4: New file.
435         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Enable the replacement only if
436         the system lacks strcasecmp. Set HAVE_STRCASECMP instead of
437         REPLACE_STRCASECMP.
438         (gl_PREREQ_STRCASECMP): Don't require gl_FUNC_MBRTOWC.
439         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
440         GNULIB_MBSCASECMP.
441         * modules/string (string.h): Also substitute GNULIB_MBSCASECMP.
442         Substitute HAVE_STRCASECMP instead of REPLACE_STRCASECMP.
443         * modules/strcase (Files): Remove m4/mbrtowc.m4.
444         (Depends-on): Remove mbuiter.
445         * MODULES.html.sh (Internationalization functions): Add mbscasecmp.
446
447 2007-02-04  Bruno Haible  <bruno@clisp.org>
448
449         New module mbsstr. Remove module strstr.
450         * modules/mbsstr: New file.
451         * modules/strstr: Remove file.
452         * lib/mbsstr.c: Renamed from lib/strstr.c.
453         (mbsstr): Renamed from strstr.
454         * lib/string_.h (strstr): Remove declaration. Change the conditional
455         link warning.
456         (mbsstr): New declaration.
457         * m4/mbsstr.m4: New file.
458         * m4/strstr.m4: Remove file.
459         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
460         REPLACE_STRSTR.
461         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSSTR.
462         Don't initialize GNULIB_STRSTR.
463         * modules/string (string.h): Also substitute GNULIB_MBSSTR. Don't
464         substitute GNULIB_STRSTR and REPLACE_STRSTR.
465         * MODULES.html.sh (Internationalization functions): Add mbsstr.
466         (Support for systems lacking ANSI C 89): Remove strstr.
467
468 2007-02-04  Bruno Haible  <bruno@clisp.org>
469
470         New module mbsrchr.
471         * modules/mbsrchr: New file.
472         * lib/mbsrchr.c: New file.
473         * lib/string_.h (strrchr): Add a conditional link warning.
474         (mbsrchr): New declaration.
475         * m4/mbsrchr.m4: New file.
476         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
477         GNULIB_MBSRCHR.
478         * modules/string (string.h): Also substitute GNULIB_MBSRCHR.
479         * MODULES.html.sh (Internationalization functions): Add mbsrchr.
480
481 2007-02-04  Bruno Haible  <bruno@clisp.org>
482
483         New module mbschr.
484         * modules/mbschr: New file.
485         * lib/mbschr.c: New file.
486         * lib/string_.h (strchr): Add a conditional link warning.
487         (mbschr): New declaration.
488         * m4/mbschr.m4: New file.
489         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
490         GNULIB_MBSCHR.
491         * modules/string (string.h): Also substitute GNULIB_MBSCHR.
492         * MODULES.html.sh (Internationalization functions): Add mbschr.
493
494 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
495
496         * lib/stdbool_.h: Mention that bool bit-fields aren't supported.
497
498         * modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
499
500 2007-02-04  Bruno Haible  <bruno@clisp.org>
501
502         New module description section 'configure.ac-early'.
503         * gnulib-tool (sed_extract_prog): Recognize configure.ac-early.
504         (func_get_autoconf_early_snippet): New function.
505         (func_import, func_create_testdir): Use it. Remove special cases for
506         modules 'extensions' and 'lock'.
507         * modules/extensions (configure.ac-early): Require
508         gl_USE_SYSTEM_EXTENSIONS.
509         * modules/lock (configure.ac-early): Require gl_LOCK_EARLY.
510
511 2007-02-04  Bruno Haible  <bruno@clisp.org>
512
513         Make use of gcj-4.3's -fsource and -ftarget option.
514         * m4/javacomp.m4 (gt_JAVACOMP): Test whether gcj is in version >= 4.3,
515         and if so try the options -fsource and -ftarget.
516         * lib/javacomp.c (compile_using_gcj): Add fsource_option,
517         source_version, ftarget_option, target_version arguments.
518         (is_envjavac_gcj43, is_envjavac_gcj43_usable): New functions.
519         (is_envjavac_oldgcj_14_14_usable): Renamed from
520         is_envjavac_gcj_14_14_usable.
521         (is_envjavac_oldgcj_14_13_usable): Renamed from
522         is_envjavac_gcj_14_13_usable.
523         (is_gcj_present): Update.
524         (is_gcj_43, is_gcj43_usable): New functions.
525         (is_oldgcj_14_14_usable): Renamed from is_gcj_14_14_usable. Update.
526         (is_oldgcj_14_13_usable): Renamed from is_gcj_14_13_usable. Update.
527         (compile_java_class): Test whether gcj is in version >= 4.3, and if so
528         try the options -fsource and -ftarget.
529
530 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
531
532         * lib/xalloc.h (x2nrealloc): Fix an unlikely bug in the overflow
533         checking code.  Set N = ceil (1.5 * N) rather than to a slightly
534         larger value.
535
536 2007-02-03  Jim Meyering  <jim@meyering.net>
537
538         Give tools a better chance to allocate space for very large buffers.
539         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
540
541         Make pwd and readlink work also when run with an unreadable parent dir
542         on systems with openat support.
543         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
544         provided getcwd function, even when we have openat support.
545         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
546
547 2007-02-02  Bruno Haible  <bruno@clisp.org>
548
549         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
550         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
551         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
552         portability problems if one of these functions is only used on specific
553         platforms.
554         Reported by Paul Eggert.
555
556 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
557
558         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
559         is causing more trouble than it's curing.
560         * lib/regex_internal.h (__mempcpy): Remove.
561         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
562         (and make the code a tad smaller to boot).
563         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
564
565 2007-02-02  Jim Meyering  <jim@meyering.net>
566
567         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
568         section, not in the Makefile.am: one.
569
570 2007-02-02  Eric Blake  <ebb9@byu.net>
571
572         * lib/strchrnul.c: Always include config.h first.
573
574         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
575         gnulib strstr is not necessary here.
576
577 2007-02-02  Simon Josefsson  <simon@josefsson.org>
578
579         * m4/socklen.m4: Fix typo.
580
581 2007-02-02  Eric Blake  <ebb9@byu.net>
582
583         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
584         * modules/netinet_in (Makefile.am): Likewise.
585
586 2007-02-01  Bruno Haible  <bruno@clisp.org>
587
588         * lib/string_.h (GL_LINK_WARNING): New macro.
589         (strcasecmp, strstr, strcasestr): If provided by the system,
590         conditionally define as a macro that leads to a warning instead of to
591         an error.
592         (strncasecmp): Conditionally define as a macro that leads to a warning.
593
594 2007-02-01  Jim Meyering  <jim@meyering.net>
595
596         Give tools a better chance to allocate space for very large buffers.
597         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
598
599 2007-02-01  Karl Berry  <karl@gnu.org>
600
601         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
602
603 2007-02-01  Bruno Haible  <bruno@clisp.org>
604
605         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
606         renamings.
607
608 2007-02-01  Eric Blake  <ebb9@byu.net>
609
610         * modules/regex (Depends-on): Revert dependence on mempcpy.
611         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
612         module's definition of mempcpy.
613         Reported by Paul Eggert.
614
615 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
616
617         * lib/string_.h: If the gnulib module XYZ is not present, undefine
618         the symbol XYZ before redefining it.  This fixes a problem with
619         programs that don't use XYZ, when compiled on systems that define
620         XYZ to something else.
621
622 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
623
624         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
625         occurs when "mkdir -m foo" creates a setgid directory that is (1)
626         writeable to group or other and (2) is intended to have a special
627         mode bit that is set or cleared.  In such a case, the directory
628         should be neither group- nor other-writeable until the special
629         mode bits are right.
630
631 2007-01-31  Eric Blake  <ebb9@byu.net>
632
633         * modules/mountlist (Depends-on): Add strstr.
634
635         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
636         bug.
637         * modules/string (Makefile.am): Remove redundant replacement.
638         * modules/regex (Depends-on): Add mempcpy.
639
640 2007-01-31  Bruno Haible  <bruno@clisp.org>
641
642         New module description field 'Link'.
643         * gnulib-tool (func_usage): Document --extract-link-directive.
644         (sed_extract_prog): Recognize 'Link' directive.
645         (func_get_link_directive): New function.
646         (func_import): Show summary of link directives.
647         Handle --extract-link-directive option.
648         * modules/acl (Link): New section.
649         * modules/clock-time (Link): New section.
650         * modules/euidaccess (Link): New section.
651         * modules/gettext (Link): New section.
652         * modules/iconv (Link): New section.
653         * modules/lock (Link): New section.
654         * modules/nanosleep (Link): New section.
655         * modules/readline (Link): New section.
656
657 2007-01-27  Bruno Haible  <bruno@clisp.org>
658
659         Enforce the use of gnulib modules for unportable <string.h> functions.
660         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
661         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
662         (gl_HEADER_STRING_H_BODY): Require it.
663         * lib/string_.h: If the gnulib module XYZ is not present, redefine
664         the symbol XYZ to one that gives a link error.
665         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
666         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
667         * modules/mempcpy (configure.ac): Likewise.
668         * modules/memrchr (configure.ac): Likewise.
669         * modules/stpcpy (configure.ac): Likewise.
670         * modules/stpncpy (configure.ac): Likewise.
671         * modules/strcase (configure.ac): Likewise.
672         * modules/strcasestr (configure.ac): Likewise.
673         * modules/strchrnul (configure.ac): Likewise.
674         * modules/strdup (configure.ac): Likewise.
675         * modules/strndup (configure.ac): Likewise.
676         * modules/strnlen (configure.ac): Likewise.
677         * modules/strpbrk (configure.ac): Likewise.
678         * modules/strsep (configure.ac): Likewise.
679         * modules/strstr (configure.ac): Likewise.
680         * modules/strtok_r (configure.ac): Likewise.
681
682 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
683
684         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
685
686 2007-01-30  Jim Meyering  <jim@meyering.net>
687
688         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
689
690 2007-01-29  Bruno Haible  <bruno@clisp.org>
691
692         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
693         * lib/execute.c: Likewise.
694         * lib/pipe.c: Likewise.
695         * lib/printf-args.h: Likewise.
696         * lib/printf-args.c: Likewise.
697         * lib/printf-parse.c: Likewise.
698         * lib/vasnprintf.c: Likewise.
699
700 2007-01-29  Eric Blake  <ebb9@byu.net>
701
702         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
703         declaration.
704
705 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
706
707         * lib/strptime.h (strptime): Use 'restrict' for args where
708         POSIX requires this.
709         * lib/strptime.c (strptime): Likewise.
710         Change license notice from LGPL to GPL, since gnulib-tool will
711         change this as needed.
712         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
713         defined.
714         Include "strptime.h" first, to check interface.
715         Do not #undef _LIBC and _NL_CURRENT.
716         Do not include <stdlib.h>; no longer needed.
717         Include "time_r.h" and declare ptime_locale_status
718         only if _LIBC is not defined.
719         (__P): Remove unused macro.
720         (match_string): Bring back glibc version, but use it only if _LIBC
721         is defined.
722         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
723         Remove unnecessary assertion and abort() call.
724         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
725         * m4/strptime.m4: Fix serial number comment.
726         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
727         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
728         (Depends-on): Add time_r.
729
730 2007-01-29  Bruno Haible  <bruno@clisp.org>
731
732         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
733         strptime.
734         * modules/strptime (Depends-on): Add stdbool.
735         * lib/strptime.h: Include <time.h> always. Add comments.
736
737 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
738
739         * modules/strptime: New file.
740         * lib/strptime.h: New file.
741         * lib/strptime.c: New file.
742         * m4/strptime.m4: New file.
743
744 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
745
746         * MODULES.html.sh: New module mpsort.
747         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
748
749         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
750         a circularity problem with HP-UX ia64 reported by Bob Proulx in
751         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
752         All uses changed.
753         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
754         All uses changed.
755         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
756         to _Restrict_.
757         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
758         the parameter matches the prototype.
759
760 2007-01-28  Jim Meyering  <jim@meyering.net>
761
762         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
763         sys/time.h here, reverting that part of the previous patch:
764         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
765
766 2007-01-28  Bruno Haible  <bruno@clisp.org>
767
768         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
769         value of $(SYS_TIME_H).
770         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
771         remove it conditionally, too. [added by Jim Meyering]
772         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
773         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
774         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
775         GETTIMEOFDAY_REPLACEMENT to 1.
776
777 2007-01-28  Bruno Haible  <bruno@clisp.org>
778
779         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
780         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
781         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
782         Set UNISTD_H instead of UNISTD_H2.
783         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
784
785 2007-01-28  Bruno Haible  <bruno@clisp.org>
786
787         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
788         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
789
790 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
791
792         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
793         (func_create_testdir): Ensure C locale for `grep' and `tr'
794         character ranges.
795         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
796         ACLOCAL_AMFLAGS parsing state machine.
797
798 2007-01-27  Bruno Haible  <bruno@clisp.org>
799
800         * modules/unistr/base: Update.
801
802 2007-01-27  Bruno Haible  <bruno@clisp.org>
803
804         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
805         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
806         * modules/unistr/u32-mbtouc-unsafe: Renamed from
807         modules/unistr/u32-mbtouc.
808         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
809         * lib/unistr.h: Update.
810         * lib/linebreak.c: Update.
811         * modules/unistr/u32-mbtouc: Renamed from
812         modules/unistr/u32-mbtouc-safe.
813         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
814         * lib/unistr.h: Update.
815         * lib/unistr/u32-to-u8.c: Update.
816         * lib/unistr/u32-to-u16.c: Update.
817
818 2007-01-27  Bruno Haible  <bruno@clisp.org>
819
820         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
821         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
822         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
823         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
824         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
825         * modules/unistr/u16-mbtouc-unsafe: Renamed from
826         modules/unistr/u16-mbtouc.
827         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
828         * lib/unistr.h: Update.
829         * lib/linebreak.c: Update.
830         * modules/linebreak: Update.
831         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
832         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
833         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
834         * modules/unistr/u16-mbtouc: Renamed from
835         modules/unistr/u16-mbtouc-safe.
836         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
837         * lib/unistr.h: Update.
838         * lib/unistr/u16-to-u8.c: Update.
839         * modules/unistr/u16-to-u8: Update.
840         * lib/unistr/u16-to-u32.c: Update.
841         * modules/unistr/u16-to-u32: Update.
842
843 2007-01-27  Bruno Haible  <bruno@clisp.org>
844
845         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
846         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
847         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
848         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
849         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
850         * modules/unistr/u8-mbtouc-unsafe: Renamed from
851         modules/unistr/u8-mbtouc.
852         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
853         * lib/unistr.h: Update.
854         * lib/striconveh.c: Update.
855         * modules/striconveh: Update.
856         * lib/linebreak.c: Update.
857         * modules/linebreak: Update.
858         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
859         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
860         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
861         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
862         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
863         * lib/unistr.h: Update.
864         * lib/striconveh.c: Update.
865         * modules/striconveh: Update.
866         * lib/unistr/u8-to-u16.c: Update.
867         * modules/unistr/u8-to-u16: Update.
868         * lib/unistr/u8-to-u32.c: Update.
869         * modules/unistr/u8-to-u32: Update.
870
871 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
872
873         Sync from Libtool.
874         * lib/argz.c: Do not include strings.h nor memory.h, include
875         string.h unconditionally.  Patch by Simon Josefsson.
876
877 2007-01-27  Bruno Haible  <bruno@clisp.org>
878
879         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
880         from gl_HEADER_STRING_H_BODY.
881         (gl_HEADER_STRING_H_BODY): Require it.
882         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
883         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
884         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
885         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
886         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
887         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
888         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
889         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
890         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
891         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
892         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
893         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
894         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
895         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
896         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
897
898 2007-01-27  Bruno Haible  <bruno@clisp.org>
899
900         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
901         check_PROGRAMS into noinst_PROGRAMS.
902         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
903         check_PROGRAMS in this case.
904         (func_import): Set for_test to false.
905         (func_create_testdir): Set for_test to true.
906
907 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
908             Bruno Haible  <bruno@clisp.org>
909
910         * modules/strcasestr (Files): Remove lib/strcasestr.h.
911         (Depends-on): Add string.
912         (Includes): Use <string.h> instead of strcasestr.h.
913         * modules/string (Makefile.am): Also substitute the value of
914         REPLACE_STRCASESTR.
915         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
916         assume strcasestr is declared in <string.h> not <strings.h>. Also
917         set REPLACE_STRCASESTR.
918         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
919         REPLACE_STRCASESTR.
920         * lib/strcasestr.h: Remove file.
921         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
922         * lib/string_.h (strcasestr): New declaration.
923
924 2007-01-27  Bruno Haible  <bruno@clisp.org>
925
926         * lib/string_.h: Use 'extern'.
927
928 2007-01-27  Jim Meyering  <jim@meyering.net>
929
930         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
931         of set-but-not-used local, "q".
932
933         * lib/mempcpy.c: Include <config.h> before <string.h>.
934         This fixes a compilation error on HP-UX, due to the system's
935         "restrict"-using mempcpy prototype.
936
937 2007-01-26  Bruno Haible  <bruno@clisp.org>
938
939         Small optimization.
940         * lib/javacomp.c: Include c-strstr.h.
941          (is_envjavac_gcj): Use c_strstr instead of strstr.
942         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
943
944 2007-01-26  Bruno Haible  <bruno@clisp.org>
945
946         * MODULES.html.sh (Unicode string functions): Add the new modules.
947
948         * modules/uniconv/u32-strconv-to-locale: New file.
949         * lib/uniconv/u32-strconv-to-locale.c: New file.
950
951         * modules/uniconv/u16-strconv-to-locale: New file.
952         * lib/uniconv/u16-strconv-to-locale.c: New file.
953
954         * modules/uniconv/u8-strconv-to-locale: New file.
955         * lib/uniconv/u8-strconv-to-locale.c: New file.
956
957         * modules/uniconv/u32-strconv-from-locale: New file.
958         * lib/uniconv/u32-strconv-from-locale.c: New file.
959
960         * modules/uniconv/u16-strconv-from-locale: New file.
961         * lib/uniconv/u16-strconv-from-locale.c: New file.
962
963         * modules/uniconv/u8-strconv-from-locale: New file.
964         * lib/uniconv/u8-strconv-from-locale.c: New file.
965
966         * modules/uniconv/u32-strconv-to-enc: New file.
967         * lib/uniconv/u32-strconv-to-enc.c: New file.
968         * modules/uniconv/u32-strconv-to-enc-tests: New file.
969         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
970
971         * modules/uniconv/u16-strconv-to-enc: New file.
972         * lib/uniconv/u16-strconv-to-enc.c: New file.
973         * lib/uniconv/u-strconv-to-enc.h: New file.
974         * modules/uniconv/u16-strconv-to-enc-tests: New file.
975         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
976
977         * modules/uniconv/u8-strconv-to-enc: New file.
978         * lib/uniconv/u8-strconv-to-enc.c: New file.
979         * modules/uniconv/u8-strconv-to-enc-tests: New file.
980         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
981
982         * modules/uniconv/u32-strconv-from-enc: New file.
983         * lib/uniconv/u32-strconv-from-enc.c: New file.
984         * modules/uniconv/u32-strconv-from-enc-tests: New file.
985         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
986
987         * modules/uniconv/u16-strconv-from-enc: New file.
988         * lib/uniconv/u16-strconv-from-enc.c: New file.
989         * modules/uniconv/u16-strconv-from-enc-tests: New file.
990         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
991
992         * modules/uniconv/u8-strconv-from-enc: New file.
993         * lib/uniconv/u8-strconv-from-enc.c: New file.
994         * lib/uniconv/u-strconv-from-enc.h: New file.
995         * modules/uniconv/u8-strconv-from-enc-tests: New file.
996         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
997
998         * modules/uniconv/u32-conv-from-enc: New file.
999         * lib/uniconv/u32-conv-from-enc.c: New file.
1000         * modules/uniconv/u32-conv-from-enc-tests: New file.
1001         * tests/uniconv/test-u32-conv-from-enc.c: New file.
1002
1003         * modules/uniconv/u16-conv-from-enc: New file.
1004         * lib/uniconv/u16-conv-from-enc.c: New file.
1005         * lib/uniconv/u-conv-from-enc.h: New file.
1006         * modules/uniconv/u16-conv-from-enc-tests: New file.
1007         * tests/uniconv/test-u16-conv-from-enc.c: New file.
1008
1009         * modules/uniconv/u8-conv-from-enc: New file.
1010         * lib/uniconv/u8-conv-from-enc.c: New file.
1011         * modules/uniconv/u8-conv-from-enc-tests: New file.
1012         * tests/uniconv/test-u8-conv-from-enc.c: New file.
1013
1014         * modules/uniconv/base: New file.
1015         * lib/uniconv.h: New file.
1016
1017 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
1018
1019         * doc/gnulib-tool.texi (Initial import): Update to match current
1020         behavior with strdup module.
1021         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
1022         * lib/memmem.h: Remove; all uses removed.  This is now done
1023         by <string.h>.
1024         * lib/mempcpy.h: Likewise.
1025         * lib/memrchr.h: Likewise.
1026         * lib/stpcpy.h: Likewise.
1027         * lib/stpncpy.h: Likewise.
1028         * lib/strcase.h: Likewise.
1029         * lib/strchrnul.h: Likewise.
1030         * lib/strdup.h: Likewise.
1031         * lib/strndup.h: Likewise.
1032         * lib/strnlen.h: Likewise.
1033         * lib/strpbrk.h: Likewise.
1034         * lib/strsep.h: Likewise.
1035         * lib/strstr.h: Likewise.
1036         * lib/strtok_r.h: Likewise.
1037         * lib/string_.h: New file.
1038         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
1039         Rely on <string.h> instead.
1040         * lib/canon-host.c: Likewise.
1041         * lib/chdir-long.c: Likewise.
1042         * lib/concatpath.c: Likewise.
1043         * lib/exclude.c: Likewise.
1044         * lib/fchdir.c: Likewise.
1045         * lib/getaddrinfo.c: Likewise.
1046         * lib/getcwd.c: Likewise.
1047         * lib/getsubopt.c: Likewise.
1048         * lib/glob.c: Likewise.
1049         * lib/hard-locale.c: Likewise.
1050         * lib/iconvme.c: Likewise.
1051         * lib/javacomp.c: Likewise.
1052         * lib/mempcpy.c: Likewise.
1053         * lib/memrchr.c: Likewise.
1054         * lib/regex_internal.h: Likewise.
1055         * lib/stpncpy.c: Likewise.
1056         * lib/strcasecmp.c: Likewise.
1057         * lib/strchrnul.c: Likewise.
1058         * lib/strdup.c: Likewise.
1059         * lib/striconv.c: Likewise.
1060         * lib/striconveh.c: Likewise.
1061         * lib/striconveha.c: Likewise.
1062         * lib/strncasecmp.c: Likewise.
1063         * lib/strndup.c: Likewise.
1064         * lib/strnlen.c: Likewise.
1065         * lib/strsep.c: Likewise.
1066         * lib/strstr.c: Likewise.
1067         * lib/strtok_r.c: Likewise.
1068         * lib/userspec.c: Likewise.
1069         * lib/w32spawn.h: Likewise.
1070         * lib/xstrndup.c: Likewise.
1071         * lib/mountlist.c (strstr): Remove decl.
1072         * m4/string_h.m4: New file.
1073         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
1074         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
1075         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
1076         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
1077         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
1078         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
1079         Set REPLACE_STRCASECMP if necessary.
1080         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
1081         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
1082         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
1083         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
1084         HAVE_DECL_STRDUP if necessary.
1085         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
1086         since gl_FUNC_STRNDUP does that now.
1087         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
1088         Check for decl here...
1089         (gl_PREREQ_STRNLEN): ... not here.
1090         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
1091         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
1092         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
1093         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
1094         necessary.
1095         * modules/string: New file.
1096         * modules/memmem (Files): Remove special-purpose include file.
1097         (Depends-on): Add string.
1098         (Include): Include <string.h>, not the removed file.
1099         * modules/mempcpy: Likewise.
1100         * modules/memrchr: Likewise.
1101         * modules/stpcpy: Likewise.
1102         * modules/stpncpy: Likewise.
1103         * modules/strcase: Likewise.
1104         * modules/strchrnul: Likewise.
1105         * modules/strdup: Likewise.
1106         * modules/strndup: Likewise.
1107         * modules/strnlen: Likewise.
1108         * modules/strpbrk: Likewise.
1109         * modules/strsep: Likewise.
1110         * modules/strstr: Likewise.
1111         * modules/strtok_r: Likewise.
1112         * tests/test-dirname.c: Don't include "strdup.h", since
1113         <string.h> now suffices.
1114         * tests/test-memmem.c: Don't include "memmem.h", since
1115         <string.h> now suffices.
1116
1117 2007-01-25  Bruno Haible  <bruno@clisp.org>
1118
1119         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
1120         *resultp is 0.
1121
1122         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
1123         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
1124         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
1125         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
1126
1127         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
1128         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
1129         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
1130         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
1131         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
1132         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
1133
1134 2007-01-24  Bruno Haible  <bruno@clisp.org>
1135
1136         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
1137         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
1138         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
1139         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
1140         gl_FUNC_FTS_CORE.
1141         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
1142         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
1143         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
1144         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
1145         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
1146         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
1147         gl_FUNC_FCHOWNAT.
1148         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
1149         gl_FUNC_STRFTIME.
1150         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
1151         Reported by Ralf Wildenhues.
1152
1153 2007-01-24  Bruno Haible  <bruno@clisp.org>
1154
1155         Drop AC_REQUIRE calls that are redundant with the module dependencies.
1156         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
1157         gl_GETADDRINFO.
1158         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
1159         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
1160         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
1161
1162 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
1163
1164         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
1165         Don't use 'exit'; just return from 'main'.
1166         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
1167
1168         * lib/fnmatch_.h: Readjust white space and comments to match
1169         glibc, to avoid spurious diffs.
1170
1171 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
1172
1173         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
1174         2004-12-01 change by Jakub Jelinek, since this code won't compile
1175         if !LIBC.  Problem reported by Bob Proulx.
1176
1177 2007-01-23  Bruno Haible  <bruno@clisp.org>
1178
1179         * lib/striconveh.c: Include c-strcaseeq.h.
1180         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
1181         * modules/striconveh (Depends-on): Add c-strcaseeq.
1182
1183 2007-01-23  Bruno Haible  <bruno@clisp.org>
1184
1185         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
1186
1187         * modules/c-strcaseeq: New file.
1188         * lib/c-strcaseeq.h: New file.
1189
1190         * modules/streq: New file.
1191         * lib/streq.h: New file.
1192
1193 2007-01-23  Bruno Haible  <bruno@clisp.org>
1194
1195         * modules/striconveha-tests: New file.
1196         * tests/test-striconveha.c: New file.
1197
1198         * lib/striconveha.h: Include <stdbool.h>.
1199         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
1200         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
1201         (mem_iconveha_notranslit): Renamed from mem_iconveha.
1202         (mem_iconveha): New function.
1203         (str_iconveha_notranslit): Renamed from str_iconveha.
1204         (str_iconveha): New function.
1205         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
1206         c-strcase.
1207
1208 2007-01-23  Bruno Haible  <bruno@clisp.org>
1209
1210         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
1211         encodings without forgiving before trying any encoding with handler.
1212         (str_iconveha): Try all encodings without forgiving before trying any
1213         encoding with handler.
1214
1215 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
1216
1217         Import the following changes from libc.
1218
1219         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
1220
1221         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
1222
1223         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
1224
1225         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
1226         normal_bracket label.
1227
1228         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
1229
1230         [BZ #361]
1231         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
1232         to normal_bracket after fetching the next character.
1233
1234 2007-01-22  Bruno Haible  <bruno@clisp.org>
1235
1236         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
1237         argument.
1238         * lib/striconveh.c (iconv_carefully_1): New function.
1239         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
1240         argument.
1241         (str_cd_iconveh): Update.
1242         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
1243         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
1244         * tests/test-striconveh.c (MAGIC): New macro.
1245         (new_offsets): New function.
1246         (main): Test call with and without offsets.
1247
1248 2007-01-22  Bruno Haible  <bruno@clisp.org>
1249
1250         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
1251         * modules/sys_select (Makefile.am): Likewise.
1252         * modules/sys_socket (Makefile.am): Likewise.
1253         * modules/sys_time (Makefile.am): Likewise.
1254
1255 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
1256
1257         * modules/gettimeofday (License): Change from GPL to LGPL, since
1258         gettimeofday is a library function.
1259
1260 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
1261
1262         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
1263
1264 2007-01-21  Bruno Haible  <bruno@clisp.org>
1265
1266         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
1267
1268 2007-01-21  Bruno Haible  <bruno@clisp.org>
1269
1270         * modules/striconveha: New file.
1271         * lib/striconveha.h: New file.
1272         * lib/striconveha.c: New file.
1273         * MODULES.html.sh (Internationalization functions): Add striconveha.
1274         * lib/striconv.c (str_iconv): Optimize the case of an empty input
1275         string.
1276         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
1277
1278 2007-01-21  Bruno Haible  <bruno@clisp.org>
1279
1280         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
1281         * lib/striconveh.c (str_iconveh): Likewise.
1282
1283 2007-01-21  Bruno Haible  <bruno@clisp.org>
1284
1285         * lib/striconveh.h (mem_iconveh): New declaration.
1286         * lib/striconveh.c (mem_iconveh): New function.
1287         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
1288
1289 2007-01-21  Bruno Haible  <bruno@clisp.org>
1290
1291         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
1292
1293         * lib/striconveh.h (mem_cd_iconveh): Change specification.
1294         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
1295         original result buffer.
1296         (str_cd_iconveh): Update.
1297         * tests/test-striconveh.c (main): Update.
1298
1299         * lib/striconv.h (mem_cd_iconv): Change specification.
1300         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
1301         result buffer.
1302         (str_cd_iconv): Update.
1303         * tests/test-striconv.c (main): Update.
1304
1305 2007-01-21  Bruno Haible  <bruno@clisp.org>
1306
1307         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
1308
1309 2007-01-20  Jim Meyering  <jim@meyering.net>
1310
1311         * lib/userspec.c (parse_with_separator): If a user or group string
1312         starts with "+", skip the corresponding name-to-ID look-up, since
1313         such a look-up must fail: user and group names may not include "+".
1314
1315 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
1316
1317         * lib/poll.c: Include sys/time.h and time.h unconditionally,
1318         since we now assume the sys_time module.
1319         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
1320         check for sys/time.h; no longer needed.
1321         * modules/poll (Depends-on): Depend on sys_time.
1322
1323 2007-01-18  Bruno Haible  <bruno@clisp.org>
1324
1325         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
1326         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
1327
1328         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
1329         gettimeofday.
1330
1331         * tests/test-gettimeofday.c: Include <time.h>.
1332         (dummy): Remove variable.
1333
1334         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
1335         gl_HEADER_SYS_TIME_H.
1336         (gl_HEADER_SYS_TIME_H): New macro.
1337
1338         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
1339         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
1340         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
1341         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
1342         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
1343         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
1344         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
1345         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
1346         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
1347         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
1348         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
1349
1350         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
1351         last change; it caused a compilation error when cross-compiling to
1352         Cygwin.
1353
1354 2007-01-18  Jim Meyering  <jim@meyering.net>
1355
1356         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
1357         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
1358         than the race-prone "test -d sys || mkdir sys".
1359         (configure.ac): Use AC_PROG_MKDIR_P.
1360         * modules/sys_select: Likewise.
1361         * modules/sys_socket: Likewise.
1362         * modules/sys_time: Likewise.
1363
1364 2007-01-18  Eric Blake  <ebb9@byu.net>
1365
1366         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
1367         replace gettimeofday.
1368         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
1369         name, to avoid infinite recursion.
1370
1371 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
1372
1373         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
1374         module sys_time.
1375         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
1376         assume timespec.h defines struct timeval.
1377         * lib/settime.c: Likewise.
1378         * lib/utimens.c: Likewise.
1379         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
1380         since we now assume the gettimeofday module.
1381         * lib/tempname.c (__gen_tempname): Likewise.
1382         * lib/gettimeofday.h: Remove.
1383         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
1384         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
1385         Include <time.h>, for 'time()'.
1386         (localtime_buffer_addr): Also use this workaround if
1387         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
1388         to simplify the uses.  All uses changed.
1389         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
1390         that #undef is inside {}, and 'const' follows type name consistently.
1391         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
1392         (gettimeofday): Do not use the maximum possible value for
1393         tv->tv_usec, since that might break usages other than ls.c.
1394         Instead, we'll leave ls.c alone.  This undoes today's patch
1395         by Bruno.  Add a compile-time warning for 1s-clock resolution;
1396         we've never observed the problem but might as well keep the
1397         canary.
1398         * lib/nanosleep.c: Include timespec.h first, for interface check.
1399         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
1400         now assume the sys_time module.
1401         * lib/tempname.c: Likewise.
1402         * lib/timespec.h: Likewise.
1403         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
1404         needed.
1405         * lib/strftime.c: Likewise.
1406         * lib/timespec.h: Likewise.
1407         * lib/posixtm.c: Include posixtm.h first, for interface check.
1408         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
1409         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
1410         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
1411         * lib/sys_time_.h: New file.
1412         * lib/timespec.h (struct timespec): Use long int, not long.
1413         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
1414         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
1415         Remove obsolescent call to AC_HEADER_TIME.
1416         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
1417         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
1418         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
1419         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
1420         Likewise.
1421         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
1422         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
1423         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
1424         into the sys_time module.  Check for gettimeofday just once.
1425         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
1426         for gettimeofday signature to just check the signature.  Merely
1427         compile it, since linking doesn't test signature.  Improve test for
1428         whether gettimeofday.o is actually needed.
1429         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
1430         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
1431         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
1432         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
1433         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
1434         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
1435         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
1436         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
1437         than worrying about sys/time.h.
1438         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
1439         Don't bother worrying about TIME_WITH_SYS_TIME.
1440         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
1441         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
1442         * m4/sys_time_h.m4: New file.
1443         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
1444         Don't include sys/time.h.  Return from main rather than exiting.
1445         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
1446         all uses changed.
1447         * modules/gethrxtime (Depends-on): Add sys_time.
1448         * modules/gettime (Depends-on): Likewise.
1449         * modules/gettimeofday (Depends-on): Likewise.
1450         * modules/nanosleep (Depends-on): Likewise.
1451         * modules/settime (Depends-on): Likewise.
1452         * modules/tempname (Depends-on): Likewise.
1453         * modules/utimens (Depends-on): Likewise.
1454         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
1455         (Include:) Change back to <sys/time.h>.
1456         (Maintainer:) Add self.
1457         * modules/sys_time: New file.
1458         * modules/tempname (Depends-on): Add gettimeofday.
1459         * tests/test-gettimeofday.c: Include <sys/time.h>
1460         rather than gettimeofday.h.
1461
1462 2007-01-17  Bruno Haible  <bruno@clisp.org>
1463
1464         * gnulib-tool (func_get_license): Revert last patch. Instead, let
1465         the license default to GPL.
1466         (func_create_testdir): Don't complain if a module is LGPL and its
1467         tests module depends on GPLed modules.
1468
1469 2007-01-17  Bruno Haible  <bruno@clisp.org>
1470
1471         * lib/gettimeofday.c (gettimeofday): Add code for the case
1472         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
1473         maximum possible value for tv->tv_usec, rather than the minimum one.
1474
1475 2005-10-08  Martin Lambers  <marlam@marlam.de>
1476 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
1477 2007-01-16  Bruno Haible  <bruno@clisp.org>
1478
1479         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
1480         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
1481         gl_FUNC_GETTIMEOFDAY.
1482         (Include): Add gettimeofday.h.
1483         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
1484         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
1485         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
1486         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
1487         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
1488         * lib/gettimeofday.h: New file.
1489         * lib/gettimeofday.c: Include <sys/timeb.h>.
1490         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
1491         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
1492         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
1493         fall back on time().
1494
1495         * tests/test-gettimeofday.c: New file.
1496         * modules/gettimeofday-tests: New file.
1497
1498 2007-01-16  Eric Blake  <ebb9@byu.net>
1499
1500         * modules/fnmatch (Depends-on): Depend on wchar.
1501         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
1502         * m4/fnmatch.m4: Likewise.
1503         * modules/mbchar (Makefile.am): Assume <wchar.h>.
1504         * m4/mbchar.m4: Likewise.
1505         * modules/mbswidth (Depends-on): Depend on wchar.
1506         * lib/mbswidth.c: Assume <wchar.h>.
1507         * m4/mbswidth.m4: Likewise.
1508         * modules/quotearg (Depends-on): Depend on wchar.
1509         * lib/quotearg.c: Assume <wchar.h>.
1510         * m4/quotearg.m4: Likewise.
1511         * modules/regex (Depends-on): Depend on wchar.
1512         * lib/regex_internal.h: Assume <wchar.h>.
1513         * m4/regex.m4: Likewise.
1514         * modules/stdint (Depends-on): Depend on wchar.
1515         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
1516         * m4/stdint.m4: Likewise.
1517         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
1518         * modules/strftime (Depends-on): Depend on wchar.
1519         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
1520         * modules/strtol (Depends-on): Depend on wchar.
1521         * lib/strtol.c: Assume <wchar.h>.
1522         * modules/wcwidth (Depends-on): Depend on wchar.
1523         * lib/wcwidth.h: Assume <wchar.h>.
1524         * m4/wcwidth.m4: Likewise.
1525
1526 2007-01-16  Bruno Haible  <bruno@clisp.org>
1527
1528         * modules/csharpexec-script: New, created from...
1529         * modules/csharpexec: ... this.
1530
1531 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
1532
1533         * modules/javaexec-script: New, created from...
1534         * modules/javaexec: ... this.
1535
1536 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
1537
1538         * modules/poll (Dependencies): Add sys_select.
1539
1540 2007-01-15  Jim Meyering  <jim@meyering.net>
1541
1542         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
1543         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
1544         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
1545         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
1546
1547 2007-01-15  Bruno Haible  <bruno@clisp.org>
1548
1549         * modules/striconveh: New file.
1550         * lib/striconveh.h: New file.
1551         * lib/striconveh.c: New file.
1552         * MODULES.html.sh (Internationalization functions): Add striconveh.
1553
1554         * modules/striconveh-tests: New file.
1555         * tests/test-striconveh.c: New file.
1556
1557 2007-01-15  Bruno Haible  <bruno@clisp.org>
1558
1559         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
1560         not from GNU libiconv or GNU libc.
1561
1562 2007-01-15  Bruno Haible  <bruno@clisp.org>
1563
1564         * doc/gnulib-intro.texi (Copyright): Explain the different license
1565         terms for module descriptions, autoconf macros, tests, documentation.
1566
1567 2007-01-14  Bruno Haible  <bruno@clisp.org>
1568
1569         * modules/striconv-tests: New file.
1570         * tests/test-striconv.c: New file.
1571
1572 2007-01-14  Bruno Haible  <bruno@clisp.org>
1573
1574         * modules/iconv-tests: New file.
1575         * tests/test-iconv.c: New file.
1576
1577 2007-01-14  Bruno Haible  <bruno@clisp.org>
1578
1579         * gnulib-tool (func_get_license): For test modules, use the license of
1580         the main module.
1581
1582 2007-01-14  Bruno Haible  <bruno@clisp.org>
1583
1584         * modules/iconv (Include): Clarify that <iconv.h> can only be included
1585         if iconv is found to exist.
1586
1587 2007-01-14  Bruno Haible  <bruno@clisp.org>
1588
1589         * modules/c-ctype-tests: New file.
1590         * tests/test-c-ctype.c: New file.
1591
1592 2007-01-14  Bruno Haible  <bruno@clisp.org>
1593
1594         * modules/binary-io-tests: New file.
1595         * tests/test-binary-io.sh: New file.
1596         * tests/test-binary-io.c: New file.
1597
1598 2007-01-14  Bruno Haible  <bruno@clisp.org>
1599
1600         * modules/array-oset-tests: New file.
1601         * tests/test-array_oset.c: New file.
1602
1603 2007-01-14  Bruno Haible  <bruno@clisp.org>
1604
1605         * modules/array-list-tests: New file.
1606         * tests/test-array_list.c: New file.
1607
1608 2007-01-14  Bruno Haible  <bruno@clisp.org>
1609
1610         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
1611         and make.
1612         Reported by Simon Josefsson in
1613         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
1614
1615 2007-01-14  Bruno Haible  <bruno@clisp.org>
1616
1617         * modules/allocsa-tests: New file.
1618         * tests/test-allocsa.c: New file.
1619
1620 2007-01-14  Bruno Haible  <bruno@clisp.org>
1621
1622         * modules/fchdir (Depends-on): Add absolute-header.
1623         * modules/unistd (Depends-on): Likewise.
1624
1625 2006-12-30  Bruno Haible  <bruno@clisp.org>
1626
1627         * modules/fchdir: New file.
1628         * modules/unistd (Files): Add lib/unistd_.h.
1629         (Makefile.am): Generate unistd.h from unistd_.h.
1630         * lib/fchdir.c: New file.
1631         * lib/dirent_.h: New file.
1632         * lib/unistd_.h: New file.
1633         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
1634         * m4/fchdir.m4: New file.
1635         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
1636         (gl_HEADER_UNISTD): Invoke it.
1637         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
1638         function.
1639         * lib/backupfile.c (opendir, closedir): Undefine.
1640         * lib/chown.c (open, close): Undefine.
1641         * lib/clean-temp.c (open, close): Undefine.
1642         * lib/copy-file.c (open, close): Undefine.
1643         * lib/execute.c (open, close): Undefine.
1644         * lib/fsusage.c (open, close): Undefine.
1645         * lib/gc-gnulib.c (open, close): Undefine.
1646         * lib/getcwd.c (opendir, closedir): Undefine.
1647         * lib/glob.c (opendir, closedir): Undefine.
1648         * lib/javacomp.c (open, close): Undefine.
1649         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
1650         * lib/openat-proc.c (open, close): Undefine.
1651         * lib/pagealign_alloc.c (open, close): Undefine.
1652         * lib/pipe.c (open, close): Undefine.
1653         * lib/progreloc.c (open, close): Undefine.
1654         * lib/savedir.c (opendir, closedir): Undefine.
1655         * lib/utime.c (open, close): Undefine.
1656         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
1657
1658 2007-01-10  Bruno Haible  <bruno@clisp.org>
1659
1660         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
1661
1662 2007-01-12  Eric Blake  <ebb9@byu.net>
1663
1664         Provide a robust <wchar.h>.  Further simplifications are now
1665         possible in other modules, but not included here.
1666         * modules/wchar: New module.
1667         * m4/wchar.m4: New file.
1668         * lib/wchar_.h: Likewise.
1669         * modules/mbchar (Depends-on): Depend on wchar, as the first use
1670         of the new module.
1671         * MODULES.html.sh (Extended multibyte and wide character utilities):
1672         New section.
1673
1674 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
1675
1676         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
1677         to a reasonable default for memory allocation.
1678         (xreadlink): Don't allocate a huge buffer, to work around a buggy
1679         file system that reports garbage st_size values for symlinks.
1680         Problem reported by Liyang Hu.
1681
1682 2007-01-11  Simon Josefsson  <simon@josefsson.org>
1683
1684         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
1685         Emacs .#* auto-save files).
1686
1687 2007-01-11  Bruno Haible  <bruno@clisp.org>
1688
1689         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
1690         directory.
1691
1692 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
1693
1694         Use @...@ consistently in lib/wctype_.h.
1695         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
1696         on it being set to 1 or 0.
1697         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
1698         go back to AC_SUBSTing it.
1699         * modules/wctype (Makefile.am): Undo previous change.
1700
1701 2007-01-10  Eric Blake  <ebb9@byu.net>
1702
1703         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
1704         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
1705         * modules/wctype (Makefile.am): Likewise.
1706         Reported by Chris McGuire.
1707
1708 2007-01-10  Jim Meyering  <jim@meyering.net>
1709
1710         fts.c: a small readability/maintainability improvement
1711         * lib/fts.c (fts_read): Make this code slightly more readable and
1712         maintainable by hoisting the "sp->fts_cur = p" assignments to
1713         immediately follow the statements that set P.  Derived from
1714         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
1715
1716 2007-01-10  Eric Blake  <ebb9@byu.net>
1717
1718         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
1719         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
1720         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
1721         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
1722         Reported by Chris McGuire.
1723
1724 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1725
1726         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
1727         in sed script.
1728
1729 2007-01-09  Bruno Haible  <bruno@clisp.org>
1730
1731         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
1732         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
1733         variables.
1734         (func_module): Use them.
1735
1736 2007-01-09  Bruno Haible  <bruno@clisp.org>
1737
1738         * modules/unistr/base: New file.
1739         * lib/unistr.h: New file.
1740
1741         * modules/unistr/u8-to-u16: New file.
1742         * lib/unistr/u8-to-u16.c: New file.
1743
1744         * modules/unistr/u8-to-u32: New file.
1745         * lib/unistr/u8-to-u32.c: New file.
1746
1747         * modules/unistr/u16-to-u8: New file.
1748         * lib/unistr/u16-to-u8.c: New file.
1749
1750         * modules/unistr/u16-to-u32: New file.
1751         * lib/unistr/u16-to-u32.c: New file.
1752
1753         * modules/unistr/u32-to-u8: New file.
1754         * lib/unistr/u32-to-u8.c: New file.
1755
1756         * modules/unistr/u32-to-u16: New file.
1757         * lib/unistr/u32-to-u16.c: New file.
1758
1759         * modules/unistr/u8-check: New file.
1760         * modules/unistr/u16-check: New file.
1761         * modules/unistr/u32-check: New file.
1762         * lib/unistr/u8-check.c: New file.
1763         * lib/unistr/u16-check.c: New file.
1764         * lib/unistr/u32-check.c: New file.
1765
1766         * modules/unistr/u8-chr: New file.
1767         * modules/unistr/u16-chr: New file.
1768         * modules/unistr/u32-chr: New file.
1769         * lib/unistr/u8-chr.c: New file.
1770         * lib/unistr/u16-chr.c: New file.
1771         * lib/unistr/u32-chr.c: New file.
1772
1773         * modules/unistr/u8-cmp: New file.
1774         * modules/unistr/u16-cmp: New file.
1775         * modules/unistr/u32-cmp: New file.
1776         * lib/unistr/u8-cmp.c: New file.
1777         * lib/unistr/u16-cmp.c: New file.
1778         * lib/unistr/u32-cmp.c: New file.
1779
1780         * modules/unistr/u8-cpy: New file.
1781         * modules/unistr/u16-cpy: New file.
1782         * modules/unistr/u32-cpy: New file.
1783         * lib/unistr/u8-cpy.c: New file.
1784         * lib/unistr/u16-cpy.c: New file.
1785         * lib/unistr/u32-cpy.c: New file.
1786         * lib/unistr/u-cpy.h: New file.
1787
1788         * modules/unistr/u8-cpy-alloc: New file.
1789         * modules/unistr/u16-cpy-alloc: New file.
1790         * modules/unistr/u32-cpy-alloc: New file.
1791         * lib/unistr/u8-cpy-alloc.c: New file.
1792         * lib/unistr/u16-cpy-alloc.c: New file.
1793         * lib/unistr/u32-cpy-alloc.c: New file.
1794         * lib/unistr/u-cpy-alloc.h: New file.
1795
1796         * modules/unistr/u8-endswith: New file.
1797         * modules/unistr/u16-endswith: New file.
1798         * modules/unistr/u32-endswith: New file.
1799         * lib/unistr/u8-endswith.c: New file.
1800         * lib/unistr/u16-endswith.c: New file.
1801         * lib/unistr/u32-endswith.c: New file.
1802         * lib/unistr/u-endswith.h: New file.
1803
1804         * modules/unistr/u8-mblen: New file.
1805         * modules/unistr/u16-mblen: New file.
1806         * modules/unistr/u32-mblen: New file.
1807         * lib/unistr/u8-mblen.c: New file.
1808         * lib/unistr/u16-mblen.c: New file.
1809         * lib/unistr/u32-mblen.c: New file.
1810
1811         * modules/unistr/u8-mbtouc: New file.
1812         * modules/unistr/u16-mbtouc: New file.
1813         * modules/unistr/u32-mbtouc: New file.
1814         * lib/unistr/u8-mbtouc.c: New file.
1815         * lib/unistr/u16-mbtouc.c: New file.
1816         * lib/unistr/u32-mbtouc.c: New file.
1817
1818         * modules/unistr/u8-mbtouc-safe: New file.
1819         * modules/unistr/u16-mbtouc-safe: New file.
1820         * modules/unistr/u32-mbtouc-safe: New file.
1821         * lib/unistr/u8-mbtouc-safe.c: New file.
1822         * lib/unistr/u16-mbtouc-safe.c: New file.
1823         * lib/unistr/u32-mbtouc-safe.c: New file.
1824
1825         * modules/unistr/u8-move: New file.
1826         * modules/unistr/u16-move: New file.
1827         * modules/unistr/u32-move: New file.
1828         * lib/unistr/u8-move.c: New file.
1829         * lib/unistr/u16-move.c: New file.
1830         * lib/unistr/u32-move.c: New file.
1831         * lib/unistr/u-move.h: New file.
1832
1833         * modules/unistr/u8-next: New file.
1834         * modules/unistr/u16-next: New file.
1835         * modules/unistr/u32-next: New file.
1836         * lib/unistr/u8-next.c: New file.
1837         * lib/unistr/u16-next.c: New file.
1838         * lib/unistr/u32-next.c: New file.
1839
1840         * modules/unistr/u8-prev: New file.
1841         * modules/unistr/u16-prev: New file.
1842         * modules/unistr/u32-prev: New file.
1843         * lib/unistr/u8-prev.c: New file.
1844         * lib/unistr/u16-prev.c: New file.
1845         * lib/unistr/u32-prev.c: New file.
1846
1847         * modules/unistr/u8-set: New file.
1848         * modules/unistr/u16-set: New file.
1849         * modules/unistr/u32-set: New file.
1850         * lib/unistr/u8-set.c: New file.
1851         * lib/unistr/u16-set.c: New file.
1852         * lib/unistr/u32-set.c: New file.
1853         * lib/unistr/u-set.h: New file.
1854
1855         * modules/unistr/u8-startswith: New file.
1856         * modules/unistr/u16-startswith: New file.
1857         * modules/unistr/u32-startswith: New file.
1858         * lib/unistr/u8-startswith.c: New file.
1859         * lib/unistr/u16-startswith.c: New file.
1860         * lib/unistr/u32-startswith.c: New file.
1861         * lib/unistr/u-startswith.h: New file.
1862
1863         * modules/unistr/u8-stpcpy: New file.
1864         * modules/unistr/u16-stpcpy: New file.
1865         * modules/unistr/u32-stpcpy: New file.
1866         * lib/unistr/u8-stpcpy.c: New file.
1867         * lib/unistr/u16-stpcpy.c: New file.
1868         * lib/unistr/u32-stpcpy.c: New file.
1869         * lib/unistr/u-stpcpy.h: New file.
1870
1871         * modules/unistr/u8-stpncpy: New file.
1872         * modules/unistr/u16-stpncpy: New file.
1873         * modules/unistr/u32-stpncpy: New file.
1874         * lib/unistr/u8-stpncpy.c: New file.
1875         * lib/unistr/u16-stpncpy.c: New file.
1876         * lib/unistr/u32-stpncpy.c: New file.
1877         * lib/unistr/u-stpncpy.h: New file.
1878
1879         * modules/unistr/u8-strcat: New file.
1880         * modules/unistr/u16-strcat: New file.
1881         * modules/unistr/u32-strcat: New file.
1882         * lib/unistr/u8-strcat.c: New file.
1883         * lib/unistr/u16-strcat.c: New file.
1884         * lib/unistr/u32-strcat.c: New file.
1885         * lib/unistr/u-strcat.h: New file.
1886
1887         * modules/unistr/u8-strchr: New file.
1888         * modules/unistr/u16-strchr: New file.
1889         * modules/unistr/u32-strchr: New file.
1890         * lib/unistr/u8-strchr.c: New file.
1891         * lib/unistr/u16-strchr.c: New file.
1892         * lib/unistr/u32-strchr.c: New file.
1893
1894         * modules/unistr/u8-strcmp: New file.
1895         * modules/unistr/u16-strcmp: New file.
1896         * modules/unistr/u32-strcmp: New file.
1897         * lib/unistr/u8-strcmp.c: New file.
1898         * lib/unistr/u16-strcmp.c: New file.
1899         * lib/unistr/u32-strcmp.c: New file.
1900
1901         * modules/unistr/u8-strcpy: New file.
1902         * modules/unistr/u16-strcpy: New file.
1903         * modules/unistr/u32-strcpy: New file.
1904         * lib/unistr/u8-strcpy.c: New file.
1905         * lib/unistr/u16-strcpy.c: New file.
1906         * lib/unistr/u32-strcpy.c: New file.
1907         * lib/unistr/u-strcpy.h: New file.
1908
1909         * modules/unistr/u8-strcspn: New file.
1910         * modules/unistr/u16-strcspn: New file.
1911         * modules/unistr/u32-strcspn: New file.
1912         * lib/unistr/u8-strcspn.c: New file.
1913         * lib/unistr/u16-strcspn.c: New file.
1914         * lib/unistr/u32-strcspn.c: New file.
1915         * lib/unistr/u-strcspn.h: New file.
1916
1917         * modules/unistr/u8-strdup: New file.
1918         * modules/unistr/u16-strdup: New file.
1919         * modules/unistr/u32-strdup: New file.
1920         * lib/unistr/u8-strdup.c: New file.
1921         * lib/unistr/u16-strdup.c: New file.
1922         * lib/unistr/u32-strdup.c: New file.
1923         * lib/unistr/u-strdup.h: New file.
1924
1925         * modules/unistr/u8-strlen: New file.
1926         * modules/unistr/u16-strlen: New file.
1927         * modules/unistr/u32-strlen: New file.
1928         * lib/unistr/u8-strlen.c: New file.
1929         * lib/unistr/u16-strlen.c: New file.
1930         * lib/unistr/u32-strlen.c: New file.
1931         * lib/unistr/u-strlen.h: New file.
1932
1933         * modules/unistr/u8-strmblen: New file.
1934         * modules/unistr/u16-strmblen: New file.
1935         * modules/unistr/u32-strmblen: New file.
1936         * lib/unistr/u8-strmblen.c: New file.
1937         * lib/unistr/u16-strmblen.c: New file.
1938         * lib/unistr/u32-strmblen.c: New file.
1939
1940         * modules/unistr/u8-strmbtouc: New file.
1941         * modules/unistr/u16-strmbtouc: New file.
1942         * modules/unistr/u32-strmbtouc: New file.
1943         * lib/unistr/u8-strmbtouc.c: New file.
1944         * lib/unistr/u16-strmbtouc.c: New file.
1945         * lib/unistr/u32-strmbtouc.c: New file.
1946
1947         * modules/unistr/u8-strncat: New file.
1948         * modules/unistr/u16-strncat: New file.
1949         * modules/unistr/u32-strncat: New file.
1950         * lib/unistr/u8-strncat.c: New file.
1951         * lib/unistr/u16-strncat.c: New file.
1952         * lib/unistr/u32-strncat.c: New file.
1953         * lib/unistr/u-strncat.h: New file.
1954
1955         * modules/unistr/u8-strncmp: New file.
1956         * modules/unistr/u16-strncmp: New file.
1957         * modules/unistr/u32-strncmp: New file.
1958         * lib/unistr/u8-strncmp.c: New file.
1959         * lib/unistr/u16-strncmp.c: New file.
1960         * lib/unistr/u32-strncmp.c: New file.
1961
1962         * modules/unistr/u8-strncpy: New file.
1963         * modules/unistr/u16-strncpy: New file.
1964         * modules/unistr/u32-strncpy: New file.
1965         * lib/unistr/u8-strncpy.c: New file.
1966         * lib/unistr/u16-strncpy.c: New file.
1967         * lib/unistr/u32-strncpy.c: New file.
1968         * lib/unistr/u-strncpy.h: New file.
1969
1970         * modules/unistr/u8-strnlen: New file.
1971         * modules/unistr/u16-strnlen: New file.
1972         * modules/unistr/u32-strnlen: New file.
1973         * lib/unistr/u8-strnlen.c: New file.
1974         * lib/unistr/u16-strnlen.c: New file.
1975         * lib/unistr/u32-strnlen.c: New file.
1976         * lib/unistr/u-strnlen.h: New file.
1977
1978         * modules/unistr/u8-strpbrk: New file.
1979         * modules/unistr/u16-strpbrk: New file.
1980         * modules/unistr/u32-strpbrk: New file.
1981         * lib/unistr/u8-strpbrk.c: New file.
1982         * lib/unistr/u16-strpbrk.c: New file.
1983         * lib/unistr/u32-strpbrk.c: New file.
1984         * lib/unistr/u-strpbrk.h: New file.
1985
1986         * modules/unistr/u8-strrchr: New file.
1987         * modules/unistr/u16-strrchr: New file.
1988         * modules/unistr/u32-strrchr: New file.
1989         * lib/unistr/u8-strrchr.c: New file.
1990         * lib/unistr/u16-strrchr.c: New file.
1991         * lib/unistr/u32-strrchr.c: New file.
1992
1993         * modules/unistr/u8-strspn: New file.
1994         * modules/unistr/u16-strspn: New file.
1995         * modules/unistr/u32-strspn: New file.
1996         * lib/unistr/u8-strspn.c: New file.
1997         * lib/unistr/u16-strspn.c: New file.
1998         * lib/unistr/u32-strspn.c: New file.
1999         * lib/unistr/u-strspn.h: New file.
2000
2001         * modules/unistr/u8-strstr: New file.
2002         * modules/unistr/u16-strstr: New file.
2003         * modules/unistr/u32-strstr: New file.
2004         * lib/unistr/u8-strstr.c: New file.
2005         * lib/unistr/u16-strstr.c: New file.
2006         * lib/unistr/u32-strstr.c: New file.
2007         * lib/unistr/u-strstr.h: New file.
2008
2009         * modules/unistr/u8-strtok: New file.
2010         * modules/unistr/u16-strtok: New file.
2011         * modules/unistr/u32-strtok: New file.
2012         * lib/unistr/u8-strtok.c: New file.
2013         * lib/unistr/u16-strtok.c: New file.
2014         * lib/unistr/u32-strtok.c: New file.
2015         * lib/unistr/u-strtok.h: New file.
2016
2017         * modules/unistr/u8-uctomb: New file.
2018         * modules/unistr/u16-uctomb: New file.
2019         * modules/unistr/u32-uctomb: New file.
2020         * lib/unistr/u8-uctomb.c: New file.
2021         * lib/unistr/u16-uctomb.c: New file.
2022         * lib/unistr/u32-uctomb.c: New file.
2023
2024         * MODULES.html.sh (Unicode string functions): Add the new modules.
2025
2026 2007-01-08  Bruno Haible  <bruno@clisp.org>
2027
2028         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
2029         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
2030         subdirectories.
2031
2032 2007-01-08  Karl Berry  <karl@gnu.org>
2033
2034         * doc/error.texi: mention that main() fns must set program_name
2035         when progname is used.
2036
2037 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
2038
2039         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
2040         WCTYPE_H is empty, for the benefit of builds from non-distclean
2041         directories.  Problem reported by Eric Blake in
2042         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
2043
2044 2007-01-08  Bruno Haible  <bruno@clisp.org>
2045
2046         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
2047         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
2048         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
2049         PROVIDE_CANONICALIZE_FILENAME_MODE.
2050         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
2051
2052 2007-01-08  Bruno Haible  <bruno@clisp.org>
2053
2054         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
2055         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
2056         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
2057         * lib/fts.c: Likewise.
2058         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
2059
2060 2006-12-25  Bruno Haible  <bruno@clisp.org>
2061
2062         * modules/utf8-ucs4-safe: New file.
2063         * lib/utf8-ucs4-safe.h: New file.
2064         * lib/unistr/utf8-ucs4-safe.c: New file.
2065
2066         * modules/utf16-ucs4-safe: New file.
2067         * lib/utf16-ucs4-safe.h: New file.
2068         * lib/unistr/utf16-ucs4-safe.c: New file.
2069
2070         * MODULES.html.sh (Unicode string functions): Add the new modules.
2071
2072 2007-01-08  Bruno Haible  <bruno@clisp.org>
2073
2074         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
2075         (Depends-on): Add unitypes.
2076         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
2077         (u8_mbtouc_aux): Move out to separate file.
2078         (u8_mbtouc): Use ucs4_t, uint8_t types.
2079         * lib/unistr/utf8-ucs4.c: New file.
2080
2081         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
2082         (Depends-on): Add unitypes.
2083         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
2084         (u16_mbtouc_aux): Move out to separate file.
2085         (u16_mbtouc): Use ucs4_t, uint16_t types.
2086         * lib/unistr/utf16-ucs4.c: New file.
2087
2088         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
2089         (Depends-on): Add unitypes.
2090         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
2091         (u8_uctomb_aux): Move out to separate file.
2092         (u8_uctomb): Use ucs4_t, uint8_t types.
2093         * lib/unistr/ucs4-utf8.c: New file.
2094
2095         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
2096         (Depends-on): Add unitypes.
2097         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
2098         (u16_uctomb_aux): Move out to separate file.
2099         (u16_uctomb): Use ucs4_t, uint16_t types.
2100         * lib/unistr/ucs4-utf16.c: New file.
2101
2102 2006-12-25  Bruno Haible  <bruno@clisp.org>
2103
2104         * modules/unitypes: New file.
2105         * lib/unitypes.h: New file.
2106         * MODULES.html.sh (func_all_modules): New section "Unicode string
2107         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
2108         this section. Add unitypes.
2109
2110 2007-01-08  Bruno Haible  <bruno@clisp.org>
2111
2112         Avoid variable names that conflict with those from libtool.
2113         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
2114         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
2115         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
2116         library_names_spec to acl_library_names_spec, hardcode_* to
2117         acl_hardcode_*.
2118         Reported by Ralf Wildenhues.
2119
2120 2007-01-08  Bruno Haible  <bruno@clisp.org>
2121
2122         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
2123         definition.
2124         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
2125         definition.
2126         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
2127         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
2128         definition.
2129         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
2130         definition.
2131         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
2132         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
2133         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
2134         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
2135         definition.
2136         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
2137         definition.
2138         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
2139         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
2140         GC_USE_<algorithm>.
2141         * lib/gc-libgcrypt.c: Likewise.
2142         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
2143         * modules/gc-arctwo (configure.ac): Likewise.
2144         * modules/gc-des (configure.ac): Likewise.
2145         * modules/gc-hmac-md5 (configure.ac): Likewise.
2146         * modules/gc-hmac-sha1 (configure.ac): Likewise.
2147         * modules/gc-md2 (configure.ac): Likewise.
2148         * modules/gc-md4 (configure.ac): Likewise.
2149         * modules/gc-md5 (configure.ac): Likewise.
2150         * modules/gc-random (configure.ac): Likewise.
2151         * modules/gc-rijndael (configure.ac): Likewise.
2152         * modules/gc-sha1 (configure.ac): Likewise.
2153
2154 2007-01-08  Bruno Haible  <bruno@clisp.org>
2155
2156         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
2157         macro definition.
2158         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
2159         definition.
2160         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
2161         definition.
2162         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
2163         * modules/fcntl-safer (configure.ac): Likewise.
2164         * modules/fopen-safer (configure.ac): Likewise.
2165         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
2166         GNULIB_FWRITEERROR macro definition.
2167
2168 2007-01-08  Bruno Haible  <bruno@clisp.org>
2169
2170         * m4/gnulib-common.m4: New file.
2171         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
2172         (func_get_filelist): Add m4/gnulib-common.m4.
2173
2174 2007-01-08  Bruno Haible  <bruno@clisp.org>
2175
2176         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
2177         command.
2178
2179 2007-01-08  Jim Meyering  <jim@meyering.net>
2180
2181         Use a more robust test for a "can't happen" condition.
2182         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
2183         narrowed the st_size value.  Presuming the "can't happen" condition
2184         is true, that narrowing could conceivably convert an invalid st_size
2185         value into a valid one.  Instead, use a change based on Matthew
2186         Woehlke's original patch.
2187
2188         Slight readability improvement: use an assert-like macro
2189         in place of literal "abort ()" uses.
2190         * lib/fts.c (fts_assert): Define.
2191         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
2192         Use this macro instead of a bare 'abort'.
2193
2194 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
2195
2196         Don't worry about using IRIX 5.3's wctype.h broken definitions;
2197         simply work around them.
2198         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
2199         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
2200         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before declaring.
2201         Don't bother to define as macros, since the standard doesn't require it.
2202         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
2203         longer worry about IRIX 5.3.
2204         (HAVE_WCTYPE_CTMP_BUG): Remove.
2205
2206 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
2207
2208         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
2209         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
2210         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
2211         Problems reported by Georg Schwarz for IRIX 5.3.
2212
2213         * gnulib-tool (autoconf_minversion): Take the maximum version number
2214         found, not the minimum.  Problem reported by James Youngman.
2215
2216 2007-01-03  Karl Berry  <karl@gnu.org>
2217
2218         * doc/error.texi: new file, explaining interaction with progname.
2219         * doc/gnulib.texi: include it.  Update copyright.
2220
2221 2007-01-03  Simon Josefsson  <simon@josefsson.org>
2222
2223         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
2224         AC_CANONICAL_HOST, to improve autobuild outputs.
2225
2226 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
2227             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
2228
2229         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
2230         sockets, server sockets, and other file descriptors.  Count errors
2231         to compute the return value.  Reorder the code a bit to be easier
2232         to follow.  Don't set event bits that were not requested (except
2233         POLLERR and POLLHUP).
2234
2235 2007-01-01  Bruno Haible  <bruno@clisp.org>
2236
2237         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
2238
2239 2007-01-03  Jim Meyering  <jim@meyering.net>
2240
2241         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
2242
2243 2007-01-02  Bruno Haible  <bruno@clisp.org>
2244
2245         * modules/settime (Include): Require timespec.h.
2246         * modules/nanosleep (Include): Likewise.
2247
2248 2007-01-01  Bruno Haible  <bruno@clisp.org>
2249
2250         * gnulib-tool (func_emit_copyright_notice): Bump year.
2251         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
2252
2253 2007-01-01  Bruno Haible  <bruno@clisp.org>
2254
2255         Improve support for OpenBSD.
2256         * build-aux/config.rpath (libname_spec): Export.
2257         (library_names_spec): New variable. Export.
2258         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
2259         library_names_spec from the config.rpath output. Locate shared library
2260         through the name pattern in library_names_spec.
2261
2262 2007-01-01  Eric Blake  <ebb9@byu.net>
2263
2264         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
2265
2266 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
2267
2268         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
2269         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
2270         assume the C locale, and avoid an "eval" that could cause trouble.
2271         Problem with SORT reported by Bob Proulx.
2272
2273         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
2274         Define.  Trivial patch from Henning Nielsen Lund, originally
2275         sent to bug-grep@gnu.org today.
2276
2277 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
2278
2279         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
2280         struct stat.  Problem reported by Henning Nielsen Lund.
2281         * lib/acl.c: Include acl.h first, to check interface.  Don't
2282         bother to include sys/types.h and sys/stat.h again.
2283
2284 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
2285
2286         Import the following change from libc; problem reported by
2287         Sven Verdoolaege.
2288
2289         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
2290
2291         [BZ #1373]
2292         * lib/argp.h: Remove __NTH for __argp_usage inline function.
2293
2294 2006-12-28  Jim Meyering  <jim@meyering.net>
2295
2296         * build-aux/announce-gen: Do not assume that the package
2297         builds any of tar.gz, tar.bz2, and .xdelta files.
2298         Suggestion from Simon Josefsson.
2299
2300 2006-12-28  Simon Josefsson  <simon@josefsson.org>
2301
2302         * modules/announce-gen: New file.
2303
2304 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
2305
2306         * lib/mbchar.h: Just include <wctype.h>; the wctype module
2307         handles its gotchas now.
2308         * lib/mbswidth.c: Likewise.
2309         * lib/wcwidth.h: Likewise.
2310         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
2311         and iswcntrl; the wctype module does this stuff now.
2312         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
2313         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
2314         * modules/mbchar (Depends-on): Add wctype.
2315         * modules/mbswidth (Depends-on): Likewise.
2316         * modules/wcwidth (Depends-on): Likewise.
2317
2318 2006-12-27  Eric Blake  <ebb9@byu.net>
2319
2320         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
2321         module uses more than what <wctype.h> is required to provide.
2322
2323 2006-12-26  Eric Blake  <ebb9@byu.net>
2324
2325         * gnulib-tool (sed_extract_prog): Avoid space-tab.
2326
2327 2006-12-26  Eric Blake  <ebb9@byu.net>
2328
2329         * modules/absolute-header: New module.
2330         * modules/fcntl (Depends-on): Depend on it.
2331         * modules/inttypes (Depends-on): Likewise.
2332         * modules/stdint (Depends-on): Likewise.
2333         * modules/sys_stat (Depends-on): Likewise.
2334         * modules/wctype (Depends-on): Likewise.
2335         * MODULES.html.sh (Support for building libraries and
2336         executables): Document it.
2337
2338 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
2339
2340         * gnulib-tool (SED): Remove, undoing previous change.
2341         The problem was that it broke coreutils on Solaris, because
2342         "sed --posix" leaked into a makefile.
2343         (sed): New alias, if 'alias' and GNU sed.
2344
2345 2006-12-24  Jim Meyering  <jim@meyering.net>
2346
2347         Work around an fchownat bug in glibc-2.4:
2348         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
2349         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
2350         in spite of the -P option.
2351         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
2352         New macros.
2353         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
2354         * modules/openat (Files): Add lib/fchownat.c.
2355         * lib/openat.c (fchownat): Don't define here.  Move to...
2356         * lib/fchownat.c: ...this new file.
2357
2358 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
2359
2360         Fix bug reported by Bruno Haible in
2361         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
2362         where quotearg.c didn't compile on Mac OS X 10.2 because it
2363         lacks <wchar.h> and wint_t.
2364         * lib/wctype_.h (__wctype_wint_t): New type.
2365         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
2366         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
2367         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
2368         Arg is now of type __wctype_wint_t, not wint_t.
2369         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
2370         substitute HAVE_WINT_T.
2371         * modules/wctype (Files): Add m4/wint_t.m4.
2372         (wctype.h): Substitute HAVE_WINT_T.
2373
2374 2006-12-23  Bruno Haible  <bruno@clisp.org>
2375
2376         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
2377
2378 2006-12-23  Bruno Haible  <bruno@clisp.org>
2379
2380         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
2381         S_ISLNK.
2382         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
2383         mingw.
2384
2385 2006-12-22  Bruno Haible  <bruno@clisp.org>
2386
2387         * lib/copy-file.c: Include acl.h.
2388         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
2389         Close the file descriptors only after being done with copy_acl.
2390         * modules/copy-file (Depends-on): Add acl.
2391
2392 2006-12-22  Bruno Haible  <bruno@clisp.org>
2393
2394         * gnulib-tool (SED): New variable.
2395         Use $SED instead of sed everywhere.
2396
2397 2006-12-22  Bruno Haible  <bruno@clisp.org>
2398
2399         * modules/no-c++: New file.
2400         * m4/no-c++.m4: New file.
2401         * MODULES.html.sh (Support for building libraries and executables):
2402         Add no-c++.
2403
2404 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
2405
2406         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
2407         Include <limits.h>, and use its INT_MAX to rewrite the
2408         j loop so that it does not overflow 'int'.  Problem reported by
2409         Ralf Wildenhues in
2410         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
2411         Play it safe by shifting left by 1 rather than multiplying by 2,
2412         as GCC is less likely to optimize this away when the value
2413         is signed (when it assumes overflow leads to undefined behavior).
2414         Also, don't assume time_t uses two's complement.
2415
2416 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
2417
2418         * MODULES.html.sh: New module wctype.
2419         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
2420         * lib/fnmatch.c: Don't bother to include <wchar.h> before
2421         <wctype.h>, since the new wctype module should fix this.
2422         * lib/quotearg.c: Include <wctype.h> unconditionally, since
2423         the wctype module should arrange for it.
2424         * lib/regex_internal.h: Likewise.
2425         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
2426         since the wctype module should handle this now.
2427         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
2428         * modules/fnmatch (Depends-on): Add wctype.
2429         * modules/quotearg (Depends-on): Likewise.
2430         * modules/regex (Depends-on): Likewise.
2431
2432 2006-12-19  Bruno Haible  <bruno@clisp.org>
2433
2434         * lib/strdup.h [C++]: Wrap definitions in extern "C".
2435         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
2436
2437 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2438
2439         * modules/savewd (Depends-on): Fix dependency on fcntl.
2440
2441 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
2442
2443         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
2444         conforms to C99, rather than relying on the user's environment
2445         setting of STDINT_H.
2446
2447 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
2448         and Eric Blake  <ebb9@byu.net>
2449
2450         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
2451         This is more consistent with the other defines here.
2452         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
2453         Port to z/OS.  Problem reported by Paul Gilmartin.
2454         Change local vars to use gl_ prefix rather than ac_.
2455         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
2456         with other defines.
2457         * modules/double-slash-root: New module.
2458         * modules/dirname (Files): Remove m4/double-slash-root.m4.
2459         (Depends-on): Add double-slash-root.
2460         * MODULES.html.sh (File system functions): Mention new module.
2461
2462 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
2463
2464         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
2465         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
2466         This is for the benefit of gzip, which doesn't do i18n.
2467
2468 2006-12-12  Jim Meyering  <jim@meyering.net>
2469
2470         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
2471         Reported by Andreas Schwab <schwab@suse.de>.
2472
2473 2006-12-12  Bruno Haible  <bruno@clisp.org>
2474
2475         Merge these changes.
2476         2006-09-05  Bruno Haible  <bruno@clisp.org>
2477         * lib/iconvme.c (iconv_string): No need to save and restore errno when
2478         iconv_alloc succeeded.
2479         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
2480         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
2481         test for " && dest " at the end - dest is always != NULL there. Call
2482         iconv with 4xNULL arguments initially, to reset the state. Call iconv
2483         with 2xNULL arguments, also to flush the state storage. Handle the
2484         IRIX iconv behaviour. Realloc the final result, to throw away unused
2485         memory.
2486
2487 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
2488
2489         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
2490         and fchmodat unconditionally, since glibc 2.4 has them.
2491         Problem reported by Arkadiusz Miskiewicz.
2492
2493 2006-12-10  Bruno Haible  <bruno@clisp.org>
2494
2495         * gnulib-tool (func_import): Show the include files only for those
2496         modules that are copied and specified.
2497         Reported by Karl Berry.
2498
2499 2006-12-08  Jim Meyering  <jim@meyering.net>
2500
2501         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
2502         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
2503
2504         * build-aux/announce-gen: Add two new options, both optional:
2505         --bootstrap-tools=TOOL_LIST
2506               a comma-separated list of tools, e.g.,
2507               autoconf,automake,bison,gnulib
2508         --gnulib-snapshot-date=DATE
2509               if gnulib is in the bootstrap tool list,
2510               then report this as the snapshot date.
2511               If not specified, use the current date/time.
2512               If you specify a date here, be sure it's UTC.
2513
2514 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2515
2516         * tests/test-argp-2.sh: Fix test to match actual output.
2517         (func_compare): Fix sed script to be portable.
2518
2519 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
2520
2521         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
2522         workaround for this case.  It is not autoconfigured now; offhand
2523         it's hard to see how to autoconfigure it.
2524
2525 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
2526
2527         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
2528         a directory that is about to be chowned.  Such a directory's
2529         initial file permissions should permit the owner only and this
2530         should not be changed until after the chown, since the group and
2531         other bits would be incorrect if they granted permission before
2532         the chown.
2533
2534         Fix porting problem for iswctype reported by Georg Schwarz in:
2535         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
2536         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
2537         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
2538         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
2539         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
2540
2541 2006-12-03  Jim Meyering  <jim@meyering.net>
2542
2543         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
2544         p->fts_statp may not yet be defined.
2545         (fts_read): Instead, set it in the caller, once p->fts_statp is
2546         sure to be defined, and corresponds to a top-level directory.
2547         This bug made du -x fail.  Here's the coreutils test case:
2548         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
2549         Reported by Mike Frysinger.
2550
2551 2006-12-01  Jim Meyering  <jim@meyering.net>
2552
2553         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
2554         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
2555         Reported by Simon Josefsson.
2556
2557 2006-11-30  Jim Meyering  <jim@meyering.net>
2558
2559         * m4/warning.m4: Use the all-permissive copyright notice
2560         recommended by RMS (rather than LGPL).
2561         * m4/vararrays.m4: Likewise.
2562         * m4/flexmember.m4: Likewise.
2563
2564 2006-11-29  Bruno Haible  <bruno@clisp.org>
2565
2566         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
2567         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
2568         using +=.
2569         Reported by Simon Josefsson <simon@josefsson.org>.
2570
2571 2006-11-28  James Youngman <jay@gnu.org>
2572
2573         * README: Advise users that they might find the bug-gnulib@gnu.org
2574         and autotools-announce@gnu.org mailing lists useful.
2575
2576 2006-11-28  Bruno Haible  <bruno@clisp.org>
2577
2578         * m4/ptrdiff_max.m4: Remove file.
2579
2580 2006-11-21  Bruno Haible  <bruno@clisp.org>
2581
2582         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
2583         _AC_COMPUTE_INT.
2584         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
2585         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
2586         _AC_COMPUTE_INT.
2587         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
2588         * m4/size_max.m4 (gl_SIZE_MAX): 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-28  Jim Meyering  <jim@meyering.net>
2593
2594         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
2595         warning from "gcc -Wshadow" about shadowing the builtin.
2596
2597 2006-11-27  Bruno Haible  <bruno@clisp.org>
2598
2599         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
2600         _AC_COMPUTE_INT.
2601         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
2602
2603 2006-11-27  Bruno Haible  <bruno@clisp.org>
2604             Paul Eggert  <eggert@cs.ucla.edu>
2605
2606         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
2607
2608 2006-11-26  Bruno Haible  <bruno@clisp.org>
2609
2610         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
2611         noinst_LTLIBRARIES.
2612
2613 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
2614             Bruno Haible  <bruno@clisp.org>
2615
2616         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
2617         if compiling with "gcc -ansi".
2618
2619 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
2620
2621         Fix some incompatibilities with gcc -ansi -pedantic.
2622         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
2623         if compiling pedantically with GCC, unless it's C99 or later.
2624         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
2625         it mishandles gcc -ansi -pedantic as well.
2626         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
2627         if gcc -pedantic.
2628         * lib/regexec.c (check_node_accept_bytes): Don't use auto
2629         initializers for struct if -pedantic, unless it's C99 or later.
2630
2631 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
2632
2633         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
2634         Don't close an fd more than once. Identical atimes indicate
2635         success, not failure.
2636
2637 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
2638
2639         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
2640
2641 2006-11-23  Jim Meyering  <jim@meyering.net>
2642
2643         * build-aux/announce-gen: New file.  From coreutils.
2644
2645 2006-11-22  Jim Meyering  <jim@meyering.net>
2646
2647         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
2648         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
2649         (fts_read): Use a temporary to narrow the overused st_size member
2650         before using it in a switch statement.  Reported by Matthew Woehlke.
2651
2652         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
2653         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
2654
2655 2006-11-20  Bruno Haible  <bruno@clisp.org>
2656
2657         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
2658         changequote instead of pairs of brackets.
2659         Reported by Andreas Schwab <schwab@suse.de>.
2660
2661 2006-11-21  Jim Meyering  <jim@meyering.net>
2662
2663         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
2664         so as to remain compatible with older compilers.
2665         Patch from Michael Deutschmann.
2666
2667 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
2668
2669         * MODULES.html.sh (File system functions): Add openat.
2670
2671         * lib/openat.h (rpl_fstatat): New macro, if
2672         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
2673         (fstatat): Define to rpl_fstatat under the same conditions,
2674         unless COMPILING_FSTATAT.
2675         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
2676         seems to have the bug.
2677         * lib/fstatat.c: New file.
2678         * modules/openat (Files): Add it.
2679
2680 2006-11-20  Bruno Haible  <bruno@clisp.org>
2681
2682         * Makefile: New file.
2683
2684 2006-11-20  Jim Meyering  <jim@meyering.net>
2685
2686         The beginnings of syntax-related checks for gnulib.
2687         * lib/Makefile: New file.
2688         * lib/t-idcache: New script.  Ensure that the two halves of
2689         idcache.c stay in sync.
2690
2691         * lib/idcache.c: Adjust comments in user- and group- portions to
2692         be more accurate, and to be consistent with one another.
2693
2694 2006-11-20  Jim Meyering  <jim@meyering.net>
2695
2696         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
2697         continue using the flexible array member (thus, this module performs
2698         half as many malloc calls), with the addition that...
2699         (getgroup, getuser): Consistently record a non-match via an empty
2700         "name" string, and map an empty string match to a NULL return value.
2701         * modules/idcache (Depends-on): Re-add flexmember.
2702
2703         * lib/idcache.c (getuser): Remove all uses of the register keyword.
2704         (getuidbyname, getgroup, getgidbyname): Likewise.
2705
2706         Use cleaner syntax: NULL rather than 0.
2707         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
2708
2709 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
2710
2711         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
2712         It mishandled the case where the group was missing.
2713         Problem reported by Greg Schafer.
2714         * modules/idcache: Likewise.
2715
2716 2006-11-18  Jim Meyering  <jim@meyering.net>
2717
2718         * check-module (%exempt_header): Add exception for some
2719         conditionally-included headers.
2720
2721         * modules/i-ring (Depends-on): Add verify.
2722         (License): Change to LGPL.
2723
2724 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
2725
2726         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
2727         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
2728         and inttostr.h.  Use snprintf rather than uinttostr, so that
2729         LGPLed code doesn't depend on GPLed.
2730
2731 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
2732
2733         * modules/inline (License): Change from GPL to LGPL.
2734
2735 2006-11-17  Jim Meyering  <jim@meyering.net>
2736
2737         * modules/d-type (License): Switch to LGPL.
2738
2739 2006-11-15  Bruno Haible  <bruno@clisp.org>
2740
2741         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
2742
2743 2006-11-15  Eric Blake  <ebb9@byu.net>
2744
2745         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
2746         the module dependency.
2747
2748 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
2749             Bruno Haible  <bruno@clisp.org>
2750
2751         * gnulib-tool (func_create_testdir): Add license consistency check.
2752
2753 2006-11-15  Eric Blake  <ebb9@byu.net>
2754
2755         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
2756         random "(cached)" in configure output.
2757
2758 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2759
2760         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
2761         test for conforming inttypes.h is both announced and cached.
2762
2763         * MODULES.html.sh (seen_modules, seen_files): New variables.
2764         (func_module): Rewrite to use a few less gnulib-tool and sed
2765         invocations.  Avoid a couple of quadratic algorithms for ...
2766         (missed_modules, missed_files): ... these, with ...
2767         (func_append, func_tmpdir): ... these new functions, from
2768         gnulib-tool.  Analogously, install traps for cleanup.
2769
2770         * tests/test-gc.c (main): Remove unused variables.
2771         * tests/test-read-file.c: Include stdlib.h, for 'free'.
2772
2773 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
2774
2775         * modules/inttostr (License): Change to LGPL.
2776
2777 2006-11-14  Eric Blake  <ebb9@byu.net>
2778
2779         * modules/tempname (License): Change to LGPL.
2780
2781 2006-11-14  Eric Blake  <ebb9@byu.net>
2782
2783         * doc/functions.texi (Function Portability): *printf functions on
2784         Cygwin now understand all POSIX size specifiers.
2785
2786 2006-11-14  Bruno Haible  <bruno@clisp.org>
2787
2788         * modules/c-ctype (License): Change to LGPL.
2789
2790 2006-11-12  Bruno Haible  <bruno@clisp.org>
2791
2792         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
2793         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
2794         for GNOME libraries, for which the include files are installed in
2795         subdirectories of $prefix/include.
2796
2797 2006-11-12  Bruno Haible  <bruno@clisp.org>
2798
2799         * m4/lib-link.m4: Require at least autoconf-2.54.
2800         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
2801         name to underscores for the --with option.
2802
2803 2006-11-13  Bruno Haible  <bruno@clisp.org>
2804
2805         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
2806         the tests directory.
2807         Reported by Ralf Wildenhues.
2808
2809 2006-11-13  Bruno Haible  <bruno@clisp.org>
2810
2811         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
2812         (func_emit_initmacro_end): Undo the override here.
2813         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
2814         Works around the famous automake error in coreutils.
2815
2816 2006-11-13  Eric Blake  <ebb9@byu.net>
2817
2818         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
2819         element, not its node.
2820
2821 2006-11-12  Bruno Haible  <bruno@clisp.org>
2822
2823         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
2824         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
2825
2826 2006-11-12  Bruno Haible  <bruno@clisp.org>
2827
2828         * gnulib-tool: New option --local-symlink.
2829         (func_usage): Document it.
2830         (lsymbolic): New variable.
2831         (func_import, func_create_testdir): If --symlink was not specified,
2832         test whether --local-symlink was specified and the file comes from
2833         the local_gnulib_dir.
2834
2835 2006-11-12  Bruno Haible  <bruno@clisp.org>
2836
2837         * gnulib-tool (func_ln): New function.
2838         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
2839
2840 2006-11-12  Bruno Haible  <bruno@clisp.org>
2841
2842         Finish support for source files in subdirectories.
2843         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
2844         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
2845         AUTOMAKE_OPTIONS.
2846         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
2847
2848 2006-11-12  Bruno Haible  <bruno@clisp.org>
2849
2850         * gnulib-tool (func_get_automake_snippet): Synthesize also an
2851         EXTRA_lib_SOURCES augmentation.
2852         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
2853
2854 2006-11-12  Jim Meyering  <jim@meyering.net>
2855
2856         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
2857         file descriptors.  This also averts a failure on systems with
2858         native openat support when a traversed directory lacks "x" access.
2859         * lib/fts_.h: Include "i-ring.h"
2860         (struct FTS) [fts_fd_ring]: New member.
2861         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
2862         (FCHDIR): Add parentheses.
2863         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
2864         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
2865         When descending, rather than simply closing the previous
2866         fts_cwd_fd value, push that file descriptor onto the ring.
2867         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
2868         (fts_open): Initialize the new fd_ring member.
2869         (fts_close): Clear the ring.
2870         (fts_safe_changedir): When possible, use our new fd_ring to skip
2871         the diropen and fstat and dev/ino comparison that would normally
2872         accompany a virtual `chdir ("..")'.
2873
2874         * modules/fts (Depends-on): Add i-ring.
2875         * modules/i-ring: New module.
2876         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
2877         * m4/i-ring.m4: New file.
2878
2879 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2880
2881         * gnulib-tool (func_create_testdir): Fix replacement of
2882         `build-aux' in configure.ac.  Run autotools in gltests
2883         subdirectory.
2884         (func_create_testdir, func_create_megatestdir, test): There is
2885         no need for '--force' in most autotool invocations in a new
2886         tree.  Actually fail the whole test if any of the tools, or the
2887         configure or make stages fail.
2888
2889         Sync from Automake.
2890         * build-aux/gnupload: Revert last change.  Add pointer to upload
2891         instructions of the GNU Maintenance Instructions.
2892         Suggestion by Karl Berry.
2893
2894 2006-11-10  Jim Meyering  <jim@meyering.net>
2895
2896         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
2897
2898 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
2899
2900         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
2901         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
2902         (bind_textdomain_codeset) [! ENABLE_NLS]:
2903         Evaluate all the arguments.  That way, callers get compatible behavior
2904         if the arguments have side effects.  Also, it avoids some GCC
2905         diagnostics in some cases; Joel E. Denny reported problems when Bison
2906         was configured with --enable-gcc-warnigs.
2907
2908 2006-11-10  Jim Meyering  <jim@meyering.net>
2909
2910         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
2911         relevant options in CFLAGS (like -O, -fno-inline) are taken into
2912         account.
2913
2914 2006-11-10  Jim Meyering  <jim@meyering.net>
2915
2916         * modules/inline: New file/module.
2917         * modules/xalloc (Files): Remove m4/inline.m4.
2918         (Depends-on): Add inline, instead.
2919         * modules/oset: Likewise.
2920         * modules/list: Likewise.
2921
2922 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
2923
2924         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
2925         Problem reported by Matthew Woehlke.
2926
2927 2006-11-09  Bruno Haible  <bruno@clisp.org>
2928
2929         * lib/tempname.c (gen_tempname): Remove variant that invokes
2930         __gen_tempname.
2931         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
2932         __gen_tempname.
2933
2934 2006-11-08  Bruno Haible  <bruno@clisp.org>
2935
2936         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
2937         to 'yes' instead of 'cross-compiling'.
2938
2939 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
2940
2941         * lib/quotearg.h (quotearg_free): New decl.
2942         * lib/quotearg.c (quotearg_free): New function.
2943         (slot0, nslots, slotvec0, slotvec):
2944         Now file-scope so that quotearg_free can get at them.
2945
2946 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2947
2948         Sync from Automake.
2949         * build-aux/gnupload: Add missing 'gnu' to example URL.
2950         Report by Karl Berry.
2951
2952 2006-11-08  Bruno Haible  <bruno@clisp.org>
2953
2954         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
2955         Suggested by Paul Eggert.
2956
2957 2006-11-08  Jim Meyering  <jim@meyering.net>
2958
2959         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
2960         It's already included if !_LIBC.
2961         (fts_safe_changedir): Add a comment.
2962
2963 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
2964
2965         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
2966         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
2967         Matthew Woehlke.
2968
2969         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
2970         definitions up, to avoid colliding with change below.
2971         (static_inline) [HAVE_INLINE]: New macro.
2972         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
2973         Provide extern decls when !HAVE_INLINE.  Do not define unless
2974         static_inline is defined, either by us or by xmalloc.c.  Use
2975         static_inline rather than static inline.
2976         (XCALLOC): Optimize sizeof(T) = 1 case.
2977         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
2978
2979 2006-11-07  Bruno Haible  <bruno@clisp.org>
2980
2981         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
2982         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
2983         AC_C_INLINE.
2984         * modules/xalloc (Files): Add m4/inline.m4.
2985
2986 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2987
2988         * README: Fix typo.
2989         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
2990         (Miscellanous Notes): ...from this.
2991
2992 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
2993
2994         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
2995         Mention that offsetof should be used instead of sizeof.
2996         From Bruno Haible.
2997
2998 2006-11-07  Bruno Haible  <bruno@clisp.org>
2999
3000         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
3001
3002 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
3003
3004         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
3005         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
3006         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
3007         (gl_tree_add_before, gl_tree_add_after):
3008         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
3009         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
3010         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
3011         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
3012         (gl_linked_add_after, gl_linked_add_at): Likewise.
3013         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
3014         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
3015         (gl_tree_add_before, gl_tree_add_after): Likewise.
3016         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
3017         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
3018         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
3019
3020 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3021
3022         * lib/gl_oset.h: Use C comment style, not C++ comment style.
3023
3024 2006-11-06  Bruno Haible  <bruno@clisp.org>
3025
3026         * m4/inline.m4: New file.
3027         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
3028         * modules/list (Files): Add m4/inline.m4.
3029         * modules/oset (Files): Likewise.
3030
3031 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
3032
3033         * lib/idcache.c: Include <stddef.h>, for offsetof.
3034         (struct userid.name): Change from char * to a flexible array member.
3035         All uses changed.
3036         * modules/idcache (Depends-on): Add flexmember.
3037
3038         * MODULES.html.sh (Core language properties): New module flexmember.
3039         * modules/flexmember, m4/flexmember.m4: New files.
3040
3041         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
3042         inline functions that are identical with the old xnmalloc_inline,
3043         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
3044         that we can avoid some unnecessary integer multiplications and
3045         divisions in the common case where the element size is known at
3046         compile time.
3047         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
3048         needed.
3049         (xnboundedmalloc): Remove.
3050         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
3051         arguments, for consistency with rest of this header.
3052         (xcharalloc): Rewrite using XNMALLOC.
3053         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
3054         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
3055         versions have been moved to lib/xalloc.h and renamed to be the
3056         non-*_inline versions.
3057         (xmalloc, xrealloc): Implement without reference to the xnmalloc
3058         and xnrealloc functions, since those functions are now inline and
3059         now call us.
3060         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
3061         renaming described above.
3062         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
3063         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
3064         captures the dependency in AC_C_INLINE.
3065
3066         New module canonicalize-lgpl, proposed by Charles Wilson in
3067         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
3068         with a few small changes afterwards.
3069         * MODULES.html.sh (File system functions): New module
3070         canonicalize-lgpl.
3071         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
3072         and canonicalize_file_name.
3073         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
3074         * modules/canonicalize-lgpl: New files.
3075
3076 2006-11-05  Bruno Haible  <bruno@clisp.org>
3077
3078         * gnulib-tool (func_import, func_create_testdir): Create directories
3079         also for files in subdirectories of lib/.
3080
3081 2006-11-05  Bruno Haible  <bruno@clisp.org>
3082
3083         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
3084         ANSI C compliant.
3085
3086 2006-11-03  Bruno Haible  <bruno@clisp.org>
3087
3088         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
3089         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
3090         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
3091         (xnboundedmalloc): New inline function.
3092         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
3093         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
3094         xmalloc.
3095         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
3096         xmalloc.
3097         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
3098         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
3099         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
3100         xmalloc.
3101         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
3102         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
3103         xmalloc.
3104         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
3105         gl_tree_add_after): Use XMALLOC instead of xmalloc.
3106         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
3107         xmalloc.
3108         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
3109         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
3110         gl_tree_add_after): Use XMALLOC instead of xmalloc.
3111         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
3112         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
3113         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
3114         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
3115
3116 2006-11-03  Bruno Haible  <bruno@clisp.org>
3117
3118         * lib/c-ctype.h [C++]: Define functions without name mangling.
3119         * lib/fwriteerror.h [C++]: Likewise.
3120         * lib/gcd.h [C++]: Likewise.
3121         * lib/linebreak.h [C++]: Likewise.
3122
3123 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
3124
3125         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
3126         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
3127         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
3128         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
3129         Check for functions and headers just once.
3130         Check for declaration of canonicalize_file_name.
3131         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
3132
3133 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
3134
3135         * gnulib-tool (func_import): Fix typo in actioncmd.
3136
3137 2006-11-02  Bruno Haible  <bruno@clisp.org>
3138
3139         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
3140         newline sequence in the Makefile.am snippet as a space, like "make"
3141         does.
3142         Reported by Roger Persson <perrog@gmail.com>.
3143
3144 2006-11-01  Bruno Haible  <bruno@clisp.org>
3145
3146         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
3147         already declared in <string.h>.
3148         * lib/strcase.h (strncasecmp): Don't declare it if yes.
3149
3150 2006-11-01  Bruno Haible  <bruno@clisp.org>
3151
3152         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
3153         * lib/strcase.h: Include <string.h>.
3154         (strcasecmp): Define to rpl_strcasecmp here.
3155
3156 2006-11-01  Bruno Haible  <bruno@clisp.org>
3157
3158         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
3159
3160 2006-11-01  Eric Blake  <ebb9@byu.net>
3161
3162         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
3163
3164         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
3165
3166 2006-10-29  Bruno Haible  <bruno@clisp.org>
3167
3168         Make it compile in C++ mode.
3169         * lib/full-write.c (full_rw): Add a cast.
3170
3171 2006-11-01  Bruno Haible  <bruno@clisp.org>
3172
3173         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
3174         be POSIX compliant.
3175         Reported by Roger Persson <perrog@gmail.com>.
3176
3177 2006-11-01  Eric Blake  <ebb9@byu.net>
3178
3179         * lib/getopt_.h: Fix comments.
3180
3181 2006-10-31  Eric Blake  <ebb9@byu.net>
3182
3183         * modules/tmpdir (Depends-on): Add sys_stat.
3184         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
3185         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
3186         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
3187         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
3188         tempname.
3189
3190 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
3191
3192         Avoid some C++ diagnostics reported by Bruno Haible.
3193         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
3194         xmalloc.
3195         (quotearg_alloc): Use xcharalloc rather than xmalloc.
3196         (struct slotvec): Move to top level.
3197         (quotearg_n_options): Rewrite to avoid xmalloc.
3198         * lib/xalloc.h (xcharalloc): New function.
3199         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
3200         [defined __cplusplus]: Add function template that provides result
3201         type propagation.  This part of the change is from Bruno Haible.
3202
3203 2006-10-29  Bruno Haible  <bruno@clisp.org>
3204
3205         Make it compile in C++ mode.
3206         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
3207         * lib/strnlen1.c (strnlen1): Cast memchr result.
3208         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
3209         * lib/clean-temp.c (string_equals, string_hash): Add casts.
3210         (create_temp_dir): Rename local variable 'template'.
3211         (compile_csharp_using_sscli): Add cast.
3212         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
3213         * lib/findprog.c (find_in_path): Likewise.
3214         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
3215         * lib/wait-process.c (register_slave_subprocess): Likewise.
3216
3217 2006-10-22  Bruno Haible  <bruno@clisp.org>
3218
3219         * modules/tsearch: New file.
3220         * lib/tsearch.h: New file.
3221         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
3222         * m4/tsearch.m4: New file.
3223         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
3224
3225 2006-10-29  Eric Blake  <ebb9@byu.net>
3226
3227         * lib/arcfour.c: Assume config.h.
3228         * lib/arctwo.c: Likewise.
3229         * lib/base64.c: Likewise.
3230         * lib/check-version.c: Likewise.
3231         * lib/crc.c: Likewise.
3232         * lib/des.c: Likewise.
3233         * lib/gc-gnulib.c: Likewise.
3234         * lib/gc-libgcrypt.c: Likewise.
3235         * lib/gc-pbkdf2-sha1.c: Likewise.
3236         * lib/getaddrinfo.c: Likewise.
3237         * lib/getdelim.c: Likewise.
3238         * lib/getline.c: Likewise.
3239         * lib/hmac-md5.c: Likewise.
3240         * lib/hmac-sha1.c: Likewise.
3241         * lib/iconvme.c: Likewise.
3242         * lib/md2.c: Likewise.
3243         * lib/md4.c: Likewise.
3244         * lib/memxor.c: Likewise.
3245         * lib/read-file.c: Likewise.
3246         * lib/readline.c: Likewise.
3247         * lib/rijndael-alg-fst.c: Likewise.
3248         * lib/rijndael-api-fst.c: Likewise.
3249         * lib/xgetdomainname.c: Likewise.
3250
3251 2006-10-28  Eric Blake  <ebb9@byu.net>
3252
3253         * lib/xstrndup.c: Assume config.h.
3254
3255 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
3256
3257         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
3258         stat-macros.h is now for our own macros, whereas stat_h is for
3259         macros in the <sys/stat.h> name space.
3260         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
3261         (STAT_MACROS_H): Remove.
3262         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
3263         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
3264         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
3265         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
3266         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
3267         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
3268         Move these macros to ...
3269         * lib/stat_.h: here.  Don't include stat-macros.h.
3270         * lib/canonicalize.c: Don't include stat-macros.h.
3271         * lib/chown.c: Likewise.
3272         * lib/euidaccess.c: Likewise.
3273         * lib/file-type.c: Likewise.
3274         * lib/filemode.c: Likewise.
3275         * lib/glob.c: Likewise.
3276         * lib/isapipe.c: Likewise.
3277         * lib/lchown.c: Likewise.
3278         * lib/lstat.c: Likewise.
3279         * lib/mkdir-p.c: Likewise.
3280         * lib/rmdir.c: Likewise.
3281         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
3282         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
3283         unless mkdir isn't declared, to speed up 'configure'.
3284         Always create sys/stat.h, since it's unlikely any real sys/stat.h
3285         would define all the S_* symbols.
3286         * modules/canonicalize (Depends-on):
3287         Depend on sys_stat, not stat-macros.
3288         * modules/chown: Likewise.
3289         * modules/euidaccess: Likewise.
3290         * modules/filemode: Likewise.
3291         * modules/file-type: Likewise.
3292         * modules/glob: Likewise.
3293         * modules/isapipe: Likewise.
3294         * modules/lchown: Likewise.
3295         * modules/lstat: Likewise.
3296         * modules/mkancesdirs: Likewise.
3297         * modules/rmdir: Likewise.
3298         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
3299         * modules/modechange: Likewise.
3300         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
3301         (configure.ac): Remove gl_STAT_MACROS.
3302         * modules/sys_stat (Depends-on): Remove stat-macros.
3303
3304 2006-10-27  Bruno Haible  <bruno@clisp.org>
3305
3306         * m4/signed.m4: Remove file.
3307         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
3308         invocation.
3309         * modules/vasnprintf (Files): Remove m4/signed.m4.
3310
3311 2006-10-27  Bruno Haible  <bruno@clisp.org>
3312
3313         Update to GNU gettext 0.16.
3314         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
3315         m4/inttypes-h.m4, m4/signed.m4.
3316         * m4/gettext.m4: Update to GNU gettext 0.16.
3317         * m4/intl.m4: New file, from GNU gettext.
3318         * m4/intldir.m4: New file, from GNU gettext.
3319         * config/srclist.txt: Update
3320
3321 2006-10-27  Eric Blake  <ebb9@byu.net>
3322
3323         * MODULES.html.sh: Document tempname.
3324         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
3325         dependencies.
3326         (Files): Move lib/tempname.c...
3327         * modules/tempname: ...to this new module.
3328         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
3329         (gl_PREREQ_TEMPNAME): Move...
3330         * m4/tempname.m4: ...to this new file.
3331         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
3332         * modules/sys_stat (Depends-on): Add stat-macros.
3333         * lib/stat_.h (includes): Pick up stat macros.
3334         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
3335         if stat macros are broken.
3336         * lib/tempname.c (includes): No need to include "stat-macros.h".
3337         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
3338         (direxists, __path_search) [!_LIBC]: Don't compile these in
3339         gnulib; the tmpdir module covers that.
3340         * lib/tempname.h: New file.
3341
3342 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
3343
3344         * COPYING: Explain how gnulib-tool converts licence headers.
3345         Almost all wording by Eric Blake.
3346
3347 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
3348
3349         * lib/mbchar.h (is_basic_table): Make read-only.
3350         * lib/mbchar.c (is_basic_table): Likewise.
3351         Reported by John Darrington.
3352
3353 2006-10-25  Bruno Haible  <bruno@clisp.org>
3354
3355         * lib/progname.h (set_program_name): Undefine before defining.
3356
3357 2006-10-25  Bruno Haible  <bruno@clisp.org>
3358
3359         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
3360         false for non-gcc C++ compilers.
3361         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
3362
3363 2006-10-24  Bruno Haible  <bruno@clisp.org>
3364
3365         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
3366         iconv implementations like Irix iconv.
3367
3368 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
3369
3370         * modules/vararrays: New file.
3371         * m4/vararrays.m4: New file, taken from diffutils.
3372         * MODULES.html.sh: New module vararrays.
3373
3374 2006-10-24  Karl Berry  <karl@gnu.org>
3375
3376         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
3377         Don't call GNU Unix.
3378
3379 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3380
3381         * users.txt: Add Libtool.
3382
3383         Sync from Libtool:
3384
3385         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
3386
3387         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
3388         to gnulib's policy of including config.h unconditionally.
3389
3390 2006-10-24  Bruno Haible  <bruno@clisp.org>
3391
3392         * modules/wcwidth (Files): Add m4/wint_t.m4.
3393         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
3394         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
3395
3396 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
3397
3398         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
3399         to pacify GCC with some -W flags enabled.  Problem reported by
3400         Bruno Haible.
3401
3402 2006-10-24  Jim Meyering  <jim@meyering.net>
3403
3404         * MODULES.html.sh: Remove uinttostr.  It's not a module.
3405         Reported by Karl Berry.
3406
3407 2006-10-23  Bruno Haible  <bruno@clisp.org>
3408
3409         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
3410
3411 2006-10-24  Bruno Haible  <bruno@clisp.org>
3412
3413         * lib/gl_list.h: Use C comment style, not C++ comment style.
3414
3415 2006-10-23  Eric Blake  <ebb9@byu.net>
3416
3417         * lib/getaddrinfo.c (includes): Add missing include.
3418
3419 2006-10-23  Bruno Haible  <bruno@clisp.org>
3420             Paul Eggert  <eggert@cs.ucla.edu>
3421
3422         Ability to rename obstack_free.
3423         * lib/obstack.h (__obstack_free): New macro. Declare instead of
3424         obstack_free.
3425         (obstack_free): Invoke the __obstack_free macro.
3426         * lib/obstack.c (obstack_free): Use __obstack_free macro.
3427
3428 2006-10-23  Bruno Haible  <bruno@clisp.org>
3429             Paul Eggert  <eggert@cs.ucla.edu>
3430
3431         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
3432         __argc, __argv from the declaration. (They are defined as macros on
3433         mingw.)
3434
3435 2006-10-22  Bruno Haible  <bruno@clisp.org>
3436
3437         * doc/gnulib-intro.texi: New file.
3438         * doc/gnulib.texi: Include it.
3439
3440 2006-10-21  Bruno Haible  <bruno@clisp.org>
3441
3442         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
3443         "Introduction", "Miscellanous Notes", "Particular Modules".
3444
3445 2006-10-21  Bruno Haible  <bruno@clisp.org>
3446
3447         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
3448         Change mostlyclean-local rule to avoid sh syntax error from bash
3449         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
3450
3451 2006-10-23  Jim Meyering  <jim@meyering.net>
3452
3453         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
3454         in place of snprintf.
3455
3456         * modules/inttostr (Files): Add lib/uinttostr.c.
3457         * lib/uinttostr.c (inttostr): New file/function.
3458         * lib/inttostr.h (uinttostr): Declare.
3459         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
3460         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
3461         Add uinttostr.
3462         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
3463
3464 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
3465
3466         * lib/canonicalize.c (ELOOP): Define if not already defined.
3467         Problem reported by Bruno Haible in
3468         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
3469
3470 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
3471
3472         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
3473         Problem reported by Perry Smith and Ville Laurikari.
3474
3475         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
3476         uses.
3477
3478 2006-10-19  Bruno Haible  <bruno@clisp.org>
3479
3480         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
3481         for mingw.
3482
3483 2006-10-19  Bruno Haible  <bruno@clisp.org>
3484
3485         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
3486         Needed for mingw.
3487
3488 2006-10-19  Bruno Haible  <bruno@clisp.org>
3489
3490         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
3491
3492 2006-10-19  Bruno Haible  <bruno@clisp.org>
3493
3494         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
3495         it.
3496
3497 2006-10-19  Bruno Haible  <bruno@clisp.org>
3498
3499         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
3500         invocation.
3501
3502 2006-10-19  Bruno Haible  <bruno@clisp.org>
3503
3504         * gnulib-tool (func_create_testdir): Don't include ftruncate and
3505         mountlist by default.
3506
3507 2006-10-16  Bruno Haible  <bruno@clisp.org>
3508
3509         * lib/c-strstr.c: Include c-strstr.h.
3510
3511 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
3512
3513         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
3514         in a slash.
3515
3516 2006-10-18  Bruno Haible  <bruno@clisp.org>
3517
3518         * lib/lock.h [C++]: Wrap definitions in extern "C".
3519
3520 2006-10-18  Bruno Haible  <bruno@clisp.org>
3521
3522         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
3523         gl_LIBOBJS list.
3524
3525 2006-10-18  Bruno Haible  <bruno@clisp.org>
3526
3527         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
3528
3529 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
3530
3531         * lib/xstrtol.h: Include gettext.h.
3532         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
3533         Problem reported by Eric Blake.
3534         * modules/xstrtol (Depends-on): Add gettext-h.
3535
3536 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
3537
3538         * lib/strftime.c (advance): New macro.
3539         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
3540         incomplete type, so you can't add 0 to it.  Problem and patch
3541         reported by Eelco Dolstra for dietlibc.
3542
3543 2006-10-18  Jim Meyering  <jim@meyering.net>
3544
3545         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
3546         type for a local, and rename it: s/up/user_proc/.
3547
3548 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
3549
3550         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
3551         READ_UTMP_USER_PROCESS.
3552         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
3553
3554 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
3555
3556         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
3557         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
3558
3559 2006-10-17  Eric Blake  <ebb9@byu.net>
3560
3561         * lib/sigprocmask.c (sigprocmask): Fix typo.
3562
3563         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
3564
3565         * modules/clean-temp (Makefile.am): Don't add to make output...
3566         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
3567         config.h.
3568
3569 2006-10-17  Bruno Haible  <bruno@clisp.org>
3570
3571         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
3572         differently if DEFAULT_TEXT_DOMAIN is set.
3573
3574 2006-10-16  Bruno Haible  <bruno@clisp.org>
3575
3576         * lib/clean-temp.c: Include fwriteerror.h.
3577
3578 2006-10-16  Bruno Haible  <bruno@clisp.org>
3579
3580         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
3581
3582 2006-10-16  Bruno Haible  <bruno@clisp.org>
3583
3584         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
3585         * lib/sigprocmask.h: Include <sys/types.h>.
3586         (sigset_t): Use the system's definition if present.
3587
3588 2006-10-17  Eric Blake  <ebb9@byu.net>
3589
3590         * lib/xvasprintf.c (includes): Assume config.h.
3591         * lib/xasprintf.c (includes): Likewise.
3592
3593 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
3594
3595         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
3596         at least as wide as intmax_t.
3597
3598 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
3599
3600         (Imported from Automake.)
3601         * build-aux/gnupload: Update to version 1.1 of directive file.
3602
3603 2006-10-16  Eric Blake  <ebb9@byu.net>
3604
3605         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
3606         match Automake 1.10a.
3607
3608 2006-10-14  Bruno Haible  <bruno@clisp.org>
3609
3610         * modules/sigprocmask: New file.
3611         * lib/sigprocmask.h: New file.
3612         * lib/sigprocmask.c: New file.
3613         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
3614         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
3615         request sigprocmask.o.
3616         (gl_PREREQ_SIGPROCMASK): New macro.
3617         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
3618         (Depends-on): Add sigprocmask.
3619         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
3620         gt_SIGNALBLOCKING. Test for 'raise' only once.
3621         * lib/fatal-signal.c: Include sigprocmask.h.
3622         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
3623         unblock_fatal_signals): Define always.
3624         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
3625         sigprocmask.
3626
3627 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
3628
3629         Sync from Automake.
3630         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
3631         which incorrectly sets the mode of an existing destination
3632         directory.  In some cases the unpatched install-sh could do the
3633         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
3634         system.  We hope this is rare in practice, but it's clearly worth
3635         fixing.  Problem reported by Alex Unleashed in
3636         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
3637         Also, don't bother to check for -m bugs unless we're using -m;
3638         suggested by Stepan Kasal.
3639
3640 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3641
3642         Sync from Automake.
3643         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
3644         `-c' flag, so they appear at the same position as in %FASTDEP%
3645         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
3646         which ignores unknown options only after the first non-option.
3647         Bug report against M4 by Nelson H. F. Beebe.
3648
3649 2006-10-13  Jim Meyering  <jim@meyering.net>
3650
3651         Fix a bug in yesterday's change.
3652         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
3653         p->fts_statp->st_dev would be used uninitialized.
3654         Ensures that we always call fts_stat on the very first entry.
3655         Miklos Szeredi reported that find -xdev stopped working.
3656
3657 2006-10-12  Bruno Haible  <bruno@clisp.org>
3658
3659         * gnulib-tool (func_get_automake_snippet): Append an automatically
3660         computed EXTRA_DIST augmentation.
3661         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
3662         * modules/alloca-opt (Makefile.am): Likewise.
3663         * modules/allocsa (Makefile.am): Likewise.
3664         * modules/arcfour (Makefile.am): Likewise.
3665         * modules/arctwo (Makefile.am): Likewise.
3666         * modules/argmatch (Makefile.am): Likewise.
3667         * modules/argz (Makefile.am): Likewise.
3668         * modules/atexit (Makefile.am): Likewise.
3669         * modules/backupfile (Makefile.am): Likewise.
3670         * modules/byteswap (Makefile.am): Likewise.
3671         * modules/c-strtod (Makefile.am): Likewise.
3672         * modules/c-strtold (Makefile.am): Likewise.
3673         * modules/calloc (Makefile.am): Likewise.
3674         * modules/canon-host (Makefile.am): Likewise.
3675         * modules/canonicalize (Makefile.am): Likewise.
3676         * modules/chdir-long (Makefile.am): Likewise.
3677         * modules/chdir-safer (Makefile.am): Likewise.
3678         * modules/check-version (Makefile.am): Likewise.
3679         * modules/chown (Makefile.am): Likewise.
3680         * modules/cloexec (Makefile.am): Likewise.
3681         * modules/close-stream (Makefile.am): Likewise.
3682         * modules/closeout (Makefile.am): Likewise.
3683         * modules/crc (Makefile.am): Likewise.
3684         * modules/csharpexec (Makefile.am): Likewise.
3685         * modules/cycle-check (Makefile.am): Likewise.
3686         * modules/des (Makefile.am): Likewise.
3687         * modules/dev-ino (Makefile.am): Likewise.
3688         * modules/dirfd (Makefile.am): Likewise.
3689         * modules/dirname (Makefile.am): Likewise.
3690         * modules/dup2 (Makefile.am): Likewise.
3691         * modules/eealloc (Makefile.am): Likewise.
3692         * modules/error (Makefile.am): Likewise.
3693         * modules/euidaccess (Makefile.am): Likewise.
3694         * modules/exclude (Makefile.am): Likewise.
3695         * modules/exitfail (Makefile.am): Likewise.
3696         * modules/fcntl-safer (Makefile.am): Likewise.
3697         * modules/fcntl (Makefile.am): Likewise.
3698         * modules/file-type (Makefile.am): Likewise.
3699         * modules/fileblocks (Makefile.am): Likewise.
3700         * modules/filemode (Makefile.am): Likewise.
3701         * modules/filenamecat (Makefile.am): Likewise.
3702         * modules/fnmatch (Makefile.am): Likewise.
3703         * modules/fopen-safer (Makefile.am): Likewise.
3704         * modules/fpending (Makefile.am): Likewise.
3705         * modules/fprintftime (Makefile.am): Likewise.
3706         * modules/free (Makefile.am): Likewise.
3707         * modules/fsusage (Makefile.am): Likewise.
3708         * modules/ftruncate (Makefile.am): Likewise.
3709         * modules/fts (Makefile.am): Likewise.
3710         * modules/gc-arcfour (Makefile.am): Likewise.
3711         * modules/gc-des (Makefile.am): Likewise.
3712         * modules/gc-hmac-md5 (Makefile.am): Likewise.
3713         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
3714         * modules/gc-md4 (Makefile.am): Likewise.
3715         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
3716         * modules/gc-sha1 (Makefile.am): Likewise.
3717         * modules/gc (Makefile.am): Likewise.
3718         * modules/getaddrinfo (Makefile.am): Likewise.
3719         * modules/getcwd (Makefile.am): Likewise.
3720         * modules/getdelim (Makefile.am): Likewise.
3721         * modules/getdomainname (Makefile.am): Likewise.
3722         * modules/getgroups (Makefile.am): Likewise.
3723         * modules/gethostname (Makefile.am): Likewise.
3724         * modules/gethrxtime (Makefile.am): Likewise.
3725         * modules/getline (Makefile.am): Likewise.
3726         * modules/getloadavg (Makefile.am): Likewise.
3727         * modules/getlogin_r (Makefile.am): Likewise.
3728         * modules/getndelim2 (Makefile.am): Likewise.
3729         * modules/getopt (Makefile.am): Likewise.
3730         * modules/getpagesize (Makefile.am): Likewise.
3731         * modules/getpass-gnu (Makefile.am): Likewise.
3732         * modules/getpass (Makefile.am): Likewise.
3733         * modules/getsubopt (Makefile.am): Likewise.
3734         * modules/gettime (Makefile.am): Likewise.
3735         * modules/gettimeofday (Makefile.am): Likewise.
3736         * modules/getugroups (Makefile.am): Likewise.
3737         * modules/getusershell (Makefile.am): Likewise.
3738         * modules/glob (Makefile.am): Likewise.
3739         * modules/group-member (Makefile.am): Likewise.
3740         * modules/hard-locale (Makefile.am): Likewise.
3741         * modules/hash (Makefile.am): Likewise.
3742         * modules/hmac-md5 (Makefile.am): Likewise.
3743         * modules/hmac-sha1 (Makefile.am): Likewise.
3744         * modules/human (Makefile.am): Likewise.
3745         * modules/idcache (Makefile.am): Likewise.
3746         * modules/imaxabs (Makefile.am): Likewise.
3747         * modules/imaxdiv (Makefile.am): Likewise.
3748         * modules/inet_ntop (Makefile.am): Likewise.
3749         * modules/inet_pton (Makefile.am): Likewise.
3750         * modules/intprops (Makefile.am): Likewise.
3751         * modules/inttostr (Makefile.am): Likewise.
3752         * modules/inttypes (Makefile.am): Likewise.
3753         * modules/isapipe (Makefile.am): Likewise.
3754         * modules/javaversion (Makefile.am): Likewise.
3755         * modules/lchmod (Makefile.am): Likewise.
3756         * modules/lchown (Makefile.am): Likewise.
3757         * modules/localcharset (Makefile.am): Likewise.
3758         * modules/long-options (Makefile.am): Likewise.
3759         * modules/lstat (Makefile.am): Likewise.
3760         * modules/malloc (Makefile.am): Likewise.
3761         * modules/mathl (Makefile.am): Likewise.
3762         * modules/mbchar (Makefile.am): Likewise.
3763         * modules/md2 (Makefile.am): Likewise.
3764         * modules/md4 (Makefile.am): Likewise.
3765         * modules/md5 (Makefile.am): Likewise.
3766         * modules/memcasecmp (Makefile.am): Likewise.
3767         * modules/memchr (Makefile.am): Likewise.
3768         * modules/memcmp (Makefile.am): Likewise.
3769         * modules/memcoll (Makefile.am): Likewise.
3770         * modules/memcpy (Makefile.am): Likewise.
3771         * modules/memmem (Makefile.am): Likewise.
3772         * modules/memmove (Makefile.am): Likewise.
3773         * modules/mempcpy (Makefile.am): Likewise.
3774         * modules/memrchr (Makefile.am): Likewise.
3775         * modules/memset (Makefile.am): Likewise.
3776         * modules/memxor (Makefile.am): Likewise.
3777         * modules/mkancesdirs (Makefile.am): Likewise.
3778         * modules/mkdir-p (Makefile.am): Likewise.
3779         * modules/mkdir (Makefile.am): Likewise.
3780         * modules/mkdtemp (Makefile.am): Likewise.
3781         * modules/mkstemp (Makefile.am): Likewise.
3782         * modules/mktime (Makefile.am): Likewise.
3783         * modules/modechange (Makefile.am): Likewise.
3784         * modules/mountlist (Makefile.am): Likewise.
3785         * modules/nanosleep (Makefile.am): Likewise.
3786         * modules/obstack (Makefile.am): Likewise.
3787         * modules/openat (Makefile.am): Likewise.
3788         * modules/pagealign_alloc (Makefile.am): Likewise.
3789         * modules/pathmax (Makefile.am): Likewise.
3790         * modules/physmem (Makefile.am): Likewise.
3791         * modules/poll (Makefile.am): Likewise.
3792         * modules/posixtm (Makefile.am): Likewise.
3793         * modules/posixver (Makefile.am): Likewise.
3794         * modules/putenv (Makefile.am): Likewise.
3795         * modules/quote (Makefile.am): Likewise.
3796         * modules/quotearg (Makefile.am): Likewise.
3797         * modules/raise (Makefile.am): Likewise.
3798         * modules/read-file (Makefile.am): Likewise.
3799         * modules/readline (Makefile.am): Likewise.
3800         * modules/readlink (Makefile.am): Likewise.
3801         * modules/readtokens (Makefile.am): Likewise.
3802         * modules/readutmp (Makefile.am): Likewise.
3803         * modules/realloc (Makefile.am): Likewise.
3804         * modules/regex (Makefile.am): Likewise.
3805         * modules/rename-dest-slash (Makefile.am): Likewise.
3806         * modules/rename (Makefile.am): Likewise.
3807         * modules/rijndael (Makefile.am): Likewise.
3808         * modules/rmdir (Makefile.am): Likewise.
3809         * modules/rpmatch (Makefile.am): Likewise.
3810         * modules/safe-read (Makefile.am): Likewise.
3811         * modules/safe-write (Makefile.am): Likewise.
3812         * modules/same-inode (Makefile.am): Likewise.
3813         * modules/same (Makefile.am): Likewise.
3814         * modules/save-cwd (Makefile.am): Likewise.
3815         * modules/savedir (Makefile.am): Likewise.
3816         * modules/setenv (Makefile.am): Likewise.
3817         * modules/settime (Makefile.am): Likewise.
3818         * modules/sha1 (Makefile.am): Likewise.
3819         * modules/sig2str (Makefile.am): Likewise.
3820         * modules/snprintf (Makefile.am): Likewise.
3821         * modules/stat-macros (Makefile.am): Likewise.
3822         * modules/stat-time (Makefile.am): Likewise.
3823         * modules/stdbool (Makefile.am): Likewise.
3824         * modules/stdint (Makefile.am): Likewise.
3825         * modules/stdlib-safer (Makefile.am): Likewise.
3826         * modules/stpcpy (Makefile.am): Likewise.
3827         * modules/stpncpy (Makefile.am): Likewise.
3828         * modules/strcase (Makefile.am): Likewise.
3829         * modules/strcasestr (Makefile.am): Likewise.
3830         * modules/strchrnul (Makefile.am): Likewise.
3831         * modules/strcspn (Makefile.am): Likewise.
3832         * modules/strdup (Makefile.am): Likewise.
3833         * modules/strerror (Makefile.am): Likewise.
3834         * modules/strftime (Makefile.am): Likewise.
3835         * modules/strndup (Makefile.am): Likewise.
3836         * modules/strnlen (Makefile.am): Likewise.
3837         * modules/strpbrk (Makefile.am): Likewise.
3838         * modules/strsep (Makefile.am): Likewise.
3839         * modules/strstr (Makefile.am): Likewise.
3840         * modules/strtod (Makefile.am): Likewise.
3841         * modules/strtoimax (Makefile.am): Likewise.
3842         * modules/strtok_r (Makefile.am): Likewise.
3843         * modules/strtol (Makefile.am): Likewise.
3844         * modules/strtoll (Makefile.am): Likewise.
3845         * modules/strtoul (Makefile.am): Likewise.
3846         * modules/strtoull (Makefile.am): Likewise.
3847         * modules/strtoumax (Makefile.am): Likewise.
3848         * modules/strverscmp (Makefile.am): Likewise.
3849         * modules/sys_socket (Makefile.am): Likewise.
3850         * modules/sys_stat (Makefile.am): Likewise.
3851         * modules/sysexits (Makefile.am): Likewise.
3852         * modules/time_r (Makefile.am): Likewise.
3853         * modules/timegm (Makefile.am): Likewise.
3854         * modules/timespec (Makefile.am): Likewise.
3855         * modules/tmpfile-safer (Makefile.am): Likewise.
3856         * modules/trim (Makefile.am): Likewise.
3857         * modules/unistd-safer (Makefile.am): Likewise.
3858         * modules/unlinkdir (Makefile.am): Likewise.
3859         * modules/unlocked-io (Makefile.am): Likewise.
3860         * modules/userspec (Makefile.am): Likewise.
3861         * modules/utime (Makefile.am): Likewise.
3862         * modules/utimecmp (Makefile.am): Likewise.
3863         * modules/utimens (Makefile.am): Likewise.
3864         * modules/vasnprintf (Makefile.am): Likewise.
3865         * modules/vasprintf (Makefile.am): Likewise.
3866         * modules/vsnprintf (Makefile.am): Likewise.
3867         * modules/xalloc (Makefile.am): Likewise.
3868         * modules/xgetcwd (Makefile.am): Likewise.
3869         * modules/xnanosleep (Makefile.am): Likewise.
3870         * modules/xreadlink (Makefile.am): Likewise.
3871         * modules/xstrtod (Makefile.am): Likewise.
3872         * modules/xstrtol (Makefile.am): Likewise.
3873         * modules/xstrtold (Makefile.am): Likewise.
3874         * modules/yesno (Makefile.am): Likewise.
3875         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
3876
3877 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
3878
3879         * modules/error (Makefile.am): Distribute files through
3880         EXTRA_DIST, not lib_SOURCES.
3881
3882 2006-10-12  Eric Blake  <ebb9@byu.net>
3883
3884         * modules/error (Makefile.am): Distribute files in /lib.
3885         * modules/obstack (Makefile.am): Likewise.
3886
3887 2006-10-12  Bruno Haible  <bruno@clisp.org>
3888
3889         * modules/acl (Makefile.am): Distribute all files in lib/ through
3890         EXTRA_DIST.
3891         * modules/arcfour (Makefile.am): Likewise.
3892         * modules/arctwo (Makefile.am): Likewise.
3893         * modules/argmatch (Makefile.am): Likewise.
3894         * modules/argz (Makefile.am): Likewise.
3895         * modules/atexit (Makefile.am): Likewise.
3896         * modules/backupfile (Makefile.am): Likewise.
3897         * modules/c-strtod (Makefile.am): Likewise.
3898         * modules/c-strtold (Makefile.am): Likewise.
3899         * modules/calloc (Makefile.am): Likewise.
3900         * modules/canon-host (Makefile.am): Likewise.
3901         * modules/canonicalize (Makefile.am): Likewise.
3902         * modules/chdir-long (Makefile.am): Likewise.
3903         * modules/chdir-safer (Makefile.am): Likewise.
3904         * modules/check-version (Makefile.am): Likewise.
3905         * modules/chown (Makefile.am): Likewise.
3906         * modules/cloexec (Makefile.am): Likewise.
3907         * modules/close-stream (Makefile.am): Likewise.
3908         * modules/closeout (Makefile.am): Likewise.
3909         * modules/crc (Makefile.am): Likewise.
3910         * modules/cycle-check (Makefile.am): Likewise.
3911         * modules/des (Makefile.am): Likewise.
3912         * modules/dirfd (Makefile.am): Likewise.
3913         * modules/dirname (Makefile.am): Likewise.
3914         * modules/dup2 (Makefile.am): Likewise.
3915         * modules/euidaccess (Makefile.am): Likewise.
3916         * modules/exclude (Makefile.am): Likewise.
3917         * modules/exitfail (Makefile.am): Likewise.
3918         * modules/fcntl-safer (Makefile.am): Likewise.
3919         * modules/file-type (Makefile.am): Likewise.
3920         * modules/fileblocks (Makefile.am): Likewise.
3921         * modules/filemode (Makefile.am): Likewise.
3922         * modules/filenamecat (Makefile.am): Likewise.
3923         * modules/fnmatch (Makefile.am): Likewise.
3924         * modules/fopen-safer (Makefile.am): Likewise.
3925         * modules/fpending (Makefile.am): Likewise.
3926         * modules/fprintftime (Makefile.am): Likewise.
3927         * modules/free (Makefile.am): Likewise.
3928         * modules/fsusage (Makefile.am): Likewise.
3929         * modules/ftruncate (Makefile.am): Likewise.
3930         * modules/fts (Makefile.am): Likewise.
3931         * modules/gc (Makefile.am): Likewise.
3932         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
3933         * modules/getaddrinfo (Makefile.am): Likewise.
3934         * modules/getcwd (Makefile.am): Likewise.
3935         * modules/getdelim (Makefile.am): Likewise.
3936         * modules/getdomainname (Makefile.am): Likewise.
3937         * modules/getgroups (Makefile.am): Likewise.
3938         * modules/gethostname (Makefile.am): Likewise.
3939         * modules/gethrxtime (Makefile.am): Likewise.
3940         * modules/getline (Makefile.am): Likewise.
3941         * modules/getloadavg (Makefile.am): Likewise.
3942         * modules/getlogin_r (Makefile.am): Likewise.
3943         * modules/getopt (Makefile.am): Likewise.
3944         * modules/getpass (Makefile.am): Likewise.
3945         * modules/getpass-gnu (Makefile.am): Likewise.
3946         * modules/getsubopt (Makefile.am): Likewise.
3947         * modules/gettime (Makefile.am): Likewise.
3948         * modules/gettimeofday (Makefile.am): Likewise.
3949         * modules/getugroups (Makefile.am): Likewise.
3950         * modules/getusershell (Makefile.am): Likewise.
3951         * modules/glob (Makefile.am): Likewise.
3952         * modules/group-member (Makefile.am): Likewise.
3953         * modules/hard-locale (Makefile.am): Likewise.
3954         * modules/hash (Makefile.am): Likewise.
3955         * modules/hmac-md5 (Makefile.am): Likewise.
3956         * modules/hmac-sha1 (Makefile.am): Likewise.
3957         * modules/human (Makefile.am): Likewise.
3958         * modules/idcache (Makefile.am): Likewise.
3959         * modules/imaxabs (Makefile.am): Likewise.
3960         * modules/imaxdiv (Makefile.am): Likewise.
3961         * modules/inet_ntop (Makefile.am): Likewise.
3962         * modules/inet_pton (Makefile.am): Likewise.
3963         * modules/inttostr (Makefile.am): Likewise.
3964         * modules/isapipe (Makefile.am): Likewise.
3965         * modules/lchown (Makefile.am): Likewise.
3966         * modules/long-options (Makefile.am): Likewise.
3967         * modules/lstat (Makefile.am): Likewise.
3968         * modules/malloc (Makefile.am): Likewise.
3969         * modules/mathl (Makefile.am): Likewise.
3970         * modules/mbchar (Makefile.am): Likewise.
3971         * modules/md2 (Makefile.am): Likewise.
3972         * modules/md4 (Makefile.am): Likewise.
3973         * modules/md5 (Makefile.am): Likewise.
3974         * modules/memcasecmp (Makefile.am): Likewise.
3975         * modules/memchr (Makefile.am): Likewise.
3976         * modules/memcmp (Makefile.am): Likewise.
3977         * modules/memcoll (Makefile.am): Likewise.
3978         * modules/memcpy (Makefile.am): Likewise.
3979         * modules/memmem (Makefile.am): Likewise.
3980         * modules/memmove (Makefile.am): Likewise.
3981         * modules/mempcpy (Makefile.am): Likewise.
3982         * modules/memrchr (Makefile.am): Likewise.
3983         * modules/memset (Makefile.am): Likewise.
3984         * modules/memxor (Makefile.am): Likewise.
3985         * modules/mkancesdirs (Makefile.am): Likewise.
3986         * modules/mkdir (Makefile.am): Likewise.
3987         * modules/mkdir-p (Makefile.am): Likewise.
3988         * modules/mkdtemp (Makefile.am): Likewise.
3989         * modules/mkstemp (Makefile.am): Likewise.
3990         * modules/mktime (Makefile.am): Likewise.
3991         * modules/modechange (Makefile.am): Likewise.
3992         * modules/mountlist (Makefile.am): Likewise.
3993         * modules/nanosleep (Makefile.am): Likewise.
3994         * modules/openat (Makefile.am): Likewise.
3995         * modules/pagealign_alloc (Makefile.am): Likewise.
3996         * modules/physmem (Makefile.am): Likewise.
3997         * modules/poll (Makefile.am): Likewise.
3998         * modules/posixtm (Makefile.am): Likewise.
3999         * modules/posixver (Makefile.am): Likewise.
4000         * modules/putenv (Makefile.am): Likewise.
4001         * modules/quote (Makefile.am): Likewise.
4002         * modules/quotearg (Makefile.am): Likewise.
4003         * modules/raise (Makefile.am): Likewise.
4004         * modules/read-file (Makefile.am): Likewise.
4005         * modules/readline (Makefile.am): Likewise.
4006         * modules/readlink (Makefile.am): Likewise.
4007         * modules/readtokens (Makefile.am): Likewise.
4008         * modules/readutmp (Makefile.am): Likewise.
4009         * modules/realloc (Makefile.am): Likewise.
4010         * modules/regex (Makefile.am): Likewise.
4011         * modules/rename (Makefile.am): Likewise.
4012         * modules/rename-dest-slash (Makefile.am): Likewise.
4013         * modules/rijndael (Makefile.am): Likewise.
4014         * modules/rmdir (Makefile.am): Likewise.
4015         * modules/rpmatch (Makefile.am): Likewise.
4016         * modules/safe-read (Makefile.am): Likewise.
4017         * modules/safe-write (Makefile.am): Likewise.
4018         * modules/same (Makefile.am): Likewise.
4019         * modules/save-cwd (Makefile.am): Likewise.
4020         * modules/savedir (Makefile.am): Likewise.
4021         * modules/setenv (Makefile.am): Likewise.
4022         * modules/settime (Makefile.am): Likewise.
4023         * modules/sha1 (Makefile.am): Likewise.
4024         * modules/sig2str (Makefile.am): Likewise.
4025         * modules/snprintf (Makefile.am): Likewise.
4026         * modules/stdlib-safer (Makefile.am): Likewise.
4027         * modules/stpcpy (Makefile.am): Likewise.
4028         * modules/stpncpy (Makefile.am): Likewise.
4029         * modules/strcase (Makefile.am): Likewise.
4030         * modules/strcasestr (Makefile.am): Likewise.
4031         * modules/strchrnul (Makefile.am): Likewise.
4032         * modules/strcspn (Makefile.am): Likewise.
4033         * modules/strdup (Makefile.am): Likewise.
4034         * modules/strerror (Makefile.am): Likewise.
4035         * modules/strftime (Makefile.am): Likewise.
4036         * modules/strndup (Makefile.am): Likewise.
4037         * modules/strnlen (Makefile.am): Likewise.
4038         * modules/strpbrk (Makefile.am): Likewise.
4039         * modules/strsep (Makefile.am): Likewise.
4040         * modules/strstr (Makefile.am): Likewise.
4041         * modules/strtod (Makefile.am): Likewise.
4042         * modules/strtoimax (Makefile.am): Likewise.
4043         * modules/strtok_r (Makefile.am): Likewise.
4044         * modules/strtol (Makefile.am): Likewise.
4045         * modules/strtoll (Makefile.am): Likewise.
4046         * modules/strtoul (Makefile.am): Likewise.
4047         * modules/strtoull (Makefile.am): Likewise.
4048         * modules/strtoumax (Makefile.am): Likewise.
4049         * modules/strverscmp (Makefile.am): Likewise.
4050         * modules/time_r (Makefile.am): Likewise.
4051         * modules/timegm (Makefile.am): Likewise.
4052         * modules/tmpfile-safer (Makefile.am): Likewise.
4053         * modules/unistd-safer (Makefile.am): Likewise.
4054         * modules/unlinkdir (Makefile.am): Likewise.
4055         * modules/userspec (Makefile.am): Likewise.
4056         * modules/utime (Makefile.am): Likewise.
4057         * modules/utimecmp (Makefile.am): Likewise.
4058         * modules/utimens (Makefile.am): Likewise.
4059         * modules/vasnprintf (Makefile.am): Likewise.
4060         * modules/vasprintf (Makefile.am): Likewise.
4061         * modules/vsnprintf (Makefile.am): Likewise.
4062         * modules/xalloc (Makefile.am): Likewise.
4063         * modules/xgetcwd (Makefile.am): Likewise.
4064         * modules/xnanosleep (Makefile.am): Likewise.
4065         * modules/xreadlink (Makefile.am): Likewise.
4066         * modules/xstrtod (Makefile.am): Likewise.
4067         * modules/xstrtol (Makefile.am): Likewise.
4068         * modules/xstrtold (Makefile.am): Likewise.
4069         * modules/yesno (Makefile.am): Likewise.
4070
4071 2006-10-12  Jim Meyering  <jim@meyering.net>
4072
4073         * m4/getloadavg.m4: Revert the change below.
4074
4075         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
4076         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
4077         fail with a symlink, which is what coreutils' ./bootstrap now
4078         creates by default.
4079
4080 2006-10-12  Bruno Haible  <bruno@clisp.org>
4081
4082         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
4083         mingw.
4084         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
4085         MSVC and mingw explicitly.
4086
4087 2006-10-11  Simon Josefsson  <jas@extundo.com>
4088             Bruno Haible  <bruno@clisp.org>
4089
4090         Add support for multiple gnulib-tool invocations in the scope of a
4091         single configure.ac file.
4092         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
4093         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
4094         with the same contents as the _LIBADD variable.
4095         (func_emit_initmacro_start, func_emit_initmacro_end,
4096         func_emit_initmacro_done): New functions.
4097         (func_import, func_create_testdir): Invoke them. Allow the identifiers
4098         gl_LIBOBJS and gl_LTLIBOBJS.
4099
4100 2006-10-11  Bruno Haible  <bruno@clisp.org>
4101
4102         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
4103         (func_create_testdir): Don't create po/Makefile.am, don't invoke
4104         autoreconf. Instead, invoke autopoint explicitly but move back the
4105         *.m4 files from gnulib.
4106
4107 2006-10-11  Bruno Haible  <bruno@clisp.org>
4108
4109         * gnulib-tool (func_usage): Make module names after --create-testdir
4110         optional.
4111         (func_create_testdir): If no module was specified, use nearly all
4112         modules.
4113
4114 2006-10-12  Jim Meyering  <jim@meyering.net>
4115
4116         Big performance improvement for fts-based tools that use FTS_NOSTAT.
4117         Avoid spurious inode-mismatch problems on non-POSIX file systems.
4118         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
4119         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
4120         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
4121         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
4122         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
4123         (fts_set_stat_required): New function.
4124         (fts_open): Defer the calls to fts_stat, if possible or requested.
4125         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
4126         into fts_stat itself.
4127         (fts_read): Perform any required (deferred) fts_stat call.
4128         (fts_build): Likewise, for the directory we're about to open and read.
4129         In the readdir loop, carefully decide whether each entry will require
4130         an eventual call to fts_stat, using dirent.d_type info if available.
4131         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
4132         a command line argument into this function.  Update all callers.
4133         Map a return value of FTS_DOT to FTS_D for a command line argument.
4134         * modules/fts (Depends-on): Add d-type.  Alphabetize.
4135         Thanks to Miklos Szeredi for his tenacity and for the initial
4136         bug report about "find" failing on a FUSE-based file system.
4137
4138         * lib/fts.c (fts_open): Use consistent indentation.
4139
4140 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
4141
4142         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
4143         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
4144         reported by Jim Meyering.  All uses of cache variables renamed
4145         to match Autoconf's.
4146         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
4147         the other one.
4148
4149         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
4150         Fix misspelling in diagnostic.
4151
4152 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
4153
4154         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
4155         defined.  Problem reported by Matthew Woehlke.
4156
4157         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
4158         Add support for Tandem NonStop R series.
4159         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
4160         Use new macro.
4161
4162         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
4163         (has_trailing_slash): Omit size arg; all callers changed.
4164         Omit 'inline', since it doesn't help performance and we'd
4165         need to configure it.
4166         Don't count //, ///, etc. as having a trailing slash.
4167         As a side effect, this removes a C99ism reported by Matthew Woehlke.
4168         (rpl_rename_dest_slash): On failure, use rename's errno rather
4169         than (in some cases) an incorrect or junk errno.
4170         Simplify code by removing need to compute length; this does
4171         cause it to make two passes instead of one over the file name,
4172         but it's worth it.
4173
4174         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
4175         change, since Autoconf's version may no longer be appropriate now
4176         that we are using CVS Autoconf's version.  Add support for Tandem.
4177
4178 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
4179             Bruno Haible  <bruno@clisp.org>
4180
4181         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
4182         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
4183         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
4184         gl_AC_TYPE_LONG_LONG.
4185
4186         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
4187         instead of HAVE_LONG_LONG.
4188         * lib/printf-args.c (printf_fetchargs): Likewise.
4189         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
4190         * lib/vasnprintf.c (VASNPRINTF): Likewise.
4191         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
4192         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
4193         gl_AC_TYPE_LONG_LONG.
4194
4195 2006-10-11  Bruno Haible  <bruno@clisp.org>
4196
4197         * m4/longlong.m4: Add comments.
4198         * m4/ulonglong.m4: Likewise.
4199
4200 2006-10-10  Bruno Haible  <bruno@clisp.org>
4201
4202         Make it possible to #define stpcpy, strdup to aliases.
4203         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
4204         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
4205
4206 2006-10-10  Bruno Haible  <bruno@clisp.org>
4207
4208         Make it possible to #define gcd to an alias.
4209         * lib/gcd.c: Include config.h.
4210
4211 2006-10-10  Bruno Haible  <bruno@clisp.org>
4212
4213         Make it possible to #define c_isascii to an alias.
4214         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
4215         defined. Undefine the macros before defining them, to avoid gcc
4216         warnings.
4217         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
4218         define NO_C_CTYPE_MACROS early.
4219
4220 2006-10-10  Bruno Haible  <bruno@clisp.org>
4221
4222         Make it possible to #define set_program_name to an alias.
4223         * lib/progname.c: Don't undefine set_program_name; instead, undefine
4224         ENABLE_RELOCATABLE early.
4225
4226 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
4227
4228         Port to Tandem NSK OSS, which has 64-bit signed int but at most
4229         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
4230         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
4231         More generally, don't assume that 64-bit signed int is available
4232         if unsigned int is, and vice versa.
4233         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
4234         unsigned symbols, not on their signed counterparts.
4235         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
4236         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
4237         (UINT64_C, UINTMAX_C):
4238         Likewise.
4239         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
4240         unsigned counterparts.
4241         (Have_long_long, Unsigned): New macros.
4242         (Int): Renamed from INT.
4243         (strtoimax): Use the new macros.
4244         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
4245         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
4246         * modules/inttypes (inttypes.h): Substitute
4247         HAVE_UNSIGNED_LONG_LONG_INT.
4248         * modules/stdint (stdint.h): Likewise.
4249         (Files): Add m4/ulonglong.m4.
4250
4251 2006-10-10  Bruno Haible  <bruno@clisp.org>
4252
4253         Fix a gcc -Wshadow warning.
4254         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
4255         to 'bucket'.
4256         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
4257         gl_linked_indexof_from_to): Likewise.
4258         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
4259         Likewise.
4260         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
4261         Likewise.
4262         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
4263         Reported by Eric Blake.
4264
4265 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
4266
4267         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
4268         for NetBSD.  Problem reported by Bruno Haible.
4269
4270 2006-10-09  Jim Meyering  <jim@meyering.net>
4271
4272         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
4273         Patch from Bruno Haible.
4274
4275 2006-10-09  Jim Meyering  <jim@meyering.net>
4276
4277         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
4278         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
4279         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
4280
4281 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
4282
4283         Don't include <config.h> twice; this doesn't work in some cases,
4284         e.g., when config.h has "#define intmax_t long long int" and
4285         we include <config.h>, <inttypes.h>, <config.h> in that order.
4286         Problem reported by Matthew Woehlke in:
4287         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
4288         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
4289         * lib/fts-cycle.c: Don't include config.h.
4290         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
4291         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
4292         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
4293         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
4294         inttypes.h.
4295         * lib/xstrtoumax.c: Likewise.
4296         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
4297         __strtol and the like, so that this module is more like its siblings.
4298         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
4299         Remove; no longer needed now that we assume gnulib inttypes.h.
4300
4301 2006-10-08  Bruno Haible  <bruno@clisp.org>
4302
4303         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
4304         option.
4305
4306 2006-10-07  Jim Meyering  <jim@meyering.net>
4307
4308         * modules/inttypes (inttypes.h): Revert what seems to have been
4309         an inadvertent part of today's change: use "|", not "/" in the
4310         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
4311
4312 2006-10-07  Bruno Haible  <bruno@clisp.org>
4313
4314         * modules/sublist: New file.
4315
4316 2006-10-07  Bruno Haible  <bruno@clisp.org>
4317
4318         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
4319         * modules/argz (argz.h): Likewise.
4320         * modules/arpa_inet (arpa/inet.h): Likewise.
4321         * modules/byteswap (byteswap.h): Likewise.
4322         * modules/configmake (configmake.h): Likewise.
4323         * modules/fcntl (fcntl.h): Likewise.
4324         * modules/fnmatch (fnmatch.h): Likewise.
4325         * modules/getopt (getopt.h): Likewise.
4326         * modules/glob (glob.h): Likewise.
4327         * modules/inttypes (inttypes.h): Likewise.
4328         * modules/netinet_in (netinet/in.h): Likewise.
4329         * modules/poll (poll.h): Likewise.
4330         * modules/stdbool (stdbool.h): Likewise.
4331         * modules/stdint (stdint.h): Likewise.
4332         * modules/sys_select (sys/select.h): Likewise.
4333         * modules/sys_socket (sys/socket.h): Likewise.
4334         * modules/sys_stat (sys/stat.h): Likewise.
4335         * modules/sysexits (sysexits.h): Likewise.
4336         * modules/unistd (unistd.h): Likewise.
4337         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
4338         Add a "DO NOT EDIT" comment to the generated file.
4339         (func_import): Likewise for gnulib-comp.m4.
4340
4341 2006-10-07  Bruno Haible  <bruno@clisp.org>
4342
4343         * lib/gl_sublist.h: New file.
4344         * lib/gl_sublist.c: New file.
4345
4346 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
4347
4348         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
4349         name (relative to the original working directory) and the file
4350         name component (relative to the temporary working directory).  All
4351         callers changed.
4352         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
4353         * lib/mkdir-p.c (make_dir_parents): Likewise.
4354         * lib/mkdir-p.h (make_dir_parents): Likewise.
4355
4356 2006-10-06  Eric Blake  <ebb9@byu.net>
4357
4358         Define several macros for use by the clean-temp module.
4359         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
4360         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
4361         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
4362
4363         * lib/clean-temp.h (close_stream_temp): New declaration.
4364         * lib/clean-temp.c (includes): Pull in headers according to what
4365         other modules are in use.
4366         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
4367
4368 2006-10-06  Bruno Haible  <bruno@clisp.org>
4369
4370         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
4371         instead of fopen, fwriteerror.
4372
4373 2006-10-06  Bruno Haible  <bruno@clisp.org>
4374
4375         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
4376         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
4377         int.
4378         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
4379         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
4380         Return an error indicator.
4381         Suggested by Eric Blake.
4382
4383 2006-10-06  Bruno Haible  <bruno@clisp.org>
4384
4385         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
4386         Reported by Eric Blake.
4387
4388 2006-10-06  Bruno Haible  <bruno@clisp.org>
4389
4390         * modules/closeout (Description): Mention stderr too.
4391
4392 2006-10-06  Bruno Haible  <bruno@clisp.org>
4393         and Paul Eggert  <eggert@cs.ucla.edu>
4394
4395         * lib/closeout.c (close_stdout): Also close stderr.
4396         * lib/closeout.h: Update comment.
4397
4398 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
4399
4400         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
4401         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
4402         * lib/dirchownmod.c: Include lchown.h.
4403         * lib/lchown.c: Don't include files that lchown.h now includes.
4404         Don't declare chown, since lchown.h now does that.
4405         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
4406         (lchown): Define to rpl_chown if lchown is declared but
4407         does not exist.  Declare using a prototype if lchown is not
4408         declared.  Add a copyright notice.
4409         * lib/mkstemp.h: Include <unistd.h>.
4410         * lib/openat.c: Include lchown.h.
4411
4412         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
4413         we now test for that separately.
4414         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
4415         rather than O_NOFOLLOW, when testing whether it's possible to
4416         avoid a race condition reliably.
4417         * lib/savewd.c (savewd_chdir): Likewise.
4418
4419         Remove macros that are no longer needed now that stdint.h is
4420         reliable.
4421         * lib/fsusage.c (UINTMAX_MAX): Remove.
4422         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
4423         * lib/utimecmp.c (SIZE_MAX): Remove.
4424
4425         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
4426
4427         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
4428         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
4429         O_NOATIME works.
4430
4431 2006-10-05  Bruno Haible  <bruno@clisp.org>
4432
4433         * lib/gl_list.h (gl_sortedlist_search_from_to,
4434         gl_sortedlist_indexof_from_to): New declarations.
4435         (gl_list_implementation): New fields sortedlist_search_from_to,
4436         sortedlist_indexof_from_to.
4437         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
4438         inline functions.
4439         * lib/gl_list.c (gl_sortedlist_search_from_to,
4440         gl_sortedlist_indexof_from_to): New functions.
4441         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
4442         function.
4443         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
4444         (gl_array_sortedlist_search_from_to): New function.
4445         (gl_array_list_implementation): Update.
4446         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
4447         function.
4448         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
4449         (gl_carray_sortedlist_search_from_to): New function.
4450         (gl_carray_list_implementation): Update.
4451         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
4452         gl_linked_sortedlist_indexof_from_to): New functions.
4453         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
4454         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
4455         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
4456         gl_tree_sortedlist_indexof_from_to): New functions.
4457         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
4458         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
4459         Update.
4460         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
4461         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
4462         Update.
4463
4464 2006-10-05  Bruno Haible  <bruno@clisp.org>
4465
4466         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
4467         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
4468         (struct gl_list_implementation): Add fields search_from_to,
4469         indexof_from_to. Remove fields search, indexof.
4470         (gl_list_search): Use the search_from_to method.
4471         (gl_list_search_from, gl_list_search_from_to): New functions.
4472         (gl_list_indexof): Use the indexof_from_to method.
4473         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
4474         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
4475         (gl_list_search_from, gl_list_search_from_to): New functions.
4476         (gl_list_indexof): Use the indexof_from_to method.
4477         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
4478         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
4479         gl_array_indexof. Add start_index, end_index arguments.
4480         (gl_array_search_from_to): Renamed from gl_array_search. Add
4481         start_index, end_index arguments.
4482         (gl_array_remove, gl_array_list_implementation): Update.
4483         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
4484         gl_carray_indexof. Add start_index, end_index arguments.
4485         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
4486         start_index, end_index arguments.
4487         (gl_carray_remove, gl_carray_list_implementation): Update.
4488         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
4489         gl_linked_search. Add start_index, end_index arguments.
4490         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
4491         start_index, end_index arguments.
4492         (gl_linked_remove): Update.
4493         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
4494         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
4495         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
4496         field to 'size_t'.
4497         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
4498         gl_tree_search. Add start_index, end_index arguments.
4499         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
4500         start_index, end_index arguments.
4501         (gl_tree_remove): Update.
4502         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
4503         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
4504         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
4505         function.
4506         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
4507         gl_tree_search. Add start_index, end_index arguments.
4508         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
4509         start_index, end_index arguments.
4510         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
4511         Update.
4512         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
4513
4514 2006-10-05  Bruno Haible  <bruno@clisp.org>
4515
4516         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
4517
4518         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
4519         fwriteerror_temp): New declarations.
4520         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
4521         (descriptors): New variable.
4522         (cleanup): First, close the descriptors.
4523         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
4524         fclose_temp, fwriteerror_temp): New functions.
4525
4526 2006-10-04  Jim Meyering  <jim@meyering.net>
4527
4528         * lib/fts.c (fts_open): Tiny comment change.
4529
4530 2006-10-04  Bruno Haible  <bruno@clisp.org>
4531
4532         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
4533         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
4534         gl_LOCK_BODY.
4535         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
4536         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
4537         gl_LOCK_EARLY_BODY.
4538         (gl_LOCK): Require gl_LOCK_BODY.
4539
4540 2006-10-04  Bruno Haible  <bruno@clisp.org>
4541
4542         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
4543         (gl_oset_search_atleast): New declaration.
4544         (struct gl_oset_implementation): Add field 'search_atleast'.
4545         (gl_oset_search_atleast): New inline function.
4546         * lib/gl_oset.c (gl_oset_search_atleast): New function.
4547         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
4548         (gl_array_oset_implementation): Update.
4549         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
4550         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
4551         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
4552
4553 2006-10-04  Bruno Haible  <bruno@clisp.org>
4554
4555         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
4556
4557 2006-10-03  Bruno Haible  <bruno@clisp.org>
4558
4559         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
4560         from gl_avltreehash_list_implementation.
4561
4562 2006-10-03  Bruno Haible  <bruno@clisp.org>
4563
4564         * lib/gl_oset.c (gl_oset_add): Fix return type.
4565
4566 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
4567
4568         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
4569
4570 2006-10-02  Eric Blake  <ebb9@byu.net>
4571
4572         * modules/strnlen (Depends-on): Add extensions.
4573
4574 2006-10-02  Eric Blake  <ebb9@byu.net>
4575
4576         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
4577         definition in 2.60+.
4578
4579 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
4580
4581         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
4582         checks.
4583
4584 2006-10-02  Bruno Haible  <bruno@clisp.org>
4585
4586         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
4587         to the AUTOMAKE_OPTIONS.
4588         Reported by Jim Meyering.
4589
4590 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
4591
4592         Work around bug in Solaris 10 /proc file system:
4593         /proc/self/fd/NNN/.. isn't the parent directory of
4594         the directory whose file descriptor is NNN.  This needs to
4595         be worked around at run time, not compile time, since a
4596         program might be built on Solaris 8, where things work, and
4597         run on Solaris 10.
4598         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
4599         to use the following interface instead:
4600         (OPENAT_BUFFER_SIZE): New macro.
4601         (openat_proc_name): New function.
4602         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
4603         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
4604         Likewise.
4605         * lib/openat-proc.c: New file.
4606         * modules/openat (Files): Add lib/openat-proc.c.
4607         (Depends-on): Add same-inode, stdbool.
4608         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
4609
4610 2006-09-29  Bruno Haible  <bruno@clisp.org>
4611
4612         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
4613         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
4614         argument. Set stdout_closed before testing for ferror, not after.
4615         (fwriteerror, fwriteerror_no_ebadf): New functions.
4616
4617 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4618
4619         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
4620
4621 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
4622
4623         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
4624         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
4625
4626 2006-09-28  Jim Meyering  <jim@meyering.net>
4627
4628         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
4629         Include <unistd.h>.
4630
4631 2006-09-28  Bruno Haible  <bruno@clisp.org>
4632
4633         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
4634         * modules/linkedhash-list (Depends-on): Likewise.
4635         * modules/rbtreehash-list (Depends-on): Likewise.
4636
4637 2006-09-28  Bruno Haible  <bruno@clisp.org>
4638
4639         * lib/strndup.h: Simplify the redefinition of strndup.
4640         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
4641         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
4642
4643 2006-09-28  Bruno Haible  <bruno@clisp.org>
4644
4645         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
4646         * lib/gl_linkedhash_list.c: Likewise.
4647         * lib/gl_rbtreehash_list.c: Likewise.
4648
4649 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
4650
4651         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
4652         getaddrinfo.
4653
4654         * lib/__fpending.h: Don't include <stdio_ext.h> unless
4655         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
4656         it causes <stdio_ext.h> to cause a compile-time error.
4657         Problem reported by Nelson H. F. Beebe.
4658         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
4659         of HAVE_DECL___PENDING.
4660
4661         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
4662         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
4663         declaration.
4664
4665 2006-09-27  Jim Meyering  <jim@meyering.net>
4666
4667         This file could end up with a definition for a function
4668         named __strndup, rather than rpl_strndup on a system with
4669         incomplete weak_alias support.
4670         * lib/strndup.c (strndup): Rename from __strndup.
4671         Remove #defines that used to map __strndup to strndup.
4672         Don't use K&R prototypes.
4673         Remove LIBC-related code, since this file is not sync'd with glibc.
4674         * lib/strndup.h: Revamp, accordingly.
4675         * m4/strndup.m4: Modernize.
4676
4677 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
4678
4679         * modules/savewd (Depends-on): Add 'raise'.
4680         * lib/savewd.c: Include <signal.h>, for 'raise'.
4681
4682 2006-09-26  Jim Meyering  <jim@meyering.net>
4683
4684         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
4685         when we detect Darwin 8.7.0's acl_get_file bug.
4686         Rearrange to perform the new (below) run-test while $LIBS
4687         contains any acl-related library.  Set USE_ACL at the end.
4688         (gl_ACL_GET_FILE): New function.
4689
4690 2006-09-26  Eric Blake  <ebb9@byu.net>
4691
4692         * lib/verror.c: Include <config.h> unconditionally.
4693
4694 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
4695
4696         * modules/clock-time (Maintainer): Add self.
4697         * modules/getlogin_r (Depends-on): Add extensions.
4698
4699 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4700
4701         * modules/clock-time: New module.
4702         * modules/nanosleep (Depends-on): Add clock-time.
4703         * modules/gethrxtime (Depends-on): Likewise.
4704         * modules/gettime (Depends-on): Likewise.
4705         * modules/settime (Depends-on): Likewise.
4706
4707         * modules/fts-lgpl: Depend on openat.
4708         * modules/mkancesdirs: Depend on savewd.
4709         * modules/mkdir-p: Likewise.
4710
4711 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4712
4713         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
4714
4715         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
4716         `gl_have_arbitrary_file_name_length_limit' to
4717         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
4718         actually works between configure runs.
4719
4720 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4721             Bruno Haible  <bruno@clisp.org>
4722
4723         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
4724
4725 2006-09-25  Jim Meyering  <jim@meyering.net>
4726
4727         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
4728         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
4729
4730 2006-09-25  Eric Blake  <ebb9@byu.net>
4731
4732         * gnulib-tool (func_import, func_create_testdir): Fix typos in
4733         exec's in 2006-09-18 patch when shuffling fds.
4734
4735 2006-09-25  Bruno Haible  <bruno@clisp.org>
4736
4737         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
4738         Reported by Jim Meyering.
4739
4740 2006-09-24  Jim Meyering  <jim@meyering.net>
4741
4742         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
4743         compare a pointer against a literal "0".  That caused failures with
4744         at least HP-UX's hpcc.
4745
4746 2006-09-22  Simon Josefsson  <jas@extundo.com>
4747
4748         * modules/gc-sha1:
4749         * modules/gc-md4:
4750         * modules/gc-hmac-sha1:
4751         * modules/gc-hmac-md5:
4752         * modules/gc-des:
4753         * modules/gc-arcfour: Distribute more files.
4754
4755 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4756
4757         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
4758         (gl_linked_iterator_from_to): Initialize struct completely.
4759         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
4760         (gl_tree_iterator_from_to): Likewise
4761         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
4762         * lib/gl_array_list.c [lint] (gl_array_iterator)
4763         (gl_array_iterator_from_to): Likewise.
4764         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
4765         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
4766         (gl_carray_iterator_from_to): Likewise.
4767
4768         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
4769         * lib/md4.c (md4_process_block): Remove unused variable.
4770         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
4771         parentheses for clarity.
4772
4773 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4774
4775         * modules/bison-i18n (Depends-on): Add gettext.
4776
4777 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4778
4779         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
4780         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
4781         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
4782         also add missing comma that caused broken test.
4783         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
4784         stdlib.h, for `abort'.
4785         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
4786         variables.
4787         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
4788         include unistd.h if present, for `rmdir'.
4789         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
4790         variables.
4791         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
4792         in the process include standard headers for prototypes.
4793         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
4794         gets declared on GNU/Linux.
4795         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
4796         unistd.h, for `rmdir'.
4797         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
4798
4799         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
4800         always true.
4801         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
4802
4803         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
4804
4805 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4806
4807         * gnulib-tool (func_version): Create output all at once.  This
4808         may help avoid triggering unnecessary SIGPIPEs, and at any
4809         rate it doesn't hurt.
4810
4811 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4812             Bruno Haible  <bruno@clisp.org>
4813
4814         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
4815         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
4816         * m4/signed.m4 (bh_C_SIGNED): Likewise.
4817
4818         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
4819         (gl_FUNC_VASPRINTF): Invoke it.
4820
4821 2006-09-22  Bruno Haible  <bruno@clisp.org>
4822
4823         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
4824         getloadavg.c as first argument.
4825
4826 2006-09-22  Bruno Haible  <bruno@clisp.org>
4827
4828         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
4829         at the beginning of the gl_INIT macro.
4830         * modules/getloadavg (configure.ac): Pass $gl_source_base to
4831         gl_GETLOADAVG.
4832
4833 2006-09-22  Bruno Haible  <bruno@clisp.org>
4834
4835         * gnulib-tool (func_create_megatestdir): Don't include the config-h
4836         module.
4837         Suggested by Ralf Wildenhues.
4838
4839 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
4840
4841         Import this patch from libc:
4842
4843         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
4844
4845         * lib/regex_internal.c (re_string_reconstruct): Handle
4846         offset < pstr->valid_raw_len && pstr->offsets_needed case.
4847         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
4848         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
4849         re_string_context_at.
4850
4851         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
4852         now requires it.
4853         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
4854         gl_REGEX now does it for us.
4855         (gl_REGEX): Add test taken from
4856         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
4857
4858         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
4859         Check that large offsets work.  Modernize Autoconf usages.
4860         Prefer "yes" to mean a good thing rather than a bad.
4861         Don't put "#define mkstemp" in config.h, as this might interfere
4862         with standard system headers that "#define mkstemp mkstemp64".
4863
4864         * modules/mkstemp (Depends-on): Add extensions, so that
4865         mkstemp is visible on some platforms.
4866         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
4867         (Include): Change to "mkstemp.h" from <stdlib.h>.
4868         (Files): Add mkstemp.h.
4869
4870         * lib/mkstemp.h: New file, since some standard headers
4871         #define mkstemp.
4872         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
4873         Include "mkstemp.h".
4874         Make the _LIBC code resemble glibc original more,
4875         e.g., use K&R style.
4876         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
4877         (mkstemp): Remove, since mkstemp.h does this for us.
4878         * lib/stdlib--.h: Include mkstemp.h.
4879
4880         Import this patch from libc:
4881
4882         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
4883
4884         * lib/tempname.c (__gen_tempname): Change attempts_min
4885         into a macro.  Use preprocessor to decide how to initialize
4886         attempts [Coverity CID 67].
4887
4888 2006-09-20  Bruno Haible  <bruno@clisp.org>
4889
4890         * lib/mkdtemp.c: Import from libc.
4891         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
4892                 * sysdeps/posix/tempname.c (__gen_tempname): Change
4893                 attempts_min into a macro.  Use preprocessor to decide how to
4894                 initialize attempts [Coverity CID 67].
4895         2001-11-27  Paul Eggert  <eggert@twinsun.com>
4896                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
4897                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
4898
4899 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4900
4901         * gnulib-tool (func_exit): New function, to allow to pass the
4902         exit status portably through the trap.  Use everywhere.
4903         (--help, --version): Signal a write error.
4904         (trap): catch SIGPIPE, for write errors.
4905         Exit at the end of the trap, with the correct exit status.
4906
4907 2006-09-19  Karl Berry  <karl@gnu.org>
4908
4909         * doc/gnulib.texi: note about the license texinfo files.
4910
4911 2006-09-19  Eric Blake  <ebb9@byu.net>
4912
4913         * gnulib-tool: Avoid space-tab.
4914
4915 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
4916
4917         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
4918         that prevented coreutils 6.1 from building.  Problem reported
4919         by Petter Reinholdtsen.
4920
4921 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
4922
4923         * gnulib-tool (avoidlist): Fix typo that broke options like
4924         --avoid=lock that are used by coreutils bootstrap.
4925
4926 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
4927
4928         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
4929         more systematically.
4930
4931 2006-09-18  Jim Meyering  <jim@meyering.net>
4932
4933         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
4934
4935 2006-09-18  Bruno Haible  <bruno@clisp.org>
4936
4937         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
4938
4939 2006-09-18  Bruno Haible  <bruno@clisp.org>
4940
4941         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
4942         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
4943         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
4944         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
4945         * m4/gettext.m4: Require autoconf >= 2.52.
4946         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
4947         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
4948         of gl_cv_header_inttypes_h.
4949
4950 2006-09-18  Bruno Haible  <bruno@clisp.org>
4951
4952         * lib/javaversion.c: Include configmake.h.
4953
4954 2006-09-18  Bruno Haible  <bruno@clisp.org>
4955
4956         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
4957         avoid that the while loops be executed in a subshell.
4958
4959 2006-09-18  Bruno Haible  <bruno@clisp.org>
4960
4961         * MODULES.html.sh (func_module): Break long lines.
4962         Suggested by Bruce Korb <bkorb@gnu.org>.
4963
4964 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4965
4966         Speed up by a factor of 1.12.
4967         * gnulib-tool (nl): New variable.
4968         (func_import): Rewrite include directive extraction to only read each
4969         directive once.
4970
4971 2006-09-17  Bruno Haible  <bruno@clisp.org>
4972
4973         * modules/javaversion (Makefile.am): Remove DEFS setting.
4974         (Depends-on): Add configmake, for PKGDATADIR definition.
4975
4976 2006-09-17  Bruno Haible  <bruno@clisp.org>
4977
4978         * gnulib-tool (func_create_testdir): Rewrite all files at once.
4979
4980 2006-09-17  Bruno Haible  <bruno@clisp.org>
4981
4982         * gnulib-tool (func_append): New function, stolen from libtool.m4.
4983         (func_modules_transitive_closure, func_modules_add_dummy,
4984         func_modules_to_filelist, func_import, func_create_testdir,
4985         func_create_megatestdir, ...): Use it wherever possible.
4986         Suggested by Ralf Wildenhues.
4987
4988 2006-09-16  Karl Berry  <karl@gnu.org>
4989
4990         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
4991         to avoid sectioning errors.
4992         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
4993         [ifinfo]: blank line after @center-ed titles.
4994         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
4995         Spell FSF address consistently with others.
4996         (These changes approved by rms.)
4997
4998 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4999
5000         Speed up by a factor of 1.61.
5001         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
5002         already checked module names again.
5003
5004 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5005
5006         Speed up by a factor of 1.13.
5007         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
5008         for new_files, and the input to func_add_or_update.
5009
5010 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5011
5012         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
5013         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
5014
5015 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
5016
5017         * modules/mkancesdirs (Depends-on): Add fcntl.
5018         * modules/savewd: New file.
5019         * MODULES.html.sh (File system functions): Add savewd.
5020
5021         * modules/configmake (Makefile.am): Add support for the
5022         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
5023
5024 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
5025
5026         * m4/savewd.m4: New file.
5027
5028 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
5029
5030         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
5031         (dirchownmod): New arg FD.  All callers changed.
5032         Use FD rather than opening the directory ourself, as opening is
5033         now the caller's responsibility.
5034         * lib/dirchownmod.h: Likewise.
5035         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
5036         hosts that require <sys/types.h> before <sys/stat.h>.  Include
5037         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
5038         (test_dir): Remove.
5039         (mkancesdirs): Return length of prefix of FILE that has already
5040         been made, or -2 if there is a child doing the work.  Redo
5041         algorithm so that it is O(N) rather than O(N**2).  Optimize away
5042         ".", and treat ".." specially since it might stray back into
5043         already-created areas.  Use a subprocess if necessary.  New arg
5044         WD; all users changed.  MAKE_DIR function should now return 1
5045         if it creates a directory that is not readable.  Return -2 if
5046         a child process is spun off.
5047         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
5048         Adjust signature to match code.
5049         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
5050         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
5051         all users changed.
5052         * lib/savewd.c, lib/savewd.h: New files.
5053
5054 2006-09-15  Jim Meyering  <jim@meyering.net>
5055
5056         * modules/rename-dest-slash: New module.
5057         * MODULES.html.sh (posix_compat): Add it here.
5058
5059         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
5060
5061 2006-09-15  Jim Meyering  <jim@meyering.net>
5062
5063         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
5064         file.
5065
5066         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
5067
5068 2006-09-15  Jim Meyering  <jim@meyering.net>
5069
5070         * lib/rename-dest-slash.c (has_trailing_slash): Use
5071         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
5072         (rpl_rename_dest_slash): Perform the cheaper trailing slash
5073         test before testing whether SRC is a directory.
5074         Suggestions from Bruno Haible.
5075
5076         Avoid a warning about an unused variable.
5077         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
5078         into the #ifdef block where it's used.
5079
5080         * lib/rename-dest-slash.c: New file.
5081
5082 2006-09-14  Bruno Haible  <bruno@clisp.org>
5083
5084         * lib/allocsa.c: Include <config.h> unconditionally.
5085         * lib/asnprintf.c: Likewise.
5086         * lib/asprintf.c: Likewise.
5087         * lib/c-strcasecmp.c: Likewise.
5088         * lib/c-strcasestr.c: Likewise.
5089         * lib/c-strncasecmp.c: Likewise.
5090         * lib/c-strstr.c: Likewise.
5091         * lib/classpath.c: Likewise.
5092         * lib/clean-temp.c: Likewise.
5093         * lib/concatpath.c: Likewise.
5094         * lib/copy-file.c: Likewise.
5095         * lib/csharpcomp.c: Likewise.
5096         * lib/csharpexec.c: Likewise.
5097         * lib/execute.c: Likewise.
5098         * lib/fatal-signal.c: Likewise.
5099         * lib/findprog.c: Likewise.
5100         * lib/fwriteerror.c: Likewise.
5101         * lib/gl_array_list.c: Likewise.
5102         * lib/gl_array_oset.c: Likewise.
5103         * lib/gl_avltree_list.c: Likewise.
5104         * lib/gl_avltree_oset.c: Likewise.
5105         * lib/gl_avltreehash_list.c: Likewise.
5106         * lib/gl_carray_list.c: Likewise.
5107         * lib/gl_linked_list.c: Likewise.
5108         * lib/gl_linkedhash_list.c: Likewise.
5109         * lib/gl_list.c: Likewise.
5110         * lib/gl_oset.c: Likewise.
5111         * lib/gl_rbtree_list.c: Likewise.
5112         * lib/gl_rbtree_oset.c: Likewise.
5113         * lib/gl_rbtreehash_list.c: Likewise.
5114         * lib/imaxabs.c: Likewise.
5115         * lib/imaxdiv.c: Likewise.
5116         * lib/javacomp.c: Likewise.
5117         * lib/javaexec.c: Likewise.
5118         * lib/javaversion.c: Likewise.
5119         * lib/linebreak.c: Likewise.
5120         * lib/localcharset.c: Likewise.
5121         * lib/lock.c: Likewise.
5122         * lib/mbchar.c: Likewise.
5123         * lib/mbswidth.c: Likewise.
5124         * lib/mkdtemp.c: Likewise.
5125         * lib/pipe.c: Likewise.
5126         * lib/printf-args.c: Likewise.
5127         * lib/printf-parse.c: Likewise.
5128         * lib/progname.c: Likewise.
5129         * lib/progreloc.c: Likewise.
5130         * lib/readlink.c: Likewise.
5131         * lib/sh-quote.c: Likewise.
5132         * lib/stpcpy.c: Likewise.
5133         * lib/stpncpy.c: Likewise.
5134         * lib/strcasecmp.c: Likewise.
5135         * lib/strcasestr.c: Likewise.
5136         * lib/strcspn.c: Likewise.
5137         * lib/striconv.c: Likewise.
5138         * lib/strncasecmp.c: Likewise.
5139         * lib/strnlen1.c: Likewise.
5140         * lib/strstr.c: Likewise.
5141         * lib/strtok_r.c: Likewise.
5142         * lib/tls.c: Likewise.
5143         * lib/tmpdir.c: Likewise.
5144         * lib/unicodeio.c: Likewise.
5145         * lib/unsetenv.c: Likewise.
5146         * lib/vasnprintf.c: Likewise.
5147         * lib/vasprintf.c: Likewise.
5148         * lib/wait-process.c: Likewise.
5149         * lib/xallocsa.c: Likewise.
5150         * lib/xsetenv.c: Likewise.
5151         * lib/xstriconv.c: Likewise.
5152
5153 2006-09-13  Simon Josefsson  <jas@extundo.com>
5154
5155         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
5156         that internally, suggested by Ralf Wildenhues
5157         <Ralf.Wildenhues@gmx.de>.
5158
5159 2006-09-13  Simon Josefsson  <jas@extundo.com>
5160
5161         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
5162         @LIBOBJS@.
5163         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
5164
5165 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
5166
5167         * lib/_fpending.c: Include <config.h> unconditionally, since we no
5168         longer worry about uses that don't define HAVE_CONFIG_H.
5169         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
5170         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
5171         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
5172         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
5173         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
5174         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
5175         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
5176         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
5177         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
5178         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
5179         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
5180         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
5181         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
5182         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
5183         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
5184         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
5185         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
5186         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
5187         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
5188         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
5189         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
5190         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
5191         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
5192         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
5193         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
5194         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
5195         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
5196         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
5197         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
5198         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
5199         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
5200         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
5201         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
5202         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
5203         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
5204         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
5205         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
5206         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
5207         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
5208         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
5209         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
5210         Likewise.
5211
5212 2006-09-13  Eric Blake  <ebb9@byu.net>
5213
5214         * lib/getopt.c: Fix typo in last commit.
5215
5216 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
5217
5218         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
5219         dgettext.
5220
5221 2006-09-12  Jim Meyering  <jim@meyering.net>
5222
5223         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
5224         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
5225         Reported by Nelson H. F. Beebe.
5226
5227 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
5228
5229         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
5230         program_invocation_name and program_invocation_short_name are
5231         initialized.
5232         * lib/argp-namefrob.h: Move declarations of program_invocation_name
5233         and program_invocation_short_name to argp.h, so they are visible
5234         to user programs.
5235         * lib/argp.h: Likewise
5236
5237 2006-09-10  Bruno Haible  <bruno@clisp.org>
5238
5239         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
5240         m4/inttypes_h.m4, m4/uintmax_t.m4.
5241
5242 2006-09-10  Bruno Haible  <bruno@clisp.org>
5243
5244         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
5245         gl_AC_TYPE_UINTMAX_T.
5246
5247 2006-09-10  Bruno Haible  <bruno@clisp.org>
5248
5249         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
5250
5251 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
5252
5253         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
5254         convention.  Text proposed by Bruno Haible.
5255         (struct argp_option): Document the use of N_() wrappers.
5256
5257         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
5258         '\v', and translate the two parts separately, instead of feeding
5259         the whole string to gettext.  This allows to exclude
5260         '\v' from the strings visible to the translator by writing doc
5261         strings as N_("..") "\v" N_("..").
5262
5263 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
5264
5265         * config/srclist.txt: Undo latest change; the bug was fixed.
5266
5267 2006-09-09  Bruno Haible  <bruno@clisp.org>
5268
5269         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
5270         assignments if building a library without libtool.
5271         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
5272         in func_emit_lib_Makefile_am.
5273         (func_import): When building a static library libfoo.a, arrange to
5274         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
5275         (func_create_testdir): Likewise.
5276         * modules/gc (configure.ac, Makefile.am): If building statically,
5277         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
5278         * modules/iconvme (configure.ac, Makefile.am): Likewise.
5279         * modules/striconv (configure.ac, Makefile.am): Likewise.
5280         Based on a suggestion by Ralf Wildenhues.
5281
5282 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
5283
5284         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
5285         Check for unistd.h too, since Autoconf doesn't assume POSIX.
5286         Also:
5287
5288         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
5289         Add year_2050_test to catch glibc bug 2821
5290         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
5291
5292         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
5293         Prefer #ifdef to #if.
5294
5295         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
5296         Return from 'main' instead of calling 'exit'.
5297
5298 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
5299
5300         * lib/mktime.c (guess_time_tm): Fix bug where mktime
5301         returned the maximum time_t value rather than (time_t) -1.
5302         Problem originally reported by William Bardwell
5303         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
5304
5305         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
5306         Moved to here ...
5307         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
5308         ... from here.
5309
5310 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
5311
5312         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
5313         2821 is fixed.
5314
5315 2006-09-08  Jim Meyering  <jim@meyering.net>
5316
5317         Don't make generated files read-only.  That would bother too many
5318         people.  However, do retain the ability to work when targets are
5319         read-only: remove the destination and temporary files before writing
5320         them (when generated via sed or echo), or by using the -f option for
5321         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
5322         * modules/alloca-opt, modules/argz, modules/arpa_inet:
5323         * modules/byteswap, modules/configmake, modules/fcntl:
5324         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
5325         * modules/localcharset, modules/netinet_in, modules/poll:
5326         * modules/stdbool, modules/stdint, modules/sys_select:
5327         * modules/sys_socket, modules/sys_stat, modules/sysexits:
5328
5329 2006-09-08  Jim Meyering  <jim@meyering.net>
5330
5331         Avoid new build failure on FreeBSD 6.0.
5332         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
5333         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
5334         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
5335
5336 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5337
5338         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
5339
5340 2006-09-07  Jim Meyering  <jim@meyering.net>
5341
5342         Fix global typo in last change: use chmod u-w, not chmod u-x.
5343         Spotted by Paul Eggert and Bruce Korb.
5344         * modules/alloca-opt, modules/argz, modules/arpa_inet:
5345         * modules/byteswap, modules/configmake, modules/fcntl:
5346         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
5347         * modules/localcharset, modules/netinet_in, modules/poll:
5348         * modules/stdbool, modules/stdint, modules/sys_select:
5349         * modules/sys_socket, modules/sys_stat, modules/sysexits:
5350
5351 2006-09-06  Jim Meyering  <jim@meyering.net>
5352
5353         Make generated files be read-only.
5354         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
5355         Ensure that each generated file is now read-only.
5356         * modules/argz: Likewise.
5357         * modules/arpa_inet: Likewise.
5358         * modules/byteswap: Likewise.
5359         * modules/configmake: Likewise.
5360         * modules/fcntl: Likewise.
5361         * modules/fnmatch: Likewise.
5362         * modules/getopt: Likewise.
5363         * modules/glob: Likewise.
5364         * modules/inttypes: Likewise.
5365         * modules/netinet_in: Likewise.
5366         * modules/poll: Likewise.
5367         * modules/stdbool: Likewise.
5368         * modules/stdint: Likewise.
5369         * modules/sys_select: Likewise.
5370         * modules/sys_socket: Likewise.
5371         * modules/sys_stat: Likewise.
5372         * modules/sysexits: Likewise.
5373         * modules/localcharset: Same as above, but continue using temporary
5374         file named "t-$@" (why different?) rather than the "$@-t" used
5375         everywhere else.
5376
5377         * modules/sysexits (Makefile.am): Replace literal occurrences
5378         of "sysexit.h" more readable, and more consistent, "$@".
5379
5380 2006-09-06  Bruno Haible  <bruno@clisp.org>
5381
5382         * modules/striconv: New file.
5383         * modules/xstriconv: New file.
5384         * MODULES.html.sh (Internationalization functions): Add striconv,
5385         xstriconv.
5386
5387 2006-09-06  Bruno Haible  <bruno@clisp.org>
5388
5389         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
5390         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
5391         not using libtool correctly.
5392
5393 2006-09-06  Bruno Haible  <bruno@clisp.org>
5394
5395         * lib/striconv.h: New file.
5396         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
5397         iconvstring.c.
5398         * lib/xstriconv.h: New file.
5399         * lib/xstriconv.c: New file.
5400
5401 2006-09-06  Bruno Haible  <bruno@clisp.org>
5402
5403         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
5404         lib_..._LDFLAGS.
5405
5406 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5407
5408         * lib/argz_.h: Sync from Libtool.
5409
5410         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
5411                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
5412
5413         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
5414
5415 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
5416
5417         * modules/trim: New file.
5418
5419 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
5420
5421         * lib/trim.h: New file.
5422         * lib/trim.c: New file.
5423
5424 2006-09-05  Bruno Haible  <bruno@clisp.org>
5425
5426         * MODULES.html.sh (String handling): Add trim.
5427
5428 2006-09-04  Karl Berry  <karl@gnu.org>
5429
5430         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
5431         until next release.
5432
5433 2006-09-03  Bruno Haible  <bruno@clisp.org>
5434
5435         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
5436         correctly.
5437
5438 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
5439
5440         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
5441         not gl_GETLOADAVG.  Omit unneeded semicolons.
5442         Problems reported by Ralf Wildenhues in
5443         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
5444         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
5445         at the end, which is the usual gnulib style.
5446
5447         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
5448         of doing all the work ourselves.
5449         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
5450         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
5451
5452 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
5453
5454         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
5455         Problem reported by Ralf Wildenhues in
5456         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
5457
5458         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
5459         HAVE_STRUCT_STATFS_F_FSTYPENAME.
5460
5461 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
5462
5463         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
5464         yesterday's patch by changing test -n to test -z.
5465
5466 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
5467
5468         * modules/getloadavg (Files): Add m4/getloadavg.m4.
5469         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
5470         the former is now obsolescent.
5471
5472         * modules/chdir-long (Depends-on): Add fcntl.
5473
5474 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
5475
5476         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
5477         obsolescent, and programs should use gnulib instead.
5478         * m4/getloadavg.m4: New file, with contents taken from Autoconf
5479         but with prefixes changed.
5480
5481 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
5482
5483         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
5484         or stdbool.h, because they might not exist while configuring.
5485
5486         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
5487         Don't include unistd.h or limits.h; not needed, since chdir-long.h
5488         does that for us.
5489         (O_DIRECTORY): Remove.
5490
5491 2006-08-31  Eric Blake  <ebb9@byu.net>
5492
5493         * gnulib-tool: Don't let emacs change spaces to TAB.
5494
5495 2006-08-31  Bruno Haible  <bruno@clisp.org>
5496
5497         * gnulib-tool: When calling func_import more than once, do it in a
5498         subshell.
5499         Reported by Eric Blake <ebb9@byu.net>.
5500
5501 2006-08-31  Bruno Haible  <bruno@clisp.org>
5502
5503         * gnulib-tool (nl): Remove variable.
5504         (sed_transform_lib_file): Use more robust test for config-h module.
5505         (func_import): Fix typo in 2006-08-25 patch.
5506
5507 2006-08-31  Bruno Haible  <bruno@clisp.org>
5508
5509         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
5510         specified, augment Makefile.am variables instead of assigning them.
5511
5512 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
5513
5514         Work around a bug in both the Linux and SunOS 64-bit kernels:
5515         nanosleep mishandles sleeps for longer than 2**31 seconds.
5516         Problem reported by Frank v Waveren in
5517         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
5518         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
5519         Check for nanosleep bug.
5520         (LIB_NANOSLEEP): Append clock_gettime library if needed.
5521
5522 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
5523
5524         Work around a bug in both the Linux and SunOS 64-bit kernels:
5525         nanosleep mishandles sleeps for longer than 2**31 seconds.
5526         Problem reported by Frank v Waveren in
5527         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
5528         * lib/nanosleep.c (BILLION): New constant.
5529         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
5530         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
5531         implementation.
5532
5533 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
5534
5535         * modules/nanosleep (Depends-on): Add gettime.
5536
5537 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
5538         and Simon Josefsson  <jas@extundo.com>
5539         and Oskar Liljeblad  <oskar@osk.mine.nu>
5540
5541         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
5542         * gnulib-tool (func_import): New license type 'unmodifiable license
5543         text'.
5544         * modules/fdl: Use it.  Longer description.
5545         * module/gpl, module/lgpl: New files.
5546
5547 2006-08-30  Jim Meyering  <jim@meyering.net>
5548
5549         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
5550         shadowing the parameter.
5551
5552 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5553
5554         Sync from Libtool:
5555
5556         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5557
5558         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
5559         sharing with gnulib.  Report by Eric Blake.
5560
5561 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
5562
5563         * modules/isapipe: New file.
5564         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
5565
5566 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
5567
5568         * modules/configmake (Makefile.am): Add a comment, and omit
5569         the CONFIGMAKE_ prefix from generated macro names.  Suggested
5570         by Bruno Haible.
5571
5572 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
5573
5574         * m4/isapipe.m4: New file.
5575
5576 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
5577
5578         * lib/isapipe.c, lib/isapipe.h: New files.
5579
5580 2006-08-29  Jim Meyering  <jim@meyering.net>
5581
5582         * modules/configmake (Makefile.am): Make configmake.h depend on
5583         Makefile.  Otherwise, a stale configmake.h could hang around.
5584
5585 2006-08-29  Eric Blake  <ebb9@byu.net>
5586
5587         * lib/error.c (error_at_line, print_errno_message): Match libc, after
5588         resolution of upstream bug 3044.
5589
5590 2006-08-29  Bruno Haible  <bruno@clisp.org>
5591
5592         * modules/localcharset (Depends-on): Add configmake.
5593         (Makefile.am): Remove setting of LIBDIR through DEFS.
5594
5595 2006-08-29  Bruno Haible  <bruno@clisp.org>
5596
5597         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
5598         defined.
5599
5600 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
5601
5602         * modules/fcntl: New file.
5603         * modules/chdir-safer (Depends-on): Add fcntl.
5604         * modules/fts: Likewise.
5605         * modules/mkdir-p: Likewise.
5606
5607         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
5608         This undoes the most recent change, since we're now addressing the
5609         problem in a different way.
5610
5611         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
5612         into output, since the output might be called Makefile.am even
5613         if $makefile_name is something different.
5614         (func_import): Use $makefile_am rather than
5615         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
5616         empty.
5617
5618         * modules/inttypes (Files): Add m4/inttypes-h.m4.
5619
5620 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
5621
5622         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
5623         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
5624         recent change to stdint.m4, since we're now addressing the problem in a
5625         different way.
5626
5627 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
5628
5629         * m4/fcntl_h.m4: New file.
5630
5631 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
5632
5633         * lib/fcntl_.h: New file.
5634         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
5635         the fcntl module.
5636         * lib/dirchownmod.c: Likewise.
5637         * lib/fts.c: Likewise.
5638
5639         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
5640         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
5641         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
5642         just before including <inttypes.h>, to avoid circular inclusion.
5643
5644 2006-08-28  Jim Meyering  <jim@meyering.net>
5645
5646         * doc/visibility.texi: Actually read and correct the grammar of the
5647         sentence affected by yesterday's change.
5648
5649 2006-08-28  Eric Blake  <ebb9@byu.net>
5650
5651         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
5652         needs wrapper.
5653
5654 2006-08-28  Eric Blake  <ebb9@byu.net>
5655
5656         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
5657
5658 2006-08-28  Eric Blake  <ebb9@byu.net>
5659
5660         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
5661
5662 2006-08-28  Bruno Haible  <bruno@clisp.org>
5663
5664         * modules/c-strstr: New file, from GNU gettext.
5665         * MODULES.html.sh (String handling): Add c-strstr.
5666
5667 2006-08-28  Bruno Haible  <bruno@clisp.org>
5668
5669         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
5670         macros.
5671         Reported by Eric Blake.
5672
5673 2006-08-28  Bruno Haible  <bruno@clisp.org>
5674
5675         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
5676         (VASNPRINTF): Return a string of length > INT_MAX without failing.
5677         * lib/vasprintf.c: Include errno.h, limits.h.
5678         (EOVERFLOW): New fallback definition.
5679         (vasprintf): Test here whether the string length is > INT_MAX.
5680         * lib/vsnprintf.c: Include errno.h, limits.h.
5681         (EOVERFLOW): New fallback definition.
5682         (vsnprintf): Fix bug when generated string was too long for the buffer.
5683         Test here whether the string length is > INT_MAX.
5684
5685 2006-08-28  Bruno Haible  <bruno@clisp.org>
5686
5687         * lib/inttypes_.h (SCNX*): Remove definitions.
5688         Reported by Eric Blake.
5689
5690 2006-08-28  Bruno Haible  <bruno@clisp.org>
5691
5692         * lib/c-strstr.h: New file, from GNU gettext.
5693         * lib/c-strstr.c: New file, from GNU gettext.
5694
5695 2006-08-28  Bruno Haible  <bruno@clisp.org>
5696
5697         * gnulib-tool: Reorder some statements.
5698
5699 2006-08-28  Bruno Haible  <bruno@clisp.org>
5700
5701         * gnulib-tool: New option --makefile-name.
5702         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
5703         $makefile_name.
5704         (func_import): Write $makefile_name to the cache file, and read it from
5705         there unless explicitly specified. Use $makefile_name as file name
5706         instead of Makefile.am. Adjust the recommendations accordingly.
5707
5708 2006-08-28  Bruno Haible  <bruno@clisp.org>
5709
5710         * gnulib-tool (func_verify_module): Check against misapplying patch.
5711
5712 2006-08-28  Bruno Haible  <bruno@clisp.org>
5713
5714         * gnulib-tool (func_relativize, func_relconcat): New functions.
5715         Give an error if --local-dir is given with --update.
5716         Remove trailing slashes from $local_gnulib_dir.
5717         (func_import): Store the relativized $local_gnulib_dir in
5718         gnulib-cache.m4, and read it from there if not specified explicitly.
5719
5720 2006-08-28  Bruno Haible  <bruno@clisp.org>
5721
5722         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
5723         is the current directory. Respect also $local_gnulib_dir.
5724
5725 2006-08-28  Bruno Haible  <bruno@clisp.org>
5726             Simon Josefsson  <jas@extundo.com>
5727
5728         BeOS portability.
5729         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
5730
5731 2006-08-27  Jim Meyering  <jim@meyering.net>
5732
5733         * doc/visibility.texi: Remove duplicate word: "pointer".
5734
5735 2006-08-26  Bruno Haible  <bruno@clisp.org>
5736
5737         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
5738         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
5739         (Makefile.am): Create inttypes.h from inttypes_.h.
5740         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
5741
5742         * modules/imaxabs: New file.
5743
5744         * modules/imaxdiv: New file.
5745
5746 2006-08-26  Bruno Haible  <bruno@clisp.org>
5747
5748         * m4/inttypes.m4: New file.
5749         * m4/_inttypes_h.m4: Remove file.
5750         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
5751         PRI_MACROS_BROKEN.
5752         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
5753
5754         * m4/imaxabs.m4: New file.
5755
5756         * m4/imaxdiv.m4: New file.
5757
5758 2006-08-26  Bruno Haible  <bruno@clisp.org>
5759
5760         * lib/inttypes_.h: New file.
5761         * lib/inttypes.h: Remove file.
5762         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
5763
5764         * lib/imaxabs.c: New file.
5765
5766         * lib/imaxdiv.c: New file.
5767
5768 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
5769
5770         New config-h module, so that "make" output needn't be cluttered
5771         by -DHAVE_CONFIG_H.
5772         * MODULES.html.sh (Support for building libraries and executables):
5773         Add config-h.
5774         * modules/config-h: New file.
5775         * gnulib-tool (nl, sed_transform_lib_file): New vars.
5776         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
5777         the config-h module is used.
5778
5779         New configmake module, so that "make" output needn't be cluttered
5780         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
5781         * MODULES.html.sh (Support for building libraries and executables):
5782         Add configmake.
5783         * modules/configmake: New file.
5784
5785 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
5786
5787         * m4/config-h.m4: New file.
5788
5789 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
5790
5791         * config/srclist.txt: Add elisp-comp.
5792
5793 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
5794
5795         * MODULES.html.sh (Support for building libraries and executables):
5796         Add elisp-comp.
5797         * build-aux/elisp-comp: New file.
5798         * modules/elisp-comp: New file.
5799
5800 2006-08-24  Bruno Haible  <bruno@clisp.org>
5801
5802         * gnulib-tool (func_create_testdir): Use non-default values of
5803         sourcebase and m4base.
5804
5805 2006-08-24  Bruno Haible  <bruno@clisp.org>
5806
5807         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
5808         HTML structure.
5809
5810 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
5811
5812         * modules/openat (Depends-on): Add lchown.
5813
5814 2006-08-23  Bruno Haible  <bruno@clisp.org>
5815
5816         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
5817         of gl_LOCK_EARLY instead of gl_LOCK.
5818
5819 2006-08-23  Bruno Haible  <bruno@clisp.org>
5820
5821         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
5822         on OSF/1 to no.
5823         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
5824
5825 2006-08-23  Bruno Haible  <bruno@clisp.org>
5826
5827         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
5828         as unusable.
5829
5830         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
5831         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
5832         (gl_LOCK): New macro.
5833
5834 2006-08-22  Simon Josefsson  <jas@extundo.com>
5835
5836         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
5837         to md5 module.
5838
5839 2006-08-22  Simon Josefsson  <jas@extundo.com>
5840
5841         * MODULES.html.sh: Add "Support for maintaining and release
5842         projects".
5843
5844         * build-aux/gnupload: New file, from coreutils.
5845
5846 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
5847
5848         Avoid the need for AC_LIBSOURCES in m4 macros.
5849         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
5850         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
5851         * modules/check-version (EXTRA_DIST): Add check-version.h.
5852         * modules/crc (EXTRA_DIST): Add crc.h.
5853         * modules/des (EXTRA_DIST): Add des.h.
5854         * modules/gc (EXTRA_DIST): Add gc.h.
5855         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
5856         * modules/getline (EXTRA_DIST): Add getline.h.
5857         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
5858         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
5859         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
5860         * modules/md2 (EXTRA_DIST): Add md2.h.
5861         * modules/md4 (EXTRA_DIST): Add md4.h.
5862         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
5863         * modules/read-file (EXTRA_DIST): Add read-file.h.
5864         * modules/readline (EXTRA_DIST): Add readline.h.
5865         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
5866         rijndael-api-fst.h.
5867
5868 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
5869
5870         * m4/rijndael.m4 (gl_ARCFOUR):
5871         * m4/arctwo.m4 (gl_ARCTWO):
5872         * m4/check-version.m4 (gl_CHECK_VERSION):
5873         * m4/crc.m4 (gl_CRC):
5874         * m4/des.m4 (gl_DES):
5875         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
5876         * m4/gc.m4 (gl_GC):
5877         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
5878         * m4/getline.m4 (gl_FUNC_GETLINE):
5879         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
5880         * m4/hmac-md5.m4 (gl_HMAC_MD5):
5881         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
5882         * m4/md2.m4 (gl_MD2):
5883         * m4/md4.m4 (gl_MD4):
5884         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
5885         * m4/read-file.m4 (gl_FUNC_READ_FILE):
5886         * m4/readline.m4 (gl_FUNC_READLINE):
5887         * m4/rijndael.m4 (gl_RIJNDAEL):
5888         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
5889         to get the necessary .h files and whatnot.
5890
5891 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
5892
5893         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
5894         gnulib rather than the other way around.
5895         * config/srclistvars.sh (COREUTILS): Remove.
5896
5897 2006-08-22  Jim Meyering  <jim@meyering.net>
5898
5899         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
5900
5901         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
5902
5903 2006-08-22  Eric Blake  <ebb9@byu.net>
5904
5905         * modules/regexprops-generic: New file.
5906         * MODULES.html.sh (Support for building documentation): List it.
5907
5908 2006-08-22  Eric Blake  <ebb9@byu.net>
5909
5910         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
5911         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
5912         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
5913         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
5914
5915 2006-08-22  Bruno Haible  <bruno@clisp.org>
5916
5917         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
5918         and lib_LTLIBRARIES like the other lib_* variables.
5919
5920 2006-08-22  Bruno Haible  <bruno@clisp.org>
5921
5922         * build-aux/x-to-1.in: New file, from GNU gettext.
5923
5924 2006-08-22  Bruno Haible  <bruno@clisp.org>
5925
5926         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
5927         <utmpx.h> exists.
5928
5929 2006-08-22  Bruno Haible  <bruno@clisp.org>
5930
5931         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
5932         <utmpx.h> exists.
5933
5934 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
5935
5936         BeOS portability.
5937         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
5938         exist.
5939         Problem reported by Bruno Haible.
5940
5941 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
5942
5943         Avoid the need for AC_LIBSOURCES in m4 macros.
5944         * modules/acl (EXTRA_DIST): Add acl.h.
5945         * modules/argmatch (Files): Add m4/argmatch.m4.
5946         (configure.ac): Add gl_ARGMATCH.
5947         (EXTRA_DIST): Renamed from lib_SOURCES, for
5948         consistency with the other modules.  Remove argmatch.c.
5949         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
5950         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
5951         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
5952         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
5953         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
5954         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
5955         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
5956         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
5957         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
5958         * modules/closeout (EXTRA_DIST): Add closeout.h.
5959         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
5960         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
5961         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
5962         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
5963         dirname.h; remove basename.c and stripslash.c.
5964         * modules/exclude (EXTRA_DIST): Add exclude.h.
5965         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
5966         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
5967         * modules/file-type (EXTRA_DIST): Add file-type.h.
5968         * modules/filemode (EXTRA_DIST): Add filemode.h.
5969         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
5970         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
5971         * modules/fpending (EXTRA_DIST): Add __fpending.h.
5972         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
5973         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
5974         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
5975         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
5976         * modules/getdate (EXTRA_DIST): Add getdate.c.
5977         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
5978         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
5979         * modules/getpass (EXTRA_DIST): Add getpass.h.
5980         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
5981         * modules/group-member (EXTRA_DIST): Add group-member.h.
5982         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
5983         * modules/hash (EXTRA_DIST): Add hash.h.
5984         * modules/human (EXTRA_DIST): Add human.h.
5985         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
5986         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
5987         * modules/lchown (EXTRA_DIST): Add lchown.h.
5988         * modules/long-options (EXTRA_DIST): Add long-options.h.
5989         * modules/lstat (EXTRA_DIST): Add lstat.h.
5990         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
5991         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
5992         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
5993         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
5994         * modules/memxor (EXTRA_DIST): Add memxor.h.
5995         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
5996         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
5997         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
5998         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
5999         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
6000         * modules/physmem (EXTRA_DIST): Add physmem.h.
6001         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
6002         * modules/posixver (EXTRA_DIST): Add posixver.h.
6003         * modules/quote (EXTRA_DIST): Add quote.h.
6004         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
6005         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
6006         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
6007         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
6008         regex_internal.h regexec.c.
6009         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
6010         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
6011         * modules/same (EXTRA_DIST): Add same.h.
6012         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
6013         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
6014         * modules/savedir (EXTRA_DIST): Add savedir.h.
6015         * modules/sha1 (EXTRA_DIST): Add sha1.h.
6016         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
6017         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
6018         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
6019         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
6020         * modules/strdup (EXTRA_DIST): Add strdup.h.
6021         * modules/strftime (EXTRA_DIST): Add strftime.h.
6022         * modules/strndup (EXTRA_DIST): Add strndup.h.
6023         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
6024         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
6025         * modules/time_r (EXTRA_DIST): Add time_r.h.
6026         * modules/timespec (EXTRA_DIST): Add timespec.h.
6027         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
6028         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
6029         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
6030         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
6031         * modules/userspec (EXTRA_DIST): Add userspec.h.
6032         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
6033         * modules/utimens (EXTRA_DIST): Add utimens.h.
6034         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
6035         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
6036         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
6037         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
6038         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
6039         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
6040         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
6041         * modules/yesno (EXTRA_DIST): Add yesno.h.
6042
6043 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
6044
6045         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
6046
6047         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
6048         * m4/dev-ino.m4, same-inode.m4: Remove.
6049
6050         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
6051         * m4/acl.m4 (AC_FUNC_ACL):
6052         * m4/backupfile.m4 (gl_BACKUPFILE):
6053         * m4/c-strtod.m4 (gl_C99_STRTOLD):
6054         * m4/canon-host.m4 (gl_CANON_HOST):
6055         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
6056         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
6057         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
6058         * m4/cloexec.m4 (gl_CLOEXEC):
6059         * m4/close-stream.m4 (gl_CLOSE_STREAM):
6060         * m4/closeout.m4 (gl_CLOSEOUT):
6061         * m4/dirfd.m4 (gl_FUNC_DIRFD):
6062         * m4/dirname.m4 (gl_DIRNAME):
6063         * m4/exclude.m4 (gl_EXCLUDE):
6064         * m4/exitfail.m4 (gl_EXITFAIL):
6065         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
6066         * m4/file-type.m4 (gl_FILE_TYPE):
6067         * m4/filemode.m4 (gl_FILEMODE):
6068         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
6069         * m4/fpending.m4 (gl_FUNC_FPENDING):
6070         * m4/fprintftime.m4 (gl_FPRINTFTIME):
6071         * m4/fts.m4 (gl_FUNC_FTS):
6072         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
6073         * m4/getdate.m4 (gl_GETDATE):
6074         * m4/gethrxtime.m4 (gl_GETHRXTIME):
6075         * m4/getpagesize.m4 (gl_GETPAGESIZE):
6076         * m4/getpass.m4 (gl_FUNC_GETPASS):
6077         * m4/gettime.m4 (gl_GETTIME):
6078         * m4/getugroups.m4 (gl_GETUGROUPS):
6079         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
6080         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
6081         * m4/hard-locale.m4 (gl_HARD_LOCALE):
6082         * m4/hash.m4 (gl_HASH):
6083         * m4/idcache.m4 (gl_IDCACHE):
6084         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
6085         * m4/lchown.m4 (gl_FUNC_LCHOWN):
6086         * m4/long-options.m4 (gl_LONG_OPTIONS):
6087         * m4/lstat.m4 (gl_FUNC_LSTAT):
6088         * m4/md5.m4 (gl_MD5):
6089         * m4/memcasecmp.m4 (gl_MEMCASECMP):
6090         * m4/memcoll.m4 (gl_MEMCOLL):
6091         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
6092         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
6093         * m4/memxor.m4 (gl_MEMXOR):
6094         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
6095         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
6096         * m4/modechange.m4 (gl_MODECHANGE):
6097         * m4/mountlist.m4 (gl_MOUNTLIST):
6098         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
6099         * m4/openat.m4 (gl_FUNC_OPENAT):
6100         * m4/pathmax.m4 (gl_PATHMAX):
6101         * m4/physmem.m4 (gl_PHYSMEM):
6102         * m4/posixtm.m4 (gl_POSIXTM):
6103         * m4/posixver.m4 (gl_POSIXVER):
6104         * m4/quote.m4 (gl_QUOTE):
6105         * m4/quotearg.m4 (gl_QUOTEARG):
6106         * m4/readtokens.m4 (gl_READTOKENS):
6107         * m4/readutmp.m4 (gl_READUTMP):
6108         * m4/regex.m4 (gl_REGEX):
6109         * m4/safe-read.m4 (gl_SAFE_READ):
6110         * m4/safe-write.m4 (gl_SAFE_WRITE):
6111         * m4/same.m4 (gl_SAME):
6112         * m4/save-cwd.m4 (gl_SAVE_CWD):
6113         * m4/savedir.m4 (gl_SAVEDIR):
6114         * m4/settime.m4 (gl_SETTIME):
6115         * m4/sha1.m4 (gl_SHA1):
6116         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
6117         * m4/stat-macros.m4 (gl_STAT_MACROS):
6118         * m4/stat-time.m4 (gl_STAT_TIME):
6119         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
6120         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
6121         * m4/strdup.m4 (gl_FUNC_STRDUP):
6122         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
6123         * m4/strndup.m4 (gl_FUNC_STRNDUP):
6124         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
6125         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
6126         * m4/time_r.m4 (gl_TIME_R):
6127         * m4/timespec.m4 (gl_TIMESPEC):
6128         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
6129         * m4/unlinkdir.m4 (gl_UNLINKDIR):
6130         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
6131         * m4/userspec.m4 (gl_USERSPEC):
6132         * m4/utimecmp.m4 (gl_UTIMECMP):
6133         * m4/utimens.m4 (gl_UTIMENS):
6134         * m4/xalloc.m4 (gl_XALLOC):
6135         * m4/xgetcwd.m4 (gl_XGETCWD):
6136         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
6137         * m4/xreadlink.m4 (gl_XREADLINK):
6138         * m4/xstrtod.m4 (gl_XSTRTOD):
6139         * m4/yesno.m4 (gl_YESNO):
6140         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
6141         to get the necessary .h files and whatnot.
6142
6143 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
6144             Bruno Haible  <bruno@clisp.org>
6145
6146         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
6147         /bin/sh understanding of '!' conditional negation.
6148
6149 2006-08-21  Jim Meyering  <jim@meyering.net>
6150
6151         * modules/openat (Depends-on): Really alphabetize.
6152
6153         * modules/acl (Depends-on): Add error and quote.
6154
6155         * check-module (find_included_lib_files): Add at-func.c to the
6156         ok-to-include-more-than-once white list.
6157
6158         * modules/openat (Depends-on): Add lstat.  Alphabetize.
6159
6160 2006-08-21  Bruno Haible  <bruno@clisp.org>
6161
6162         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
6163         Emit a pkgdata_DATA variable only if some snippets add contents to it.
6164         Reported by Martin Lambers <marlam@marlam.de>.
6165
6166 2006-08-21  Bruno Haible  <bruno@clisp.org>
6167
6168         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
6169         specify an installation location, don't emit a noinst_LIBRARIES or
6170         noinst_LTLIBRARIES assignment.
6171
6172 2006-08-21  Bruno Haible  <bruno@clisp.org>
6173
6174         BeOS portability.
6175         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
6176         BeOS has mbrtowc() but no <wctype.h>.
6177
6178 2006-08-21  Bruno Haible  <bruno@clisp.org>
6179
6180         BeOS portability.
6181         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
6182         exist.
6183
6184 2006-08-21  Bruno Haible  <bruno@clisp.org>
6185
6186         BeOS portability.
6187         * lib/mbchar.h: Include <wctype.h> only if it exists.
6188
6189 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
6190
6191         Remove files that are no longer needed by their respective modules.
6192         * m4/obstack.m4: Remove.
6193         * m4/strerror_r.m4: Remove.
6194         * m4/uint32_t.m4: Remove.
6195         * m4/uintptr_t.m4: Remove.
6196         * m4/ullong_max.m4: Remove.
6197         * m4/xstrtoimax.m4: Remove.
6198         * m4/xstrtoumax.m4: Remove.
6199
6200         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
6201         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
6202         dependencies now capture this.
6203
6204         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
6205         Do not use AC_LIBSOURCES, since gnulib modules now do this.
6206         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
6207         * m4/human.m4 (gl_HUMAN): Likewise.
6208         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
6209         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
6210
6211         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
6212
6213         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
6214         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
6215         stdint.
6216         * m4/human.m4 (gl_HUMAN): Likewise.
6217         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
6218         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
6219         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
6220         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
6221         * m4/xstrtol (gl_XSTRTOL): Likewise.
6222
6223         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
6224         AC_TYPE_LONG_LONG_INT.
6225         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
6226         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
6227         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
6228         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
6229
6230         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
6231         on stdbool.
6232
6233         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
6234         (gl_PREREQ_XSTRTOUL): Remove.
6235
6236         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
6237
6238         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
6239         mode.
6240
6241 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
6242
6243         Add and change modules to make it easier for coreutils to use
6244         gnulib-tool.
6245         * modules/backupfile (Files): Remove m4/d-ino.m4.
6246         (Depends-on): Add d-ino.
6247         * modules/cycle-check (Depends-on): Add stdint.
6248         (lib_SOURCES): Add cycle-check.h.
6249         * modules/d-ino: New module.
6250         * modules/d-type: New module.
6251         * modules/error (Files): Remove m4/strerror_r.m4.
6252         * modules/filemode (Files): Add m4/st_dm_mode.m4.
6253         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
6254         m4/inttypes_h.m4, m4/uintmax_t.m4.
6255         (Depends-on): Add stdint.
6256         (lib_SOURCES): Add fsusage.h.
6257         * modules/getcwd (Files): Remove d-ino.m4.
6258         (Depends-on): Add d-ino.
6259         * modules/getndelim2 (Depends-on): Add stdint.
6260         * modules/glob (Files): Remove m4/d-type.m4.
6261         (Depends-on): Add d-type.
6262         * modules/host-os: New module.
6263         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
6264         m4/inttypes_h.m4, m4/uintmax_t.m4.
6265         * Depends-on: Add stdint.
6266         (lib_SOURCES): Add human.h.
6267         * modules/inttostr (Files): Remove m4/intmax_t.m4,
6268         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
6269         m4/uintmax_t.m4, m4/ulonglong.m4.
6270         (Depends-on): Add stdint.
6271         (EXTRA_DIST): Add inttostr.h.
6272         * modules/lchmod: New module.
6273         * modules/link-follow: New module.
6274         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
6275         (Depends-on): Add lchmod.
6276         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
6277         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
6278         (Depends-on): Add stdint.
6279         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
6280         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
6281         (Depends-on): Add stdint.
6282         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
6283         * modules/perl: New module.
6284         * modules/regex (Depends-on): Add stdint.
6285         * modules/rmdir-errno: New module.
6286         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
6287         m4/intmax_t.m4.
6288         (Depends-on): Add stdint.
6289         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
6290         m4/uintmax_t.m4.
6291         (Depends-on): Add stdint.
6292         * modules/unlink-busy: New module.
6293         * modules/utimecmp (Depends-on): Add stdint.
6294         * modules/uptime: New module.
6295         * modules/winsz-ioctl: New module.
6296         * modules/winsz-termios: New module.
6297         * modules/xnanosleep (Depends-on): Add nanosleep.
6298         * modules/ullong_max: Remove.
6299         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
6300         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
6301         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
6302         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
6303         (Depends-on): Add inttypes.
6304         (lib_SOURCES): Add xstrtol.h.
6305         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
6306         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
6307         * MODULES.html.sh: Move 'assert' into the assert section.
6308         Move 'dummy' into the linking section.
6309         Remove ullong_max.
6310         Add section for compatibility checks for POSIX:2001 functions,
6311         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
6312         winsz-ioctl, and winsz-termios into it.
6313         Add lchmod.
6314         Add top-level Misc section and put host-os, perl, and uptime
6315         into it.
6316
6317 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
6318
6319         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
6320         now assume the stdint module.  Do not include inttypes.h.
6321         * lib/fsusage.h: Likewise.
6322         * lib/getndelim2.c: Likewise.
6323         * lib/human.h: Likewise.
6324         * lib/inttostr.h: Likewise.
6325         * lib/obstack.c: Likewise.
6326         * lib/regex_internal.h: Likewise.
6327         * lib/tempname.c: Likewise.
6328         * lib/utimecmp.c: Likewise.
6329         * lib/xstrtol.h: Likewise.
6330
6331         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
6332
6333         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
6334         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
6335         * lib/xtime.h: Likewise.
6336
6337 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
6338
6339         * modules/openat (Files): Add lib/fchmodat.c.
6340         Fixes problem reported by Jay Youngman.
6341
6342 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
6343
6344         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
6345         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
6346
6347 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
6348             Bruno Haible  <bruno@clisp.org>
6349
6350         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
6351         and is a script that invokes bison. Tighten the code. Add comments.
6352
6353 2006-08-18  Jim Meyering  <jim@meyering.net>
6354
6355         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
6356         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
6357         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
6358         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
6359
6360 2006-08-18  Bruno Haible  <bruno@clisp.org>
6361
6362         * modules/bison-i18n: New file.
6363         * MODULES.html.sh (Internationalization functions): Add it.
6364
6365 2006-08-18  Bruno Haible  <bruno@clisp.org>
6366
6367         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
6368         sys/statvfs.h. When getmntinfo was found, check its declaration and
6369         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
6370
6371 2006-08-18  Bruno Haible  <bruno@clisp.org>
6372
6373         * m4/bison-i18n.m4: New file, from bison.
6374
6375 2006-08-18  Bruno Haible  <bruno@clisp.org>
6376
6377         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
6378         (ME_DUMMY): Treat "kernfs" as a dummy.
6379         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
6380
6381 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
6382
6383         Update from coreutils.
6384
6385         2006-08-15  Jim Meyering  <jim@meyering.net>
6386
6387         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
6388
6389         2006-01-17  Jim Meyering  <jim@meyering.net>
6390
6391         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
6392
6393         2006-01-11  Jim Meyering  <jim@meyering.net>
6394
6395         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
6396         Check for the lchmod function.
6397
6398 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
6399
6400         Update from coreutils.
6401
6402         * lib/__fpending.h: Add copyright notice.
6403         * lib/fprintftime.h: Likewise.
6404         * lib/savedir.c: Use (C) in copyright notice.
6405         * lib/savedir.h: Likewise.
6406
6407         2006-08-15  Jim Meyering  <jim@meyering.net>
6408
6409         * lib/at-func.c: New file, with the logic of all emulated at-functions.
6410         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
6411         in support of the EXPECTED_ERRNO macro.
6412         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
6413         definitions.  Instead, define the appropriate symbols and include
6414         "at-func.c".
6415         * lib/mkdirat.c (mkdirat): Likewise.
6416         * lib/fchmodat.c (fchmodat): Likewise.
6417         (ENOSYS): Remove definition.
6418         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
6419         it.  Don't include "unistd--.h" -- it wasn't ever used.
6420
6421         2006-01-17  Jim Meyering  <jim@meyering.net>
6422
6423         Rewrite fts.c not to change the current working directory,
6424         by using openat, fstatat, fdopendir, etc..
6425
6426         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
6427         (HAVE_OPENAT_SUPPORT): Define.
6428         [_LIBC] (fchdir): Don't undef or define; no longer used.
6429         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
6430         Now, this `function' always succeeds, and consumes its file descriptor
6431         parameter -- so callers must not close such FDs.  Update callers.
6432         (diropen_fd, opendirat, cwd_advance_fd): New functions.
6433         (diropen): Add parameter, SP.  Adjust all callers.
6434         Implement using diropen_fd, rather than open.
6435         (fts_open): Initialize new member, fts_cwd_fd.
6436         Remove fts_rft-setting code.
6437         (fts_close): Close fts_cwd_fd, if necessary.
6438         (__opendir2): Define in terms of opendir or opendirat,
6439         depending on whether the FST_NOCHDIR flag is set.
6440         (fts_build): Since fts_safe_changedir consumes its FD, and since
6441         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
6442         and close the dup'd file descriptor upon failure.
6443         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
6444         (fts_safe_changedir): Tweak semantics to reflect that this function
6445         now calls cwd_advance_fd and hence consumes its FD argument.
6446         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
6447         [struct FTS] (fts_rft): Remove now-unused member.
6448         [struct FTS] (fts_cycle.state): Improve comment.
6449
6450         * lib/openat.c (openat_needs_fchdir): New function.
6451         * lib/openat.h (openat_needs_fchdir): Declare it.
6452
6453 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
6454
6455         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
6456         Problem and fix reported by Pádraig Brady in
6457         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
6458
6459 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
6460
6461         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
6462
6463 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
6464
6465         * lib/memcoll.c (memcoll): Optimize for the common case where the
6466         arguments are bytewise equal.
6467
6468 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
6469
6470         * doc/regexprops-generic.texi: Add a copyright notice.
6471
6472 2006-08-15  Bruno Haible  <bruno@clisp.org>
6473
6474         * modules/tmpdir (License): Change to LGPL.
6475
6476 2006-08-15  Bruno Haible  <bruno@clisp.org>
6477
6478         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
6479         module.
6480
6481 2006-08-14  Simon Josefsson  <jas@extundo.com>
6482
6483         * config/srclist.txt: Add gnupload.
6484
6485 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
6486
6487         Change copyright notice from LGPL 2 to GPL 2, since that's the
6488         standard form used in the gnulib repository.
6489         * tests/test-lock.c: Likewise.
6490         * tests/test-stdint.c: Likewise.
6491         * tests/test-tls.c: Likewise.
6492
6493         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
6494         prelude-manager.  User shorter URLs for GNU projects, without '?'.
6495         Add copyright notice.
6496
6497         * check-module: Add copyright notice.  Output a copyright
6498         notice if "--version" is specified.
6499         * modules/COPYING: New file.
6500         * tests/test-getaddrinfo.c: Add copyright notice.
6501         * tests/test-verify.c: Likewise.
6502
6503 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
6504
6505         Change copyright notice from LGPL 2 to GPL 2, since that's the
6506         standard form used in the gnulib repository.
6507         * lib/lock.c: LGPL -> GPL.
6508         * lib/lock.h: Likewise.
6509         * lib/strnlen1.c: Likewise.
6510         * lib/strnlen1.h: Likewise.
6511         * lib/tls.c: Likewise.
6512         * lib/tls.h: Likewise.
6513         * lib/tmpdir.c: Likewise.
6514
6515         * lib/TODO: Remove; this belongs only in coreutils.
6516
6517 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
6518
6519         Add copyright notices to long-enough files that lack them, since
6520         otherwise the files aren't clearly free.  Use the same notice that
6521         getdate.texi already uses.
6522         * doc/alloca-opt.texi: Add copyright notice.
6523         * doc/alloca.texi: Likewise.
6524         * doc/ctime.texi: Likewise.
6525         * doc/functions.texi: Likewise.
6526         * doc/gcd.texi: Likewise.
6527         * doc/gnulib-tool.texi: Likewise.
6528         * doc/inet_ntoa.texi: Likewise.
6529         * doc/visibility.texi: Likewise.
6530
6531         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
6532         * doc/quote.texi: Add copyright notice.
6533
6534         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
6535         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
6536         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
6537         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
6538         is now obsolete, and give a pointer to the Sun list.
6539         Add copyright notice.
6540
6541 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
6542
6543         * config/srclistvars.sh: Add copyright notice.
6544
6545 2006-08-14  Eric Blake  <ebb9@byu.net>
6546
6547         Import the following change from libc:
6548
6549         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
6550
6551         Upstream bug 2997.
6552         * lib/misc/error.c: Add space between program name and message if file
6553         name is missing.
6554
6555 2006-08-12  Karl Berry  <karl@gnu.org>
6556
6557         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
6558         remove, these originate in gnulib now.
6559
6560 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6561
6562         * doc/Makefile (standards.info standards.html standards.dvi):
6563         Also depend on make-stds.texi.
6564
6565 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
6566
6567         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
6568         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
6569
6570         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
6571         in wchar_t.  Problem reported by Eric Blake.
6572
6573         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
6574         LEN is smaller than SIZE.  Suggested by Bruno Haible.
6575         Also, help the compiler to keep LEN in a register.
6576
6577 2006-08-11  Eric Blake  <ebb9@byu.net>
6578
6579         * users.txt: Sort.  Add tar.
6580
6581 2006-08-11  Bruno Haible  <bruno@clisp.org>
6582
6583         * users.txt: New file.
6584
6585 2006-08-11  Bruno Haible  <bruno@clisp.org>
6586
6587         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
6588         before <wchar.h>. Needed for OSF/1 and BSD/OS.
6589
6590 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
6591
6592         * modules/snprintf (Depends-on): Remove minmax.
6593         (Maintainer): Add self and Bruno.
6594
6595 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
6596
6597         * lib/.cppi-disable: Add snprintf.h, socket_.h.
6598         * lib/snprintf.c: Include <errno.h> and <limits.h>.
6599         (EOVERFLOW): Define if the system does not.
6600         Do not include "minmax.h"; it wasn't used.
6601         (snprintf): Don't assume size_t promotes to an unsigned type.
6602         Fix bug when generated string was too long for the buffer: the
6603         buffer's contents are supposed to be the initial prefix of the
6604         output.  Don't assume vasnprintf returns EOVERFLOW if the size
6605         exceeds INT_MAX; do the check ourselves.
6606
6607         Import the following changes from libc:
6608
6609         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
6610
6611         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
6612         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
6613         set wc to the byte which couldn't be converted.
6614         (re_string_reconstruct): Don't clear valid_raw_len before calling
6615         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
6616         tip_context using re_string_context_at.
6617
6618         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
6619
6620         * lib/posix/regex.h: g++ still cannot handled [restrict].
6621
6622         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
6623
6624         * lib/posix/regex.h: Remove special handling for VMS.
6625
6626 2006-08-10  Jim Meyering  <jim@meyering.net>
6627
6628         * modules/same-inode: New module.
6629         * modules/dev-ino: New module.
6630         * modules/cycle-check: Depend on these modules, rather than simply
6631         including their .h files.
6632         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
6633         required via m4/cycle-check.m4.
6634         * modules/same: Depend on new same-inode module, rather than
6635         including same-inode.h.
6636         * modules/chdir-safer: New file.
6637
6638         * modules/chown (Depends-on): Add stat-macros.
6639
6640 2006-08-10  Jim Meyering  <jim@meyering.net>
6641
6642         * m4/cycle-check.m4: New file.
6643         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
6644         * m4/dev-ino.m4, m4/same-inode.m4: New files.
6645
6646 2006-08-10  Eric Blake  <ebb9@byu.net>
6647
6648         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
6649         in from original proposal.
6650
6651 2006-08-10  Eric Blake  <ebb9@byu.net>
6652         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
6653
6654         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
6655         namespace.
6656
6657 2006-08-10  Bruno Haible  <bruno@clisp.org>
6658
6659         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
6660         as well.
6661
6662 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
6663
6664         Sync from coreutils.
6665
6666         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
6667
6668         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
6669         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
6670
6671 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
6672
6673         * modules/restrict: Remove; no longer needed now that we assume
6674         Autoconf 2.59 or later.
6675         * MODULES.html.sh: Remove 'restrict'.
6676         * modules/argp (Depends-on): Remove 'restrict'.
6677         * modules/base64 (Depends-on): Likewise.
6678         * modules/gc (Depends-on): Likewise.
6679         * modules/getaddrinfo (Depends-on): Likewise.
6680         * modules/glob (Depends-on): Likewise.
6681         * modules/inet_ntop (Depends-on): Likewise.
6682         * modules/inet_pton (Depends-on): Likewise.
6683         * modules/memxor (Depends-on): Likewise.
6684         * modules/regex (Depends-on): Likewise.
6685         * modules/strtok_r (Depends-on): Likewise.
6686         * modules/time_r (Depends-on): Likewise.
6687
6688 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
6689
6690         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
6691         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
6692         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
6693         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
6694         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
6695         * m4/memxor.m4 (gl_MEMXOR): Likewise.
6696         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
6697         gl_C_RESTRICT replaced by AC_C_RESTRICT.
6698
6699         Merge from coreutils.
6700         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
6701         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
6702         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
6703         * m4/time_r.m4 (gl_TIME_R): Likewise.
6704
6705 2006-08-09  Karl Berry  <karl@gnu.org>
6706
6707         * config/srclist.txt: no more gettext-tools, per Bruno.
6708
6709 2006-08-08  Eric Blake  <ebb9@byu.net>
6710
6711         * modules/verror: New module.
6712         * MODULES.html.sh: Document it.
6713
6714 2006-08-08  Eric Blake  <ebb9@byu.net>
6715
6716         * lib/verror.h, lib/verror.c: New files.
6717
6718 2006-08-08  Eric Blake  <ebb9@byu.net>
6719
6720         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
6721         verror_at_line output complies with GNU Coding Standards even when
6722         file is NULL.
6723
6724 2006-08-07  Bruno Haible  <bruno@clisp.org>
6725
6726         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
6727         versions of AIX.
6728         Reported by Ralf Wildenhues.
6729
6730 2006-08-07  Bruno Haible  <bruno@clisp.org>
6731
6732         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
6733         in an AC_DEFUN. Needed so that the autoconf snippets can use
6734         AC_REQUIRE.
6735
6736 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6737
6738         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
6739         Initialize pkgdata_DATA.
6740         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
6741         overriding it.
6742
6743 2006-08-06  Eric Blake  <ebb9@byu.net>
6744
6745         * lib/error.h: Fold in some upstream changes from glibc.
6746         * lib/error.c: Likewise.
6747
6748 2006-08-04  Bruno Haible  <bruno@clisp.org>
6749
6750         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
6751         Make the mostlyclean-local rule depend on mostlyclean-generic.
6752         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
6753
6754 2006-07-31  Bruno Haible  <bruno@clisp.org>
6755
6756         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
6757         <stdlib.h>, <string.h>.
6758
6759 2006-07-30  Bruno Haible  <bruno@clisp.org>
6760
6761         * modules/readlink (License): Change to LGPL.
6762
6763 2006-07-30  Bruno Haible  <bruno@clisp.org>
6764
6765         * modules/javaversion (Makefile.am): Distribute javaversion.java and
6766         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
6767         set PKGDATADIR to point to it.
6768
6769 2006-07-30  Bruno Haible  <bruno@clisp.org>
6770
6771         * modules/csharpexec (configure.ac): Comment out macro invocation.
6772         * modules/javaexec (configure.ac): Likewise.
6773         * modules/javacomp-script (configure.ac): Likewise.
6774
6775         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
6776
6777 2006-07-30  Bruno Haible  <bruno@clisp.org>
6778
6779         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
6780         linked-list.
6781
6782 2006-07-30  Bruno Haible  <bruno@clisp.org>
6783
6784         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
6785
6786 2006-07-30  Bruno Haible  <bruno@clisp.org>
6787
6788         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
6789         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
6790         get removed.
6791
6792 2006-07-29  Bruno Haible  <bruno@clisp.org>
6793
6794         Make it possible for gnulib-tool to work with locally modified or
6795         augmented gnulib repositories.
6796         * gnulib-tool (func_usage): Document --local-dir option.
6797         (local_gnulib_dir): New variable.
6798         Handle --local-dir option.
6799         (func_lookup_file): New function.
6800         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
6801         (func_get_description, func_get_filelist, func_get_description,
6802         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
6803         func_get_automake_snippet, func_get_include_directive,
6804         func_get_license, func_get_maintainer): Use func_lookup_file.
6805         (func_import, func_create_testdir): Use func_lookup_file.
6806
6807 2006-07-29  Bruno Haible  <bruno@clisp.org>
6808
6809         * modules/setenv (Depends-on): Add unistd.
6810
6811 2006-07-29  Bruno Haible  <bruno@clisp.org>
6812
6813         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
6814
6815 2006-07-29  Bruno Haible  <bruno@clisp.org>
6816
6817         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
6818
6819 2006-07-29  Bruno Haible  <bruno@clisp.org>
6820
6821         * gnulib-tool (import, update): If there is no Makefile.am, look at
6822         aclocal.m4, instead of bailing out.
6823
6824 2006-07-29  Bruno Haible  <bruno@clisp.org>
6825
6826         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
6827         Categorize the options by when they are useful.
6828
6829 2006-07-29  Bruno Haible  <bruno@clisp.org>
6830
6831         * gnulib-tool (func_usage): Document option --no-libtool.
6832         Handle option --no-libtool.
6833         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
6834         for changed semantics of $libtool variable.
6835         (func_import): Likewise. If libtool is not used, show this through
6836         an option --no-libtool.
6837         (func_create_testdir): Update.
6838
6839 2006-07-29  Bruno Haible  <bruno@clisp.org>
6840
6841         * gnulib-tool (func_import): Extend error message about missing
6842         --doc-base.
6843
6844 2006-07-29  Bruno Haible  <bruno@clisp.org>
6845
6846         * gnulib-tool (func_import): Don't create the $docbase directory if
6847         there is no file to store there.
6848
6849 2006-07-29  Bruno Haible  <bruno@clisp.org>
6850
6851         * gnulib-tool (autoconf_minversion): If a --dir option is given and
6852         relevant, look for configure.ac there, not in the current directory.
6853         Also use a simple search for AC_PREREQ, not "autoconf --trace".
6854
6855 2006-07-29  Bruno Haible  <bruno@clisp.org>
6856
6857         * gnulib-tool (SORT): New variable.
6858         (func_usage): Undocument --assume-autoconf option.
6859         Remove --assume-autoconf option handling.
6860         (autoconf_minversion): Determine from the contents of configure.ac.
6861         (func_import): Remove autoconf_minversion handling.
6862         Suggested by Eric Blake.
6863
6864 2006-07-29  Bruno Haible  <bruno@clisp.org>
6865
6866         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
6867
6868 2006-07-29  Bruno Haible  <bruno@clisp.org>
6869
6870         * config/srclist.txt (*setenv.[ch]): Remove rules.
6871
6872 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
6873
6874         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
6875
6876 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
6877
6878         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
6879         arpa/inet.h.
6880
6881 2006-07-28  Simon Josefsson  <jas@extundo.com>
6882
6883         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
6884         * modules/inet_pton (Depends-on): Likewise.
6885
6886 2006-07-28  Simon Josefsson  <jas@extundo.com>
6887
6888         * m4/netinet_in_h.m4: New file.
6889
6890 2006-07-28  Simon Josefsson  <jas@extundo.com>
6891
6892         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
6893         #include's.
6894
6895 2006-07-28  Simon Josefsson  <jas@extundo.com>
6896
6897         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
6898         #include's.
6899
6900 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
6901
6902         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
6903         setgid on directories only if they set these bits.
6904         * lib/modechange.h: Remove obsolete comment about masks.
6905
6906 2006-07-28  Eric Blake  <ebb9@byu.net>
6907
6908         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
6909         macro expansion.
6910
6911 2006-07-28  Bruno Haible  <bruno@clisp.org>
6912
6913         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
6914
6915 2006-07-28  Bruno Haible  <bruno@clisp.org>
6916
6917         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
6918
6919 2006-07-28  Bruno Haible  <bruno@clisp.org>
6920
6921         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
6922         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
6923         Define fallbacks.
6924         Avoids link error on FreeBSD 4.x.
6925         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
6926
6927         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
6928         encoding.
6929         * lib/mbswidth.c (iswcntrl): Likewise.
6930
6931 2006-07-27  Bruno Haible  <bruno@clisp.org>
6932
6933         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
6934         test.
6935
6936 2006-07-27  Bruno Haible  <bruno@clisp.org>
6937
6938         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
6939         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
6940         defined.
6941
6942 2006-07-26  Eric Blake  <ebb9@byu.net>
6943
6944         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
6945
6946 2006-07-26  Eric Blake  <ebb9@byu.net>
6947
6948         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
6949         like mingw that lack mkstemp.
6950         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
6951         avoid compilation warning on mingw.
6952
6953 2006-07-26  Bruno Haible  <bruno@clisp.org>
6954
6955         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
6956         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
6957         INT_FAST*_MIN, INTPTR_MIN.
6958
6959 2006-07-25  Bruno Haible  <bruno@clisp.org>
6960
6961         * modules/version-etc (Depends-on): Add stdarg.
6962
6963 2006-07-25  Bruno Haible  <bruno@clisp.org>
6964
6965         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
6966         complex commands.
6967
6968 2006-07-25  Bruno Haible  <bruno@clisp.org>
6969
6970         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
6971         defined in <stdarg.h> or config.h.
6972
6973 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
6974
6975         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
6976         (gl_STDIO_SAFER): Remove.
6977
6978 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
6979
6980         * MODULES.html.sh (File stream based Input/Output):
6981         Add fopen-safer, tmpfile-safer; remove stdio-safer.
6982         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
6983         * modules/fopen-safer, modules/tmpfile-safer: New files.
6984         * modules/stdio-safer: Remove.
6985
6986 2006-07-24  Bruno Haible  <bruno@clisp.org>
6987
6988         * modules/tmpdir: New file.
6989         * MODULES.html.sh (File system functions): Add it.
6990
6991 2006-07-24  Bruno Haible  <bruno@clisp.org>
6992
6993         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
6994         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
6995
6996 2006-07-24  Bruno Haible  <bruno@clisp.org>
6997
6998         * modules/clean-temp: New file.
6999
7000 2006-07-24  Bruno Haible  <bruno@clisp.org>
7001
7002         * m4/tmpdir.m4: New file, from GNU gettext.
7003
7004 2006-07-24  Bruno Haible  <bruno@clisp.org>
7005
7006         * lib/tmpdir.h: New file, from GNU gettext.
7007         * lib/tmpdir.c: New file, from GNU gettext.
7008
7009 2006-07-24  Bruno Haible  <bruno@clisp.org>
7010
7011         * lib/clean-temp.h: New file, from GNU gettext.
7012         * lib/clean-temp.c: New file, from GNU gettext.
7013
7014 2006-07-23  Eric Blake  <ebb9@byu.net>
7015
7016         * modules/stdio-safer (Files): Add tmpfile-safer.c.
7017         (Depends-on): Add binary-io.
7018
7019 2006-07-23  Eric Blake  <ebb9@byu.net>
7020
7021         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
7022
7023 2006-07-23  Eric Blake  <ebb9@byu.net>
7024
7025         * lib/tmpfile-safer.c: New file.
7026         * lib/stdio-safer.h (fopen_safer): Add prototype.
7027         * lib/stdio--.h (tmpfile): Make safer.
7028
7029 2006-07-23  Bruno Haible  <bruno@clisp.org>
7030
7031         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
7032         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
7033         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
7034         gl_linked_remove_at): Use it.
7035
7036 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
7037         and Simon Josefsson <jas@extundo.com>
7038
7039         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
7040
7041         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
7042
7043 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
7044
7045         * modules/close-stream: New file.
7046         * modules/closeout (Description): Make it clear that it exits
7047         with a diagnostic on error.
7048         (Depends-on): Add close-stream.  Remove fpending, stdbool.
7049         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
7050
7051 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
7052
7053         * m4/close-stream.m4: New file.
7054
7055 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
7056
7057         * lib/close-stream.c, lib/close-stream.h: New files.
7058
7059 2006-07-22  Bruno Haible  <bruno@clisp.org>
7060
7061         Merge from GNU gettext 0.15.
7062
7063         2006-05-01  Bruno Haible  <bruno@clisp.org>
7064
7065                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
7066
7067         2006-07-22  Bruno Haible  <bruno@clisp.org>
7068
7069                 * modules/javaversion: New file.
7070                 * MODULES.html.sh (Java): Add javaversion.
7071
7072         2006-03-12  Bruno Haible  <bruno@clisp.org>
7073
7074                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
7075
7076         2005-12-04  Bruno Haible  <bruno@clisp.org>
7077
7078                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
7079                 (untested).
7080
7081         2006-06-21  Bruno Haible  <bruno@clisp.org>
7082
7083                 Avoid warnings from recent versions of mcs.
7084                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
7085                 -o, -L, -r any more. Use options documented since mcs-1.0
7086                 instead. Similarly for -g.
7087
7088         2005-12-04  Bruno Haible  <bruno@clisp.org>
7089
7090                 * build-aux/csharpcomp.sh.in: Suffix for resources is
7091                 .resources, not .resource.
7092
7093         2005-07-09  Bruno Haible  <bruno@clisp.org>
7094
7095                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
7096                 add a .dll suffix.
7097                 Reported by Mark Junker <mjscod@gmx.de>.
7098
7099         2006-07-22  Bruno Haible  <bruno@clisp.org>
7100
7101                 * modules/gettext: Upgrade to gettext-0.15.
7102                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
7103                 m4/visibility.m4.
7104                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
7105
7106 2006-07-22  Bruno Haible  <bruno@clisp.org>
7107
7108         Merge from GNU gettext 0.15.
7109
7110         2006-03-25  Bruno Haible  <bruno@clisp.org>
7111
7112                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
7113
7114         2006-07-21  Bruno Haible  <bruno@clisp.org>
7115
7116                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
7117                 "1.1".
7118
7119         2006-05-09  Bruno Haible  <bruno@clisp.org>
7120
7121                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
7122                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
7123                 for the conftestver execution.
7124
7125         2006-05-01  Bruno Haible  <bruno@clisp.org>
7126
7127                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
7128                 optional target-version argument. Verify that the compiler
7129                 groks source of the specified source-version, or add -source
7130                 option as necessary. Verify that the compiler produces
7131                 bytecode in the specified target-version, or add -target and
7132                 -source options as necessary. Make the result of the test
7133                 available as variable CONF_JAVAC. Also log error output in
7134                 config.log.
7135
7136         2006-03-11  Bruno Haible  <bruno@clisp.org>
7137
7138                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
7139
7140         2006-05-09  Bruno Haible  <bruno@clisp.org>
7141
7142                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
7143                 CLASSPATH_SEPARATOR to a semicolon.
7144
7145         2006-03-12  Bruno Haible  <bruno@clisp.org>
7146
7147                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
7148                 available as variable CONF_JAVA, for subsequent autoconf
7149                 tests. Also log error output in config.log.
7150
7151         2006-07-19  Bruno Haible  <bruno@clisp.org>
7152
7153                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
7154                 that getline works on glibc2 systems. Needed to avoid trouble
7155                 in relocatable.c.
7156                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
7157
7158         2005-12-04  Bruno Haible  <bruno@clisp.org>
7159
7160                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
7161                 launcher (untested).
7162
7163         2005-12-04  Bruno Haible  <bruno@clisp.org>
7164
7165                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
7166
7167         2006-07-22  Bruno Haible  <bruno@clisp.org>
7168
7169                 * gettext.m4: Update from GNU gettext-0.15.
7170                 * nls.m4: Likewise.
7171                 * po.m4: Likewise.
7172                 * inttypes-pri.m4: Likewise.
7173                 * inttypes-h.m4: Renamed from inttypes.m4.
7174                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
7175
7176 2006-07-22  Bruno Haible  <bruno@clisp.org>
7177
7178         Merge from GNU gettext 0.15.
7179
7180         2005-07-05  Bruno Haible  <bruno@clisp.org>
7181
7182                 * printf-args.c (printf_fetchargs): Work around broken
7183                 definition of wint_t on mingw.
7184
7185         2005-02-12  Bruno Haible  <bruno@clisp.org>
7186
7187                 * xallocsa.h: Add extern "C" for C++.
7188
7189         2006-05-17  Bruno Haible  <bruno@clisp.org>
7190
7191                 Cygwin portability.
7192                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
7193
7194         2006-04-30  Bruno Haible  <bruno@clisp.org>
7195
7196                 * progreloc.c: Include <mach-o/dyld.h> if available.
7197                 (find_executable): Use _NSGetExecutablePath when possible.
7198
7199         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
7200
7201                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
7202                 function.
7203
7204         2005-12-29  Bruno Haible  <bruno@clisp.org>
7205
7206                 * progreloc.c (set_program_name_and_installdir): Fix
7207                 compilation error.
7208
7209         2005-12-04  Bruno Haible  <bruno@clisp.org>
7210
7211                 Cygwin portability.
7212                 * progreloc.c: Include <windows.h> also on Cygwin.
7213                 (find_executable): Add support for Cygwin.
7214                 (set_program_name_and_installdir): Handle also platforms with
7215                 nonempty EXEEXT.
7216
7217         2006-07-11  Bruno Haible  <bruno@clisp.org>
7218
7219                 * javacomp.c: Fix a comment.
7220                 Reported by Jim Meyering.
7221
7222         2006-04-30  Bruno Haible  <bruno@clisp.org>
7223
7224                 * javacomp.h (compile_java_class): Add source_version,
7225                 target_version arguments.
7226                 * javacomp.c: Rewritten to choose only a compiler that
7227                 respects the specified source_version and target_version.
7228
7229         2006-06-27  Bruno Haible  <bruno@clisp.org>
7230
7231                 Assume correct S_ISDIR macro.
7232                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
7233
7234         2006-07-22  Bruno Haible  <bruno@clisp.org>
7235
7236                 * javaversion.h: New file, from GNU gettext.
7237                 * javaversion.c: New file, from GNU gettext.
7238                 * javaversion.java: New file, from GNU gettext.
7239                 * javaversion.class: New file, from GNU gettext.
7240
7241         2006-05-17  Bruno Haible  <bruno@clisp.org>
7242
7243                 Cygwin portability.
7244                 * javaexec.c (execute_java_class): Test for jview program
7245                 also on Cygwin.
7246
7247         2006-04-09  Bruno Haible  <bruno@clisp.org>
7248
7249                 * fatal-signal.c: Don't include string.h.
7250                 (at_fatal_signal): Use a copying loop instead of memcpy.
7251
7252         2005-12-04  Bruno Haible  <bruno@clisp.org>
7253
7254                 * csharpexec.c: Add support for 'clix' launcher (untested).
7255                 (execute_csharp_using_sscli): New function.
7256                 (execute_csharp_program): Call it.
7257
7258         2006-06-21  Bruno Haible  <bruno@clisp.org>
7259
7260                 Avoid warnings from recent versions of mcs.
7261                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
7262                 -o, -L, -r any more. Use options documented since mcs-1.0
7263                 instead. Similarly for -g.
7264
7265         2005-07-09  Bruno Haible  <bruno@clisp.org>
7266
7267                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
7268                 add a .dll suffix.
7269                 Reported by Mark Junker <mjscod@gmx.de>.
7270
7271         2006-06-17  Bruno Haible  <bruno@clisp.org>
7272
7273                 * config.charset: Update for NetBSD 3.0.
7274
7275         2006-05-17  Bruno Haible  <bruno@clisp.org>
7276
7277                 Cygwin portability.
7278                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
7279
7280         2006-05-16  Bruno Haible  <bruno@clisp.org>
7281
7282                 * localcharset.c [CYGWIN]: Include <windows.h>.
7283                 (get_charset_aliases): For Cygwin, return the same CPxxx
7284                 aliases list as under WIN32.
7285                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
7286                 the environment variables. Fall back to GetACP().
7287
7288         2006-04-05  Bruno Haible  <bruno@clisp.org>
7289
7290                 * config.charset: Update Juan Manuel Guerrero's address.
7291
7292         2005-02-12  Bruno Haible  <bruno@clisp.org>
7293
7294                 * allocsa.h: Add extern "C" for C++.
7295
7296         2005-02-10  Bruno Haible  <bruno@clisp.org>
7297
7298                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
7299                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
7300
7301         2006-07-22  Bruno Haible  <bruno@clisp.org>
7302
7303                 * gettext.h: Update to GNU gettext-0.15.
7304
7305 2006-07-22  Bruno Haible  <bruno@clisp.org>
7306
7307         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
7308         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
7309         lib-prefix.m4, longdouble.m4, ssize_t.m4.
7310
7311 2006-07-21  Eric Blake  <ebb9@byu.net>
7312
7313         * modules/stdlib-safer: New file.
7314         * MODULES.html.sh (File stream based Input/Output): Add
7315         stdlib-safer.
7316
7317 2006-07-21  Eric Blake  <ebb9@byu.net>
7318
7319         * lib/stdlib-safer.h: New file from coreutils, required by
7320         stdlib--.h.
7321
7322 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
7323
7324         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
7325
7326 2006-07-20  Bruno Haible  <bruno@clisp.org>
7327
7328         * gnulib-tool: Recognize new option --assume-autoconf.
7329         (autoconf_minversion): New variable.
7330         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
7331
7332 2006-07-20  Bruno Haible  <bruno@clisp.org>
7333
7334         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
7335
7336 2006-07-19  Derek R. Price  <derek@ximbiot.com>
7337
7338         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
7339         Reindent and repaginate.
7340
7341 2006-07-19  Derek Price  <derek@ximbiot.com>
7342
7343         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
7344         Correct grammar.
7345
7346 2006-07-17  Bruno Haible  <bruno@clisp.org>
7347
7348         * modules/list: New file.
7349         * modules/array-list: New file.
7350         * modules/carray-list, modules/carray-list-tests: New files.
7351         * modules/linked-list, modules/linked-list-tests: New files.
7352         * modules/avltree-list, modules/avltree-list-tests: New files.
7353         * modules/rbtree-list, modules/rbtree-list-tests: New files.
7354         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
7355         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
7356         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
7357         * modules/oset: New file.
7358         * modules/array-oset: New file.
7359         * modules/avltree-oset, modules/avltree-oset-tests: New files.
7360         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
7361         * tests/test-carray_list.c: New file.
7362         * tests/test-linked_list.c: New file.
7363         * tests/test-avltree_list.c: New file.
7364         * tests/test-rbtree_list.c: New file.
7365         * tests/test-linkedhash_list.c: New file.
7366         * tests/test-avltreehash_list.c: New file.
7367         * tests/test-rbtreehash_list.c: New file.
7368         * tests/test-avltree_oset.c: New file.
7369         * tests/test-rbtree_oset.c: New file.
7370         * MODULES.html.sh (Container data structures): New section.
7371
7372 2006-07-17  Bruno Haible  <bruno@clisp.org>
7373
7374         * m4/gl_list.m4: New file.
7375
7376 2006-07-17  Bruno Haible  <bruno@clisp.org>
7377
7378         * lib/gl_list.h: New file.
7379         * lib/gl_list.c: New file.
7380         * lib/gl_array_list.h: New file.
7381         * lib/gl_array_list.c: New file.
7382         * lib/gl_carray_list.h: New file.
7383         * lib/gl_carray_list.c: New file.
7384         * lib/gl_linked_list.h: New file.
7385         * lib/gl_linked_list.c: New file.
7386         * lib/gl_anylinked_list1.h: New file.
7387         * lib/gl_anylinked_list2.h: New file.
7388         * lib/gl_avltree_list.h: New file.
7389         * lib/gl_avltree_list.c: New file.
7390         * lib/gl_anyavltree_list1.h: New file.
7391         * lib/gl_anyavltree_list2.h: New file.
7392         * lib/gl_rbtree_list.h: New file.
7393         * lib/gl_rbtree_list.c: New file.
7394         * lib/gl_anyrbtree_list1.h: New file.
7395         * lib/gl_anyrbtree_list2.h: New file.
7396         * lib/gl_anytree_list1.h: New file.
7397         * lib/gl_anytree_list2.h: New file.
7398         * lib/gl_linkedhash_list.h: New file.
7399         * lib/gl_linkedhash_list.c: New file.
7400         * lib/gl_anyhash_list1.h: New file.
7401         * lib/gl_anyhash_list2.h: New file.
7402         * lib/gl_avltreehash_list.h: New file.
7403         * lib/gl_avltreehash_list.c: New file.
7404         * lib/gl_rbtreehash_list.h: New file.
7405         * lib/gl_rbtreehash_list.c: New file.
7406         * lib/gl_anytreehash_list1.h: New file.
7407         * lib/gl_anytreehash_list2.h: New file.
7408
7409         * lib/gl_oset.h: New file.
7410         * lib/gl_oset.c: New file.
7411         * lib/gl_array_oset.h: New file.
7412         * lib/gl_array_oset.c: New file.
7413         * lib/gl_avltree_oset.h: New file.
7414         * lib/gl_avltree_oset.c: New file.
7415         * lib/gl_rbtree_oset.h: New file.
7416         * lib/gl_rbtree_oset.c: New file.
7417         * lib/gl_anytree_oset.h: New file.
7418
7419 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
7420
7421         * m4/mkancesdirs.m4: New file.
7422         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
7423         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
7424         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
7425         it.
7426
7427 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
7428
7429         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
7430         * lib/mkancesdirs.h: New files.
7431         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
7432         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
7433         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
7434         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
7435         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
7436         callers changed.  Revamp internals significantly, by not
7437         attempting to create directories that are temporarily more
7438         permissive than the final results.  Do not attempt to use
7439         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
7440         This removes some race conditions, fixes some bugs, and simplifies
7441         things.  Use new dirchownmod function to do owner and mode changes.
7442         * lib/mkdir-p.h: Likewise.
7443         * lib/modechange.c (octal_to_mode): New function.
7444         (struct mode_change): New member mentioned.
7445         (make_node_op_equals): New arg mentioned.  All callers changed.
7446         (mode_compile): Keep track of which mode bits the user has explicitly
7447         mentioned.
7448         (mode_adjust): New arg DIR, so that we implement the X op correctly.
7449         New arg PMODE_BITS, to keep track of which mode bits the user
7450         mentioned; it treats S_ISUID and S_ISGID speciall.
7451         All callers changed.
7452         * lib/modechange.h: Likewise.
7453
7454 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
7455
7456         * MODULES.html.sh: Add mkancestors.
7457         * modules/mkancesdirs: New module.
7458         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
7459         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
7460         The chdir-safer and afs files are now orphans; I'll remove them
7461         unless someone speaks up.
7462         Add lib/dirchownmod.c, lib/dirchownmod.h.
7463         (Depends-on): Remove alloca, chown, save-cwd, dirname.
7464         Add lchown, mkancesdirs.
7465         (Maintainer): Add self.
7466
7467 2006-07-15  Karl Berry  <karl@gnu.org>
7468
7469         * gnulib-tool: help message wording/arrangement.
7470
7471 2006-07-14  Simon Josefsson  <jas@extundo.com>
7472
7473         * doc/gnulib.texi (Libtool and Windows): New section.
7474
7475 2006-07-12  Simon Josefsson  <jas@extundo.com>
7476
7477         * modules/gendocs (License): Fix license, approved by Karl.
7478
7479 2006-07-12  Eric Blake  <ebb9@byu.net>
7480
7481         * MODULES.html.sh: Add gendocs.
7482
7483 2006-07-11  Eric Blake  <ebb9@byu.net>
7484
7485         * modules/fdl: New module, to install doc/fdl.texi.
7486         * MODULES.html.sh: Add new section for documentation modules.
7487         * gnulib-tool: Avoid space-tab.
7488         (--doc-base): New option, to manage files from doc.
7489
7490 2006-07-11  Eric Blake  <ebb9@byu.net>
7491
7492         * m4/absolute-header.m4: Fix comments to match recent change.
7493
7494 2006-07-11  Eric Blake  <ebb9@byu.net>
7495
7496         * gnulib-tool: List --doc-base before --tests-base.
7497
7498 2006-07-11  Derek R. Price  <derek@ximbiot.com>
7499
7500         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
7501
7502 2006-07-11  Bruno Haible  <bruno@clisp.org>
7503
7504         * README: Mention where to put documentation.
7505
7506 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7507
7508         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
7509
7510 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
7511
7512         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
7513         to stdint.m4.
7514
7515 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
7516
7517         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
7518         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
7519         "no/such/file/stdint.h" when there is no such file, so that
7520         the resulting C code can be parsed by dodgy compilers.
7521         Problems reported by Bob Proulx.
7522
7523 2006-07-10  Derek R. Price  <derek@ximbiot.com>
7524
7525         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
7526         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
7527         macros into the GNU _D_EXACT_NAMLEN.
7528         * lib/savedir.c:  Likewise.
7529         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
7530
7531 2006-07-10  Derek R. Price  <derek@ximbiot.com>
7532         and Paul Eggert  <eggert@cs.ucla.edu>
7533
7534         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
7535         * m4/savedir.m4:
7536         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
7537         macros into the GNU _D_EXACT_NAMLEN.
7538
7539 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
7540
7541         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
7542         around the absolute name, to work around a problem with the HP-UX
7543         11.23 native C compiler, reported by Bob Proulx.
7544
7545 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
7546
7547         * doc/maintain.texi, make-stds.texi: Sync from
7548         <http://savannah.gnu.org/projects/gnustandards>.
7549
7550 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
7551
7552         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
7553
7554 2006-07-09  Jim Meyering  <jim@meyering.net>
7555
7556         * m4/glob.m4: Remove a doubled word in a comment.
7557
7558 2006-07-09  Jim Meyering  <jim@meyering.net>
7559
7560         * lib/argp-pv.c: Remove a doubled word in a comment.
7561         * lib/check-version.c (check_version): Likewise.
7562         * lib/javacomp.c (compile_java_class): Likewise.
7563
7564 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
7565
7566         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
7567         for the benefit of people using Autoconf 2.60.  If you want to
7568         support older Autoconf versions you can copy m4/onceonly_2_57.m4
7569         (or m4/onceonly.m4, if pre-2.57) manually.
7570
7571 2006-07-08  Jim Meyering  <jim@meyering.net>
7572
7573         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
7574         comment.
7575         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
7576         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
7577         comment.
7578
7579 2006-07-08  Jim Meyering  <jim@meyering.net>
7580
7581         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
7582
7583 2006-07-07  Simon Josefsson  <jas@extundo.com>
7584
7585         * tests/test-crc.c: Change expected crc value, the test vector
7586         were probably computed using the old broken crc.c?
7587
7588 2006-07-06  Simon Josefsson  <jas@extundo.com>
7589
7590         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
7591         now the canonical place for the M4 file).
7592
7593         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
7594         from the sys_socket dependency now.
7595
7596         * modules/inet_pton (Files): Ditto.
7597
7598         * modules/inet_ntop (Files): Ditto.
7599
7600 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
7601
7602         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
7603         not gl_PREREQ_GETUSERSHELL.
7604
7605 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7606
7607         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
7608         with only one argument, for Autoconf 2.60.
7609         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
7610         expand to nothing, so add a shell command to avoid syntax error.
7611         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
7612
7613 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7614
7615         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
7616
7617 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
7618
7619         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
7620         no longer needed.  Check for isblank decl.
7621         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
7622         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
7623         of existence.
7624
7625 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
7626
7627         * lib/getloadavg.c: Use __VMS, not VMS.
7628         * lib/getopt.c: Likewise.
7629         * lib/getpagesize.h: Likewise.
7630         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
7631         and probably does not work.
7632
7633 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
7634
7635         * lib/.cppi-disable: Add wcwidth.
7636         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
7637         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
7638         (ISGRAPH): Remove.  All uses changed to isgraph.
7639         (FOLD) [!defined _LIBC]: Remove special case.
7640         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
7641         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
7642         HAVE_ISBLANK.
7643         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
7644         case.
7645
7646 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
7647
7648         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
7649         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
7650         brackets.  Other minor changes to suppress some compiler
7651         warnings.
7652
7653 2006-07-06  Derek R. Price  <derek@ximbiot.com>
7654         and Paul Eggert  <eggert@cs.ucla.edu>
7655
7656         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
7657         of invoking obsolescent AC_HEADER_DIRENT macro.
7658         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
7659         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
7660         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
7661         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
7662         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
7663         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
7664         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
7665         * m4/readdir.m4: Remove; no longer needed.
7666
7667 2006-07-06  Derek R. Price  <derek@ximbiot.com>
7668         and Paul Eggert  <eggert@cs.ucla.edu>
7669
7670         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
7671         Don't worry about this obsolete case any more.
7672         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
7673         directories.
7674         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
7675         worry about this obsolete case any more.
7676         * lib/fts.c: Likewise.
7677         * lib/getcwd.c: Likewise.
7678         * lib/glob.h: Likewise.
7679         * lib/savedir.c: Likewise.
7680
7681 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
7682
7683         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
7684         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
7685         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
7686         needed.
7687         All uses removed.
7688         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
7689         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
7690         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
7691         needed.
7692         * m4/getdate.m4 (gl_GETDATE): Likewise.
7693         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
7694         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
7695         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
7696         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
7697         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
7698         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
7699         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
7700         needed.
7701
7702 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
7703
7704         * lib/memcasecmp.c: Include <limits.h>.
7705         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
7706         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
7707         Don't assume isdigit succeeds only on '0' through '9'.
7708
7709 2006-07-05  Eric Blake  <ebb9@byu.net>
7710
7711         * modules/getaddrinfo (Depends-on): Add snprintf.
7712
7713 2006-07-05  Eric Blake  <ebb9@byu.net>
7714
7715         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
7716         to avoid 'header present but could not be compiled' on cygwin.
7717
7718 2006-07-05  Eric Blake  <ebb9@byu.net>
7719
7720         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
7721         missing from netdb.h.
7722         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
7723
7724 2006-07-05  Derek R. Price  <derek@ximbiot.com>
7725
7726         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
7727         no longer needed.
7728         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
7729         * m4/getdate.m4 (gl_GETDATE): Likewise.
7730         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
7731         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
7732         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
7733         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
7734         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
7735
7736 2006-07-05  Derek R. Price  <derek@ximbiot.com>
7737
7738         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
7739         All uses of is_space replaced by isspace.
7740         * lib/exit.h: Don't talk about STDC_HEADERS.
7741         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
7742         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
7743         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
7744         replaced by isprint etc.
7745         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
7746         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
7747         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
7748         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
7749         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
7750         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
7751
7752 2006-07-05  Bruno Haible  <bruno@clisp.org>
7753
7754         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
7755         the function exists, before testing against AIX.
7756         Reported by Martin Lambers <marlam@marlam.de>.
7757
7758 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
7759
7760         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
7761         From Mark D. Baushke.
7762
7763 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
7764
7765         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
7766         to the absolute name, not just one, to bypass Sun C 5.8's
7767         "warning: #include of /usr/include/... may be non-portable".
7768
7769 2006-07-04  Eric Blake  <ebb9@byu.net>
7770
7771         * modules/dirname-tests: New test module.
7772         * tests/test-dirname.c: New file, replacing dirname.c
7773         TEST_DIRNAME section that was recently deleted.
7774
7775 2006-07-04  Bruno Haible  <bruno@clisp.org>
7776
7777         Assume ANSI C header files and <ctype.h> functions.
7778         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
7779         (mbsnwidth): Use isprint, iscntrl instead.
7780
7781 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
7782
7783         Merge from coreutils.
7784         * MODULES.html.sh: Add xstrtold.
7785         * modules/xstrtold: New file.
7786         * modules/cycle-check (Files): Add lib/same-inode.h.
7787         * modules/dirname (Files): Add m4/double-slash-root.m4.
7788         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
7789         * modules/mkdir-p (Files): Add lib/same-inode.h.
7790         * modules/same (Files): Add lib/same-inode.h.
7791
7792 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
7793
7794         * m4/absolute-header.m4: Renamed from full-header-path.m4.
7795         This is to keep the terminology clean; POSIX talks about
7796         "absolute pathnames", not "full pathnames", but the GNU
7797         Coding Standards say to use "path" for something else;
7798         so use "absolute" to keep both sides happy.
7799         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
7800         Set gl_absolute_header, not gl_full_header_path.
7801         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
7802         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
7803         All uses changed.
7804
7805         Merge from coreutils.
7806
7807         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
7808
7809         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
7810         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
7811         want to require the building of c-strtod.o.
7812         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
7813         needs -lm directly.
7814         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
7815
7816         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
7817
7818         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
7819         --as-needed option if available.  Problem reported by Albert Chin in
7820         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
7821         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
7822         cc merely issues a bunch of annoying warnings for --as-needed
7823         (this problem was reported by Bob Proulx).  Also, try linking with
7824         -lm to detect a bug in binutils 2.16 (this problem was reported
7825         by Ralf Wildenhues).
7826
7827         2006-06-18  Jim Meyering  <jim@meyering.net>
7828
7829         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
7830         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
7831         macro.
7832         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
7833         also check for glibc-2.4's abort-inducing bug.
7834
7835         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
7836         Low-probability clean-up should be to use rmdir to get rid of
7837         the just-created directory, not unlink.
7838
7839         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
7840         configure fail, and request a bug report to inform us about it.
7841         Add a comment that, barring reports to the contrary, in 2007 we'll
7842         assume ftruncate is universally available.
7843
7844         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
7845
7846         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
7847
7848         2006-03-12  Jim Meyering  <jim@meyering.net>
7849
7850         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
7851         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
7852         * m4/same.m4 (gl_SAME): Likewise.
7853         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
7854
7855         2006-03-11  Eric Blake  <ebb9@byu.net>
7856
7857         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
7858         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
7859         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
7860         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
7861
7862 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
7863
7864         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
7865         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
7866         reported by Mark D. Baushke, one in
7867         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
7868
7869         Merge from coreutils.
7870
7871         * lib/.cppi-disable: Add stdint_.h.
7872         * lib/.cvsignore: Add stdint.h.
7873
7874         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
7875
7876         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
7877         both double and long double versions.
7878         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
7879         * lib/xstrtold.c: New file.
7880         * lib/xstrtod.h (xstrtold): New decl.
7881
7882         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
7883
7884         * lib/filemode.c (setst): Remove.
7885         (strmode): Rewrite to avoid setst.  This makes the code shorter,
7886         (arguably) clearer, and the generated code is a bit smaller on my
7887         Debian GNU/Linux stable x86 host.
7888
7889         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
7890
7891         * lib/filemode.c: Include "filemode.h" first, to test the interface.
7892         Assume that filemode.h includes sys/types.h and sys/stat.h.
7893         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
7894         (ftypelet): Reorder to put common cases first, for efficiency.
7895         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
7896         to do 'M'.
7897         (strmode): Renamed from mode_string, and now stores 12 bytes instead
7898         of 10, for compatibility with FreeBSD.  All callers changed.
7899         (filemodestring): Now stores 12 bytes instead of 10, and sets file
7900         types that can't be deduced solely from st_mode.  First arg is now a
7901         const pointer.
7902         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
7903         (strmode): Renamed from mode_string.
7904         (filemodestring): New decl.
7905         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
7906         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
7907         needed.
7908         (S_ISPORT, S_ISWHT): New macros, if not already defined.
7909
7910         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
7911
7912         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
7913         fsusage.h now does that.  Include fsusage.h first, to test interface.
7914         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
7915         at most one method (the old code could have generated decls that
7916         didn't conform to C89, not that this was ever exercised).
7917         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
7918
7919         2006-03-19  Jim Meyering  <jim@meyering.net>
7920
7921         Work even in a chroot where d_ino values for entries in "/"
7922         don't match the stat.st_ino values for the same names.
7923         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
7924         number, iterate through all entries again, using lstat instead.
7925         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
7926         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
7927
7928         * lib/getcwd.c (__getcwd): Clarify a comment.
7929         Use memcpy in place of a call to strcpy.
7930
7931         2006-03-12  Jim Meyering  <jim@meyering.net>
7932
7933         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
7934         matches that of the current directory (which we're about to chdir ".."
7935         out of), then save the dev-ino of the parent, instead.
7936
7937         * lib/same-inode.h (SAME_INODE): New file/macro.
7938         * lib/chdir-safer.c (SAME_INODE): Remove definition.
7939         Include "same-inode.h", instead.
7940         * lib/same.c: Likewise.
7941         * lib/cycle-check.h: Include "same-inode.h".
7942         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
7943         * lib/cycle-check.c (SAME_INODE): Remove definition.
7944         * lib/root-dev-ino.h: Include "same-inode.h".
7945
7946         2006-03-11  Eric Blake  <ebb9@byu.net>
7947
7948         * lib/same.c (same_name): s/base_name/last_component/
7949         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
7950         * lib/filenamecat.c (file_name_concat): Likewise.
7951
7952         2006-03-11  Eric Blake  <ebb9@byu.net>,
7953                     Paul Eggert  <eggert@cs.ucla.edu>
7954
7955         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
7956         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
7957         drive prefix.
7958         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
7959         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
7960         (last_component): New method.
7961         * lib/dirname.c (dir_len): Determine when drive letters need a
7962         subsequent slash.  Preserve // when it is special.
7963         (dir_name): Don't append dot when drive letter is absolute.
7964         [TEST_DIRNAME]: Move into a full-blown gnulib test.
7965         * lib/basename.c (base_name): New semantics - malloc the result.
7966         Preserve // when it is special.  Preserve relative files that look
7967         like drive letters.
7968         (base_len): Preserve // when it is special.
7969         (last_component): New method, similar to old base_name semantics.
7970         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
7971         base_name.  Strip redundant slashes from ///.
7972
7973 2006-07-03  Jim Meyering  <jim@meyering.net>
7974
7975         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
7976         macro is used before the first cycle_check call.
7977
7978 2006-07-03  Eric Blake  <ebb9@byu.net>
7979
7980         * modules/dirname (Depends-on): Add xstrndup.
7981
7982 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
7983
7984         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
7985         test cases, so that config.log is a bit easier to follow.
7986
7987 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
7988
7989         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
7990         both are 64 bits, since this seems to be the tradition, and this
7991         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
7992         we ever run into a host that prefers long long to long in this
7993         case, we'll need another configure-time test.  Problem reported by
7994         Jim Meyering.
7995
7996 2006-07-02  Eric Blake  <ebb9@byu.net>
7997
7998         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
7999
8000 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
8001
8002         * modules/inttypes (Depends-on): No longer depends on stdint.
8003         * modules/stdint (Description): Say more about assumptions.
8004         Say that the fast types might differ.  Say macros are used.
8005         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
8006         (Makefile.am): Revise list of substituted symbols to match
8007         new stdint.m4.
8008         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
8009         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
8010         * tests/test-stdint.c (verify_same_types)
8011         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
8012         the code conforms to C99/C89.
8013         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
8014         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
8015
8016 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
8017
8018         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
8019         but fix a bug, by requiring at least 64 bits.
8020         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
8021         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
8022         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
8023         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
8024
8025         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
8026         changes.  Make 2.59 a prerequisite.  Check and substitute for
8027         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
8028         inttypes.h.  Do not use special include files; just use the
8029         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
8030         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
8031         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
8032         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
8033         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
8034         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
8035         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
8036         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
8037         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
8038         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
8039         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
8040         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
8041         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
8042         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
8043         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
8044         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
8045         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
8046         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
8047         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
8048         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
8049         WINT_MAX.  Check for C99 conformance more strictly, by detecting
8050         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
8051         not check for things that C99 does not require, e.g., int8_t.  If
8052         a test isn't needed unless <stdint.h> isn't working, and is
8053         unlikely to be needed for any other reason, then don't do it
8054         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
8055         size_t, since we assume C89 freestanding at least.  Do not check
8056         for sig_atomic_t, wchar_t, or wint_t, since the code now does
8057         the right thing even if the types are not defined.  Instead use:
8058         (gl_STDINT_TYPE_PROPERTIES): New macro.
8059         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
8060         testing whether <sys/types.h> clashes, as Autoconf does this for
8061         us now.  All uses removed.
8062         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
8063         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
8064         (gl_CHECK_TYPE_SAME):
8065         Remove; no longer needed.
8066         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
8067         exists, since we'll return 0 anyway in that case.
8068         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
8069
8070 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
8071
8072         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
8073         possible collision with system files.
8074         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
8075         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
8076         WCHAR_MIN and WCHAR_MAX in this case.
8077         (<stddef.h>): Do not include; no longer needed.
8078         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
8079         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
8080         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
8081         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
8082         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
8083         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
8084         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
8085         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
8086         !defined(__c99))]: Include in this case too, since it's harmless
8087         now.
8088         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
8089         dangerous to do so.
8090         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
8091         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
8092         (_STDINT_MIN, _STDINT_MAX): New macros.
8093         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
8094         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
8095         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
8096         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
8097         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
8098         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
8099         macros, not typedefs; this simplifies things quite a bit.
8100         Use long int for all types narrower than int64_t.
8101         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
8102         Define in terms of long long int or int64_t or long int,
8103         not int64_t or int32_t.  This saves some compile-time testing.
8104         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
8105         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
8106         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
8107         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
8108         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
8109         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
8110         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
8111         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
8112         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
8113         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
8114         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
8115         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
8116         undef any previous version and define our own version, for
8117         simplicity and consistency with the new macros for types.
8118         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
8119         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
8120         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
8121         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
8122         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
8123         @WINT_T_SUFFIX@ to keep things simple here.
8124         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
8125         Simplify by assuming typical 8/16/32/64 host, since we're
8126         already doing that elsewhere anyway.
8127         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
8128         and assume long long int is 64 bits if available.  This
8129         speeds up 'configure'.
8130
8131 2006-07-01  Eric Blake  <ebb9@byu.net>
8132
8133         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
8134         Reported by Andreas Buening.
8135
8136 2006-07-01  Eric Blake  <ebb9@byu.net>
8137
8138         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
8139
8140 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
8141
8142         * lib/getaddrinfo.c: fixed typo
8143
8144 2006-06-29  Jim Meyering  <jim@meyering.net>
8145
8146         * modules/strftime (Maintainer): Add my name, since with the
8147         FPRINTFTIME changes strftime.c has forked from glibc.
8148
8149 2006-06-29  Eric Blake  <ebb9@byu.net>
8150
8151         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
8152
8153 2006-06-29  Eric Blake  <ebb9@byu.net>
8154
8155         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
8156
8157 2006-06-29  Eric Blake  <ebb9@byu.net>
8158
8159         * lib/stat_.h: New file.
8160
8161 2006-06-29  Eric Blake  <ebb9@byu.net>
8162
8163         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
8164         unused static function.
8165
8166 2006-06-29  Eric Blake  <ebb9@byu.net>
8167
8168         * doc/functions.texi (Function Portability): Document missing lstat
8169         on mingw.
8170
8171 2006-06-29  Eric Blake  <ebb9@byu.net>
8172
8173         * MODULES.html.sh: Add sys_stat.
8174         * modules/sys_stat: New module.
8175         * modules/mkstemp (Depends-on): Add sys_stat.
8176
8177 2006-06-29  Derek R. Price  <derek@ximbiot.com>
8178
8179         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
8180
8181 2006-06-29  Derek R. Price  <derek@ximbiot.com>
8182
8183         * m4/c-bs-a.m4: Removed.
8184
8185 2006-06-29  Derek R. Price  <derek@ximbiot.com>
8186
8187         * lib/strftime.c: Assume strftime() exists.
8188
8189 2006-06-29  Derek Price  <derek@ximbiot.com>
8190
8191         * modules/c-bs-a: Removed - \a is C89.
8192         * MODULES.html.sh: Remove c-bs-a.
8193
8194 2006-06-29  Bruno Haible  <bruno@clisp.org>
8195
8196         * modules/wcwidth (License): Change to LGPL.
8197
8198 2006-06-28  Simon Josefsson  <jas@extundo.com>
8199
8200         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
8201         on _WIN32.
8202
8203         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
8204         getnameinfo.
8205
8206 2006-06-28  Simon Josefsson  <jas@extundo.com>
8207
8208         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
8209
8210 2006-06-28  Simon Josefsson  <jas@extundo.com>
8211
8212         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
8213         functions there.  It will succeed on Windows XP, but on Windows
8214         2000 and (presumably) earlier, it will fail, and use the internal
8215         re-implementation.
8216         (use_win32_p): New function.
8217         (getaddrinfo): Use strtoul on servname, to support numeric ports.
8218         Support AI_NUMERICSERV to disable getservbyname.
8219         (getnameinfo): New function, only supports
8220         NI_NUMERICHOST|NI_NUMERICSERV for now.
8221
8222         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
8223         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
8224         getnameinfo.
8225
8226 2006-06-28  Eric Blake  <ebb9@byu.net>
8227
8228         * modules/wcwidth: New file.
8229         * modules/mbchar (Depends-on): Add wcwidth.
8230         * modules/mbswidth (Depends-on): Add wcwidth.
8231         * MODULES.html.sh: Add wcwidth.
8232
8233 2006-06-28  Eric Blake  <ebb9@byu.net>
8234
8235         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
8236         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
8237
8238 2006-06-28  Eric Blake  <ebb9@byu.net>
8239
8240         * lib/xvasprintf.h: Fix comments.
8241
8242 2006-06-28  Eric Blake  <ebb9@byu.net>
8243
8244         * lib/mbchar.h (wcwidth): Include wcwidth.h.
8245         * lib/mbswidth.c (wcwidth): Move from here...
8246         * lib/wcwidth.h: ...to this new file.
8247
8248 2006-06-28  Derek R. Price  <derek@ximbiot.com>
8249
8250         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
8251
8252         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
8253         it's obsolete.
8254         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
8255
8256 2006-06-28  Derek R. Price  <derek@ximbiot.com>
8257
8258         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
8259         Autoconf 2.60 says this stuff was obsolete.
8260
8261 2006-06-28  Bruno Haible  <bruno@clisp.org>
8262
8263         * modules/wcwidth (Files): Add m4/wchar_t.m4.
8264
8265 2006-06-28  Bruno Haible  <bruno@clisp.org>
8266
8267         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
8268         gt_TYPE_WCHAR_T.
8269
8270 2006-06-28  Bruno Haible  <bruno@clisp.org>
8271
8272         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
8273         declaration for wcwidth.
8274         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
8275
8276 2006-06-28  Bruno Haible  <bruno@clisp.org>
8277
8278         * lib/mkdtemp.c [MINGW]: Include <io.h>.
8279         (mkdir): Define using _mkdir.
8280
8281 2006-06-28  Bruno Haible  <bruno@clisp.org>
8282
8283         * lib/getaddrinfo.h: Fix POSIX URL.
8284         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
8285         _WIN32.
8286         (use_win32_p): Make static.
8287         (getaddrinfo): Reject service name if it is empty or does not consist
8288         solely of decimal digits, or if its value is > 65535.
8289         (getnameinfo): Remove useless casts.
8290
8291 2006-06-27  Simon Josefsson  <jas@extundo.com>
8292
8293         * modules/sys_select: New file, suggested by Bruno Haible, Paul
8294         Eggert and Martin Lambers.
8295
8296 2006-06-27  Simon Josefsson  <jas@extundo.com>
8297
8298         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
8299         Eggert and Martin Lambers.
8300
8301 2006-06-27  Bruno Haible  <bruno@clisp.org>
8302
8303         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
8304         result to 0, not to empty.
8305         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
8306
8307 2006-06-27  Bruno Haible  <bruno@clisp.org>
8308
8309         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
8310
8311 2006-06-26  Simon Josefsson  <jas@extundo.com>
8312
8313         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
8314         present.
8315
8316 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
8317
8318         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
8319         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
8320         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
8321
8322 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
8323
8324         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
8325
8326 2006-06-26  Bruno Haible  <bruno@clisp.org>
8327
8328         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
8329
8330 2006-06-26  Bruno Haible  <bruno@clisp.org>
8331
8332         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
8333
8334 2006-06-26  Bruno Haible  <bruno@clisp.org>
8335
8336         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
8337         SGI C compiler in pre-C99 mode.
8338         Suggested by Mark D. Baushke and Larry Jones.
8339
8340 2006-06-26  Bruno Haible  <bruno@clisp.org>
8341
8342         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
8343         WCHAR_MAX.
8344         Reported by Mark D. Baushke and Larry Jones.
8345
8346 2006-06-26  Bruno Haible  <bruno@clisp.org>
8347
8348         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
8349         in pre-C99 mode.
8350         Suggested by Mark D. Baushke and Larry Jones.
8351
8352 2006-06-23  Simon Josefsson  <jas@extundo.com>
8353             Bruno Haible  <bruno@clisp.org>
8354
8355         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
8356         Emit mostlyclean-local rule.
8357         (func_emit_tests_Makefile_am): Likewise.
8358         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
8359
8360 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
8361
8362         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
8363
8364 2006-06-23  Bruno Haible  <bruno@clisp.org>
8365
8366         * tests/test-stdint.c: Update to match ISO C 99 Technical
8367         Corrigendum 1.
8368
8369 2006-06-23  Bruno Haible  <bruno@clisp.org>
8370
8371         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
8372
8373 2006-06-23  Bruno Haible  <bruno@clisp.org>
8374
8375         * lib/stdint_.h: Treat IRIX like OpenBSD.
8376
8377 2006-06-23  Bruno Haible  <bruno@clisp.org>
8378
8379         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
8380         ISO C 99 Technical Corrigendum 1.
8381
8382 2006-06-22  Simon Josefsson  <jas@extundo.com>
8383
8384         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
8385         MinGW.
8386
8387 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
8388
8389         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
8390         needed.  Some compiler complained about some of them.  Problem reported
8391         by Larry Jones in
8392         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
8393
8394 2006-06-21  Simon Josefsson  <jas@extundo.com>
8395
8396         * tests/test-getaddrinfo.c: New file.
8397
8398         * modules/getaddrinfo-tests: New file.
8399
8400         * MODULES.html.sh: Add inet_pton.
8401
8402         * modules/inet_pton: New file.
8403
8404 2006-06-21  Simon Josefsson  <jas@extundo.com>
8405
8406         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
8407         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
8408         of using the (limited) gnulib implementation on Windows XP.
8409
8410         * m4/inet_pton.m4: New file.
8411
8412 2006-06-21  Simon Josefsson  <jas@extundo.com>
8413
8414         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
8415         variable.
8416
8417         * lib/socket_.h: Don't define WINVER.
8418
8419         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
8420         slightly modified to work in gnulib.
8421
8422 2006-06-21  Simon Josefsson  <jas@extundo.com>
8423
8424         * doc/gnulib.texi (Windows sockets): Add.
8425
8426 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
8427
8428         * lib/read-file.c (fread_file): Start with buffer allocation of
8429         0 bytes rather than 1 byte; this simplifies the code.
8430         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
8431         code to free buffer and save/restore errno.
8432         (internal_read_file): Remove unused local.
8433
8434 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
8435
8436         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
8437         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
8438         Problem reported by Denis Excoffier in
8439         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
8440
8441 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
8442
8443         * modules/sys_socket, modules/socklen: Include sys/types since
8444         FreeBSD 4.x's sys/socket.h needs it.
8445
8446 2006-06-19  Simon Josefsson  <jas@extundo.com>
8447
8448         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
8449
8450 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
8451
8452         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
8453
8454 2006-06-19  Bruno Haible  <bruno@clisp.org>
8455
8456         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
8457         and FULL_PATH_INTTYPES_H in angle brackets.
8458         Reported by Mark D. Baushke <mdb@gnu.org>.
8459
8460 2006-06-17  Eric Blake  <ebb9@byu.net>
8461
8462         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
8463         errno.
8464
8465 2006-06-17  Bruno Haible  <bruno@clisp.org>
8466
8467         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
8468         <sys/inttypes.h>.
8469
8470 2006-06-17  Bruno Haible  <bruno@clisp.org>
8471
8472         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
8473         whether errno is declared. Assume <errno.h> declares errno.
8474
8475 2006-06-17  Bruno Haible  <bruno@clisp.org>
8476
8477         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
8478
8479 2006-06-17  Bruno Haible  <bruno@clisp.org>
8480
8481         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
8482         problem on Solaris 2.5.1.
8483
8484 2006-06-16  Eric Blake  <ebb9@byu.net>
8485
8486         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
8487         * lib/unicodeio.c [!defined errno]: Likewise.
8488         * lib/strtol.c [!defined errno]: Likewise.
8489         * lib/strtod.c [!defined errno]: Likewise.
8490
8491 2006-06-15  Eric Blake  <ebb9@byu.net>
8492
8493         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
8494
8495 2006-06-15  Eric Blake  <ebb9@byu.net>
8496
8497         * config/srclist.txt (ssize_t.m4): Lose sync.
8498
8499 2006-06-15  Bruno Haible  <bruno@clisp.org>
8500
8501         * modules/stdint (Files): Include m4/full-header-path.m4,
8502         m4/size_max.m4, m4/wchar_t.m4.
8503         (Makefile.am): Many more substitutions.
8504         * modules/stdint-tests: New file.
8505         * tests/test-stdint.c: New file.
8506
8507 2006-06-15  Bruno Haible  <bruno@clisp.org>
8508
8509         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
8510         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
8511         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
8512         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
8513         gl_CHECK_TYPE_SAME): New macros.
8514
8515 2006-06-15  Bruno Haible  <bruno@clisp.org>
8516
8517         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
8518
8519 2006-06-15  Bruno Haible  <bruno@clisp.org>
8520
8521         * lib/stdint_.h: Rewritten to be fully auto-configured.
8522         Fixes bug on HP-UX/IA64.
8523
8524 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
8525
8526         * lib/getdate.y (__attribute__): Don't define if already defined.
8527         Problem reported by Larry Jones.
8528         * lib/utimens.c (__attribute__): Likewise.
8529
8530 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
8531
8532         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
8533         reported by Andreas Schwab.
8534
8535 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8536             Bruno Haible  <bruno@clisp.org>
8537
8538         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
8539         check for the declaration of strnlen and a run test that exposes the
8540         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
8541         rpl_strndup.
8542
8543 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8544             Bruno Haible  <bruno@clisp.org>
8545
8546         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
8547
8548 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8549
8550         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
8551         compile test, for Tru64 4.0D.
8552
8553 2006-05-28  Karl Berry  <karl@gnu.org>
8554
8555         * config/srclist.txt (printf-args.c): lose sync.
8556
8557 2006-05-26  Martin Lambers  <marlam@marlam.de>
8558
8559         * lib/getpass.c: Updates the test for the native W32 API, and adds
8560         missing includes, thus fixing compilation warnings.
8561
8562 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
8563
8564         * lib/exclude.c (exclude_fnmatch): New function.
8565         (excluded_file_name): Call exclude_fnmatch.
8566         * lib/exclude.h (excluded_file_name): New prototype
8567
8568 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
8569
8570         * lib/tempname.c (small_open, large_open): New macros.
8571         (__open, __open64) [!_LIBC]: Remove.
8572         (__gen_tempname): Use small_open and large_open instead of __open
8573         and __open64.  This fixes a portability bug on HP-UX 11.11i
8574         reported by Simon Wing-Tang in
8575         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
8576
8577 2006-05-24  Bruno Haible  <bruno@clisp.org>
8578
8579         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
8580         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
8581         Reported by Thorsten Maerz <torte@netztorte.de> via
8582         Aaron Stone <aaron@serendipity.cx>.
8583
8584 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
8585
8586         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
8587         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
8588         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
8589         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
8590         not really conditional on the cache.
8591         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
8592
8593 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
8594
8595         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
8596         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
8597         (my_usleep): Don't mishandle maximum value.
8598
8599 2006-05-19  Jim Meyering  <jim@meyering.net>
8600
8601         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
8602
8603 2006-05-17  Bruno Haible  <bruno@clisp.org>
8604
8605         Cygwin portability.
8606         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
8607
8608 2006-05-17  Bruno Haible  <bruno@clisp.org>
8609
8610         * lib/stdint_.h: Fix recognition of Cygwin.
8611
8612 2006-05-15  Bruno Haible  <bruno@clisp.org>
8613
8614         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
8615         on libtool patch by Ralf Wildenhues.
8616
8617 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
8618
8619         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
8620         test for C99 conformance; (bool) 0.5 is an integer constant
8621         expression, but (bool) -0.5 is not.  Problem reported by Fedor
8622         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
8623
8624 2006-05-11  Simon Josefsson  <jas@extundo.com>
8625
8626         * m4/xvasprintf.m4: Fix obvious typo.
8627
8628 2006-05-11  Jim Meyering  <jim@meyering.net>
8629
8630         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
8631         James Lemley.
8632
8633 2006-05-10  Simon Josefsson  <jas@extundo.com>
8634
8635         * lib/md4.c: Typo fix, update copyright years.
8636         (K1, K2): Don't use L because it turn computations into 64-bit on
8637         64-bit platforms.
8638
8639 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
8640
8641         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
8642         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
8643         unwanted sign propagation, e.g., on hosts with 64-bit int.
8644         There still are some problems with reeelly weird theoretical hosts
8645         (e.g., 33-bit int) but it's not worth worrying about now.
8646         * lib/sha1.c (rol): Likewise.
8647         (K1, K2, K3, K4): Remove unnecessary L suffix.
8648
8649 2006-05-10  Bruno Haible  <bruno@clisp.org>
8650
8651         * lib/des.c: Cast to avoid warnings.
8652
8653 2006-05-09  Bruno Haible  <bruno@clisp.org>
8654
8655         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
8656         (Depends-on): Depend also on xsize, stdarg.
8657         (configure.ac): Add gl_XVASPRINTF.
8658
8659 2006-05-09  Bruno Haible  <bruno@clisp.org>
8660
8661         * m4/xvasprintf.m4: New file.
8662
8663 2006-05-09  Bruno Haible  <bruno@clisp.org>
8664
8665         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
8666         (EOVERFLOW): Define fallback value.
8667         (xstrcat): New function.
8668         (xvasprintf): Recognize the special case of a string concatenation.
8669
8670 2006-05-08  Eric Blake  <ebb9@byu.net>
8671
8672         * gnulib-tool (func_version): Base copyright year on CVS date.
8673         (func_emit_copyright_notice): New function.
8674         (func_emit_lib_Makefile_am): Use it.
8675         (func_emit_tests_Makefile_am): Likewise.
8676         (func_import): Likewise.
8677
8678 2006-05-08  Bruno Haible  <bruno@clisp.org>
8679
8680         * modules/stdarg: New file.
8681         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
8682
8683 2006-05-08  Bruno Haible  <bruno@clisp.org>
8684
8685         * m4/stdarg.m4: New file, from GNU gettext.
8686
8687 2006-05-08  Bruno Haible  <bruno@clisp.org>
8688
8689         * config/srclist.txt (build-aux/config.rpath): different from latest
8690         release.
8691
8692 2006-05-08  Bruno Haible  <bruno@clisp.org>
8693
8694         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
8695
8696 2006-05-05  Jim Meyering  <jim@meyering.net>
8697
8698         * m4/warning.m4: New file, derived from bison's file by the same name.
8699
8700 2006-05-03  Bruno Haible  <bruno@clisp.org>
8701
8702         * lib/stdint_.h: Shorter URL.
8703         * lib/inttypes.h: Likewise.
8704
8705 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
8706
8707         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
8708
8709 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
8710
8711         * lib/verify.h: Document the internals better.  Most of this change
8712         was written by Bruno Haible.
8713
8714 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
8715
8716         * doc/verify.texi: New file, partly based on a proposal by
8717         Bruno Haible.
8718
8719 2006-05-02  Bruno Haible  <bruno@clisp.org>
8720
8721         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
8722         test from here...
8723         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
8724
8725 2006-04-29  Bruno Haible  <bruno@clisp.org>
8726
8727         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
8728         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
8729
8730 2006-04-29  Bruno Haible  <bruno@clisp.org>
8731
8732         * gnulib-tool: Make --update option actually work.
8733
8734 2006-04-29  Bruno Haible  <bruno@clisp.org>
8735
8736         * doc/gcd.texi: New file.
8737         * doc/gnulib.texi: Include it.
8738
8739 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
8740
8741         * lib/getdate.y (get_date): When adding relative date, start with the
8742         initial time, not with the result of the first mktime call.
8743
8744 2006-04-25  Bruno Haible  <bruno@clisp.org>
8745
8746         * gnulib-tool (func_import): Output the include directives in three
8747         blocks, sorted separately.
8748         Reported by Ben Pfaff <blp@cs.stanford.edu>.
8749
8750 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
8751
8752         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
8753         to define main with arguments, for C++.  Reported by Eric Blake.
8754         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
8755         Prefer 'int main ()' to 'int main (void)', for C++.
8756         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
8757         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
8758         for 'main', for C99 and C++.
8759
8760 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
8761
8762         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
8763         Don't assume that exit status -1 is valid.
8764         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
8765         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
8766         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
8767         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
8768         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
8769         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
8770         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
8771         functions can be used without declaring them, or that you can
8772         exit with status -1.
8773         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
8774
8775 2006-04-24  Karl Berry  <karl@gnu.org>
8776
8777         * config/srclist.txt (longdouble.m4): sync lost.
8778
8779 2006-04-24  Eric Blake  <ebb9@byu.net>
8780
8781         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
8782
8783 2006-04-24  Bruno Haible  <bruno@clisp.org>
8784
8785         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
8786         poll() implementation in AIX.
8787         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
8788
8789 2006-04-24  Bruno Haible  <bruno@clisp.org>
8790
8791         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
8792         assigned exactly once.
8793
8794 2006-04-23  Claudio Fontana  <claudio@gnu.org>
8795             Bruno Haible  <bruno@clisp.org>
8796
8797         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
8798         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
8799         for AM_CPPFLAGS.
8800
8801 2006-04-23  Bruno Haible  <bruno@clisp.org>
8802
8803         * modules/copy-file: Depend on unistd.
8804         * modules/execute: Likewise.
8805         * modules/fatal-signal: Likewise.
8806         * modules/findprog: Likewise.
8807         * modules/mkdtemp : Likewise.
8808         * modules/pipe: Likewise.
8809         * modules/wait-process: Likewise.
8810
8811 2006-04-23  Bruno Haible  <bruno@clisp.org>
8812
8813         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
8814         condition was already detected.
8815         Reported by Ben Pfaff <blp@cs.stanford.edu>.
8816
8817 2006-04-23  Bruno Haible  <bruno@clisp.org>
8818
8819         * lib/copy-file.c: Include <unistd.h> unconditionally.
8820         * lib/execute.c: Likewise.
8821         * lib/fatal-signal.c: Likewise.
8822         * lib/findprog.c: Likewise.
8823         * lib/mkdtemp.c: Likewise.
8824         * lib/pipe.h: Likewise.
8825         * lib/pipe.c: Likewise.
8826         * lib/wait-process.h: Likewise.
8827
8828 2006-04-23  Bruno Haible  <bruno@clisp.org>
8829
8830         * gnulib-tool (func_usage): Fix --import description. Document
8831         --update.
8832         (func_import): Create temporary file in a temporary directory, if
8833         --dry-run is specified. Silence errors from 'grep' when there are no
8834         m4 files in $m4dir.
8835         (func_create_testdir): Silence errors from 'grep' when there are no
8836         m4 files in $m4dir.
8837         Reported by Karl Berry <karl@freefriends.org>.
8838
8839 2006-04-20  Bruno Haible  <bruno@clisp.org>
8840
8841         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
8842         one argument, so that the code will be portable to Autoconf 2.60.
8843         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
8844         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
8845         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
8846
8847 2006-04-19  Derek Price  <derek@ximbiot.com>
8848             Eric Blake  <ebb9@byu.net>
8849
8850         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
8851         rather than "/full/path.h".  Update comment to match.  Shorten &
8852         generalize m4_translit call via AS_TR_CPP.
8853
8854 2006-04-19  Derek Price  <derek@ximbiot.com>
8855             Eric Blake  <ebb9@byu.net>
8856
8857         * lib/inttypes.h: Correct grammar in comment.
8858
8859 2006-04-18  Derek Price  <derek@ximbiot.com>
8860             Paul Eggert  <eggert@cs.ucla.edu>
8861
8862         * modules/inttypes: New file.
8863         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
8864
8865 2006-04-18  Derek Price  <derek@ximbiot.com>
8866             Paul Eggert  <eggert@cs.ucla.edu>
8867
8868         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
8869         New files.
8870
8871 2006-04-18  Derek Price  <derek@ximbiot.com>
8872             Paul Eggert  <eggert@cs.ucla.edu>
8873
8874         * lib/inttypes.h: New file.
8875         * lib/strtoimax.c: Assume <inttypes.h>.
8876
8877 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
8878
8879         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
8880         isn't mounted.  Problem reported by Kir Kolyshkin.
8881
8882 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
8883
8884         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
8885         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
8886         Derek R. Price.
8887         * lib/regex.h (RE_DUP_MAX): Update comment to match current
8888         implementation.
8889
8890 2006-04-12  Eric Blake  <ebb9@byu.net>
8891
8892         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
8893         is now done automatically by the corresponding Autoconf macro.
8894
8895 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
8896
8897         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
8898         time_r.h.
8899
8900 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
8901
8902         Merge regex changes from libc, removing some of our
8903         POSIX-conformance changes that were rejected and redoing them in a
8904         less-intrusive way.
8905
8906         * lib/regcomp.c (re_compile_internal, init_dfa):
8907         Length arg is now size_t, not Idx.  All uses changed.
8908         (peek_token): Forward decl now says internal_function.
8909         (__re_error_msgid, __re_error_msgid_idx):
8910         Now static rather than extern with attribute_hidden.
8911         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
8912         For some reason libc prefers K&R style defns for external functions.
8913         (regerror) [!defined _LIBC]: Likewise.
8914         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
8915         (seek_collating_symbol_entry, lookup_collation_sequence_value):
8916         (build_range_exp, build_collating_symbol):
8917         Use K&R-style defn.
8918         (re_compile_fastmap): Use '\0' to memset, not 0.
8919         (utf8_sb_map): Make the calculations more obvious.
8920         (init_dfa, parse_bracket_exp, build_charclass_op):
8921         Call calloc and cast result, as glibc does.
8922         (init_word_char, fetch_token, peek_token, peek_token_bracket):
8923         (build_range_exp, build_collating_symbol):
8924         Now internal functions.
8925
8926         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
8927
8928         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
8929         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
8930         Don't depend on VMS; depend on __VMS instead, for POSIX
8931         namespace cleanness.
8932         (regoff_t): Define to ssize_t, not long int.
8933
8934         Remove the REG_ macros named below.  Instead, make the old names
8935         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
8936         __USE_GNU_REGEX.
8937         (REG_BACKSLASH_ESCAPE_IN_LISTS):
8938         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
8939         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
8940         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
8941         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
8942         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
8943         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
8944         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
8945         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
8946         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
8947         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
8948         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
8949         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
8950         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
8951         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
8952         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
8953         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
8954         (REG_NREGS):
8955         Remove.  All uses replaced by the old RE_* names.
8956         (RE_BACKSLASH_ESCAPE_IN_LISTS):
8957         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
8958         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
8959         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
8960         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
8961         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
8962         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
8963         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
8964         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
8965         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
8966         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
8967         Don't bother having these macros be independent of each others'
8968         values, since they no longer exist in the POSIX name space.
8969
8970         Rename the following member names back to their old names,
8971         unless !__USE_GNU_REGEX.  All uses changed back.
8972         (buffer): Renamed from re_buffer.
8973         (allocated): Renamed from re_allocated.
8974         (used): Renamed from re_used.
8975         (syntax): Renamed from re_syntax.
8976         (fastmap): Renamed from re_fastmap.
8977         (translate): Renamed from re_translate.
8978         (can_be_null): Renamed from re_can_be_null.
8979         (regs_allocated): Renamed from re_regs_allocated.
8980         (fastmap_accurate): Renamed from re_fastmap_accurate.
8981         (no_sub): Renamed from re_no_sub.
8982         (not_bol): Renamed from re_not_bol.
8983         (not_eol): Renamed from re_not_eol.
8984         (newline_anchor): Renamed from re_newline_anchor.
8985         (num_regs): Renamed from rm_num_regs.
8986         (start): Renamed from rm_start.
8987         (end): Renamed from rm_end.
8988
8989         (free_state): Move up a bit.
8990
8991         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
8992         #define to be empty.
8993         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
8994         when that is what is intended.
8995         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
8996         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
8997         (MAX): New macro.
8998         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
8999         All uses changed back to re_malloc, etc.  It's now the caller's
9000         responsibility to check for overflow; all callers changed.
9001         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
9002         (re_x2nrealloc): Remove.
9003         (free_state): Remove decl.
9004
9005         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
9006         (re_set_registers, re_exec):
9007         Use K&R-style defn.
9008
9009         2006-01-31  Roland McGrath  <roland@redhat.com>
9010
9011         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
9012         Reported by Mike Frysinger <vapier@gentoo.org>.
9013
9014         2006-01-15  Andreas Jaeger  <aj@suse.de>
9015
9016         [BZ #1950]
9017         * lib/regex_internal.c (re_string_reconstruct): Adjust for
9018         build_wcs_upper_buffer change.
9019         (build_wcs_upper_buffer): Change return type.
9020
9021         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
9022
9023         * lib/regex_internal.h: Include <stdint.h> if available.
9024
9025         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
9026
9027         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
9028
9029         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
9030
9031         * lib/regcomp.c: Adjust for changed secondary hash function.
9032
9033         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
9034
9035         * lib/regex.h: Pretty printing.
9036         Clean up namespace a bit.
9037
9038         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
9039
9040         * lib/regexec.c (update_cur_sifted_state, check_arrival,
9041         check_arrival_add_next_nodes): Avoid using uninitialized variable.
9042
9043         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
9044                     Ulrich Drepper  <drepper@redhat.com>
9045
9046         [BZ #1302]
9047         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
9048         changed.
9049         (bitset_word_t): Renamed from bitset_word.  All uses changed.
9050
9051         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
9052
9053         [BZ #281]
9054         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
9055         * lib/regcomp.c: Remove unnecessary uses of
9056         unsigned RE_TRANSLATE_TYPE.
9057         * lib/regex_internal.h: Likewise.
9058         * lib/regex_internal.c: Likewise.
9059         * lib/regexec.c: Likewise.
9060         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
9061
9062         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
9063
9064         * lib/regexec.c (find_recover_state): Remove unnecessary
9065         initialization.
9066         (transit_state_bkref): Make DFA a const pointer.
9067         (get_subexp): Likewise.
9068         (check_arrival): Likewise.
9069         (update_cur_sifted_state): Likewise.
9070         (re_search_internal): Likewise.
9071         (prune_impossible_nodes): Likewise.
9072         (acquire_init_state_context): Likewise.
9073         (proceed_next_node): Likewise.
9074         (set_regs): Likewise.
9075         (free_fail_stack_return): Likewise.
9076         (check_arrival_expand_ecl): Mark DFA parameter as const.
9077         (check_arrival_expand_ecl_sub): Likewise.
9078         (check_subexp_limits): Likewise.
9079         (sub_epsilon_src_nodes):  Likewise.
9080         (add_epsilon_src_nodes):  Likewise.
9081         (merge_state_array): Likewise.
9082         (update_regs): Likewise.
9083         (build_trtable): Likewise.
9084         (sift_states_backward): Mark MCTX parameter as const.
9085         (build_sifted_states): Likewise.
9086         (update_cur_sifted_state): Likewise.
9087         (sift_states_mkref): Likewise.
9088         (check_arrival_expand_ecl): Mark eclosure as const.
9089         (check_dst_limits_calc_pos_1): Likewise.
9090         * lib/regex_internal.h (re_match_context_t): Make dfa a const
9091         pointer.
9092
9093         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
9094
9095         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
9096         (transit_state_sb): Likewise.
9097         (transit_state_mb): Likewise.
9098         (sift_states_iter_mb): Likewise.
9099         (check_arrival_add_next_nodes): Likewise.
9100         (check_node_accept_bytes): Change first parameter to pointer-to-const.
9101         [_LIBC] (re_search_2_stub): Use mempcpy.
9102
9103         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
9104         mbrtowc for very simple UTF-8 case.
9105
9106         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
9107         a pointer-to-const.
9108         (re_acquire_state_context): Likewise.
9109         * lib/regex_internal.h: Adjust prototypes.
9110
9111         * lib/regex.c: Prevent using C++ compilers.
9112
9113         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
9114         (re_acquire_state_context): Likewise.
9115
9116 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
9117
9118         * modules/regex (Depends-on): Add ssize_t.
9119
9120 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
9121
9122         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
9123         translation table.
9124
9125 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
9126
9127         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
9128
9129 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
9130             Bruno Haible  <bruno@clisp.org>
9131
9132         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
9133         <sys/types.h> and <inttypes.h>.
9134
9135 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9136
9137         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
9138         `__error_t_defined', so argp.h will not typedef the former.
9139
9140 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
9141
9142         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
9143         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
9144         glibc names.  Even if glibc is changed to conform to POSIX, the
9145         traditional names will be available anyway, since regex depends on
9146         the extensions module.  Also, fix a longstanding typo in the
9147         implementation of Spencer ERE test #75 from grep 2.3.  Problems
9148         reported by Emanuele Giaquinta.  Also, change sense of cached
9149         variable, so that the message makes sense.
9150
9151 2006-03-24  Simon Josefsson  <jas@extundo.com>
9152
9153         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
9154         including some doc fixes.
9155         (base64_encode_alloc): Fix +1 bug on allocation failures.
9156
9157 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9158
9159         * lib/base64.c (base64_encode): Do not read past end of array with
9160         unsanitized input on systems with CHAR_BIT > 8.
9161
9162 2006-03-24  Eric Blake  <ebb9@byu.net>
9163
9164         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
9165
9166 2006-03-22  Karl Berry  <karl@gnu.org>
9167
9168         * config/srclist.txt (*setenv.[ch]): get from coreutils.
9169         * config/srclistvars.sh (COREUTILS): new var.
9170
9171 2006-03-17  Jim Meyering  <jim@meyering.net>
9172
9173         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
9174         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
9175
9176 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
9177
9178         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
9179         no longer needs it.  Instead, check that regoff_t is as least
9180         as wide as ptrdiff_t.
9181
9182         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
9183         so that our regex.h stays compatible with the installed regex.
9184         This is helpful for installers who configure --without-included-regex.
9185         Problem reported by Emanuele Giaquinta.
9186
9187 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
9188
9189         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
9190         Typedef to long int, not to off_, as POSIX will likely change
9191         in that direction.
9192
9193 2006-03-15  Eric Blake  <ebb9@byu.net>
9194
9195         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
9196
9197 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
9198
9199         * lib/argp-help.c (validate_uparams): Fix typo
9200         * lib/argp-parse.c (argp_default_options): Consistently begin help
9201         messages with a lowercase letter.
9202
9203 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
9204
9205         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
9206         overrun buffers and shouldn't be used (much as gets shouldn't be
9207         used).
9208         * lib/time_r.c (asctime_r, ctime_r): Likewise.
9209
9210 2006-03-08  Simon Josefsson  <jas@extundo.com>
9211
9212         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
9213         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
9214
9215 2006-03-08  Simon Josefsson  <jas@extundo.com>
9216
9217         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
9218         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
9219
9220 2006-03-08  Simon Josefsson  <jas@extundo.com>
9221
9222         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
9223         signal that configure disabled the device.
9224
9225 2006-03-08  Simon Josefsson  <jas@extundo.com>
9226
9227         * build-aux/maint.mk: Fix refresh-po, to handle no translated
9228         languages.
9229
9230 2006-03-07  Simon Josefsson  <jas@extundo.com>
9231
9232         * modules/getopt (Depends-on): Add unistd.
9233
9234         * modules/unistd: New file.
9235
9236 2006-03-07  Simon Josefsson  <jas@extundo.com>
9237
9238         * modules/gc-random: New file.
9239
9240 2006-03-07  Simon Josefsson  <jas@extundo.com>
9241
9242         * m4/unistd_h.m4: New file.
9243
9244 2006-03-07  Simon Josefsson  <jas@extundo.com>
9245
9246         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
9247         test to be side-effect free by storing the result in the cache
9248         variable gl_cv_lib_readline, and moving the assignment of
9249         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
9250         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
9251
9252 2006-03-07  Simon Josefsson  <jas@extundo.com>
9253
9254         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
9255         error on missing devices (the functions will return an error).
9256
9257         * m4/gc.m4: Move random stuff to gc-random.m4
9258
9259 2006-03-07  Simon Josefsson  <jas@extundo.com>
9260
9261         * lib/unistd_.h: New file.
9262
9263 2006-03-07  Simon Josefsson  <jas@extundo.com>
9264
9265         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
9266
9267 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
9268
9269         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
9270         Problem reported by Juan Manuel Guerrero.
9271
9272 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
9273
9274         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
9275         the unistd module.
9276         * lib/getlogin_r.c: Likewise.
9277         * lib/getlogin_r.h: Likewise.
9278         * lib/glob.c: Likewise.
9279         * lib/pagealign_alloc.c: Likewise.
9280         * lib/unistd_.h: Remove; no longer needed.
9281
9282 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
9283
9284         * MODULES.html.sh (Support for systems lacking POSIX:2001):
9285         Add unistd.
9286         * modules/c-stack (Depends-on): Add unistd.
9287         * modules/getlogin_r: Likewise.
9288         * modules/glob: Likewise.
9289         * modules/pagealign_alloc: Likewise.
9290         * modules/unistd (Files): Remove lib/unistd_.h.
9291         (EXTRA_DIST): Remove.
9292         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
9293         need unistd_.h.
9294         (MOSTLYCLEANFILES): Remove unistd.h-t.
9295
9296 2006-03-03  Simon Josefsson  <jas@extundo.com>
9297
9298         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
9299
9300 2006-03-03  Simon Josefsson  <jas@extundo.com>
9301
9302         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
9303         libidn and bison.
9304
9305 2006-03-03  Simon Josefsson  <jas@extundo.com>
9306
9307         * build-aux/maint.mk: Add indent target.
9308
9309 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
9310
9311         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
9312         our replacement poll.h in any case, to avoid a differing
9313         declaration from a system header.  Seen on AIX.
9314
9315 2006-03-01  Simon Josefsson  <jas@extundo.com>
9316
9317         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
9318         <kasal@ucw.cz>.
9319
9320 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
9321
9322         * modules/gettime (Depends-on): Add extensions module.
9323         * modules/nanosleep (Depends-on): Likewise.
9324         * modules/settime (Depends-on): Likewise.
9325
9326 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
9327
9328         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
9329         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
9330         pedantically.
9331         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
9332         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
9333
9334         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
9335         not "==".  Reported by Ralf Wildenhues.
9336
9337 2006-03-01  Karl Berry  <karl@gnu.org>
9338
9339         * doc/Copyright/request-*: new files, synced from gnuorg.
9340
9341 2006-03-01  Karl Berry  <karl@gnu.org>
9342
9343         * config/srclist.txt (Copyright/*): new entries.
9344
9345 2006-02-28  Simon Josefsson  <jas@extundo.com>
9346
9347         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
9348
9349 2006-02-27  Simon Josefsson  <jas@extundo.com>
9350
9351         * lib/base64.h: Indent #define's.  From Jim Meyering
9352         <jim@meyering.net>.
9353
9354 2006-02-27  Jim Meyering  <jim@meyering.net>
9355
9356         Revert the change of 2006-02-24, so these files can continue
9357         to be sync'd from gettext.
9358         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
9359         of `config.h'.
9360
9361 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
9362
9363         * modules/intprops: New file.
9364         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
9365         Add intprops.
9366         * modules/getloadavg (Files): Remove lib/intprops.h.
9367         (Depends-on): Add intprops.
9368         * modules/human: Likewise.
9369         * modules/inttostr: Likewise.
9370         * modules/openat: Likewise.
9371         * modules/sig2str: Likewise.
9372         * modules/userspec: Likewise.
9373         * modules/utimecmp: Likewise.
9374         * modules/xnanosleep: Likewise.
9375         * modules/xstrtol: Likewise.
9376
9377 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
9378
9379         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
9380         * modules/lock-tests (TESTS): Use $(EXEEXT).
9381         * modules/tls-tests: Likewise.
9382         * modules/argp-tests: Likewise.
9383         (check_PROGRAMS): New var, replacing...
9384         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
9385
9386 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9387
9388         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
9389         `config.h'.
9390
9391 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
9392
9393         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
9394
9395 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9396
9397         Sync from coreutils.
9398         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
9399         gl_CHDIR_SAFER.
9400
9401 2006-02-22  Jim Meyering  <jim@meyering.net>
9402
9403         Sync from coreutils.
9404         * m4/chdir-safer.m4: New file.
9405
9406 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
9407
9408         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
9409         AT_FDCWD exceeds INT_MAX.
9410         * lib/openat.h (AT_FDCWD): Likewise.
9411
9412 2006-02-17  Eric Blake  <address@hidden>
9413
9414         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
9415
9416 2006-02-16  Simon Josefsson  <jas@extundo.com>
9417
9418         * modules/getaddrinfo (Depends-on): Add sys_socket.
9419
9420 2006-02-15  Simon Josefsson  <jas@extundo.com>
9421
9422         * build-aux/maint.mk: Add dsyntax-check rule.
9423
9424 2006-02-15  Eric Blake  <ebb9@byu.net>
9425
9426         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
9427         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
9428         'present but cannot compile' warnings on cygwin.
9429         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
9430         use ws2tcpip.h if sys/socket.h works.
9431         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
9432         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
9433
9434 2006-02-14  Simon Josefsson  <jas@extundo.com>
9435
9436         * modules/maintainer-makefile (Files): Rename.
9437
9438         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
9439         and (the local) Makefile.cfg to maint-cfg.mk.
9440
9441         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
9442         to the latter.
9443
9444         * modules/maintainer-makefile: New module.
9445
9446         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
9447         severaly stripped to make it possible to build it up from scratch
9448         with reliable tests.
9449
9450         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
9451         fixes to permit overriding the default actions when configure and
9452         makefile are not available.
9453
9454 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
9455
9456         Sync from coreutils.
9457         * modules/lstat (Depends-on): Don't depend on xalloc.
9458         (License): Change from GPL to LGPL, since this is now simply a
9459         replacement for a libc function.
9460
9461 2006-02-14  Jim Meyering  <jim@meyering.net>
9462
9463         Sync from coreutils.
9464
9465         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
9466         failure on deficient systems, and simplify gnulib lgpl dependencies.
9467         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
9468         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
9469
9470         * lib/xalloc-die.c: Remove unused definition of N_.
9471
9472 2006-02-14  Jim Meyering  <jim@meyering.net>
9473
9474         Sync from coreutils.
9475         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
9476         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
9477         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
9478         double-quote uses of that variable, to accommodate the rare case in
9479         which getmntent is available in none of the libraries checked.  This
9480         happens at least on FreeBSD 5.0.
9481
9482 2006-02-13  Simon Josefsson  <jas@extundo.com>
9483
9484         * gnulib-tool (Usage): Fix --import, from
9485         karl@freefriends.org (Karl Berry).
9486
9487 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
9488
9489         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
9490
9491 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
9492
9493         * lib/argp-namefrob.h: Restore changes accidentally lost during the
9494         "autoupdate" on 2005-12-12.
9495
9496 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
9497
9498         * modules/closeout (Depends-on): Remove atexit.
9499
9500 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
9501
9502         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
9503         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
9504
9505 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
9506
9507         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
9508         __EXTENSIONS__ if this causes compilation to fail.  Problem
9509         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
9510         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
9511
9512 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
9513
9514         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
9515         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
9516         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
9517         All uses changed.
9518
9519 2006-01-26  Simon Josefsson  <jas@extundo.com>
9520
9521         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
9522         prototype is visible on mingw32.
9523
9524         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
9525         for mingw32.
9526
9527         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
9528         mingw32).
9529
9530 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
9531
9532         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
9533         attempt to open for write; this always fails, at least on POSIX
9534         hosts.  This reinstates the 2006-01-09 change, which was
9535         inadvertently removed.
9536
9537 2006-01-26  Bruno Haible  <bruno@clisp.org>
9538
9539         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
9540         Reported by Paul Eggert.
9541
9542 2006-01-26  Bruno Haible  <bruno@clisp.org>
9543             Paul Eggert  <eggert@cs.ucla.edu>
9544
9545         * lib/stdbool_.h (_Bool)
9546         [(! (defined __cplusplus || defined __BEOS__)
9547           && !defined __GNUC__
9548           && !(defined __HP_cc || defined __xlc__
9549                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
9550                || defined __sgi))]:
9551         #define to signed char in these cases too; this simplifies
9552         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
9553         etc., separately) and makes it more conservative.
9554
9555 2006-01-25  Simon Josefsson  <jas@extundo.com>
9556
9557         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
9558         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
9559         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
9560
9561 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
9562
9563         * lib/argp-namefrob.h: Bugfix. Remove stray #
9564
9565 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
9566
9567         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
9568         so that we test the test.
9569         Check for yet another HP-UX cc bug involving *bool |= bool.
9570
9571 2006-01-25  Karl Berry  <karl@gnu.org>
9572
9573         * config/srclist.txt (vasnprintf.c): sync lost.
9574
9575 2006-01-25  Jim Meyering  <jim@meyering.net>
9576
9577         Sync from the stable (b5) branch of coreutils:
9578
9579         * lib/fts.c (fts_children): Don't let close() clobber errno from
9580         failed fchdir().
9581
9582         * lib/fts.c (fts_stat): When following a symlink-to-directory,
9583         don't necessarily interpret stat-fails+lstat-succeeds as indicating
9584         a dangling symlink.  That can also happen at least for ELOOP.
9585         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
9586         FYI, this bug predates the inclusion of fts.c in coreutils.
9587
9588         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
9589         in their own block, so pre-c99 compilers don't object.
9590
9591         Avoid the double-free (first in fts_read, second in fts_close) that
9592         would occur when an `active' directory is made inaccessible (e.g.,
9593         via chmod a-x) during a traversal.
9594         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
9595         before returning.  Reproduce this failure by
9596         mkdir -p a/b; cd a; chmod a-x . b
9597         Reported by Stavros Passas.
9598
9599 2006-01-25  Jim Meyering  <jim@meyering.net>
9600
9601         * lib/fileblocks.c: Remove more useless parentheses.
9602         * lib/readutmp.h: Likewise.
9603
9604 2006-01-25  Bruno Haible  <bruno@clisp.org>
9605
9606         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
9607         warnings.
9608         Reported by Paul Eggert.
9609
9610 2006-01-25  Bruno Haible  <bruno@clisp.org>
9611
9612         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
9613         rid of a trap command. For Solaris sh.
9614         Reported by Mark D. Baushke <mdb@gnu.org>.
9615
9616 2006-01-24  Simon Josefsson  <jas@extundo.com>
9617
9618         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
9619         Bruno.
9620
9621 2006-01-24  Karl Berry  <karl@gnu.org>
9622
9623         * config/srclist.txt (argp-namefrob.h): sync lost.
9624
9625 2006-01-24  Jim Meyering  <jim@meyering.net>
9626
9627         * modules/openat (Files): Add lib/intprops.h.
9628         From Mark D. Baushke.
9629
9630 2006-01-24  Jim Meyering  <jim@meyering.net>
9631
9632         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
9633         Reported by Mark D. Baushke.
9634
9635 2006-01-24  Jim Meyering  <jim@meyering.net>
9636
9637         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
9638
9639 2006-01-24  Bruno Haible  <bruno@clisp.org>
9640
9641         * modules/strnlen (Maintainer): Change from glibc to all.
9642
9643 2006-01-24  Bruno Haible  <bruno@clisp.org>
9644
9645         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
9646         Patch by Paul Eggert.
9647
9648 2006-01-24  Bruno Haible  <bruno@clisp.org>
9649
9650         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
9651         already has it.
9652         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
9653         2005-11-26.
9654
9655         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
9656         'signed char' to avoid problems with the built-in _Bool type.
9657         Reported by Paul Eggert on 2005-11-26.
9658
9659 2006-01-24  Bruno Haible  <bruno@clisp.org>
9660
9661         * gnulib-tool (func_import): Avoid constructing complicated sed
9662         expressions inside backquote.
9663         Report and solution by Mark D. Baushke <mdb@gnu.org>.
9664
9665 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
9666
9667         These changes imported from libc.
9668         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
9669         test and two separate function calls.
9670         * lib/strndup.c (__strndup): Add libc_hidden_def.
9671
9672 2006-01-23  Simon Josefsson  <jas@extundo.com>
9673
9674         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
9675         Remove the test_*_SOURCES variable: automake infers it by default.
9676         * modules/tls-tests: Likewise.
9677
9678 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
9679
9680         Work around porting bugs reported by Dieter in
9681         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
9682         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
9683         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
9684         Include "getopt.h" first, to check interface.
9685         (getenv): Declare only if defined HAVE_DECL_GETENV &&
9686         !HAVE_DECL_GETENV.
9687         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
9688         (__strndup): Revert to K&R-style function dfns, the glibc style.
9689         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
9690         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
9691         Include strnlen.h first, to get prototype properly.
9692         (strnlen): Renamed from __strnlen.
9693         Remove weak alias.
9694
9695 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
9696
9697         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
9698
9699 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
9700
9701         * config/srclist.txt: Adjust to reflect glibc reorganization.
9702         This affects only comments.
9703
9704 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
9705
9706          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
9707          Reported by Bruce Korb <bkorb@gnu.org>.
9708
9709 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
9710
9711         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
9712         to pacify gcc -Wswitch-default.
9713
9714 2006-01-22  Bruno Haible  <bruno@clisp.org>
9715
9716         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
9717         temporary buffer for sprintf, take into account the precision also
9718         for 'd', 'i', 'u', 'o', 'x', 'X'.
9719
9720 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
9721
9722         * modules/argp-tests: New module
9723         * tests/test-argp.c: New file
9724         * tests/test-argp-2.sh: New file
9725
9726 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
9727
9728         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
9729         (__argp_base_name): Removed
9730         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
9731         typo.
9732         (__argp_base_name): Provide macro definition or extern declaration
9733         depending on the configuration
9734
9735 2006-01-20  Simon Josefsson  <jas@extundo.com>
9736
9737         * modules/inet_ntop (Depends-on): Depend on sys_socket.
9738
9739 2006-01-20  Simon Josefsson  <jas@extundo.com>
9740
9741         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
9742
9743 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
9744
9745         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
9746         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
9747         Suggested by Bruno Haible.
9748
9749 2006-01-20  Karl Berry  <karl@gnu.org>
9750
9751         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
9752         until changes propagate, I guess.
9753
9754 2006-01-19  Simon Josefsson  <jas@extundo.com>
9755
9756         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
9757
9758 2006-01-19  Simon Josefsson  <jas@extundo.com>
9759
9760         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
9761
9762 2006-01-19  Simon Josefsson  <jas@extundo.com>
9763
9764         * gnulib-tool: Set check_PROGRAMS.
9765
9766         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
9767         modules/des-tests, modules/gc-arcfour-tests,
9768         modules/gc-arctwo-tests, modules/gc-des-tests,
9769         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
9770         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
9771         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
9772         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
9773         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
9774         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
9775         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
9776         test_*_SOURCES.
9777
9778 2006-01-18  Simon Josefsson  <jas@extundo.com>
9779
9780         * modules/socklen (Depends-on): Depend on sys_socket.
9781
9782 2006-01-18  Simon Josefsson  <jas@extundo.com>
9783
9784         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
9785         modules/des-tests, modules/gc-arcfour-tests,
9786         modules/gc-arctwo-tests, modules/gc-des-tests,
9787         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
9788         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
9789         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
9790         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
9791         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
9792         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
9793         $(EXEEXT) to automake TESTS variable, for mingw32.
9794
9795 2006-01-17  Simon Josefsson  <jas@extundo.com>
9796
9797         * modules/socklen (Include): Need sys/socket.h.
9798
9799 2006-01-17  Bruno Haible  <bruno@clisp.org>
9800
9801         * modules/ssize_t (Include): Add <sys/types.h>.
9802
9803 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
9804
9805         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
9806         it's not portable and it doesn't work with cross-compiles.
9807         Problem reported by Bruno Haible.  Fix missing-$ typo in
9808         'test "gl_cv_ignore_unused_libraries" ...' that prevented
9809         -zignore from being used with Sun's C compiler.
9810
9811 2006-01-12  Simon Josefsson  <jas@extundo.com>
9812
9813         * lib/base64.c: Fix warning, reported by Bruno Haible
9814         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
9815
9816 2006-01-12  Bruno Haible  <bruno@clisp.org>
9817
9818         * modules/ldd: New file.
9819         * build-aux/ldd.sh.in: New file.
9820         * MODULES.html.sh (Support for building libraries and executables): Add
9821         ldd.
9822
9823 2006-01-12  Bruno Haible  <bruno@clisp.org>
9824
9825         * m4/ldd.m4: New file.
9826
9827 2006-01-12  Bruno Haible  <bruno@clisp.org>
9828
9829         * gnulib-tool (func_import, func_create_testdir): Don't go into an
9830         endless loop while replacing $auxdir with build-aux.
9831
9832 2006-01-11  Simon Josefsson  <jas@extundo.com>
9833
9834         * lib/stdint_.h (SIZE_MAX): Add missing (.
9835
9836 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
9837
9838         Sync from coreutils.
9839         * lib/md5.c: Fix commentary typos.
9840         (alignof, UNALIGNED_P): No need for a GCC-specific version.
9841         * lib/md5.h (__attribute__): Remove; unused.
9842         * lib/sha1.c: Fix commentary to match md5 better.
9843         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
9844         so that we don't need to worry about alignment.  All uses changed.
9845         This merges the 2005-10-28 md5 change into sha1.
9846
9847 2006-01-11  Jim Meyering  <jim@meyering.net>
9848
9849         Sync from coreutils.
9850         * lib/md5.c (OP): Fix spacing.
9851
9852 2006-01-11  Bruno Haible  <bruno@clisp.org>
9853
9854         Ensure automatic ordering between gl_LOCK and gl_ARGP.
9855         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
9856         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
9857
9858 2006-01-11  Bruno Haible  <bruno@clisp.org>
9859
9860         Ensure automatic ordering between gl_LOCK and gl_ARGP.
9861         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
9862         the "early" section as well.
9863
9864 2006-01-11  Bruno Haible  <bruno@clisp.org>
9865
9866         Avoid "ar: no archive members specified" error on MacOS X.
9867         * gnulib-tool (func_modules_add_dummy): New function.
9868         (func_import, func_create_testdir): Invoke it.
9869
9870 2006-01-11  Bruno Haible  <bruno@clisp.org>
9871
9872         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
9873         with $auxdir in AC_CONFIG_FILES statements.
9874
9875 2006-01-11  Bruno Haible  <bruno@clisp.org>
9876
9877         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
9878         Initialize also noinst_HEADERS to empty.
9879
9880 2006-01-11  Bruno Haible  <bruno@clisp.org>
9881
9882         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
9883         variables.
9884         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
9885         autoreconf.
9886
9887 2006-01-11  Bruno Haible  <bruno@clisp.org>
9888
9889         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
9890         overridable by the user.
9891         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
9892
9893 2006-01-10  Simon Josefsson  <jas@extundo.com>
9894
9895         * modules/sys_socket: New file.
9896
9897 2006-01-10  Simon Josefsson  <jas@extundo.com>
9898
9899         * m4/sys_socket_h.m4: New file.
9900
9901 2006-01-10  Simon Josefsson  <jas@extundo.com>
9902
9903         * lib/socket_.h: New file.
9904
9905 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
9906
9907         * modules/readutmp (Maintainer): Add myself.
9908
9909 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
9910
9911         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
9912         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
9913         People who are still concerned with buggy memcmp implementations
9914         can invoke gl_FUNC_MEMCMP themselves.
9915
9916 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
9917
9918         * lib/regex_internal.h (BITSET_WORD_BITS):
9919         Work around a bug in 64-bit PGC (before version 6.1-2), where the
9920         preprocessor mishandles large unsigned values as if they were signed.
9921         Problem reported by Claudio Fontana in
9922         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
9923
9924 2006-01-10  Jim Meyering  <jim@meyering.net>
9925
9926         Avoid the double-free (first in fts_read, second in fts_close) that
9927         would occur when an `active' directory is made inaccessible (e.g.,
9928         via chmod a-x) during a traversal.
9929         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
9930         before returning.  Reproduce this failure by
9931         mkdir -p a/b; cd a; chmod a-x . b
9932         Reported by Stavros Passas.
9933
9934         Sync from coreutils.
9935         * lib/sha1.c: Tweak grammar in a comment.
9936
9937 2006-01-10  Jim Meyering  <jim@meyering.net>
9938
9939         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
9940         Patch by Joerg Sonnenberger.
9941
9942 2006-01-10  Bruno Haible  <bruno@clisp.org>
9943
9944         * modules/readutmp: Depend on module free.
9945         * modules/strtok_r: Depend on module restrict.
9946
9947 2006-01-10  Bruno Haible  <bruno@clisp.org>
9948
9949         * modules/gettext (configure.ac): Add an invocation of
9950         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
9951
9952 2006-01-10  Bruno Haible  <bruno@clisp.org>
9953
9954         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
9955         Reported by Werner Lemberg <wl@gnu.org>.
9956
9957 2006-01-10  Bruno Haible  <bruno@clisp.org>
9958
9959         * lib/localcharset.c: Update from GNU gettext.
9960
9961 2006-01-10  Bruno Haible  <bruno@clisp.org>
9962
9963         * lib/argp.h (__const): Remove macro. Use const instead.
9964         * lib/argp-fmtstream.h (__const): Likewise.
9965         * lib/glob_.h (__const): Remove macro.
9966         * lib/glob-libc.h: Use const instead of __const.
9967
9968 2006-01-10  Bruno Haible  <bruno@clisp.org>
9969
9970         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
9971         variable.
9972         Needed to avoid an automake error regarding the 'gettext' module.
9973
9974 2006-01-09  Simon Josefsson  <jas@extundo.com>
9975
9976         * modules/inet_ntop (Depends-on): Add restrict.
9977
9978 2006-01-09  Simon Josefsson  <jas@extundo.com>
9979
9980         * modules/gc-rijndael-tests (License): Put under LGPL.
9981
9982         * modules/gc-des-tests (License): Likewise.
9983
9984         * modules/gc-arcfour-tests (License): Likewise.
9985
9986         * modules/gc-arctwo-tests (License): Likewise.
9987
9988         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
9989
9990         * modules/gc-hmac-sha1-tests (Files): Likewise.
9991
9992         * modules/gc-hmac-md5-tests (License): Likewise.
9993
9994         * modules/gc-sha1-tests (License): Likewise.
9995
9996         * modules/gc-md5-tests (License): Likewise.
9997
9998         * modules/gc-md4-tests (License): Likewise.
9999
10000         * modules/gc-md2-tests (License): Likewise.
10001
10002         * modules/gc-tests (License): Likewise.
10003
10004         * modules/des-tests (License): Likewise.
10005
10006         * modules/md4-tests (License): Likewise.
10007
10008         * modules/md2-tests (License): Likewise.
10009
10010 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
10011
10012         Sync from coreutils:
10013
10014         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
10015         * modules/lib-ignore: New file.
10016         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
10017         chdir-safer.m4, lchmod.m4.
10018         * modules/openat: Add mkdirat.c, openat-priv.h.
10019
10020 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
10021
10022         Sync from coreutils.
10023         * m4/lib-ignore.m4: New file.
10024         * m4/lchmod.m4: New file.
10025
10026 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
10027
10028         Sync from coreutils.
10029         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
10030         for write access: POSIX says that must fail.
10031         * lib/fts.c (diropen): Likewise.
10032         * lib/save-cwd.c (save_cwd): Likewise.
10033         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
10034         well, for minor improvements on hosts that lack O_DIRECTORY.
10035         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
10036         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
10037         Fall back on chown if open failed with EACCES.
10038
10039         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
10040         Report an error at compile-time if only a 1-second nominal clock
10041         resolution is found.
10042
10043         * lib/lchmod.h: New file.
10044         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
10045         (make_dir_parents): Use lchown rather than chown, and
10046         lchmod rather than chmod.
10047
10048         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
10049         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
10050         "proc" reported by n0dalus.
10051
10052         * lib/mountlist.c: Include <limits.h>.
10053         (dev_from_mount_options)
10054         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
10055         New function.  It no longer assumes "dev=" has the System V meaning
10056         on Linux (since it doesn't).  It also parses "dev=" more carefully.
10057         (read_file_system_list)
10058         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
10059         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
10060         dev= in that case.
10061
10062         * lib/posixtm.h (PDS_PRE_2000): New macro.
10063         * lib/posixtm.c (year): Arg is now syntax_bits rather than
10064         allow_century.  All usages changed.  Reject dates outside the range
10065         1969-1999 if PDS_PRE_2000 is used.
10066
10067 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
10068
10069         Sync from coreutils.
10070         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
10071         (Time of day items): Mention the possibility of leap seconds.
10072         Problem reported by Dr. David Alan Gilbert.
10073
10074 2006-01-09  Jim Meyering  <jim@meyering.net>
10075
10076         Sync from coreutils.
10077
10078         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
10079
10080         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
10081
10082         * lib/modechange.c (mode_compile): Reject an invalid mode string
10083         that starts with an octal digit.  From Andreas Gruenbacher.
10084
10085         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
10086         and dup to open_safer and dup_safer, respectively.
10087         (openat_permissive): Fix typo in comment.
10088
10089         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
10090         "gettext.h"; either no longer needed or are guaranteed by openat.h.
10091         (_): Remove; no longer needed.
10092         (openat): Renamed from rpl_openat; no need for rpl_openat
10093         since openat.h renames openat for us.
10094         Replace most of the body with a call to openat_permissive,
10095         to avoid duplicate code.
10096         Port to (probably hypothetical) environments were mode_t is
10097         wider than int.
10098         (openat_permissive): Require mode arg, so that we can check
10099         types better.  Put it just after flags.  Change cwd failure
10100         indicator from pointer-to-bool to pointer-to-errno-value.
10101         All callers changed.
10102         Invoke openat_save_fail and/or openat_restore_fail if
10103         cwd_errno is null, so that openat can call us.
10104         (openat_permissive, fdopendir, fstatat, unlinkat):
10105         Simplify errno handling to avoid some duplicate code,
10106         as it's OK to set errno on success.
10107         * lib/openat.h: Revamp code so that function macros depend on
10108         __OPENAT_PREFIX only, not also on AT_FDCWD.
10109         (openat_ro): Remove.  Caller changed to use openat_permissive.
10110         (openat_permissive): Now a macro, if not a function.
10111         (openat_restore_fail, openat_save_fail): Now always functions,
10112         since mkdirat needs them even if __OPENAT_PREFIX is defined.
10113
10114         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
10115         and openat.c.
10116         * lib/mkdirat.c: Include openat-priv.h.
10117         Remove definitions of macros defined therein.
10118         * lib/openat.c: Likewise.
10119
10120         * lib/mkdirat.c (mkdirat): New file and function.
10121         * lib/openat.h (mkdirat): Declare.
10122
10123         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
10124
10125         * lib/openat.h (openat_permissive): Declare.
10126         (openat_ro): Define.
10127
10128         * lib/openat.c (EXPECTED_ERRNO): New macro.
10129         (openat_permissive): New function -- used in remove.c rewrite.
10130         (all functions): Set errno just before returning, only if there
10131         was an actual failure.
10132         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
10133
10134         Emulate openat-family functions using Linux's procfs, if possible.
10135         Idea and some code based on Ulrich Drepper's glibc changes.
10136
10137         * lib/openat.c: (BUILD_PROC_NAME): New macro.
10138         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
10139         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
10140         before falling back on save_cwd and restore_cwd.
10141         (fdopendir, fstatat, unlinkat): Likewise.
10142
10143         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
10144         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
10145
10146         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
10147         as second argument to va_arg.  Otherwise, some versions of gcc
10148         warn that `if this code is reached, the program will abort'.
10149
10150 2006-01-09  Jim Meyering  <jim@meyering.net>
10151
10152         Sync from coreutils.
10153         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
10154         Require openat-priv.h.
10155
10156 2006-01-09  Bruno Haible  <bruno@clisp.org>
10157
10158         * modules/strnlen (Include): Use strnlen.h.
10159
10160 2006-01-09  Bruno Haible  <bruno@clisp.org>
10161
10162         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
10163
10164 2006-01-09  Bruno Haible  <bruno@clisp.org>
10165
10166         * lib/sysexit_.h (EX_OK): New macro.
10167         Suggested by Martin Lambers <marlam@marlam.de>.
10168
10169 2006-01-09  Bruno Haible  <bruno@clisp.org>
10170
10171         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
10172         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
10173
10174 2006-01-09  Bruno Haible  <bruno@clisp.org>
10175
10176         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
10177         numbers.
10178
10179 2006-01-09  Bruno Haible  <bruno@clisp.org>
10180
10181         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
10182         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
10183         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
10184         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
10185
10186 2006-01-09  Bruno Haible  <bruno@clisp.org>
10187
10188         * build-aux/javacomp.sh.in: New file, moved from lib/.
10189         * modules/javacomp-script (Files): Update.
10190         (configure.ac): Add AC_CONFIG_FILES invocation.
10191         (EXTRA_DIST): Remove variable.
10192
10193         * build-aux/javaexec.sh.in: New file, moved from lib/.
10194         * modules/javaexec (Files): Update.
10195         (configure.ac): Add AC_CONFIG_FILES invocation.
10196         (EXTRA_DIST): Remove javaexec.sh.in.
10197
10198         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
10199         * modules/csharpcomp-script (Files): Update.
10200         (configure.ac): Add AC_CONFIG_FILES invocation.
10201         (EXTRA_DIST): Remove variable.
10202
10203         * build-aux/csharpexec.sh.in: New file, moved from lib/.
10204         * modules/csharpexec (Files): Update.
10205         (configure.ac): Add AC_CONFIG_FILES invocation.
10206         (EXTRA_DIST): Remove csharpexec.sh.in.
10207
10208 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
10209
10210         Sync from coreutils.
10211
10212         Add POSIX ACL support
10213         * lib/acl.h (copy_acl, set_acl): Add declarations.
10214         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
10215         systems other than Linux.
10216         (chmod_or_fchmod): New function: use fchmod when possible,
10217         and chmod otherwise.
10218         (file_has_acl): Add a POSIX ACL implementation, with a
10219         Linux-specific subcase.
10220         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
10221         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
10222         acls are unsupported.
10223         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
10224         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
10225         are unsupported.
10226
10227 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
10228
10229         Sync from coreutils.
10230         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
10231
10232 2006-01-07  Bruno Haible  <bruno@clisp.org>
10233
10234         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
10235         gl_EARLY.
10236
10237 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
10238
10239         * lib/strftime.c (tzname): Don't declare if it is already #defined.
10240         Problem reported for Mingw by Mark Junker.
10241
10242 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
10243
10244         * README: Gnulib normally doesn't generate a tarball.
10245
10246 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
10247
10248         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
10249         long int, not int, for nanosecond counts, so that people who are
10250         used to POSIX struct timespec won't be surprised.  Reported by Jim
10251         Meyering.
10252
10253 2005-12-28  Bruno Haible  <bruno@clisp.org>
10254
10255         * build-aux/config.rpath: Update from GNU gettext.
10256
10257 2005-12-16  Jim Meyering  <jim@meyering.net>
10258
10259         * modules/fprintftime: New module.
10260         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
10261
10262 2005-12-16  Jim Meyering  <jim@meyering.net>
10263
10264         * m4/fprintftime.m4: New file.
10265
10266 2005-12-16  Jim Meyering  <jim@meyering.net>
10267
10268         * lib/fprintftime.c, lib/fprintftime.h: New files.
10269
10270 2005-12-15  Simon Josefsson  <jas@extundo.com>
10271
10272         * modules/socklen (configure.ac): Fix M4 macro name, to align with
10273         new m4/socklen.m4.
10274
10275 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
10276
10277         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
10278         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
10279
10280 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
10281
10282         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
10283         * lib/argp-help.c (fill_in_uparams): Check if the constructed
10284         struct uparams is valid. Fall back to the default values if it is
10285         not.
10286
10287 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
10288
10289         * modules/argp (Files): Add argp-pin.c
10290         (Depends-on): dirname
10291         (lib_SOURCES): Add argp-pin.c
10292
10293 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
10294
10295         * m4/argp.m4:  Check if program_invocation_name and
10296         program_invocation_short_name are declared and define appropriate
10297         macros if they are not.
10298
10299 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
10300
10301         * lib/argp-help.c (__argp_base_name): New function
10302         (__argp_short_program_name): Rewrite using __argp_base_name
10303         * lib/argp-namefrob.h: Define program_invocation_name and
10304         program_invocation_short_name if requested
10305         (__argp_base_name): Add prototype
10306         * lib/argp-parse.c (argp_def): Use gettext wrappers
10307         (argp_default_parser): Use __argp_base_name
10308         * lib/argp-pin.c: New file. Defines program_invocation_name and
10309         program_invocation_short_name on systems that lack them.
10310
10311 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
10312
10313         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
10314         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
10315         porting problem reported by Georg Schwarz in
10316         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
10317
10318 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
10319
10320         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
10321         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
10322         porting problem reported by Georg Schwarz in
10323         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
10324
10325 2005-12-05  Bruno Haible  <bruno@clisp.org>
10326
10327         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
10328         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
10329         Reported by Mark Junker <mjscod@gmx.de>.
10330
10331 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
10332
10333         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
10334         Use implementation from Albert Chin, with some
10335         comments/corrections by Stepan Kasal and myself.
10336
10337 2005-12-02  Bruno Haible  <bruno@clisp.org>
10338
10339         * gnulib-tool (func_import): Accept GPLed build tool modules when
10340         --lgpl is given.
10341         * modules/csharpcomp-script: New file.
10342         * modules/csharpcomp: Depend on it.
10343         * modules/javacomp-script: New file.
10344         * modules/javacomp: Depend on it.
10345         Suggested by Simon Josefsson.
10346
10347 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
10348
10349         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
10350         statement, to work around an HP-UX 10.20 compiler bug reported by
10351         Peter O'Gorman.
10352
10353 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
10354
10355         * modules/savedir (Depends-on): Add openat.
10356
10357 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
10358
10359         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
10360         (uintmax_t) [defined uintmax_t]: Do not declare.
10361         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
10362         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
10363         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
10364         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
10365         sake of portability to weird hosts that C allows (though we don't
10366         know of any practical examples).
10367
10368         * lib/savedir.h (fdsavedir): New decl.
10369         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
10370         contains most of the former guts of savedir.
10371         (savedir): Use savedirstream.
10372         Include "openat.h".
10373
10374 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
10375
10376         * modules/obstack (Files): Add m4/ulonglong.m4.
10377         Problem reported by Davide Angelocola.
10378
10379 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
10380
10381         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
10382         coreutils no longer futzes with rounding modes.
10383
10384 2005-11-14  Jim Meyering  <jim@meyering.net>
10385
10386         * lib/mkstemp-safer.c: Include <config.h>, required for possible
10387         replacement of mkstemp.
10388
10389 2005-11-10  Simon Josefsson  <jas@extundo.com>
10390
10391         * lib/readline.c: Remove EOL.
10392
10393 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
10394
10395         * modules/gethrxtime (Depends-on): Add gettime.
10396
10397 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
10398
10399         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
10400         or gettimeofday; no longer needed.
10401
10402 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
10403
10404         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
10405         time business.
10406         (gethrxtime) [! (HAVE_NANOUPTIME
10407         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
10408         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
10409         our own approximation.
10410
10411 2005-11-08  Eric Blake  <ebb9@byu.net>
10412
10413         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
10414
10415 2005-11-08  Eric Blake  <ebb9@byu.net>
10416
10417         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
10418
10419 2005-11-04  Bruno Haible  <bruno@clisp.org>
10420
10421         * gnulib-tool: Implement --update mode.
10422
10423 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
10424
10425         Fix porting problem reported by Theodoros V. Kalamatianos.
10426         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
10427         Don't assume that futimes failing means we must fail.
10428
10429 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
10430
10431         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
10432         variables to suggest the intended function of the PATH_MAX check.
10433
10434 2005-10-30  Kean Johnston  <jkj@sco.com>
10435
10436         Trivial changes to support SCO systems.
10437         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
10438         as PATH_MAX.
10439         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
10440         where __ptr is null when no I/O is pending.
10441
10442 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
10443
10444         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
10445         leave errno alone.  Problem reported by Dmitry V. Levin.
10446
10447 2005-10-28  Simon Josefsson  <jas@extundo.com>
10448
10449         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
10450         Test more.
10451
10452         * tests/test-gc-md2.c, tests/test-md2.c: New files.
10453
10454         * modules/md2, modules/md2-tests: New files.
10455
10456 2005-10-28  Simon Josefsson  <jas@extundo.com>
10457
10458         * m4/inet_ntop.m4: More tests.
10459
10460         * m4/gc-md2.m4, md2.m4: New file.
10461
10462 2005-10-28  Simon Josefsson  <jas@extundo.com>
10463
10464         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
10465         "restrict" keywords, as per POSIX.  Protect the function
10466         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
10467         Don't use K&R prototypes.  Check the sprintf return values.
10468         Re-define EAFNOSUPPORT if not present.  Indent.
10469
10470         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
10471         suggested by Bruno Haible <bruno@clisp.org>.
10472
10473         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
10474
10475         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
10476
10477         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
10478         libgcrypt).
10479
10480         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
10481
10482         * lib/md2.h, lib/md2.c: New files.
10483
10484 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
10485
10486         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
10487         errno alone.  Problem reported by Frederic Jolliton.
10488
10489 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
10490
10491         * modules/verify (License): Change from GPL to LGPL.  This is a
10492         tiny module and there are apparently near-equivalents that are
10493         under the BSD license.
10494
10495 2005-10-24  Simon Josefsson  <jas@extundo.com>
10496
10497         * modules/sha1: Relicense to LGPL.
10498
10499 2005-10-24  Simon Josefsson  <jas@extundo.com>
10500
10501         * lib/md4.h: Shrink buffer size, now that we changed the type.
10502
10503 2005-10-23  Simon Josefsson  <jas@extundo.com>
10504
10505         * gnulib-tool (func_import): Fix --tests-base.
10506
10507 2005-10-22  Simon Josefsson  <jas@extundo.com>
10508
10509         * modules/arcfour (Depends-on): Need stdint.
10510
10511 2005-10-22  Simon Josefsson  <jas@extundo.com>
10512
10513         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
10514         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
10515
10516 2005-10-22  Simon Josefsson  <jas@extundo.com>
10517
10518         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
10519         suggested by Bruno Haible <bruno@clisp.org>.
10520
10521 2005-10-22  Simon Josefsson  <jas@extundo.com>
10522
10523         * lib/crc.h: Include stddef.h, for size_t.
10524
10525 2005-10-22  Simon Josefsson  <jas@extundo.com>
10526
10527         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
10528         arcfour_context struct (simplify test vector testing in GNU
10529         Shishi).
10530
10531 2005-10-21  Simon Josefsson  <jas@extundo.com>
10532
10533         * modules/des, modules/des-tests: New files.
10534
10535         * modules/gc-des, modules/gc-des-tests: New files.
10536
10537         * tests/test-des.c, tests/test-gc-des.c: New file.
10538
10539 2005-10-21  Simon Josefsson  <jas@extundo.com>
10540
10541         * modules/arctwo, modules/arctwo-tests: New files.
10542
10543         * tests/test-arctwo.c: New file.
10544
10545         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
10546
10547         * tests/test-gc-arctwo.c: New file.
10548
10549 2005-10-21  Simon Josefsson  <jas@extundo.com>
10550
10551         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
10552         Bruno Haible <bruno@clisp.org>.
10553
10554         * m4/gc-des.m4: New file.
10555
10556 2005-10-21  Simon Josefsson  <jas@extundo.com>
10557
10558         * m4/arctwo.m4: New file.
10559
10560         * m4/gc-arctwo.m4: New file.
10561
10562 2005-10-21  Simon Josefsson  <jas@extundo.com>
10563
10564         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
10565         block.
10566
10567 2005-10-21  Simon Josefsson  <jas@extundo.com>
10568
10569         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
10570         <bruno@clisp.org>.
10571
10572         * lib/hmac-sha1.c (hmac_sha1): Likewise.
10573
10574         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
10575         Bruno Haible <bruno@clisp.org>.
10576
10577         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
10578         <bruno@clisp.org>.
10579
10580 2005-10-21  Simon Josefsson  <jas@extundo.com>
10581
10582         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
10583
10584 2005-10-21  Simon Josefsson  <jas@extundo.com>
10585
10586         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
10587
10588 2005-10-21  Simon Josefsson  <jas@extundo.com>
10589
10590         * lib/des.h, lib/des.c: New files.
10591
10592         * lib/gc-gnulib.c: Support DES.c
10593
10594 2005-10-21  Simon Josefsson  <jas@extundo.com>
10595
10596         * lib/arctwo.h, lib/arctwo.c: New files.
10597
10598         * lib/gc-gnulib.c: Support ARCTWO.
10599
10600 2005-10-21  Simon Josefsson  <jas@extundo.com>
10601
10602         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
10603         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
10604
10605 2005-10-21  Simon Josefsson  <jas@extundo.com>
10606
10607         * gnulib-tool (func_import, func_create_testdir): Define automake
10608         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
10609         Makefile.am snippet),
10610         suggested by Bruno Haible <bruno@clisp.org>.
10611
10612         * modules/gc (Makefile.am): Use it.
10613
10614 2005-10-21  Bruno Haible  <bruno@clisp.org>
10615
10616         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
10617         patch.
10618
10619 2005-10-19  Simon Josefsson  <jas@extundo.com>
10620
10621         * tests/test-gc-rijndael.c: New file.
10622
10623         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
10624
10625 2005-10-19  Simon Josefsson  <jas@extundo.com>
10626
10627         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
10628         interface too.
10629
10630 2005-10-19  Simon Josefsson  <jas@extundo.com>
10631
10632         * tests/test-gc-arcfour.c: New file.
10633
10634         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
10635
10636 2005-10-19  Simon Josefsson  <jas@extundo.com>
10637
10638         * modules/gc-md4, modules/gc-md4-tests: New file.
10639
10640         * tests/test-gc-md4.c: New file.
10641
10642 2005-10-19  Simon Josefsson  <jas@extundo.com>
10643
10644         * m4/gc-md4.m4: New file.
10645
10646 2005-10-19  Simon Josefsson  <jas@extundo.com>
10647
10648         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
10649         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
10650         <kasal@ucw.cz>.
10651
10652 2005-10-19  Simon Josefsson  <jas@extundo.com>
10653
10654         * m4/gc-arcfour.m4: New file.
10655
10656         * m4/gc-rijndael.m4: New file.
10657
10658 2005-10-19  Simon Josefsson  <jas@extundo.com>
10659
10660         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
10661
10662 2005-10-19  Simon Josefsson  <jas@extundo.com>
10663
10664         * lib/gc-gnulib.c: Support ARCFOUR.
10665
10666 2005-10-19  Simon Josefsson  <jas@extundo.com>
10667
10668         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
10669         support.
10670
10671         * lib/gc.h: Add ECB enum type.
10672
10673         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
10674
10675 2005-10-18  Simon Josefsson  <jas@extundo.com>
10676
10677         * tests/test-md5.c: New file.
10678
10679         * modules/md5-tests: New file.
10680
10681 2005-10-18  Simon Josefsson  <jas@extundo.com>
10682
10683         * tests/test-md4.c: New file.
10684
10685         * modules/md4, modules/md4-tests: New files.
10686
10687 2005-10-18  Simon Josefsson  <jas@extundo.com>
10688
10689         * m4/md4.m4: New file.
10690
10691 2005-10-18  Simon Josefsson  <jas@extundo.com>
10692
10693         * lib/md4.h, lib/md4.c: New files, based on md5.?.
10694
10695 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
10696
10697         * gnulib-tool (func_create_testdir): Omit the second check whether
10698         BUILT_SOURCES in nonempty.
10699
10700 2005-10-17  Simon Josefsson  <jas@extundo.com>
10701
10702         * tests/test-rijndael.c: New file.
10703
10704 2005-10-17  Simon Josefsson  <jas@extundo.com>
10705
10706         * modules/sha1: Depend on stdint instead of md5.
10707
10708         * modules/md5: Depend on stdint, remove uint32_t.
10709
10710 2005-10-17  Simon Josefsson  <jas@extundo.com>
10711
10712         * modules/gc-sha1-tests: New file.
10713
10714         * tests/test-gc-sha1.c: New file.
10715
10716 2005-10-17  Simon Josefsson  <jas@extundo.com>
10717
10718         * m4/md5.m4: Remove call to uint32_t.m4.
10719
10720 2005-10-17  Simon Josefsson  <jas@extundo.com>
10721
10722         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
10723
10724         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
10725         md5.h.
10726
10727         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
10728
10729         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
10730
10731 2005-10-17  Simon Josefsson  <jas@extundo.com>
10732
10733         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
10734
10735 2005-10-17  Simon Josefsson  <jas@extundo.com>
10736
10737         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
10738
10739 2005-10-17  Simon Josefsson  <jas@extundo.com>
10740
10741         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
10742
10743         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
10744
10745 2005-10-17  Bruno Haible  <bruno@clisp.org>
10746
10747         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
10748         that it can also be used in a test.
10749
10750 2005-10-16  Bruno Haible  <bruno@clisp.org>
10751
10752         * gnulib-tool (func_emit_tests_Makefile_am): Also define
10753         TESTS_ENVIRONMENT, so that individual tests can augment it.
10754
10755         * gnulib-tool (func_create_testdir): Use an intermediate target for
10756         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
10757         macros, like $(ALLOCA_H), which cannot be passed through the command
10758         line.
10759
10760 2005-10-15  Simon Josefsson  <jas@extundo.com>
10761
10762         * modules/rijndael-tests: New file.
10763
10764         * modules/rijndael: New file.
10765
10766 2005-10-15  Simon Josefsson  <jas@extundo.com>
10767
10768         * m4/rijndael.m4: New file.
10769
10770 2005-10-15  Simon Josefsson  <jas@extundo.com>
10771
10772         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
10773
10774         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
10775
10776 2005-10-14  Simon Josefsson  <jas@extundo.com>
10777
10778         * tests/test-arcfour.c: New file.
10779
10780         * modules/arcfour, modules/arcfour-tests: New files.
10781
10782 2005-10-14  Simon Josefsson  <jas@extundo.com>
10783
10784         * m4/arcfour.m4: New file.
10785
10786 2005-10-14  Simon Josefsson  <jas@extundo.com>
10787
10788         * lib/arcfour.h, lib/arcfour.c: New files.
10789
10790 2005-10-14  Roland McGrath  <roland@redhat.com>
10791
10792         Import from libc.  [BZ #1331]
10793         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
10794         macro argument.
10795         Reported by Matej Vela <vela@debian.org>.
10796
10797 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
10798
10799         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
10800         include <wchar.h>; no longer needed.
10801
10802 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
10803
10804         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
10805
10806 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
10807         and  Ulrich Drepper  <drepper@redhat.com>
10808
10809         Import from libc.
10810         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
10811         instead of inline stream orientation test and two separate
10812         function calls.  Pay no attention to USE_IN_LIBIO.
10813
10814 2005-10-13  Simon Josefsson  <jas@extundo.com>
10815
10816         * modules/gc-hmac-md5-tests: New file.
10817
10818         * tests/test-gc-hmac-sha1.c: New file.
10819
10820         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
10821
10822         * modules/gc-hmac-md5-tests: New file.
10823
10824         * tests/test-gc-md5.c: New file.
10825
10826         * modules/gc-md5-tests: New file.
10827
10828 2005-10-13  Simon Josefsson  <jas@extundo.com>
10829
10830         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
10831         Move memory allocation outside of loop.
10832
10833 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
10834
10835         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
10836         intermediate directory is in a read-only file system.  Problem
10837         reported by Eric Blake.
10838
10839 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
10840
10841         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
10842
10843 2005-10-12  Simon Josefsson  <jas@extundo.com>
10844
10845         * tests/test-hmac-sha1.c: New file.
10846
10847         * modules/hmac-sha1-tests: New file.
10848
10849         * modules/hmac-sha1: New file.
10850
10851 2005-10-12  Simon Josefsson  <jas@extundo.com>
10852
10853         * modules/gc-sha1: New file.
10854
10855 2005-10-12  Simon Josefsson  <jas@extundo.com>
10856
10857         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
10858
10859         * tests/test-gc-pbkdf2-sha1.c: New file.
10860
10861 2005-10-12  Simon Josefsson  <jas@extundo.com>
10862
10863         * modules/gc-md5, modules/gc-hmac-md5: New files.
10864
10865         * modules/gc (Files): Remove md5, memxor and hmac files.
10866
10867 2005-10-12  Simon Josefsson  <jas@extundo.com>
10868
10869         * m4/gc-pbkdf2-sha1.m4: New file.
10870
10871         * m4/gc-hmac-sha1.m4: New file.
10872
10873         * m4/gc-sha1: New file.
10874
10875         * m4/hmac-sha1.m4: New file.
10876
10877 2005-10-12  Simon Josefsson  <jas@extundo.com>
10878
10879         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
10880
10881         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
10882
10883 2005-10-12  Simon Josefsson  <jas@extundo.com>
10884
10885         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
10886         suggested by Bruno Haible <bruno@clisp.org>.
10887
10888 2005-10-12  Simon Josefsson  <jas@extundo.com>
10889
10890         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
10891
10892 2005-10-12  Simon Josefsson  <jas@extundo.com>
10893
10894         * lib/gc-pbkdf2-sha1.c: New file.
10895
10896         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
10897
10898 2005-10-12  Simon Josefsson  <jas@extundo.com>
10899
10900         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
10901
10902         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
10903
10904 2005-10-12  Simon Josefsson  <jas@extundo.com>
10905
10906         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
10907         GC_USE_HMAC_MD5, respectively.
10908
10909         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
10910         (gc_md5): Fix typo.
10911
10912         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
10913
10914         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
10915
10916         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
10917
10918 2005-10-12  Bruno Haible  <bruno@clisp.org>
10919
10920         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
10921         Reported by Stepan Kasal <kasal@ucw.cz>.
10922
10923 2005-10-11  Simon Josefsson  <jas@extundo.com>
10924
10925         * tests/test-crc.c: New file.
10926
10927         * modules/crc, modules/crc-tests: New files.
10928
10929 2005-10-11  Simon Josefsson  <jas@extundo.com>
10930
10931         * m4/crc.m4: New file.
10932
10933 2005-10-11  Simon Josefsson  <jas@extundo.com>
10934
10935         * lib/gc.h: Add gc_hash and gc_hash_buffer.
10936
10937         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
10938
10939         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
10940
10941 2005-10-11  Simon Josefsson  <jas@extundo.com>
10942
10943         * lib/crc.h, lib/crc.c: New files.
10944
10945         * lib/gc.h (gc_hash_buffer): Add doc.
10946
10947 2005-10-11  Bruno Haible  <bruno@clisp.org>
10948
10949         * modules/c-strcasestr: New file.
10950         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
10951
10952 2005-10-11  Bruno Haible  <bruno@clisp.org>
10953
10954         * modules/c-strcase: New file.
10955         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
10956
10957 2005-10-11  Bruno Haible  <bruno@clisp.org>
10958
10959         * lib/strcasecmp.c: Include limits.h.
10960         (strcasecmp): Avoid integer overflow on exotic platforms.
10961         * lib/strncasecmp.c: Include limits.h.
10962         (strncasecmp): Avoid integer overflow on exotic platforms.
10963         Reported by Paul Eggert.
10964
10965 2005-10-11  Bruno Haible  <bruno@clisp.org>
10966
10967         * lib/c-strcasestr.h: New file, from GNU gettext.
10968         * lib/c-strcasestr.c: New file, from GNU gettext.
10969
10970 2005-10-11  Bruno Haible  <bruno@clisp.org>
10971
10972         * lib/c-strcase.h: New file, from GNU gettext.
10973         * lib/c-strcasecmp.c: New file, from GNU gettext.
10974         * lib/c-strncasecmp.c: New file, from GNU gettext.
10975
10976 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
10977
10978         * modules/mempcpy (License): GPL -> LGPL.
10979         * modules/strchrnul (License): Likewise.
10980         * modules/sysexits (License): Likewise.
10981
10982 2005-10-08  Simon Josefsson  <jas@extundo.com>
10983
10984         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
10985
10986 2005-10-07  Simon Josefsson  <jas@extundo.com>
10987
10988         * m4/memxor.m4: Remove gl_C_RESTRICT call.
10989
10990 2005-10-06  Simon Josefsson  <jas@extundo.com>
10991
10992         * tests/test-hmac-md5.c: New file.
10993
10994         * modules/hmac-md5-tests: New file.
10995
10996         * modules/hmac-md5: New file.
10997
10998 2005-10-06  Simon Josefsson  <jas@extundo.com>
10999
11000         * m4/hmac-md5.m4: New file.
11001
11002         * m4/memxor.m4: Require gl_C_RESTRICT.
11003
11004 2005-10-06  Simon Josefsson  <jas@extundo.com>
11005
11006         * lib/memxor.c (memxor): Avoid casts and warnings.
11007
11008 2005-10-06  Simon Josefsson  <jas@extundo.com>
11009
11010         * lib/hmac-md5.c: New file.
11011
11012         * lib/hmac.h: New file.
11013
11014 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
11015
11016         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
11017         promotes to int, not unsigned int, to catch the AIX 5.3
11018         compiler bug.
11019
11020 2005-10-05  Simon Josefsson  <jas@extundo.com>
11021
11022         * modules/memxor: New file.
11023
11024         * modules/iconv (Files): Move config.rpath to havelib, it is used
11025         there.
11026
11027         * modules/havelib (Files): Add config.rpath.
11028
11029 2005-10-05  Simon Josefsson  <jas@extundo.com>
11030
11031         * m4/memxor.m4: New file.
11032
11033 2005-10-05  Simon Josefsson  <jas@extundo.com>
11034
11035         * lib/memxor.c (memxor): Fix compiler error.
11036
11037         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
11038         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
11039
11040         * lib/memxor.h, lib/memxor.c: New files.
11041
11042         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
11043         we assume all systems have it, suggested by Jim Meyering
11044         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
11045         any systems lack sys/socket.h; mingw32 is known to lack it, but we
11046         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
11047         same reasons.
11048
11049 2005-10-05  Simon Josefsson  <jas@extundo.com>
11050
11051         * config/srclist.txt: Add glibc bug 1423 for md5.h.
11052
11053 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
11054
11055         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
11056         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
11057         needed, since the source code now assumes these .h files.
11058
11059 2005-10-05  Derek Price  <derek@ximbiot.com>
11060
11061         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
11062
11063 2005-10-05  Bruno Haible  <bruno@clisp.org>
11064
11065         * modules/stdint (License): Change to LGPL.
11066
11067 2005-10-04  Simon Josefsson  <jas@extundo.com>
11068
11069         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
11070         D. Baushke" <mdb@gnu.org>.
11071
11072 2005-10-04  Bruno Haible  <bruno@clisp.org>
11073
11074         * lib/verify.h (verify_true): Provide alternative definition for C++.
11075
11076 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
11077
11078         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
11079         (SSIZE_MAX): New macro, if not already defined.
11080         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
11081         than 2 GiB.
11082
11083 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
11084
11085         Sync from coreutils.
11086         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
11087         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
11088         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
11089         ULLONG_MAX doesn't work with 2.7.2.1.
11090
11091 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
11092
11093         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
11094         From Ben Pfaff.
11095
11096         * modules/exclude (Depends-on): Depend on verify.
11097         * modules/strtoimax (Depends-on): Likewise.
11098         * modules/utimecmp (Depends-on): Likewise.
11099
11100 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
11101
11102         * lib/exclude.c: Include verify.h.
11103         (verify): Remove.  All callers changed to use verify.h's version.
11104         * lib/strtoimax.c: Likewise.
11105         * lib/utimecmp.c: Likewis.e
11106
11107         Sync from coreutils.
11108         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
11109         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
11110         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
11111         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
11112         bother returning ENOSYS if settimeofday or stime fails; just let
11113         them return whatever errno they want to return.
11114         * lib/utimens.c: Include unistd.h, for dup2.
11115         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
11116         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
11117
11118 2005-10-02  Jim Meyering  <jim@meyering.net>
11119
11120         Sync from coreutils.
11121         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
11122         from glibc-2.2.5 that fails for read-only files.
11123
11124 2005-10-02  Jim Meyering  <jim@meyering.net>
11125
11126         Sync from coreutils.
11127         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
11128         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
11129         `#if HAVE_CONFIG_H'.
11130         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
11131         Remove AT_FDCWD test.
11132         Do not consume the fd unless successful.
11133         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
11134         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
11135         block, so that we don't even try to compile it if settimeofday is
11136         available.  This works around a compilation failure on OSF1 V5.1,
11137         due to stime requiring a `long int*' while tv_sec is `int'.
11138
11139 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
11140
11141         Sync from coreutils.
11142         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
11143         against `yes', rather than just testing for nonempty.
11144
11145 2005-10-01  Simon Josefsson  <jas@extundo.com>
11146
11147         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
11148         and Darwin.
11149
11150         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
11151         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
11152         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
11153         freeaddrinfo and gai_strerror are declared by the POSIX headers.
11154         Check if struct addrinfo is declared.
11155
11156 2005-10-01  Simon Josefsson  <jas@extundo.com>
11157
11158         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
11159         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
11160         AI_* and EAI_* definitions.  Protect function declarations.
11161
11162 2005-10-01  Jim Meyering  <jim@meyering.net>
11163
11164         Sync from coreutils.
11165
11166         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
11167         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
11168         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
11169         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
11170         in the inet and nsl libraries.  Required on Solaris 5.7.
11171
11172 2005-10-01  Jim Meyering  <jim@meyering.net>
11173
11174         Sync from coreutils.
11175         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
11176         in the inet and nsl libraries.  Required on Solaris 5.7.
11177
11178 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
11179
11180         * lib/getdelim.c (getdelim): Remove unused variables.
11181
11182 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
11183
11184         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
11185         so that the code works even with ancient cpp.  Portability problem
11186         with GCC 2.7.2.1 reported by Thomas M.Ott.
11187
11188 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
11189
11190         * modules/regex (Depends-on): Add strcase.
11191
11192         * modules/gethostname (Licence): Change from GPL to LGPL, since
11193         gethostname.c is a trivial implementation of a standard library
11194         function.
11195         * modules/poll (License): Change from GPL to LGPL, since it's
11196         derived from LGPL code.
11197
11198 2005-09-27  Jim Meyering  <jim@meyering.net>
11199
11200         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
11201         HAVE_CONFIG_H.
11202
11203         * lib/intprops.h (signed_type_or_expr__): Define.
11204         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
11205         for unsigned types.
11206
11207 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
11208
11209         * lib/verify.h (verify_expr): Remove, replacing with:
11210         (verify_true): New macro that returns true instead of void.
11211         (verify_type__): Remove.
11212         (verify): Use verify_true rather than verify_type__.
11213
11214 2005-09-26  Bruno Haible  <bruno@clisp.org>
11215
11216         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
11217         is necessary.
11218         (lib_SOURCES): Remove mbchar.c.
11219         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
11220         (Files): Add m4/mbrtowc.m4.
11221         * modules/mbiter: Likewise.
11222         * modules/mbuiter: Likewise.
11223
11224 2005-09-26  Bruno Haible  <bruno@clisp.org>
11225
11226         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
11227         compile mbchar.c if they are not both present.
11228         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
11229         * m4/mbiter.m4 (gl_MBITER): Likewise.
11230         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
11231         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
11232         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
11233
11234 2005-09-25  Jim Meyering  <jim@meyering.net>
11235
11236         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
11237         also uses socklen_t.
11238
11239 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
11240
11241         * lib/utimens.c (ENOSYS): Define if not already defined.
11242         (futimens): Support having a null PATH if the file descriptor
11243         is nonnegative.
11244
11245         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
11246         Remove.
11247         (__attribute): Define to empty unless GCC 3.1 or later.
11248         This works around a core dump on OpenBSD 3.4, which has GCC
11249         2.95.3, which dumps core when given __attribute__(()).  It also
11250         simplifies other tests, since we really don't want to bother with
11251         worrying about which ancient version of GCC supported what.
11252         Original problem reported by Yoann Vandoorselaere, with part of
11253         the fix suggested by Derek Price.
11254
11255 2005-09-24  Jim Meyering  <jim@meyering.net>
11256
11257         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
11258         so we can once again use a positive bitfield width of 1 -- now we
11259         don't have to explain why we were using a bitfield width of 2.
11260
11261 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
11262
11263         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
11264         and similarly for the other external symbols.  Problem reported
11265         by James Gallager.
11266
11267         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
11268         bug reported by Jim Meyering.
11269
11270         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
11271         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
11272         not needed, since socklen is a prerequisite module.
11273
11274 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
11275
11276         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
11277         Problem reported by Eric Blake.
11278         (getaddrinfo): Initialize se so that it's not garbage.
11279         Redo internal storage allocation so that it doesn't make unportable
11280         assumptions about alignment.
11281         Fix a memory leak.
11282
11283         * lib/utimens.c (futimens): Use futimesat if available.
11284         Prefer it to futimes since it doesn't have the futimes bug.
11285
11286         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
11287         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
11288         Instead, declare a function that returns a pointer to an array,
11289         and use verify_type__ to declare the size of the array.
11290         Problem and germ of a solution reported by Bruno Haible.
11291         (verify_type__): Use 2, not 1, for bitfield size, to avoid
11292         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
11293
11294 2005-09-23  Jim Meyering  <jim@meyering.net>
11295
11296         Sync from coreutils.
11297         Correct build failure (socklen_t not defined) on at least
11298         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
11299         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
11300
11301 2005-09-23  Jim Meyering  <jim@meyering.net>
11302
11303         * modules/getaddrinfo (Depends-on): Add socklen.
11304
11305 2005-09-23  Bruno Haible  <bruno@clisp.org>
11306
11307         * tests/test-verify.c: New file.
11308
11309 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
11310
11311         Sync from coreutils.
11312
11313         * modules/argmatch (Depends-on): Add verify.
11314         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
11315         unistd-safer.
11316         * modules/save-cwd (Depends-on): Likewise.
11317
11318         * modules/openat (Files): Add lib/openat-die.c.
11319         (Depends-on): Remove error, exitfail.
11320         Add dirname.
11321
11322         * modules/verify: New file.
11323         * MODULES.html.sh (Diagnostics <assert.h>): New section,
11324         with "verify" module.
11325
11326 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
11327
11328         Sync from coreutils.
11329
11330         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
11331         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
11332         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
11333         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
11334         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
11335         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
11336         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
11337         Don't bother checking for string.h, stdlib.h, unistd.h.
11338         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
11339         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
11340         module's job.
11341         * m4/jm-macros.m4 (gl_MACROS): Likewise.
11342         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
11343
11344         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
11345         (gl_GETDATE): Use it.
11346
11347         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
11348
11349 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
11350
11351         Sync from coreutils.
11352
11353         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
11354         stat-time.h.
11355         * lib/argmatch.h: Include verify.h
11356         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
11357         (ARGMATCH_ASSERT): Remove; unused.
11358         * lib/canonicalize.c: Assume STDC_HEADERS.
11359         * lib/exclude.c: Include "strcase.h".
11360         * lib/regex_internal.h [!defined _LIBC]: Likewise.
11361         * lib/getusershell.c: Include stdio--.h rather than stdio.h
11362         and stdio-safer.h.
11363         (getusershell): Call fopen, not fopen_safer.
11364         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
11365         Do not include unistd-safer.h.
11366         (save_cwd): Don't call fd_safer; no longer needed
11367         now that we include fcntl--.h.
11368
11369         * lib/getdate.y (relative_time): New type.
11370         (RELATIVE_TIME_0): New constant.
11371         (parser_control): Use relative_time instead of doing it ourselves.
11372         (%union): Add new relative_time rel member.
11373         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
11374         Now typeless.
11375         (relunit, relunit_snumber): Now of type rel.
11376         (zone, rel, relunit, get_date): Adjust to above changes.
11377
11378         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
11379         Do not include unistd-safer.h.
11380         (getloadavg): Don't call fd_safer; no longer needed
11381         now that we include fcntl--.h.
11382
11383         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
11384         (make_dir_parents): Treat ENOSYS like EEXIST.
11385
11386         Improve quality of diagnostics on restore_cwd failure.
11387         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
11388         (make_dir_parents): Last arg is now int * (for errno), not bool *.
11389         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
11390         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
11391         each time through the loop.  Do not diagnose restore_cwd failure;
11392         that is the caller's job (and perhaps the caller does not care).
11393
11394         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
11395         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
11396         If the file already exists but is not a directory, don't bother
11397         to try to make its parents.
11398         Close potential file descriptor leak if we can't chdir("/") (!).
11399         Don't always return true if chdir($PWD) fails; return true only
11400         if the requested action was done successfully (except for the
11401         chdir($PWD)).
11402         Don't log final directory unless we actually made it.
11403         Refactor to avoid duplicate code to fix up permissions.
11404         Don't attempt to fix up parent permissions if chdir($PWD) fails.
11405
11406         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
11407         to make it a bit faster and (I hope) clearer.
11408         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
11409         Fix bug in formats like %2N.
11410
11411         * lib/verify.h: New file.
11412
11413 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
11414
11415         Sync from coreutils.
11416         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
11417
11418 2005-09-22  Jim Meyering  <jim@meyering.net>
11419
11420         Sync from coreutils.
11421
11422         * m4/lstat.m4 (gl_FUNC_LSTAT):
11423         Use AC_LIBSOURCES to require lstat.c and lstat.h.
11424         Remove obsolete comment.
11425         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
11426         * m4/xstrtod.m4: Likewise.
11427
11428         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
11429
11430 2005-09-22  Jim Meyering  <jim@meyering.net>
11431
11432         Sync from coreutils.
11433
11434         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
11435
11436         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
11437         the .tm_year member, since otherwise gcc-4.0 would now warn about
11438         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
11439
11440         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
11441         order to avoid an unsuppressible warning from gcc on 64-bit systems.
11442
11443         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
11444         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
11445         when run in a time zone for which daylight savings time is in effect
11446         for the starting date.
11447
11448         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
11449         stop us from restricting permissions of just-created absolute-named
11450         directories.
11451         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
11452         to restore initial working directory.
11453         * lib/mkdir-p.c (make_dir_parents): New parameter:
11454         different_working_dir, to tell caller if/when we change the working
11455         directory and are unable to return to the initial one.
11456         * lib/mkdir-p.h (make_dir_parents): Update prototype.
11457         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
11458         `return false'.  This fixes a bug introduced on 2004-07-30.
11459
11460         * lib/openat.c (fdopendir): Be sure to close the supplied
11461         file descriptor before returning.  This makes our replacement
11462         implementation a little closer to Solaris's, where fdopendir
11463         ties the file descriptor to the returned DIR* pointer.
11464         * lib/openat.c (unlinkat): New function.
11465         * lib/openat.h (unlinkat): Add prototype.
11466         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
11467         (openat_restore_fail): Rename from openat_restore_die.
11468         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
11469
11470         Provide an alternative to exiting immediately upon save_cwd or
11471         restore_cwd failure.  Now, an application can arrange e.g.,
11472         to perform a longjump in that case.
11473         * lib/openat.c: Include dirname.h.
11474         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
11475         (rpl_openat, fdopendir, fstatat): Call openat_save_die
11476         and openat_restore_die rather than calling error directly.
11477         Don't include "error.h" or "exitfail.h"; they're no longer needed.
11478
11479         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
11480         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
11481         define.
11482
11483         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
11484         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
11485                             int utc, int nanoseconds);
11486         Background:
11487         date should not have to allocate a megabyte of virtual memory to
11488         handle a format argument like +%1048575T.  When implemented with
11489         strftime, it must allocate such a buffer, use strftime to fill it
11490         in, print it, then free it.
11491         With fprintftime, it simply prints everything and exits.
11492         With no need for memory allocation, that's one fewer way to fail.
11493         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
11494         optional field width, not before, so we accept %9:z, not %:9z.
11495         (my_strftime): Be sure to use L_('x') for literals.
11496
11497         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
11498         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
11499         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
11500         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
11501         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
11502         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
11503         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
11504         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
11505         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
11506         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
11507         * lib/xgethostname.c, lib/xreadlink.c:
11508         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
11509
11510         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
11511         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
11512         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
11513         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
11514         and don't include <sys/file.h>).
11515
11516 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
11517
11518         Sync from coreutils.
11519
11520         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
11521         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
11522         [!LDAV_DONE]: Avoid unused variable warning.
11523
11524 2005-09-21  Bruno Haible  <bruno@clisp.org>
11525
11526         * lib/unicodeio.h (unicode_to_mb): New declaration.
11527
11528 2005-09-20  Derek Price  <derek@ximbiot.com>
11529
11530         * lib/getaddrinfo.c: Don't include <netdb.h> included from
11531         getaddrinfo.h.
11532
11533 2005-09-20  Bruno Haible  <bruno@clisp.org>
11534
11535         * gnulib-tool: Remove trailing slashes from the values specified for
11536         --source-base, --m4-base, --tests-base, --aux-dir.
11537         Suggested by Simon Josefsson <jas@extundo.com>.
11538
11539 2005-09-20  Bruno Haible  <bruno@clisp.org>
11540
11541         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
11542         func_modules_to_filelist, func_import, func_create_testdir): Make all
11543         sorting results locale-independent, so that gnulib-cache.m4 doesn't
11544         change when gnulib-tool is invoked in a different locale.
11545
11546 2005-09-19  Simon Josefsson  <jas@extundo.com>
11547
11548         * m4/socklen.m4: Fix typo.
11549
11550 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11551
11552         Use a consistent style for including <config.h>.
11553         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
11554         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
11555         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
11556         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
11557         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
11558         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
11559         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
11560         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
11561         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
11562         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
11563         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
11564         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
11565         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
11566         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
11567         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
11568         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
11569         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
11570         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
11571         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
11572         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
11573         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
11574         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
11575         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
11576         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
11577         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
11578         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
11579         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
11580         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
11581         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
11582         lib/xstrtoumax.c, lib/yesno.c:
11583         Standardize inclusion of config.h.
11584         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
11585         lib/inttostr.h:  Removed inclusion of config.h from header files.
11586         * lib/inttostr.c:  Adjusted in-tree users.
11587         * lib/timespec.h: Remove superfluous warning to include config.h.
11588         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
11589         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
11590         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
11591         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
11592         config.h with HAVE_CONFIG_H.
11593
11594 2005-09-19  Jim Meyering  <jim@meyering.net>
11595
11596         * modules/pathmax (License): Change to LGPL.
11597
11598 2005-09-19  Derek Price  <derek@ximbiot.com>
11599
11600         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
11601
11602 2005-09-19  Bruno Haible  <bruno@clisp.org>
11603
11604         * gnulib-tool (import): Provide default for --tests-base.
11605
11606 2005-09-19  Bruno Haible  <bruno@clisp.org>
11607
11608         * doc/quote.texi: New file, extracted from gnulib.texi.
11609         * doc/ctime.texi: New file, extracted from gnulib.texi.
11610         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
11611         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
11612         * doc/gnulib.texi: Include them.
11613
11614 2005-09-18  Bruno Haible  <bruno@clisp.org>
11615
11616         Portability fix.
11617         * gnulib-tool (func_readlink): New function.
11618         (func_ln_if_changed): Use it.
11619
11620 2005-09-18  Bruno Haible  <bruno@clisp.org>
11621
11622         * gnulib-tool: Support --with-tests also with --import.
11623         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
11624         (func_import): Use variables $testsbase and $inctests. Emit a
11625         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
11626         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
11627         SUBDIRS += $testsdir.
11628         (func_create_testdir): Update.
11629
11630 2005-09-18  Bruno Haible  <bruno@clisp.org>
11631
11632         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
11633         instead of $dry_run.
11634         (func_cp_if_changed, func_mv_if_changed): Remove functions.
11635         (func_ln_if_changed): Don't handle dry-run here.
11636         (func_import): In dry-run mode, detect more precisely which actions
11637         would be performed, and don't use "...ing" verbs.
11638
11639 2005-09-18  Bruno Haible  <bruno@clisp.org>
11640
11641         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
11642         (func_import): Use join on two temporary files instead of three nested
11643         loops, in order to determine which files are new or old.
11644
11645 2005-09-18  Bruno Haible  <bruno@clisp.org>
11646
11647         * gnulib-tool (func_import): Comment out code that spits out the
11648         new files with --dry-run.
11649
11650 2005-09-18  Bruno Haible  <bruno@clisp.org>
11651
11652         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
11653
11654 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
11655
11656         * lib/stat-time.h: New file.
11657         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
11658         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
11659         in a different way.
11660         (timespec_cmp): New function.
11661         * lib/utimecmp.c: Include stat-time.h.
11662         (SYSCALL_RESOLUTION): Depend on whether various struct stat
11663         members exist, not on the obsolescent ST_MTIM_NSEC.
11664         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
11665
11666 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
11667
11668         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
11669
11670 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
11671
11672         * MODULES.html.sh (File system functions): Add stat-time.
11673         * modules/stat-time: New file.
11674         * modules/timespec (Files): Remove m4/st_mtim.m4; this
11675         is now done in a different way, by the stat-time module.
11676         * modules/utimecmp (Depends-on): Add stat-time.
11677
11678 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
11679
11680         * m4/st_mtim.m4: Remove.  Superseded by...
11681         * m4/stat-time.m4: New file.
11682         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
11683         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
11684
11685 2005-09-15  Derek Price  <derek@ximbiot.com>
11686
11687         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
11688
11689 2005-09-15  Derek Price  <derek@ximbiot.com>
11690
11691         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
11692         * lib/regex_internal.c: Ditto, using this...
11693         (__GNUC_PREREQ): ...new macro.
11694         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
11695         using...
11696         (__GNUC_PREREQ): ...this new macro.
11697
11698         * lib/strstr.h: Include string.h. Define strstr as a macro here.
11699
11700 2005-09-15  Derek Price  <derek@ximbiot.com>
11701             Paul Eggert  <eggert@cs.ucla.edu>
11702
11703         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
11704         changes, consolidating in...
11705         * lib/regex_internal.h: ...this file.
11706
11707 2005-09-13  Jim Meyering  <jim@meyering.net>
11708
11709         * lib/canon-host.c: Filter through gnu indent and reword comments
11710         slightly.
11711         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
11712
11713 2005-09-13  Derek Price  <derek@ximbiot.com>
11714
11715         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
11716         failure.
11717         Reported by Jim Meyering  <jim@meyering.net>.
11718
11719 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
11720
11721         * lib/base64.c: Typo.
11722         (base64_encode): Put b64str in initialized data section.
11723
11724 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
11725
11726         Merge glibc and coreutils changes into gnulib, plus a few
11727         extra fixes.
11728         * lib/md5.c: Use #error rather than a string.
11729         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
11730         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
11731         (__attribute__): Define to empty for non recent-GCC.
11732         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
11733         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
11734         Renamed from their non-__ counterparts, with new macros replacing
11735         them if not _LIBC.  Add __THROW attribute.
11736         (rol): Remove.
11737         (struct md5_ctx): Align buffer if using GCC.
11738         * lib/sha1.h (struct sha1_ctx): Likewise.
11739         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
11740         The old name was backwards.
11741         (NOTSWAP): Remove; not used.
11742         (rol): New macro, moved here from md5.h.
11743         (sha1_process_block): Remove a FIXME that doesn't make sense.
11744
11745 2005-09-12  Derek Price  <derek@ximbiot.com>
11746
11747         Return usable errors from canon-host.
11748         * lib/canon-host.h: New file.
11749         * lib/canon-host.c (canon_host): Wrap...
11750         (canon_host_r): ...this new function, which now relies exclusively on
11751         getaddrinfo.
11752         (ch_strerror): New function.
11753         (last_cherror): New global.
11754         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
11755         interface.
11756         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
11757         void *.
11758         (freeaddrinfo): Free ai->ai_canonname when set.
11759
11760 2005-09-12  Derek Price  <derek@ximbiot.com>
11761
11762         Make canon-host require getaddrinfo.
11763         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
11764         AC_LIBSOURCE canon-host.h.  Call...
11765         (gl_PREREQ_CANON_HOST): ...this new function, which requires
11766         gl_GETADDRINFO.
11767         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
11768
11769 2005-09-12  Derek Price  <derek@ximbiot.com>
11770
11771         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
11772         LGPL.
11773         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
11774
11775 2005-09-12  Derek Price  <derek@ximbiot.com>
11776
11777         * lib/gai_strerror.c: Include config.h when available.  Include
11778         getaddrinfo.h before other headers to test interface.
11779         Reported by Larry Jones <lawrence.jones@ugs.com>.
11780
11781 2005-09-12  Derek Price  <derek@ximbiot.com>
11782             Paul Eggert  <eggert@cs.ucla.edu>
11783
11784         * modules/glob (Files): Add glob-libc.h.
11785
11786 2005-09-12  Derek Price  <derek@ximbiot.com>
11787             Paul Eggert  <eggert@cs.ucla.edu>
11788
11789         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
11790         glob_.h, glob-libc.h.
11791         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
11792
11793 2005-09-12  Derek Price  <derek@ximbiot.com>
11794             Paul Eggert  <eggert@cs.ucla.edu>
11795
11796         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
11797         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
11798         protecting things that should be done only in gnulib contexts.
11799         * lib/glob_.h: New file, containing only the glob things needed for
11800         gnulib.
11801         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
11802         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
11803         (glob, globfree, glob_pattern_p): Now defined simply in terms of
11804         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
11805         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
11806         and to respect the namespace rules better.
11807
11808 2005-09-08  Simon Josefsson  <jas@extundo.com>
11809
11810         * modules/socklen: New file.
11811
11812 2005-09-08  Simon Josefsson  <jas@extundo.com>
11813
11814         * m4/socklen.m4: New file.
11815
11816 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
11817
11818         * modules/utimens (Files): Add m4/utimbuf.m4, since
11819         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
11820         Reported by Sergey Poznyakoff.
11821
11822 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
11823
11824         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
11825         definitions, since that's the preferred style in glibc.
11826         Fix a minor spacing issue, and update copyright notice to match
11827         glibc's.
11828
11829 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
11830
11831         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
11832
11833 2005-09-06  Simon Josefsson  <jas@extundo.com>
11834
11835         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
11836         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
11837
11838 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
11839
11840         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
11841         warning.
11842
11843 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
11844
11845         * config/srclist.txt: Add glibc bug 1302.
11846
11847 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
11848
11849         Change bitset word type from unsigned int to unsigned long int,
11850         as this has better performance on typical 64-bit hosts.
11851         Port bitset code to hosts with unusual word sizes.
11852         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
11853         (build_collating_symbol):
11854         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
11855         argument is a bitset.  This is merely a style issue, but it makes
11856         it clearer that an entire array is expected.
11857         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
11858         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
11859         Port to the case where bitset_word is not the same as unsigned int.
11860         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
11861         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
11862         Likewise.
11863         * lib/regexec.c (check_dst_limits_calc_pos_1,
11864         check_subexp_matching_top):
11865         (build_trtable, group_nodes_into_DFAstates):
11866         Likewise.
11867         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
11868         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
11869         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
11870         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
11871         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
11872         * lib/regcomp.c (optimize_subexps, lower_subexp):
11873         Work even if bitset_word has holes in its bitwise representation.
11874         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
11875         * lib/regexec.c (check_dst_limits_calc_pos_1,
11876         check_subexp_matching_top):
11877         Likewise.
11878         * lib/regex_internal.c (re_string_reconstruct):
11879         Don't assume UCHAR_MAX == 255.
11880         * lib/regex_internal.h (bitset_set_all): Likewise.
11881         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
11882         All uses changed.
11883         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
11884         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
11885         All uses changed.
11886         (BITSET_WORD_MAX): New macro.
11887         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
11888         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
11889         (bitset_empty, bitset_copy):
11890         Prefer sizeof (bitset) to multiplying it out ourselves.
11891         (bitset_not_merge): Remove; unused.
11892         (bitset_contain): Return bool, not unsigned int with one bit on.
11893         All callers changed.
11894         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
11895         alignment than re_node_set; do this by defining a new internal
11896         type struct dests_alloc and using it to allocate memory.
11897
11898 2005-09-05  Bruno Haible  <bruno@clisp.org>
11899
11900         * gnulib-tool (func_import): Fix comparison in handling of symbolic
11901         links.
11902
11903 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
11904
11905         * modules/size_max (Makefile.am): Add size_max.h
11906
11907 2005-09-04  Derek Price  <derek@ximbiot.com>
11908
11909         * gnulib-tool (func_import): Fix reversed $symbolic logic.
11910
11911 2005-09-03  Simon Josefsson  <jas@extundo.com>
11912
11913         * gnulib-tool: Fix typo.
11914
11915 2005-09-03  Simon Josefsson  <jas@extundo.com>
11916
11917         * config/srclist.txt: Add glibc bug 1293.
11918
11919 2005-09-03  Derek Price  <derek@ximbiot.com>
11920
11921         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
11922         From Larry Jones <lawrence.jones@ugs.com>.
11923
11924 2005-09-02  Simon Josefsson  <jas@extundo.com>
11925
11926         * modules/socklen: New file.
11927
11928 2005-09-02  Simon Josefsson  <jas@extundo.com>
11929
11930         * modules/havelib: New module.
11931
11932         * modules/gettext, modules/iconv, modules/lock, modules/readline:
11933         Use havelib.
11934
11935 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
11936
11937         Check for arithmetic overflow when calculating sizes, to prevent
11938         some buffer-overflow issues.  These patches are conservative, in the
11939         sense that when I couldn't determine whether an overflow was possible,
11940         I inserted a run-time check.
11941         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
11942         macros.
11943         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
11944         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
11945         (re_xnrealloc, re_x2nrealloc): New inline functions.
11946         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
11947         parse_bracket_exp):
11948         (build_equiv_class, build_charclass): Check for arithmetic overflow
11949         in size expression calculations.
11950         * lib/regex_internal.c (re_string_realloc_buffers):
11951         (build_wcs_upper_buffer, re_node_set_add_intersect):
11952         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
11953         (re_dfa_add_node, register_state): Likewise.
11954         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
11955         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
11956         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
11957         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
11958
11959 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
11960
11961         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
11962         m4/ulonglong.m4.  Problem reported by Martin Lambers.
11963
11964 2005-09-02  Bruno Haible  <bruno@clisp.org>
11965
11966         Support for lib vs. lib64 distinction on biarch platforms.
11967         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
11968         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
11969         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
11970
11971 2005-09-02  Bruno Haible  <bruno@clisp.org>
11972
11973         * gnulib-tool (import): In the other first-use case, provide defaults
11974         as well.
11975
11976 2005-09-02  Bruno Haible  <bruno@clisp.org>
11977
11978         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
11979         patches not yet found in the latest gettext release.
11980
11981 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
11982
11983         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
11984         to avoid a collision with bits/local_lim.h in glibc.
11985         All uses changed.  Problem reported by Dmitry V. Levin in
11986         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
11987
11988         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
11989         bugs in int versus size_t comparisons.
11990         (re_string_context_at): Fix bug where the code assumed that
11991         Idx is signed.
11992
11993         Use bool where appropriate.
11994         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
11995         All callers changed.
11996         (calc_eclosure_iter): Likewise, for ROOT arg.
11997         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
11998         (build_charclass_op): Likewise, for NON_MATCH arg.
11999         * lib/regex_internal.c (re_string_allocate, re_string_construct):
12000         (re_string_construct_common): Likewise, for ICASE arg.
12001         * lib/regexec.c (re_search_2_stub, re_search_stub):
12002         Likewise, for RET_LEN arg.
12003         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
12004         (set_regs): Likewise, for FL_BACKTRACK arg.
12005         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
12006         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
12007         (calc_eclosure_iter, parse_bracket_exp):
12008         Use bool for internal variables that are booleans.
12009         * lib/regexec.c (re_search_internal, check_matching,
12010         proceed_next_node):
12011         (set_regs, build_sifted_states, sift_states_bkref):
12012         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
12013         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
12014         (find_collation_sequence_value):
12015         Likewise.
12016         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
12017         (re_node_set_compare):
12018         Return bool, not int. All callers changed.
12019         * lib/regexec.c (check_halt_node_context, check_dst_limits):
12020         (build_trtable, check_node_accept): Likewise.
12021         * lib/regex_internal.h: Include stdbool.h.
12022
12023         Fix bugs uncovered when converting to bool.
12024         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
12025         failure instead of charging ahead blindly.
12026         * lib/regex_internal.c (register_state): Likewise.
12027         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
12028         for freeing internal storage.
12029         (group_nodes_into_DFA_states): Use unsigned int, not int, for
12030         bitset pieces used as boolean, to avoid undefined behavior
12031         on hosts that do int overflow checking.
12032
12033 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
12034
12035         * config/srclist.txt: Add glibc bugs 1285-1287.
12036
12037 2005-09-01  Jim Meyering  <jim@meyering.net>
12038
12039         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
12040         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
12041         Require gl_STAT_MACROS, too.
12042
12043 2005-09-01  Bruno Haible  <bruno@clisp.org>
12044
12045         * gnulib-tool (import): In the first-use case, provide defaults.
12046
12047 2005-09-01  Bruno Haible  <bruno@clisp.org>
12048
12049         * gnulib-tool (func_import): Remove the .tmp files.
12050
12051 2005-09-01  Bruno Haible  <bruno@clisp.org>
12052
12053         * gnulib-tool (func_import): Fix handling of symbolic links.
12054
12055 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
12056
12057         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
12058         old glibc regex code mishandles strings longer than 2**31 bytes.
12059         This patch fixes this when the regex code is used in gnulib
12060         (i.e., outside glibc).
12061
12062         This patch should not affect the use of the regex code inside
12063         glibc.  No doubt this problem also needs to be handled for glibc
12064         as well, but the result will be an incompatible change to the
12065         glibc ABI, and the old ABI will have to be supported too.  That
12066         can be the the subject for another patch.
12067
12068         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
12069         governing whether the rest of this patch is active.  By default,
12070         the macro is disabled and the patch has no effect.
12071         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
12072         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
12073         (struct re_pattern_buffer, re_search, re_search_2, re_match):
12074         (re_match_2, re_set_registers): Use the new types.
12075         * lib/regex_internal.h (Idx, re_hashval_t): New types.
12076         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
12077         New macros.
12078         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
12079         (re_string_context_at, bin_tree_t, re_dfastate_t):
12080         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
12081         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
12082         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
12083         (re_string_char_size_at, re_string_wchar_at):
12084         (re_string_elem_size_at):
12085         Use the new types and macros to port to 64-bit hosts.
12086         Use unsigned types for internal values, so that the code
12087         mostly works even for arrays larger than SSIZE_MAX.
12088         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
12089         (search_duplicated_node, calc_eclosure_iter, fetch_number):
12090         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
12091         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
12092         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
12093         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
12094         (calc_inveclosure, parse_dup_op, build_range_exp):
12095         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
12096         (fetch_number, create_token_tree, mark_opt_subexp):
12097         Likewise.
12098         * lib/regex_internal.c (re_string_construct_common,
12099         create_ci_newstate):
12100         (create_cd_newstate, re_string_allocate, re_string_construct):
12101         (re_string_realloc_buffers, build_wcs_upper_buffer):
12102         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
12103         (re_string_reconstruct, re_string_peek_byte_case):
12104         (re_string_fetch_byte_case, re_string_context_at):
12105         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
12106         (re_node_set_init_copy, re_node_set_add_intersect):
12107         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
12108         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
12109         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
12110         (re_acquire_state, re_acquire_state_context, register_state):
12111         Likewise.
12112         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
12113         search_cur_bkref_entry):
12114         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
12115         (re_search_internal, re_search_2_stub, re_search_stub)
12116         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
12117         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
12118         (update_cur_sifted_state, check_dst_limits):
12119         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
12120         (check_subexp_limits, sift_states_bkref, merge_state_array):
12121         (check_subexp_matching_top, get_subexp, get_subexp_sub):
12122         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
12123         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
12124         (expand_bkref_cache, check_node_accept_bytes):
12125         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
12126         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
12127         (acquire_init_state_context, check_halt_node_context):
12128         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
12129         (sift_states_backward, clean_state_log_if_needed):
12130         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
12131         (find_recover_state, transit_state_sb, transit_state_mb):
12132         (transit_state_bkref, build_trtable, match_ctx_clean):
12133         Likewise.
12134         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
12135         to work around an assumption that REG_MISSING is negative.
12136
12137         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
12138         (seek_collating_symbol_entry) [defined _LIBC]:
12139         (lookup_collation_sequence_value) [defined _LIBC]:
12140         (build_range_exp, build_collating_symbol) [defined _LIBC]:
12141         Use prototypes rather than old-style function definitions.
12142         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
12143         (transit_state_sb) [0]:
12144         (find_collation_sequence_value) [defined _LIBC]: Likewise.
12145
12146         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
12147         rm_eo.
12148
12149         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
12150         (optimize_subexps, lower_subexp):
12151         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
12152         since the signed shift might overflow.  Use 1u<<31 instead.
12153         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
12154         Likewise.
12155         * lib/regexec.c (check_dst_limits_calc_pos_1,
12156         check_subexp_matching_top): Likewise.
12157
12158         * lib/regcomp.c (optimize_subexps, lower_subexp):
12159         Use CHAR_BIT rather than 8, for clarity.
12160         * lib/regexec.c (check_dst_limits_calc_pos_1):
12161         (check_subexp_matching_top): Likewise.
12162         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
12163         have to worry about portability issues when shifting it left.
12164         Remove no-longer-needed test for table_size > 0.
12165         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
12166         in a word, as the resulting behavior is undefined.
12167         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
12168         in one case, a <= should have been an <, and in another case the
12169         whole test was missing.
12170         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
12171         the standard name CHAR_BIT.
12172         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
12173         this is not true on one's complement and signed-magnitude hosts.
12174
12175         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
12176         next_last_offset.
12177         (struct re_dfa_t): Remove unused member states_alloc.
12178         * lib/regcomp.c (init_dfa): Don't initialize unused members.
12179
12180 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
12181
12182         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
12183         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
12184         and large-file glibc and in 32-bit large-file Solaris.
12185
12186 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
12187
12188         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
12189         lengths fit in regoff_t; this isn't true if regoff_t is the same
12190         width as size_t.
12191         * lib/regex.c (re_search_internal): 5th arg is LAST_START
12192         (= START + RANGE) instead of RANGE.  This avoids overflow
12193         problems when regoff_t is the same width as size_t.
12194         All callers changed.
12195         (re_search_2_stub): Check for overflow when adding the
12196         sizes of the two strings.
12197         (re_search_stub): Check for overflow when adding START
12198         to RANGE; if it occurs, substitute the extreme value.
12199
12200 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
12201
12202         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
12203
12204 2005-08-31  Jim Meyering  <jim@meyering.net>
12205
12206         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
12207         a pointer-to-const.
12208         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
12209         (register_state): Likewise.
12210         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
12211         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
12212         (group_nodes_into_DFAstates): Likewise.
12213
12214 2005-08-31  Jim Meyering  <jim@meyering.net>
12215
12216         * check-module: Add a FIXME comment.
12217
12218 2005-08-31  Eric Blake  <ebb9@byu.net>
12219
12220         * modules/unistd-safer (Files): Add unistd--.h.
12221         * modules/stdio-safer (Files): Add stdio--.h.
12222
12223 2005-08-31  Derek Price  <derek@ximbiot.com>
12224
12225         * lib/getdelim.c (getdelim): Return EOF on EOF.
12226         Reported by Larry Jones <lawrence.jones@ugs.com>.
12227
12228 2005-08-31  Bruno Haible  <bruno@clisp.org>
12229
12230         Avoid unnecessary diffs in the generated lib/Makefile.am.
12231         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
12232         the generated files.
12233         (func_import): Don't set cmd.
12234
12235 2005-08-31  Bruno Haible  <bruno@clisp.org>
12236
12237         * lib/strstr.c: Include <stddef.h>, for NULL.
12238         * lib/strcasestr.c: Likewise.
12239         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
12240
12241 2005-08-31  Bruno Haible  <bruno@clisp.org>
12242
12243         * gnulib-tool: New option --macro-prefix.
12244         (func_import): Use macro_prefix.
12245         (import): Handle option --macro-prefix.
12246
12247 2005-08-31  Bruno Haible  <bruno@clisp.org>
12248
12249         * gnulib-tool (import): Rename most ac_* variables to cached_*.
12250         Also use new variables cached_lgpl, cached_libtool.
12251
12252 2005-08-31  Bruno Haible  <bruno@clisp.org>
12253
12254         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
12255         always instantiating them.
12256
12257 2005-08-31  Bruno Haible  <bruno@clisp.org>
12258
12259         * gnulib-tool (func_import): Read the previous cached settings
12260         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
12261         earlier added by gnulib but are now dropped. Warn when a gnulib file
12262         overwrites a non-gnulib file.
12263
12264 2005-08-31  Bruno Haible  <bruno@clisp.org>
12265
12266         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
12267         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
12268         projects that don't keep autogenerated files in CVS. Put into
12269         actioncmd only the specified modules, not the transitive closure.
12270
12271 2005-08-31  Bruno Haible  <bruno@clisp.org>
12272
12273         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
12274         Create directories that shall be filled.
12275         (import): Don't look for gl_* macros in configure.ac. Recurse across
12276         all directories containing a gnulib-cache.m4 files, if meaningful.
12277
12278 2005-08-31  Bruno Haible  <bruno@clisp.org>
12279
12280         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
12281         (import): Set seen_libtool when we see gl_LIBTOOL.
12282
12283 2005-08-31  Bruno Haible  <bruno@clisp.org>
12284
12285         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
12286         declaration macro definitions from generated gnulib.m4.
12287
12288 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
12289
12290         * lib/iconvme.h: Add prototype for iconv_alloc.
12291
12292 2005-08-29  Simon Josefsson  <jas@extundo.com>
12293
12294         * lib/iconvme.c: Fix errno.
12295
12296 2005-08-29  Bruno Haible  <bruno@clisp.org>
12297
12298         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
12299         that it works when the directory contains spaces.
12300
12301 2005-08-29  Bruno Haible  <bruno@clisp.org>
12302
12303         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
12304
12305 2005-08-29  Bruno Haible  <bruno@clisp.org>
12306
12307         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
12308         Emit more advice.
12309
12310 2005-08-29  Bruno Haible  <bruno@clisp.org>
12311         and Stepan Kasal  <kasal@ucw.cz>
12312
12313         * check-module: If more parameters are given, check each of them
12314         separately; add more exceptions, as noted by Jim Meyering.
12315         (check_module): New procedure.
12316         (%exempt_header): Now contains all exceptions.
12317
12318 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
12319
12320         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
12321
12322 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
12323
12324         * lib/iconvme.c: Split iconv_string into iconv_alloc.
12325
12326 2005-08-28  Bruno Haible  <bruno@clisp.org>
12327
12328         * m4/gnulib-tool.m4: New file.
12329
12330 2005-08-27  Jim Meyering  <jim@meyering.net>
12331
12332         * modules/unistd-safer (Files): Add pipe-safer.c.
12333         * modules/fcntl-safer (Files): Add creat-safer.c.
12334
12335 2005-08-27  Jim Meyering  <jim@meyering.net>
12336
12337         * m4/stdlib-safer.m4: New file.  From coreutils.
12338         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
12339         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
12340         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
12341         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
12342         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
12343
12344 2005-08-27  Jim Meyering  <jim@meyering.net>
12345
12346         * lib/fopen-safer.c: Merge minor changes from coreutils.
12347         * lib/dup-safer.c: Likewise.
12348         * lib/fd-safer.c: Likewise.
12349
12350         Merge from coreutils.
12351         * lib/stdio--.h: New file.
12352         * lib/stdlib--.h: New file.
12353         * lib/mkstemp-safer.c: New file.
12354
12355         GNU tar needs these.
12356         * lib/pipe-safer.c: New file.
12357         * lib/creat-safer.c: New file.
12358         * lib/fcntl--.h (creat): Define to creat_safer.
12359         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
12360         * lib/unistd--.h (pipe): Define to pipe_safer.
12361         * lib/unistd-safer.h: Declare pipe_safer.
12362
12363 2005-08-26  Simon Josefsson  <jas@extundo.com>
12364
12365         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
12366         Haible <bruno@clisp.org>.
12367
12368 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
12369
12370         * lib/regex_internal.h: Remove all references to
12371         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
12372         or better.
12373         (bitset_not, bitset_merge, bitset_not_merge):
12374         (bitset_mask, re_string_allocate, re_string_construct):
12375         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
12376         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
12377         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
12378         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
12379         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
12380         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
12381         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
12382         (re_acquire_state_context):
12383         Remove unnecessary forward decls.
12384         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
12385         Put __attribute at function definition,
12386         now that the function decl has been removed.
12387         * lib/regex_internal.c (re_string_peek_byte_case):
12388         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
12389         Likewise.
12390
12391 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
12392
12393         * m4/regex.m4: Add AC_PREREQ(2.50).
12394         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
12395
12396 2005-08-25  Simon Josefsson  <jas@extundo.com>
12397
12398         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
12399         __fsetlocking.
12400
12401 2005-08-25  Simon Josefsson  <jas@extundo.com>
12402
12403         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
12404         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
12405         GLIBC specific code.
12406
12407 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
12408
12409         Make regex safe for g++.  This fixes one real bug (an "err"
12410         that should have been "*err").  g++ problem reported by
12411         Sam Steingold.
12412         * lib/regex_internal.h (re_calloc): New macro, consistent with
12413         re_malloc etc.  All callers of calloc changed to use re_calloc.
12414         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
12415         not int.  All callers changed.
12416         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
12417         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
12418         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
12419         (find_recover_state): Change "err" to "*err"; this fixes what
12420         appears to be a real bug.
12421         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
12422         versus int.
12423
12424 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
12425
12426         * modules/regex (Depends-on): Add malloc, since the code
12427         assumes that !malloc(0) means failure.
12428
12429 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
12430
12431         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
12432
12433         alloca modernization/simplification for regex.
12434         * lib/regex.c: Remove portability cruft for alloca.  This no longer
12435         needs to be at the start of the file, and can be moved into
12436         regex_internal.h and simplified.
12437         * lib/regex_internal.h: Include <alloca.h>.
12438         (__libc_use_alloca) [!defined _LIBC]: New macro.
12439         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
12440         now works outside glibc.
12441
12442 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
12443
12444         * config/srclist.txt: Add glibc bugs 1241, 1245.
12445
12446 2005-08-25  Jim Meyering  <jim@meyering.net>
12447
12448         * lib/open-safer.c: Include <config.h>.
12449         Otherwise, we'd lose LARGEFILE support in any file using
12450         e.g. "fcntl--.h"
12451
12452 2005-08-25  Bruno Haible  <bruno@clisp.org>
12453
12454         * m4/minmax.m4: Require autoconf 2.52.
12455         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
12456         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
12457         alternatives of translit over the alphabet.
12458         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
12459
12460 2005-08-24  Simon Josefsson  <jas@extundo.com>
12461
12462         * tests/test-getpass.c: New file.
12463
12464 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
12465
12466         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
12467         for GNU regex features.
12468
12469 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
12470
12471         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
12472         * lib/regex.h (regerror): Likewise.
12473
12474         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
12475         requires this.  (The code never needed it.)
12476
12477         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
12478         All uses of recently-renamed identifiers changed to use the new,
12479         POSIX-compliant names.  The code will build and run just fine
12480         without these changes, but it's better to eat our own dog food
12481         and use the standard-conforming names.
12482
12483         * lib/regex.h: Fix a multitude of POSIX name space violations.
12484         These changes have an effect only for programs that define
12485         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
12486         do not change anything for programs compiled in the normal way.
12487         Also, there is no effect on the ABI.
12488
12489         (_REGEX_SOURCE): New macro.
12490         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
12491         defined and _GNU_SOURCE is not; this fixes a name space violation.
12492
12493         Rename the following macros to obey POSIX requirements.
12494         The old names are still visible as macros if _REGEX_SOURCE is defined.
12495         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
12496         RE_BACKSLASH_ESCAPE_IN_LISTS.
12497         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
12498         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
12499         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
12500         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
12501         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
12502         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
12503         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
12504         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
12505         (REG_INTERVALS): renamed from RE_INTERVALS.
12506         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
12507         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
12508         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
12509         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
12510         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
12511         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
12512         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
12513         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
12514         RE_UNMATCHED_RIGHT_PAREN_ORD.
12515         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
12516         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
12517         (REG_DEBUG): renamed from RE_DEBUG.
12518         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
12519         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
12520         unusual, since we can't clash with the POSIX REG_ICASE.
12521         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
12522         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
12523         (REG_NO_SUB): renamed from RE_NO_SUB.
12524         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
12525         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
12526         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
12527         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
12528         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
12529         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
12530         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
12531         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
12532         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
12533         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
12534         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
12535         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
12536         RE_SYNTAX_POSIX_MINIMAL_BASIC.
12537         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
12538         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
12539         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
12540         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
12541         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
12542         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
12543         (REG_FIXED): Renamed from REGS_FIXED.
12544         (REG_NREGS): Renamed from RE_NREGS.
12545
12546         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
12547         of other REG_* macros, since POSIX says the user is allowed to
12548         #undef these macros selectively.
12549
12550         (reg_errcode_t): Update comment stating what other tables need
12551         to be consistent.
12552
12553         Rename the following enum values to obey POSIX requirements.
12554         The old names are still visible as macros.
12555         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
12556         is not defined, since GNU is supposed to be a superset of POSIX as
12557         much as possible, and since we want reg_errcode_t to be a signed
12558         type for implementation consistency.
12559         (_REG_NOERROR): Renamed from REG_NOERROR.
12560         (_REG_NOMATCH): Renamed from REG_NOMATCH.
12561         (_REG_BADPAT): Renamed from REG_BADPAT.
12562         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
12563         (_REG_ECTYPE): Renamed from REG_ECTYPE.
12564         (_REG_EESCAPE): Renamed from REG_EESCAPE.
12565         (_REG_ESUBREG): Renamed from REG_ESUBREG.
12566         (_REG_EBRACK): Renamed from REG_EBRACK.
12567         (_REG_EPAREN): Renamed from REG_EPAREN.
12568         (_REG_EBRACE): Renamed from REG_EBRACE.
12569         (_REG_BADBR): Renamed from REG_BADBR.
12570         (_REG_ERANGE): Renamed from REG_ERANGE.
12571         (_REG_ESPACE): Renamed from REG_ESPACE.
12572         (_REG_BADRPT): Renamed from REG_BADRPT.
12573         (_REG_EEND): Renamed from REG_EEND.
12574         (_REG_ESIZE): Renamed from REG_ESIZE.
12575         (_REG_ERPAREN): Renamed from REG_ERPAREN.
12576         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
12577         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
12578         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
12579         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
12580
12581         (_REG_RE_NAME, _REG_RM_NAME): New macros.
12582         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
12583         changed.  But support the old name if the new one is not defined
12584         and if _REGEX_SOURCE.
12585
12586         Change the following member names in struct re_pattern_buffer.
12587         The old names are still supported if !_REGEX_SOURCE.
12588         The new names are always supported, regardless of _REGEX_SOURCE.
12589         (re_buffer): Renamed from buffer.
12590         (re_allocated): Renamed from allocated.
12591         (re_used): Renamed from used.
12592         (re_syntax): Renamed from syntax.
12593         (re_fastmap): Renamed from fastmap.
12594         (re_translate): Renamed from translate.
12595         (re_can_be_null): Renamed from can_be_null.
12596         (re_regs_allocated): Renamed from regs_allocated.
12597         (re_fastmap_accurate): Renamed from fastmap_accurate.
12598         (re_no_sub): Renamed from no_sub.
12599         (re_not_bol): Renamed from not_bol.
12600         (re_not_eol): Renamed from not_eol.
12601         (re_newline_anchor): Renamed from newline_anchor.
12602
12603         Change the following member names in struct re_registers.
12604         The old names are still supported if !_REGEX_SOURCE.
12605         The new names are always supported, regardless of _REGEX_SOURCE.
12606         (rm_num_regs): Renamed from num_regs.
12607         (rm_start): Renamed from start.
12608         (rm_end): Renamed from end.
12609
12610         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
12611         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
12612         Prepend __ to parameter names.
12613
12614         Undo yesterday's changes.
12615
12616 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
12617
12618         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
12619         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
12620         lib/regex.c.
12621
12622 2005-08-24  Jim Meyering  <jim@meyering.net>
12623
12624         Sync from coreutils.
12625         * m4/fcntl-safer.m4: New file.
12626
12627         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
12628         and object files for this module.
12629
12630 2005-08-24  Jim Meyering  <jim@meyering.net>
12631
12632         Sync from coreutils.
12633         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
12634
12635 2005-08-24  Jim Meyering  <jim@meyering.net>
12636
12637         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
12638         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
12639
12640 2005-08-24  Jim Meyering  <jim@meyering.net>
12641
12642         * modules/fcntl-safer: New module.
12643         * modules/fts (Depends-on): Add fcntl-safer.
12644         * MODULES.html.sh (File descriptor based Input/Output):
12645         Add fcntl-safer.
12646
12647 2005-08-24  Bruno Haible  <bruno@clisp.org>
12648
12649         Support for unit test modules.
12650         * modules/README: Mention tests modules.
12651         * modules/TEMPLATE-TESTS: New file.
12652         * gnulib-tool: New options --extract-tests-module, --with-tests and
12653         --tests-base (unused for the moment).
12654         (testsbase, inctests): New variables.
12655         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
12656         (func_verify_module): Exclude TEMPLATE-TESTS.
12657         (func_verify_nontests_module, func_verify_tests_module): New functions.
12658         (func_get_dependencies): Add implicit dependency for tests modules.
12659         (func_get_tests_module): New function.
12660         (func_modules_transitive_closure): When --with-tests was specified,
12661         include the unit tests as well, unless explicitly avoided.
12662         (func_emit_lib_Makefile_am): Ignore the tests modules here.
12663         (func_emit_tests_Makefile_am): New function.
12664         (func_create_testdir): When --with-tests was specified, emit a
12665         tests/ directory.
12666         * MODULES.html.sh (Future developments): Update.
12667
12668 2005-08-24  Bruno Haible  <bruno@clisp.org>
12669
12670         * modules/tls-tests: New file.
12671         * tests/test-tls.c: New file, from GNU gettext.
12672
12673 2005-08-24  Bruno Haible  <bruno@clisp.org>
12674
12675         * modules/lock-tests: New file.
12676         * tests/test-lock.c: New file, from GNU gettext.
12677
12678 2005-08-24  Bruno Haible  <bruno@clisp.org>
12679
12680         * lib/lock.h: Add multiple inclusion guard.
12681         * lib/tls.h: Add multiple inclusion guard.
12682
12683 2005-08-24  Bruno Haible  <bruno@clisp.org>
12684
12685         * gnulib-tool: Add support for the --aux-dir option to
12686         --create-testdir, --create-megatestdir, --test, --megatest.
12687         (func_create_testdir, func_create_megatestdir): Optionally emit a
12688         AC_CONFIG_AUX_DIR directive.
12689         (create-testdir, create-megatestdir, test, megatest): Provide a
12690         default value for $auxdir.
12691
12692 2005-08-24  Bruno Haible  <bruno@clisp.org>
12693
12694         * gnulib-tool (import): Use compound statement instead of subshell
12695         where possible.
12696
12697 2005-08-24  Bruno Haible  <bruno@clisp.org>
12698
12699         * gnulib-tool (import): Change --aux-dir default to "build-aux".
12700
12701 2005-08-24  Bruno Haible  <bruno@clisp.org>
12702
12703         * gnulib-tool (func_version): Update.
12704
12705 2005-08-24  Bruno Haible  <bruno@clisp.org>
12706
12707         * gnulib-tool (func_import, func_create_testdir,
12708         func_create_megatestdir): Quote all autoconf macro arguments.
12709
12710 2005-08-24  Bruno Haible  <bruno@clisp.org>
12711
12712         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
12713         option --force, because --force causes the aclocal.m4 of each
12714         subdirectory to be newer than the corresponding config.h.in.
12715
12716 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
12717
12718         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
12719         All contents moved to gl_REGEX.
12720         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
12721         assume that it does.
12722
12723 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
12724
12725         * lib/regex.h (REG_NOSYS)
12726         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
12727         Define, since POSIX requires it as of 2001.
12728         (_REG_ENOSYS)
12729         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
12730         New private symbol, used to keep the enum signed in all cases.
12731         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
12732         Youngman in
12733         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
12734
12735         * lib/regex_internal.c (re_string_skip_chars, register_state):
12736         (calc_state_hash):
12737         Remove forward decls; no longer needed now that we use prototypes.
12738         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
12739         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
12740         (clean_state_log_if_needed): Likewise.
12741
12742 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
12743
12744         * config/srclist.txt: Add glibc bugs 1231-1233.
12745
12746 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
12747
12748         Fix problems reported by Sam Steingold in
12749         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
12750         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
12751         assumed that reg_errcode_t is a signed type, which is not
12752         necessarily true if _XOPEN_SOURCE is not defined.
12753         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
12754         since some compilers warn about it otherwise.
12755
12756 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
12757
12758         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
12759         (init_word_char, create_initial_state, duplicate_node_closure):
12760         (fetch_token, peek_token_bracket, build_range_exp):
12761         (build_collating_symbol): Remove forward decls; no longer needed
12762         now that we use prototypes.
12763
12764         * lib/regcomp.c:
12765         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
12766         (re_compile_fastmap_iter, regcomp, regerror, regfree):
12767         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
12768         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
12769         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
12770         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
12771         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
12772         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
12773         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
12774         (build_range_exp, build_collating_symbol, parse_bracket_exp):
12775         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
12776         (build_charclass, build_charclass_op, fetch_number, create_tree):
12777         (create_token_tree, mark_opt_subexp, duplicate_tree):
12778         Use prototypes rather than old-style definitions.
12779
12780         * lib/regex_internal.c:
12781         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
12782         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
12783         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
12784         (re_string_reconstruct, re_string_peek_byte_case):
12785         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
12786         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
12787         (re_node_set_init_copy, re_node_set_add_intersect):
12788         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
12789         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
12790         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
12791         (re_acquire_state, re_acquire_state_context, register_state):
12792         (create_ci_newstate, create_cd_newstate, free_state):
12793         Likewise.
12794         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
12795         re_search_2):
12796         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
12797         (re_search_internal, prune_impossible_nodes):
12798         (acquire_init_state_context, check_matching, static):
12799         (check_halt_node_context, check_halt_state_context, proceed_next_node):
12800         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
12801         (update_regs, sift_states_backward, build_sifted_states):
12802         (clean_state_log_if_needed, merge_state_array):
12803         (update_cur_sifted_state, add_epsilon_src_nodes):
12804         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
12805         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
12806         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
12807         (find_recover_state, check_subexp_matching_top, transit_state_mb):
12808         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
12809         (check_arrival, check_arrival_add_next_nodes):
12810         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
12811         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
12812         (check_node_accept_bytes, check_node_accept, extend_buffers):
12813         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
12814         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
12815         (sift_ctx_init):
12816         Likewise.
12817
12818         * lib/regex_internal.h:
12819         (re_string_allocate, re_string_construct, re_string_reconstruct):
12820         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
12821         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
12822         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
12823         (re_string_context_at, re_string_peek_byte_case):
12824         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
12825         is defined, since we now use prototypes always.
12826
12827         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
12828         C89 or better.  All uses removed.
12829
12830 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
12831
12832         * config/srclist.txt: Add glibc bugs 1220-1227.
12833
12834 2005-08-20  Jim Meyering  <jim@meyering.net>
12835
12836         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
12837         of unused local, dfa.
12838
12839 2005-08-20  Bruno Haible  <bruno@clisp.org>
12840
12841         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
12842
12843 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
12844
12845         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
12846         (re_node_set_insert_last, re_dfa_add_node):
12847         Rename local variables to avoid GCC shadowing warnings.
12848
12849 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
12850
12851         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
12852         [defined lint]: Suppress bogus uninitialized-variable warnings.
12853
12854         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
12855         and let the caller return REG_ESPACE if out of space.  This
12856         removes an uninitialied-variable warning with GCC 4.0.1, and also
12857         avoids taking the address of a local variable.  All callers
12858         changed.
12859
12860 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
12861
12862         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
12863         $LIBCSRC/posix/regexec.c.
12864         Add glibc bug 1217 for regcomp.c.
12865
12866 2005-08-19  Jim Meyering  <jim@meyering.net>
12867
12868         * lib/regexec.c (proceed_next_node): Redo local variables to
12869         avoid GCC shadowing warnings.
12870
12871 2005-08-18  Bruno Haible  <bruno@clisp.org>
12872
12873         * lib/strstr.c (strstr): Fix return value in multibyte case.
12874         * lib/strcasestr.c (strcasestr): Likewise.
12875
12876 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
12877
12878         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
12879
12880 2005-08-17  Jim Meyering  <jim@meyering.net>
12881
12882         Make the %s format (seconds since the epoch) work for a negative
12883         number and when used with a zero-padded field width, e.g. %015s.
12884
12885         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
12886         label so that it precedes the code to set `digits'.  Otherwise,
12887         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
12888         print `00-22'.  Now, it prints `-0022', as it should.
12889
12890 2005-08-17  Bruno Haible  <bruno@clisp.org>
12891
12892         * modules/strstr (Files): Add m4/mbrtowc.m4.
12893         (Depends-on): Add mbuiter.
12894
12895 2005-08-17  Bruno Haible  <bruno@clisp.org>
12896
12897         * modules/strcasestr: New file.
12898         * MODULES.html.sh (String handling, based on ANSI C 89): Add
12899         strcasestr.
12900
12901 2005-08-17  Bruno Haible  <bruno@clisp.org>
12902
12903         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
12904
12905 2005-08-17  Bruno Haible  <bruno@clisp.org>
12906
12907         * modules/mbuiter: New file.
12908         * MODULES.html.sh (Extended multibyte and wide character utilities):
12909         Add mbuiter.
12910
12911 2005-08-17  Bruno Haible  <bruno@clisp.org>
12912
12913         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
12914         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
12915
12916 2005-08-17  Bruno Haible  <bruno@clisp.org>
12917
12918         * m4/strcasestr.m4: New file.
12919
12920 2005-08-17  Bruno Haible  <bruno@clisp.org>
12921
12922         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
12923         * lib/strstr.c: Completely rewritten, with multibyte locale support.
12924
12925 2005-08-17  Bruno Haible  <bruno@clisp.org>
12926
12927         * lib/strcasestr.h: New file.
12928         * lib/strcasestr.c: New file.
12929
12930 2005-08-17  Bruno Haible  <bruno@clisp.org>
12931
12932         * lib/strcasecmp.c: Use mbuiter.h.
12933
12934 2005-08-17  Bruno Haible  <bruno@clisp.org>
12935
12936         * lib/mbuiter.h: New file.
12937
12938 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
12939
12940         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
12941         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
12942         and gl_GETOPT are both invoked via different paths (as happens
12943         with GNU tar CVS because it uses both argp and getopt), the former
12944         wins.
12945
12946 2005-08-16  Bruno Haible  <bruno@clisp.org>
12947
12948         * modules/tls: New file.
12949         * MODULES.html.sh (Multithreading): Add tls.
12950
12951 2005-08-16  Bruno Haible  <bruno@clisp.org>
12952
12953         * modules/strnlen1: New file.
12954         * MODULES.html.sh (String handling): Add strnlen1.
12955
12956 2005-08-16  Bruno Haible  <bruno@clisp.org>
12957
12958         * modules/strcase (Files): Add m4/mbrtowc.m4.
12959         (Depends-on): Add strnlen1, mbchar.
12960
12961 2005-08-16  Bruno Haible  <bruno@clisp.org>
12962
12963         * modules/mbiter: New file.
12964         * MODULES.html.sh (Extended multibyte and wide character utilities):
12965         Add mbiter.
12966
12967 2005-08-16  Bruno Haible  <bruno@clisp.org>
12968
12969         * modules/mbfile: New file.
12970         * MODULES.html.sh (Extended multibyte and wide character utilities):
12971         Add mbfile.
12972
12973 2005-08-16  Bruno Haible  <bruno@clisp.org>
12974
12975         * modules/mbchar: New file.
12976         * MODULES.html.sh (Extended multibyte and wide character utilities):
12977         New section.
12978
12979 2005-08-16  Bruno Haible  <bruno@clisp.org>
12980
12981         * m4/tls.m4: New file, from GNU gettext.
12982
12983 2005-08-16  Bruno Haible  <bruno@clisp.org>
12984
12985         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
12986         always.
12987         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
12988
12989 2005-08-16  Bruno Haible  <bruno@clisp.org>
12990
12991         * m4/mbiter.m4: New file.
12992
12993 2005-08-16  Bruno Haible  <bruno@clisp.org>
12994
12995         * m4/mbfile.m4: New file.
12996
12997 2005-08-16  Bruno Haible  <bruno@clisp.org>
12998
12999         * m4/mbchar.m4: New file.
13000
13001 2005-08-16  Bruno Haible  <bruno@clisp.org>
13002
13003         * lib/tls.h: New file, from GNU gettext.
13004         * lib/tls.c: New file, from GNU gettext.
13005
13006 2005-08-16  Bruno Haible  <bruno@clisp.org>
13007
13008         * lib/strnlen1.h: New file.
13009         * lib/strnlen1.c: New file.
13010
13011 2005-08-16  Bruno Haible  <bruno@clisp.org>
13012
13013         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
13014         (mbi_init): Update.
13015         (mbi_avail, mbi_advance): Let the iteration end before the terminating
13016         NUL byte, not after it.
13017
13018 2005-08-16  Bruno Haible  <bruno@clisp.org>
13019
13020         * lib/strcase.h (strcasecmp): Add note in comments.
13021         * lib/strncasecmp.c: Use code from strcasecmp.c.
13022         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
13023         (strcasecmp): Work correctly in multibyte locales.
13024
13025 2005-08-16  Bruno Haible  <bruno@clisp.org>
13026
13027         * lib/mbiter.h: New file.
13028
13029 2005-08-16  Bruno Haible  <bruno@clisp.org>
13030
13031         * lib/mbfile.h: New file.
13032
13033 2005-08-16  Bruno Haible  <bruno@clisp.org>
13034
13035         * lib/mbchar.h: New file.
13036         * lib/mbchar.c: New file.
13037
13038 2005-08-16  Bruno Haible  <bruno@clisp.org>
13039
13040         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
13041         the valid ones. Makes the comparison operations transitive:
13042         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
13043         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
13044
13045 2005-08-15  Simon Josefsson  <jas@extundo.com>
13046
13047         * modules/ssize_t (License): Change to 'unlimited'.
13048
13049         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
13050
13051 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
13052
13053         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
13054         Add comments for each pending glibc patch.
13055
13056 2005-08-15  Bruno Haible  <bruno@clisp.org>
13057
13058         * lib/regex.h (__restrict_arr): Don't define to __restrict if
13059         __cplusplus is defined.
13060
13061 2005-08-14  Jim Meyering  <jim@meyering.net>
13062
13063         Sync from coreutils.
13064
13065         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
13066         Use the hash-table-based cycle-detection code not just when
13067         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
13068         Reported by James Youngman in
13069         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
13070         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
13071         FTS_TIGHT_CYCLE_CHECK.
13072         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
13073         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
13074         once again.
13075         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
13076         * lib/fts.c (fd_safer): Remove decl.
13077         Include fcntl--.h rather than unistd-safer.h
13078         (fts_safe_changedir): Don't call fd_safer; no longer needed
13079         now that we include fcntl--.h.
13080
13081 2005-08-12  Simon Josefsson  <jas@extundo.com>
13082
13083         * modules/getndelim2: Use ssize_t module.
13084         * modules/getnline: Likewise.
13085         * modules/safe-read: Likewise.
13086         * modules/xreadlink: Likewise.
13087
13088         * modules/ssize_t: New file.
13089
13090 2005-08-12  Simon Josefsson  <jas@extundo.com>
13091
13092         * m4/readline.m4: Look for termcap, curses or ncurses if required.
13093
13094 2005-08-12  Simon Josefsson  <jas@extundo.com>
13095
13096         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
13097         ssize_t.
13098
13099 2005-08-12  Simon Josefsson  <jas@extundo.com>
13100
13101         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
13102         readline, getdelim and check_version.
13103         (Support for systems lacking ISO C 99: Sizes of integer types):
13104         Add size_max.
13105
13106 2005-08-12  Bruno Haible  <bruno@clisp.org>
13107
13108         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
13109
13110 2005-08-11  Simon Josefsson  <jas@extundo.com>
13111
13112         * modules/readline: New file.
13113
13114         * modules/strnlen (Files): Add strnlen.h.
13115
13116 2005-08-11  Simon Josefsson  <jas@extundo.com>
13117
13118         * m4/readline.m4: New file.
13119
13120 2005-08-11  Simon Josefsson  <jas@extundo.com>
13121
13122         * lib/readline.h, readline.c: New file.
13123
13124 2005-08-11  Simon Josefsson  <jas@extundo.com>
13125
13126         * doc/gnulib.texi (Initial import, Finishing touches): Mention
13127         gl_AVOID.
13128
13129 2005-08-11  Bruno Haible  <bruno@clisp.org>
13130
13131         * lib/strnlen.h (strnlen): Change parameter name to match comment.
13132
13133 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
13134
13135         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
13136
13137 2005-08-10  Simon Josefsson  <jas@extundo.com>
13138
13139         * tests/test-iconvme.c: New file.
13140
13141 2005-08-10  Simon Josefsson  <jas@extundo.com>
13142
13143         * m4/strnlen.m4: New file.
13144
13145         * m4/strndup.m4: Don't check for strnlen declaration, done in
13146         strnlen.m4.
13147
13148 2005-08-10  Simon Josefsson  <jas@extundo.com>
13149
13150         * lib/strndup.c: Use strnlen.h.
13151
13152         * lib/strnlen.h: New file.
13153
13154 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
13155
13156         * README: Typos.
13157
13158 2005-08-02  Simon Josefsson  <jas@extundo.com>
13159
13160         * modules/readline: New file.
13161
13162 2005-08-02  Simon Josefsson  <jas@extundo.com>
13163
13164         * modules/getdelim: New file.
13165
13166         * modules/getline: Rewrite, don't use getndelim2.
13167
13168 2005-08-02  Simon Josefsson  <jas@extundo.com>
13169
13170         * m4/getline.m4: Separate out getdelim stuff into separate module.
13171
13172         * m4/getdelim.m4: New file.
13173
13174 2005-08-02  Simon Josefsson  <jas@extundo.com>
13175
13176         * lib/getline.h, getline.c: Rewrite.
13177
13178         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
13179
13180 2005-07-31  Bruno Haible  <bruno@clisp.org>
13181
13182         * lib/lock.h (gl_lock_initializer): New macro.
13183         (gl_lock_define_initialized): Use it.
13184         (gl_rwlock_initializer): New macro.
13185         (gl_rwlock_define_initialized): Use it.
13186         (gl_recursive_lock_initializer): New macro.
13187         (gl_recursive_lock_define_initialized): Use it.
13188
13189 2005-07-30  Karl Berry  <karl@gnu.org>
13190
13191         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
13192         Report from Ben Pfaff, regarding getopt.
13193
13194 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
13195
13196         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
13197         normal way.
13198         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
13199         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
13200         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
13201         (gl_GETOPT): Use the new macros.  Most of the implementation
13202         is moved to the new macros.  This is for programs like Emacs
13203         that don't want all the functionality of gl_GETOPT.
13204
13205 2005-07-26  Bruno Haible  <bruno@clisp.org>
13206
13207         * m4/lock.m4: Update from GNU gettext.
13208
13209 2005-07-26  Bruno Haible  <bruno@clisp.org>
13210
13211         * lib/lock.h: Update from GNU gettext.
13212         * lib/lock.c: Update from GNU gettext.
13213
13214 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
13215
13216         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
13217         obsolescent AC_TRY_RUN.  Include the default includes files, for
13218         'exit'.
13219
13220 2005-07-24  Bruno Haible  <bruno@clisp.org>
13221
13222         * modules/visibility: New file.
13223         * MODULES.html.sh (Misc): Add visibility.
13224
13225 2005-07-24  Bruno Haible  <bruno@clisp.org>
13226
13227         * m4/visibility.m4: New file.
13228
13229 2005-07-24  Bruno Haible  <bruno@clisp.org>
13230
13231         * doc/visibility.texi: New file.
13232
13233 2005-07-22  Bruno Haible  <bruno@clisp.org>
13234
13235         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
13236         $(ALLOCA_H), redundant through BUILT_SOURCES.
13237         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
13238         redundant through BUILT_SOURCES.
13239         * modules/byteswap (Makefile.am): Remove explicit dependency on
13240         $(BYTESWAP_H), redundant through BUILT_SOURCES.
13241         * modules/fnmatch (Makefile.am): Remove explicit dependency on
13242         $(FNMATCH_H), redundant through BUILT_SOURCES.
13243         * modules/getopt (Makefile.am): Remove explicit dependency on
13244         $(GETOPT_H), redundant through BUILT_SOURCES.
13245         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
13246         redundant through BUILT_SOURCES.
13247         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
13248         redundant through BUILT_SOURCES.
13249         * modules/stdbool (Makefile.am): Remove explicit dependency on
13250         $(STDBOOL_H), redundant through BUILT_SOURCES.
13251         * modules/stdint (Makefile.am): Remove explicit dependency on
13252         $(STDINT_H), redundant through BUILT_SOURCES.
13253         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
13254         Remove explicit dependency on $(SYSEXITS_H).
13255         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
13256
13257 2005-07-18  Simon Josefsson  <jas@extundo.com>
13258
13259         * lib/check-version.c (check_version): Accept identical versions too.
13260
13261 2005-07-18  Bruno Haible  <bruno@clisp.org>
13262
13263         * modules/lock: New file.
13264         * MODULES.html.sh (Multithreading): New section.
13265
13266 2005-07-18  Bruno Haible  <bruno@clisp.org>
13267
13268         * m4/lock.m4: New file, from GNU gettext.
13269
13270 2005-07-18  Bruno Haible  <bruno@clisp.org>
13271
13272         * lib/lock.h: New file, from GNU gettext.
13273         * lib/lock.c: New file, from GNU gettext.
13274
13275 2005-07-18  Bruno Haible  <bruno@clisp.org>
13276
13277         * lib/lock.h (gl_once_t): New type.
13278         (gl_once_define, gl_once): New macros.
13279         * lib/lock.c (fresh_once): New variable.
13280         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
13281         functions.
13282
13283 2005-07-16  Simon Josefsson  <jas@extundo.com>
13284
13285         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
13286         workaround, suggested by Bruno.
13287
13288 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
13289
13290         * modules/xalloc (Depends-on): Add xalloc-die.
13291         * modules/xvasprintf (Depends-on): Add xalloc-die.
13292
13293 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
13294
13295         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
13296         with a minor change.
13297
13298 2005-07-15  Bruno Haible  <bruno@clisp.org>
13299
13300         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
13301         When using lib/poll.c, define poll as rpl_poll.
13302
13303 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
13304
13305         * modules/argp (Depends-on): Remove unlocked-io.
13306
13307 2005-07-14  Derek Price  <derek@ximbiot.com>
13308
13309         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
13310         for glob symlink bug.
13311
13312 2005-07-14  Bruno Haible  <bruno@clisp.org>
13313
13314         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
13315         Instead, test for *_unlocked function declarations directly.
13316
13317 2005-07-11  Simon Josefsson  <jas@extundo.com>
13318
13319         * modules/size_max: New file.
13320
13321         * modules/xsize: Depend on size_max module for size_max.m4.
13322
13323 2005-07-11  Simon Josefsson  <jas@extundo.com>
13324
13325         * lib/size_max.h: New file.
13326
13327 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
13328
13329         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
13330         copyright symbol and the year.
13331         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
13332         (version_etc_va): Use parameterized copyright notice.
13333         Reword to conform to the current GNU coding standards.
13334
13335 2005-07-11  Karl Berry  <karl@gnu.org>
13336
13337         * doc/gnulib.texi (Quoting): new node.
13338         (Initial import): more info, from Patrice.
13339
13340 2005-07-11  Bruno Haible  <bruno@clisp.org>
13341
13342         * gnulib-tool (func_usage): Document option --avoid.
13343         (Command line options): Handle --avoid.
13344         (func_acceptable): New function.
13345         (func_modules_transitive_closure): Use it.
13346
13347 2005-07-11  Bruno Haible  <bruno@clisp.org>
13348
13349         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
13350         Reported by Jim Meyering.
13351
13352 2005-07-10  Bruno Haible  <bruno@clisp.org>
13353
13354         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
13355         Needed when size_t is smaller than 'unsigned int'.
13356         Reported by Paul Eggert.
13357
13358 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
13359
13360         * modules/argp (Depends-on): Add unlocked-io
13361
13362 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
13363
13364         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
13365         block of defines.
13366
13367 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
13368
13369         * config/srclist.txt: Comment out regcomp.c, since we have a porting
13370         fix now.
13371
13372 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
13373         and Paul Eggert  <eggert@cs.ucla.edu>
13374
13375         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
13376         in wint_t, not wchar_t.  Remove now-unnecessary cast.
13377
13378 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
13379
13380         * modules/regex (Files): Add lib/regex_internal.c,
13381         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
13382         (Depends-on): Add extensions.
13383         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
13384
13385 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
13386
13387         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
13388         pathconf.
13389         * m4/same.m4 (gl_SAME): Likewise.
13390         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
13391
13392         * m4/regex.m4: Adjust to new libc regex implementation.
13393         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
13394         all the .c and .h parts of (the new) regex.
13395         Quote the m4 stuff better.
13396         Check for RE_ICASE bug of old gnulib.
13397         Check for REG_STARTEND of recent libc.
13398         Rename local variables from jm_* to gl_*.
13399         Quote operand of "test -f".
13400         Say "recent enough" version of libc, not "version 2".
13401         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
13402         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
13403         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
13404         Remove check for btowc, isascii.
13405         Require AM_LANGINFO_CODESET.
13406
13407 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
13408
13409         * lib/regex.c, regex.h: Sync from libc.
13410         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
13411         * lib/regexec.c:
13412         New files, synced from libc, except that regex_internal.h
13413         currently has a small porting fix.
13414
13415 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
13416
13417         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
13418         regex_internal.c, regexec.c.
13419         Add regex_internal.h too, but as a comment, since the libc version
13420         is currently broken in gnulib mode.
13421
13422 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
13423
13424         Support programs like Emacs that use gnulib but not gettext.
13425         * MODULES.html.sh (Internationalization functions): Add gettext-h.
13426         * modules/gettext-h: New file.
13427         * modules/gettext (Files): Remove lib/gettext.h.
13428         (Depends-on): Add gettext-h.
13429         (Makefile.am): Remove lib_SOURCES.
13430         * modules/argmatch, modules/c-stack, modules/closeout:
13431         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
13432         * modules/execute, modules/file-type, modules/getaddrinfo:
13433         * modules/getopt, modules/human, modules/javacomp:
13434         * modules/javaexec, modules/mkdir-p, modules/obstack:
13435         * modules/openat, modules/pagealign_alloc, modules/pipe:
13436         * modules/quotearg, modules/regex, modules/rpmatch:
13437         * modules/unicodeio, modules/userspec, modules/version-etc:
13438         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
13439         * modules/xsetenv:
13440         Depend on gettext-h, not gettext.
13441
13442 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
13443
13444         * gnulib-tool (func_import): Add support for 'public domain' license.
13445         * modules/alloca, modules/atexit, modules/memmove:
13446         Now public domain, not GPL.
13447         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
13448         * modules/realloc, modules/strerror, modules/strtod:
13449         Now LGPL, not GPL.
13450
13451 2005-07-05  Bruno Haible  <bruno@clisp.org>
13452
13453         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
13454         autoconf CVS. Needed for mingw.
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         * modules/strftime (Depends-on): Remove dependency on tzset.
13460
13461 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
13462
13463         Remove the dependency of the strftime module on the tzset module.
13464         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
13465         gl_FUNC_TZSET_CLOBBER.
13466
13467 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
13468
13469         Remove the dependency of the strftime module on the tzset module.
13470         * lib/strftime.c (my_strftime)
13471         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
13472         Copy the input structure, to work around some of the bug with
13473         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
13474         Solaris releases, you should also use the tzset module, but we won't
13475         require it as a dependency any more since we don't want LGPLed code
13476         to depend on GPLed code.
13477
13478 2005-07-02  Jim Meyering  <jim@meyering.net>
13479
13480         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
13481         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
13482         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
13483         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
13484
13485 2005-07-02  Jim Meyering  <jim@meyering.net>
13486
13487         * lib/backupfile.c (backup_args): Change a `0' to NULL.
13488
13489 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
13490
13491         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
13492         declares only 'struct timespec;' (!).
13493
13494 2005-07-01  Jim Meyering  <jim@meyering.net>
13495
13496         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
13497         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
13498         * lib/save-cwd.c, tempname.c:
13499         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
13500         and don't include <sys/file.h>).
13501
13502 2005-06-29  Jim Meyering  <jim@meyering.net>
13503
13504         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
13505         type name.  Use the variable name instead.
13506         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
13507         Likewise.
13508
13509 2005-06-28  Simon Josefsson  <jas@extundo.com>
13510
13511         * modules/check-version (Files): Add check-version.m4.
13512
13513 2005-06-28  Simon Josefsson  <jas@extundo.com>
13514
13515         * m4/check-version.m4: New file, suggested by Jim Meyering
13516         <jim@meyering.net>.
13517
13518 2005-06-28  Simon Josefsson  <jas@extundo.com>
13519
13520         * lib/check-version.h, lib/check-version.c: New files.
13521
13522 2005-06-28  Simon Josefsson  <jas@extundo.com>
13523
13524         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
13525         collision with global variable.  Better indentation.  Don't
13526         increment buffer pointer beyond buffer end.  Based on comments
13527         from Paul Eggert <eggert@cs.ucla.edu>.
13528
13529         * lib/base64.h: Indent.
13530
13531 2005-06-28  Simon Josefsson  <jas@extundo.com>
13532
13533         * doc/gnulib.texi (Library version handling): New section.
13534
13535 2005-06-28  Jim Meyering  <jim@meyering.net>
13536
13537         * check-module (find_included_lib_files): Hard-code another
13538         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
13539         but modules/fts-lgpl (correctly) does not list those files.
13540
13541         * modules/canonicalize (Files): Add lib/pathmax.h.
13542
13543 2005-06-25  Simon Josefsson  <jas@extundo.com>
13544
13545         * modules/check-version: New file.
13546
13547 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
13548
13549         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
13550         initializer of struct addrinfo, as an indication that we don't
13551         care how many members the structure has.
13552
13553 2005-06-24  Derek Price  <derek@ximbiot.com>
13554         and Bruno Haible  <bruno@clisp.org>
13555
13556         Remove stat module & update lstat.
13557         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
13558         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
13559         * m4/stat.m4: Remove this file.
13560
13561 2005-06-24  Derek Price  <derek@ximbiot.com>
13562         and Bruno Haible  <bruno@clisp.org>
13563
13564         Remove stat module & update lstat.
13565         * lib/stat.c: Remove this file...
13566         (slash_aware_lstat): ...moving this content and its support...
13567         * lib/lstat.c (rpl_lstat): ...into here.
13568         * lib/lstat.h: New file.
13569
13570 2005-06-24  Derek Price  <derek@ximbiot.com>
13571         and Bruno Haible  <bruno@clisp.org>
13572
13573         Remove stat module & update lstat.
13574         * config/srclist.txt (libc sources): Remove stat.
13575
13576 2005-06-24  Derek Price  <derek@ximbiot.com>
13577         and Bruno Haible  <bruno@clisp.org>
13578
13579         Remove stat module & update lstat.
13580         * MODULES.html.sh (stat): Remove.
13581         * MODULES.html: Regenerated.
13582         * modules/lstat (Description): Correct function name.
13583         (Files): Add "lstat.h".
13584         (Depends-on): Remove stat, add xalloc, stat-macros.
13585         * modules/stat: Remove this file.
13586         (Include): Add "lstat.h", remove <sys/stat.h>.
13587
13588 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
13589
13590         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
13591         (ranged_convert): Don't save conversion in a temporary struct.
13592         This causes a warning with GCC 4.0.0, and anyway in the typical
13593         case it's not worth the extra 100 bytes or so of code.
13594         (ranged_convert, __mktime_internal): When calling a function via a
13595         pointer P, use P () rather than (*P) (), as we now assume C89 or
13596         better.
13597
13598 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
13599
13600         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
13601         "who -r" failed to give output.  Problem reported by Tim Waugh.
13602
13603         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
13604         (xcalloc): Use it to avoid needless tests.
13605         Problem reported by Jim Meyering.
13606
13607 2005-06-20  Derek Price  <derek@ximbiot.com>
13608
13609         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
13610         unnecessary for Autoconfs > 2.59c.
13611
13612 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
13613
13614         * lib/argp.h (__option_is_short): Check upper limit of
13615         __key. Isprint() requires its argument to have the value
13616         of an unsigned char or EOF.
13617
13618 2005-06-16  Jim Meyering  <jim@meyering.net>
13619
13620         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
13621         when either N or S is zero.
13622
13623 2005-06-16  Derek Price  <derek@ximbiot.com>
13624
13625         * m4/bison.m4: Declare YACC & YFLAGS precious.
13626
13627 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
13628
13629         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
13630         multibyte string or pattern, fall back on unibyte matching.
13631         Problem reported by James Youngman.
13632
13633 2005-06-08  Bruno Haible  <bruno@clisp.org>
13634
13635         * modules/csharpcomp: New file.
13636         * MODULES.html.sh (C#): Add csharpcomp.
13637
13638 2005-06-08  Bruno Haible  <bruno@clisp.org>
13639
13640         * m4/csharpcomp.m4: New file, from GNU gettext.
13641
13642 2005-06-08  Bruno Haible  <bruno@clisp.org>
13643
13644         * lib/csharpcomp.h: New file, from GNU gettext.
13645         * lib/csharpcomp.c: New file, from GNU gettext.
13646         * lib/csharpcomp.sh.in: New file, from GNU gettext.
13647
13648 2005-06-08  Bruno Haible  <bruno@clisp.org>
13649
13650         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
13651         warning on mingw.
13652
13653 2005-06-07  Derek Price  <derek@ximbiot.com>
13654
13655         Sync from CVS.
13656         * lib/glob_.h: Indent nested #ifdef.
13657
13658 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
13659
13660         Sync from coreutils.
13661         Use "file name" when talking about file names, instead of "filename"
13662         or "path", as per the GNU coding standards.
13663         * lib/mkdir-p.c: Renamed from makepath.c.
13664         (make_dir_parents): Renamed from make_path.  All callers changed.
13665         * lib/mkdir-p.h: Likewise.  All includers changed.
13666         * lib/filenamecat.c: Renamed from path-concat.c.
13667         (file_name_concat): Renamed from path_concat.  All callers changed.
13668         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
13669         * lib/filenamecat.h: Likewise.  All includers changed.
13670         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
13671         in comments or local variable names.
13672         * lib/basename.c: Likewise.
13673         * lib/canonicalize.c, canonicalize.h: Likewise.
13674         * lib/dirname.c, dirname.h: Likewise.
13675         * lib/euidaccess.c: Likewise.
13676         * lib/exclude.c: Likewise
13677         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
13678         * lib/fsusage.c, fsuage.h: Likewise.
13679         * lib/fts.c, fts_.h: Likewise.
13680         * lib/getcwd.c: Likewise.
13681         * lib/getloadavg.c: Likewise.
13682         * lib/mkstemp.c: Likewise.
13683         * lib/mountlist.c, mountlist.h: Likewise.
13684         * lib/openat.c, openat.h: Likewise.
13685         * lib/readlink-stub.c: Likewise.
13686         * lib/readutmp.c, readutmp.h: Likewise.
13687         * lib/rename.c: Likewise.
13688         * lib/rmdir.c: Likewise.
13689         * lib/same.c: Likewise.
13690         * lib/savedir.c: Likewise.
13691         * lib/stripslash.c: Likewise.
13692         * lib/tempname.c: Likewise.
13693         * lib/xreadlink.c: Likewise.
13694         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
13695         All uses changed.
13696         * lib/exclude.h: Likewise.
13697
13698         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
13699         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
13700         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
13701         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
13702         * lib/pathmax.h: Include <limits.h> unconditionally, since other
13703         files have been getting away with it for years (MORE/BSD 4.3
13704         is extinct now).
13705         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
13706         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
13707
13708         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
13709         Define to 256, not 255, as per modern POSIX.
13710
13711 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
13712
13713         Sync from coreutils.
13714         Use "file name" when talking about file names, instead of "filename"
13715         or "path", as per the GNU coding standards.
13716         * MODULES.html.sh: mkdir-p renamed from makepath.
13717         filenamecat renamed from path-concat.
13718         * modules/filenamecat: Renamed from modules/path-concat.
13719         (Files): filenamecat.h and filenamecat.c renamed from
13720         path-concat.h and path-concat.c.
13721         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
13722         (Include): filenamecat.h, not path-concat.h.
13723         * modules/mkdir-p: Renamed from modules/makepath.
13724         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
13725         makepath.c.
13726         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
13727         (Include): mkdir-p.h, not makepath.h.
13728
13729 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
13730
13731         Sync from coreutils.
13732         * m4/mkdir-p.m4: Renamed from makepath.m4.
13733         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
13734         Rename files from makepath.c to mkdir-p.c, and from
13735         makepath.h to mkdir-p.h.
13736         * m4/filenamecat.m4: Renamed from path-concat.m4.
13737         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
13738         Rename files from path-concat.c to filenamecat.c,
13739         and from path-concat.h to filenamecat.h.
13740         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
13741         "file name" in local variables or comments.
13742         * m4/rename.m4: Likewise.
13743
13744 2005-06-01  Bruno Haible  <bruno@clisp.org>
13745
13746         * modules/csharpexec: New file.
13747         * MODULES.html.sh (C#): New section.
13748
13749 2005-06-01  Bruno Haible  <bruno@clisp.org>
13750
13751         * m4/csharp.m4: New file, from GNU gettext.
13752         * m4/csharpexec.m4: New file, from GNU gettext.
13753
13754 2005-06-01  Bruno Haible  <bruno@clisp.org>
13755
13756         * lib/csharpexec.h: New file, from GNU gettext.
13757         * lib/csharpexec.c: New file, from GNU gettext.
13758         * lib/csharpexec.sh.in: New file, from GNU gettext.
13759
13760 2005-05-31  Derek Price  <derek@ximbiot.com>
13761             Paul Eggert  <eggert@cs.ucla.edu>
13762
13763         Sync from cvs.
13764         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
13765
13766 2005-05-31  Derek Price  <derek@ximbiot.com>
13767             Paul Eggert  <eggert@cs.ucla.edu>
13768
13769         Sync from cvs.
13770         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
13771
13772 2005-05-29  Derek Price  <derek@ximbiot.com>
13773
13774         * config/srclist.txt (glob_.h, glob.c): Add these files.
13775
13776 2005-05-29  Derek Price  <derek@ximbiot.com>
13777
13778         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
13779         * modules/glob: New file.
13780         * modules/getlogin_r: Add link to POSIX spec in description.
13781
13782 2005-05-29  Derek Price  <derek@ximbiot.com>
13783             Paul Eggert  <eggert@cs.ucla.edu>
13784
13785         * m4/glob.m4: New file.
13786
13787 2005-05-29  Derek Price  <derek@ximbiot.com>
13788             Paul Eggert  <eggert@cs.ucla.edu>
13789
13790         * lib/glob_.h, lib/glob.c: New files.
13791
13792 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
13793
13794         * modules/fts (Files): Remove m4/inttypes-pri.m4.
13795         * modules/fts-lgpl (Depends-on): Remove gettext.
13796
13797 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
13798
13799         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
13800         and don't require gt_INTTYPES_PRI.
13801
13802 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
13803
13804         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
13805
13806         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
13807         the configuration hassle isn't worth it.
13808         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
13809         (LONGEST_MODIFIER, PRIuMAX): Remove.
13810
13811 2005-05-27  Bruno Haible  <bruno@clisp.org>
13812
13813         * lib/getlogin_r.h: Remove second include of <stddef.h>.
13814
13815 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
13816
13817         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
13818         _POSIX_PTHREAD_SEMANTICS for Solaris.
13819
13820 2005-05-25  Derek Price  <derek@ximbiot.com>
13821
13822         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
13823
13824 2005-05-25  Derek Price  <derek@ximbiot.com>
13825             Paul Eggert  <eggert@cs.ucla.edu>
13826
13827         * modules/getlogin_r, m4/getlogin_r.m4: New files.
13828         * lib/getlogin_r.c, getlogin_r.h: New files.
13829
13830 2005-05-25  Bruno Haible  <bruno@clisp.org>
13831             Derek Price  <derek@ximbiot.com>
13832
13833         * lib/getlogin_r.h: Simplify API documentation.
13834
13835 2005-05-23  Derek Price  <derek@ximbiot.com>
13836
13837         * modules/minmax (Files): Add m4/minmax.m4.
13838         (configure.ac): Add gl_MINMAX.
13839
13840 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
13841
13842         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
13843         so that unistd-safer.h (GPL'ed code) need not be included.
13844
13845 2005-05-22  Bruno Haible  <bruno@clisp.org>
13846
13847         * m4/minmax.m4: New file.
13848         Based on a patch by Derek Price <derek@ximbiot.com>.
13849
13850 2005-05-22  Bruno Haible  <bruno@clisp.org>
13851
13852         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
13853         (INT64_MIN): Fix definition.
13854         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
13855
13856         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
13857         NEED_SIGNED_INT_TYPES.
13858
13859         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
13860         HAVE_SYSTEM_INTTYPES.
13861
13862 2005-05-22  Bruno Haible  <bruno@clisp.org>
13863
13864         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
13865         Also include <sys/param.h> if it defines MIN, MAX.
13866         Based on a patch by Derek Price <derek@ximbiot.com>.
13867
13868 2005-05-21  Jim Meyering  <jim@meyering.net>
13869
13870         * modules/fts (Files): Add m4/inttypes-pri.m4.
13871         (Depends-on): Add lstat and remove gettext.  Alphabetize.
13872
13873 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
13874
13875         New fts module.
13876         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
13877         (setup_dir, free_dir): New functions.
13878         (enter_dir, leave_dir): Define trivial
13879         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
13880         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
13881         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
13882         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
13883         Move to fts-cycle.c.
13884         (fts_open): Use setup_dir.
13885         (fts_close): Use free_dir.
13886         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
13887         This adds a label and some gotos, but the alternatives were messier.
13888         Check for memory allocation failure when entering a dir.
13889         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
13890         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
13891         (FTS): New member fts_cycle, that is a union that contains the
13892         old active_dir_ht and cycle_state.  All uses changed to mention
13893         fts_cycle.ht and fts_cycle.state.
13894         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
13895         fts.c, with the following changes:
13896         (setup_dir, free_dir): New functions.
13897         (enter_dir): Now returns bool.  Return true if successful, false
13898         if memory exhausted.  All callers changed.
13899         Do not bother partly cleaning up on
13900         memory allocation failure; that is free_dir's job.
13901         However, free ad if hash_insert fails, to avoid memory leak.
13902         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
13903         fts->fts_options to see which union member to use.
13904
13905 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
13906
13907         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
13908         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
13909
13910 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
13911
13912         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
13913
13914 2005-05-20  Jim Meyering  <jim@meyering.net>
13915
13916         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
13917         Now a macro, to pacify GCC.
13918
13919 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
13920
13921         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
13922         of -1.
13923
13924 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
13925
13926         * lib/chown.c (rpl_chown): Return -1 on failure.
13927
13928 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
13929
13930         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
13931         Don't check for stddef.h.
13932         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
13933         don't use its results.
13934         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
13935         since we include them unconditionally.  Don't require
13936         AM_STDBOOL_H, since stdbool is a prerequisite.
13937         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
13938         since we assume C89 or better.
13939         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
13940         as we don't use their results.
13941         Don't check for fchdir, memmove, memset, strrchr, as we use
13942         them unconditionally.
13943         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
13944         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
13945
13946 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
13947
13948         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
13949         Include <stddef.h> unconditionally, since we assume C89 now.
13950         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
13951         * lib/fts.c: Include fts_.h first, to check interface.
13952         Do not include intprops.h; no longer needed.
13953         Include cycle-check.h and hash.h, since fts_.h no longer does.
13954         Remove unnecessary casts of closedir to void.
13955         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
13956         decide whether to decrement nlinks.
13957         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
13958         (FTS): Use struct hash_table * instead of Hash_table, so that
13959         we no longer need to include hash.h here.
13960
13961 2005-05-18  Jim Meyering  <jim@meyering.net>
13962
13963         * modules/dirfd (License): Change to LGPL.  Most of the code
13964         is already in the public domain.
13965
13966 2005-05-18  Jim Meyering  <jim@meyering.net>
13967
13968         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
13969         Reported by Yoann Vandoorselaere.
13970
13971 2005-05-17  Jim Meyering  <jim@meyering.net>
13972
13973         * m4/fts.m4: New file, from coreutils.
13974
13975 2005-05-17  Jim Meyering  <jim@meyering.net>
13976
13977         * lib/fts.c, lib/fts_.h: New files, from coreutils.
13978
13979 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
13980
13981         Sync from coreutils.
13982         * m4/unlinkdir.m4: New file.
13983
13984 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
13985
13986         Sync from coreutils.
13987         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
13988         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
13989         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
13990         White space changes only.
13991         * lib/makepath.c (make_path): Port to hosts where leading "//" is
13992         special.
13993         * lib/yesno.c: Include getline.h, not ctype.h.
13994         (yesno): Don't remove leading white space; POSIX doesn't allow it.
13995         Use getline to remove arbitrary restriction on response length.
13996
13997 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
13998
13999         * config/srclist-update: Spell out "Street" in FSF postal
14000         mail address; this is the style the FSF seems to prefer.
14001
14002         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
14003         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
14004         this updates FSF postal mail address.
14005
14006         Sync from coreutils.
14007         * modules/unlinkdir: New file.
14008         * modules/yesno (Depends-on): Add getline.
14009         * MODULES.html.sh (File system functions): Add unlinkdir.
14010
14011 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
14012
14013         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
14014         lib/strsep.h:
14015         Change the initial comment to refer to GPL, not LGPL.
14016         gnulib-tool will change it to LGPL as needed.
14017
14018         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
14019         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
14020         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
14021         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
14022         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
14023         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
14024         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
14025         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
14026         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
14027         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
14028         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
14029         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
14030         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
14031         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
14032         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
14033         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
14034         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
14035         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
14036         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
14037         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
14038         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
14039         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
14040         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
14041         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
14042         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
14043         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
14044         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
14045         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
14046         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
14047         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
14048         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
14049         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
14050         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
14051         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
14052         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
14053         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
14054         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
14055         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
14056         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
14057         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
14058         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
14059         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
14060         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
14061         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
14062         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
14063         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
14064         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
14065         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
14066         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
14067         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
14068         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
14069         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
14070         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
14071         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
14072         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
14073         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
14074         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
14075         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
14076         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
14077         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
14078         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
14079         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
14080         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
14081         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
14082         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
14083         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
14084         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
14085         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
14086         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
14087         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
14088         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
14089         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
14090         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
14091         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
14092         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
14093         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
14094         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
14095         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
14096         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
14097         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
14098         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
14099         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
14100         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
14101         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
14102         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
14103         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
14104         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
14105         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
14106         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
14107         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
14108         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
14109         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
14110         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
14111         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
14112         lib/yesno.c, lib/yesno.h:
14113         Update FSF postal mail address.
14114
14115 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
14116
14117         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
14118         tests/test-memmem.c, tests/test-stpncpy.c:
14119         Update FSF postal mail address.
14120
14121 2005-05-13  Bruno Haible  <bruno@clisp.org>
14122
14123         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
14124         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
14125         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
14126         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
14127         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
14128         Add support for 64-bit integers in the MSVC compiler.
14129
14130 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
14131
14132         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
14133
14134 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
14135
14136         * gnulib-tool (func_import): Sort and uniquify recommended includes.
14137
14138 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
14139
14140         * doc/getdate.texi (General date syntax): Don't say that date
14141         date --iso-8601=ns generates acceptable dates; it doesn't yet.
14142         Problem reported by Nic Ferrier.
14143
14144 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14145
14146         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
14147         specified in ai_socktype. Fix invalid ai_protocol
14148         check. ai_protocol is usually set to 0 or depending on
14149         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
14150         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
14151         ai_socktype / ai_protocol in the returned addrinfo structure.
14152
14153 2005-05-10  Simon Josefsson  <jas@extundo.com>
14154
14155         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
14156         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
14157
14158 2005-05-10  Karl Berry  <karl@gnu.org>
14159
14160         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
14161         (from http://www.gnu.org/licenses).
14162         * doc/COPYING.LIB: also rename to COPYING.LESSER.
14163         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
14164         fdl.texi suffices.
14165
14166 2005-05-10  Karl Berry  <karl@gnu.org>
14167
14168         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
14169         (COPYING.DOC): remove.
14170
14171         * config/srclist-update: new FSF address.
14172
14173 2005-05-10  Derek Price  <derek@ximbiot.com>
14174
14175         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
14176         possible.
14177
14178 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14179             Bruno Haible  <bruno@clisp.org>
14180
14181         * modules/inet_ntop: New file.
14182         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
14183         inet_ntop.
14184
14185 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14186             Bruno Haible  <bruno@clisp.org>
14187
14188         * m4/inet_ntop.m4: New file.
14189
14190 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14191             Bruno Haible  <bruno@clisp.org>
14192
14193         * lib/inet_ntop.h: New file.
14194         * lib/inet_ntop.c: New file, from glibc with modifications.
14195
14196 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
14197
14198         * modules/time_r (License): Change to LGPL.
14199         * modules/extensions (License): Change to LGPL.  Actually,
14200         the license is more permissive than that, but currently gnulib-tool
14201         doesn't know how to handle more-permissive licenses.
14202
14203         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
14204         Problem reported by Dave Love.
14205
14206 2005-05-08  Jim Meyering  <jim@meyering.net>
14207
14208         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
14209         blank.
14210
14211 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
14212
14213         * modules/argmatch (Depends-on): Add stdbool.
14214         * modules/backupfile (Depends-on): Likewise.
14215         * modules/chdir-long (Depends-on): Likewise.
14216         * modules/closeout (Depends-on): Likewise.
14217         * modules/cycle-check (Depends-on): Likewise.
14218         * modules/dirname (Depends-on): Likewise.
14219         * modules/fnmatch (Depends-on): Likewise.
14220         * modules/fsusage (Depends-on): Likewise.
14221         * modules/fwriteerror (Depends-on): Likewise.
14222         * modules/getcwd (Depends-on): Likewise.
14223         * modules/getloadavg (Depends-on): Likewise.
14224         * modules/hard-locale (Depends-on): Likewise.
14225         * modules/makepath (Depends-on): Likewise.
14226         * modules/mountlist (Depends-on): Likewise.
14227         * modules/nanosleep (Depends-on): Likewise.
14228         * modules/posixtm (Depends-on): Likewise.
14229         * modules/quotearg (Depends-on): Likewise.
14230         * modules/readtokens (Depends-on): Likewise.
14231         * modules/readtokens0 (Depends-on): Likewise.
14232         * modules/readutmp (Depends-on): Likewise.
14233         * modules/save-cwd (Depends-on): Likewise.
14234         * modules/strftime (Depends-on): Likewise.
14235         * modules/userspec (Depends-on): Likewise.
14236         * modules/utimecmp (Depends-on): Likewise.
14237         * modules/xgetcwd (Depends-on): Likewise.
14238         * modules/xnanosleep (Depends-on): Likewise.
14239         * modules/xstrtod (Depends-on): Likewise.
14240         * modules/yesno (Depends-on): Likewise.
14241
14242 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
14243
14244         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
14245         needless checks.
14246
14247 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
14248
14249         Merge from coreutils.  Among other things,
14250         add bulletproofing for cases where stdin, stdout, or stderr are closed.
14251         * lib/fd-safer.c: New file.
14252         * lib/fcntl-safer.h, open-safer.c: Remove.
14253         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
14254         * lib/dup-safer.c: Include unistd-safer.h first.
14255         Don't include errno.h.
14256         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
14257         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
14258         * lib/file-type.c: Rely on file-type.h change.
14259         * lib/getloadavg.c: Include unistd-safer.h.
14260         (getloadavg): Use safer open.
14261         * lib/getusershell.c: Include "stdio-safer.h".
14262         (getusershell): Use safer fopen.
14263         * lib/long-options.c (long_options): Use NULL rather than 0.
14264         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
14265         'free'.
14266         * lib/modechange.c: Likewise.
14267         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
14268         (MODE_DONE): New constant.
14269         (struct mode_change): Remove 'next' member.
14270         (make_node_op_equals): New function; like the old one of the
14271         same name, except it allocates an array.
14272         (mode_compile, mode_create_from_ref): Use it.
14273         (mode_compile): Allocate result as an array, not a linked list.
14274         Parse octal string ourself, so that we catch mistakes like "+0".
14275         (mode_adjust): Arg is an array, not a linked list.
14276         * lib/modechange.c: Include stat-macros.h, xalloc.h.
14277         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
14278         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
14279         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
14280         Remove.  This is now stat-macros.h's job.
14281         (talloc): Remove.  All callers replaced by xalloc, so that
14282         our invokers don't have to worry about reporting memory failures.
14283         (make_node_op_equals): Remove.
14284         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
14285         New constants.
14286         (struct mode_change): Moved here from modechange.h.
14287         (mode_append_entry): Remove.
14288         (mode_compile): Remove MASKED_OPS arg, since it encouraged
14289         apps to have incorrect behavior.  Use simpler algorithm for head
14290         and tail.  Don't futz with umask; that's now the job of mode_adjust.
14291         Detect more invalid usages rather than having somewhat-random behavior.
14292         Don't insert an "a=" action, as that leads to incorrect behavior.
14293         (mode_compile, mode_create_from_ref): Return NULL on error instead
14294         of an enum, since now there's only one way to have an error.  All
14295         callers changed.
14296         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
14297         at the correct time.  Simplify calculation of "+u" and its ilk.
14298         Don't mishandle "+X".
14299         (mode_free): Remove "register" and localize decls.
14300         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
14301         (struct mode_change): Move to modechange.c; callers don't
14302         need to see this stuff.
14303         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
14304         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
14305         (mode_change, mode_adjust): Reflect the new signatures noted above.
14306         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
14307         that might redefine system include files.
14308         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
14309         (my_usleep): Use NULL rather than (void *) 0.
14310         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
14311         Use siginterrupt to specify that system calls should be interrupted.
14312         (rpl_nanosleep): Move initialization of suspended closer to call of
14313         my_usleep.
14314         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
14315         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
14316         (desirable_utmp_entry): New function.
14317         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
14318         using x2nrealloc, to simplify logic.
14319         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
14320         size calculation.  Do not assume utmp file is a regular file.
14321         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
14322         (READ_UTMP_CHECK_PIDS): New constant.
14323         * lib/save-cwd.c: Include unistd-safer.h.
14324         (save_cwd): Use fd_safer.
14325         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
14326         [!_LIBC] Include "stat-macros.h" instead.
14327         * lib/unistd-safer.h (fd_safer): New decl.
14328
14329 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
14330
14331         * modules/getloadavg (Depends-on): Add unistd-safer.
14332         * modules/getusershell (Depends-on): Add stdio-safer.
14333         * modules/lstat (Depends-on): Remove xalloc.
14334         * modules/mkstemp (Depends-on): Add stat-macros.
14335         * modules/modechange (Depends-on): Remove xstrtol.
14336         Add stat-macros, xalloc.
14337         * modules/save-cwd (Depends-on): Add unistd-safer.
14338         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
14339         * modules/unistd-safer (Files): Add lib/fd-safer.c
14340         (Makefile.am): Remove lib_SOURCES.
14341
14342         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
14343         Remove fcntl-safer; unistd-safer supersedes it.
14344
14345 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
14346
14347         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
14348         AC_HEADER_STAT.
14349         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
14350         (gl_PREREQ_CHOWN): Remove.
14351         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
14352         it.  Don't require AC_HEADER_STAT.
14353         (gl_PREREQ_LSTAT): Remove.
14354         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
14355         Don't require AC_HEADER_STAT.
14356         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
14357         (gl_PREREQ_RMDIR): Remove.
14358         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
14359         mention stat-macros.h or AC_HEADER_STAT, since we'll make
14360         the stat-macros module a prerequisite.
14361         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
14362         * m4/filemode.m4 (gl_FILEMODE): Likewise.
14363         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
14364         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
14365         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
14366         variable names.
14367         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
14368         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
14369         variable prefixes.
14370         * m4/fcntl-safer.m4: Remove.
14371         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
14372         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
14373         Invoke gl_PREREQ_FD_SAFER.
14374         (gl_PREREQ_FD_SAFER): New macro.
14375         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
14376         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
14377         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
14378         Remove duplicate call to AC_LIBOBJ(readutmp).
14379         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
14380
14381         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
14382         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
14383
14384 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
14385
14386         * MODULES.html.sh (Misc): Add byteswap.
14387
14388 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
14389
14390         * modules/getcwd (Depends-on): Add extensions.
14391         * modules/openat (Depends-on): Likewise.
14392
14393 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
14394
14395         * modules/byteswap: New file.
14396
14397 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
14398
14399         * m4/byteswap.m4: New file.
14400
14401 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
14402
14403         * lib/byteswap_.h: New file.
14404
14405 2005-04-25  Karl Berry  <karl@gnu.org>
14406
14407         * m4/gettext.m4: Update from GNU gettext 0.14.4.
14408
14409 2005-04-25  Albert Chin  <china@thewrittenword.com>
14410
14411         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
14412         Toolkit C bug.
14413
14414 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
14415
14416         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
14417         (func_ln_if_changed) Remove forcibly for no error message
14418         in case file does not exist.
14419
14420 2005-04-19  Simon Josefsson  <jas@extundo.com>
14421
14422         * gnulib-tool (Options): Make --symlink mean --symbolic.
14423
14424 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
14425
14426         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
14427
14428 2005-04-16  Simon Josefsson  <jas@extundo.com>
14429
14430         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
14431
14432 2005-04-15  Simon Josefsson  <jas@extundo.com>
14433
14434         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
14435
14436 2005-04-15  Simon Josefsson  <jas@extundo.com>
14437
14438         * gnulib-tool: Rename --symlink to --symbolic.
14439
14440 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
14441
14442         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
14443         symbolic links to files instead of copying/moving.  Add --aux-dir,
14444         specifying directory relative --dir where auxiliary build tools
14445         are placed.
14446
14447 2005-04-14  Bruno Haible  <bruno@clisp.org>
14448
14449         * modules/allocsa (License): Change to LGPL.
14450         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
14451
14452 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
14453
14454         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
14455         that "UTC +1 second" continues to work.  Problem reported
14456         by Dmitry V. Levin.
14457         (relunit_snumber): New rule.
14458         (relunit): Use it.
14459
14460 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
14461
14462         * lib/getdate.y (universal_time_zone_table): New constant.
14463         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
14464         universal_time_zone_table.
14465         (lookup_zone): Prefer universal_time_zone_table to
14466         local_time_zone_table, so that "GMT" time stamps are allowed in
14467         London during the summer.  Problem reported by Ian Abbott.
14468
14469 2005-04-12  Jim Meyering  <jim@meyering.net>
14470
14471         * lib/human.c (humblock): Set *options even when returning due to
14472         xstrtoumax conversion failure.  Thanks to a used-uninitialized
14473         warning from gcc-4.
14474
14475 2005-04-09  Jim Meyering  <jim@meyering.net>
14476
14477         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
14478         -Wuninitialized: initialize tm0.tm_year.
14479
14480 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
14481
14482         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
14483         count, since there's no maximum.  All uses changed.
14484         Add member dsts_seen.
14485         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
14486         not being INT_MAX.
14487         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
14488         Use pc_rels_seen to decide whther a date is absolute.
14489
14490         * lib/getdate.y (number): Don't overwrite year.
14491         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
14492         check.
14493
14494 2005-04-02  Simon Josefsson  <jas@extundo.com>
14495
14496         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
14497         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
14498
14499 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
14500
14501         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
14502         where no absolute path name can be longer than PATH_MAX.
14503
14504 2005-03-27  Jim Meyering  <jim@meyering.net>
14505
14506         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
14507
14508 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
14509
14510         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
14511         "one's complement" -> "ones' complement" in comment, as per Knuth.
14512         "value of type" -> "type or expression" in comment.
14513         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
14514
14515 2005-03-26  Jim Meyering  <jim@meyering.net>
14516
14517         Comment nits.
14518         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
14519         Correct typos: s/or/of/.
14520
14521 2005-03-26  Jim Meyering  <jim@meyering.net>
14522
14523         * modules/check-include-files: Move to ../ and rename to...
14524         * check-module: ...this.
14525
14526 2005-03-25  Jim Meyering  <jim@meyering.net>
14527
14528         * modules/xvasprintf (Files): Add xalloc.h.
14529
14530 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
14531
14532         * modules/gettext (Files): config/config.rpath ->
14533         build-aux/config.rpath
14534         * modules/iconv (Files): Likewise.
14535         Problem reported by Oskar Liljeblad.
14536
14537 2005-03-23  Jim Meyering  <jim@meyering.net>
14538
14539         * modules/check-include-files: New script to check for
14540         missing dependencies, multiple includes, etc.
14541
14542         * modules/c-strtold (Depends-on): Add xalloc.
14543         * modules/c-strtod (Depends-on): Add xalloc.
14544         * modules/hash (Depends-on): Add xalloc.
14545         (Files): Remove lib/xalloc.h.
14546
14547         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
14548         * modules/userspec (Files): Add lib/inttostr.h.
14549
14550 2005-03-23  Jim Meyering  <jim@meyering.net>
14551
14552         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
14553
14554 2005-03-22  Jim Meyering  <jim@meyering.net>
14555
14556         * modules/stat-macros: New module.
14557         * modules/canonicalize, modules/euidaccess, modules/file-type,
14558         * modules/filemode, modules/lchown, modules/makepath,
14559         * modules/rmdir, modules/stat: Depend on new stat-macros module
14560         rather than listing lib/stat-macros.h manually.
14561         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
14562
14563 2005-03-22  Jim Meyering  <jim@meyering.net>
14564
14565         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
14566
14567 2005-03-22  Bruno Haible  <bruno@clisp.org>
14568
14569         * config/srclist.txt: Replace target directory 'config' with
14570         'build-aux'.
14571         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
14572         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
14573         ../build-aux/.
14574
14575 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
14576
14577         * modules/chdir-long (Depends-on): Add mempcpy.
14578
14579         * modules/acl, modules/backupfile, modules/c-strtod,
14580         modules/c-strtold, modules/canon-host, modules/canonicalize,
14581         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
14582         modules/exclude, modules/exitfail, modules/file-type,
14583         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
14584         modules/getdate, modules/getline, modules/getpagesize,
14585         modules/getpass, modules/getugroups, modules/group-member,
14586         modules/hard-locale, modules/hash, modules/human, modules/idcache,
14587         modules/inttostr, modules/long-options, modules/makepath,
14588         modules/md5, modules/memcasecmp, modules/memcoll,
14589         modules/modechange, modules/mountlist, modules/path-concat,
14590         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
14591         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
14592         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
14593         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
14594         modules/strftime, modules/strndup, modules/strverscmp,
14595         modules/timespec, modules/unlocked-io, modules/userspec,
14596         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
14597         modules/yesno:
14598         Remove lib_SOURCES line from Makefile.am section, as this is now
14599         done automatically by the corresponding Autoconf macro.
14600
14601 2005-03-21  Jim Meyering  <jim@meyering.net>
14602
14603         Changes imported from coreutils.
14604
14605         * lib/cycle-check.c: Don't include xalloc.h.
14606
14607         * lib/path-concat.c: Don't include assert.h.
14608         (path_concat): Remove assertion that would have triggered
14609         for ABASE starting with more than one slash.
14610         Reported by Andreas Schwab.
14611
14612         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
14613         properly when ABASE is an absolute file name.
14614         Correct the description of this function.
14615         Include <assert.h>.
14616         Add an assertion and a test driver.
14617         This fixes a bug introduced on 2004-07-02.
14618         Andreas Schwab reported the resulting failure of cp --parents:
14619         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
14620
14621 2005-03-21  Jim Meyering  <jim@meyering.net>
14622
14623         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
14624         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
14625
14626 2005-03-21  Jim Meyering  <jim@meyering.net>
14627         and  Paul Eggert  <eggert@cs.ucla.edu>
14628
14629         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
14630         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
14631         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
14632         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
14633         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
14634         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
14635         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
14636         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
14637         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
14638         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
14639         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
14640         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
14641         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
14642         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
14643         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
14644         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
14645         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
14646         for these modules.
14647
14648 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
14649
14650         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
14651         (which shouldn't happen), generate nothing instead of returning 0
14652         immediately, so that nstrftime (NULL, ...) doesn't return 0.
14653
14654 2005-03-16  Bruno Haible  <bruno@clisp.org>
14655
14656         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
14657         HAVE_LONGLONG_64BIT.
14658
14659 2005-03-16  Bruno Haible  <bruno@clisp.org>
14660
14661         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
14662         HAVE_LONGLONG_64BIT.
14663
14664 2005-03-16  Bruno Haible  <bruno@clisp.org>
14665
14666         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
14667         HAVE_LONGLONG_64BIT.
14668
14669 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
14670
14671         * lib/strftime.c (my_strftime): Prepend space to format so that we can
14672         reliably distinguish strftime failure from empty output on POSIX
14673         hosts.
14674
14675 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
14676
14677         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
14678         (iconv_string): Don't guess a size-zero buffer, as that might cause
14679         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
14680         result would be 'too large', where 'too large' is (heuristically)
14681         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
14682         overflow concerns.  This will prevent some unwanted malloc failures
14683         when the inputs are very large.
14684
14685 2005-03-15  Karl Berry  <karl@gnu.org>
14686
14687         * config/srclist.txt (config.rpath): from gettext.
14688         * config/config.rpath: update.
14689
14690 2005-03-15  Bruno Haible  <bruno@clisp.org>
14691
14692         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
14693         to 'negate'.
14694
14695         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
14696         variable.
14697
14698         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
14699         results.
14700
14701 2005-03-14  Simon Josefsson  <jas@extundo.com>
14702
14703         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
14704         <fx@gnu.org>.
14705
14706 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
14707
14708         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
14709         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
14710         intprops.h.
14711         * lib/strtol.c: Likewise.
14712
14713 2005-03-14  Jim Meyering  <jim@meyering.net>
14714
14715         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
14716         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
14717         to be nonzero so that we (and caller) can detect the difference
14718         between a valid zero-length expansion and an error return, even
14719         when the underlying strftime fails before writing anything into
14720         that location.
14721
14722 2005-03-14  Bruno Haible  <bruno@clisp.org>
14723
14724         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
14725         Update from GNU gettext 0.14.3.
14726
14727 2005-03-10  Jim Meyering  <jim@meyering.net>
14728
14729         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
14730
14731 2005-03-10  Jim Meyering  <jim@meyering.net>
14732
14733         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
14734         so that this module works on systems without fchdir.
14735
14736 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
14737
14738         Factor int-properties macros into a single file, except for
14739         glibc-related files.
14740         * lib/intprops.h: New file.
14741         * lib/getloadavg.c: Include it instead of limits.h.
14742         (INT_STRLEN_BOUND): Remove.
14743         * lib/human.c: Include intprops.h.
14744         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
14745         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
14746         302/1000.
14747         * lib/inttostr.h: Include intprops.h instead of limits.h.
14748         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
14749         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
14750         for consistency with intprops.h.
14751         (time_t_is_integer, twos_complement_arithmetic): Use them.
14752         * lib/sig2str.h: Include <signal.h>, intprops.h.
14753         (INT_STRLEN_BOUND): Remove.
14754         * lib/strftime.c (TYPE_SIGNED): Remove.
14755         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
14756         * lib/strtol.c: Adjust comments to match intprops.h.
14757         * lib/userspec.c: Include intprops.h.
14758         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
14759         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
14760         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
14761         instead of rolling our own expressions.
14762         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
14763
14764         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
14765         instead of int.
14766         (my_strftime): Do not mishandle years close to INT_MAX, by doing
14767         the right thing even if adding 1900 would overflow.  Similarly
14768         for tm_mon + 1 and tm_yday + 1.
14769         Make %Y always equivalent to %C%y, and similarly for %G and %g.
14770         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
14771         (DO_SIGNED_NUMBER): New macro.
14772         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
14773
14774 2005-03-07  Bruno Haible  <bruno@clisp.org>
14775
14776         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
14777
14778 2005-03-07  Bruno Haible  <bruno@clisp.org>
14779
14780         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
14781
14782 2005-03-04  Derek R. Price  <derek@ximbiot.com>
14783
14784         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
14785         (func_import): Only replace files via --import when they have actually
14786         changed.
14787
14788 2005-03-03  Derek R. Price  <derek@ximbiot.com>
14789
14790         * m4/mmap-anon.m4: New file.
14791         * m4/pagealign_alloc.m4: New file.
14792
14793 2005-03-03  Derek R. Price  <derek@ximbiot.com>
14794             Bruno Haible  <bruno@clisp.org>
14795
14796         * modules/pagealign_alloc: New file.
14797         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
14798
14799 2005-03-03  Derek R. Price  <derek@ximbiot.com>
14800             Bruno Haible  <bruno@clisp.org>
14801
14802         * lib/pagealign_alloc.h: New file.
14803         * lib/pagealign_alloc.c: New file.
14804
14805 2005-03-03  Bruno Haible  <bruno@clisp.org>
14806
14807         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
14808         Use an all-permissive copyright notice, recommended by RMS.
14809
14810 2005-03-02  Bruno Haible  <bruno@clisp.org>
14811
14812         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
14813         of AIX, the replacement has to be done only after <string.h> is
14814         included, therefore not in config.h. stpncpy.h does the replacement,
14815         and stpncpy.c uses it.
14816
14817 2005-03-02  Bruno Haible  <bruno@clisp.org>
14818
14819         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
14820         stpncpy.c uses it.
14821
14822 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
14823
14824         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
14825         The workaround isn't strictly needed for POSIX conformance, and
14826         it's too much of a pain to configure and maintain.  We'll ask
14827         people to fix their kernels instead.
14828         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
14829         (NANOSLEEP_BUG_WORKAROUND): Remove.
14830         (xnanosleep): Remove the workaround.
14831
14832 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
14833
14834         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
14835         Reported by Derek Price.
14836         (Include): Add "timespec.h".
14837
14838         * modules/xnanosleep (Depends-on): Remove gethrxtime.
14839
14840 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
14841
14842         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
14843         to detect nanosleep bug.
14844
14845 2005-03-01  Bruno Haible  <bruno@clisp.org>
14846
14847         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
14848
14849 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
14850
14851         * modules/gethrxtime: New file.
14852         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
14853         (Depends-on): Add gethrxtime.
14854         (configure.ac): Add gl_XNANOSLEEP.
14855         (Makefile.am): Remove lib_SOURCES line.
14856
14857 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
14858
14859         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
14860         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
14861
14862 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
14863
14864         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
14865         * lib/timespec.h (gettime): Return void, since it always
14866         succeeds now.  All uses changed.
14867         * lib/gettime.c (gettime) Likewise.
14868         [HAVE_NANOTIME]: Prefer nanotime.
14869         Assume gettimeofday succeeds, as POSIX requires.
14870         Assime time () succeeds, since other code already does.
14871         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
14872         (timespec_subtract): Remove.
14873         (NANOSLEEP_BUG_WORKAROUND): New constant.
14874         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
14875         things considerably.  Use it only on GNU/Linux hosts, since the
14876         workaround shouldn't be needed elsewhere.
14877
14878 2005-02-24  Bruno Haible  <bruno@clisp.org>
14879
14880         * modules/gettext (Files): Add m4/glibc2.m4.
14881
14882 2005-02-24  Bruno Haible  <bruno@clisp.org>
14883
14884         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
14885         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
14886         * m4/progtest.m4:
14887         Update from GNU gettext 0.14.2.
14888         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
14889
14890 2005-02-24  Bruno Haible  <bruno@clisp.org>
14891
14892         * lib/localcharset.c: Update from GNU gettext 0.14.2.
14893         * lib/config.charset: Update from GNU gettext 0.14.2.
14894
14895 2005-02-24  Bruno Haible  <bruno@clisp.org>
14896
14897         * lib/gettext.h: Update from GNU gettext 0.14.2.
14898
14899 2005-02-23  Simon Josefsson  <jas@extundo.com>
14900
14901         * m4/iconvme.m4: New file.
14902
14903 2005-02-23  Jim Meyering  <jim@meyering.net>
14904
14905         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
14906         change.
14907         Thanks to Bruno Haible for catching it.
14908
14909 2005-02-22  Simon Josefsson  <jas@extundo.com>
14910
14911         * modules/iconvme: New file.
14912
14913         * MODULES.html.sh: Add iconvme.
14914
14915 2005-02-22  Simon Josefsson  <jas@extundo.com>
14916
14917         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
14918
14919 2005-02-22  Simon Josefsson  <jas@extundo.com>
14920
14921         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
14922
14923 2005-02-22  Jim Meyering  <jim@meyering.net>
14924
14925         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
14926         s/ifndef/ifdef/.
14927
14928 2005-02-20  Neil Conway  <neilc@samurai.com>
14929
14930         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
14931         returned by OSX/Darwin if the specified buffer is not large
14932         enough for the hostname.
14933
14934 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
14935
14936         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
14937         pass it to _help, otherwise the latter coredumps trying to
14938         dereference state.root_argp.
14939
14940 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
14941
14942         * modules/chdir-long (Depends-on): Add memrchr.
14943         * modules/memrchr (Files): Add lib/memrchr.h.
14944         (Include): "memrchr.h".
14945
14946 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
14947
14948         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
14949
14950 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
14951
14952         * lib/memrchr.h: New file.
14953         * lib/chdir-long.c: Include it.
14954         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
14955         Don't bother including stddef.h.
14956
14957 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
14958
14959         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
14960         inclusion.
14961         Include <sys/types.h>, for dev_t.
14962         (ME_DUMMY, ME_REMOTE): Move from here....
14963         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
14964         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
14965         Dmitry V. Levin.
14966         Include mountlist.h first, to test the interface.
14967
14968 2005-01-29  Bruno Haible  <bruno@clisp.org>
14969
14970         * lib/progname.c (program_name): Initialize.
14971         Needed when linking statically on MacOS X.
14972
14973 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
14974
14975         Sync from coreutils.
14976         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
14977         (Depends-on): Add c-strtod.
14978         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
14979
14980 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
14981
14982         Sync from coreutils.
14983         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
14984
14985         Remove files that are specific to coreutils.
14986         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
14987
14988 2005-01-28  Bruno Haible  <bruno@clisp.org>
14989
14990         * modules/javacomp: New file.
14991         * MODULES.html.sh (Java): Add javacomp.
14992
14993 2005-01-28  Bruno Haible  <bruno@clisp.org>
14994
14995         * m4/javacomp.m4: New file, from GNU gettext.
14996
14997 2005-01-28  Bruno Haible  <bruno@clisp.org>
14998
14999         * lib/javacomp.sh.in: New file, from GNU gettext.
15000         * lib/javacomp.h: New file, from GNU gettext.
15001         * lib/javacomp.c: New file, from GNU gettext.
15002
15003 2005-01-26  Simon Josefsson  <jas@extundo.com>
15004
15005         * lib/gai_strerror.c: Use GPL in header.
15006
15007 2005-01-26  Bruno Haible  <bruno@clisp.org>
15008
15009         * modules/javaexec: New file.
15010         * MODULES.html.sh (Java): Add javaexec.
15011
15012 2005-01-26  Bruno Haible  <bruno@clisp.org>
15013
15014         * m4/javaexec.m4: New file, from GNU gettext.
15015
15016 2005-01-26  Bruno Haible  <bruno@clisp.org>
15017
15018         * lib/javaexec.sh.in: New file, from GNU gettext.
15019         * lib/javaexec.h: New file, from GNU gettext.
15020         * lib/javaexec.c: New file, from GNU gettext.
15021
15022 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
15023
15024         * modules/lchown (Depends-on): Remove lchown.h
15025
15026 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
15027
15028         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
15029         must be defined if the header file was not found, in order
15030         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
15031
15032 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
15033
15034         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
15035         initializers for struct pentry_state.
15036         (__argp_error): Check return value of __asprintf
15037         (__argp_failure): Translate error message
15038
15039         * lib/argp-parse.c: Removed braces around the expansion of N_()
15040
15041 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
15042
15043         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
15044         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
15045         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
15046         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
15047         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
15048         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
15049         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
15050         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
15051         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
15052         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
15053         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
15054         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
15055         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
15056         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
15057         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
15058         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
15059         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
15060         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
15061         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
15062         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
15063         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
15064         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
15065         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
15066         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
15067         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
15068         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
15069         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
15070         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
15071         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
15072         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
15073         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
15074         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
15075         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
15076         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
15077         xstrtol.m4, xstrtoumax.m4, yesno.m4:
15078         Use an all-permissive copyright notice, recommended by RMS.
15079
15080 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
15081
15082         * modules/chdir-long (Depends-on): Remove mempcpy.
15083
15084 2005-01-21  Jim Meyering  <jim@meyering.net>
15085
15086         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
15087         same value as for Solaris 9.
15088
15089         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
15090         component length.  This included changing the parameter to be
15091         of type `char *' rather than `char const *'.
15092         * lib/chdir-long.h (chdir_long): Update prototype.
15093
15094         * lib/openat.c (fdopendir, fstatat): New functions.
15095         * lib/openat.h: Include headers required for use of DIR and struct
15096         stat.
15097         [AT_SYMLINK_NOFOLLOW]: Define.
15098         (fdopendir, fstatat): Add prototypes.
15099
15100 2005-01-21  Bruno Haible  <bruno@clisp.org>
15101
15102         * modules/classpath: New file.
15103         * MODULES.html.sh (Java): Add classpath.
15104
15105 2005-01-21  Bruno Haible  <bruno@clisp.org>
15106
15107         * lib/classpath.h: New file, from GNU gettext.
15108         * lib/classpath.c: New file, from GNU gettext.
15109
15110 2005-01-20  Simon Josefsson  <jas@extundo.com>
15111
15112         * modules/version-etc-fsf: New file.
15113
15114 2005-01-20  Simon Josefsson  <jas@extundo.com>
15115
15116         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
15117         * lib/version-etc.c: Remove version_etc_copyright.
15118         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
15119         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
15120
15121 2005-01-20  Simon Josefsson  <jas@extundo.com>
15122
15123         * lib/base64.h (isbase64): Add.
15124
15125         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
15126         using a unsigned prototype, don't inline.
15127         (base64_decode): Use it.
15128
15129 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
15130
15131         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
15132         it.
15133
15134 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
15135
15136         * lib/save-cwd.c (save_cwd): Remove code to support the case
15137         where fchdir is missing or flaky.
15138
15139 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
15140
15141         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
15142
15143 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
15144
15145         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
15146         AC_LIBSOURCES now does this.
15147         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
15148         with new ullong_max module.
15149
15150 2005-01-19  Bruno Haible  <bruno@clisp.org>
15151
15152         * modules/sh-quote: New file.
15153         * MODULES.html.sh (Executing programs): Add sh-quote.
15154
15155 2005-01-19  Bruno Haible  <bruno@clisp.org>
15156
15157         * lib/sh-quote.h: New file, from GNU gettext.
15158         * lib/sh-quote.c: New file, from GNU gettext.
15159
15160 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
15161
15162         Merge from coreutils.
15163         * m4/ullong_max.m4: New file.
15164         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
15165         (gl_MACROS): Assume localeconv exists.
15166
15167 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
15168
15169         Merge changes from coreutils, as described below in several
15170         changelogs dated today.
15171
15172         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
15173         (O_DIRECTORY): Remove; not needed here, since "." must be
15174         a directory.  All uses removed.
15175         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
15176         universal on Suns, and we also need to test for IRIX.
15177         Revamp code to use 'if' rather than '#if'.
15178         Avoid unnecessary comparison of cwd->desc to 0.
15179
15180         * lib/utimens.c (futimens): Robustify the previous patch, by checking
15181         for known valid error numbers rather than observed invalid ones.
15182
15183 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
15184
15185         * modules/ullong_max: New file.
15186
15187         * modules/chdir-long, modules/openat: New files.
15188         * modules/save-cwd (Depends-on): Depend on chdir-long.
15189         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
15190
15191 2005-01-18  Jim Meyering  <jim@meyering.net>
15192
15193         Merge from coreutils.
15194         * m4/chdir-long.m4, m4/openat.m4: New files.
15195         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
15196         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
15197         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
15198         is sane and DOES follow symlinks.  Besides, testing 20 different
15199         systems found no broken chown implementations.
15200         Prompted by a change in rsync's copy of this macro.
15201         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
15202
15203         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
15204
15205         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
15206         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
15207         NULL-means-set-to-current-time semantics.
15208         Remove temporary file immediately, rather than waiting
15209         for configure's at-exit trap code to do it.
15210
15211 2005-01-18  Jim Meyering  <jim@meyering.net>
15212
15213         * lib/version-etc.c (version_etc_copyright): Update copyright date.
15214
15215         * lib/utimens.c (futimens): Account for the fact that futimes
15216         can also fail with errno == ENOSYS or errno == ENOENT.
15217         Patch from Dmitry V. Levin.
15218
15219         Change the name of the robust chdir function from chdir to chdir_long.
15220         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
15221         (restore_cwd): Use chdir_long, not chdir.
15222         * lib/chdir-long.c: Renamed from chdir.c.
15223         * lib/chdir-long.h: Renamed from chdir.h.
15224         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
15225         Hurd.
15226
15227 2005-01-18  Bruno Haible  <bruno@clisp.org>
15228
15229         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
15230         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
15231         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
15232         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
15233         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
15234         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
15235         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
15236         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
15237         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
15238         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
15239         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
15240         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
15241         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
15242         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
15243         Use an all-permissive copyright notice, recommended by RMS.
15244
15245 2005-01-18  Bob Proulx  <bob@proulx.com>
15246
15247         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
15248         simplify offsetof() macro construct to avoid compile failure with
15249         native HP-UX 11.0 ANSI C compiler.
15250
15251 2005-01-17  Bruno Haible  <bruno@clisp.org>
15252
15253         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
15254         redundant because stpncpy.m4 takes care of it.
15255
15256 2005-01-17  Bruno Haible  <bruno@clisp.org>
15257
15258         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
15259
15260 2005-01-17  Bruno Haible  <bruno@clisp.org>
15261
15262         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
15263         used.
15264
15265 2005-01-17  Bruno Haible  <bruno@clisp.org>
15266
15267         * lib/fwriteerror.h (fwriteerror): Change specification to include
15268         fclose.
15269         * lib/fwriteerror.c: Include <stdbool.h>.
15270         (fwriteerror): At the end, close the file stream. Record whether
15271         stdout was already closed.
15272
15273 2005-01-17  Bruno Haible  <bruno@clisp.org>
15274
15275         * lib/execute.c (environ): Declare if needed.
15276         * lib/pipe.c (environ): Likewise.
15277         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
15278
15279 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
15280
15281         * modules/argp: Depend on vsnprintf
15282
15283 2005-01-10  Jim Meyering  <jim@meyering.net>
15284
15285         * modules/closeout (Depends-on): Add atexit.
15286
15287 2005-01-06  Bruno Haible  <bruno@clisp.org>
15288
15289         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
15290
15291 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
15292
15293         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
15294         definitions to be after all include files, to avoid collisions.
15295         Problem reported by Bob Proulx.
15296
15297 2005-01-04  Jim Meyering  <jim@meyering.net>
15298
15299         Changes imported from coreutils.
15300         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
15301         as the mkstemp template, use a temporary directory and an
15302         8.3-friendly template to avoid trouble on systems like DJGPP.
15303         Reported by Juan M. Guerrero via Stepan Kasal.
15304         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
15305         close. Remove the temporary directory right away, rather than waiting
15306         for configure's at-exit trap code to do it.
15307         Suggestion from Stepan Kasal.
15308
15309 2005-01-01  Simon Josefsson  <jas@extundo.com>
15310
15311         * gnulib-tool: Print #include directives when --import'ing.
15312
15313 2004-12-28  Simon Josefsson  <jas@extundo.com>
15314
15315         * tests/test-base64.c: Include required header files.  Remove
15316         unused variables.
15317
15318 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
15319
15320         * modules/error (Depends-on): Remove gettext.
15321
15322 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
15323
15324         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
15325         not needed.  This removes a dependency on the gettext module.
15326         [defined _LIBC]: Do not include <libintl.h>; not needed.
15327
15328 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
15329
15330         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
15331         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
15332
15333 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
15334
15335         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
15336         HAVE_DECL_STRTOLD.
15337
15338 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
15339
15340         * modules/getdate (Depends-on): Remove alloca-opt.
15341
15342 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
15343
15344         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
15345
15346 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
15347
15348         * lib/argp-parse.c: Include <stddef.h>.
15349         (alignof, alignto): New macros.
15350         (parser_init): Don't assume that void * is aligned sufficiently
15351         for struct option.
15352
15353         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
15354         need to extend the stack.
15355         (YYINITDEPTH): New macro, so that the initial stack isn't overly
15356         large.
15357
15358 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
15359
15360         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
15361
15362 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
15363
15364         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
15365         (2004-10-24) change.  Apparently this was a false alarm.
15366
15367         * modules/getdate: Depend on alloca-opt, not alloca.
15368
15369 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
15370
15371         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
15372         Remove now-obsolete comment about AIX.
15373         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
15374         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
15375         (YYMAXDEPTH): New macro.
15376
15377 2004-12-18  Simon Josefsson  <jas@extundo.com>
15378
15379         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
15380
15381 2004-12-18  Bruno Haible  <bruno@clisp.org>
15382
15383         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
15384
15385 2004-12-18  Bruno Haible  <bruno@clisp.org>
15386
15387         * lib/fatal-signal.c (fatal_signals): Make non-const.
15388         (init_fatal_signals): New function.
15389         (uninstall_handlers, install_handlers): Ignore signals that were set to
15390         SIG_IGN.
15391         (at_fatal_signal): Call init_fatal_signals.
15392         (init_fatal_signal_set): Likewise. Ignore signals that were set to
15393         SIG_IGN.
15394         Reported by Paul Eggert.
15395
15396 2004-12-18  Bruno Haible  <bruno@clisp.org>
15397
15398         * doc/alloca.texi: New file.
15399         * doc/alloca-opt.texi: New file.
15400
15401 2004-12-17  Jim Meyering  <jim@meyering.net>
15402
15403         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
15404         Otherwise, install-sh could exit with improper exit status when
15405         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
15406
15407 2004-12-16  Simon Josefsson  <jas@extundo.com>
15408
15409         * tests/test-base64.c: Add license.
15410
15411 2004-12-15  Stepan Kasal  <address@hidden>
15412
15413         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
15414
15415 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
15416
15417         * modules/getcwd (Files): Add m4/d-ino.m4.
15418         Suggested by Mark D. Baushke.
15419
15420 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
15421
15422         * lib/getdate.y (textint): New member "negative".
15423         (time_zone_hhmm): New function.
15424         Expect 14 shift-reduce conflicts, not 13.
15425         (o_colon_minutes): New rule.
15426         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
15427         (yylex): Set the "negative" member of signed numbers.
15428
15429 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
15430
15431         * doc/getdate.texi (Time of day items, Time zone items):
15432         Describe new formats +00:00, UTC+00:00.
15433
15434 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
15435
15436         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
15437         spurious "-l"s.  Problem reported by Stepan Kasal.
15438
15439 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
15440
15441         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
15442         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
15443
15444 2004-12-04  Simon Josefsson  <jas@extundo.com>
15445
15446         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
15447         Vandoorselaere <yoann@prelude-ids.org>.
15448
15449 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
15450
15451         Changes imported from coreutils.
15452         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
15453         exist.
15454         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
15455
15456 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
15457
15458         Changes imported from coreutils.
15459         * lib/hard-locale.c: Assume <locale.h> exists.
15460         Include "strdup.h".
15461         (GLIBC_VERSION): New macro.
15462         (hard_locale): Assume setlocale exists.
15463         Rewrite to avoid #ifdef.
15464         Use strdup rather than malloc + strcpy.
15465         * lib/human.c: Assume <locale.h> exists.
15466         (human_readable): Assume localeconv exists.
15467
15468 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
15469
15470         * modules/hard-locale (Depends-on): Add strdup.
15471
15472 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
15473
15474         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
15475         convert T2, not T.  (Imported from libc.)
15476
15477 2004-11-30  Simon Josefsson  <jas@extundo.com>
15478
15479         * modules/restrict (License): Change to LGPL.
15480
15481 2004-11-30  Simon Josefsson  <jas@extundo.com>
15482
15483         * m4/restrict.m4: Add copyright and copying conditions.
15484
15485 2004-11-30  Simon Josefsson  <jas@extundo.com>
15486
15487         * m4/base64.m4: New file.
15488
15489 2004-11-30  Simon Josefsson  <jas@extundo.com>
15490
15491         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
15492         base64.
15493
15494         * tests/test-base64.c: New file.
15495
15496         * modules/base64: New file.
15497
15498 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
15499
15500         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
15501         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
15502
15503         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
15504
15505 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
15506
15507         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
15508         (__getcwd.c): Don't restore errno; glibc doesn't.
15509         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
15510         first, falling back to our code only if its results look suspicious.
15511         Ensure that the resulting buffer is only as large as necessary.
15512
15513         * lib/readutmp.c: Include readutmp.h first.
15514         Include <errno.h>, since readutmp.h no longer does that.
15515         * lib/readutmp.h: Don't include <errno.h>,
15516         <sys/param.h>, <time.h>; not needed to establish interface.
15517         (errno): Remove decl.
15518         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
15519         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
15520         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
15521
15522 2004-11-28  Simon Josefsson  <jas@extundo.com>
15523
15524         * lib/base64.h, base64.c: New file.
15525
15526 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
15527
15528         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
15529
15530 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
15531
15532         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
15533         (Depends-on): Remove pathmax, same.  Add mempcpy.
15534         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
15535         (Makefile.am): Append getcwd.h to lib_SOURCES.
15536         (Include): Add getcwd.h.
15537         (Maintainer): Change from Jim Meyering to "all, glibc",
15538         since getdate now uses intended-for-glibc code.
15539         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
15540         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
15541
15542 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
15543
15544         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
15545         HP's ANSI C compiler.
15546         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
15547         Declaring int functions causes warnings on some modern systems and
15548         shouldn't be needed to compile on ancient ones.
15549         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
15550         defined.
15551
15552         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
15553         with the following changes.
15554         (__set_errno): Parenthesize properly.
15555         Include <stdbool.h>.
15556         (MIN, MAX, MATCHING_INO): New macros.
15557         (__getcwd): Define with prototype, not K&R form.
15558         Use heuristics to allocate default buffer on stack if possible.
15559         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
15560         behavior, and to avoid the PATH_MAX limit when computing
15561         ../../../../...
15562         Use MATCHING_INO to compare inode number to file.
15563         Check for arithmetic overflow in size calculations.
15564         Fix bug in reallocation of dot array that caused getcwd to fail
15565         on directories nested deeper than 75.
15566         Be more careful about saving errno on error.
15567         Do not use realloc; use only free+malloc, as this is a bit
15568         more flexible and avoids a needless copy operation.
15569         Do not inspect st_dev and st_ino for symbolic links; POSIX
15570         doesn't specify the latter.
15571         Check for closedir errors.
15572         Avoid needless casts.
15573         Use "#ifdef weak_alias" around weak_alias, to be like other
15574         glibc code.
15575         The following changes to getcwd.c have effect only when used in
15576         gnulib; they have no effect inside glibc proper.
15577         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
15578         as alloca isn't used.
15579         (alloca, __alloca): Likewise.
15580         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
15581         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
15582         unconditionally, as gnulib assumes C89 or better.
15583         Do not include <sys/param.h>.
15584         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
15585         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
15586         better.
15587         (NULL) [!defined NULL]: Remove; we assume C89 or better.
15588         Include <dirent.h> in a way that is compatible with modern Autoconf.
15589         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
15590         New macros, if not already defined.
15591         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
15592         Use "_LIBC", not "defined _LIBC", for consistency.
15593         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
15594         a mempcpy module.
15595         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
15596         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
15597         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
15598         credit only to Jim Meyering and adjust the copyright dates.
15599         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
15600         <stdlib.h>, <unistd.h>, "pathmax.h".
15601         Instead, include "xgetcwd.h" (first) and "getcwd.h".
15602         (INITIAL_BUFFER_SIZE): Remove.
15603         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
15604
15605 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
15606
15607         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
15608         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
15609         Use the _ONCE methods, for efficiency.
15610         Check for fcntl.h.  In test program, include <errno.h>
15611         and <fcntl.h> if available.  Remove old K&R cruft from
15612         test program.  Check for common errors in GNU/Linux,
15613         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
15614         don't do AC_LIBOBJ, as that's getcwd.m4's job.
15615         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
15616         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
15617         name accordingly.
15618         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
15619         accommodate new getcwd.c.
15620         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
15621         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
15622         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
15623         that's all we need now.
15624
15625 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
15626
15627         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
15628         argp-parse.c depends on getopt internals, that means we should
15629         always use our getopt, to be on the safe side.
15630         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
15631         order not to spoil the result of an eventual previous invocation
15632         of gl_GETOPT_SUBSTITUTE.
15633
15634 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
15635
15636         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
15637         redefinition warnings. To avoid them, include the defines
15638         in `#if !defined __need_getopt ... #endif'. The only place
15639         where __getopt_argv_const is used is in definitions
15640         of getopt_long and getopt_long_only below, which are as well
15641         protected by `#ifndef __need_getopt'.
15642         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
15643         __need_getopt after including <stdio.h> and <unistd.h> These
15644         headers might have defined it.
15645
15646 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
15647
15648         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
15649
15650 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
15651
15652         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
15653         (futimens): New function, which uses futimes if available.
15654         (futimens, utimens): Support timespec==NULL, with same semantics
15655         as utime and utimens.
15656         * lib/utimens.h (futimens): New decl.
15657
15658 2004-11-23  Jim Meyering  <jim@meyering.net>
15659
15660         * lib/getopt_.h: Remove trailing blanks.
15661
15662 2004-11-23  Jim Meyering  <jim@meyering.net>
15663
15664         * lib/__fpending.c: Add comment.
15665
15666 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
15667
15668         * modules/canonicalize (Depends-on): Add xreadlink.
15669         Problem reported by James Youngman.
15670
15671 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
15672
15673         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
15674         New macros.
15675         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
15676         optopt): Use them instead of invoking ## directly; otherwise, the
15677         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
15678
15679 2004-11-19  Bruno Haible  <bruno@clisp.org>
15680
15681         * lib/strtok_r.c: Move comments from here...
15682         * lib/strtok_r.h: ... to here.
15683
15684 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
15685
15686         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
15687         implementations that mishandle size_t overflow.
15688
15689 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
15690
15691         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
15692         might fail.  Problem reported by Yoann Vandoorselaere.
15693         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
15694         implementations that mishandle size_t overflow.
15695
15696 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
15697
15698         * modules/canon-host (Depends-on): Add strdup.
15699
15700 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
15701
15702         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
15703
15704 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
15705
15706         * lib/canon-host.c: Include "strdup.h".
15707         (canon_host): Use getaddrinfo if available, so that IPv6 works.
15708         Use strdup instead of malloc/strcpy to duplicate strings.
15709
15710         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
15711         (human_space_before_unit): New constant.
15712         * lib/human.c (human_readable): Support it.
15713
15714         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
15715         (xgetcwd): Set errno correctly when failing.
15716         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
15717         the failure is actually due to a PATH_MAX problem.
15718
15719         Further getopt changes to make it more likely that glibc will
15720         buy the changes back.
15721         * lib/getopt.c (POSIXLY_CORRECT): New constant.
15722         (getopt): Use it, so to preserve glibc semantic
15723         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
15724         when compiling for libc.
15725         * lib/getopt_.h (__getopt_argv_const): Bring it back.
15726         (getopt_long, getopt_long_only): Use it.
15727
15728         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
15729         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
15730         (getopt): Argv is now char * const *, as per standard.
15731         (_getopt_internal_r, _getopt_internal): Argv is now char **,
15732         not char *__getopt_argv_const *.
15733         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
15734         _getopt_long_only_r): Likewise.
15735         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
15736         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
15737         _getopt_long_r, _getopt_long_only_r): Likewise.
15738         * lib/getopt_.h (__getopt_argv_const): Remove.
15739         (getopt): Argv is now char * const *, as per standard.
15740
15741         * lib/getdate.y (tORDINAL): New token.
15742         (day, relunit): Allow it for relative times.
15743         (relative_time_table): Use tORDINAL for ordinals.
15744
15745 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
15746
15747         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
15748         Document that "second" isn't allowed as an ordinal number.
15749
15750 2004-11-16  Jim Meyering  <jim@meyering.net>
15751
15752         * modules/closeout (Depends-on): Add fpending.
15753
15754 2004-11-15  Jim Meyering  <jim@meyering.net>
15755
15756         * lib/closeout.c: Include "__fpending.h" once again.
15757         Include <stdbool.h>.
15758         (close_stdout): Don't fail just because stdout was closed initially,
15759         since some programs don't write to stdout in the normal course of
15760         operation (other than --version and --help), and we don't want this
15761         function to make e.g. `touch file >&-' fail.
15762         But do fail if it was closed and someone has tried to write to it.
15763         E.g., `printf foo >&-' must fail.
15764
15765 2004-11-13  Jim Meyering  <jim@meyering.net>
15766
15767         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
15768
15769 2004-11-12  Simon Josefsson  <jas@extundo.com>
15770
15771         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
15772         small doc fix is still pending.
15773
15774 2004-11-11  Simon Josefsson  <jas@extundo.com>
15775
15776         * modules/strtok_r: New file.
15777
15778         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
15779         strtok_r.
15780
15781 2004-11-11  Simon Josefsson  <jas@extundo.com>
15782
15783         * m4/strtok_r.m4: New file.
15784
15785         * m4/getopt.m4: Replace opterr.
15786
15787 2004-11-11  Simon Josefsson  <jas@extundo.com>
15788
15789         * lib/strtok_r.h, strtok_r.c: New file.
15790
15791 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
15792
15793         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
15794         of replacing opterr, getopt, etc.  This should handle the
15795         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
15796
15797 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
15798
15799         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
15800         we can stop lying to compilers about the constness of argv when we
15801         are compiled outside glibc.
15802         (getopt, getopt_long, getopt_long_only): Use it.
15803         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
15804         _getopt_internal, getopt): Likewise.
15805         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
15806         _getopt_long_only_r): Likewise.
15807         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
15808         _getopt_long_r, _getopt_long_only_r): Likewise.
15809
15810         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
15811         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
15812         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
15813         the other external symbols.
15814         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
15815         declaration, since the above renaming now works around collisions.
15816
15817 2004-11-11  Jim Meyering  <jim@meyering.net>
15818
15819         * lib/linebreak.c: Remove trailing blanks.
15820         * lib/alloca_.h: Likewise.
15821         * lib/acosl.c: Likewise.
15822         * lib/euidaccess.c: Likewise.
15823         * lib/allocsa.h: Likewise.
15824
15825 2004-11-10  Simon Josefsson  <jas@extundo.com>
15826
15827         * m4/getaddrinfo.m4: New file.
15828
15829 2004-11-10  Simon Josefsson  <jas@extundo.com>
15830
15831         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
15832
15833 2004-11-10  Simon Josefsson  <jas@extundo.com>
15834
15835         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
15836         getaddrinfo.
15837
15838         * modules/getaddrinfo: New file.
15839
15840 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
15841
15842         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
15843
15844 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
15845
15846         * lib/mktime.c (SHR): New macro, which is a portable
15847         substitute for >> that should work even on Crays.
15848         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
15849         Problem reported by Mark D. Baushke in
15850         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
15851         * lib/getdate.y (SHR): Likewise.
15852         (tm_diff): Use it.
15853         * lib/strftime.c (SHR): Likewise.
15854         (tm_diff): Use it.
15855         * lib/quotearg.c (struct quoting_options): Use unsigned int for
15856         quote_these_too, so that right shifts are well defined.  All uses
15857         changed.
15858
15859 2004-11-10  Jim Meyering  <jim@meyering.net>
15860
15861         Ensure that no close failure goes unreported.
15862         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
15863         return early when it seems there's nothing to flush.
15864         Don't include __fpending.h.
15865
15866 2004-11-10  Jim Meyering  <jim@meyering.net>
15867
15868         * modules/closeout (Depends-on): Remove fpending.
15869
15870 2004-11-10  Jim Meyering  <jim@meyering.net>
15871
15872         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
15873
15874 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
15875
15876         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
15877         gl_FUNC_STRFTIME.
15878         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
15879         and AC_REQUIRE when possible, to avoid duplicate checks.
15880         Check for <wchar.h>.
15881
15882 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
15883
15884         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
15885
15886 2004-11-09  Bruno Haible  <bruno@clisp.org>
15887
15888         * m4/sockpfaf.m4: New file.
15889
15890 2004-11-05  Bruno Haible  <bruno@clisp.org>
15891
15892         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
15893         Reported by Mark D. Baushke <mdb@cvshome.org>.
15894
15895 2004-11-04  Bruno Haible  <bruno@clisp.org>
15896
15897         2004-09-11  Bruno Haible  <bruno@clisp.org>
15898                 * allocsa.valgrind: New file.
15899         2004-02-06  Bruno Haible  <bruno@clisp.org>
15900                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
15901                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
15902                 Reported by Christopher Seip <chris.seip@hp.com>.
15903
15904 2004-11-04  Bruno Haible  <bruno@clisp.org>
15905
15906         * modules/allocsa (Files): Add lib/allocsa.valgrind.
15907         (Makefile.am): Distribute it.
15908
15909 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
15910
15911         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
15912         with errno == ERANGE if the buffer is too small.
15913         Problem reported by Mark D. Baushke.
15914
15915 2004-11-03  Albert Chin  <china@thewrittenword.com>
15916             Paul Eggert  <eggert@cs.ucla.edu>
15917
15918         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
15919         equivalent, substitute $ac_type for equivalent type rather than
15920         blindly using uint32_t *always* which won't work if uint32_t is not
15921         available.  Define _UINT32_T to work around typedef of uint32_t if
15922         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
15923         2.5.1.
15924
15925 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
15926
15927         * m4/jm-macros.m4: Sync from coreutils.
15928         (gl_MACROS): Check for mbrlen, for pathchk.
15929         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
15930
15931 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
15932
15933         * lib/xreadlink.c (MAXSIZE): New macro.
15934         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
15935         size does not exceed MAXSIZE.  Avoid cast.
15936         As suggested by Mark D. Baushke in
15937         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
15938         if readlink fails with buffer size just under MAXSIZE, try again
15939         with MAXSIZE.
15940
15941 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
15942
15943         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
15944
15945 2004-11-02  Derek R. Price  <derek@ximbiot.com>
15946         and  Paul Eggert  <eggert@cs.ucla.edu>
15947
15948         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
15949         (get_date): Overparenthesize to avoid GCC warning.
15950
15951 2004-11-02  Bruno Haible  <bruno@clisp.org>
15952
15953         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
15954         returns void.
15955
15956 2004-11-02  Bruno Haible  <bruno@clisp.org>
15957
15958         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
15959         function returns void.
15960
15961 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
15962
15963         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
15964         fflush_unlocked, flockfile, funlockfile, funlockfile,
15965         fputs_unlocked, putc_unlocked.
15966
15967 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
15968
15969         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
15970         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
15971         already declared.
15972
15973 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
15974
15975         * modules/getdate (Files): Add doc/getdate.texi.
15976         (Depends-on): Add setenv, xalloc.
15977
15978 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
15979
15980         * lib/getdate.y: Add support for TZ="foo" within a date string.
15981         Fix some bugs near time_t boundaries.  Reject dates with
15982         out-of-range components, e.g., "Sept 31".
15983         Include <stdlib.h>, "setenv.h", "xalloc.h".
15984         (ISDIGIT_LOCALE): Remove; unused.
15985         Note that the TZ and time functions used here are not reentrant.
15986         (mktime_ok, get_tz): New functions.
15987         (TZBUFSIZE): New constant.
15988         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
15989         This requires that we sometimes generate our own TZ="XXX..." setting.
15990
15991 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
15992
15993         * doc/getdate.texi: New file, from coreutils with modifications for
15994         the new TZ parsing.
15995
15996 2004-10-27  Derek R. Price  <derek@ximbiot.com>
15997
15998         * lib/mktime.c (not_equal_tm): Remove redundant check.
15999
16000 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
16001
16002         * modules/regex (lib_SOURCES): Add regex.c.
16003         Reported by James Youngman in
16004         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
16005
16006 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
16007
16008         * lib/getdate.y: Use Bison 1.875 features, and some minor
16009         code cleanups.  This change does not affect semantics.
16010         Don't include <stdlib.h>; no longer needed.
16011         Don't include unlocked-io.h; only the "#if TEST" code uses
16012         stdio, and performance isn't crucial there.
16013         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
16014         Bison 1.875 features as described below.
16015         All uses of "PC." replaced by "pc->".
16016         (YYSTYPE): Add a forward declaration.
16017         (yylex, yyerror): Use full prototypes in forward decls.
16018         Use "%pure-parser" rather than obsolescent "%pure_parser".
16019         Use %parse-param and %lex-param instead of obsolescent
16020         YYPARSE_PARAM and YYLEX_PARAM.
16021         (meridian_table, month_and_day_table, time_units_table,
16022         relative_time_table, time_zone_table, military_table,
16023         lookup_zone, lookup_word, get_date):
16024         Use NULL instead of 0 where appropriate.
16025         (to_hour): Avoid abort (), to avoid a dependency on
16026         stdlib.h.
16027         (yyerror, yylex): Now accepts parser_control * arg.
16028         (main) [TEST]: Use '\0' rather than 0 for char.
16029
16030 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
16031
16032         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
16033
16034 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
16035
16036         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
16037         It's now the caller's responsibility to handle the case where
16038         !HAVE_GETPAGESIZE && !defined getpagesize.
16039
16040         * lib/mktime.c (leapyear): Arg is long int, not int.
16041
16042 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
16043
16044         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
16045
16046 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
16047
16048         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
16049         missing.  Problem reported by James Youngman.
16050
16051 2004-10-16  Simon Josefsson  <jas@extundo.com>
16052
16053         * gnulib-tool: Fix comments.  Fix parse problem.
16054         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
16055
16056 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
16057
16058         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
16059         implementation of getopt_long.  Problem reported by Alexander Taler in:
16060         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
16061
16062 2004-10-15  Bruno Haible  <bruno@clisp.org>
16063
16064         * gnulib-tool: Untabify. Initialize supplied_libname.
16065         (func_usage): More homogenous output.
16066         (func_modules_transitive_closure, func_modules_to_filelist,
16067         func_emit_lib_Makefile_am): New functions.
16068         (func_import): New function, extracted from big case statement. Use
16069         func_get_license, func_modules_transitive_closure,
16070         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
16071         opt_lgpl. Don't use test -a, as it's not portable.
16072         (func_create_testdir): Use func_modules_transitive_closure,
16073         func_modules_to_filelist, func_emit_lib_Makefile_am.
16074
16075 2004-10-15  Bruno Haible  <bruno@clisp.org>
16076
16077         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
16078
16079 2004-10-15  Bruno Haible  <bruno@clisp.org>
16080
16081         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
16082         the portions belonging to each module.
16083         Suggested by Derek Robert Price <derek@ximbiot.com>.
16084
16085 2004-10-12  Simon Josefsson  <jas@extundo.com>
16086
16087         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
16088         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
16089         to real functions.
16090
16091 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
16092
16093         * modules/vsnprintf: New file.
16094
16095 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
16096
16097         * m4/vsnprintf.m4: New file.
16098
16099 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
16100
16101         * lib/vsnprintf.h: New file.
16102         * lib/vsnprintf.c: New file.
16103
16104 2004-10-11  Bruno Haible  <bruno@clisp.org>
16105
16106         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
16107         vsnprintf.
16108
16109 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
16110
16111         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
16112
16113 2004-10-07  Bruno Haible  <bruno@clisp.org>
16114
16115         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
16116         fits into the provided buffer.
16117
16118 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
16119
16120         * lib/diacrit.c, diacrit.h: Add GPL notice.
16121
16122         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
16123         notice.
16124         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
16125         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
16126         This avoids a potential constant-folding bug.
16127
16128 2004-10-05  Bruno Haible  <bruno@clisp.org>
16129
16130         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
16131         for the declaration of strsep.
16132
16133 2004-10-05  Bruno Haible  <bruno@clisp.org>
16134
16135         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
16136
16137 2004-10-04  Simon Josefsson  <jas@extundo.com>
16138
16139         * modules/memmem: New file.
16140         * tests/test-memmem.c: New file.
16141         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
16142
16143 2004-10-04  Simon Josefsson  <jas@extundo.com>
16144
16145         * m4/memmem.m4: New file.
16146
16147 2004-10-04  Simon Josefsson  <jas@extundo.com>
16148
16149         * lib/memmem.h: New file.
16150         * lib/memmem.c: New file, taken from glibc.
16151
16152 2004-10-04  Simon Josefsson  <jas@extundo.com>
16153
16154         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
16155         '#ifdef USE_UNLOCKED_IO'.
16156
16157 2004-10-04  Simon Josefsson  <jas@extundo.com>
16158
16159         * config/srclist.txt: Add memmem from glibc.
16160
16161 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
16162
16163         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
16164
16165         * modules/argmatch, modules/argp, modules/closeout, modules/error,
16166         modules/exclude, modules/getdate, modules/getline,
16167         modules/getndelim2, modules/getpass, modules/getpass-gnu,
16168         modules/getusershell, modules/linebuffer, modules/md5,
16169         modules/mountlist, modules/posixtm, modules/readtokens,
16170         modules/readutmp, modules/regex, modules/sha1,
16171         modules/version-etc, modules/yesno:
16172         Remove dependency on unlocked-io.
16173
16174 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
16175
16176         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
16177
16178         * m4/unlocked-io.m4: Add copyright notice.
16179         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
16180
16181 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
16182
16183         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
16184         * lib/xmalloc.c (xmemdup): Likewise.
16185         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
16186         XFREE): Remove these long-obsolescent macros.
16187         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
16188         * lib/xstrdup.c: Remove.
16189
16190         * lib/regex.c (re_comp): Cast gettext return value to char *,
16191         Problem reported by Martin Neitzel via Mark D. Baushke.
16192
16193 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
16194
16195         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
16196         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
16197         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
16198         regex.c, sha1.c, version-etc.c, yesno.c:
16199         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
16200         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
16201         the includer's responsibility.
16202
16203         Sync from coreutils.
16204
16205         * lib/modechange.c (mode_compile): Don't decrement a pointer that
16206         points to the start of a string, as the C Standard says the
16207         resulting behavior is undefined.
16208
16209         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
16210         simple -> simple_backups, numbered_existing ->
16211         numbered_existing_backups, numbered -> numbered_backups
16212         to avoid shadowing problems.  All uses changed.
16213         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
16214         * lib/backupfile.c (check_extension, numbered_backup):
16215         Rename locals to avoid shadowing 'basename'.
16216         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
16217         once.
16218
16219         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
16220         * lib/.cvsignore: Add getopt.h.
16221
16222 2004-10-04  Bruno Haible  <bruno@clisp.org>
16223
16224         * modules/README: New file.
16225         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
16226         not a module.
16227
16228 2004-10-02  Jim Meyering  <jim@meyering.net>
16229
16230         * lib/dirfd.h, getpagesize.h: Add copyright notice.
16231
16232 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
16233
16234         * modules/strsep: New file.
16235
16236 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
16237
16238         * m4/strsep.m4: New file.
16239
16240 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
16241
16242         * lib/strsep.h: New file.
16243         * lib/strsep.c: New file.
16244
16245 2004-10-01  Simon Josefsson  <jas@extundo.com>
16246
16247         * lib/snprintf.c (snprintf): Handle size==0.
16248
16249 2004-10-01  Simon Josefsson  <jas@extundo.com>
16250             Bruno Haible  <bruno@clisp.org>
16251
16252         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
16253         (snprintf): Declare 'args'.
16254
16255 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
16256
16257         * lib/snprintf.c: Remove comments as to why each header is needed.
16258
16259 2004-10-01  Bruno Haible  <bruno@clisp.org>
16260
16261         * MODULES.html.sh: Add strsep.
16262
16263 2004-09-30  Simon Josefsson  <jas@extundo.com>
16264
16265         * modules/snprintf: New file.
16266
16267 2004-09-30  Simon Josefsson  <jas@extundo.com>
16268
16269         * m4/snprintf.m4: New file.
16270
16271 2004-09-30  Simon Josefsson  <jas@extundo.com>
16272
16273         * lib/snprintf.h, lib/snprintf.c: New files.
16274
16275 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
16276
16277         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
16278         (hol_entry_help): Never translate an empty string.
16279         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
16280         * lib/argp.h (OPTION_NO_TRANS): New option.
16281
16282 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
16283
16284         * modules/argp (Maintainer): Replace Simon Josefsson
16285         by Sergey Poznyakoff.
16286
16287 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
16288
16289         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
16290         changes merged back into glibc.
16291
16292 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
16293
16294         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
16295
16296 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
16297
16298         * lib/xvasprintf.c: Include xalloc.h.
16299         (xvasprintf): Use xalloc_die, not xmalloc_die.
16300
16301 2004-09-29  Bruno Haible  <bruno@clisp.org>
16302
16303         * modules/alloca-opt: New file, derived from modules/alloca.
16304         * modules/allocsa: Depend on alloca-opt instead of alloca.
16305         * modules/setenv: Likewise.
16306         * modules/vasnprintf: Likewise.
16307         * MODULES.html.sh: Add alloca-opt.
16308
16309 2004-09-28  Simon Josefsson  <jas@extundo.com>
16310
16311         * gnulib-tool: New parameter --lgpl, to asseert that modules are
16312         LGPL, and to replace license template from GPL to LGPL.
16313
16314 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
16315
16316         * modules/dummy: Change license to LGPL.
16317
16318 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
16319
16320         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
16321
16322 2004-09-24  Simon Josefsson  <jas@extundo.com>
16323
16324         * modules/minmax (License): Change from GPL to LGPL.
16325
16326 2004-09-23  Simon Josefsson  <jas@extundo.com>
16327
16328         * gnulib-tool (--import): Typo.
16329
16330 2004-09-23  Simon Josefsson  <jas@extundo.com>
16331
16332         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
16333
16334 2004-09-22  Bruno Haible  <bruno@clisp.org>
16335
16336         * modules/*: Add 'License' field.
16337         * gnulib-tool: Accept --extract-license option.
16338         (func_get_license): New function.
16339
16340 2004-09-21  Bruno Haible  <bruno@clisp.org>
16341
16342         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
16343         Reported by Simon Josefsson.
16344
16345 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
16346
16347         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
16348         gl_AC_TYPE_LONG_LONG.
16349
16350 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
16351
16352         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
16353
16354 2004-09-18  Simon Josefsson  <jas@extundo.com>
16355         and  Paul Eggert  <eggert@cs.ucla.edu>
16356
16357         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
16358         calls with autoreconf.  Define GL_LIB.
16359
16360 2004-09-14  Karl Berry  <karl@gnu.org>
16361
16362         * config/srclist.txt: unsync setenv.c, sigh.
16363
16364 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
16365
16366         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
16367         Problem reported by Bruno Haible in:
16368         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
16369
16370 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
16371
16372         * config/srclist.txt: Comment out argp-pvh.c.
16373
16374 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
16375
16376         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
16377         in case some system header has #define'd it.  Problem reported by
16378         Soeren D. Schulze in
16379         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
16380
16381 2004-09-09  Karl Berry  <karl@gnu.org>
16382
16383         * regex.[ch]: delete from the root.  These were supposed to be
16384                 synced with emacs cvs, but this has not happened for about
16385                 a year, and anyway nothing else uses emacs regex.[ch].
16386                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
16387                 lib/regex[.ch] is untouched.
16388
16389 2004-09-09  Bruno Haible  <bruno@clisp.org>
16390
16391         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
16392
16393 2004-09-09  Bruno Haible  <bruno@clisp.org>
16394
16395         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
16396         modifications.
16397         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
16398
16399 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
16400
16401         * modules/xvasprintf: New file.
16402         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
16403
16404 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
16405
16406         * lib/xvasprintf.h: New file.
16407         * lib/xvasprintf.c: New file.
16408         * lib/xasprintf.c: New file.
16409
16410 2004-09-08  Bruno Haible  <bruno@clisp.org>
16411
16412         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
16413
16414 2004-09-08  Bruno Haible  <bruno@clisp.org>
16415
16416         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
16417         length is > INT_MAX.
16418         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
16419         more.
16420
16421 2004-09-08  Bruno Haible  <bruno@clisp.org>
16422
16423         * lib/stdint_.h: New file, taken from GNU clisp.
16424
16425 2004-09-08  Bruno Haible  <bruno@clisp.org>
16426             Oskar Liljeblad  <oskar@osk.mine.nu>
16427
16428         * modules/stdint: New file.
16429         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
16430
16431 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
16432
16433         Import from coreutils.
16434         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
16435         strings on unbounded length.  alloca's performance benefits aren't
16436         that important here.
16437         (V_STRDUP): Remove.
16438         (parse_with_separator): New function, with most of the internals
16439         of the old parse_user_spec.  Allow user to omit both user and group,
16440         for compatibility with FreeBSD.
16441         Clone only the user name, not the entire spec.
16442         Do not set *uid, *gid unless entirely successful.
16443         Avoid memory leak in some failing cases.
16444         Fix regression for USER.GROUP reported by Dmitry V. Levin in
16445         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
16446         (parse_user_spec): Rewrite to use parse_with_separator.
16447
16448 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
16449
16450         * modules/userspec: Don't depend on alloca.
16451
16452 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
16453
16454         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
16455
16456 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
16457
16458         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
16459         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
16460         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
16461
16462 2004-08-16  Simon Josefsson  <jas@extundo.com>
16463
16464         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
16465         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
16466         Add --dry-run for --import.
16467         Let user provided command line parameters override configure.ac
16468         settings.
16469
16470 2004-08-12  Simon Josefsson  <jas@extundo.com>
16471
16472         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
16473         as discussed with Paul Eggert in threads rooted at
16474         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
16475         and
16476         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
16477         Before, the test was empty, and relied on ELIDE_CODE in source
16478         code.)
16479         (gl_PREREQ_GETOPT): New macro.
16480         (gl_GETOPT): Use them.
16481
16482 2004-08-12  Simon Josefsson  <jas@extundo.com>
16483
16484         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
16485         * lib/getopt_.h: Renamed from getopt.h.
16486
16487 2004-08-12  Simon Josefsson  <jas@extundo.com>
16488
16489         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
16490         Change default library name from libfoo to libgnu.
16491         Now, if you have a configure.ac that says:
16492                 gl_SOURCE_BASE(gl)
16493                 gl_M4_BASE(gl/m4)
16494                 gl_MODULES(error getopt etcetera)
16495                 gl_INIT
16496         you can import all you need by running:
16497                 ../gnulib/gnulib-tool --import
16498
16499         * modules/getopt (Files): Rename getopt.h to getopt_.h.
16500         (Makefile.am): Rewrite, use logic from argz.
16501         (Include): Use <getopt.h> instead of "getopt.h".
16502
16503 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
16504
16505         * modules/argp (Files): Add m4/unlocked-io.m4.
16506         (Depends-on): Add extensions.
16507
16508 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
16509
16510         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
16511         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
16512         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
16513         Check for program_invocation_name, program_invocation_short_name,
16514         flockfile, funlockfile, features.h, _getopt_long_only_r.
16515
16516 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
16517
16518         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
16519         its complicated substitute.
16520         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
16521         and program_invocation_name.
16522         (__argp_basename) [!_LIBC]: Remove; the only use was
16523         replaced by its body.
16524         (__argp_short_program_name): Change condition from
16525         !defined __argp_short_program_name to
16526         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
16527         to match argp-namefrob.h.
16528         (__argp_failure): Don't assume strerror_r returns char *.
16529         * lib/argp-parse.c (N_): Define unconditionally.
16530         (argp_default_options): Fill out initializers with 0 to avoid
16531         gcc warnings.
16532
16533 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
16534
16535         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
16536         getopt1.c.
16537
16538 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
16539
16540         Merge from coreutils.
16541
16542         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
16543
16544         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
16545         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
16546
16547 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
16548
16549         Merge from coreutils.
16550
16551         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
16552         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
16553         for Reliant Unix 5.43.
16554
16555         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
16556         (union fooround): Use uintmax_t, not long int.
16557         The rest is a merge from libc:
16558         [defined _LIBC]: Include <shlib-compat.h>.
16559         (_obstack) [defined _LIBC]: Remove after 2.3.4.
16560
16561         * lib/settime.c (settime): Recode to avoid warning with
16562         Sun Forte C 6U2.
16563
16564         * lib/strverscmp.c: Convert to UTF-8.
16565
16566 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
16567
16568         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
16569         m4/uintmax_t.m4.
16570
16571 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
16572
16573         * modules/xalloc-die: New file.
16574         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
16575
16576         * modules/md5 (Files): Add m4/uint32_t.m4.
16577         * modules/sha1: Renamed from modules/sha.
16578         (Files):
16579         Rename lib/sha.h to lib/sha1.h.
16580         Rename lib/sha.c to lib/sha1.c.
16581         Rename m4/sha.m4 to m4/sha1.m4.
16582         (lib_SOURCES): Likewise.
16583         (configure.ac): Rename gl_SHA to gl_SHA1.
16584         (Include): sha.h -> sha1.h.
16585
16586 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
16587
16588         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
16589         * m4/sha1.m4: Renamed from sha.m4.
16590         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
16591
16592 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
16593
16594         * lib/obstack.h (obstack_empty_p):
16595         Don't assume that chunk->contents is suitably aligned.
16596         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
16597         Likewise. Problem reported by Benno in
16598         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
16599
16600         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
16601         readable.  This could be improved further but it'd take some work.
16602
16603 2004-08-08  Simon Josefsson  <jas@extundo.com>
16604
16605         * modules/xgethostname (Depends-on): Remove exit and error (not
16606         used).
16607
16608         * modules/getpass-gnu: Add getpass.h.
16609         (Depends-on): Add stdbool.
16610         * modules/getpass: Add getpass.h.
16611
16612 2004-08-08  Simon Josefsson  <jas@extundo.com>
16613
16614         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
16615         Check getpass declaration.
16616
16617 2004-08-08  Simon Josefsson  <jas@extundo.com>
16618
16619         * lib/xgethostname.c: Don't include error.h (not used).
16620
16621         * lib/getpass.h: Add.
16622         * lib/getpass.c: Include getpass.h first.
16623
16624 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
16625
16626         * lib/xalloc-die.c: New file.
16627         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
16628         All uses removed.
16629         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
16630         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
16631         xalloc-die.c.
16632         (_, N_, xalloc_die): Move to xalloc-die.c.
16633         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
16634         so that we needn't mess with xalloc_msg_memory_exhausted.
16635
16636         * lib/sha1.h: Renamed from sha.h.
16637         (SHA1_H): Renamed from _SHA_H.
16638         (sha1_ctx): Renamed from sha_ctx.
16639         (sha1_init_ctx): Renamed from sha_init_ctx.
16640         (sha1_process_block): Renamed from sha_process_block.
16641         (sha1_process_bytes): Renamed from sha_process_bytes.
16642         (sha1_finish_ctx): Renamed from sha_finish_ctx.
16643         (sha1_read_ctx): Renamed from sha_read_ctx.
16644         (sha1_stream): Renamed from sha_stream.
16645         (sha1_buffer): Renamed from sha_buffer.
16646         * lib/sha1.c: Likewise; renamed from sha.c.
16647         Do not include <sys/types.h>.
16648         Include <stddef.h> rather than <stdlib.h>.
16649
16650 2004-08-08  Bruno Haible  <bruno@clisp.org>
16651
16652         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
16653         FILESYSTEM_PREFIX_LEN.
16654         * lib/progreloc.c: Likewise.
16655         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
16656
16657 2004-08-06  Simon Josefsson  <jas@extundo.com>
16658
16659         * modules/progname (Depends-on): Don't depend on stdbool.
16660
16661 2004-08-06  Simon Josefsson  <jas@extundo.com>
16662
16663         * modules/getsubopt: New file.
16664         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
16665         getsubopt.
16666
16667 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
16668
16669         More merge from coreutils.
16670
16671         * m4/utimens.m4, m4/utimecmp.m4: New files.
16672         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
16673         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
16674         prereq.m4, sha.m4: Import changes from coreutils.
16675
16676 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
16677
16678         More merge from coreutils.
16679         * modules/raise, modules/readtokens0, modules/utimens:
16680         * modules/utimecmp, module/xnanosleep: New files.
16681         * modules/strftime: Add lib/strftime.h.
16682         Change include from <time.h> to "strftime.h".
16683         * modules/yesno: Add lib/yesno.h.
16684         * modules/backupfile: Remove lib/addext.c.
16685         * modules/euidaccess: Add stat-macros.h.
16686         * modules/canonicalize, modules/euidaccess,
16687         modules/filemode, modules/lchown, modules/makepath,
16688         modules/rmdir, modules/stat: Likewise.
16689
16690 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
16691
16692         Merge from tar.
16693         * lib/argp-help.c (make_hol, hol_append): Don't assume that
16694         SIZE_MAX is a valid preprocessor constant.
16695         (__argp_basename): Change from "#ifndef _LIBC"
16696         to "#ifndef __argp_short_program_name", so that
16697         we don't compile these functions for tar.
16698
16699         More merges from coreutils.
16700         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
16701         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
16702         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
16703         * lib/addext.c: Remove; no longer needed.
16704         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
16705         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
16706         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
16707         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
16708         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
16709         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
16710         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
16711         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
16712         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
16713         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
16714         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
16715         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
16716         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
16717         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
16718         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
16719         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
16720         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
16721         Import changes from coreutils.
16722
16723 2004-08-05  Simon Josefsson  <jas@extundo.com>
16724
16725         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
16726
16727 2004-08-05  Simon Josefsson  <jas@extundo.com>
16728
16729         * m4/getsubopt.m4: New file.
16730
16731 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
16732
16733         Merge from coreutils.
16734
16735         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
16736         * m4/getcwd-path-max.m4: New files.
16737
16738         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
16739         FILESYSTEM_PREFIX_LEN ->
16740         FILE_SYSTEM_PREFIX_LEN.
16741         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
16742         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
16743         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
16744         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
16745
16746         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
16747         prerequisite modules now handle the DOS stuff.
16748         Don't check for unistd.h.
16749
16750 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
16751
16752         Merge from coreutils.
16753
16754         * lib/.gdb-history: Remove; this doesn't belong here.
16755
16756         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
16757         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
16758         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
16759         * lib/getcwd.c: New files.
16760
16761         * lib/dirname.h: Include <stdbool.h>.
16762         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
16763         for consistency with POSIX terminology.  All uses changed.
16764         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
16765         (strip_trailing_slashes): Use bool for booleans.
16766         * lib/stripslash.c (strip_trailing_slashes): Likewise.
16767
16768         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
16769         sometimes returns a positive errno value even when it succeeds.
16770         (print_errno_message) [!LIBC]: Fall back on strerror if
16771         __strerror_r fails.
16772
16773         * lib/path-concat.c (mempcpy): Don't define if a system header defines
16774         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
16775         (longest_relative_suffix): New function.
16776         (path_concat): Use it.  Assume first argument is not NULL.
16777         Port to DOS.  Omit redundant separators.
16778         Report an error instead of returning NULL.
16779         Use mempcpy instead of memcpy.
16780         (xpath_concat): Remove: not declared or used.
16781
16782         * lib/same.h: Include <stdbool.h>
16783         (same_name): Return bool, not int.
16784         * lib/same.c (same_name): Likewise.
16785         (errno): Don't declare; we assume C89 or better now.
16786
16787         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
16788         if not already defined.
16789
16790         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
16791         * lib/dup-safer.c (errno): Likewise.
16792
16793 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
16794
16795         Merge from coreutils.
16796         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
16797         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
16798         * modules/path-concat: Don't depend on strdup.
16799
16800 2004-08-03  Simon Josefsson  <jas@extundo.com>
16801
16802         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
16803         * lib/progname.h: Don't include stdbool.h.
16804
16805 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
16806
16807         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
16808         * MODULES.html.sh (func_all_modules): Remove fatal.
16809
16810 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
16811
16812         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
16813
16814 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
16815
16816         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
16817         working.
16818
16819 2004-08-02  Simon Josefsson  <jas@extundo.com>
16820
16821         * lib/getsubopt.h: New file, with comments from Bruno Haible.
16822         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
16823         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
16824
16825 2004-08-01  Simon Josefsson  <jas@extundo.com>
16826
16827         * lib/xgetdomainname.c: Include stdlib.h, for free().
16828
16829 2004-07-19  Bruno Haible  <bruno@clisp.org>
16830
16831         * MODULES.html.sh (func_all_modules): Add dummy.
16832
16833 2004-07-16  Simon Josefsson  <jas@extundo.com>
16834
16835         * modules/dummy: New file.
16836
16837 2004-07-16  Simon Josefsson  <jas@extundo.com>
16838
16839         * lib/dummy.c: New file.
16840
16841 2004-07-16  Bruno Haible  <bruno@clisp.org>
16842
16843         * lib/backupfile.h: Add extern "C" for C++.
16844         * lib/closeout.h: Likewise.
16845         * lib/copy-file.h: Likewise.
16846         * lib/findprog.h: Likewise.
16847         * lib/full-write.h: Likewise.
16848         * lib/pathname.h: Likewise.
16849         * lib/progname.h: Likewise.
16850         * lib/stpcpy.h: Likewise.
16851         * lib/stpncpy.h: Likewise.
16852         * lib/strcase.h: Likewise.
16853         * lib/strstr.h: Likewise.
16854         * lib/xalloc.h: Likewise.
16855
16856         * lib/mbswidth.h: Add extern "C" for C++.
16857         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
16858
16859 2004-07-13  Robert Millan  <robertmh@gnu.org>
16860
16861         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
16862
16863 2004-07-09  Simon Josefsson  <jas@extundo.com>
16864
16865         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
16866         failed without this.)
16867
16868 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
16869
16870         * modules/chown (Files): Add lib/fchown-stub.c, since
16871         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
16872
16873 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
16874
16875         * lib/fchown-stub.c: New file.
16876
16877 2004-06-24  Jim Meyering  <jim@meyering.net>
16878
16879         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
16880
16881 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
16882
16883         * modules/argz: Omit "#include".
16884
16885         * MODULES.html.sh (func_all_modules): Add calloc, to match
16886         2004-06-01 addition of calloc module.
16887
16888 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
16889
16890         * m4/argz.m4: New file, which is autoupdated from libtool.
16891
16892 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
16893
16894         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
16895         libtool.
16896
16897 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
16898
16899         * config/srclist-update: Don't insist on "USA." before the
16900         close-comment, as libtool omits the period and puts the */ on a
16901         separate line.
16902         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
16903         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
16904
16905 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
16906
16907         * modules/argz: New file.
16908         * MODULES.html.sh (func_all_modules): Add argz.
16909
16910 2004-06-12  Jim Meyering  <jim@meyering.net>
16911         and  Paul Eggert  <eggert@cs.ucla.edu>
16912
16913         * modules/hash (Files): Add lib/xalloc.h.
16914         * modules/pipe (Depends-on): Add wait-process.
16915         * modules/stat (Depends-on): Add xalloc.
16916         * modules/userspec (Files): Add lib/userspec.h.
16917         * modules/xstrto
16918
16919         Upgrade from gettext-0.13.
16920         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
16921         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
16922         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
16923
16924 2004-06-10  Jim Meyering  <jim@meyering.net>
16925
16926         * lib/calloc.c: New file.
16927
16928 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
16929
16930         * lib/getdate.y (yylex): Allow space between sign and number.
16931         Problem reported by Dan Jacobson.
16932
16933 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
16934
16935         Merge from coreutils CVS.
16936
16937         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
16938         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
16939         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
16940         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
16941         xstrtol.m4: Fix copyright date and/or serial number.
16942
16943         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
16944         See if we need an fchown replacement.
16945         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
16946         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
16947         and use the replacement function if we detect either defect.
16948
16949         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
16950         gl_UTIMECMP.
16951
16952 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
16953         and  Jim Meyering  <jim@meyering.net>
16954
16955         Merge from coreutils CVS.
16956
16957         * lib/stat-macros.h: New file, with contents from file-type.h
16958         and coreutils' system.h.
16959         * lib/file-type.c: Include "stat-macros.h".
16960         * lib/file-type.h (file_type): Move all macro definitions to new file,
16961         stat-macros.h.
16962
16963         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
16964         Wrap old code with this conditional.
16965         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
16966         function that does not dereference symlinks.
16967         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
16968
16969         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
16970         dependency problems.
16971         (xreadlink): Accept new arg SIZE, for efficiency.
16972         All decls and uses changed.
16973         * lib/xreadlink.h: Include <stddef.h>, for size_t.
16974
16975         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
16976         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
16977
16978         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
16979         sysexits.h.
16980
16981 2004-06-01  Jim Meyering  <jim@meyering.net>
16982
16983         * m4/calloc.m4: New file.
16984
16985 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
16986
16987         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
16988         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
16989         Also, fix a typo in a diagnostic.
16990
16991 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
16992
16993         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
16994         or AC_FUNC_REALLOC.
16995
16996 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
16997
16998         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
16999         macros to be defined.
17000         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
17001         the allocator returns NULL because the requested size is zero.
17002
17003 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
17004
17005         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
17006         var.  Add comment explaining why libc still defines it.  This
17007         merges the following patch from glibc:
17008         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
17009
17010 2004-05-20  Andreas Schwab  <schwab@suse.de>
17011
17012         * m4/free.m4: Replace free if it not known to work, not the other
17013         way round.
17014
17015 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
17016
17017         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
17018         present in glibc since revision 1.1 of this file.
17019         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
17020         obstack_alignment_mask, obstack_alloc, obstack_base,
17021         obstack_blank, obstack_blank_fast, obstack_chunk_size,
17022         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
17023         obstack_grow0, obstack_init, obstack_int_grow,
17024         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
17025         obstack_next_free, obstack_object_size, obstack_ptr_grow,
17026         obstack_ptr_grow_fast, obstack_room): Remove declarations of
17027         nonexistent functions.
17028
17029 2004-05-18  Karl Berry  <karl@gnu.org>
17030
17031         * config/srclist.txt: break link for vasnprintf.c.
17032
17033 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
17034
17035         Port obstack to the AS/400, where pointers are 16 bytes wide and
17036         you cannot cast an integer to a valid pointer.  This patch is
17037         currently waiting to be integrated into glibc; see
17038         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
17039
17040         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
17041         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
17042         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
17043         (struct obstack): temp member is now a union of a pointer and
17044         an integer, instead of an integer.  All integer uses changed.
17045         This does not affect the physical layout of struct obstack,
17046         except on hosts (like the AS/400) where the size or alignment of
17047         void * is greater than that of ptrdiff_t.
17048         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
17049         __STDC__)]: Store temporary in pointer member of union, not
17050         integer member.
17051         * lib/obstack.c: Include <stddef.h>, for offsetof.
17052         (struct fooalign): Remove; it doesn't need a name.
17053         (union fooround): Change double to long double, and add void *.
17054         (DEFAULT_ALIGNMENT): Use offsetof to compute.
17055         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
17056         not a macro.  Hence the values are always int; so remove all
17057         casts-to-int in uses.
17058
17059 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
17060
17061         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
17062         we can get this patch merged into glibc.
17063
17064 2004-05-17  Derek R. Price  <derek@ximbiot.com>
17065             Paul Eggert  <eggert@cs.ucla.edu>
17066
17067         * m4/argp: Depend on alloca.
17068
17069 2004-05-17  Derek R. Price  <derek@ximbiot.com>
17070             Paul Eggert  <eggert@cs.ucla.edu>
17071
17072         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
17073         freecoding.
17074
17075 2004-05-17  Bruno Haible  <bruno@clisp.org>
17076
17077         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
17078         precision that consists of a '.' followed by an empty digit string.
17079         Patch by Tor Lillqvist <tml@iki.fi>.
17080
17081 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
17082
17083         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
17084         for backward compatibility with older code.  We need our own
17085         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
17086         it under some other name, and our alloca.h will define it.
17087
17088 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
17089             Derek Price  <derek@ximbiot.com>
17090
17091         * lib/alloca.c: Include <alloca.h>, to get our interface.
17092         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
17093         include <alloca.h> first.  Use C89 prototype for alloca; this
17094         requires including <stddef.h> for size_t.  Use extern "C" if C++.
17095         Use #elif for simplicity, since we can assume C89 now.
17096         Don't try to source the system alloca.h since it will not be found
17097         and to prevent recursively including its replacement.
17098         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
17099         * lib/regex.c: Likewise.
17100
17101 2004-05-16  Derek Price  <derek@ximbiot.com>
17102             Paul Eggert  <eggert@cs.ucla.edu>
17103
17104         getline cleanup.  This changes the getndelim2 API: both order of
17105         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
17106         no delimiter).
17107
17108         * lib/getline.c: Don't include stddef.h or stdio.h, since our
17109         interface does that.
17110         (getline): Always use getdelim, so that we don't have two
17111         copies of this code.
17112         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
17113         if available.
17114         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
17115         (GETNDELIM2_MAXIMUM): New macro.
17116         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
17117         instead of the old practice of delim2==0.  All callers changed.
17118         Return -1 on overflow, instead of returning junk.
17119         Do not set *linesize unless allocation succeeds.
17120         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
17121         that we include sys/types.h.
17122         * lib/getnline.h: Likewise.
17123         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
17124         (getndelim2): Reorder arguments.
17125         * lib/getnline.c (getnline, getndelim):
17126         Don't discard the NMAX argument.
17127         (getnline): Invoke getndelim, to avoid code duplication.
17128         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
17129         of (size_t) -1 by callers of the getnline family.
17130
17131 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
17132
17133         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
17134         Check for gettimeofday.
17135         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
17136         Check for settimeofday, stime.
17137
17138 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
17139
17140         * lib/nanosleep.c (suspended): Change its type from int to
17141         sig_atomic_t volatile.
17142         (first_call): Make it private to rpl_nanosleep, and have it
17143         be zero initially as that's a bit faster.
17144         (my_usleep): Round up fractional times instead of truncating them,
17145         as this is the usual meaning for 'sleep'.
17146
17147         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
17148         doesn't work.
17149         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
17150         (ENOSYS): Define if not defined.
17151         (settime): Fall back on stime if it exists and settimeofday fails.
17152         But don't bother with fallbacks if a method fails with errno == EPERM.
17153
17154 2004-05-11  Jim Meyering  <jim@meyering.net>
17155
17156         Prior to this change, the save_cwd caller required read access to the
17157         current directory on most systems (ones with the fchdir function).
17158
17159         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
17160         fails, try write-only, and finally, resort to using xgetcwd.
17161
17162 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
17163
17164         * lib/obstack.c, obstack.h: Import changes from libc.
17165
17166 2004-04-28  Bruno Haible  <bruno@clisp.org>
17167
17168         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
17169         also implicitly appends .exe to executables.
17170         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
17171         accepts Windows pathnames.
17172         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
17173         Treat Cygwin like Windows, since it now accepts Windows pathnames.
17174         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
17175         Treat Cygwin like Windows, since it now accepts Windows pathnames.
17176         Reported by Derek Robert Price <derek@ximbiot.com>.
17177
17178 2004-04-21  Karl Berry  <karl@gnu.org>
17179
17180         * config/srclist.txt (localcharset.c): break sync.
17181
17182 2004-04-20  Paul Eggert  <eggert@twinsun.com>
17183
17184         * m4/host-os.m4: Add a copyright notice.
17185
17186 2004-04-20  Jim Meyering  <jim@meyering.net>
17187
17188         Change UTILS_ to gl_ in AC_DEFINE'd names.
17189         Change utils_- and jm_-prefixed variables, too.
17190         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
17191         UTILS_FUNC_MKDIR_TRAILING_SLASH.
17192         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
17193
17194         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
17195         Don't emit trailing blanks.
17196         Also rename jm_-prefixed variables to have gl_ prefix.
17197
17198         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
17199         Also rename jm_-prefixed variables to have gl_ prefix.
17200
17201         * m4/jm-macros.m4: Reflect the renamings.
17202         * m4/prereq.m4: Likewise.
17203
17204 2004-04-20  Jim Meyering  <jim@meyering.net>
17205
17206         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
17207         memory.
17208
17209 2004-04-20  Jim Meyering  <jim@meyering.net>
17210             Bruno Haible  <bruno@clisp.org>
17211
17212         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
17213         memory when realloc fails.
17214
17215 2004-04-19  Jim Meyering  <jim@meyering.net>
17216
17217         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
17218         now that readutmp.c may call `free (0)'.
17219
17220 2004-04-19  Bruno Haible  <bruno@clisp.org>
17221
17222         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
17223         * m4/inttypes_h.m4: Likewise.
17224         * m4/stdint_h.m4: Likewise.
17225         * m4/intmax_t.m4: Likewise.
17226         * m4/uintmax_t.m4: Likewise.
17227
17228 2004-04-18  Jim Meyering  <jim@meyering.net>
17229
17230         * m4/prereq.m4: Don't forbid jm_ prefix.
17231
17232         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
17233         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
17234         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
17235         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
17236         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
17237         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
17238         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
17239         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
17240         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
17241         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
17242         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
17243         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
17244         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
17245         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
17246         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
17247         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
17248         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
17249         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
17250         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
17251
17252 2004-04-18  Jim Meyering  <jim@meyering.net>
17253
17254         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
17255         failure, don't leak memory and do call END_UTMP_ENT.
17256
17257 2004-04-16  Jim Meyering  <jim@meyering.net>
17258
17259         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
17260         coreutils' stat program.
17261         (gl_PREREQ): Don't require jm_PREREQ_STAT.
17262
17263 2004-04-11  Paul Eggert  <eggert@twinsun.com>
17264
17265         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
17266         C89.
17267         (CHAR_BIT): Remove, since we assume C89.
17268         Include <stdint.h> if available, as per current Autoconf CVS advice.
17269
17270 2004-03-31  Jim Meyering  <jim@meyering.net>
17271
17272         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
17273         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
17274         * m4/xalloc.m4: Likewise.
17275
17276 2004-03-30  Paul Eggert  <eggert@twinsun.com>
17277
17278         Merge from coreutils.
17279
17280         * m4/inttostr.m4: New file.
17281         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
17282         Require AM_STDBOOL_H and gl_TIMESPEC instead.
17283         Require gl_CLOCK_TIME.
17284         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
17285
17286 2004-03-30  Paul Eggert  <eggert@twinsun.com>
17287
17288         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
17289         not bool, to be more consistent with Unix conventions.
17290         Suggested by Bruno Haible.
17291
17292         Merge from coreutils.
17293
17294         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
17295         * lib/umaxtostr.c: New files.
17296
17297         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
17298         the usual <time.h> dance.
17299         (get_date): Change signature to support fractional time stamps.
17300         All callers changed.
17301         * lib/getdate.y: Include "getdate.h" first, as we can now
17302         assume C89 and don't need to worry about 'const'.
17303         Similarly, include "unlocked-io.h" near start, not in middle.
17304         Include <limits.h>.
17305         (textint.value): Use long int rather than int.
17306         (textint.digits): Use size_t rather than int.
17307         (BILLION, LOG10_BILLION): New constants.
17308         (parser_control): New member rel_ns.  Members day_ordinal,
17309         time_zone, month, day, hour, minutes, rel_year, rel_month,
17310         rel_day, rel_hour, rel_minutes, rel_seconds
17311         are now long int, not int.  Member seconds is now struct timespec,
17312         not int.  New member timespec_seen.  Members dates_seen, days_seen,
17313         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
17314         not int.
17315         (%union.intval): Now long int, not int.
17316         New member timespec.
17317         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
17318         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
17319         (spec): Now is a timespec or an item list.
17320         (timespec, items): New nonterminals.
17321         (time, rel, relunit, number, get_date):
17322         Add support for fractional seconds.
17323         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
17324         (gmtime, localtime, mktime): Remove decls; not needed with C89.
17325         (to_hour): First arg is now long int, not int.
17326         (to_year): Returns long int, not int.
17327         Don't treat year -70 like 70.
17328         (tm_diff): Returns long int, not int.
17329         (lookup_word): Use bool instead of int when appropriate.
17330         (yylex): Use size_t for count, not int.
17331         Detect overflow when parsing large integer constants.
17332         Add support for fractions.
17333         (get_date): Make pointers 'const' if possible.
17334         Use more-portable code to detect integer overflow.
17335         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
17336         Don't use ctime; it's not reliable if the year has >4 digits.
17337
17338         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
17339         This is for compatibility with BSD.
17340
17341         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
17342         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
17343         From coreutils' system.h.
17344
17345         * lib/userspec.c: Don't include "posixver.h".
17346         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
17347         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
17348         compatible extension.  Simplify code by removing a boolean int
17349         that was always nonzero if a string was nonnull.
17350
17351 2004-03-30  Jim Meyering  <jim@meyering.net>
17352
17353         Merge from coreutils.
17354
17355         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
17356         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
17357         on some systems one must include <grp.h> before it.
17358         Reported by Christian Krackowizer.
17359
17360 2004-03-30  Jim Meyering  <jim@meyering.net>
17361
17362         Merge from coreutils.
17363
17364         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
17365
17366         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
17367         an empty input stream.
17368
17369         * lib/readtokens.c: Include <stdbool.h>.
17370         (readtoken): Use `size_t' rather than int/long.
17371         All callers adjusted.
17372         Use `bool' rather than `int' where appropriate.
17373         Use memset rather than an explicit loop.
17374         Use x2nrealloc rather than xrealloc.
17375         Allow the use of `\0' as a delimiter.
17376         (readtokens): Likewise.
17377         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
17378
17379 2004-03-30  Jim Meyering  <jim@meyering.net>
17380
17381         * m4/realloc.m4: Remove file, since now it does no more than
17382         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
17383         the `configure.ac' section of module/realloc.
17384         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
17385
17386 2004-03-30  Bruno Haible  <bruno@clisp.org>
17387
17388         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
17389         nonnull.
17390
17391 2004-03-29  Paul Eggert  <eggert@twinsun.com>
17392
17393         Merge changes to getloadavg.c from coreutils and Emacs.
17394
17395         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
17396         Define to an expression, not to the empty string.
17397         Include cloexec.h and xalloc.h.
17398         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
17399         Use set_cloexec_flag rather than rolling our own.
17400         * lib/cloexec.c, lib/cloexec.h: New files.
17401
17402 2004-03-29  Paul Eggert  <eggert@twinsun.com>
17403
17404         * m4/cloexec.m4: New file.
17405
17406 2004-03-18  Paul Eggert  <eggert@twinsun.com>
17407
17408         * lib/getopt.h: Sync with libc CVS.
17409
17410 2004-03-18  Paul Eggert  <eggert@twinsun.com>
17411             Bruno Haible  <bruno@clisp.org>
17412
17413         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
17414         mbswidth.
17415
17416 2004-03-18  Paul Eggert  <eggert@twinsun.com>
17417             Bruno Haible  <bruno@clisp.org>
17418
17419         * lib/mbswidth.h: Include <wchar.h> only if
17420         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
17421         <wchar.h>.
17422         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
17423
17424 2004-03-09  Paul Eggert  <eggert@twinsun.com>
17425
17426         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
17427         Sync with libc CVS.
17428         * lib/getopt_int.h: New file, also synced from libc.
17429
17430 2004-03-09  Paul Eggert  <eggert@twinsun.com>
17431
17432         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
17433         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
17434         Bring back getopt.c, getopt.h, getopt1.c.
17435
17436 2004-03-07  Paul Eggert  <eggert@twinsun.com>
17437
17438         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
17439         All uses changed.  Check for sa_sigaction member; this fixes
17440         a bug first reported by Jason Andrade in
17441         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
17442
17443 2004-03-07  Paul Eggert  <eggert@twinsun.com>
17444
17445         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
17446         '#if' expressions.  Unlike the code it replaces, it does not
17447         depend on (defined _SC_PAGESIZE).  However, it does depend on
17448         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
17449         first reported by Jason Andrade in
17450         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
17451
17452 2004-02-25  Simon Josefsson  <jas@extundo.com>
17453
17454         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
17455
17456 2004-02-25  Simon Josefsson  <jas@extundo.com>
17457
17458         * lib/strdup.h: New file.
17459         * lib/strdup.c: Include it.
17460         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
17461         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
17462
17463 2004-02-23  Karl Berry  <karl@gnu.org>
17464
17465         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
17466         (from fencepost.gnu.org:/gd/gnuorg).
17467
17468 2004-02-23  Karl Berry  <karl@gnu.org>
17469
17470         * config/srclistvars.sh (GNUORG) [karl]: redefine.
17471         * config/srclist.txt: add maintain/standards documents.
17472
17473 2004-02-18  Bruno Haible  <bruno@clisp.org>
17474
17475         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
17476         Reported by Derek Robert Price <derek@ximbiot.com>.
17477
17478 2004-02-16  Karl Berry  <karl@gnu.org>
17479
17480         * config/mkinstalldirs, install-sh: update from automake.
17481
17482 2004-02-06  Karl Berry  <karl@gnu.org>
17483
17484         * m4/po.m4: update from gettext 0.14.1.
17485
17486 2004-02-06  Karl Berry  <karl@gnu.org>
17487
17488         * lib/config.charset: update from gettext 0.14.1.
17489
17490 2004-02-05  Paul Eggert  <eggert@twinsun.com>
17491
17492         Add comments and code, prompted by suggestions from Bruno Haible
17493         for sh-quote.
17494         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
17495         describing the enum quoting_style values.
17496         * lib/quotearg.c (quotearg_alloc): New function.
17497         (quotearg_buffer_restyled): Treat lone { and } as special.
17498         Treat = as special.  Work around bug with older shells
17499         that "see" a '\' that is really the 2nd byte of a multibyte char.
17500         Quote empty string with shell_quoting_style.
17501
17502 2004-02-03  Bruno Haible  <bruno@clisp.org>
17503
17504         * m4/pipe.m4: New file, from GNU gettext.
17505
17506 2004-02-03  Bruno Haible  <bruno@clisp.org>
17507
17508         * lib/pipe.h: New file, from GNU gettext.
17509         * lib/pipe.c: New file, from GNU gettext.
17510
17511 2004-01-27  Bruno Haible  <bruno@clisp.org>
17512
17513         * m4/execute.m4: New file, from GNU gettext.
17514
17515 2004-01-27  Bruno Haible  <bruno@clisp.org>
17516
17517         * lib/execute.h: New file, from GNU gettext.
17518         * lib/execute.c: New file, from GNU gettext.
17519         * lib/w32spawn.h: New file, from GNU gettext.
17520
17521 2004-01-24  Paul Eggert  <eggert@twinsun.com>
17522
17523         Merge from diffutils.
17524
17525         * lib/file-type.c (file_type): Add typed memory objects.
17526         * lib/file-type.h (S_TYPEISTMO): New macro.
17527
17528         * lib/c-stack.h (c_stack_action): Remove argv argument.
17529         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
17530         (die): Don't calculate message unless segv_action returns.
17531         (get_stack_location, min_address_from_argv, max_address_from_argv,
17532         volatile stack_base, volatile_stack_size): Remove.
17533         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
17534         that every segmentation violation is a stack overflow.  (Ouch!)
17535         See Debian bug 136249 (still outstanding) for more info about why
17536         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
17537
17538 2004-01-24  Paul Eggert  <eggert@twinsun.com>
17539
17540         Exit-status fix from coreutils.
17541
17542         Use exit_failure consistently in place of EXIT_FAILURE,
17543         so that program exit statuses are consistent on failure.
17544
17545         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
17546         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
17547         * lib/argmatch.h: Comment fix to match the above.
17548         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
17549         Now a macro referring to exit_failure, instead of a separate
17550         variable.  Include "exitfail.h" to get it.
17551         * lib/xstrtol.h: Include "exitfail.h".
17552         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
17553
17554         * lib/long-options.c (parse_long_options): Use prototype
17555         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
17556         for clarity.
17557
17558 2004-01-21  Jim Meyering  <jim@meyering.net>
17559
17560         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
17561         so as not to conflict with a different-sized __mktime_internal
17562         function in GNU libc.
17563         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
17564         Problem building statically-linked `ls' reported by Michael Brunnbauer.
17565
17566 2004-01-20  Karl Berry  <karl@gnu.org>
17567
17568         * config/config.guess: update from config.
17569
17570         * config/srclistvars.sh: GNUWWWLICENSES for karl.
17571
17572 2004-01-20  Bruno Haible  <bruno@clisp.org>
17573
17574         Safer stack allocation.
17575         * lib/setenv.c: Include allocsa.h.
17576         (alloca): Remove fallback definition.
17577         (freea): Remove macro.
17578         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
17579         instead of freea.
17580
17581 2004-01-20  Bruno Haible  <bruno@clisp.org>
17582
17583         * m4/eealloc.m4: New file, from GNU gettext.
17584
17585 2004-01-20  Bruno Haible  <bruno@clisp.org>
17586
17587         * m4/allocsa.m4: New file, from GNU gettext.
17588
17589 2004-01-20  Bruno Haible  <bruno@clisp.org>
17590
17591         * lib/xallocsa.h: New file, from GNU gettext.
17592         * lib/xallocsa.c: New file, from GNU gettext.
17593
17594 2004-01-20  Bruno Haible  <bruno@clisp.org>
17595
17596         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
17597
17598 2004-01-20  Bruno Haible  <bruno@clisp.org>
17599
17600         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
17601         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
17602         specially.
17603
17604 2004-01-20  Bruno Haible  <bruno@clisp.org>
17605
17606         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
17607         patch.
17608
17609 2004-01-20  Bruno Haible  <bruno@clisp.org>
17610
17611         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
17612
17613 2004-01-20  Bruno Haible  <bruno@clisp.org>
17614
17615         * lib/eealloc.h: New file.
17616
17617 2004-01-20  Bruno Haible  <bruno@clisp.org>
17618
17619         * lib/binary-io.h: Avoid warnings on Cygwin.
17620
17621 2004-01-20  Bruno Haible  <bruno@clisp.org>
17622
17623         * lib/allocsa.h: New file, from GNU gettext.
17624         * lib/allocsa.c: New file, from GNU gettext.
17625
17626 2004-01-18  Karl Berry  <karl@gnu.org>
17627
17628         * doc/gpl.texi, doc/lgpl.texi: new files.
17629
17630 2004-01-18  Karl Berry  <karl@gnu.org>
17631
17632         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
17633         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
17634
17635 2004-01-15  Paul Eggert  <eggert@twinsun.com>
17636
17637         Merge from coreutils.
17638
17639         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
17640         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
17641         (gl_DEFAULT_POSIX2_VERSION): Move
17642         the documentation from 'configure' into 'config.hin',
17643         so that 'configure --help' isn't burdened by it and
17644         we don't have to worry about its formatting there.
17645         Reword the documentation so that it's more succinct
17646         and can be run together into a single paragraph.
17647         * m4/same.m4 (gl_SAME): Check for pathconf.
17648
17649 2004-01-15  Paul Eggert  <eggert@twinsun.com>
17650
17651         Merge from coreutils.
17652
17653         * lib/posixver.c: Include posixver.h.
17654
17655         * lib/same.c: Include <stdbool.h>, <limits.h>.
17656         (_POSIX_NAME_MAX): Define if not defined.
17657         (MIN): New macro.
17658         (same_name): If file names are silently truncated, report
17659         that the file names are the same if they are the same after
17660         the silent truncation.
17661
17662         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
17663         conversion function.
17664         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
17665         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
17666         longer needed.
17667
17668 2004-01-15  Jim Meyering  <jim@meyering.net>
17669
17670         Merge from coreutils.
17671
17672         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
17673         if no library is required.
17674         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
17675         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
17676         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
17677         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
17678         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
17679         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
17680         value, $ac_cv_search_crypt, if it's "none required".
17681         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
17682         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
17683         not gl_FUNC_GETLOADAVG.
17684         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
17685         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
17686
17687 2004-01-15  Jim Meyering  <jim@meyering.net>
17688
17689         Merge from coreutils.
17690
17691         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
17692         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
17693         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
17694
17695         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
17696         optional configure-time default.
17697
17698         * lib/version-etc.c (version_etc_copyright): Update copyright date.
17699
17700         * lib/xreadlink.c (xreadlink): Correct outdated comment.
17701
17702 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
17703
17704         Merge from coreutils.
17705
17706         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
17707         value, $ac_cv_search_nanosleep, if it's "none required".
17708
17709 2004-01-14  Paul Eggert  <eggert@twinsun.com>
17710
17711         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
17712         with like-named macro in fnmatch.c.
17713         (EXT): Use an internal constant instead.
17714
17715         Merge fnmatch patches from glibc.
17716         * lib/fnmatch.c (mbsinit): Remove define.
17717         Add libc_hidden_ver (__fnmatch, fnmatch).
17718         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
17719         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
17720
17721 2004-01-14  Karl Berry  <karl@gnu.org>
17722
17723         * config/install-sh: update from automake.
17724
17725 2004-01-13  Karl Berry  <karl@gnu.org>
17726
17727         * config/install-sh: update from automake.
17728
17729 2004-01-09  Karl Berry  <karl@gnu.org>
17730
17731         * config/install-sh: update from automake.
17732
17733 2004-01-05  Karl Berry  <karl@gnu.org>
17734
17735         * config/config.{sub,guess}: update from config.
17736
17737 2003-12-31  Karl Berry  <karl@gnu.org>
17738
17739         * config/depcomp: update from automake.
17740
17741 2003-12-14  Karl Berry  <karl@gnu.org>
17742
17743         * lib/config.charset: update from gettext-runtime.
17744
17745 2003-12-03  Paul Eggert  <eggert@twinsun.com>
17746
17747         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
17748         Bug reported by Alfred M. Szmidt.
17749
17750 2003-12-03  Bruno Haible  <bruno@clisp.org>
17751
17752         * m4/gettext.m4: Upgrade from gettext-0.13.
17753         * m4/po.m4: Upgrade from gettext-0.13.
17754         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
17755         * m4/intmax.m4: New file, from gettext-0.13.
17756         * m4/printf-posix.m4: New file, from gettext-0.13.
17757
17758 2003-11-29  Karl Berry  <karl@gnu.org>
17759
17760         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
17761
17762 2003-11-25  Paul Eggert  <eggert@twinsun.com>
17763             Bruno Haible  <bruno@clisp.org>
17764
17765         * lib/printf-parse.h: Don't include sys/types.h.
17766         (ARG_NONE): New macro.
17767         (char_directive): Change type of *arg_index fields to size_t.
17768         * lib/printf-parse.c: Don't include sys/types.h.
17769         (SSIZE_MAX): Remove macro.
17770         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
17771         Remove unnecessary overflow check.
17772         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
17773         fields.
17774
17775 2003-11-25  Bruno Haible  <bruno@clisp.org>
17776
17777         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
17778
17779 2003-11-25  Bruno Haible  <bruno@clisp.org>
17780
17781         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
17782         gt_TYPE_SSIZE_T.
17783
17784 2003-11-24  Paul Eggert  <eggert@twinsun.com>
17785
17786         * modules/alloca: Remove dependency on xalloc.
17787
17788 2003-11-24  Paul Eggert  <eggert@twinsun.com>
17789
17790         * lib/alloca.c: Remove dependency on xalloc module.
17791         (xalloc_die): Remove.
17792         (memory_full) [!defined emacs]: New macro.
17793         [!defined emacs]: Don't include xalloc.h.
17794         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
17795         address arithmetic overflows.  Change datatypes a bit to avoid
17796         unnecessary casts.
17797
17798 2003-11-22  Jim Meyering  <jim@meyering.net>
17799
17800         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
17801         s/size/size_t/.
17802
17803 2003-11-21  Karl Berry  <karl@gnu.org>
17804
17805         * config/config.{sub,guess}: update from config.
17806
17807 2003-11-18  Karl Berry  <karl@gnu.org>
17808
17809         * config/config.{sub,guess}: update from config.
17810
17811         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
17812
17813 2003-11-17  Paul Eggert  <eggert@twinsun.com>
17814
17815         * README: Mention that S+T cannot overflow if S is the size of
17816         an existing object and T is sufficiently small.
17817
17818 2003-11-17  Jim Meyering  <jim@meyering.net>
17819
17820         On systems without utime and without a utimes function capable of
17821         dealing with a NULL struct utimbuf* argument, this utime replacement
17822         could -- in unusual circumstances -- leak a file descriptor.
17823         * lib/utime.c: Include <unistd.h> and <errno.h>.
17824         (utime_null): Be sure to close `fd' and to preserve errno.
17825         Reported by Geoff Collyer via Arnold Robbins.
17826
17827 2003-11-17  Bruno Haible  <bruno@clisp.org>
17828
17829         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
17830         (Depends-on): Add xsize.
17831
17832 2003-11-17  Bruno Haible  <bruno@clisp.org>
17833
17834         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
17835
17836 2003-11-17  Bruno Haible  <bruno@clisp.org>
17837
17838         * lib/vasnprintf.c (alloca): Remove fallback definition.
17839         (freea): Remove definition.
17840         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
17841         Reported by Paul Eggert.
17842
17843 2003-11-16  Paul Eggert  <eggert@twinsun.com>
17844             Bruno Haible  <bruno@clisp.org>
17845
17846         Protect against address arithmetic overflow.
17847         * lib/printf-args.h: Include stddef.h.
17848         (arguments): Change type of field 'count' to size_t.
17849         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
17850         'unsigned int' where appropriate.
17851         * lib/printf-parse.h: Include sys/types.h.
17852         (char_directive): Change type of *arg_index fields to ssize_t.
17853         (char_directives): Change type of fields 'count', max_*_length to
17854         size_t.
17855         * lib/printf-parse.c: Include sys/types.h and xsize.h.
17856         (SSIZE_MAX): Define fallback value.
17857         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
17858         instead of 'int' where appropriate. Check a_allocated, d_allocated
17859         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
17860         * lib/vasnprintf.c: Include xsize.h.
17861         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
17862         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
17863         overflow. Avoid wraparound when converting a width or precision from
17864         decimal to binary.
17865
17866 2003-11-16  Bruno Haible  <bruno@clisp.org>
17867
17868         Update from GNU gettext.
17869         * lib/printf-parse.c: Generalize to it can be compiled for wide
17870         strings.
17871         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
17872         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
17873         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
17874         SNPRINTF): New macros.
17875         Don't include <alloca.h> if the file is used inside libintl.
17876         (local_wcslen): New function, for Solaris 2.5.1.
17877         (VASNPRINTF): Use it instead of wcslen.
17878
17879 2003-11-16  Bruno Haible  <bruno@clisp.org>
17880
17881         * lib/xsize.h (xmax): New function.
17882         (xsum, xsum3, xsum4): Declare as "pure" functions.
17883
17884 2003-11-12  Paul Eggert  <eggert@twinsun.com>
17885
17886         * modules/xalloc (Files): Undo latest change, since xalloc.h
17887         no longer needs SIZE_MAX or PTRDIFF_MAX.
17888
17889 2003-11-12  Paul Eggert  <eggert@twinsun.com>
17890
17891         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
17892         gl_PTRDIFF_MAX.
17893
17894 2003-11-12  Paul Eggert  <eggert@twinsun.com>
17895
17896         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
17897         "return", to pacify some unknown compiler.  Problem reported
17898         by Joerg Schilling.
17899
17900 2003-11-12  Paul Eggert  <eggert@twinsun.com>
17901
17902         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
17903         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
17904         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
17905         heuristic is just as accurate as far as we know, and it removes a
17906         dependency on size_max.m4 and ptrdiff_max.m4.
17907
17908 2003-11-11  Bruno Haible  <bruno@clisp.org>
17909
17910         * modules/xsize (Files): Add m4/size_max.m4.
17911         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
17912
17913 2003-11-11  Bruno Haible  <bruno@clisp.org>
17914
17915         * m4/size_max.m4: New file.
17916         * m4/ptrdiff_max.m4: New file.
17917         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
17918         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
17919         (gl_XALLOC): Invoke it.
17920
17921 2003-11-11  Bruno Haible  <bruno@clisp.org>
17922
17923         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
17924         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
17925         defined.
17926
17927 2003-11-10  Paul Eggert  <eggert@twinsun.com>
17928
17929         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
17930         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
17931         rejected some allocations of exactly SIZE_MAX - 2 bytes.
17932         From Bruno Haible.
17933         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
17934         not (size_t) -1, since it's defined here.
17935
17936 2003-11-09  Karl Berry  <karl@gnu.org>
17937
17938         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
17939
17940 2003-11-06  Paul Eggert  <eggert@twinsun.com>
17941
17942         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
17943         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
17944         Reject sizes of exactly SIZE_MAX bytes.
17945         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
17946         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
17947
17948 2003-11-05  Bruno Haible  <bruno@clisp.org>
17949
17950         * lib/xsize.h: Include limits.h, to avoid a possible collision with
17951         SIZE_MAX defined in <limits.h> on Solaris.
17952
17953 2003-11-04  Jim Meyering  <jim@meyering.net>
17954
17955         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
17956         variable names, rather than @VAR@.
17957         * modules/poll: Likewise.
17958
17959 2003-11-04  Bruno Haible  <bruno@clisp.org>
17960
17961         * modules/xsize: New file.
17962         * modules/linebreak: Depend on xsize.
17963         * MODULES.html.sh (func_all_modules): Add xsize.
17964
17965 2003-11-04  Bruno Haible  <bruno@clisp.org>
17966
17967         * m4/xsize.m4: New file.
17968
17969 2003-11-04  Bruno Haible  <bruno@clisp.org>
17970
17971         * lib/xsize.h: New file.
17972         * lib/linebreak.c: Include xsize.h.
17973         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
17974         argument for overflow.
17975         Suggested by Paul Eggert.
17976
17977 2003-11-03  Karl Berry  <karl@gnu.org>
17978
17979         * config/config.{guess,sub}: update from config.
17980
17981 2003-11-03  Jim Meyering  <jim@meyering.net>
17982
17983         * modules/userspec (lib_SOURCES): Add userspec.h.
17984         (Include): Add "userspec.h".
17985         Improve description.
17986
17987 2003-11-03  Jim Meyering  <jim@meyering.net>
17988
17989         * lib/userspec.c: Include "userspec.h".
17990         * lib/userspec.h: New file.
17991
17992 2003-11-03  Bruno Haible  <bruno@clisp.org>
17993
17994         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
17995
17996 2003-11-03  Bruno Haible  <bruno@clisp.org>
17997
17998         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
17999         available, to avoid (extremely rare) race condition.
18000         Suggested by Paul Eggert.
18001
18002 2003-11-02  Karl Berry  <karl@gnu.org>
18003
18004         * config/srclist.txt (vasprintf.c): sync broken, sigh.
18005
18006 2003-10-31  Paul Eggert  <eggert@twinsun.com>
18007
18008         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
18009         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
18010         (read_filesystem_list): Set and use me_type_malloced.
18011         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
18012         whatever the type happens to be), for brevity and consistency.
18013         Check for size calculation overflow on Alphas running OSF/1.
18014
18015 2003-10-31  Jim Meyering  <jim@meyering.net>
18016
18017         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
18018
18019         * lib/linebuffer.c: Include <string.h> for declaration of memset.
18020
18021 2003-10-30  Paul Eggert  <eggert@twinsun.com>
18022             Bruno Haible  <bruno@clisp.org>
18023
18024         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
18025         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
18026
18027 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
18028
18029         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
18030         netbsd*-gnu*.  Suggested by Robert Millan.
18031
18032 2003-10-29  Paul Eggert  <eggert@twinsun.com>
18033
18034         * modules/group-member: Depend on stdbool.
18035
18036 2003-10-29  Paul Eggert  <eggert@twinsun.com>
18037
18038         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
18039
18040 2003-10-29  Paul Eggert  <eggert@twinsun.com>
18041
18042         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
18043         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
18044         after the 'gnu' in these cases.  This fixes some bugs in the
18045         previous change, and is based on suggestions by Robert Millan.
18046
18047 2003-10-29  Paul Eggert  <eggert@twinsun.com>
18048
18049         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
18050         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
18051         no longer needed.
18052         * lib/quotearg.c (quotearg_n_options): Use it.
18053         * lib/group-member.c: Include <stdbool.h>.
18054         (free_group_info): Arg is now const *; don't free arg.
18055         (get_group_info): Now returns bool and accepts struct group_info *,
18056         rather than returning a malloc'ed struct group_info *.
18057         All uses changed.  Check for overflow in internal size calculation.
18058
18059         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
18060         rather than xmalloc/xrealloc.
18061         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
18062         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
18063         conformance bug: the old code used a pointer after freeing the
18064         storage that it addressed.
18065         * lib/hash.c (hash_initialize): Simplify the code by using
18066         xalloc_oversized rather than doing it by hand.
18067         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
18068         the buffer preserved.  Use free and xmalloc instead.
18069         * lib/quotearg.c (quotearg_n_options): Likewise.
18070         Use a simpler test for size overflow.  Don't use xalloc_oversized
18071         because unsigned int might be wider than size_t (!); this suggests
18072         that we should switch from unsigned int to size_t for slot numbers.
18073
18074 2003-10-28  Paul Eggert  <eggert@twinsun.com>
18075
18076         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
18077         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
18078         NetBSD kernels.  Requested by Richard Stallman.
18079
18080 2003-10-27  Paul Eggert  <eggert@twinsun.com>
18081
18082         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
18083         to allocate the returned structure.  Do not allocate a subarray,
18084         as x2nrealloc will do that.
18085         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
18086         instead of xnrealloc.
18087         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
18088
18089 2003-10-27  Bruno Haible  <bruno@clisp.org>
18090
18091         * lib/stdbool_.h: Better support for BeOS.
18092
18093 2003-10-26  Paul Eggert  <eggert@twinsun.com>
18094
18095         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
18096         now uses inline.
18097
18098 2003-10-26  Paul Eggert  <eggert@twinsun.com>
18099
18100         * lib/xalloc.h (xalloc_oversized): New static inline function, for
18101         callers that want to do their own size-overflow checking.  Include
18102         <stdbool.h>, since xalloc_oversized returns bool.
18103         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
18104         to use xalloc_oversized.
18105
18106         Add two functions x2realloc, x2nrealloc, for programs that grow
18107         arrays dynamically by doubling their sizes.
18108         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
18109         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
18110         New functions.
18111
18112         Port to C99 semantics for 'inline' of external functions.
18113         Bug reported by Bruno Haible.
18114         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
18115         with the old contents of xnmalloc.
18116         (xnmalloc, xmalloc): Use it.
18117         (xnrealloc_inline): New static inline function,
18118         with the old contents of xnrealloc.
18119         (xnrealloc, xrealloc): Use it.
18120
18121         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
18122         that.
18123
18124 2003-10-26  Karl Berry  <karl@gnu.org>
18125
18126         * config/srclist.txt (COPYING.DOC): no longer available from
18127         /gd/gnuorg; don't know where the ultimate source is.
18128
18129 2003-10-25  Paul Eggert  <eggert@twinsun.com>
18130
18131         Fix several address-calculation bugs in the hash modules,
18132         plus some minor code cleanup.
18133
18134         * lib/hash.h: Include <stdbool.h>, for bool.
18135         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
18136         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
18137         hash_get_n_entries, hash_get_max_bucket_length,
18138         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
18139         hash_rehash): Use size_t rather than unsigned.
18140         * lib/hash.c (struct hash_table, hash_get_n_buckets,
18141         hash_get_n_buckets_used, hash_get_n_entries,
18142         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
18143         hash_get_entries, hash_do_for_each, hash_string, is_prime,
18144         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
18145         Likewise.
18146         (SIZE_MAX): Define if not defined.
18147         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
18148         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
18149         hash_print):
18150         Use const * when possible.
18151         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
18152         (check_tuning): Fix bug: if tuning parameters were very close to
18153         0 or 1, rounding errors could have caused subscript violations.
18154         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
18155         (hash_initialize): Add 'fail:' label
18156         to free table and return NULL, and use it to simplify code.
18157         Use calloc rather than clearing the storage ourself.
18158         (hash_initialize, hash_rehash): Check for arithmetic overflow in
18159         buffer size calculations.
18160         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
18161         Include <stddef.h>, for size_t.
18162         * lib/hash-pjw.c (hash_pjw): Likewise.
18163         Switch to method described by Bruno Haible.
18164         Include <limits.h>, for CHAR_BIT.
18165         (SIZE_BITS): New macro.
18166
18167 2003-10-23  Paul Eggert  <eggert@twinsun.com>
18168
18169         * m4/getline.m4 (AM_FUNC_GETLINE):
18170         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
18171         hosts.  Problem reported by Derek Robert Price in
18172         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
18173         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
18174         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
18175
18176 2003-10-21  Paul Eggert  <eggert@twinsun.com>
18177
18178         * lib/getndelim2.c (getndelim2): When size calculation overflows,
18179         ceiling the allocation at NMAX bytes rather than silently
18180         discarding input bytes before NMAX is reached.  This makes
18181         a difference only if NMAX exceeds SIZE_MAX / 2.
18182
18183         * lib/obstack.c: Merge from glibc.
18184         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
18185         Add libc_hidden_def (_obstack_newchunk).
18186         (_obstack_free) [! defined _LIBC]: Remove.
18187         [defined _LIBC]: Make a strong alias from obstack_free, rather than
18188         a clone of the function body.
18189         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
18190         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
18191
18192         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
18193         glibc.
18194         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
18195         arg to memcpy.
18196
18197         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
18198         (obstack_ptr_grow_fast, obstack_int_grow_fast):
18199         Don't use lvalue casts, as GCC plans to remove support for them
18200         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
18201         was also present in the non-GCC version, indicating that this
18202         code had always been buggy and had never been widely used.
18203         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
18204         Use the fast variant of each macro, rather than copying the
18205         definiens of the fast variant; that way, we'll be more likely to
18206         catch future bugs in the fast variants.
18207
18208 2003-10-20  Bruno Haible  <bruno@clisp.org>
18209
18210         * modules/wait-process: New file.
18211         * MODULES.html.sh (func_all_modules): Add wait-process.
18212
18213 2003-10-20  Bruno Haible  <bruno@clisp.org>
18214
18215         * m4/wait-process.m4: New file.
18216
18217 2003-10-20  Bruno Haible  <bruno@clisp.org>
18218
18219         * lib/wait-process.h: New file, from GNU gettext.
18220         * lib/wait-process.c: New file, from GNU gettext.
18221
18222 2003-10-19  Jim Meyering  <jim@meyering.net>
18223
18224         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
18225         HPUX 10.20.
18226
18227 2003-10-18  Karl Berry  <karl@gnu.org>
18228
18229         * config/config.guess: update from config.
18230
18231 2003-10-16  Paul Eggert  <eggert@twinsun.com>
18232
18233         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
18234         (getgroups): First arg is int, not size_t.
18235         Don't let 'free' mangle errno.
18236
18237 2003-10-16  Paul Eggert  <eggert@twinsun.com>
18238
18239         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
18240
18241 2003-10-16  Karl Berry  <karl@gnu.org>
18242
18243         * config/config.{guess,sub}: update from config.
18244
18245 2003-10-16  Jim Meyering  <jim@meyering.net>
18246
18247         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
18248         memcpy.
18249
18250 2003-10-15  Paul Eggert  <eggert@twinsun.com>
18251
18252         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
18253         (SIZE_MAX): Remove.
18254         (new_exclude, add_exclude_file): Initial size no longer needs to
18255         be a power of 2.
18256         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
18257         our own address arithmetic overflow checking.
18258
18259         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
18260         (fnmatch): Do not alloca more than 2000 wide characters;
18261         instead, use malloc for large buffers.
18262         Check for address arithmetic overflow, and return -1
18263         with errno set to ENOMEM in that case.
18264         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
18265         (NEW_PATTERN): Do not alloca more than 8000 bytes;
18266         instead, return -1.  Check for address arithmetic overflow.
18267
18268 2003-10-14  Paul Eggert  <eggert@twinsun.com>
18269
18270         Handle invalid suffixes and overflow independently, so that
18271         callers can treat them independently as needed.  Fix some bugs in
18272         suffix handling, e.g., "100k@" was not diagnosed as an invalid
18273         suffix for a human-readable blocksize.  The major caller-visible
18274         change is the addition of a new
18275         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
18276         that both overflow and suffix chars were found.
18277
18278         * lib/human.c (humblock): Don't check separately for invalid suffix
18279         char; that is xstrtoumax's job (now that its bug is fixed).
18280         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
18281         INTMAX_MAX]: New macros.
18282         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
18283         TYPE_MAXIMUM): New macros.
18284         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
18285         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
18286         if overflow occurs, as it's what __strtol does and it's more useful
18287         in practice.
18288         (__xstrtol): If __strtol reports some error other than ERANGE,
18289         reflect it to the caller as LONGINT_INVALID.  If it reports
18290         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
18291         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
18292         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
18293         value.
18294         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
18295         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
18296         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
18297         [defined UINTMAX_MAX]: New macros.
18298
18299 2003-10-14  Bruno Haible  <bruno@clisp.org>
18300
18301         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
18302
18303 2003-10-14  Bruno Haible  <bruno@clisp.org>
18304
18305         * m4/sig_atomic_t: New file, from GNU gettext.
18306         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
18307
18308 2003-10-14  Bruno Haible  <bruno@clisp.org>
18309
18310         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
18311         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
18312         Also use volatile where needed.
18313
18314 2003-10-12  Paul Eggert  <eggert@twinsun.com>
18315
18316         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
18317         Change maintainer from Bruno Haible to 'all'.
18318
18319 2003-10-12  Paul Eggert  <eggert@twinsun.com>
18320
18321         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
18322
18323 2003-10-12  Paul Eggert  <eggert@twinsun.com>
18324
18325         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
18326         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
18327         and define in terms of the other primitives.
18328         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
18329         (SIZE_MAX): Define if not already defined.
18330         (array_size_overflow): New function.
18331         (xalloc_die): Abort instead of exiting if 'error' returns.
18332         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
18333         (xmalloc, xrealloc): Use them.
18334         (xcalloc): Check for address arithmetic overflow.
18335         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
18336         a bit faster than strcpy.
18337
18338 2003-10-10  Simon Josefsson  <jas@extundo.com>
18339
18340         * modules/argp (Depends-on): Add restrict and strcase.
18341
18342 2003-10-10  Simon Josefsson  <jas@extundo.com>
18343
18344         * m4/argp.m4: Add AC_C_INLINE.
18345
18346 2003-10-08  Paul Eggert  <eggert@twinsun.com>
18347
18348         Merge getpass from libc, plus a few fixes.
18349
18350         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
18351         Include <stdbool.h>.
18352         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
18353         __fsetlocking to empty.
18354         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
18355         do include <bits/libc-lock.h>.
18356         Do not include <fcntl.h>; not needed.
18357         [_LIBC]: Include <wchar.h>.
18358         (NOTCANCEL_MODE): New macro.
18359         (flockfile, funlockfile) [_LIBC]: New macros.
18360         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
18361         [!_LIBC]: New macros.
18362         (call_fclose): New function.
18363         (getpass): Use it.  Save tty stream separately; this simplifies the
18364         code and makes it more reliable if stdin happens to equal stdout.
18365         Invoke __fsetlocking on tty.
18366         Handle thread cancellation if needed.
18367         Namespace cleanup (use __tcgetattr, __getline).
18368         Use bool for Booleans.
18369         [USE_IN_LIBIO]: Handle wide streams.
18370         [!_LIBC]: Unconditionally do the fseek, since we don't know what
18371         stream might go where.
18372
18373         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
18374         doesn't have to include <stdio.h> before us.
18375         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
18376         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
18377         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
18378         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
18379         if not declared, so that we can use getpass.c code from libc without
18380         rewriting it.
18381         (flockfile, ftrylockfile, funlockfile): New macros.
18382
18383 2003-10-08  Paul Eggert  <eggert@twinsun.com>
18384
18385         * modules/getpass: Depend on stdbool.
18386
18387 2003-10-08  Paul Eggert  <eggert@twinsun.com>
18388
18389         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
18390
18391 2003-10-07  Karl Berry  <karl@gnu.org>
18392
18393         * config/config.{guess,sub}: update from config.
18394
18395 2003-10-06  Jim Meyering  <jim@meyering.net>
18396             Bruno Haible  <bruno@clisp.org>
18397
18398         This lets translators provide better translations for the
18399         "Written by ..." part of --version output.
18400         * lib/version-etc.h: Include stdarg.h.
18401         (version_etc_copyright): Declare as readonly.
18402         (version_etc): Make this function variadic with a NULL-terminated list
18403         of author name strings.
18404         (version_etc_va): New declaration.
18405         * lib/version-etc.c: Include stdarg.h, stdlib.h.
18406         (version_etc_copyright): Declare as readonly.
18407         (version_etc_va): New function. Provide a different translatable string
18408         for each possible number of authors < 10. Abbreviate when there are 10
18409         authors or more.
18410         (version_etc): Make this function variadic. Call version_etc_va.
18411         Suggestion from Gary V. Vaughan.
18412
18413         * lib/long-options.h (parse_long_options): Change prototype: the
18414         authors string is moved to the end and becomes variadic.
18415         * lib/long-options.c: Include stdarg.h.
18416         (parse_long_options): Make this function variadic, too.
18417         Call version_etc_va, not version_etc.
18418
18419 2003-10-06  Bruno Haible  <bruno@clisp.org>
18420
18421         * modules/version-etc-2: Remove file.
18422         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
18423
18424 2003-10-06  Bruno Haible  <bruno@clisp.org>
18425
18426         * modules/fatal-signal: New file.
18427         * MODULES.html.sh (func_all_modules): Add fatal-signal.
18428
18429 2003-10-06  Bruno Haible  <bruno@clisp.org>
18430
18431         * m4/fatal-signal.m4: New file.
18432         * m4/signalblocking.m4: New file, from GNU gettext.
18433
18434 2003-10-06  Bruno Haible  <bruno@clisp.org>
18435
18436         * lib/version-etc-2.h: Remove file.
18437         * lib/version-etc-2.c: Remove file.
18438
18439 2003-10-06  Bruno Haible  <bruno@clisp.org>
18440
18441         * lib/fatal-signal.h: New file, from GNU gettext.
18442         * lib/fatal-signal.c: New file, from GNU gettext.
18443
18444 2003-10-05  Paul Eggert  <eggert@twinsun.com>
18445
18446         * README: Rework advice for preventing empty .o files.
18447         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
18448         not <sys/types.h>.
18449
18450 2003-10-04  Karl Berry  <karl@gnu.org>
18451
18452         * lib/argp*: update from libc.
18453
18454 2003-10-04  Karl Berry  <karl@gnu.org>
18455
18456         * config/config.{guess,sub}: update from config.
18457
18458 2003-10-02  Bruno Haible  <bruno@clisp.org>
18459
18460         * modules/lchown (Include): Add lchown.h.
18461         * modules/time_r (Include): Use "..." syntax.
18462         * modules/xgetdomainname (Include): Add xgetdomainname.h.
18463
18464 2003-10-01  Simon Josefsson  <jas@extundo.com>
18465
18466         * MODULES.html.sh (func_all_modules): Move gethostname from section
18467         'based on' to section 'lacking' POSIX:2001.
18468
18469 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
18470
18471         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
18472         to output mode on the same stream.
18473
18474 2003-09-29  Paul Eggert  <eggert@twinsun.com>
18475
18476         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
18477         Fix arg typo in previous patch.
18478
18479 2003-09-28  Jim Meyering  <jim@meyering.net>
18480
18481         * lib/error.c: Correct cpp indentation.
18482
18483 2003-09-27  Paul Eggert  <eggert@twinsun.com>
18484
18485         * modules/free: New file.
18486
18487 2003-09-27  Paul Eggert  <eggert@twinsun.com>
18488
18489         * m4/free.m4: New file.
18490
18491 2003-09-27  Paul Eggert  <eggert@twinsun.com>
18492
18493         * lib/minmax.h (MIN, MAX)
18494         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
18495         Omit the special code that used __typeof__, since we worry that
18496         it could be more trouble than it's worth.  See:
18497         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
18498         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
18499
18500         * lib/free.c: New file.
18501
18502 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
18503
18504         Trivial fixes to Makefile.am parts of module listings.
18505         * modules/strstr: Append strstr.h to lib_SOURCES.
18506         * modules/strcase: Likewise, for strcase.h.
18507
18508 2003-09-27  Karl Berry  <karl@gnu.org>
18509
18510         * config/mkinstalldirs: update from automake.
18511
18512 2003-09-26  Paul Eggert  <eggert@twinsun.com>
18513
18514         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
18515         (error_tail): Do not loop, reallocating temporary buffer, since
18516         the output cannot contain more wide characters than the input
18517         contains bytes, the size must be big enough already.  This avoids
18518         one potential size overflow calculation.  Check for size overflow
18519         when calculating temporary buffer size.  Free temporary buffer
18520         when done, if it was allocated with malloc; this plugs a memory
18521         leak.  Remove casts from void * to pointers, that are no longer
18522         needed now that we're assuming C89 or better.
18523
18524         Merge error changes from glibc.
18525
18526         * lib/error.c, error.h: Update copyright notice header to match glibc.
18527         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
18528         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
18529         Disable cancellation while printing error.
18530         * lib/error.h: Prepend __ to parameter names.
18531
18532 2003-09-26  Jim Meyering  <jim@meyering.net>
18533
18534         * lib/error.c (error_tail): Move some declarations
18535         into inner scope where the local variables are used.
18536
18537 2003-09-26  Bruno Haible  <bruno@clisp.org>
18538
18539         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
18540         stpncpy().
18541         Don't define stpncpy through config.h; it's now done through stpncpy.h.
18542
18543 2003-09-26  Bruno Haible  <bruno@clisp.org>
18544
18545         * lib/stpncpy.h (gnu_stpncpy): New declaration.
18546         (stpncpy): Define as alias for gnu_stpncpy.
18547         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
18548
18549 2003-09-25  Simon Josefsson  <jas@extundo.com>
18550
18551         * lib/xgetdomainname.h: New file.
18552         * lib/xgetdomainname.c: New file.
18553
18554 2003-09-25  Simon Josefsson  <jas@extundo.com>
18555             Bruno Haible  <bruno@clisp.org>
18556
18557         * modules/getdomainname: New file.
18558         * modules/xgetdomainname: New file.
18559         * MODULES.html.sh (func_all_modules): Add getdomainname,
18560         xgetdomainname.
18561
18562 2003-09-25  Simon Josefsson  <jas@extundo.com>
18563             Bruno Haible  <bruno@clisp.org>
18564
18565         * m4/getdomainname.m4: New file.
18566
18567 2003-09-25  Simon Josefsson  <jas@extundo.com>
18568             Bruno Haible  <bruno@clisp.org>
18569
18570         * lib/getdomainname.h: New file.
18571         * lib/getdomainname.c: New file.
18572
18573 2003-09-25  Karl Berry  <karl@gnu.org>
18574
18575         * lib/argp-fmtstream.c, argp-help.c: update from libc.
18576
18577 2003-09-25  Karl Berry  <karl@gnu.org>
18578
18579         * config/install-sh: update from automake.
18580
18581 2003-09-25  Bruno Haible  <bruno@clisp.org>
18582
18583         * modules/version-etc-2: New file, from modules/version-etc with
18584         modifications.
18585         * MODULES.html.sh (func_all_modules): Add version-etc-2.
18586
18587 2003-09-25  Bruno Haible  <bruno@clisp.org>
18588
18589         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
18590         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
18591
18592 2003-09-24  Simon Josefsson  <jas@extundo.com>
18593
18594         * modules/xgethostname: Add xgethostname.h.
18595
18596 2003-09-24  Paul Eggert  <eggert@twinsun.com>
18597
18598         * lib/linebuffer.c (freebuffer): Don't free the argument, just
18599         the buffer associated with the argument.  Bug reported by
18600         Simon Josefsson.
18601
18602 2003-09-24  Paul Eggert  <eggert@twinsun.com>
18603
18604         * README: Document assumptions that 'int' is at least 32 bits
18605         wide, that integer arithmetic is 2's complement without overflow,
18606         that there are no holes in integer values, that adding sizes of
18607         two nonoverlapping objects can't overflow, and that all-bits-zero
18608         yields scalar zero.  Fix spelling and capitalization typos.
18609
18610 2003-09-19  Karl Berry  <karl@gnu.org>
18611
18612         * lib/argp.h: update from libc.
18613
18614 2003-09-17  Paul Eggert  <eggert@twinsun.com>
18615
18616         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
18617         to avoid spurious warnings like "AC_RUN_IFELSE was called before
18618         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
18619
18620 2003-09-17  Paul Eggert  <eggert@twinsun.com>
18621
18622         * gnulib-tool: Use "test -h", not "test -L", for portability
18623         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
18624         (tags_regexp): Remove, since \| doesn't conform to POSIX.
18625         (sed_extract_prog): Issue s commands one-by-one, rather than
18626         using \| in one s command.
18627
18628 2003-09-16  Paul Eggert  <eggert@twinsun.com>
18629
18630         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
18631         input error, instead of returning NULL the next time we are called
18632         (and therefore losing track of errno).
18633
18634 2003-09-16  Bruno Haible  <bruno@clisp.org>
18635
18636         * gnulib-tool (func_create_testdir): Warn about duplicated
18637         dependencies.
18638
18639 2003-09-15  Paul Eggert  <eggert@twinsun.com>
18640
18641         * modules/argmatch, modules/fatal, modules/obstack,
18642         modules/xalloc, modules/xgethostname: Sort dependencies by
18643         importance, not alphabetically.
18644
18645 2003-09-15  Paul Eggert  <eggert@twinsun.com>
18646
18647         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
18648         fails, so that the caller gets the proper errno.
18649
18650         * lib/readutmp.c (read_utmp): Likewise.
18651         Check for fstat error.  Close stream and free storage
18652         when failing.
18653
18654 2003-09-14  Karl Berry  <karl@gnu.org>
18655
18656         * config/srclist.txt (strdup.c): disable for c89 changes.
18657
18658 2003-09-14  Jim Meyering  <jim@meyering.net>
18659
18660         * lib/getloadavg.c: Correct cpp indentation.
18661         * lib/strdup.c: Likewise.
18662         * lib/vasnprintf.c: Likewise.
18663
18664 2003-09-14  Bruno Haible  <bruno@clisp.org>
18665
18666         * modules/fwriteerror: New file.
18667         * MODULES.html.sh (func_all_modules): Add fwriteerror.
18668
18669 2003-09-14  Bruno Haible  <bruno@clisp.org>
18670
18671         * lib/fwriteerror.h: New file.
18672         * lib/fwriteerror.c: New file.
18673
18674 2003-09-12  Paul Eggert  <eggert@twinsun.com>
18675
18676         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
18677         modules/xgethostname, modules/xalloc: Depend on exit.
18678
18679 2003-09-12  Paul Eggert  <eggert@twinsun.com>
18680
18681         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
18682
18683         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
18684         and AC_MINIX, too, so that their extensions are available.
18685
18686         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
18687         This macro has been superseded by gl_BACKUPFILE.
18688
18689         More patches to assume C89 or better.
18690
18691         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
18692
18693         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
18694         unconditionally.
18695         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
18696         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
18697         Include <string.h>, <stdlib.h> unconditionally.
18698         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
18699         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
18700         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
18701         headers or for string.h.
18702         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
18703         or strtoul.
18704
18705         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
18706         headers.
18707         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
18708         * m4/userspec.m4 (gl_USERSPEC): Likewise.
18709         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
18710         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
18711         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
18712         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
18713         memcpy, memset.
18714         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
18715         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
18716         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
18717         strtol.
18718         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
18719         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
18720         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
18721         strtoul.
18722
18723 2003-09-12  Paul Eggert  <eggert@twinsun.com>
18724
18725         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
18726         * lib/obstack.c [!defined _LIBC]: Likewise.
18727         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
18728         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
18729         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
18730
18731         More changes to assume C89 or better.
18732
18733         * lib/error.c (error_tail): Assume vprintf.
18734
18735         * lib/argmatch.c (getenv): Remove decl.
18736         * lib/progreloc.c (get_full_program_name): Define via prototype.
18737         * lib/setenv.c (clearenv): Likewise.
18738         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
18739         needed.
18740         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
18741         (malloc, memcpy): Remove decls.
18742         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
18743         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
18744         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
18745         (memcpy): Remove macro.
18746         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
18747         (__P): Remove.  All uses removed.
18748         (PTR): Remove.  All uses changed to void *.
18749         (CHAR_BIT, NULL): Remove.
18750         (spaces, zeros, memset_space, memset_zero)
18751         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
18752         Remove.
18753         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
18754         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
18755         Define with prototype.
18756         Remove now-unnecessary prototype decl.
18757         (extra_args_spec): Assume ANSI C.  All uses changed.
18758         (extra_args_spec_iso): Remove.
18759         (my_strftime, emacs_strftimeu): Define via prototype.
18760         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
18761         unconditionally.
18762         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
18763         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
18764         (strtoul, strtol): Remove decls.
18765         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
18766         LONG_MAX): Remove.
18767         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
18768         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
18769         (LOCALE_PARAM_PROTO): New macro.
18770         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
18771         (INTERNAL (strtol), strtol): Define with a prototype.
18772         (PARAMS): Remove.  All uses removed.
18773         * lib/tempname.c: Include <string.h> unconditionally.
18774         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
18775         * lib/xgethostname.c (main): Define with a prototype.
18776         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
18777         Include <stdlib.h> unconditionally.
18778         (calloc, malloc, realloc, free): Remove decls.
18779         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
18780         Include <stdlib.h> unconditionally.  Sort include file names.
18781         (strtod): Remove.
18782         (xstrtod): Define with a prototype.
18783         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
18784         (strtol, strtoul): Remove decls.
18785
18786 2003-09-11  Paul Eggert  <eggert@twinsun.com>
18787
18788         More patches to assume C89 or better.
18789         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
18790         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
18791         string.h, memchr, STDC_HEADERS.
18792
18793 2003-09-11  Paul Eggert  <eggert@twinsun.com>
18794
18795         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
18796         Include <stdlib.h>, <string.h> unconditionally.
18797         Remove now-unnecessary cast to char *.
18798         * lib/strnlen.c: Include <string.h> unconditionally.
18799         * lib/yesno.c (yesno): Define with a prototype.
18800
18801 2003-09-11  Bruno Haible  <bruno@clisp.org>
18802
18803         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
18804
18805 2003-09-10  Jim Meyering  <jim@meyering.net>
18806
18807         * lib/error.c: Correct indentation of cpp directives.
18808
18809 2003-09-10  Bruno Haible  <bruno@clisp.org>
18810
18811         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
18812         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
18813         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
18814         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
18815         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
18816         <stdlib.h> and <string.h> checks.
18817         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
18818         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
18819
18820 2003-09-10  Bruno Haible  <bruno@clisp.org>
18821
18822         * lib/strcspn.c: Include <string.h> unconditionally.
18823         * lib/strpbrk.c: Include <string.h> unconditionally.
18824         * lib/strstr.c: Include <string.h> unconditionally.
18825         * lib/unicodeio.c: Include <string.h> unconditionally.
18826         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
18827         * lib/unsetenv.c: Likewise.
18828         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
18829         * lib/yesno.c: Include <stdlib.h> unconditionally.
18830         (rpmatch): Add prototype.
18831
18832 2003-09-09  Paul Eggert  <eggert@twinsun.com>
18833
18834         More patches to assume C89 or better.
18835         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
18836         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
18837         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
18838         or for string.h.
18839         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
18840         stdlib.h.
18841         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
18842         C headers.
18843         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
18844         string.h.
18845         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
18846         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
18847         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
18848         or for string.h.
18849         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
18850         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
18851         C headers.
18852         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
18853         memcpy.
18854         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
18855         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
18856         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
18857         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
18858         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
18859         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
18860         string.h, free.
18861         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
18862         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
18863         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
18864         C headers, or for string.h.
18865         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
18866         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
18867         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
18868         headers, memory.h, stdlib.h, string.h, strings.h.
18869         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
18870         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
18871         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
18872         strchr.
18873         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
18874         headers, memory.h, string.h.
18875         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
18876         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
18877         free.
18878         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
18879         headers.
18880         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
18881         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
18882         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
18883         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
18884         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
18885
18886 2003-09-09  Paul Eggert  <eggert@twinsun.com>
18887
18888         More K&R removal.
18889
18890         * lib/acosl.c (main): Use a prototype.
18891         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
18892         tanl.c: Likewise.
18893
18894         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
18895
18896         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
18897         (getopt, etopt_long, getopt_long_only, _getopt_internal)
18898         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
18899         with a prototype.
18900         * lib/getopt.c (const): Remove macro.
18901         Include <string.h> unconditionally.
18902         (my_index): Remove; all uses changed to strchr.
18903         (strlen): Remove decl.
18904         (exchange): Remove forward decl; no longer needed.
18905         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
18906         Define with prototype.
18907         * lib/getopt1.c (const): Remove macro.
18908         (getopt_long, getopt_long_only, main): Define with prototype.
18909
18910         * lib/getugroups.c: Include <string.h> unconditionally.
18911
18912         * lib/getusershell.c: Include <stdlib.h> unconditionally.
18913         (getusershell, setusershell, endusershell, readname, main):
18914         Define with prototypes.
18915
18916         * lib/group-member.c: Include group-member.h first.
18917         Include <stdlib.h> unconditionally.
18918
18919         * lib/hard-locale.c: Include hard-locale.h first.
18920         Include <stdlib.h>, <string.h> unconditionally.
18921
18922         * lib/hash.c (free, malloc): Remove decls.
18923         Include <stdlib.h> unconditionally.
18924
18925         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
18926         (getenv): Do not declare.
18927
18928         * lib/idcache.c: Include <string.h> unconditionally.
18929
18930         * lib/long-options.c: Include long-options.h first, to test interface.
18931         Include <stdlib.h> unconditionally.
18932
18933         * lib/makepath.c: Include makepath.h first, to test interface.
18934         Include <stdlib.h> and <string.h> unconditionally.
18935
18936         * lib/linebuffer.c: Include <stdlib.h>.
18937         (free): Remove decl.
18938
18939         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
18940         stddef.h. rpl_malloc returns void *, not char *.
18941         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
18942         prototype.
18943
18944         * lib/md5.h: Include <limits.h> unconditionally.
18945         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
18946         (__P): Remove; all uses removed.
18947         * lib/md5.c: Include "md5.h" first.
18948         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
18949         md5_buffer, md5_process_bytes, md5_process_block):
18950         Define with prototypes.
18951         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
18952         * lib/sha.c: Include "sha.h" first.
18953         Include <stdlib.h>, <string.h> unconditionally.
18954
18955         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
18956         * lib/memcmp.c (__ptr_t): Likewise.
18957         * lib/memrchr.c (__ptr_t): Likewise.
18958         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
18959         Include <string.h> unconditionally.
18960         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
18961         * lib/memchr.c: Include <stdlib.h> unconditionally.
18962         * lib/memchr.c (LONG_MAX): Remove.
18963         * lib/memrchr.c (LONG_MAX): Likewise.
18964         * lib/memchr.c (__memchr): Define via a prototype.
18965         * lib/memrchr.c (__memrchr): Likewise.
18966         * lib/memcmp.c (__P): Remove, and remove all uses.
18967         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
18968         Remove forward decls; no longer needed.
18969         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
18970         Use types required by C89 in prototype.
18971
18972         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
18973         * lib/savedir.c: Likewise.
18974         * lib/mkdir.c (free): Remove decl.
18975         * lib/rmdir.c (rmdir): Define with a prototype.
18976         * lib/savedir.c: Include savedir.h first, to test interface.
18977
18978         * lib/mktime.c (STDC_HEADERS): Remove.
18979         Include <stdlib.h>, <string.h> unconditionally.
18980
18981         * lib/modechange.c: Include <stdlib.h> unconditionally.
18982         (malloc): Remove decl.
18983
18984         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
18985         (free): Remove decl.
18986
18987         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
18988         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
18989         (This type really should be intptr_t, but that's a C99ism.)
18990         (_obstack_memcpy): Remove: all uses changed to memcpy.
18991         Include <string.h> unconditionally.
18992         (struct obstack): Assume __STDC__ for types of members
18993         chunkfun, freefun, extra_arg.
18994         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
18995         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
18996         obstack_begin, obstack_specify_allocation,
18997         obstack_specify_allocation_with_arg, obstack_chunkfun,
18998         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
18999         Remove unprototyped decls and the macros that use them.
19000         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
19001         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
19002         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
19003         (defined __STDC__ && __STDC__)]:
19004         Remove nonprototyped code.
19005         Include <stdlib.h> unconditionally.
19006         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
19007         _obstack_allocated_p, _obstack_free, obstack_free,
19008         _obstack_memory_used, print_and_abort):
19009         Define using prototypes.
19010         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
19011         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
19012         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
19013         obstack_next_free, obstack_object_size, obstack_room) [0]:
19014         Remove unused, unprototyped code.
19015
19016         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
19017
19018         * lib/physmem.c (physmem_total, physmem_available, main): Define
19019         with prototypes.
19020
19021         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
19022         (main): Define with a prototype.
19023
19024         * lib/posixver.c (getenv): Remove decl.
19025
19026         * lib/putenv.c (malloc): Returns void *, not char *.
19027         Include <string.h> unconditionally.
19028         (strchr, memcpy, NULL): Do not define.
19029
19030         * lib/readtokens.c: Include readtokens.h first, to test interface.
19031         Include <stdlib.h>, <string.h> unconditionally.
19032         (init_tokenbuffer): Define with a prototype.
19033
19034         * lib/regex.c (PARAMS): Remove.  All uses removed.
19035         All uses of _RE_ARGS removed, too.
19036         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
19037         unconditionally.
19038         (bzero): Assume memset exists.
19039         (memcmp, memcpy, NULL): Remove.
19040         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
19041         char, or assignments to local vars of type signed char.
19042         (init_syntax_once, PREFIX(extract_number_and_incr),
19043         PREFIX(print_partial_compiled_pattern),
19044         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
19045         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
19046         PREFIX(regex_grow_registers), PREFIX(regex_compile),
19047         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
19048         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
19049         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
19050         wcs_compile_range, byte_compile_range, truncate_wchar,
19051         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
19052         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
19053         count_mbs_length, wcs_re_match_2_internal,
19054         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
19055         PREFIX(alt_match_null_string_p),
19056         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
19057         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
19058         regfree, PREFIX(extract_number)): Define with prototype.  Remove
19059         now-unnecessary declaration, if any.
19060         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
19061         regcomp, regexec):
19062         Remove now-unnecessary casts among pointer types.
19063         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
19064
19065         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
19066         (free): Remove decl.
19067
19068         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
19069
19070         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
19071         (free): Remove decl.
19072
19073         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
19074         * lib/xgetcwd.c: Likewise.
19075
19076         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
19077         (free): Remove decl.
19078
19079         * lib/strchrnul.c (strchrnul): Define with a prototype.
19080         Fix bug: c_in was not converted to char before searching.
19081
19082         The following changes are not K&R related:
19083
19084         * lib/group-member.h: Include <sys/types.h>, so that this file is
19085         self-contained.
19086         * lib/makepath.h: Likewise.
19087
19088         * lib/getusershell.c (readname, default_index, line_size, readname):
19089         Use size_t, not int, for sizes.
19090         (readname): If the size overflows, report an error instead of
19091         looping forever.
19092
19093 2003-09-09  Paul Eggert  <eggert@twinsun.com>
19094
19095         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
19096         libc.
19097
19098 2003-09-09  Paul Eggert  <eggert@twinsun.com>
19099
19100         * README: New section: portability guidelines.
19101
19102 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
19103
19104         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
19105         C89 spec.
19106
19107 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
19108
19109         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
19110
19111 2003-09-08  Paul Eggert  <eggert@twinsun.com>
19112
19113         Assume C89 or better; remove K&R cruft.
19114         A few of these changes were first proposed by Derek Robert Price
19115         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
19116
19117         * lib/addext.c: Include <string.h> unconditionally.
19118         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
19119         Don't declare getenv or malloc.
19120
19121         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
19122         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
19123         (NULL): Remove.
19124         (find_stack_direction, alloca): Use prototypes.
19125
19126         * lib/atexit.c (atexit): Define using a prototype.
19127
19128         * lib/basename.c, dirname.c, stripslash.c:
19129         Include <string.h> unconditionally.
19130
19131         * lib/bcopy.c: Include <stddef.h>.
19132         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
19133
19134         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
19135
19136         * lib/error.h (error, error_at_line, error_print_progname)
19137         [! (defined (__STDC__) && __STDC__)]: Remove decls.
19138         * lib/error.c: Include error.h first, to check interface.
19139         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
19140         (VA_START): Remove; all uses changeed to va_start.
19141         (exit, strerror): Remove decls.
19142         (error_print_progname): Prototype uncondionally.
19143         Don't include <errno.h>; no longer needed.
19144         (private_strerror): Remove.
19145         (error_tail): Always define.
19146         (error, error_at_line): Assume C89 or better; always use prototypes.
19147         * lib/fatal.c: Include "fatal.h" first, to test interface.
19148         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
19149         (VA_START): Remove; all uses changed to va_start.
19150         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
19151         this case.
19152         (exit): Remove decl.
19153         (fatal): Prototype unconditionally.  Assume va_start works.
19154         Abort at end, to pacify gcc.
19155
19156         * lib/euidaccess.c (main): Define with a prototype.
19157
19158         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
19159
19160         * lib/exitfail.c: Include <stdlib.h> unconditionally.
19161
19162         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
19163         prototypes.
19164         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
19165         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
19166         (getenv): Remove decl.
19167         (fnmatch): Define using a prototype.
19168         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
19169         (FCT): Define using a prototype.
19170
19171         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
19172
19173         * lib/gethostname.c: Include <stddef.h>.
19174         (gethostname): Define with prototype.  Length is size_t, not int.
19175
19176 2003-09-08  Paul Eggert  <eggert@twinsun.com>
19177
19178         Assume C89 or better; remove K&R cruft.
19179         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
19180         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
19181         string.h, getenv, malloc.
19182         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
19183         headers.
19184         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
19185         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
19186         do not check for strerror.
19187         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
19188         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
19189         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
19190         do not check for doprnt or vprintf.
19191         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
19192         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
19193
19194 2003-09-08  Paul Eggert  <eggert@twinsun.com>
19195
19196         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
19197         getversion.c should have been removed then, but was accidentally
19198         preserved.
19199
19200         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
19201         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
19202
19203 2003-09-08  Karl Berry  <karl@gnu.org>
19204
19205         * config/config.sub, config.guess, srclistvars.sh: update from savannah
19206                 config, forget about prep.
19207
19208         * config/depcomp, missing: update from automake.
19209
19210 2003-09-07  Paul Eggert  <eggert@twinsun.com>
19211
19212         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
19213         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
19214
19215 2003-09-07  Paul Eggert  <eggert@twinsun.com>
19216
19217         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
19218         copy_tm_result.  Bug reported by Simon Josefsson in
19219         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
19220
19221 2003-09-06  Paul Eggert  <eggert@twinsun.com>
19222
19223         * m4/time_r.m4: New file.
19224         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
19225         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
19226         is. Check for timegm declaration.
19227         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
19228         Do not check for gmtime_r.
19229         Replace mktime if __mktime_internal does not exist and if mktime
19230         hasn't been replaced already.
19231
19232 2003-09-06  Paul Eggert  <eggert@twinsun.com>
19233
19234         * lib/time_r.c, lib/time_r.h: New files.
19235
19236         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
19237         __localtime_r.
19238         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
19239         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
19240
19241         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
19242         __gmtime_r.
19243         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
19244         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
19245         Include <time_r.h>.
19246
19247         * lib/timegm.c: Switch to glibc implementation, with the following
19248         changes:
19249         [defined HAVE_CONFIG_H]: Include <config.h>.
19250         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
19251         (__mktime_internal) [!defined _LIBC]: New decl.
19252         (__gmtime_r) [!defined _LIBC]: New macro and function.
19253         (timegm): Use a prototype, since gnulib assumes C89.
19254         Do not bother declaring tmp to be const, as it's not really usefu.
19255         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
19256         (timegm): Declare only if HAVE_DECL_TIMEGM.
19257
19258 2003-09-06  Paul Eggert  <eggert@twinsun.com>
19259
19260         * MODULES.html.sh (func_all_modules): Add time_r.
19261         * modules/time_r: New file.
19262         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
19263         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
19264
19265 2003-09-03  Paul Eggert  <eggert@twinsun.com>
19266
19267         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
19268         Bug reported by Lute Kamstra in
19269         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
19270
19271         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
19272         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
19273         course with correspondingly smaller numbers for tomorrow and
19274         yesterday.  From Tadayoshi Funaba.  Originally installed into
19275         sh-utils on 1999-08-07, but the patch got lost (I guess during the
19276         coreutils merge?).
19277
19278 2003-08-31  Simon Josefsson  <jas@extundo.com>
19279
19280         * modules/timegm: New file.
19281         * MODULES.html.sh (func_all_modules): Add timegm.
19282
19283 2003-08-31  Simon Josefsson  <jas@extundo.com>
19284
19285         * m4/timegm.m4: New file.
19286
19287 2003-08-31  Simon Josefsson  <jas@extundo.com>
19288
19289         * lib/timegm.h: New file.
19290         * lib/timegm.c: New file.  Based on
19291         wget-1.8.2/src/http.c:mktime_from_utc.
19292
19293 2003-08-31  Karl Berry  <karl@gnu.org>
19294
19295         * lib/argp.h: update from libc.
19296
19297 2003-08-28  Bruno Haible  <bruno@clisp.org>
19298
19299         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
19300         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
19301         followed by '#define fnmatch fnmatch_posix' gives an error.
19302
19303 2003-08-28  Bruno Haible  <bruno@clisp.org>
19304
19305         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
19306         warning on QNX, which defines O_BINARY to 000000.
19307
19308 2003-08-27  Jim Meyering  <jim@meyering.net>
19309
19310         * m4/mkstemp.m4: Require that the system mkstemp be able to create
19311         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
19312         would fail after 32.  Reported by Danny Levinson.  Details here:
19313         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
19314
19315 2003-08-24  Bruno Haible  <bruno@clisp.org>
19316
19317         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
19318         MSVC7 <stdio.h> is included later.
19319
19320 2003-08-22  Simon Josefsson  <jas@extundo.com>
19321
19322         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
19323
19324 2003-08-20  Karl Berry  <karl@gnu.org>
19325
19326         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
19327
19328 2003-08-20  Bruno Haible  <bruno@clisp.org>
19329
19330         * modules/progname: New file.
19331         * MODULES.html.sh (func_all_modules): Add progname.
19332
19333 2003-08-20  Bruno Haible  <bruno@clisp.org>
19334
19335         * lib/progname.h: New file, from GNU gettext.
19336         * lib/progname.c: New file, from GNU gettext.
19337         * lib/progreloc.c: New file, from GNU gettext.
19338
19339 2003-08-19  Jim Meyering  <jim@meyering.net>
19340
19341         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
19342         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
19343
19344 2003-08-19  Bruno Haible  <bruno@clisp.org>
19345
19346         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
19347         more.
19348
19349 2003-08-19  Bruno Haible  <bruno@clisp.org>
19350
19351         * lib/xstrdup.c: Assume <string.h> exists.
19352
19353 2003-08-18  Paul Eggert  <eggert@twinsun.com>
19354
19355         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
19356         in makefile rules.
19357
19358 2003-08-18  Jim Meyering  <jim@meyering.net>
19359
19360         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
19361         * m4/lib-ld.m4: Likewise.
19362
19363 2003-08-18  Jim Meyering  <jim@meyering.net>
19364
19365         * lib/setenv.h: Indent nested cpp directive.
19366         * lib/vasnprintf.c: Remove trailing blanks.
19367
19368 2003-08-17  Simon Josefsson  <jas@extundo.com>
19369
19370         * modules/xstrndup: New file.
19371         * MODULES.html.sh (func_all_modules): Add xstrndup.
19372
19373 2003-08-17  Simon Josefsson  <jas@extundo.com>
19374
19375         * modules/argp: Fix autoconf macro name. Add more dependencies.
19376
19377 2003-08-17  Simon Josefsson  <jas@extundo.com>
19378
19379         * m4/xstrndup.m4: New file.
19380
19381 2003-08-17  Simon Josefsson  <jas@extundo.com>
19382
19383         * m4/argp.m4: New file.
19384
19385 2003-08-17  Simon Josefsson  <jas@extundo.com>
19386             Bruno Haible  <bruno@clisp.org>
19387
19388         * lib/xstrndup.h: New file.
19389         * lib/xstrndup.c: New file.
19390
19391 2003-08-17  Bruno Haible  <bruno@clisp.org>
19392
19393         * modules/strndup (Files, Include): Add lib/strndup.h.
19394
19395 2003-08-17  Bruno Haible  <bruno@clisp.org>
19396
19397         * modules/euidaccess (Files): Add lib/euidaccess.h.
19398
19399 2003-08-17  Bruno Haible  <bruno@clisp.org>
19400
19401         * lib/strndup.h: New file.
19402
19403 2003-08-17  Bruno Haible  <bruno@clisp.org>
19404
19405         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
19406         like AC_GNU_SOURCE.
19407         * modules/extensions (configure.ac): Comment out the invocation of
19408         gl_USE_SYSTEM_EXTENSIONS.
19409
19410 2003-08-16  Paul Eggert  <eggert@twinsun.com>
19411
19412         Merges from coreutils, etc.
19413         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
19414         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
19415         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
19416         fixing a typo.
19417         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
19418         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
19419
19420 2003-08-16  Paul Eggert  <eggert@twinsun.com>
19421
19422         Document merge from coreutils.
19423         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
19424         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
19425         * modules/utime: Add m4/utimes-null.m4.
19426
19427 2003-08-16  Paul Eggert  <eggert@twinsun.com>
19428
19429         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
19430         space, undoing this 2003-08-12 change:
19431         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
19432
19433 2003-08-16  Paul Eggert  <eggert@twinsun.com>
19434
19435         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
19436         strtoul.c from libc, undoing this 2003-08-12 change:
19437         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
19438
19439 2003-08-16  Jim Meyering  <jim@meyering.net>
19440
19441         Merges from coreutils.
19442         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
19443         prefix.  Adjust cache variables similarly.  Create 500 rather than
19444         just 300 files, to exercise bug on Darwin6.5, too.
19445         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
19446         $missing_dir.
19447         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
19448         AM_SYS_POSIX_TERMIOS.
19449         Reported by mkc@mathdogs.com.
19450         Also change use of $am_cv_sys_posix_termios
19451         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
19452         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
19453         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
19454         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
19455         in /proc/mounts until it finds one with matching device number.  This
19456         is unnecessary when the FILE argument *is* a mount point.  No stat call
19457         is necessary in that case.  So, disable the statvfs-testing code on
19458         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
19459         as RedHat bug# 84846.
19460         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
19461         to 1MB, so as not to render systems with no stack size limit (e.g.,
19462         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
19463         Include <unistd.h>.  On some systems,
19464         it is required for the definition of _SC_PAGESIZE.
19465
19466 2003-08-16  Jim Meyering  <jim@meyering.net>
19467
19468         Merge from coreutils.
19469         * lib/xstrtoimax.c: #else #if -> #elif.
19470         * lib/xstrtoumax.c: Likewise.
19471
19472 2003-08-16  Jim Meyering  <jim@meyering.net>
19473
19474         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
19475         * m4/utimes.m4: Removed.
19476         * m4/utimes-null.m4: Renamed from utimes.m4.
19477
19478         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
19479         to 1MB, so as not to render systems with no stack size limit (e.g.,
19480         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
19481         Include <unistd.h>.  On some systems,
19482         it is required for the definition of _SC_PAGESIZE.
19483
19484 2003-08-16  Jim Meyering  <jim@meyering.net>
19485         and Paul Eggert  <eggert@cs.ucla.edu>
19486
19487         Merges from coreutils, etc.
19488
19489         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
19490         using the latest version from cvs.  This avoids problems with #line
19491         directives using a vendor (Sun) compiler.
19492         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
19493         Don't set GETGROUPS_LIB here; now it's
19494         done via getgroups.m4's wrapper function.
19495         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
19496         rather than just in sh-util/configure.in, so that the
19497         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
19498         same.
19499         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
19500         AC_FUNC_GETLOADAVG where to find getloadavg.c.
19501         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
19502         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
19503         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
19504         Remove code that is now done by the newly-required macros.
19505         Append $(EXEEXT) to DF_PROG.
19506         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
19507         Do not invoke or require the following here,
19508         since prereq.m4 or some gnulib .m4 now does this for us:
19509         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
19510         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
19511         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
19512         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
19513         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
19514         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
19515         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
19516         AC_FUNC_OBSTACK.
19517         Do not replace the following functions, as this is now the job
19518         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
19519         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
19520         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
19521         atexit getpass, strdup, getpagesize.
19522         Replace 'raise'.
19523         Do not check for the following functions, as this is now the job
19524         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
19525         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
19526         setregid.
19527         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
19528         Check for sys/sysctl.h.
19529         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
19530         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
19531         of checking for ssize_t ourselves.
19532
19533         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
19534         Require every macro that gnulib/modules/* suggests for us.
19535         (jm_PREREQ_ADDEXT): New macro.
19536         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
19537         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
19538
19539         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
19540         (gl_PHYSMEM): Use it.
19541         Also check for `table' function.
19542         Check for new headers and functions.
19543         Add check for sys/sysmp.h.
19544         With suggestions from Kaveh Ghazi.
19545         Ignore headers that are present but cannot be compiled.  This
19546         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
19547         C 5.4.
19548
19549 2003-08-15  Paul Eggert  <eggert@twinsun.com>
19550
19551         Document merge from coreutils.
19552         * modules/userspec: Depend on posixver.
19553         * modules/strftime: Depend on tzset.
19554
19555 2003-08-15  Paul Eggert  <eggert@twinsun.com>
19556
19557         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
19558         rather than tab, after '#' in shell-script copyright notices.
19559         Suggested by Bruno Haible.
19560
19561 2003-08-15  Paul Eggert  <eggert@twinsun.com>
19562
19563         * config/srclist-update: Use three spaces, rather than tab, after '#'
19564         in shell-script copyright notices.  Suggested by Bruno Haible.
19565         Remove unnecessary parenthesization in regular expression.
19566
19567 2003-08-15  Jim Meyering  <jim@meyering.net>
19568
19569         Merge from coreutils.
19570         * lib/xgethostname.c: Include <stdlib.h>.
19571         (xghostname): Don't exit for anything other than memory-related
19572         failure; just return NULL.
19573         * lib/userspec.c: Include "posixver.h".
19574         (parse_user_spec): Accept `.' as a separator only
19575         in pre-POSIX-200112 mode.
19576         * lib/strtoimax.c: Use #elif rather than #else #if.
19577         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
19578         Remove function, now that we can rely on a working tzset function.
19579         [!_LIBC]: Ensure that the required autoconf test has been run.
19580         [!defined _NL_CURRENT && HAVE_STRFTIME]:
19581         Use underlying_strftime for %r.
19582         * lib/sha.c: Merge in some clean-up and optimization changes from
19583         glibc.
19584         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
19585         Ensure that it is a multiple of 64.
19586         Rearrange loop exit tests so as to avoid performing an
19587         additional fread after encountering an error or EOF.
19588         * lib/realloc.c: Update copyright date.
19589
19590 2003-08-15  Jim Meyering  <jim@meyering.net>
19591         and Paul Eggert  <eggert@twinsun.com>
19592
19593         Merge from coreutils.
19594         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
19595         member but strut utmpx does not.  Needed for AIX 4.3.3.
19596         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
19597
19598 2003-08-15  Jim Meyering  <jim@meyering.net>
19599         and Paul Eggert  <eggert@cs.ucla.edu>
19600
19601         Merges from coreutils, etc.
19602         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
19603         Require gl_FUNC_TZSET_CLOBBER.
19604         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
19605         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
19606         members.
19607
19608 2003-08-14  Paul Eggert  <eggert@twinsun.com>
19609
19610         Help the merge from coreutils.
19611         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
19612         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
19613         * m4/tzset.m4: Use it too.
19614
19615 2003-08-14  Paul Eggert  <eggert@twinsun.com>
19616
19617         * modules/tzset: New file.
19618
19619 2003-08-14  Jim Meyering  <jim@meyering.net>
19620
19621         Merges from coreutils.
19622         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
19623         variable names, rather than @FNMATCH_H@.
19624         * modules/alloca: Likewise for $(ALLOCA_H).
19625
19626         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
19627         the three copies of the literal target, `fnmatch.h'.
19628         * modules/alloca (alloca.h): Likewise.
19629
19630 2003-08-14  Jim Meyering  <jim@meyering.net>
19631
19632         Merge from coreutils.
19633         * m4/tzset.m4: New file.
19634         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
19635         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
19636         otherwise, AIX 5.1 systems would end up using the latter.
19637         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
19638         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
19639         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
19640         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
19641
19642 2003-08-14  Jim Meyering  <jim@meyering.net>
19643
19644         Merge from coreutils.
19645         * lib/obstack.h: Whitespace changes.
19646         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
19647         and xcalloc return values.
19648         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
19649         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
19650         hang on OSF/1 5.1 for DIR on both local and remote file systems.
19651         Reported by (and fix confirmed by) Nelson H. F. Beebe.
19652         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
19653         error from mntctl.
19654         Use mntctl's return value to drive the entry-processing loop, since
19655         we can't rely on the value of the vmt_length member in the last
19656         entry.  On some systems doing so could result in exhausting
19657         virtual memory.  Based in part on a patch from Mike Jetzer.
19658
19659 2003-08-14  Jim Meyering  <jim@meyering.net>
19660         and Paul Eggert  <eggert@twinsun.com>
19661
19662         Merges from coreutils, plus other fixes.
19663         * lib/physmem.c: Merge in portability changes from gcc/libiberty
19664         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
19665         for credits and details.  Thanks to Kaveh Ghazi for helping
19666         to keep these files in sync.
19667         (ARRAY_SIZE): Define it.
19668         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
19669         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
19670         (memcasecmp): Don't assume size_t fits in unsigned int.
19671         Remove casts and duplicate code.
19672         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
19673         (memcpy): Remove definition.
19674         Merge in some clean-up and optimization changes from glibc.
19675         [BLOCKSIZE]: Move definition to top of file.
19676         Ensure that it is a multiple of 64.
19677         Rearrange loop exit tests so as to avoid performing an
19678         additional fread after encountering an error or EOF.
19679         * lib/md5.h (md5_uintptr): Define.
19680         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
19681         return to the initial working directory.  Preserve errno
19682         for caller.
19683         * lib/idcache.c: Include "xalloc.h".
19684         (xmalloc, xrealloc): Remove decls.
19685         (getuser): Remove casts no longer required in C89.
19686         * lib/human.c: Include stdio.h, for sprintf.
19687         * lib/group-member.c: Include "xalloc.h".
19688         (xmalloc, xrealloc): Remove decls.
19689         (get_group_info): Remove casts no longer required in C89.
19690         * lib/getusershell.c (readname): Remove casts no longer required in
19691         C89.
19692         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
19693         * lib/getline.c: Whitespace fix, from coreutils.
19694
19695 2003-08-13  Paul Eggert  <eggert@twinsun.com>
19696
19697         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
19698         Check for isascii.
19699
19700         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
19701         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
19702         Undo previous (whitespace-only) change.
19703
19704 2003-08-13  Paul Eggert  <eggert@twinsun.com>
19705
19706         * lib/exclude.c: Include <ctype.h>
19707         (IN_CTYPE_DOMAIN): New macro.
19708         (is_space): New fn.
19709         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
19710         and empty lines.
19711
19712         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
19713         Undo previous (whitespace-only) change.
19714
19715 2003-08-13  Paul Eggert  <eggert@twinsun.com>
19716
19717         * config/srclist-update: Change update back to the old behavior,
19718         leaving whitespace alone.  Use one 'sed' command rather than a
19719         pipeline.
19720         (fixlicense): Now a variable, not a function.
19721         (remove_trailing_blanks): Remove.
19722         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
19723         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
19724         Undo previous (whitespace-only) change.
19725
19726 2003-08-12  Paul Eggert  <eggert@twinsun.com>
19727
19728         Merge from coreutils.
19729         * modules/euidaccess: Add lib_SOURCES, include for new
19730         file euidaccess.h
19731
19732 2003-08-12  Paul Eggert  <eggert@twinsun.com>
19733
19734         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
19735         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
19736         Normalize leading white space and remove trailing white space.
19737
19738         Merge from coreutils
19739         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
19740
19741         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
19742         0.12.1.  These files are now being upgraded automatically by
19743         ../config/srclist-update.
19744
19745 2003-08-12  Paul Eggert  <eggert@twinsun.com>
19746
19747         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
19748         Normalize leading white space and remove trailing white space.
19749         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
19750         notice, as per ../config/srclist-update.
19751
19752         Merge from coreutils.
19753         * lib/euidaccess.h: New file.
19754         * lib/euidaccess.c: Include it.
19755         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
19756         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
19757         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
19758
19759 2003-08-12  Paul Eggert  <eggert@twinsun.com>
19760
19761         * config/srclist-update: Add copyright notice.
19762         (remove_id_lines, remove_trailing_blanks): New constants.
19763         (fixfile): Use them to normalize spacing a bit in copied files.
19764         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
19765         Normalize leading white space and remove trailing white space.
19766
19767         * config/texinfo.tex: Sync with texinfo.
19768
19769         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
19770         strtoul.c from libc, to merge coreutils whitespace changes.
19771
19772         * config/srclist.txt: Get the following m4 files from gettext:
19773         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
19774         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
19775         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
19776         wint_t.m4.
19777
19778 2003-08-12  Karl Berry  <karl@gnu.org>
19779
19780         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
19781         been made.
19782
19783 2003-08-11  Paul Eggert  <eggert@twinsun.com>
19784
19785         * modules/gnu-source, m4/gnu-source.m4:
19786         Remove; we're assuming Autoconf 2.54 or later now.
19787         Suggested by Bruno Haible.
19788         * MODULES.html.sh (func_all_modules): Remove gnu-source.
19789
19790 2003-08-11  Bruno Haible  <bruno@clisp.org>
19791
19792         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
19793
19794 2003-08-11  Bruno Haible  <bruno@clisp.org>
19795
19796         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
19797         (vasnprintf): Use it instead of wcslen.
19798
19799 2003-08-11  Bruno Haible  <bruno@clisp.org>
19800
19801         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
19802         value to ensure that _Bool promotes to int. Use #define for _Bool when
19803         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
19804
19805 2003-08-10  Karl Berry  <karl@gnu.org>
19806
19807         * lib/regex.h: update from libc (whitespace fix).
19808
19809 2003-08-09  Paul Eggert  <eggert@twinsun.com>
19810
19811         Merge some files from coreutils.  These changes were
19812         originally made by Jim Meyering.
19813         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
19814         many older Unixes require this.
19815         * lib/alloca.c (alloca): Remove cast to argument of free;
19816         no longer needed in C89.
19817         * lib/alloca_.h, regex.h: Fix white space to match
19818         what GNU indent does.
19819
19820 2003-08-09  Paul Eggert  <eggert@twinsun.com>
19821
19822         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
19823         apparently Emacs's Unicode mode got confused before my 2003-08-05
19824         checkin.
19825
19826 2003-08-08  Paul Eggert  <eggert@twinsun.com>
19827
19828         * m4/extensions.m4: New file.
19829         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
19830         Require gl_USE_SYSTEM_EXTENSIONS.
19831         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
19832         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
19833
19834 2003-08-08  Paul Eggert  <eggert@twinsun.com>
19835
19836         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
19837         * modules/extensions, modules/gnu-source: New files.
19838         * modules/timespec, modules/unlocked-io: Depend on extensions.
19839
19840 2003-08-07  Paul Eggert  <eggert@twinsun.com>
19841
19842         * modules/restrict: New file.
19843         * MODULES.html.sh (func_all_modules): Add restrict.
19844         * modules/regex: Depend on restrict.
19845
19846 2003-08-07  Paul Eggert  <eggert@twinsun.com>
19847
19848         * m4/restrict.m4: New file.
19849         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
19850
19851 2003-08-07  Bruno Haible  <bruno@clisp.org>
19852
19853         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
19854         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
19855
19856 2003-08-07  Bruno Haible  <bruno@clisp.org>
19857
19858         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
19859         makes the module 'getndelim2' compatible with the module 'getline'.
19860
19861 2003-08-05  Paul Eggert  <eggert@twinsun.com>
19862
19863         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
19864         byte with "\201" to avoid glitches when editing that source file
19865         with multi-gnome-terminal.
19866
19867 2003-08-05  Paul Eggert  <eggert@twinsun.com>
19868
19869         * lib/bumpalloc.h: Remove.
19870
19871 2003-08-05  Paul Eggert  <eggert@twinsun.com>
19872
19873         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
19874         * modules/bumpalloc: Remove.
19875
19876 2003-08-04  Paul Eggert  <eggert@twinsun.com>
19877
19878         * lib/getloadavg.c: Change copyright notice and spacing to conform to
19879         GNU coding style.
19880
19881         Merge from coreutils.
19882         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
19883         1. From glibc.
19884         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
19885         from Karl Berry, implemented by Jim Meyering.
19886         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
19887         from Dmitry V. Levin.
19888         Remove anachronistic cast of xrealloc.
19889         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
19890         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
19891         type. Otherwise, it wouldn't compile with at least /bin/cc on
19892         ymp-cray-unicos9.0.2.X.
19893         Combine two mostly-identical uses of alloca into one.
19894         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
19895
19896 2003-08-04  Dave Love  <d.love@dl.ac.uk>
19897
19898         [From Emacs.]
19899
19900         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
19901         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
19902         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
19903         obsolete NLIST_NAME_UNION.
19904         [__GNU__]: Undef BSD and FSCALE.
19905         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
19906
19907 2003-08-03  Paul Eggert  <eggert@twinsun.com>
19908
19909         * lib/stdbool_.h (_Bool): Make it signed char, instead of
19910         an enum type, so that it's guaranteed to promote to int.  See:
19911         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
19912
19913 2003-08-03  Karl Berry  <karl@gnu.org>
19914
19915         * config/depcomp: update from automake.
19916
19917 2003-07-31  Paul Eggert  <eggert@twinsun.com>
19918
19919         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
19920         (strerror): Don't assume that a printable int fits in 14 bytes.
19921
19922 2003-07-31  Bruno Haible  <bruno@clisp.org>
19923
19924         * modules/getpass-gnu: New file.
19925         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
19926
19927 2003-07-31  Bruno Haible  <bruno@clisp.org>
19928
19929         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
19930
19931 2003-07-24  Karl Berry  <karl@gnu.org>
19932
19933         * config/missing: update from automake.
19934
19935 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
19936             Bruno Haible  <bruno@clisp.org>
19937
19938         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
19939         * lib/getline.c (getline, getdelim): Likewise.
19940         Remove _GNU_SOURCE define; now it's defined in config.h through
19941         m4/getline.m4.
19942
19943 2003-07-23  Karl Berry  <karl@gnu.org>
19944
19945         * config/config.sub: update from prep.
19946
19947 2003-07-22  Paul Eggert  <eggert@twinsun.com>
19948
19949         * modules/xalloc (Depends-on): Add exitfail.
19950         * modules/xmemcoll: Likewise.
19951
19952 2003-07-22  Paul Eggert  <eggert@twinsun.com>
19953
19954         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
19955         over-parenthesization in macros.
19956
19957         Sync with coreutils.
19958
19959         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
19960         required by C99.
19961
19962         Use `exit_failure' for xalloc and xmemcoll instead of their own
19963         private exit-failure variables.
19964         * lib/xalloc.h (xalloc_exit_failure): Remove.
19965         * lib/xmalloc.c: Likewise.  Include exitfail.h.
19966         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
19967         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
19968         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
19969         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
19970
19971 2003-07-20  Jim Meyering  <jim@meyering.net>
19972
19973         * modules/closeout (Depends-on): Add exitfail.
19974         Suggestion from Bruno Haible.
19975
19976 2003-07-19  Karl Berry  <karl@gnu.org>
19977
19978         * config/config.sub: update from prep.
19979
19980 2003-07-18  Paul Eggert  <eggert@twinsun.com>
19981
19982         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
19983         Remove.
19984         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
19985         to test that it can stand by itself.  Include "exitfail.h".
19986         Clients should set exit_failure instead.
19987         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
19988
19989 2003-07-18  Bruno Haible  <bruno@clisp.org>
19990
19991         * modules/getndelim2: New file.
19992         * modules/getline: Share files with module getndelim2.
19993         * modules/getnline: Depend on getndelim2 instead of sharing files with
19994         it. Add getnline.c to lib_SOURCES.
19995         * MODULES.html.sh (func_all_modules): Add getndelim2.
19996
19997 2003-07-18  Bruno Haible  <bruno@clisp.org>
19998
19999         * m4/getndelim2.m4: New file.
20000         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
20001         invoke gl_PREREQ_GETNDELIM2.
20002         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
20003         gl_PREREQ_GETNDELIM2.
20004         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
20005         gl_GETNDELIM2.
20006
20007 2003-07-18  Bruno Haible  <bruno@clisp.org>
20008
20009         * lib/getndelim2.h: New file.
20010         * lib/getndelim2.c: Make into a module of its own. Include config.h,
20011         getndelim2.h.
20012         (getndelim2): Make non-static. Change return type to ssize_t.
20013         * lib/getline.h: Change argument names.
20014         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
20015         * lib/getnline.c: Include getndelim2.h.
20016
20017 2003-07-18  Andreas Schwab  <schwab@suse.de>
20018
20019         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
20020
20021 2003-07-17  Karl Berry  <karl@gnu.org>
20022
20023         * config/config.sub: update from prep.
20024
20025 2003-07-17  Bruno Haible  <bruno@clisp.org>
20026
20027         * modules/getnline: New file.
20028         * modules/getline: Add lib/getndelim2.c to source file list.
20029         * MODULES.html.sh (func_all_modules): Add getnline.
20030
20031 2003-07-17  Bruno Haible  <bruno@clisp.org>
20032
20033         * m4/getnline.m4: New file.
20034
20035 2003-07-17  Bruno Haible  <bruno@clisp.org>
20036
20037         * m4/Makefile.am.in: Remove file.
20038         * m4/Makefile.am: Remove file.
20039         * m4/Makefile.in: Remove file.
20040
20041 2003-07-17  Bruno Haible  <bruno@clisp.org>
20042
20043         * lib/getnline.h: New file.
20044         * lib/getnline.c: New file.
20045         * lib/getndelim2.c: New file, extracted from getline.c.
20046         (getndelim2): Renamed from getdelim2, with added nmax argument.
20047         * lib/getline.c: Include getndelim2.c.
20048         (getdelim2): Moved out to getndelim2.c.
20049         (getline, getdelim): Update.
20050
20051 2003-07-17  Bruno Haible  <bruno@clisp.org>
20052
20053         * lib/Makefile.am: Remove file.
20054         * lib/Makefile.in: Remove file.
20055
20056 2003-07-17  Bruno Haible  <bruno@clisp.org>
20057
20058         * configure.in: Remove file.
20059         * Makefile.in: Remove file.
20060
20061 2003-07-17  Bruno Haible  <bruno@clisp.org>
20062
20063         * MODULES.html.sh: Put the </BODY> right before </HTML>.
20064
20065 2003-07-16  Karl Berry  <karl@gnu.org>
20066
20067         * config/srclist-update: was running fixlicense twice, which caused
20068                 texinfo.tex to be nullified for some reason.  Simplify,
20069                 $gplsrc is no longer needed as far as I can see?
20070
20071 2003-07-16  Jim Meyering  <jim@meyering.net>
20072
20073         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
20074
20075 2003-07-15  Paul Eggert  <eggert@twinsun.com>
20076
20077         * config/srclist.txt: Get the following files from gettext-runtime/intl
20078         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
20079         ref-del.sin.  From Bruno Haible.
20080         * config/srclist-update (fixfile): Change grep pattern again, since the
20081         previous fix didn't work (there was another trailing $).  Use
20082         '[$]' to escape the $s.
20083
20084 2003-07-15  Karl Berry  <karl@gnu.org>
20085
20086         * lib/vasnprintf.c: update from gettext.
20087
20088 2003-07-15  Karl Berry  <karl@gnu.org>
20089
20090         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
20091         gets expanded when surrounded by '$'.
20092
20093 2003-07-15  Jim Meyering  <jim@meyering.net>
20094
20095         * modules/save-cwd: Don't depend on error.  From Derek Price.
20096
20097 2003-07-15  Jim Meyering  <jim@meyering.net>
20098
20099         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
20100
20101 2003-07-14  Simon Josefsson  <jas@extundo.com>
20102
20103         * modules/mempcpy: New file.
20104         * MODULES.html.sh (func_all_modules): Add mempcpy.
20105
20106 2003-07-14  Simon Josefsson  <jas@extundo.com>
20107
20108         * m4/mempcpy.m4: New file.
20109
20110 2003-07-14  Simon Josefsson  <jas@extundo.com>
20111
20112         * lib/mempcpy.h: New file.
20113         * lib/mempcpy.c: New file.
20114
20115 2003-07-14  Paul Eggert  <eggert@twinsun.com>
20116
20117         * modules/getdate, modules/posixtm: Depend on mktime.
20118
20119 2003-07-14  Paul Eggert  <eggert@twinsun.com>
20120
20121         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
20122         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
20123         unicodeio.c, unicodeio.h, unlocked-io.h:
20124         Switch from LGPL to GPL.
20125
20126 2003-07-14  Paul Eggert  <eggert@twinsun.com>
20127
20128         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
20129         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
20130         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
20131         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
20132         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
20133         updated automatically by ../config/srclist-update.  This changes
20134         their license from LPGL to GPL.
20135
20136 2003-07-14  Paul Eggert  <eggert@twinsun.com>
20137
20138         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
20139         assumed to refer to the root of the most recent stable gettext version.
20140         * config/srclistvars.sh: Add defaults for eggert.
20141         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
20142         Match "This program" as well as "The program".  This is needed
20143         for gettext.
20144
20145 2003-07-14  Jim Meyering  <jim@meyering.net>
20146
20147         Don't emit diagnostics.  Let callers do that.
20148         * lib/save-cwd.c: Don't include "error.h".
20149         (save_cwd): Don't call error.  Ensure that errno is valid
20150         when returning nonzero.
20151
20152         * lib/save-cwd.h (restore_cwd): Update prototype.
20153         * lib/save-cwd.c (restore_cwd): Remove two parameters.
20154         Simplify.  Don't call error upon failure.  Let callers do that.
20155         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
20156         when auditing is enabled.  But don't bother updating the #if.
20157
20158 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
20159
20160         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
20161         it breaks C++ compilation.
20162         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
20163
20164 2003-07-10  Simon Josefsson  <jas@extundo.com>
20165
20166         * modules/strchrnul (Makefile.am): Add strchrnul.h.
20167
20168 2003-07-10  Jim Meyering  <jim@meyering.net>
20169
20170         * m4/clock_time.m4: Remove trailing blank.
20171         * m4/intmax_t.m4: Likewise.
20172
20173 2003-07-10  Jim Meyering  <jim@meyering.net>
20174
20175         * lib/vasnprintf.c: Remove trailing blanks.
20176         Make cpp indentation consistent.
20177
20178 2003-07-09  Paul Eggert  <eggert@twinsun.com>
20179
20180         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
20181         posixver.c, strftime.c, strnlen.c, strverscmp.c:
20182         Switch from LGPL to GPL.
20183
20184 2003-07-09  Paul Eggert  <eggert@twinsun.com>
20185
20186         * config/srclist.txt: Sort sublists.  Add
20187         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
20188         that differ from gnulib for one reason or another; we'd like this list
20189         to be smaller but for now let's document what we have.
20190
20191 2003-07-08  Paul Eggert  <eggert@twinsun.com>
20192
20193         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
20194         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
20195         and sweeter "eval x=$x".
20196         * config/srclist.txt: Get lib/argp* from glibc.
20197
20198 2003-07-07  Paul Eggert  <eggert@twinsun.com>
20199
20200         * lib/mktime.c: Fix some boundary cases and remove need for floating
20201         point.
20202
20203         Issue a compile-time diagnostic if time_t is floating point, or if
20204         two's complement arithmetic is not in effect, or if arithmetic
20205         right shift does not propagate the sign.  These assumptions were
20206         all in the original code but they weren't checked.
20207
20208         (TIME_T_MIDPOINT, verify): New macros.
20209         (__isleap): Remove; it has integer overflow problems.
20210         (leapyear): New function, without those problems.
20211         (ydhms_tm_diff): Remove; splitting into two parts.
20212         (ydhms_diff): New function, containing the arithmetic part of
20213         the old ydhms_tm_diff function.  Issue a compile-time
20214         diagnostic if we are not using C99 integer division.
20215         Avoid casts when possible.
20216         (guess_time_tm): New function, containing the checking part of
20217         the old ydhms_tm_diff function.  Return the new value, rather than
20218         the difference between it and the old.  Accept a new argument T
20219         so that *T specifies the old value.  Check for overflow in the result.
20220
20221         (__mktime_internal): Use a time_t offset, not a long int offset.
20222         This undoes the 2003-06-04 change, which is no longer needed now
20223         that we have better overflow checking.
20224         (localtime_offset): Likewise.
20225
20226         (__mktime_internal): Avoid harmful overflow on hosts where time_t
20227         and long are 64-bit but int is only 32-bit.
20228         (ydhms_diff): Use long int to store year1 and yday1.
20229         Issue a compile-time diagnostic if long int is not wide enough.
20230
20231         (__mktime_internal): Use long int to store adjusted year and yday.
20232         Use plain C rather than preprocessor commands, if that doesn't
20233         affect efficiency.
20234         Check for overflow (and try to repair) after each probe
20235         rather than checking only at the very end.  This avoids some bugs
20236         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
20237         does not equal GMT offset at maximum time).
20238         Use integer to check for overflow rather than floating point; this
20239         is more portable to non-IEEE hosts, and is a tad faster.
20240         When we detect that we are oscillating between two values,
20241         don't check whether tm_isdst has the requested value, since
20242         we already know the answer.  When tm_isdst has the wrong value,
20243         use a different heuristic to find the right one, based on the
20244         extreme values actually observed in practice in tz2003a,
20245         rather than the (overly optimistic) "previous 3 calendar quarters".
20246
20247         (not_equal_tm, print_tm, check_result): Use "const T" rather than
20248         "T const" to accommodate glibc style.
20249         (check_result): Use less-confusing report format.  "long" -> "long int.
20250         (main): Likewise.
20251         Don't loop if the iteration overflows time_t.
20252         Allow a negative step in the iteration.
20253
20254 2003-07-06  Karl Berry  <karl@gnu.org>
20255
20256         * config/depcomp: update from automake.
20257         * config/config.sub: update from prep.
20258
20259 2003-07-03  Karl Berry  <karl@gnu.org>
20260
20261         * config/config.guess: update from prep.
20262
20263 2003-07-01  Paul Eggert  <eggert@twinsun.com>
20264
20265         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
20266         xreadlink.c now includes it unconditionally.
20267
20268 2003-07-01  Paul Eggert  <eggert@twinsun.com>
20269
20270         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
20271         having it depend on HAVE_SYS_TYPES_H.
20272
20273 2003-07-01  Bruno Haible  <bruno@clisp.org>
20274
20275         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
20276         <sys/types.h> should be sufficient.
20277         Reported by Paul Eggert.
20278
20279 2003-06-26  Karl Berry  <karl@gnu.org>
20280
20281         * config/depcomp: update from automake.
20282
20283 2003-06-26  Bruno Haible  <bruno@clisp.org>
20284
20285         * modules/human: Depend on module stdbool.
20286
20287 2003-06-25  Bruno Haible  <bruno@clisp.org>
20288
20289         * modules/readlink: New file.
20290         * modules/xreadlink: Depend on it.
20291         * MODULES.html.sh (func_all_modules): Add readlink.
20292
20293 2003-06-25  Bruno Haible  <bruno@clisp.org>
20294
20295         * m4/readlink.m4: New file.
20296
20297 2003-06-25  Bruno Haible  <bruno@clisp.org>
20298
20299         * lib/readlink.c: New file.
20300
20301 2003-06-22  Karl Berry  <karl@gnu.org>
20302
20303         * config/srclist.txt: update mkinstalldirs from automake.
20304         * config/mkinstalldirs: update.
20305
20306 2003-06-22  Bruno Haible  <bruno@clisp.org>
20307
20308         Portability to mingw32.
20309         * m4/ssize_t.m4: New file, from GNU gettext.
20310         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
20311         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
20312
20313 2003-06-22  Bruno Haible  <bruno@clisp.org>
20314
20315         * modules/safe-read: Add m4/ssize_t.m4.
20316         * modules/xreadlink: Add m4/ssize_t.m4.
20317
20318 2003-06-20  Bruno Haible  <bruno@clisp.org>
20319
20320         Assume C89, so PARAMS isn't needed.
20321         * lib/unicodeio.h (PARAMS): Remove.
20322         * lib/unicodeio.c: Don't use PARAMS.
20323
20324 2003-06-18  Karl Berry  <karl@gnu.org>
20325
20326         * config/config.{guess,sub}: update from prep.
20327
20328 2003-06-18  Jim Meyering  <jim@meyering.net>
20329
20330         Merge changes from coreutils.
20331         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
20332         Remove explicit declarations of xmalloc and realloc.
20333         Include xalloc.h.
20334         (read_utmp): Remove anachronistic cast of xmalloc.
20335
20336 2003-06-17  Paul Eggert  <eggert@twinsun.com>
20337
20338         Assume C89, so PARAMS isn't needed.
20339         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
20340         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
20341         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
20342         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
20343         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
20344         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
20345         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
20346         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
20347         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
20348         lib/xstrtod.h, lib/xstrtol.h: Likewise.
20349         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
20350         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
20351         no longer needed. Anyway, config.h should always be included before any
20352         other file.
20353
20354 2003-06-11  Simon Josefsson  <jas@extundo.com>
20355
20356         * modules/sysexits: New file.
20357         * MODULES.html.sh (func_all_modules): Add sysexits.
20358
20359 2003-06-11  Simon Josefsson  <jas@extundo.com>
20360
20361         * lib/sysexit_.h: New file.
20362
20363 2003-06-11  Derek Price  <derek@ximbiot.com>
20364
20365         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
20366         necessary.
20367
20368 2003-06-11  Bruno Haible  <bruno@clisp.org>
20369
20370         * m4/sysexits.m4: New file.
20371
20372 2003-06-10  Simon Josefsson  <jas@extundo.com>
20373
20374         * lib/argp.h: New file, from glibc.
20375         * lib/argp-ba.c: New file, from glibc.
20376         * lib/argp-eexst.c: New file, from glibc.
20377         * lib/argp-fmtstream.c: New file, from glibc.
20378         * lib/argp-fmtstream.h: New file, from glibc.
20379         * lib/argp-fs-xinl.c: New file, from glibc.
20380         * lib/argp-help.c: New file, from glibc.
20381         * lib/argp-namefrob.h: New file, from glibc.
20382         * lib/argp-parse.c: New file, from glibc.
20383         * lib/argp-pv.c: New file, from glibc.
20384         * lib/argp-pvh.c: New file, from glibc.
20385         * lib/argp-xinl.c: New file, from glibc.
20386
20387 2003-06-10  Simon Josefsson  <jas@extundo.com>
20388
20389         * modules/strchrnul: New file.
20390
20391 2003-06-10  Simon Josefsson  <jas@extundo.com>
20392
20393         * modules/argp: New file.
20394
20395 2003-06-10  Simon Josefsson  <jas@extundo.com>
20396
20397         * m4/strchrnul.m4: New file.
20398
20399 2003-06-10  Simon Josefsson  <jas@extundo.com>
20400
20401         * lib/strchrnul.h: New file.
20402         * lib/strchrnul.c: New file.
20403
20404 2003-06-10  Bruno Haible  <bruno@clisp.org>
20405
20406         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
20407
20408 2003-06-07  Karl Berry  <karl@gnu.org>
20409
20410         * config/config.{guess,sub}: update from prep.
20411
20412 2003-06-07  Jim Meyering  <jim@meyering.net>
20413
20414         * modules/strtod: Use $(...) notation, not @...@ for
20415         AC_REPLACE'd variables.
20416         * modules/localcharset: Likewise.
20417
20418 2003-06-07  Jim Meyering  <jim@meyering.net>
20419
20420         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
20421         in place of my name in the copyright comment.
20422         Remove definition and uses of __P.
20423
20424         From coreutils.
20425         * lib/stat.c: Don't declare xmalloc explicitly.
20426         Instead, include "xalloc.h".
20427         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
20428         xrealloc, and xcalloc return values.
20429         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
20430         Improve comment.
20431         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
20432
20433 2003-06-07  Bruno Haible  <bruno@clisp.org>
20434
20435         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
20436         avoid AC_CONFIG_LINKS.
20437         * modules/fnmatch (Makefile.am): Use explicit creation rule for
20438         fnmatch.h, to avoid AC_CONFIG_LINKS.
20439         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
20440
20441 2003-06-07  Bruno Haible  <bruno@clisp.org>
20442
20443         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
20444         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
20445         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
20446         directory.
20447         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
20448         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
20449         directory.
20450
20451 2003-06-06  Jim Meyering  <jim@meyering.net>
20452
20453         Merge from coreutils.
20454         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
20455         Consolidate declarations and initializations of *_base* locals.
20456
20457         Merge from coreutils.
20458         This avoids a core dump on systems without GNU putenv,
20459         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
20460         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
20461         (unsetenv): New static function, from GNU libc.
20462         (rpl_putenv): Use it.
20463
20464         * lib/modechange.c: Remove trailing blanks.
20465
20466         Merge from coreutils.
20467         * lib/fsusage.c: Remove declaration of statfs.
20468         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
20469
20470         * lib/posixtm.c: Include <stdbool.h> unconditionally.
20471
20472 2003-06-06  Jim Meyering  <jim@meyering.net>
20473
20474         * lib/stdbool_.h: Renamed from stdbool.h.in.
20475
20476 2003-06-06  Jim Meyering  <jim@meyering.net>
20477             Bruno Haible  <bruno@clisp.org>
20478
20479         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
20480         Adjust Makefile.am snippet not to redirect directly to target.
20481         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
20482
20483 2003-06-05  Paul Eggert  <eggert@twinsun.com>
20484
20485         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
20486         mismatch, look in future quarters as well as past.  This fixes a
20487         bug when processing fall-backwards gaps immediately after a long
20488         period of daylight-saving time.
20489
20490         * lib/mktime.c: Assume freestanding C89 or better.
20491         (HAVE_LIMITS_H): Remove.  Assume it's 1.
20492         (__P): Remove; not used.
20493         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
20494         (mktime, not_equal_tm, print_tm, check_result,
20495         main): Use prototypes.  Use const * where appropriate.
20496         (main): Fix typo in testing code that uncovered by above changes.
20497         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
20498
20499 2003-06-04  Paul Eggert  <eggert@twinsun.com>
20500
20501         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
20502         locale.h, localeconv.  This merges changes from coreutils.
20503
20504         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
20505         It can be removed after the next Autoconf is released.
20506         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
20507         needed.
20508
20509 2003-06-04  Paul Eggert  <eggert@twinsun.com>
20510
20511         * lib/mktime.c: Fix Debian bug 177940
20512         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
20513         (localtime_offset): Now long int, not time_t, because we want it
20514         to be guaranteed to be signed.  All uses changed.
20515         (__mktime_internal): If overflow would occur when adding offset,
20516         don't add it.
20517
20518         Merge 'human' changes from coreutils.  Rewrite to support
20519         locale-specific notations like thousands separators.
20520         * lib/human.c: Simplify authorship notice.
20521         Include human.h immediately after config.h.
20522         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
20523         <limits.h>: Do not include, since human.h does.
20524         (SIZE_MAX, UINTMAX_MAX): New macros.
20525         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
20526         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
20527         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
20528         (power_letter): Renamed from suffixes.
20529         (generate_suffix_backwards): Remove.
20530         (adjust_value): Now takes int style (because of human.h changes)
20531         and long double value (for greater precision on some platforms).
20532         (group_number): New function.
20533         (human_readable): Use it.  Use integer options, not enum.
20534         Put the options before the sizes in the arg list.
20535         Support all the new options.
20536         The old human_readable function has been removed;
20537         use inttostr.h instead.
20538         (human_readable, default_block_size, humblock):
20539         Use uintmax_t, not int, for block sizes.
20540         (human_readable_inexact, block_size_types): Remove.
20541         (block_size_opts): New constant.
20542         (human_options): Renamed from human_block_size, with new signature
20543         that allows block sizes up to UINTMAX_MAX.  All callers changed.
20544         * lib/human.h: Add copyright and authorship notice.
20545         Include <limits.h> and <stdbool.h> unconditionally.
20546         (PARAMS): Remove.  All uses removed.
20547         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
20548         (enum human_inexact_style): Remove tag; now a nameless enum.
20549         (human_floor, human_ceiling, human_round_to_even): Now have
20550         values 2, 0, 1 rather than -1, 1, 0.
20551         (human_group_digits, human_suppress_point_zero, human_autoscale,
20552         human_base_1024, human_SI, human_B): New constants.
20553         (human_readable_inexact, human_block_size): Remove.
20554         (human_readable): Size args are now uintmax_t, not int.
20555         (human_options): New decl.
20556
20557         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
20558         unnecessary now that we assume C89 or better.  This change
20559         imported from coreutils.
20560
20561         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
20562         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
20563         in the 2003-05-30 sync from glibc.
20564
20565         .h files should stand alone, but we shouldn't include <sys/types.h>
20566         if we can get away with just <stddef.h>.
20567
20568         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
20569         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
20570         rather than <sys/types.h>, as we merely need size_t.
20571         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
20572         to get size_t.
20573         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
20574         Include <stdio.h>, to get FILE.
20575         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
20576         memcasecmp.h has included <stddef.h> and all we need is size_t.
20577         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
20578         our interface, instead of including <sys/types.h>
20579
20580 2003-06-04  Paul Eggert  <eggert@twinsun.com>
20581
20582         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
20583         now, as glibc mktime is buggy on non-glibc systems.
20584
20585 2003-06-03  Karl Berry  <karl@gnu.org>
20586
20587         * config/config.sub: update from prep.
20588
20589 2003-06-02  Paul Eggert  <eggert@twinsun.com>
20590
20591         [from coreutils]
20592         Fix some minor time-related bugs with POSIX time arguments.
20593         Some valid time stamps were being rejected (notably -1, and
20594         time stamps before 1900 on 64-bit hosts).  And some invalid
20595         time stamps were being accepted, e.g. September 31.
20596
20597         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
20598         that we can return (time_t) -1 successfully.
20599         * lib/posixtm.c: Likewise.
20600         [HAVE_STDBOOL_H]: Include <stdbool.h>.
20601         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
20602         (t): Remove static var.
20603         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
20604         of static var.  All uses changed.
20605         (year): Do not reject years before 1900; they can occur with
20606         64-bit time_t.
20607         (posix_time_parse): Do not check for out-of-range components;
20608         that is now the caller's responsibility, since our checks were
20609         only approximations.
20610         (posixtime): Use mktime to check for out-of-range components,
20611         since it knows them exactly.
20612         If mktime returns (time_t) -1, check whether an error actually occurred
20613         by invoking localtime on -1.
20614         (main) [TEST_POSIXTIME]: Check for input data errors, and report
20615         posixtime failures better.
20616         Improve the test data (in comments only).
20617
20618 2003-06-02  Karl Berry  <karl@gnu.org>
20619
20620         * config/mkinstalldirs (version): new variable.
20621         (--version): new option.
20622         (usage): improve message.
20623
20624 2003-05-30  Karl Berry  <karl@gnu.org>
20625
20626         * lib/mktime.c: update from libc.
20627
20628 2003-05-30  Bruno Haible  <bruno@clisp.org>
20629
20630         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
20631         * config/config.rpath: Upgrade to gettext-0.12.1.
20632
20633 2003-05-30  Bruno Haible  <bruno@clisp.org>
20634
20635         * m4/gettext.m4: Upgrade to gettext-0.12.1.
20636         * m4/nls.m4: New file, from gettext-0.12.1.
20637         * m4/po.m4: New file, from gettext-0.12.1.
20638         * m4/progtest.m4: Upgrade to gettext-0.12.1.
20639
20640 2003-05-30  Bruno Haible  <bruno@clisp.org>
20641
20642         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
20643         * lib/localcharset.h: Likewise.
20644         * lib/localcharset.c: Likewise.
20645
20646 2003-05-29  Karl Berry  <karl@gnu.org>
20647
20648         * config/config.rpath: update from gettext.
20649
20650 2003-05-28  Paul Eggert  <eggert@twinsun.com>
20651
20652         Assume the headers required for C89 freestanding compilers.
20653         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
20654         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
20655         * m4/human.m4 (gl_HUMAN): Likewise.
20656         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
20657         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
20658         * m4/userspec.m4 (gl_USERSPEC): Likewise.
20659         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
20660         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
20661         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
20662
20663 2003-05-28  Paul Eggert  <eggert@twinsun.com>
20664
20665         Assume the headers required for C89 freestanding compilers.
20666         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
20667         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
20668         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
20669         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
20670         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
20671         define, since <limits.h> is guaranteed to do that.
20672         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
20673         * lib/exclude.c: Include <stdbool.h> unconditionally.
20674         * lib/tempname.c: Include <stddef.h> unconditionally.
20675         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
20676         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
20677         <stddef.h> does that.
20678         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
20679         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
20680         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
20681         needed.
20682         * lib/xstrtol.c: Likewise.
20683         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
20684         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
20685
20686         * lib/addext.c (addext): Use assignment rather than cast, to avoid
20687         warnings on some platforms.
20688
20689         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
20690         arbitrarily.
20691
20692 2003-05-26  Jim Meyering  <jim@meyering.net>
20693
20694         Merge in a change from coreutils:
20695         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
20696         that is guaranteed to be `no'.  Use `no_such_member' to indicate
20697         that condition, rather than `-1' which is slightly misleading.
20698         Change the name of the cache variable to have the gl_ prefix.
20699         Prompted by a patch from Richard Dawe for DJGPP.
20700
20701 2003-05-24  Karl Berry  <karl@gnu.org>
20702
20703         * config/config.guess: update from prep.
20704
20705 2003-05-22  Karl Berry  <karl@gnu.org>
20706
20707         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
20708
20709 2003-05-20  Karl Berry  <karl@gnu.org>
20710
20711         * config/config.guess: update from prep.
20712
20713 2003-05-18  Karl Berry  <karl@gnu.org>
20714
20715         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
20716         might actually be set by the user.
20717
20718         * config/depcomp, install-sh, mdate-sh: update from automake.
20719
20720 2003-05-17  Bruno Haible  <bruno@clisp.org>
20721
20722         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
20723         invalid expansion for AC_EGREP_CPP.
20724         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
20725         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
20726         Suggested by Akim Demaille <akim@epita.fr> in
20727         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
20728
20729 2003-05-12  Jim Meyering  <jim@meyering.net>
20730
20731         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
20732         the space-padded-by-default conversion specifiers, %e, %k, %l.
20733
20734 2003-05-12  Bruno Haible  <bruno@clisp.org>
20735
20736         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
20737         the string is longer than 4 KB.
20738
20739 2003-05-11  Karl Berry  <karl@gnu.org>
20740
20741         * config/config.{guess,sub}: update from prep.
20742
20743 2003-05-09  Bruno Haible  <bruno@clisp.org>
20744
20745         * modules/error: Add m4/strerror_r.m4 to file list.
20746
20747 2003-05-03  Bruno Haible  <bruno@clisp.org>
20748
20749         Upgrade to Unicode-4.0.
20750         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
20751         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
20752         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
20753         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
20754         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
20755         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
20756         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
20757         Change width of U+E0100..U+E01EF from 1 to 0.
20758
20759 2003-04-25  Jim Meyering  <jim@meyering.net>
20760
20761         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
20762         of type size_t, not int.
20763
20764 2003-04-25  Bruno Haible  <bruno@clisp.org>
20765
20766         * lib/copy-file.c: Include <stddef.h>, for size_t.
20767
20768 2003-04-21  Paul Eggert  <eggert@twinsun.com>
20769
20770         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
20771         code which expansion is under static control.  Patch imported from
20772         Akim Demaille's patch to Bison; see
20773         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
20774
20775 2003-04-14  Bruno Haible  <bruno@clisp.org>
20776
20777         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
20778
20779 2003-04-11  Jim Meyering  <jim@meyering.net>
20780
20781         Merge changes from Coreutils.
20782
20783         2003-03-22  Jim Meyering  <jim@meyering.net>
20784
20785         * lib/strftime.c (widen): Cast alloca return value to proper type.
20786
20787         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
20788
20789         From GNU libc.
20790         * lib/strftime.c (my_strftime): Handle very large width
20791         specifications for numeric values correctly.  Improve checks for
20792         overflow.
20793
20794         2003-01-19  Jim Meyering  <jim@meyering.net>
20795
20796         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
20797         definitions.
20798         (nl_get_alt_digit) [! defined my_strftime]: Define.
20799         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
20800         _nl_get_alt_digit and _nl_get_walt_digit.
20801
20802         * lib/strftime.c (my_strftime): Merge in locale-related changes from
20803         libc. These changes have no effect outside of _LIBC.
20804
20805 2003-04-10  Bruno Haible  <bruno@clisp.org>
20806
20807         * modules/findprog: New file.
20808         * MODULES.html.sh (func_all_modules): Add it.
20809
20810 2003-04-10  Bruno Haible  <bruno@clisp.org>
20811
20812         * m4/findprog.m4: New file.
20813         * m4/eaccess.m4: New file.
20814
20815 2003-04-10  Bruno Haible  <bruno@clisp.org>
20816
20817         * lib/findprog.h: New file, from GNU gettext.
20818         * lib/findprog.c: New file, from GNU gettext.
20819
20820 2003-04-05  Jim Meyering  <jim@meyering.net>
20821
20822         Merge changes from Coreutils.
20823
20824         * lib/exclude.h (PARAMS): Remove definition and uses.
20825         * lib/exclude.c: Remove uses of `PARAMS'.
20826
20827         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
20828         Add test-cases for DOS filenames. Declare program_name.
20829         (main): Set up program_name.  Patch by Rich Dawe.
20830
20831         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
20832         error from mntctl.
20833         Use mntctl's return value to drive the entry-processing loop, since
20834         we can't rely on the value of the vmt_length member in the last
20835         entry.  On some systems doing so could result in exhausting
20836         virtual memory.  Based in part on a patch from Mike Jetzer.
20837
20838 2003-04-04  Bruno Haible  <bruno@clisp.org>
20839
20840         * modules/linebreak: New file.
20841         * MODULES.html.sh (func_all_modules): Add it.
20842
20843 2003-04-04  Bruno Haible  <bruno@clisp.org>
20844
20845         * m4/linebreak.m4: New file.
20846
20847 2003-04-04  Bruno Haible  <bruno@clisp.org>
20848
20849         * lib/linebreak.h: New file, from GNU gettext.
20850         * lib/linebreak.c: New file, from GNU gettext with slight
20851         modifications.
20852         * lib/lbrkprop.h: New file, from GNU gettext.
20853
20854 2003-04-03  Bruno Haible  <bruno@clisp.org>
20855
20856         * modules/utf8-ucs4: New file.
20857         * modules/utf16-ucs4: New file.
20858         * modules/ucs4-utf8: New file.
20859         * modules/ucs4-utf16: New file.
20860         * MODULES.html.sh (func_all_modules): Add them.
20861
20862 2003-04-03  Bruno Haible  <bruno@clisp.org>
20863
20864         * m4/utf-ucs4.m4: New file.
20865         * m4/ucs4-utf.m4: New file.
20866
20867 2003-04-03  Bruno Haible  <bruno@clisp.org>
20868
20869         * lib/utf8-ucs4.h: New file, from GNU gettext.
20870         * lib/utf16-ucs4.h: New file, from GNU gettext.
20871         * lib/ucs4-utf8.h: New file, from GNU gettext.
20872         * lib/ucs4-utf16.h: New file, from GNU gettext.
20873
20874 2003-04-02  Bruno Haible  <bruno@clisp.org>
20875
20876         * modules/binary-io: New file.
20877         * MODULES.html.sh (func_all_modules): Add it.
20878
20879 2003-04-02  Bruno Haible  <bruno@clisp.org>
20880
20881         * lib/binary-io.h: New file, from GNU gettext.
20882
20883 2003-04-01  Bruno Haible  <bruno@clisp.org>
20884
20885         * modules/pathname: New file.
20886         * MODULES.html.sh (func_all_modules): Add it.
20887
20888 2003-04-01  Bruno Haible  <bruno@clisp.org>
20889
20890         * lib/pathname.h: New file, from GNU gettext.
20891         * lib/concatpath.c: New file, from GNU gettext.
20892
20893 2003-03-30  Bruno Haible  <bruno@clisp.org>
20894
20895         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
20896
20897 2003-03-30  Bruno Haible  <bruno@clisp.org>
20898
20899         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
20900         function chown() doesn't exist.
20901
20902 2003-03-28  Bruno Haible  <bruno@clisp.org>
20903
20904         * modules/copy-file: New file.
20905         * MODULES.html.sh (func_all_modules): Add it.
20906
20907 2003-03-28  Bruno Haible  <bruno@clisp.org>
20908
20909         * m4/copy-file.m4: New file.
20910
20911 2003-03-28  Bruno Haible  <bruno@clisp.org>
20912
20913         * lib/copy-file.h: New file, from GNU gettext.
20914         * lib/copy-file.c: New file, from GNU gettext.
20915
20916 2003-03-18  Jim Meyering  <jim@meyering.net>
20917
20918         * lib/quote.c (quote_n): Fix typo in comment.
20919
20920 2003-03-18  Bruno Haible  <bruno@clisp.org>
20921
20922         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
20923         checking.
20924         * m4/onceonly_2_57.m4: Likewise.
20925
20926 2003-03-17  Bruno Haible  <bruno@clisp.org>
20927
20928         * m4/onceonly.m4: Require autoconf 2.54 or newer.
20929         (m4_quote): Remove macro.
20930         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
20931
20932 2003-03-14  Jim Meyering  <jim@meyering.net>
20933
20934         Merge changes from Coreutils.
20935         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
20936         to be const, in order to avoid warnings.
20937         (obstack_room): Likewise.
20938         (obstack_empty_p): Likewise.
20939
20940 2003-03-14  Bruno Haible  <bruno@clisp.org>
20941
20942         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
20943         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
20944
20945 2003-03-13  Paul Eggert  <eggert@twinsun.com>
20946
20947         Merge changes from Bison.
20948         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
20949         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
20950         when compiling Bison 1.875's `bitset bset = obstack_alloc
20951         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
20952         * lib/hash.c: Include <stdbool.h> unconditionally.
20953
20954 2003-03-13  Paul Eggert  <eggert@twinsun.com>
20955
20956         * m4/onceonly.m4 (m4_quote): New macro.
20957         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
20958         Quote AC_FOREACH variable-expansions properly.
20959
20960 2003-03-13  Paul Eggert  <eggert@twinsun.com>
20961
20962         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
20963
20964 2003-03-09  Paul Eggert  <eggert@twinsun.com>
20965
20966         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
20967         Reported by Bruce Becker; see:
20968         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
20969
20970 2003-03-03  Paul Eggert  <eggert@twinsun.com>
20971             Bruno Haible  <bruno@clisp.org>
20972
20973         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
20974         Reported by John Hughes, see
20975         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
20976
20977 2003-02-20  Bruno Haible  <bruno@clisp.org>
20978
20979         * MODULES.html.sh (func_all_modules): Add poll.
20980
20981 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
20982
20983         * modules/poll: New file.
20984
20985 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
20986
20987         * lib/poll_.h: New file.
20988         * lib/poll.c: New file.
20989
20990 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
20991
20992         * m4/poll.m4: New file.
20993
20994 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
20995
20996         * modules/mathl: New file.
20997
20998 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
20999
21000         * lib/mathl.h: New file.
21001         * lib/acosl.c: New file.
21002         * lib/asinl.c: New file.
21003         * lib/atanl.c: New file.
21004         * lib/ceill.c: New file.
21005         * lib/cosl.c: New file.
21006         * lib/expl.c: New file.
21007         * lib/floorl.c: New file.
21008         * lib/frexpl.c: New file.
21009         * lib/ldexpl.c: New file.
21010         * lib/logl.c: New file.
21011         * lib/sincosl.c: New file.
21012         * lib/sinl.c: New file.
21013         * lib/sqrtl.c: New file.
21014         * lib/tanl.c: New file.
21015         * lib/trigl.c: New file.
21016         * lib/trigl.h: New file.
21017
21018 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
21019
21020         * m4/mathl.m4: New file.
21021
21022 2003-02-18  Bruno Haible  <bruno@clisp.org>
21023
21024         * MODULES.html.sh (func_all_modules): Add mathl.
21025
21026 2003-02-17  Bruno Haible  <bruno@clisp.org>
21027
21028         * modules/mkdtemp: New module.
21029         * MODULES.html.sh (func_all_modules): Add it.
21030
21031 2003-02-17  Bruno Haible  <bruno@clisp.org>
21032
21033         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
21034
21035 2003-02-17  Bruno Haible  <bruno@clisp.org>
21036
21037         * lib/mkdtemp.h: New file, from GNU gettext.
21038         * lib/mkdtemp.c: New file, from GNU gettext.
21039
21040 2003-02-02  Jim Meyering  <jim@meyering.net>
21041
21042         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
21043         e.g. glibc-2.2.93.
21044
21045 2003-01-31  Bruno Haible  <bruno@clisp.org>
21046
21047         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
21048         'rpl_rename'.
21049         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
21050         'rpl_strnlen'.
21051         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
21052         'rpl_strtod'.
21053         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
21054         'rpl_utime'.
21055
21056 2003-01-31  Bruno Haible  <bruno@clisp.org>
21057
21058         * lib/rename.c: #undef rename before defining rpl_rename.
21059         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
21060
21061 2003-01-30  Bruno Haible  <bruno@clisp.org>
21062
21063         * modules/vasnprintf, modules/vasprintf: New modules.
21064         * MODULES.html.sh (func_all_modules): Add them.
21065
21066 2003-01-30  Bruno Haible  <bruno@clisp.org>
21067
21068         * m4/signed.m4: New file, from GNU gettext.
21069         * m4/longdouble.m4: New file, from GNU gettext.
21070         * m4/wchar_t.m4: New file, from GNU gettext.
21071         * m4/wint_t.m4: New file, from GNU gettext.
21072         * m4/vasnprintf.m4: New file.
21073         * m4/vasprintf.m4: New file.
21074
21075 2003-01-30  Bruno Haible  <bruno@clisp.org>
21076
21077         * lib/printf-args.h: New file, from GNU gettext.
21078         * lib/printf-args.c: New file, from GNU gettext.
21079         * lib/printf-parse.h: New file, from GNU gettext.
21080         * lib/printf-parse.c: New file, from GNU gettext.
21081         * lib/vasnprintf.h: New file, from GNU gettext.
21082         * lib/vasnprintf.c: New file, from GNU gettext.
21083         * lib/asnprintf.c: New file, from GNU gettext.
21084         * lib/vasprintf.h: New file, from GNU gettext with modifications.
21085         * lib/vasprintf.c: New file, from GNU gettext.
21086         * lib/asprintf.c: New file, from GNU gettext.
21087
21088 2003-01-29  Bruno Haible  <bruno@clisp.org>
21089
21090         * modules/stpncpy: New module.
21091         * MODULES.html.sh (func_all_modules): Add it.
21092
21093 2003-01-29  Bruno Haible  <bruno@clisp.org>
21094
21095         * m4/stpncpy.m4: New file.
21096
21097 2003-01-29  Bruno Haible  <bruno@clisp.org>
21098
21099         * lib/stpncpy.h: New file, from GNU gettext with modifications.
21100         * lib/stpncpy.c: New file, from GNU gettext with modifications.
21101
21102 2003-01-28  Bruno Haible  <bruno@clisp.org>
21103
21104         * modules/c-ctype: New module.
21105         * MODULES.html.sh (func_all_modules): Add it.
21106
21107 2003-01-28  Bruno Haible  <bruno@clisp.org>
21108
21109         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
21110         Paul Eggert.
21111         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
21112         Paul Eggert.
21113
21114 2003-01-27  Bruno Haible  <bruno@clisp.org>
21115
21116         * modules/xsetenv: New module.
21117         * MODULES.html.sh (func_all_modules): Add it.
21118
21119 2003-01-27  Bruno Haible  <bruno@clisp.org>
21120
21121         * lib/xsetenv.h: New file, from GNU gettext.
21122         * lib/xsetenv.c: New file, from GNU gettext.
21123
21124 2003-01-23  Jim Meyering  <jim@meyering.net>
21125
21126         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
21127         from working on systems without dirfd (at least Irix and OSF1/Tru64).
21128
21129 2003-01-23  Bruno Haible  <bruno@clisp.org>
21130
21131         * modules/minmax: New module.
21132         * MODULES.html.sh (func_all_modules): Add it.
21133
21134 2003-01-23  Bruno Haible  <bruno@clisp.org>
21135
21136         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
21137         Eggert.
21138
21139 2003-01-22  Bruno Haible  <bruno@clisp.org>
21140
21141         * modules/exit: New module.
21142         * MODULES.html.sh (func_all_modules): Add it.
21143
21144 2003-01-22  Bruno Haible  <bruno@clisp.org>
21145
21146         * lib/exit.h: New file, from GNU gettext.
21147
21148 2003-01-19  Bruno Haible  <bruno@clisp.org>
21149
21150         * gnulib-tool: Recognize option --extract-maintainer.
21151         (func_get_maintainer): New function.
21152         * modules/*: Add Maintainer entry.
21153
21154 2003-01-16  Jim Meyering  <jim@meyering.net>
21155
21156         * m4/regex.m4: The `regex' struct is both input and output.
21157         Initialize it before each use.  Patch by Tim Waugh.
21158
21159 2003-01-16  Bruno Haible  <bruno@clisp.org>
21160
21161         * MODULES.html.sh: Add a table of contents. Add the module name as
21162         leftmost column. Add hyperlinks.
21163
21164 2003-01-15  Bruno Haible  <bruno@clisp.org>
21165
21166         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
21167
21168 2003-01-15  Bruno Haible  <bruno@clisp.org>
21169
21170         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
21171         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
21172         suffix.
21173
21174 2003-01-15  Bruno Haible  <bruno@clisp.org>
21175
21176         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
21177
21178 2003-01-15  Bruno Haible  <bruno@clisp.org>
21179
21180         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
21181         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
21182
21183 2003-01-14  Jim Meyering  <jim@meyering.net>
21184
21185         * lib/same.c (same_name): Tweak a comment.
21186
21187 2003-01-14  Bruno Haible  <bruno@clisp.org>
21188
21189         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
21190         when a string comparison is sufficient.
21191
21192 2003-01-14  Bruno Haible  <bruno@clisp.org>
21193
21194         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
21195         'unsigned int'.
21196
21197 2003-01-14  Bruno Haible  <bruno@clisp.org>
21198
21199         * lib/hash-pjw.c: Add comment about low quality of this function.
21200
21201 2003-01-13  Bruno Haible  <bruno@clisp.org>
21202
21203         * modules/stpcpy: Distribute lib/stpcpy.h.
21204         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
21205
21206 2003-01-13  Bruno Haible  <bruno@clisp.org>
21207
21208         * modules/*: Add a description.
21209         * modules/strpbrk: Fix Makefile.am snippet.
21210         * modules/strtoimax: Fix dependencies.
21211         * modules/strtoumax: Likewise.
21212
21213 2003-01-13  Bruno Haible  <bruno@clisp.org>
21214
21215         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
21216         * modules/alloca (Makefile.am): All object files depend on alloca.h.
21217         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
21218
21219 2003-01-13  Bruno Haible  <bruno@clisp.org>
21220
21221         * gnulib-tool (func_create_testdir): Store config/* files in the main
21222         directory.
21223         * config.rpath: Move to ...
21224         * config/config.rpath: ... here.
21225         * modules/gettext: Contains config/config.rpath, not config.rpath.
21226         * modules/iconv: Likewise.
21227
21228 2003-01-12  Paul Eggert  <eggert@twinsun.com>
21229
21230         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
21231         to avoid collisions with libcurses and libreadline.
21232
21233         * m4/getstr.m4: Remove.
21234         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
21235
21236 2003-01-12  Paul Eggert  <eggert@twinsun.com>
21237
21238         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
21239         to avoid collisions with libcurses and libreadline.
21240
21241         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
21242         * lib/getstr.h, getstr.c: Remove.
21243         * lib/getline.c: Include "getline.h", to check interface.
21244         Move body of old getstr.c here: this defines MIN_CHUNK and
21245         declares getdelim2, which is renamed from getstr.
21246         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
21247
21248         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
21249         All uses changed.
21250         * lib/linebuffer.h: Likewise.
21251         (readline): Remove backward-compatibility macro.
21252
21253 2003-01-12  Paul Eggert  <eggert@twinsun.com>
21254
21255         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
21256         to avoid collisions with libcurses and libreadline.
21257         * getstr: Remove.
21258         * MODULES.html.sh: Remove getstr.
21259         * modules/getline: Depend on unlocked-io, not getstr.
21260
21261 2003-01-12  Jim Meyering  <jim@meyering.net>
21262
21263         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
21264
21265 2003-01-10  Bruno Haible  <bruno@clisp.org>
21266
21267         * modules/alloca: Change Makefile.am requirements. Simplify Include
21268         requirements. Add lib/alloca_.h to file list.
21269
21270 2003-01-10  Bruno Haible  <bruno@clisp.org>
21271
21272         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
21273
21274 2003-01-10  Bruno Haible  <bruno@clisp.org>
21275
21276         * lib/alloca_.h: New file.
21277         * lib/getdate.y: Unconditionally include alloca.h.
21278         * lib/makepath.c: Likewise.
21279         * lib/setenv.c: Likewise.
21280         * lib/userspec.c: Likewise.
21281
21282 2003-01-09  Karl Berry  <karl@gnu.org>
21283
21284         * MODULES.html.sh: include `dirname $0` in PATH, to find
21285         gnulib-tool.
21286
21287 2003-01-09  Bruno Haible  <bruno@clisp.org>
21288
21289         * modules/stdbool: Change configure.ac, Makefile.am requirements.
21290         Simplify Include requirements. Add lib/stdbool.h.in to file list.
21291
21292 2003-01-09  Bruno Haible  <bruno@clisp.org>
21293
21294         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
21295
21296 2003-01-09  Bruno Haible  <bruno@clisp.org>
21297
21298         * lib/stdbool.h.in: New file.
21299
21300 2003-01-09  Bruno Haible  <bruno@clisp.org>
21301
21302         * gnulib-tool (func_all_modules): Ignore files ending in ~.
21303         * MODULES.html.sh: Likewise.
21304
21305 2003-01-08  Jim Meyering  <jim@meyering.net>
21306
21307         * lib/full-write.c: Undefine and define-away `const' after inclusion
21308         of errno.h, not before.  Suggestion from Bruno Haible.
21309
21310 2003-01-08  Bruno Haible  <bruno@clisp.org>
21311
21312         * modules/full-read: Depend on full-write.
21313
21314 2003-01-08  Bruno Haible  <bruno@clisp.org>
21315
21316         * lib/safe-read.c: Include specification header first, to ensure its
21317         selfcontainedness.
21318         * lib/full-write.c: Likewise.
21319
21320 2003-01-07  Jim Meyering  <jim@meyering.net>
21321
21322         * lib/full-write.c: Rework so that it may serve to define full_read,
21323         too.
21324         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
21325
21326 2003-01-07  Bruno Haible  <bruno@clisp.org>
21327
21328         * lib/strtoimax.c: Include <stdint.h> as an alternative to
21329         <inttypes.h>.
21330         * lib/xstrtol.h: Likewise.
21331         * lib/xstrtoimax.c: Likewise.
21332         * lib/xstrtoumax.c: Likewise.
21333         * lib/human.h: Likewise.
21334
21335         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
21336         on systems that have <inttypes.h> but not <stdint.h>.
21337
21338 2003-01-07  Bruno Haible  <bruno@clisp.org>
21339
21340         * MODULES.html.sh: Add copyright notice.
21341         (missed_files): Omit CVS directory entries.
21342         (func_module): Make it work with sed-3.02.
21343         * MODULES.txt: Remove file.
21344
21345 2003-01-06  Jim Meyering  <jim@meyering.net>
21346
21347         * lib/version-etc.c: Update year in translatable copyright string.
21348
21349 2003-01-03  Karl Berry  <karl@gnu.org>
21350
21351         * config/config.{guess,sub}: update from prep.
21352
21353 2003-01-02  Karl Berry  <karl@gnu.org>
21354
21355         * doc/COPYING.DOC: belatedly updated to 1.2.
21356
21357 2003-01-01  Karl Berry  <karl@gnu.org>
21358
21359         * gnulib-tool (func_verify_module): report module name $module in
21360         error message, not $1.
21361         * gnulib-tool (create-testdir): don't complain if destdir couldn't
21362         be created, only if it doesn't exist.
21363         * gnulib-tool (last_checkin_date): don't expand the $Date here.
21364
21365 2002-12-31  Paul Eggert  <eggert@twinsun.com>
21366
21367         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
21368
21369 2002-12-31  Paul Eggert  <eggert@twinsun.com>
21370
21371         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
21372         memcmp if strcoll doesn't work.
21373
21374 2002-12-31  Bruno Haible  <bruno@clisp.org>
21375
21376         * lib/utime.c (utime_null): No need to call ftruncate if the file was
21377         nonempty.
21378
21379 2002-12-31  Bruno Haible  <bruno@clisp.org>
21380
21381         * lib/memcoll.c (STRCOLL): New macro.
21382         (memcoll): Use it.
21383
21384 2002-12-31  Bruno Haible  <bruno@clisp.org>
21385
21386         * lib/localcharset.h: New file.
21387         * lib/localcharset.c: Include it.
21388         * lib/unicodeio.c: Likewise.
21389
21390 2002-12-31  Bruno Haible  <bruno@clisp.org>
21391
21392         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
21393         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
21394
21395 2002-12-31  Bruno Haible  <bruno@clisp.org>
21396
21397         * lib/getline.h: Include <stddef.h>, for size_t.
21398
21399         * lib/unicodeio.h: Include <stddef.h>, for size_t.
21400         * lib/unicodeio.c: Don't include <stddef.h>.
21401
21402 2002-12-31  Bruno Haible  <bruno@clisp.org>
21403
21404         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
21405         HAVE_TM_ZONE.
21406
21407 2002-12-24  Karl Berry  <karl@gnu.org>
21408
21409         * config/config.guess: update from prep.
21410
21411 2002-12-24  Bruno Haible  <bruno@clisp.org>
21412
21413         General infrasructure.
21414         * m4/README: Rewritten.
21415         * m4/onceonly.m4: New file.
21416         * m4/onceonly_2_57.m4: New file.
21417
21418         Module atexit.
21419         * m4/atexit.m4: New file.
21420
21421         Module strtod.
21422         * m4/strtod.m4: New file.
21423
21424         Module strtol.
21425         * m4/strtol.m4: New file.
21426
21427         Module strtoul.
21428         * m4/strtoul.m4: New file.
21429
21430         Module memchr.
21431         * m4/memchr.m4: New file.
21432
21433         Module memcmp.
21434         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
21435         (jm_FUNC_MEMCMP): Invoke it.
21436
21437         Module memcpy.
21438         * m4/memcpy.m4: New file.
21439
21440         Module memmove.
21441         * m4/memmove.m4: New file.
21442
21443         Module memset.
21444         * m4/memset.m4: New file.
21445
21446         Module strcspn.
21447         * m4/strcspn.m4: New file.
21448
21449         Module strpbrk.
21450         * m4/strpbrk.m4: New file.
21451
21452         Module strstr.
21453         * m4/strstr.m4: New file.
21454
21455         Module strerror.
21456         * m4/strerror.m4: New file.
21457
21458         Module mktime.
21459         * m4/mktime.m4: Renamed from jm-mktime.m4.
21460         (gl_PREREQ_MKTIME): New macro.
21461         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
21462
21463         Module malloc.
21464         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
21465         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
21466         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
21467
21468         Module realloc.
21469         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
21470         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
21471         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
21472
21473         Module strftime.
21474         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
21475         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
21476         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
21477         gl_TM_GMTOFF.
21478         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
21479
21480         Module xalloc.
21481         * m4/xalloc.m4: New file.
21482
21483         Module alloca.
21484         * m4/alloca.m4: New file.
21485
21486         Module putenv.
21487         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
21488         (jm_FUNC_PUTENV): Invoke it.
21489
21490         Module setenv.
21491         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
21492         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
21493         when invoked twice.
21494         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
21495         gt_FUNC_SETENV.
21496
21497         Module memrchr.
21498         * m4/memrchr.m4: New file.
21499
21500         Module stpcpy.
21501         * m4/stpcpy.m4: New file.
21502
21503         Module strcase.
21504         * m4/strcase.m4: New file.
21505
21506         Module strdup.
21507         * m4/strdup.m4: New file.
21508
21509         Module strnlen.
21510         * m4/strnlen.m4: New file.
21511
21512         Module strndup.
21513         * m4/strndup.m4: New file.
21514
21515         Module xstrtod.
21516         * m4/xstrtod.m4: New file.
21517
21518         Module xstrtol.
21519         * m4/xstrtol.m4: New file.
21520
21521         Module getdate.
21522         * m4/getdate.m4: New file.
21523
21524         Module unlocked-io.
21525         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
21526         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
21527         * m4/jm-glibc-io.m4n: Remove file.
21528
21529         Module long-options.
21530         * m4/long-options.m4: New file.
21531
21532         Module md5.
21533         * m4/md5.m4: New file.
21534
21535         Module sha.
21536         * m4/sha.m4: New file.
21537
21538         Module getstr.
21539         * m4/getstr.m4: New file.
21540
21541         Module getline.
21542         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
21543         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
21544         <sys/types.h>, for size_t. Use the function name gnu_getline, not
21545         simply getline. Infoke gl_PREREQ_GETLINE.
21546
21547         Module obstack.
21548         * m4/obstack.m4: New file.
21549
21550         Module hash.
21551         * m4/hash.m4: New file.
21552
21553         Module readtokens.
21554         * m4/readtokens.m4: New file.
21555
21556         Module strverscmp.
21557         * m4/strverscmp.m4: New file.
21558
21559         Module stdbool.
21560         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
21561         OSF/1.
21562
21563         Module strtoll.
21564         * m4/strtoll.m4: New file.
21565
21566         Module strtoull.
21567         * m4/strtoull.m4: New file.
21568
21569         Module strtoimax.
21570         * m4/strtoimax.m4: New file.
21571
21572         Module strtoumax.
21573         * m4/strtoumax.m4: New file.
21574
21575         Module xstrtoimax.
21576         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
21577         jm_AC_PREREQ_XSTRTOIMAX.
21578         Moved the strtol prerequisites to strtol.m4.
21579         Moved the strtoll prerequisites to strtoll.m4.
21580         Moved the strtoimax prerequisites to strtoimax.m4.
21581
21582         Module xstrtoumax.
21583         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
21584         jm_AC_PREREQ_XSTRTOUMAX.
21585         Moved the strtoul prerequisites to strtoul.m4.
21586         Moved the strtoull prerequisites to strtoull.m4.
21587         Moved the strtoumax prerequisites to strtoumax.m4.
21588
21589         Module chown.
21590         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
21591         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
21592
21593         Module dup2.
21594         * m4/dup2.m4: New file.
21595
21596         Module ftruncate.
21597         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
21598         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
21599
21600         Module getgroups.
21601         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
21602         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
21603
21604         Module gettimeofday.
21605         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
21606         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
21607         gl_PREREQ_GETTIMEOFDAY.
21608
21609         Module mkdir.
21610         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
21611         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
21612
21613         Module mkstemp.
21614         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
21615         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
21616         jm_AC_TYPE_UINTMAX_T.
21617         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
21618
21619         Module stat.
21620         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
21621         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
21622
21623         Module lstat.
21624         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
21625         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
21626
21627         Module timespec.
21628         * m4/timespec.m4 (gl_TIMESPEC): New macro.
21629         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
21630         * m4/st_mtim.m4: Indentation.
21631
21632         Module nanosleep.
21633         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
21634         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
21635         gl_PREREQ_NANOSLEEP.
21636
21637         Module regex.
21638         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
21639         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
21640         (gl_REGEX): New macro.
21641
21642         Module rename.
21643         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
21644         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
21645
21646         Module rmdir.
21647         * m4/rmdir.m4: New file.
21648
21649         Module utime.
21650         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
21651         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
21652         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
21653
21654         Module dirname.
21655         * m4/dirname.m4: New file.
21656
21657         Module getopt.
21658         * m4/getopt.m4: New file.
21659
21660         Module unistd-safer.
21661         * m4/unistd-safer.m4: New file.
21662
21663         Module fnmatch.
21664         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
21665         declaration.
21666         (gl_PREREQ_FNMATCH_EXTRA): New macro.
21667         (gl_FUNC_FNMATCH_POSIX): New macro.
21668         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
21669         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
21670         simply fnmatch.
21671
21672         Module exclude.
21673         * m4/exclude.m4: New file.
21674
21675         Module human.
21676         * m4/human.m4: New file.
21677
21678         Module acl.
21679         * m4/acl.m4: Nop.
21680
21681         Module backupfile.
21682         * m4/backupfile.m4: New file.
21683         * m4/d-ino.m4: Indentation.
21684
21685         Module fsusage.
21686         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
21687         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
21688         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
21689
21690         Module dirfd.
21691         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
21692         requirements.
21693
21694         Module euidaccess.
21695         * m4/euidaccess.m4: New file.
21696
21697         Module file-type.
21698         * m4/file-type.m4: New file.
21699
21700         Module fileblocks.
21701         * m4/fileblocks.m4: New file.
21702
21703         Module filemode.
21704         * m4/filemode.m4: New file.
21705
21706         Module isdir.
21707         * m4/isdir.m4: New file.
21708
21709         Module lchown.
21710         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
21711         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
21712
21713         Module makepath.
21714         * m4/makepath.m4: New file.
21715
21716         Module modechange.
21717         * m4/modechange.m4: New file.
21718
21719         Module mountlist.
21720         * m4/mountlist.m4: New file.
21721         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
21722         Indentation.
21723
21724         Module path-concat.
21725         * m4/path-concat.m4: New file.
21726
21727         Module pathmax.
21728         * m4/pathmax.m4: New file.
21729
21730         Module same.
21731         * m4/same.m4: New file.
21732
21733         Module save-cwd.
21734         * m4/save-cwd.m4: New file.
21735
21736         Module savedir.
21737         * m4/savedir.m4: New file.
21738
21739         Module xgetcwd.
21740         * m4/xgetcwd.m4: New file.
21741         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
21742
21743         Module xreadlink.
21744         * m4/xreadlink.m4: New file.
21745
21746         Module safe-read.
21747         * m4/safe-read.m4: New file.
21748
21749         Module safe-write.
21750         * m4/safe-write.m4: New file.
21751
21752         Module closeout.
21753         * m4/closeout.m4: New file.
21754
21755         Module stdio-safer.
21756         * m4/stdio-safer.m4: New file.
21757
21758         Module getpass.
21759         * m4/getpass.m4: New file.
21760
21761         Module getugroups.
21762         * m4/getugroups.m4: New file.
21763
21764         Module group-member.
21765         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
21766         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
21767
21768         Module idcache.
21769         * m4/idcache.m4: New file.
21770
21771         Module userspec.
21772         * m4/userspec.m4: New file.
21773
21774         Module gettime.
21775         * m4/clock_time.m4: New file.
21776         * m4/gettime.m4: New file.
21777
21778         Module settime.
21779         * m4/settime.m4: New file.
21780
21781         Module posixtm.
21782         * m4/posixtm.m4: New file.
21783
21784         Module gethostname.
21785         * m4/gethostname.m4: New file.
21786
21787         Module canon-host.
21788         * m4/canon-host.m4: New file.
21789
21790         Module gettext.
21791         * m4/codeset.m4: New file, from gettext-0.11.5.
21792         * m4/gettext.m4: New file, from gettext-0.11.5.
21793         * m4/glibc21.m4: New file, from gettext-0.11.5.
21794         * m4/iconv.m4: New file, from gettext-0.11.5.
21795         * m4/intdiv0.m4: New file, from gettext-0.11.5.
21796         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
21797         * m4/inttypes.m4: New file, from gettext-0.11.5.
21798         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
21799         * m4/isc-posix.m4: New file, from gettext-0.11.5.
21800         * m4/lcmessage.m4: New file, from gettext-0.11.5.
21801         * m4/lib-ld.m4: New file, from gettext-0.11.5.
21802         * m4/lib-link.m4: New file, from gettext-0.11.5.
21803         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
21804         * m4/progtest.m4: New file, from gettext-0.11.5.
21805         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
21806         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
21807         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
21808
21809         Module localcharset.
21810         * m4/localcharset.m4: New file.
21811
21812         Module hard-locale.
21813         * m4/hard-locale.m4: New file.
21814
21815         Module mbswidth.
21816         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
21817         onceonly macros.
21818         * m4/mbrtowc.m4: Add comment.
21819
21820         Module memcasecmp.
21821         * m4/memcasecmp.m4: New file.
21822
21823         Module memcoll.
21824         * m4/memcoll.m4: New file.
21825
21826         Module unicodeio.
21827         * m4/unicodeio.m4: New file.
21828
21829         Module rpmatch.
21830         * m4/rpmatch.m4: New file.
21831
21832         Module yesno.
21833         * m4/yesno.m4: New file.
21834
21835         Module exitfail.
21836         * m4/exitfail.m4: New file.
21837
21838         Module c-stack.
21839         * m4/c-stack.m4 (gl_C_STACK): New macro.
21840         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
21841
21842         Module error.
21843         * m4/error.m4 (gl_ERROR): New macro.
21844         (jm_PREREQ_ERROR): Use onceonly macros.
21845
21846         Module fatal.
21847         * m4/fatal.m4: New file.
21848
21849         Module getloadavg.
21850         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
21851         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
21852
21853         Module getpagesize.
21854         * m4/getpagesize.m4: New file.
21855
21856         Module getusershell.
21857         * m4/getusershell.m4: New file.
21858
21859         Module physmem.
21860         * m4/physmem.m4: New file.
21861
21862         Module posixver.
21863         * m4/posixver.m4: New file.
21864
21865         Module quotearg.
21866         * m4/quotearg.m4: New file.
21867
21868         Module quote.
21869         * m4/quote.m4: New file.
21870
21871         Module readutmp.
21872         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
21873
21874         Module sig2str.
21875         * m4/sig2str.m4: New file.
21876
21877         Other.
21878         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
21879         ulonglong.m4.
21880         * m4/intmax_t.m4: New file.
21881         * m4/d-type.m4: Indentation.
21882         * m4/jm-macros.m4: Update.
21883         * m4/prereq.m4 (jm_PREREQ): Update.
21884         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
21885         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
21886         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
21887         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
21888         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
21889         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
21890         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
21891         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
21892         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
21893         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
21894         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
21895         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
21896         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
21897         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
21898         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
21899         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
21900         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
21901         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
21902         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
21903
21904 2002-12-24  Bruno Haible  <bruno@clisp.org>
21905
21906         * MODULES.txt: Update according to m4/ changes.
21907
21908         Module gettext.
21909         * config.rpath: New file, from gettext-0.11.5.
21910
21911         * modules/*: New module descriptions.
21912         * gnulib-tool: New file.
21913         * MODULES.html.sh: New file.
21914
21915 2002-12-21  Karl Berry  <karl@gnu.org>
21916
21917         * doc/fdl.texi: update to version 1.2.
21918
21919 2002-12-19  Karl Berry  <karl@gnu.org>
21920
21921         * config/config.guess: update from prep.
21922
21923 2002-12-18  Bruno Haible  <bruno@clisp.org>
21924
21925         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
21926         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
21927
21928 2002-12-17  Bruno Haible  <bruno@clisp.org>
21929
21930         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
21931         stdlib.h, string.h.
21932
21933 2002-12-17  Bruno Haible  <bruno@clisp.org>
21934
21935         * lib/canon-host.c (strdup): Remove unused declaration.
21936
21937         * lib/fsusage.c: Include full_read.h.
21938         (get_fs_usage): Use full_read instead of safe_read.
21939
21940         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
21941
21942 2002-12-12  Karl Berry  <karl@gnu.org>
21943
21944         * config/config.guess: update from prep.
21945
21946 2002-12-11  Bruno Haible  <bruno@clisp.org>
21947
21948         * m4/setenv.m4: New file, from gettext-0.11.5.
21949
21950 2002-12-11  Bruno Haible  <bruno@clisp.org>
21951
21952         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
21953         not unsetenv().
21954         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
21955         modifications:
21956
21957         2002-12-11  Bruno Haible  <bruno@clisp.org>
21958
21959                 * setenv.c (alloca): Fall back to malloc.
21960                 (freea): New macro.
21961                 (setenv): Use freea() to free memory allocated with alloca().
21962
21963         2002-11-13  Bruno Haible  <bruno@clisp.org>
21964
21965                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
21966                 function declarations.
21967                 * unsetenv.c (unsetenv): Likewise.
21968
21969         2002-03-04  Bruno Haible  <bruno@clisp.org>
21970
21971                 Portability to AIX 4.3.3.
21972                 * unsetenv.c: New file, extracted from setenv.c.
21973                 * setenv.c: Move the unsetenv() function to unsetenv.c.
21974
21975         2001-12-20  Bruno Haible  <bruno@clisp.org>
21976
21977                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
21978                 use malloc instead. For SunOS 4.
21979
21980         2001-12-11  Bruno Haible  <bruno@clisp.org>
21981
21982                 * setenv.c: Declare alloca.
21983                 (compar_fn_t): New typedef.
21984                 (KNOWN_VALUE, STORE_VALUE): Use it.
21985
21986         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
21987         setenv.h.
21988
21989 2002-12-10  Paul Eggert  <eggert@twinsun.com>
21990
21991         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
21992         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
21993         Choose values that are less likely to collide with system fnmatch
21994         options.
21995         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
21996         defined (e.g., a pure POSIX system).
21997         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
21998         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
21999
22000 2002-12-06  Paul Eggert  <eggert@twinsun.com>
22001
22002         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
22003         a pain in practice to deal with generated m4 files.  This change
22004         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
22005
22006         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
22007         and jm-glibc-io.m4, as they are no longer a special case.
22008         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
22009         kludge and the auto-generation stuff.  Check only whether the
22010         functions are declared, not whether they exist, since older hosts
22011         that don't declare the functions can't use the optimization anyway.
22012
22013 2002-12-06  Jim Meyering  <jim@meyering.net>
22014
22015         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
22016
22017         Merge in changes from libc's misc/error.c, in preparation
22018         for the merge of gnulib's changes back into libc.
22019
22020         * lib/error.c (_): Define only if not already defined.
22021         Move definition to follow all #include directives.
22022         Include unlocked-io.h only if !_LIBC.
22023         [_LIBC]: Include <libio/libioP.h>.
22024         [USE_IN_LIBIO]: Include <libio/iolibio.h>
22025         (fflush): Tweak definition to use INTUSE.
22026         (putc): Define.
22027
22028 2002-12-05  Paul Eggert  <eggert@twinsun.com>
22029
22030         * lib/alloca.c [defined emacs]: Include "lisp.h".
22031         (xalloc_die) [defined emacs]: New macro.
22032         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
22033         [! defined emacs]: Include <xalloc.h>.
22034         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
22035         (pointer): Typedef to POINTER_TYPE *.
22036         (malloc): Remove decl; we now always use xmalloc.
22037         (alloca): Use old-style definition, since Emacs needs this.
22038         Check for arithmetic overflow when computing combined size.
22039
22040 2002-12-04  Paul Eggert  <eggert@twinsun.com>
22041
22042         Do not generate unlocked-io.h automatically, since it's easier to
22043         maintain it by hand.
22044
22045         * lib/unlocked-io.h: New file, from GNU diffutils,
22046         but with proper copyright notice and attribution.
22047         * lib/gen-uio: Remove.
22048         * lib/Makefile.am: Add copyright notice.
22049         (libfetish_a_SOURCES): Add unlocked-io.h.
22050         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
22051         (DISTCLEANFILES, io_functions): Remove macros.
22052         (EXTRA_DIST): Remove gen_uio.
22053         (unlocked-io.h): Remove rule.
22054
22055 2002-12-04  Jim Meyering  <jim@meyering.net>
22056
22057         Reflect the fact that stat.c and lstat.c are no longer generated.
22058         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
22059         (DISTCLEANFILES): Likewise.
22060         (EXTRA_DIST): Likewise.
22061         (all_local): Don't depend on stat.c or lstat.c.
22062         (stat.c, lstat.c): Remove rules.
22063         (EXTRA_DIST): Remove xstat.in.
22064
22065         * lib/xstat.in: Remove file.  Contents moved into stat.c.
22066         * lib/stat.c: New file.  Contents mostly from xstat.in.
22067         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
22068         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
22069
22070         * lib/safe-read.c: Rework so that it may serve to define safe_write,
22071         too.
22072         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
22073
22074 2002-12-03  Jim Meyering  <jim@meyering.net>
22075
22076         * lib/safe-read.c, safe-write.c: Change variable names and comments,
22077         but not semantics, to minimize the differences between these two files.
22078         (safe_read): Change comment to mention SAFE_READ_ERROR.
22079
22080         * lib/safe-read.c (IS_EINTR): Define.
22081         (safe_read): Use IS_EINTR in place of in-function cpp directives.
22082
22083 2002-12-02  Jim Meyering  <jim@meyering.net>
22084
22085         * lib/safe-read.c (EINTR): Define.
22086         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
22087         (INT_MAX): Provide fallback.
22088         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
22089
22090         * lib/safe-read.h (SAFE_READ_ERROR): Define.
22091
22092 2002-12-02  Bruno Haible  <bruno@clisp.org>
22093
22094         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
22095         Define, taken from safe-read.c.
22096         (INT_MAX): Provide fallback.
22097         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
22098         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
22099
22100         * lib/safe-read.c (EINTR): Remove definition.
22101         (safe_read): Don't use EINTR if it is absent.
22102
22103 2002-12-01  Jim Meyering  <jim@meyering.net>
22104
22105         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
22106         zero.
22107         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
22108
22109 2002-11-27  Paul Eggert  <eggert@twinsun.com>
22110
22111         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
22112         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
22113         with `if (! (value < limit)) abort ();', for readability.
22114
22115 2002-11-26  Karl Berry  <karl@gnu.org>
22116
22117         * lib/strdup.c: copy from libc again, with jim's ok.
22118         * lib/.cppi-disable: re-add strdup.c
22119
22120 2002-11-25  Karl Berry  <karl@gnu.org>
22121
22122         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
22123         instead of "strtol.c".
22124
22125 2002-11-25  Karl Berry  <karl@gnu.org>
22126
22127         * config/install-sh: update from automake for variable quoting, $0 in
22128         error msgs, etc.
22129
22130         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
22131         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
22132         entry.
22133
22134 2002-11-25  Jim Meyering  <jim@meyering.net>
22135
22136         * lib/mktime.c: Sync from libc, now that it has the latest fix.
22137
22138 2002-11-24  Karl Berry  <karl@gnu.org>
22139
22140         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
22141         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
22142
22143 2002-11-24  Jim Meyering  <jim@meyering.net>
22144
22145         Update from coreutils:
22146
22147         * lib/mktime.c: Merge in changes from libc.
22148
22149         Avoid a link-time failure on some Linux systems.
22150         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
22151         (otherwise).
22152         (__mon_yday): Declare with the STATIC attribute.
22153         (__mktime_internal): Likewise.
22154         Based on a report from Greg Schafer.
22155
22156 2002-11-23  Jim Meyering  <jim@meyering.net>
22157
22158         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
22159         Use `unsigned', not `int', as type of index.
22160
22161         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
22162
22163         * lib/fsusage.c: Remove unneeded parentheses around operands of
22164         `defined'.
22165
22166 2002-11-22  Paul Eggert  <eggert@twinsun.com>
22167
22168         * lib/quotearg.h: Allow multiple inclusion by surrounding with
22169         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
22170         so that we can be included first.
22171         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
22172         * lib/quotearg.c: Include quotearg.h immediately after config.h.
22173         No need to include stddef.h or sys/types.h any more.
22174         Surround local include files with "", not "<>".
22175         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
22176         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
22177         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
22178         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
22179         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
22180         (ISPRINT): Remove; no longer needed now that we assume C89.
22181
22182         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
22183         Preserve errno.
22184
22185         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
22186         quotearg_char): Use SIZE_MAX rather than
22187         (size_t) -1 when we are talking about "infinity".
22188
22189         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
22190
22191 2002-11-22  Paul Eggert  <eggert@twinsun.com>
22192
22193         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
22194         hint that one should use `if (! x) abort ();' rather than `assert
22195         (x);', and anyway it's one less thing to worry about configuring.
22196         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
22197         hash_rehash, hash_insert): Use abort rather than assert.
22198
22199 2002-11-22  Bruno Haible  <bruno@clisp.org>
22200
22201         * lib/safe-read.h: Assume C89. Add comments.
22202         (safe_read): Change return type to size_t.
22203         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
22204         byte counts > SSIZE_MAX correctly.
22205         * lib/safe-write.h: New file.
22206         * lib/safe-write.c: New file.
22207         * lib/full-read.h: New file.
22208         * lib/full-read.c: New file.
22209         * lib/full-write.h: Assume C89. Add comments.
22210         * lib/full-write.c: Include safe-write.h.
22211         (full_write): Rewritten to use safe_write.
22212         Suggested by Jim Meyering and Paul Eggert.
22213
22214 2002-11-21  Jim Meyering  <jim@meyering.net>
22215
22216         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
22217
22218         Merge in changes from the coreutils.
22219
22220         2002-09-25  Paul Eggert  <eggert@twinsun.com>
22221         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
22222         <stdint.h>.
22223         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
22224         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
22225         int.  Work more efficiently if X is the same width as uintmax_t.
22226         Do not compare X to -1, to avoid bogus compiler warning.
22227         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
22228         Don't assume that f_frsize and f_bsize are the same type.
22229
22230         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
22231         warning on FreeBSD.
22232
22233         * lib/makepath.c (make_path): Restore umask *before* creating the final
22234         component.
22235         (make_path): Minor reformatting.
22236
22237         * lib/xmalloc.c: Adjust to work with new autoconf macros,
22238         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
22239         HAVE_MALLOC/HAVE_REALLOC.
22240
22241         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
22242         dummy ones.  At least on GNU/Linux systems, `auto' means something
22243         else.
22244         From Michael Stone.
22245
22246 2002-11-21  Bruno Haible  <bruno@clisp.org>
22247
22248         Remove case insensitive option matching.
22249         * lib/argmatch.h (argcasematch): Remove declaration.
22250         (ARGCASEMATCH): Remove macro.
22251         (__xargmatch_internal): Remove case_sensitive argument.
22252         (XARGMATCH): Update.
22253         (XARGCASEMATCH): Remove macro.
22254         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
22255         case_sensitive argument.
22256         (argcasematch): Remove function.
22257         (__xargmatch_internal): Remove case_sensitive argument.
22258         (main): Use XARGMATCH instead of XARGCASEMATCH.
22259
22260         * lib/xmalloc.c: Change compile-time error message. Add comment about
22261         required autoconf version.
22262
22263 2002-11-20  Paul Eggert  <eggert@twinsun.com>
22264
22265         Merge argmatch cleanups from Bison.  Assume C89.
22266
22267         * lib/argmatch.c: Include config.h here, not in argmatch.h.
22268         Include stdlib.h, for EXIT_FAILURE.
22269         Always include <string.h>, since we assume C89.
22270         (EXIT_FAILURE): Remove pre-C89 bug workaround.
22271         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
22272         Include <stddef.h> instead, since it's all we need for size_t.
22273         (PARAMS): Remove.  All uses removed.
22274         (ARRAY_CARDINALITY): Do not bother to #undef.
22275         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
22276         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
22277         Remove unnecessary parentheses.
22278         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
22279         Insert necessary parentheses.
22280         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
22281         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
22282
22283 2002-11-19  Bruno Haible  <bruno@clisp.org>
22284
22285         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
22286         * lib/mbswidth.h: Include <stddef.h>, for size_t.
22287
22288         * lib/mbswidth.h (PARAMS): Remove macro.
22289         (mbswidth, mbsnwidth): Use ANSI C function declarations.
22290         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
22291
22292         * lib/gcd.h (PARAMS): Remove macro.
22293         (gcd): Use ANSI C function declarations.
22294         * lib/gcd.c (gcd): Likewise.
22295
22296 2002-11-15  Bruno Haible  <bruno@clisp.org>
22297
22298         * lib/strcspn.c: Include <stddef.h>.
22299         (strcspn): Use ANSI C function declaration. Change return type to
22300         size_t. Use NULL.
22301         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
22302         (strpbrk): Use NULL.
22303         * lib/strpbrk.h (PARAMS): Remove macro.
22304         (strpbrk): Use ANSI C function declaration.
22305         * lib/strstr.c: Don't include <sys/types.h>.
22306         * lib/strstr.h (PARAMS): Remove macro.
22307         (strstr): Use ANSI C function declarations.
22308
22309 2002-11-14  Karl Berry  <karl@gnu.org>
22310
22311         * config/mkinstalldirs: `do' on separate line, instead of
22312         `for var; do'.
22313
22314 2002-11-06  Bruno Haible  <bruno@clisp.org>
22315
22316         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
22317         * lib/gcd.c (gcd): Likewise.
22318
22319 2002-11-05  Bruno Haible  <bruno@clisp.org>
22320
22321         * lib/gcd.h: New file, from gettext-0.11.5.
22322         * lib/gcd.c: New file, from gettext-0.11.5.
22323
22324 2002-11-05  Bruno Haible  <bruno@clisp.org>
22325
22326         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
22327         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
22328         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
22329         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
22330
22331         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
22332         <libintl.h>.
22333         * lib/makepath.c: Include gettext.h instead of <locale.h> and
22334         <libintl.h>.
22335
22336         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
22337         * lib/human.c: Include gettext.h instead of <libintl.h>.
22338         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
22339         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
22340         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
22341         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
22342         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
22343         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
22344         (textdomain): Remove definition.
22345         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
22346
22347         * lib/long-options.c: Remove include of <libintl.h> and definition of
22348         _.
22349         * lib/same.c: Remove include of <libintl.h> and definition of _.
22350
22351 2002-11-04  Owen Taylor  <otaylor@redhat.com>
22352
22353         * lib/config.charset: A few additions for Solaris.
22354
22355 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
22356
22357         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
22358         * lib/localcharset.c (locale_charset): Declare as extern "C".
22359
22360 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
22361
22362         * lib/config.charset: msdos in uk_UA uses CP1125.
22363
22364 2002-11-04  Bruno Haible  <bruno@clisp.org>
22365
22366         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
22367         * lib/strcase.h: New file, from GNU gettext-0.11.5.
22368         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
22369         * lib/strstr.h: New file, from GNU gettext-0.11.5.
22370         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
22371
22372 2002-11-04  Bruno Haible  <bruno@clisp.org>
22373
22374         * lib/localcharset.c (locale_charset): Don't return an empty string.
22375
22376 2002-11-04  Bruno Haible  <bruno@clisp.org>
22377
22378         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
22379         aliases.
22380
22381 2002-11-04  Bruno Haible  <bruno@clisp.org>
22382
22383         * lib/config.charset: Update for newest glibc. Add canonical names
22384         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
22385
22386 2002-11-04  Bruno Haible  <bruno@clisp.org>
22387
22388         * lib/config.charset: Add support for NetBSD.
22389
22390 2002-11-04  Bruno Haible  <bruno@clisp.org>
22391
22392         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
22393
22394 2002-11-01  Bruno Haible  <bruno@clisp.org>
22395
22396         * configure.in: Add AC_CONFIG_AUX_DIR call.
22397         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
22398         test/Makefile.
22399         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
22400
22401 2002-09-28  Karl Berry  <karl@gnu.org>
22402
22403         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
22404         installed automake until the next release, since changes have been
22405         made.
22406
22407 2002-09-25  Karl Berry  <karl@gnu.org>
22408
22409         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
22410         * lib/getopt*: copy from libc/posix.
22411         * lib/gettext.h: copy from gettext.
22412         * lib/.cppi-disable: add strdup.c, gettext.h.
22413
22414 2002-09-25  Karl Berry  <karl@gnu.org>
22415
22416         * config/srclist.txt: enable gettext.h check.
22417         * config/config.{guess,sub}: update from prep.
22418         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
22419                 from automake 1.6.3.
22420         See srclist*.
22421
22422 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
22423
22424         * regex.c (PATFETCH): Remove the translating fetch.
22425         (PATFETCH_RAW): Rename to PATFETCH.
22426         (set_image_of_range): New fun.
22427         (SET_RANGE_TABLE_WORK_AREA): Use it.
22428         (regex_compile): Don't translate the pattern chars so eagerly.
22429         Only do it when inserting an `exactn' bytecode or when handling
22430         a char-range.
22431         (mutually_exclusive_p): Avoid empty statement.
22432
22433 2002-07-06  Jim Meyering  <meyering@lucent.com>
22434
22435         * m4/README: Don't mention Makefile.am.in.
22436         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
22437
22438 2002-07-01  Jim Meyering  <meyering@lucent.com>
22439
22440         * lib/c-stack.c: Include sys/time.h.
22441         From Volker Borchert.
22442
22443 2002-06-26  Paul Eggert  <eggert@twinsun.com>
22444
22445         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
22446
22447 2002-06-26  Paul Eggert  <eggert@twinsun.com>
22448
22449         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
22450         New macro.  Use it uniformly instead of
22451         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
22452         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
22453         reported by Vin Shelton.
22454
22455 2002-06-22  Paul Eggert  <eggert@twinsun.com>
22456
22457         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
22458         Do not assume SA_SIGINFO behavior.
22459         Bug reported by Jim Meyering on NetBSD 1.5.2.
22460
22461 2002-06-22  Jim Meyering  <meyering@lucent.com>
22462
22463         * m4/c-stack.m4: New file, from diffutils-2.8.2.
22464         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
22465
22466         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
22467         now that configure.ac uses AC_GNU_SOURCE.
22468         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
22469         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
22470
22471         Update to latest tools.  Suggestions from Paul Eggert.
22472         * m4/stdbool.m4: New file, from diffutils-2.8.2.
22473         * m4/gnu-source.m4: Update from diffutils-2.8.2.
22474         * m4/fnmatch.m4: Likewise.
22475         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
22476         to AC_HEADER_STDBOOL
22477
22478 2002-06-22  Jim Meyering  <meyering@lucent.com>
22479
22480         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
22481         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
22482
22483 2002-06-22  Jim Meyering  <meyering@lucent.com>
22484
22485         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
22486
22487         * lib/exitfail.c, exitfail.h: Likewise.
22488         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
22489
22490         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
22491         of fnmatch.h.
22492         (EXTRA_DIST): Add fnmatch_loop.c.
22493         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
22494
22495         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
22496         * lib/fnmatch.c: Update from diffutils-2.8.2.
22497         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
22498         * lib/fnmatch.h: Remove file.
22499
22500 2002-06-21  Jim Meyering  <meyering@lucent.com>
22501
22502         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
22503         * m4/mbrtowc.m4: Likewise.
22504
22505         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
22506         * m4/mbswidth.m4: Reflect name change:
22507         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
22508         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
22509
22510         * m4/lib-link.m4: Update from gettext-0.11.2.
22511         * m4/gettext.m4: Likewise.
22512
22513         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
22514         From Alfred M. Szmidt.
22515
22516 2002-06-18  Paul Eggert  <eggert@twinsun.com>
22517
22518         * lib/file-type.h: Report an error if neither S_ISREG nor
22519         S_IFREG is defined, instead of using a test specific to glibc
22520         2.2.  This should be safe, since POSIX requires S_ISREG and
22521         Unix Version 7 had S_IFREG.  We don't need to check for
22522         <sys/types.h> since we don't use any symbols that it defines.
22523
22524 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
22525
22526         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
22527         $@-t, so that each temporary file name is unique and valid in the first
22528         8 characters, for operation under DOS.
22529
22530 2002-06-15  Paul Eggert  <eggert@twinsun.com>
22531
22532         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
22533
22534 2002-06-15  Jim Meyering  <meyering@lucent.com>
22535
22536         Work even with DJGPP 2.03, which lacks support for symlinks.
22537         From Richard Dawe.
22538         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
22539         is defined.
22540         * lib/lchown.c (S_ISLNK): Likewise.
22541
22542 2002-06-15  Jim Meyering  <meyering@lucent.com>
22543
22544         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
22545         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
22546         have been included before this file.
22547
22548 2002-06-14  Jim Meyering  <meyering@lucent.com>
22549
22550         * lib/file-type.h: Use the version from diffutils-2.8.2.
22551         * lib/file-type.c: Likewise.
22552
22553 2002-06-07  Jim Meyering  <meyering@lucent.com>
22554
22555         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
22556         They're needed at least for NetBSD 1.5.2.
22557         ($statxfs_includes): Include those same headers.
22558         ($statxfs_includes): Include sys/vfs.h if available.
22559         ($statxfs_includes): Likewise for sys/statvfs.h.
22560         Check for the following members in both structs statfs and statvfs:
22561         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
22562
22563 2002-06-01  Jim Meyering  <meyering@lucent.com>
22564
22565         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
22566         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
22567
22568 2002-05-28  Jim Meyering  <meyering@lucent.com>
22569
22570         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
22571         Reported by Volker Borchert.
22572
22573 2002-05-27  Jim Meyering  <meyering@lucent.com>
22574
22575         Fix a problem seen only on nonconforming systems whereby ls.c's
22576         use of localtime, and then of gettimeofday would cause trouble:
22577         the localtime call used to initialize rpl_gettimeofday's save
22578         mechanism would clobber ls's current local time information so
22579         that in any long listing the first file would always be listed
22580         with date 1970-01-01.  Analysis by Volker Borchert.
22581
22582         * lib/gettimeofday.c (localtime): Undefine.
22583         (rpl_localtime): New function.
22584
22585 2002-05-27  Jim Meyering  <meyering@lucent.com>
22586
22587         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
22588         localtime.
22589
22590         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
22591         use the replacement function; it wouldn't resolve at link time.
22592         Reported by Volker Borchert.
22593
22594 2002-05-22  Jim Meyering  <meyering@lucent.com>
22595
22596         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
22597         file-type.h.
22598         * lib/file-type.h: New file.
22599         * lib/file-type.c (file_type): New file/function.  Extracted from
22600         diffutils.
22601
22602 2002-04-30  Jim Meyering  <meyering@lucent.com>
22603
22604         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
22605
22606 2002-04-29  Paul Eggert  <eggert@twinsun.com>
22607
22608         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
22609
22610 2002-04-29  Paul Eggert  <eggert@twinsun.com>
22611
22612         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
22613         Do not check for alloca.h (no longer used) or stdbool.h (was never
22614         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
22615
22616 2002-04-29  Paul Eggert  <eggert@twinsun.com>
22617
22618         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
22619
22620 2002-04-29  Jim Meyering  <meyering@lucent.com>
22621
22622         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
22623         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
22624         Use AC_FUNC_STRNLEN here instead.
22625
22626         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
22627         With autoconf-2.53a, it's part of AC_PROG_CC.
22628
22629 2002-04-28  Paul Eggert  <eggert@twinsun.com>
22630
22631         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
22632         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
22633
22634 2002-04-28  Paul Eggert  <eggert@twinsun.com>
22635
22636         * lib/sig2str.h, lib/sig2str.c: New files.
22637         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
22638
22639 2002-04-28  Paul Eggert  <eggert@twinsun.com>
22640
22641         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
22642         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
22643         of 127, since 64 is the largest conceivable number for ancient
22644         nonstandard hosts.
22645         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
22646
22647 2002-04-28  Jim Meyering  <meyering@lucent.com>
22648
22649         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
22650
22651 2002-04-24  Jim Meyering  <meyering@lucent.com>
22652
22653         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
22654         (jm_PREREQ): Use it.
22655
22656         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
22657         mach/mach.h fcntl.h.
22658         Check for this function: setlocale.
22659
22660 2002-04-24  Jim Meyering  <meyering@lucent.com>
22661
22662         * lib/gettext.h: New file, from Gettext.
22663         * lib/Makefile.am (INCLUDES): Remove -I../intl.
22664         (libfetish_a_SOURCES): Add gettext.h.
22665
22666 2002-04-16  Jim Meyering  <meyering@lucent.com>
22667
22668         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
22669         ut_pid, ut_id, ut_exit.
22670
22671 2002-04-16  Jim Meyering  <meyering@lucent.com>
22672
22673         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
22674         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
22675         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
22676
22677 2002-04-12  Jim Meyering  <meyering@lucent.com>
22678
22679         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
22680         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
22681         existence of the getmntinfo function.  Needed for Darwin 5.3.
22682
22683         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
22684         This is necessary at least on Darwin 5.3.
22685
22686         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
22687         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
22688         strnlen.o in the library, and that makes some versions of ranlib
22689         object.
22690
22691 2002-04-12  Jim Meyering  <meyering@lucent.com>
22692
22693         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
22694
22695 2002-04-09  Jim Meyering  <meyering@lucent.com>
22696
22697         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
22698         to be more precise.  Rather than saying we're checking whether the
22699         function `works', say what we're testing.
22700         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
22701         Reported by Bruno Haible.
22702
22703 2002-03-10  Jim Meyering  <meyering@lucent.com>
22704
22705         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
22706         Suggestion from Santiago Vila.
22707
22708 2002-03-08  Jim Meyering  <meyering@lucent.com>
22709
22710         * lib/rename.c: Mention that this wrapper is needed also on
22711         mips-dec-ultrix4.4 systems.
22712
22713 2002-03-02  Jim Meyering  <meyering@lucent.com>
22714
22715         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
22716         not HAVE_CLOCK_SETTIME.
22717
22718 2002-02-27  Paul Eggert  <eggert@twinsun.com>
22719
22720         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
22721         Check for clock_settime.
22722
22723 2002-02-27  Paul Eggert  <eggert@twinsun.com>
22724
22725         * lib/nanosleep.h: Rename to....
22726         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
22727
22728         * lib/gettime.c: New file.
22729         * lib/settime.c: New file.
22730         * lib/stime.c: Remove.
22731
22732         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
22733         timespec.h.  Remove nanosleep.h.
22734
22735 2002-02-25  Paul Eggert  <eggert@twinsun.com>
22736
22737         * m4/acl.m4: New file.
22738         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
22739         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
22740
22741 2002-02-25  Paul Eggert  <eggert@twinsun.com>
22742
22743         * lib/acl.c, lib/acl.h: New files.
22744         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
22745
22746 2002-02-24  Jim Meyering  <meyering@lucent.com>
22747
22748         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
22749         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
22750         cause trouble.  Reported by Nelson Beebe.
22751
22752 2002-02-23  Paul Eggert  <eggert@twinsun.com>
22753
22754         * lib/path-concat.c (xpath_concat): Reorder code to pacify
22755         compilers that don't know that xalloc_die never returns.
22756
22757 2002-02-20  Jim Meyering  <meyering@lucent.com>
22758
22759         * lib/getdate.c: Regenerate using bison-1.33.
22760
22761 2002-02-17  Jim Meyering  <meyering@lucent.com>
22762
22763         * config/config.guess (main): Don't use `head -1'; it's no longer
22764         portable. Use `sed 1q' instead.
22765
22766 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
22767
22768         * m4/codeset.m4: Upgrade to gettext-0.11.
22769         * m4/gettext.m4: Upgrade to gettext-0.11.
22770         * m4/glibc21.m4: Upgrade to gettext-0.11.
22771         * m4/iconv.m4: Upgrade to gettext-0.11.
22772         * m4/isc-posix.m4: Upgrade to gettext-0.11.
22773         * m4/lcmessage.m4: Upgrade to gettext-0.11.
22774         * m4/lib-ld.m4: New file, from gettext-0.11.
22775         * m4/lib-link.m4: New file, from gettext-0.11.
22776         * m4/lib-prefix.m4: New file, from gettext-0.11.
22777         * m4/progtest.m4: Upgrade to gettext-0.11.
22778
22779 2002-02-15  Paul Eggert  <eggert@twinsun.com>
22780
22781         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
22782         (jm_PREREQ): Use it.
22783
22784 2002-02-15  Paul Eggert  <eggert@twinsun.com>
22785
22786         * lib/posixver.c, lib/posixver.h: New files.
22787         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
22788
22789 2002-02-02  Paul Eggert  <eggert@twinsun.com>
22790             Bruno Haible  <bruno@clisp.org>
22791
22792         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
22793         (fwrite_success_callback): New declaration.
22794         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
22795         print_unicode_char. Call failure callback instead of error.
22796         (fwrite_success_callback): New function.
22797         (exit_failure_callback): New function.
22798         (fallback_failure_callback): New function.
22799         (print_unicode_char): Call unicode_to_mb.
22800
22801 2002-01-26  Jim Meyering  <meyering@lucent.com>
22802
22803         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
22804         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
22805
22806 2002-01-26  Jim Meyering  <meyering@lucent.com>
22807
22808         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
22809
22810 2002-01-22  Paul Eggert  <eggert@twinsun.com>
22811
22812         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
22813
22814 2002-01-22  Jim Meyering  <meyering@lucent.com>
22815
22816         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
22817         Otherwise, some versions of automake would omit the rule that makes
22818         Makefile from Makefile.in.
22819
22820 2002-01-21  Paul Eggert  <eggert@twinsun.com>
22821
22822         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
22823         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
22824         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
22825         (memcoll): Set errno to zero if there is no error.
22826
22827         * lib/quotearg.c (quotearg_buffer_restyled):
22828         Fix bug with quoting buffers containing NUL when backslashing escapes.
22829         This bug was exposed by the other changes in this patch.
22830         (quotearg_n_options): New arg ARGSIZE.
22831         All callers changed.
22832         (quoting_options_from_style): New function.
22833         (quotearg_n_style): Use it.
22834         (quotearg_n_style_mem): New function.
22835
22836         * lib/quotearg.h (quotearg_n_style_mem): New function.
22837
22838 2002-01-19  Jim Meyering  <meyering@lucent.com>
22839
22840         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
22841         Remove useless quotes: DF_PROG="df".
22842         * m4/strnlen.m4: New file.
22843
22844 2002-01-16  Paul Eggert  <eggert@twinsun.com>
22845
22846         * lib/backupfile.c (ISDIGIT): Comment fix.
22847         * lib/getdate.y (ISDIGIT): Likewise.
22848         * lib/posixtm.c (ISDIGIT, year): Likewise.
22849         * lib/strverscmp.c (ISDIGIT): Likewise.
22850         * lib/userspec.c (ISDIGIT): Likewise.
22851
22852 2002-01-16  Jim Meyering  <meyering@lucent.com>
22853
22854         * lib/getdate.y: Add three semicolons, each just before a closing
22855         brace. Bison (as of version 1.31) no longer papers over that mistake.
22856
22857 2002-01-05  Jim Meyering  <meyering@lucent.com>
22858
22859         * lib/version-etc.c (version_etc_copyright): Update copyright year.
22860
22861 2001-12-19  Paul Eggert  <eggert@twinsun.com>
22862
22863         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
22864         not silently exit merely because the output buffer happens to
22865         have nothing pending.
22866
22867 2001-12-18  Paul Eggert  <eggert@twinsun.com>
22868
22869         See the big note in ../ChangeLog.
22870         * lib/human.c (suffixes): Prefer K to k for 1024.
22871         (generate_suffix_backwards): New function.
22872         (human_readable_inexact): Use it.
22873         * lib/xstrtol.c (__xstrtol): If there is no number but there
22874         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
22875         Accept 'K' as well as 'k'.
22876
22877 2001-12-15  Jim Meyering  <meyering@lucent.com>
22878
22879         * lib/regex.h (__restrict_arr): Update from libc.
22880
22881         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
22882         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
22883         (STREQ): Define.
22884
22885 2001-12-14  Jim Meyering  <meyering@lucent.com>
22886
22887         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
22888         Suggestion from Bruno Haible.
22889
22890 2001-12-10  Jim Meyering  <meyering@lucent.com>
22891
22892         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
22893         xrealloc, Instead, include "xalloc.h".
22894         (initbuffer): Don't cast xmalloc return value to char*.
22895         (readline): Reword comment.
22896         Don't cast xrealloc return value to char*
22897         Return NULL, not 0.
22898
22899 2001-12-09  Jim Meyering  <meyering@lucent.com>
22900
22901         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
22902         about `signed and unsigned type in conditional expression'.
22903         * lib/posixtm.c (posix_time_parse): Likewise.
22904
22905         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
22906
22907         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
22908         to avoid a pedantic warning.
22909
22910         * lib/getstr.c: Don't include assert.h.
22911         (getstr): Remove warning-evoking assertions.
22912         Return -1 if offset parameter is out of bounds.
22913         Change the type of a local from int to size_t.
22914
22915         * lib/strftime.c (my_strftime_localtime_r): Include this function
22916         definition in the `#if ! HAVE_TM_GMTOFF' block.
22917
22918         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
22919         Include xalloc.h instead.
22920
22921 2001-12-02  Jim Meyering  <meyering@lucent.com>
22922
22923         * lib/tempname.c: Don't declare getenv, thus reverting the change of
22924         2001-11-18.  It's no longer necessary, now that stdlib.h is always
22925         included.
22926
22927         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
22928         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
22929
22930 2001-11-30  Akim Demaille  <akim@epita.fr>
22931
22932         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
22933         before being defined.
22934
22935 2001-11-27  Paul Eggert  <eggert@twinsun.com>
22936
22937         * lib/quotearg.h (quotearg_n, quotearg_n_style):
22938         First arg is int, not unsigned.
22939         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
22940         (SIZE_MAX, UINT_MAX): New macros.
22941         (quotearg_n_options): Abort if N is negative.
22942         Avoid overflow check on hosts where size_t is 64 bits and int
22943         is 32 bits, as overflow is impossible there.
22944         Fix off-by-one typo that caused unnecessary reallocation.
22945
22946 2001-11-27  Jim Meyering  <meyering@lucent.com>
22947
22948         * lib/tempname.c: Merge with version from libc.
22949         * lib/regex.c: Likewise.
22950
22951         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
22952         systems for which STDC_HEADERS is 0, it was not included, resulting in
22953         a warning about an integer-to-pointer conversion problem with getenv.
22954         Reported by Volker Borchert.
22955
22956 2001-11-26  Jim Meyering  <meyering@lucent.com>
22957
22958         * lib/gtod.h: Remove file.
22959         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
22960         * lib/gettimeofday.c: Don't include gtod.h.
22961         (GTOD_init): Remove function.
22962         (rpl_gettimeofday): Do its job here instead, rather than aborting.
22963         Suggestion from Volker Borchert.
22964
22965 2001-11-23  Jim Meyering  <meyering@lucent.com>
22966
22967         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
22968         it.
22969         * lib/hash.c (struct hash_table): Define it here instead.
22970
22971 2001-11-22  Jim Meyering  <meyering@lucent.com>
22972
22973         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
22974
22975 2001-11-20  Jim Meyering  <meyering@lucent.com>
22976
22977         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
22978         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
22979
22980 2001-11-19  Jim Meyering  <meyering@lucent.com>
22981
22982         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
22983         directory.  Use "conftestXXXXXX" as the template.
22984         Suggestion from Paul Eggert.
22985
22986         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
22987         immediately, so the test doesn't mistakenly hit the max-open-files
22988         limit.
22989
22990 2001-11-18  Paul Eggert  <eggert@twinsun.com>
22991
22992         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
22993         (TEMPORARIES): New macro.
22994         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
22995         removes an artificial limitation (e.g. HP-UX 10.20, where
22996         TMP_MAX is 17576).
22997
22998 2001-11-18  Jim Meyering  <meyering@lucent.com>
22999
23000         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
23001
23002 2001-11-18  Jim Meyering  <meyering@lucent.com>
23003
23004         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
23005         on SunOS 4.
23006
23007         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
23008         files will be created before anything else.
23009
23010 2001-11-17  Paul Eggert  <eggert@twinsun.com>
23011
23012         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
23013         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
23014
23015 2001-11-17  Jim Meyering  <meyering@lucent.com>
23016
23017         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
23018         Prompted by a report from Bob Proulx.
23019
23020         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
23021         Instead, require UTILS_FUNC_MKSTEMP.
23022
23023 2001-11-17  Jim Meyering  <meyering@lucent.com>
23024
23025         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
23026         Now, that's done as part of AC_FUNC_STRTOD.
23027
23028 2001-11-17  Jim Meyering  <meyering@lucent.com>
23029
23030         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
23031         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
23032         rather than group writable.  Patch by Juan F. Codagnone.
23033
23034         * lib/readtokens.c: Remove explicit declarations of xmalloc and
23035         xrealloc, Instead, include "xalloc.h".
23036
23037         * lib/mountlist.c: Include unlocked-io.h after all system headers.
23038         Remove explicit declarations of xmalloc, xrealloc,
23039         and xstrdup.  Instead, include "xalloc.h".
23040
23041         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
23042         unlocked-io.h.
23043         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
23044         Likewise.
23045         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
23046
23047         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
23048         Reported by Padraig Brady.
23049
23050         * lib/mkstemp.c: #undef mkstemp.
23051         Include config.h.
23052         (rpl_mkstemp): Rename from mkstemp.
23053         Protoize.
23054
23055 2001-11-16  Jim Meyering  <meyering@lucent.com>
23056
23057         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
23058         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
23059         determine the amount of total physical memory, use pstat_getstatic.
23060         HPUX-11 doesn't define _SC_PHYS_PAGES.
23061         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
23062         If sysconf couldn't be used to determine the amount of available
23063         physical memory, use both pstat_getstatic and pstat_getdynamic.
23064         Based on a patch from Bob Proulx.
23065
23066 2001-11-10  Jim Meyering  <meyering@lucent.com>
23067
23068         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
23069         (jm_PREREQ): Use it.
23070
23071 2001-11-09  Jim Meyering  <meyering@lucent.com>
23072
23073         * m4/jm-macros.m4: Require autoconf-2.52f.
23074         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
23075         Use these AC_-prefixed names, not the AM_-prefixed ones.
23076
23077         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
23078
23079 2001-11-05  Jim Meyering  <meyering@lucent.com>
23080
23081         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
23082
23083 2001-11-04  Jim Meyering  <meyering@lucent.com>
23084
23085         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
23086         $DEFS.
23087
23088 2001-11-03  Jim Meyering  <meyering@lucent.com>
23089
23090         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
23091         of AC_DEFUN.
23092
23093         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
23094         know the name of the variable in the macro definition.
23095
23096 2001-11-03  Jim Meyering  <meyering@lucent.com>
23097
23098         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
23099         in argmatch_to_argument call.
23100
23101         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
23102         argument.
23103
23104         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
23105         e.g., a fault due to an attempt to free a NULL pointer.
23106
23107 2001-11-01  Jim Meyering  <meyering@lucent.com>
23108
23109         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
23110         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
23111
23112 2001-11-01  Jim Meyering  <meyering@lucent.com>
23113
23114         * lib/dirfd.c, lib/dirfd.h: New files.
23115         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
23116
23117         * lib/hash.c (hash_print) [TESTING]: Clean up.
23118
23119 2001-10-22  Paul Eggert  <eggert@twinsun.com>
23120
23121         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
23122         to avoid a warning if -Wall.
23123
23124 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
23125
23126         * README: New file
23127         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
23128         (per RMS's instructions, this is now the canonical source)
23129         * lgpl/, gpl/: New directories.
23130
23131 2001-10-21  Paul Eggert  <eggert@twinsun.com>
23132
23133         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
23134
23135 2001-10-21  Jim Meyering  <meyering@lucent.com>
23136
23137         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
23138         this code would end up calling gettext even in packages built
23139         with --disable-nls.
23140         * lib/getopt.c (_): Likewise.
23141         * lib/regex.c (_): Likewise.
23142
23143 2001-10-20  Paul Eggert  <eggert@twinsun.com>
23144
23145         * m4/error.m4 (jm_PREREQ_ERROR):
23146         Do not invoke AC_CHECK_FUNCS with strerror_r, as
23147         AC_FUNC_STRERROR_R does that.
23148         Check for strerror declaration.
23149
23150         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
23151         are supposed to have them these days.
23152         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
23153         Merge changes from latest Autoconf CVS.
23154         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
23155         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
23156         POSIX decided to standardize on the int flavor of strerror_r.
23157
23158 2001-10-20  Paul Eggert  <eggert@twinsun.com>
23159
23160         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
23161         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
23162         Use strerror_r that is only a macro, even if it is not a function.
23163         (strerror): Check for HAVE_DECL_STRERROR before declaring.
23164         (private_strerror): Use prototypes, not old-style function definition.
23165         (print_errno_message): New function.
23166         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
23167         char*-flavored one.
23168         (error_tail, error, error_at_line): Use it.
23169
23170 2001-10-11  Jim Meyering  <meyering@lucent.com>
23171
23172         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
23173         and quote_n (1, ... to avoid clobbering a buffer.
23174
23175 2001-10-05  Jim Meyering  <meyering@lucent.com>
23176
23177         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
23178         hash-pjw.h.
23179         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
23180         * lib/hash-pjw.h: New file.
23181
23182 2001-09-30  Jim Meyering  <meyering@lucent.com>
23183
23184         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
23185         `struct fsstat' has the `f_fstypename' member.
23186         Use that to define FS_TYPE, which is now used to make
23187         the getfsstat link test tighter.
23188
23189 2001-09-30  Jim Meyering  <meyering@lucent.com>
23190
23191         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
23192         Include <sys/ucred.h>, for Apple Darwin.
23193         Include sys/mount.h and sys/fs_types.h only if available.
23194         (FS_TYPE): Define.
23195         (read_filesystem_list): Use FS_TYPE.
23196
23197 2001-09-29  Paul Eggert  <eggert@twinsun.com>
23198
23199         * lib/exclude.c (excluded_filename): 0 -> false, since it's
23200         a boolean context.
23201
23202 2001-09-29  Jim Meyering  <meyering@lucent.com>
23203
23204         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
23205         [one-argument getmntent function]): Include stdio.h before mntent.h.
23206         SunOS 4.1.x needs it for the declaration of `FILE'.
23207         Patch by Volker Borchert.
23208
23209         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
23210         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
23211         sys/fs_types.h, and make the link-test for getfsstat guard #include
23212         directives with appropriate #if HAVE_*_H tests so that we can
23213         detect getfsstat on Apple Darwin1.3.7 systems.
23214         Reported by Nelson Beebe.
23215         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
23216
23217 2001-09-28  Paul Eggert  <eggert@twinsun.com>
23218
23219         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
23220         #defines strtoimax.  Also treat the other strto* functions
23221         like strtoimax.
23222
23223         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
23224         Check for strtoul and strtoumax,
23225         as those declarations are made even in the signed case.
23226         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
23227         Likewise, for strtol and strtoimax.
23228
23229 2001-09-28  Paul Eggert  <eggert@twinsun.com>
23230
23231         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
23232         #defines strtoimax.  Also treat the other strto* functions
23233         like strtoimax.
23234
23235         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
23236         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
23237         (strtoimax, strtoumax): Do not declare if already defined as a macro.
23238
23239 2001-09-26  Jim Meyering  <meyering@lucent.com>
23240
23241         Most macros in unlocked-io.h had the wrong number of arguments.
23242         * lib/gen-uio: New script.
23243         (USE_UNLOCKED_IO): Define to 1 if not already defined.
23244         * lib/unlocked-io.hin: Remove file.
23245         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
23246         rather than trying to embed it here.
23247         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
23248         Reported by Padraig Brady.
23249
23250 2001-09-25  Volker Borchert  <bt@teknon.de>
23251
23252         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
23253         `result'.
23254
23255 2001-09-24  Jim Meyering  <meyering@lucent.com>
23256
23257         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
23258
23259 2001-09-23  Jim Meyering  <meyering@lucent.com>
23260
23261         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
23262         instead of the mere test for existence of mntent.h.  The latter
23263         would get a false-positive on AIX 3.4 systems.
23264         In the outer getmntent if-block, don't die if neither of the getmntent
23265         tests succeeds.  Instead, just fall through and continue with the
23266         remaining tests.
23267
23268 2001-09-23  Jim Meyering  <meyering@lucent.com>
23269
23270         * lib/mountlist.c: Remove useless parentheses in #if directives.
23271         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
23272         the deprecated MOUNTED symbol is no longer defined in mntent.h.
23273
23274 2001-09-22  Jim Meyering  <meyering@lucent.com>
23275
23276         * m4/gettext.m4: New file.  From gettext.
23277         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
23278         * m4/progtest.m4: Likewise
23279         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
23280         * m4/glibc21.m4: Likewise.
23281
23282         * m4/libintl.m4: Remove.  No longer used.
23283
23284 2001-09-22  Jim Meyering  <meyering@lucent.com>
23285
23286         * lib/localcharset.c: Update from latest gettext.
23287         * lib/config.charset: Likewise.
23288
23289 2001-09-20  Jim Meyering  <meyering@lucent.com>
23290
23291         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
23292         strtoimax.
23293         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
23294         strtoumax.
23295
23296 2001-09-20  Jim Meyering  <meyering@lucent.com>
23297
23298         * lib/xstrtol.c (strtoimax): Guard declaration with
23299         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
23300         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
23301         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
23302         (strtoumax): Likewise, for completeness (it wasn't necessary).
23303
23304 2001-09-17  Paul Eggert  <eggert@twinsun.com>
23305
23306         * lib/strtoimax.c (HAVE_LONG_LONG):
23307         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
23308         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
23309         to work around bug in IBM C compiler.
23310
23311 2001-09-17  Jim Meyering  <meyering@lucent.com>
23312
23313         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
23314         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
23315         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
23316         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
23317         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
23318         whenever the right hand side need not be expanded by the shell.
23319
23320 2001-09-16  Paul Eggert  <eggert@twinsun.com>
23321
23322         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
23323         library.  It's not correct, as some older glibcs are buggy.
23324         fnmatch wasn't fixed until glibc 2.2.
23325
23326         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
23327         special shell magic here.
23328
23329 2001-09-16  Jim Meyering  <meyering@lucent.com>
23330
23331         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
23332         * m4/jm-macros.m4: Require it.
23333
23334 2001-09-16  Jim Meyering  <meyering@lucent.com>
23335
23336         * lib/mkdir.c: New file.
23337
23338 2001-09-15  Jim Meyering  <meyering@lucent.com>
23339
23340         * m4/jm-macros.m4: Check for help2man.
23341
23342 2001-09-11  Jim Meyering  <meyering@lucent.com>
23343
23344         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
23345         The body, by Paul Eggert, was moved here from configure.in.
23346         * m4/jm-macros.m4: Require UTILS_HOST_OS.
23347
23348 2001-09-04  Paul Eggert  <eggert@twinsun.com>
23349
23350         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
23351         (jm_PREREQ): Use it.
23352
23353 2001-09-04  Paul Eggert  <eggert@twinsun.com>
23354
23355         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
23356         Use ssize_t, not int, to store result of readlink.
23357         Check for ssize_t overflow as well as size_t overflow,
23358         as POSIX says the result of readlink is implementation-defined
23359         when ssize_t overflows.
23360         Remove unnecessary cast to char*.
23361         Use free+malloc instead of realloc, as the storage doesn't need
23362         to be preserved and it's clearer and can be more efficient that way.
23363         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
23364         * lib/xreadlink.h (xreadlink): Update prototype.
23365
23366 2001-09-04  Paul Eggert  <eggert@twinsun.com>
23367
23368         * lib/xgetcwd.c: Revert some of the previous change; intead,
23369         fix the HAVE_GETCWD_NULL code to behave more like the
23370         !HAVE_GETCWD_NULL code used to.
23371
23372         Include "xalloc.h".
23373         (xgetcwd): Do not return NULL when memory is exhausted; instead,
23374         invoke xalloc_die.
23375
23376 2001-09-03  Paul Eggert  <eggert@twinsun.com>
23377
23378         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
23379         sys/param.h, as pathmax.h includes them.
23380
23381 2001-09-03  Paul Eggert  <eggert@twinsun.com>
23382
23383         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
23384         (jm_PREREQ_XGETCWD): New macro.
23385
23386         * m4/getcwd.m4: New file.
23387
23388 2001-09-03  Paul Eggert  <eggert@twinsun.com>
23389
23390         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
23391         like the HAVE_GETCWD_NULL code.
23392         Include pathmax.h if not HAVE_GETCWD.
23393         Do not include xalloc.h.
23394         (INITIAL_BUFFER_SIZE): New symbol.
23395         Do not use xmalloc / xrealloc, since the caller is responsible for
23396         handling errors.  Preserve errno around `free' during failure.
23397         Do not overrun buffer when using getwd.
23398
23399 2001-09-03  Paul Eggert  <eggert@twinsun.com>
23400
23401         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
23402         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
23403         getcwd (NULL, 0).
23404
23405 2001-09-03  Paul Eggert  <eggert@twinsun.com>
23406
23407         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
23408         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
23409         spotted by Jim Meyering.
23410
23411 2001-09-03  Jim Meyering  <meyering@lucent.com>
23412
23413         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
23414         failure.
23415
23416 2001-09-02  Jim Meyering  <meyering@lucent.com>
23417
23418         * lib/error.c: Update from GNU libc.
23419
23420 2001-09-01  Jim Meyering  <meyering@lucent.com>
23421
23422         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
23423         Used by df.
23424
23425 2001-09-01  Jim Meyering  <meyering@lucent.com>
23426
23427         * lib/xreadlink.c: New file.
23428         * lib/xreadlink.h: New file.
23429         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
23430         xreadlink.h.
23431
23432         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
23433         doesn't conflict with sparc Solaris 7's definition in
23434         /usr/include/sys/int_types.h.
23435
23436         * lib/exclude.c: Use `""', not `<>' to #include non-system header
23437         files.
23438         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
23439         and strncasecmp as r-values.  Unixware didn't have declarations.
23440
23441 2001-08-31  Paul Eggert  <eggert@twinsun.com>
23442
23443         * lib/xstrtol.h: Add copyright notice.
23444         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
23445         LONGINT_INVALID_SUFFIX_CHAR.
23446
23447 2001-08-31  Paul Eggert  <eggert@twinsun.com>
23448
23449         * lib/xstrtol.c (strtoimax): New decl.
23450
23451 2001-08-31  Paul Eggert  <eggert@twinsun.com>
23452
23453         * lib/xgetcwd.c: Don't include pathmax.h.
23454         Include stdlib.h and unistd.h if available.
23455         Include xalloc.h.
23456         (xmalloc, xstrdup, free): Remove decls.
23457         (xgetcwd): Don't assume sizes fit in unsigned.
23458         Check for overflow when computing sizes.
23459         Simplify reallocation code.
23460
23461 2001-08-31  Paul Eggert  <eggert@twinsun.com>
23462
23463         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
23464         a directory's st_size can have an arbitrary value, so the old
23465         usage could waste an arbitrary amount of memory.  All uses
23466         changed.
23467         * lib/savedir.h: Update prototype.
23468
23469 2001-08-31  Paul Eggert  <eggert@twinsun.com>
23470
23471         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
23472
23473         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
23474         old strtoimax.c.
23475
23476         Also, make the following further changes to make this file's
23477         configuration more similar to that of strtol.c:
23478         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
23479         (strtoumax, uintmax_t, strtoull, strtol): Remove.
23480         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
23481         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
23482         changed to signed values.
23483
23484         And make the following changes as well:
23485         Fix copyright notice, as 1999 was missing.
23486         (verify): New macro.
23487         (strtoimax): Check sizes at compile-time, not run-time.
23488         Prefer strtol to strtoll if both work.
23489         (main): Remove; it was not that useful and was a pain to maintain.
23490
23491         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
23492
23493 2001-08-31  Jim Meyering  <meyering@lucent.com>
23494
23495         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
23496         Use an initial, malloc'd, buffer of length 128 rather than
23497         a statically allocated one of length 1024.
23498
23499 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23500
23501         Simplify code, partly by assuming autoconf 2.52 semantics.
23502
23503         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
23504
23505         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
23506         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
23507         All uses removed.
23508         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
23509         Move AC_REQUIRE to next-to-top level, to avoid confusion.
23510         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
23511         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
23512         jm_AC_HEADER_INTTYPES_H.
23513         * m4/jm-macros.m4 (jm_MACROS): Likewise.
23514
23515         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
23516
23517         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
23518         Quote first arg of AC_DEFUN.
23519         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
23520         since they are needed to parse the include file even if we need
23521         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
23522         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
23523         but with opposite signedness.
23524
23525 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23526
23527         Merge 'exclude' changes from tar 1.13.22.
23528         This fixes one or two unlikely storage allocation overflow bugs,
23529         but doesn't change user-visible behavior otherwise.
23530
23531 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23532
23533         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
23534         (jm_PREREQ_EXCLUDE): New macro.
23535
23536 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23537
23538         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
23539         tm to be declared.
23540
23541 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23542
23543         * lib/hash.c: Remove '2001' from copyright notice.
23544
23545 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23546
23547         * lib/full-write.h: New file.
23548         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
23549         * lib/full-write.c: Correct credits, as cccp.c no longer
23550         exists and anyway it was so heavily changed from the old cccp
23551         code as to be unrecognizable.  Include full-write.h.
23552         (full_write) Return size_t, with short writes meaning failure.
23553         All callers changed.  This fixes a bug with large buffers
23554         on 64-bit hosts.
23555         * lib/utime.c: Include full-write.h.
23556
23557 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23558
23559         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
23560         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
23561         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
23562         Include if available.
23563         (<xalloc.h>): Include
23564         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
23565         (verify): New macro.  Use it to verify that EXCLUDE macros do not
23566         collide with FNM macros.
23567         (struct patopts): New struct.
23568         (struct exclude): Use it, as exclude patterns now come with options.
23569         (new_exclude): Support above changes.
23570         (new_exclude, add_exclude_file):
23571         Initial size must now be a power of two to simplify overflow checking.
23572         (free_exclude, fnmatch_no_wildcards): New function.
23573         (excluded_filename): No longer requires options arg, as the options
23574         are determined by add_exclude.  Now returns bool, not int.
23575         (excluded_filename, add_exclude):
23576         Add support for the fancy new exclusion options.
23577         (add_exclude, add_exclude_file): Now takes int options arg.
23578         Check for arithmetic overflow when computing sizes.
23579         (add_exclude_file): xrealloc might modify errno, so don't
23580         realloc until after errno might be used.
23581
23582         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
23583         New macros.
23584         (free_exclude): New decl.
23585         (add_exclude, add_exclude_file): Now takes int options arg.
23586         (excluded_filename): No longer requires options arg, as the options
23587         are determined by add_exclude.  Now returns bool, not int.
23588
23589 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23590
23591         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
23592
23593 2001-08-27  Jim Meyering  <meyering@lucent.com>
23594
23595         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
23596
23597         * lib/version-etc.c (N_): Remove definition.
23598         Revert most of last change.
23599         Instead, simply don't mark the `Copyright...' string for translation.
23600         Based on advice from Paul Eggert.
23601
23602         * lib/strtoxmax.c: Tweak comment.
23603
23604 2001-08-26  Jim Meyering  <meyering@lucent.com>
23605
23606         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
23607
23608         * m4/xstrtoimax.m4: New file.
23609         * m4/xstrtoumax.m4: Add comments explaining why we
23610         AC_REPLACE_FUNCS(strtol).
23611
23612 2001-08-26  Jim Meyering  <meyering@lucent.com>
23613
23614         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
23615         of copyright with `%s' so translators don't get an untranslated
23616         message in 2002.
23617         (COPYRIGHT_YEAR): Define.
23618         (version_etc): Use fprintf rather than fputs.
23619         Suggestion from Ulrich Drepper.
23620
23621         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
23622
23623         * lib/strtoll.c: New file, from GNU libc.
23624         * lib/xstrtoimax.c: New file.
23625
23626         * lib/xstrtol.h: Add xstrtoimax.
23627         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
23628         * lib/strtoimax.c: New file.  Likewise, but first define
23629         STRTOUXMAX_SIGNED.
23630
23631         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
23632         ...
23633         * lib/strtoxmax.c: ... then renamed to this.
23634
23635 2001-08-18  Paul Eggert  <eggert@twinsun.com>
23636
23637         * m4/inttypes.m4: Add AC_PREREQ(2.13).
23638         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
23639         (jm_AC_TYPE_INTMAX_T): New macro.
23640         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
23641
23642         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
23643
23644         * m4/longlong.m4: Renamed from ulonglong.m4.
23645         * m4/inttypes.m4: Renamed from inttypes_h.m4.
23646         * m4/uintmax_t.m4: Removed.
23647
23648 2001-08-13  Paul Eggert  <eggert@twinsun.com>
23649
23650         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
23651         Port to Solaris 8, where 'sed' requires a space after the 'r'
23652         command, and where sh dislikes "$/".  Clean up the spacing a bit.
23653         Redirect output to $tmp just once.
23654
23655 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
23656
23657         * lib/addext.c (<errno.h>): Include.
23658         (errno): Declare if not defined.
23659         (addext): Work correctly when pathconf returns -1 and leaves
23660         errno alone because there is no limit.  Also, work even if
23661         pathconf returns a value greater than SIZE_MAX.
23662
23663 2001-08-12  Jim Meyering  <meyering@lucent.com>
23664
23665         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
23666         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
23667         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
23668         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
23669         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
23670         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
23671         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
23672         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
23673         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
23674         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
23675         utime.m4, utimes.m4, xstrtoumax.m4:
23676         Quote the first argument in each use of AC_DEFUN.
23677
23678 2001-08-12  Jim Meyering  <meyering@lucent.com>
23679
23680         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
23681         Simply `return getcwd (NULL, 0);'.
23682         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
23683         Use 1300 as initial value for length, not PATH_MAX.
23684
23685         * lib/pathmax.h: Clean up cpp syntax.
23686
23687 2001-08-12  Jim Meyering  <meyering@lucent.com>
23688
23689         * lib/gettimeofday.c: New file.
23690         * lib/gtod.h: New file.
23691         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
23692
23693 2001-08-05  Jim Meyering  <meyering@lucent.com>
23694
23695         * m4/jm-macros.m4: Require autoconf-2.52.
23696
23697 2001-08-04  Jim Meyering  <meyering@lucent.com>
23698
23699         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
23700         stmt, to get in sync with glibc.
23701
23702 2001-08-03  Paul Eggert  <eggert@twinsun.com>
23703
23704         The following changes are from gettext 0.10.39 as maintained by
23705         Bruno Haible.
23706
23707         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
23708         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
23709         with inverted sense.  All uses changed.
23710
23711         * lib/mbswidth.c: Don't include <limits.h>.
23712         Include <stdlib.h> and <string.h> unconditionally.
23713         (iswcntrl, mbsinit, ISCNTRL): New macros.
23714         (mbsnwidth): Use K&R style function declarations.
23715         Don't bother checking for MB_LEN_MAX == 1, since the compiler
23716         can optimize it when MB_CUR_MAX == 1.
23717         The width of control characters is zero, not 1.
23718
23719 2001-08-03  Paul Eggert  <eggert@twinsun.com>
23720
23721         The following changes are from gettext 0.10.39 as maintained by
23722         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
23723
23724         * m4/codeset.m4: Upgrade to serial AM1.
23725         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
23726         all uses changed.  Quote first arg of AC_DEFUN.
23727         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
23728
23729         * m4/iconv.m4: Upgrade to serial AM2.
23730         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
23731         Add --with-libconv-prefix.
23732         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
23733         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
23734         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
23735         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
23736         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
23737
23738         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
23739         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
23740         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
23741         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
23742         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
23743         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
23744         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
23745         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
23746         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
23747
23748         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
23749         string.h any more.
23750
23751         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
23752         not the default value.
23753
23754         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
23755         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
23756         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
23757         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
23758         Also check for iswcntrl, used for wcwidth fallback.
23759         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
23760         to Autoconf 2.13.
23761
23762 2001-08-03  Jim Meyering  <meyering@lucent.com>
23763
23764         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
23765         as it was in the original.  Reported by Paul Eggert.
23766
23767 2001-07-16  Jim Meyering  <meyering@lucent.com>
23768
23769         * m4/gettimeofday.m4: New file.
23770         Prompted by a report from Bernhard Baehr.
23771
23772 2001-07-15  Jim Meyering  <meyering@lucent.com>
23773
23774         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
23775         stuff. Now it's in ../Makefile.cfg.
23776
23777 2001-07-15  Jim Meyering  <meyering@lucent.com>
23778
23779         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
23780         (BUILT_SOURCES): Add unlocked-io.h.
23781         (io_functions): Define.
23782         (unlocked-io.h): New rule.
23783         (DISTCLEANFILES): Add unlocked-io.h.
23784         (all-local): Depend on unlocked-io.h, to ensure it is created.
23785
23786         * lib/unlocked-io.hin: New file
23787
23788         * lib/regex.c: Update from glibc.
23789
23790 2001-07-05  Jim Meyering  <meyering@lucent.com>
23791
23792         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
23793         recommendation.
23794         (libfetish_a_SOURCES): Put all .h files here instead.
23795         Remove a thus-exposed (better checks in automake) duplicate and
23796         two unnecessary .h files.
23797
23798 2001-07-04  Jim Meyering  <meyering@lucent.com>
23799
23800         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
23801         that generates jm-glibc-io.m4 so that it doesn't trigger any make
23802         distcheck failure.
23803
23804 2001-07-02  Jim Meyering  <meyering@lucent.com>
23805
23806         The following changes were prompted by suggestions from Bruno Haible.
23807
23808         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
23809         is now generated.
23810         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
23811         definition of EXTRA_DIST.
23812         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
23813         ensure that the generated file is created/updated whenever the list
23814         of $(unlocked_functions) is changed.
23815         (jm-glibc-io.m4): New rule.
23816         (unlocked-io.h): New rule -- currently unused.
23817
23818 2001-06-24  Jim Meyering  <meyering@lucent.com>
23819
23820         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
23821         unmatched right bracket, rather than kludging it with an extra,
23822         falsely-matching quote in a comment.  Patch by Akim Demaille.
23823
23824 2001-06-11  Jim Meyering  <meyering@lucent.com>
23825
23826         * lib/regex.c: Update from GNU libc.
23827
23828 2001-05-27  Jim Meyering  <meyering@lucent.com>
23829
23830         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
23831         Check for ut_type in struct utmp.
23832
23833 2001-05-27  Jim Meyering  <meyering@lucent.com>
23834
23835         * lib/readutmp.h (UT_TYPE): Define.
23836
23837 2001-05-24  Jim Meyering  <meyering@lucent.com>
23838
23839         * lib/argmatch.c: Include "quote.h".
23840         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
23841         quote function.  Reported by Göran Uddeborg.
23842
23843 2001-05-22  Jim Meyering  <meyering@lucent.com>
23844
23845         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
23846         now that we use the package-supplied version unconditionally.
23847         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
23848
23849 2001-05-21  Jim Meyering  <meyering@lucent.com>
23850
23851         * m4/regex.m4: Change a couple backticks to single quotes to avoid
23852         shell syntax errors.
23853
23854 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
23855
23856         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
23857
23858 2001-05-20  Paul Eggert  <eggert@twinsun.com>
23859
23860         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
23861         Don't bother to check library strftime, since
23862         we'll be using our own my_strftime function anyway.
23863         Define my_strftime instead of strftime.
23864
23865 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
23866
23867         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
23868         which is not yet declared.
23869
23870 2001-05-15  Jim Meyering  <meyering@lucent.com>
23871
23872         * m4/regex.m4: Use proper quoting so brackets appear in the test
23873         program.
23874         Reported by, and with help from, Bruno Haible.
23875
23876 2001-05-13  Jim Meyering  <meyering@lucent.com>
23877
23878         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
23879         undefined.
23880
23881 2001-05-11  Paul Eggert  <eggert@twinsun.com>
23882
23883         dirname code cleanup.  base_name now behaves more compatibly
23884         with POSIX basename when given file names that have trailing
23885         slashes, and similarly for dir_name.  Add new primitives
23886         base_len and dir_len.  Put the directory-name-related decls
23887         into dirname.h.
23888
23889         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
23890         * lib/backupfile.c (base_name): Likewise.
23891         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
23892         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
23893         * lib/makepath.c (strip_trailing_slashes): Likewise.
23894         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
23895         ISSLASH): Likewise.
23896         * lib/rename.c (strip_trailing_slashes): Likewise.
23897         * lib/same.c (base_name): Likewise.
23898         * lib/stripslash.c (ISSLASH): Likewise.
23899
23900         * lib/addext.c: Include <dirname.h> after size_t is defined.
23901         * lib/backupfile.c: Likewise.
23902
23903         * lib/addext.c (addext): Use base_len to trim redundant
23904         trailing slashes instead of doing it ourselves.
23905         But do not trim the last slash if it is not redundant.
23906
23907         * lib/backupfile.c (find_backup_file_name,
23908         max_backup_version): Use base_len instead of rolling it ourselves.
23909         Handle the case of "" and (on DOS) "C:" correctly.
23910
23911         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
23912         needed. Include <string.h>, <dirname.h>.
23913         (base_name): Allow file names ending in slashes, other than names
23914         that are all slashes.  In this case, return the basename followed
23915         by the slashes.  This is more general, and can be used in places
23916         where the original base_name purposely had an assertion failure.
23917         (base_len): New function.
23918
23919         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
23920         Do not include <assert.h>; no longer needed.
23921         Include xalloc.h.
23922         (memrchr): Remove decl.
23923         (dir_name_r): Remove.
23924         (dir_len): Renamed from dirlen.  All callers changed.
23925         Rewrite in terms of base_name, for simplicity and consistency.
23926         (dir_name): Never return NULL.  All callers changed.
23927         Do not include <stdlib.h> in test program; no longer needed.
23928         return 0; is fine for test program.
23929
23930         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
23931         New macros.
23932         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
23933
23934         * lib/path-concat.c (path_concat): Use base_len to compute
23935         base length, not strlen; this means we cannot rely on memcpy
23936         to null-terminate.
23937
23938         * lib/same.c (STREQ): Remove.
23939         (same_name): Handle the case where the basename ends in trailing '/'.
23940
23941         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
23942         a slash was stripped.  Do not strip the last slash after a
23943         file system prefix.
23944
23945 2001-05-11  Paul Eggert  <eggert@twinsun.com>
23946
23947         * lib/Makefile.am (libfetish_a_SOURCES):
23948         Add strftime.c, since we now compile it on all hosts.
23949
23950         * lib/strftime.c (my_strftime):
23951         Define to nstrftime if emacs, but only if my_strftime is not defined.
23952         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
23953         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
23954         Add one more extra argument: a nanoseconds value.
23955         All uses changed.
23956         (ns): New macro.
23957         (my_strftime function): Add %N format.
23958         (emacs_strftimeu): Renamed from emacs_strftime,
23959         with extra ut argument.
23960
23961 2001-05-09  Paul Eggert  <eggert@twinsun.com>
23962
23963         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
23964
23965 2001-04-21  Jim Meyering  <meyering@lucent.com>
23966
23967         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
23968         doesn't interfere.
23969
23970 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
23971
23972         * m4/ftruncate.m4: Check for chsize.
23973         Link with ftruncate.o unconditionally if ftruncate is missing.
23974         This was required when cross-compiling to i586-mingw32msvc.
23975
23976 2001-04-08  Jim Meyering  <meyering@lucent.com>
23977
23978         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
23979         recomputed; that's necessary when the offset spans a DST transition.
23980         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
23981
23982 2001-04-02  Jim Meyering  <meyering@lucent.com>
23983
23984         * lib/regex.h, regex.c: Update from GNU libc.
23985
23986 2001-03-24  Jim Meyering  <meyering@lucent.com>
23987
23988         * m4/jm-macros.m4: Require autoconf-2.49d.
23989
23990 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
23991
23992         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
23993
23994 2001-03-19  Paul Eggert  <eggert@twinsun.com>
23995
23996         * lib/version-etc.c (version_etc_copyright): Update to 2001.
23997
23998 2001-03-17  Jim Meyering  <meyering@lucent.com>
23999
24000         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
24001         now that the version in autoconf is equivalent.
24002         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
24003
24004         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
24005         Suggestion from Akim Demaille.
24006
24007         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
24008         (jm_PREREQ_TEMPNAME): New function.
24009
24010 2001-03-16  Paul Eggert  <eggert@twinsun.com>
24011
24012         * lib/tempname.c (uint64_t): Define to uintmax_t if
24013         not defined, and if UINT64_MAX is not defined.
24014         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
24015         Reported by John David Anglin.
24016
24017 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
24018
24019         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
24020         resolve alias if codeset is empty.
24021         * lib/config.charset (BeOS): Use wildcard syntax.
24022
24023 2001-03-13  Jim Meyering  <meyering@lucent.com>
24024
24025         * lib/path-concat.c (path_concat)
24026         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
24027         concatenating e.g., `C:' and `foo'.
24028         From Bruno Haible.
24029
24030 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
24031
24032         * lib/localcharset.c (locale_charset): Don't use
24033         setlocale(LC_CTYPE,NULL). Don't return NULL.
24034         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
24035
24036 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
24037
24038         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
24039         support for DOS/DJGPP.
24040
24041 2001-03-01  Paul Eggert  <eggert@twinsun.com>
24042
24043         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
24044         lacks mkstemp.  Compile our own tempname.c if we compile our own
24045         mkstemp.c, as mkstemp relies on tempname.
24046
24047 2001-03-01  Jim Meyering  <meyering@lucent.com>
24048
24049         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
24050         AH_VERBATIM really does output its argument verbatim.
24051
24052 2001-02-28  Paul Eggert  <eggert@twinsun.com>
24053
24054         * lib/Makefile.am (libfetish_a_SOURCES):
24055         Add dup-safer.c, fopen-safer.c.
24056         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
24057
24058         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
24059         * lib/unistd-safer.h: New files.
24060
24061 2001-02-25  Paul Eggert  <eggert@twinsun.com>
24062
24063         The mkstemp replacement is taken from glibc 2.2.2, with some
24064         portability fixes for use outside glibc, as follows:
24065
24066         * lib/tempname.c (struct_stat64): New macro.
24067         (direxists, __gen_tempname): Use it.
24068         This avoids a portability problem with Solaris 8.
24069
24070         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
24071         (<stddef.h>, <stdint.h>, <string.h>):
24072         Include only if STDC_HEADERS || _LIBC.
24073         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
24074         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
24075         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
24076         (__set_errno): Define this macro if <errno.h> doesn't.
24077         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
24078         Define these macros if <stdio.h> doesn't.
24079         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
24080         Define these macros if <sys/stat.h>
24081         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
24082         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
24083         __xstat64): Define if not _LIBC.
24084         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
24085         (__gen_tempname): Invoke gettimeofday only if
24086         HAVE_GETTIMEOFDAY || _LIBC;
24087         otherwise, fall back on plain "time".
24088         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
24089
24090         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
24091
24092         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
24093
24094 2001-02-18  Paul Eggert  <eggert@twinsun.com>
24095
24096         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
24097
24098 2001-02-17  Paul Eggert  <eggert@twinsun.com>
24099
24100         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
24101         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
24102         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
24103         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
24104
24105 2001-02-17  Paul Eggert  <eggert@twinsun.com>
24106
24107         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
24108         Remove workaround macros for hosts that have mbrtowc but not
24109         mbstate_t, as we now insist on proper declarations for both
24110         before using mbrtowc.
24111
24112 2001-02-17  Jim Meyering  <meyering@lucent.com>
24113
24114         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
24115         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
24116         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
24117         UnixWare 7.1.1.
24118
24119         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
24120         rather than AC_CACHE_VAL.
24121
24122 2001-02-17  Jim Meyering  <meyering@lucent.com>
24123
24124         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
24125         around included file name.
24126
24127         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
24128
24129         * lib/strftime.c: Update from GNU libc (the only changes were to
24130         comments).
24131
24132 2001-02-17  Jim Meyering  <meyering@lucent.com>
24133
24134         * lib/regex.c: Update from libc.
24135
24136 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
24137
24138         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
24139         clash.
24140
24141 2001-02-16  Paul Eggert  <eggert@twinsun.com>
24142
24143         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
24144         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
24145         Reported by Mark Hounschell via Paul Eggert.
24146
24147 2001-02-07  Jim Meyering  <meyering@lucent.com>
24148
24149         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
24150
24151 2001-02-05  Jim Meyering  <meyering@lucent.com>
24152
24153         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
24154         it includes the patch required for `large file' support with at least
24155         HP-UX's 10.20 /bin/cc.
24156
24157 2001-02-03  Jim Meyering  <meyering@lucent.com>
24158
24159         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
24160         AS_IF, now that it works once again (mysteriously).
24161         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
24162
24163 2001-01-30  Jim Meyering  <meyering@lucent.com>
24164
24165         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
24166         * m4/chown.m4: Rename conftestchown to conftest.chown.
24167         * m4/rename.m4: s/conftestdir/conftest.d1/ and
24168         s/conftestdir2/conftest.d2/.
24169         * m4/utimes.m4: s/conftestdata/conftest.data/
24170         Inspired by Pavel Roskin's change in autoconf.
24171
24172 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
24173
24174         * lib/config.charset: Update for FreeBSD 4.2.
24175
24176 2001-01-27  Jim Meyering  <meyering@lucent.com>
24177
24178         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
24179         a use of AS_IF.
24180         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
24181
24182 2001-01-26  Jim Meyering  <meyering@lucent.com>
24183
24184         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
24185         quotearg.c includes it.
24186
24187 2001-01-26  Jim Meyering  <meyering@lucent.com>
24188
24189         * lib/quotearg.c: Include stddef.h.
24190         * lib/quote.c: Include stddef.h.
24191         Reported by Axel Kittenberger.
24192
24193         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
24194         line in double quotes so that it evokes a better diagnostic.
24195         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
24196         Reported by Axel Kittenberger.
24197
24198 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
24199
24200         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
24201         as if it was a `charset'.
24202
24203 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
24204
24205         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
24206         has const.
24207
24208 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
24209
24210         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
24211         to avoid a warning.  Add back 'const' to inptr.
24212
24213 2001-01-20  Jim Meyering  <meyering@lucent.com>
24214
24215         Be sure that headers are checked before used in code compiled
24216         for the type checks.
24217         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
24218         In place of that, invoke jm_CHECK_ALL_TYPES.
24219         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
24220         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
24221         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
24222         The check for ssize_t was mistakenly run before the test for unistd.h.
24223
24224         The configure-time check for stdbool.h was missing.
24225         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
24226         (jm_PREREQ_HASH): New function.
24227
24228 2001-01-17  Jim Meyering  <meyering@lucent.com>
24229
24230         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
24231         for autoconf-2.49c.
24232         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
24233
24234 2001-01-16  Jim Meyering  <meyering@lucent.com>
24235
24236         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
24237         From Bruno Haible.
24238
24239 2001-01-14  Jim Meyering  <meyering@lucent.com>
24240
24241         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
24242         foo and bar.  Create conftestdir/ in the script, not in the C code.
24243         Remove directories in the script, not in the C code.
24244         Remove conftestdir{,2} before trying to create the directory.
24245         Make the entire configure script fail if the mkdir fails.
24246
24247 2001-01-14  Jim Meyering  <meyering@lucent.com>
24248
24249         * lib/rename.c: New file.  From Volker Borchert.
24250         Include stdlib.h, string.h or strings.h, and xalloc.h.
24251         Use strip_trailing_slashes rather than open-coding it.
24252
24253 2001-01-03  Paul Eggert  <eggert@twinsun.com>
24254
24255         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
24256
24257 2001-01-03  Jim Meyering  <meyering@lucent.com>
24258
24259         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
24260         of local `inptr' to avoid warning with some system declarations of
24261         iconv.
24262
24263 2001-01-02  Volker Borchert  <bt@teknon.de>
24264
24265         * m4/rename.m4: New file.
24266         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
24267
24268 2001-01-01  Jim Meyering  <meyering@lucent.com>
24269
24270         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
24271         even on systems with utmpx.h.  It's necessary for the declaration of
24272         utmp's ut_user member.  Reported by Andreas Jaeger.
24273
24274         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
24275         available. They are required for the declarations of getgrgid and
24276         getpwuid resp.
24277         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
24278         Reported by Andreas Jaeger.
24279
24280 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
24281
24282         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
24283         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
24284         so `make install' also works in VPATH builds.
24285
24286 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
24287
24288         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
24289         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
24290         can be used in subdirectories.
24291
24292 2000-12-29  Paul Eggert  <eggert@twinsun.com>
24293
24294         * lib/modechange.c: Do not assume that mode_t uses the
24295         traditional octal encoding.  E.g. "chmod 1 FOO" should set
24296         the other-execute bit of FOO even if S_IXOTH != 1.
24297
24298         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
24299         WOTH, XOTH, ALLM): New macros.
24300         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
24301          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
24302         Use them.
24303         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
24304         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
24305         (mode_compile):
24306         No need to use uintmax_t; unsigned long is long enough.
24307         Don't bother to get suffix since we don't use it.
24308
24309 2000-12-26  Jim Meyering  <meyering@lucent.com>
24310
24311         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
24312         better with autoheader.
24313
24314 2000-12-24  Jim Meyering  <meyering@lucent.com>
24315
24316         * lib/hash.c (is_prime): Return explicit boolean values.
24317         (hash_get_first): Return NULL to appease Irix5.6's 89.
24318         Reported by Nelson Beebe.
24319
24320 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
24321
24322         * lib/localcharset.c (locale_charset): Add support for Win32.
24323
24324 2000-12-18  Paul Eggert  <eggert@twinsun.com>
24325
24326         * lib/physmem.h, lib/physmem.c: New files.
24327
24328         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
24329         (noinst_HEADERS): Add physmem.h.
24330
24331         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
24332         't' for compatibility with Solaris 8 sort.
24333
24334 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
24335
24336         * lib/config.charset: Add support for BeOS.
24337
24338 2000-12-17  Jim Meyering  <meyering@lucent.com>
24339
24340         * m4/dos.m4 (jm_AC_DOS): New file and macro.
24341         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
24342
24343 2000-12-16  Jim Meyering  <meyering@lucent.com>
24344
24345         This bug had a serious impact on chown: `chown N:M FILE' (for integer
24346         N and M) would have treated it like `chown N:N FILE'.
24347
24348         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
24349
24350 2000-12-16  Jim Meyering  <meyering@lucent.com>
24351
24352         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
24353         SHELLS_FILE to a file name that's useful on djgpp systems.
24354         Include stdlib.h.
24355         (ADDITIONAL_DEFAULT_SHELLS): Define.
24356         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
24357         Based mostly on a patch from Prashant TR.
24358
24359 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
24360
24361         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
24362         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
24363         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
24364
24365 2000-12-08  Andreas Schwab  <schwab@suse.de>
24366
24367         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
24368         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
24369
24370 2000-12-07  Jim Meyering  <meyering@lucent.com>
24371
24372         * lib/stripslash.c (ISSLASH): Define.
24373         (strip_trailing_slashes): Use ISSLASH rather than comparing against
24374         `/'.
24375         From Prashant TR.
24376
24377         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
24378         (dir_name_r): Declare this function as static.
24379         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
24380         manifest itself on a name containing a mix of slashes and
24381         backslashes.
24382         Make this function work with names starting with a DOS-style
24383         drive letter and colon prefix.
24384         (dir_name): Append `.' if necessary.
24385         Based mostly on patches from Prashant TR and Eli Zaretskii.
24386
24387         * lib/dirname.h (dir_name_r): Remove prototype.
24388
24389 2000-12-06  Paul Eggert  <eggert@twinsun.com>
24390
24391         * m4/off_t-format.m4: Remove this file.
24392         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
24393
24394 2000-12-06  Jim Meyering  <meyering@lucent.com>
24395
24396         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
24397         replacement strtoull, we may well need the replacement strtoul, too.
24398         Check for declarations of strtoul and strtoull.
24399         Check for strtol.  Mainly as a cue to cause automake to include
24400         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
24401         Check for limits.h -- strtol.c needs it.
24402
24403 2000-12-05  Jim Meyering  <meyering@lucent.com>
24404
24405         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
24406
24407 2000-12-04  Jim Meyering  <meyering@lucent.com>
24408
24409         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
24410         Also include memory.h, stdlib.h, unistd.h if appropriate.
24411         Reported by Andreas Jaeger (conflicting declaration of malloc).
24412
24413 2000-12-02  Jim Meyering  <meyering@lucent.com>
24414
24415         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
24416         * m4/jm-macros.m4 (jm_MACROS): require it.
24417
24418 2000-12-02  Jim Meyering  <meyering@lucent.com>
24419
24420         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
24421
24422 2000-12-01  Paul Eggert  <eggert@twinsun.com>
24423
24424         * lib/memrchr.c: Include <config.h> before any system include file.
24425
24426 2000-11-30  Jim Meyering  <meyering@lucent.com>
24427
24428         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
24429
24430 2000-11-30  Jim Meyering  <meyering@lucent.com>
24431
24432         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
24433
24434 2000-11-29  Paul Eggert  <eggert@twinsun.com>
24435
24436         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
24437
24438 2000-11-26  Jim Meyering  <meyering@lucent.com>
24439
24440         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
24441
24442 2000-11-22  Paul Eggert  <eggert@twinsun.com>
24443
24444         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
24445         size of (size_t) -1; it's not portable.
24446
24447 2000-11-17  Jim Meyering  <meyering@lucent.com>
24448
24449         * lib/strstr.c: Update from GNU libc.
24450
24451 2000-11-17  Akim Demaille  <akim@epita.fr>
24452
24453         * lib/obstack.h: Formatting changes.
24454         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
24455         prevent type checking.
24456         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
24457         cast the value to (void *): assigning a `foo *' to a `void *'
24458         variable is valid.
24459         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
24460
24461 2000-11-16  Jim Meyering  <meyering@lucent.com>
24462
24463         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
24464
24465 2000-11-11  Jim Meyering  <meyering@lucent.com>
24466
24467         * lib/error.c: Add a couple #includes, merging from GNU libc version.
24468
24469 2000-11-10  Jim Meyering  <meyering@lucent.com>
24470
24471         * lib/obstack.h: Update from GNU libc.
24472         * lib/obstack.c: Likewise.
24473
24474 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
24475
24476         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
24477
24478 2000-11-06  Paul Eggert  <eggert@twinsun.com>
24479
24480         * lib/getusershell.c (setusershell): Use rewind rather than
24481         fseek/fseeko, to avoid configuration hassles with fseeko.
24482         Don't bother opening SHELLS_FILE if shellstream is NULL;
24483         it's not necessary.
24484
24485 2000-11-05  Jim Meyering  <meyering@lucent.com>
24486
24487         * lib/makepath.h (make_dir): Declare.
24488         * lib/makepath.c (make_dir): Remove `static' attribute.
24489         Tweak a comment.
24490
24491 2000-11-04  Jim Meyering  <meyering@lucent.com>
24492
24493         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
24494
24495 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
24496
24497         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
24498         last one in a bucket, advance to the next bucket.
24499
24500 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
24501
24502         * lib/fnmatch.c: Do not comment out all the code if we are using
24503         the GNU C library, because in some cases we are replacing buggy
24504         code in the GNU C library itself.
24505
24506 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
24507
24508         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
24509         (regex_compile): Catch bogus \(\1\).
24510
24511 2000-10-30  Paul Eggert  <eggert@twinsun.com>
24512
24513         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
24514         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
24515         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
24516
24517 2000-10-30  Paul Eggert  <eggert@twinsun.com>
24518
24519         * lib/error.h, getline.h, modechange.h:
24520         Remove "2000" from Copyright line, as the file hasn't been
24521         changed this year other than in the copyright notice.
24522
24523         * lib/xalloc.h: Add "2000" to Copyright line, as this file
24524         was changed this year.
24525
24526 2000-10-29  Jim Meyering  <meyering@lucent.com>
24527
24528         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
24529         renaming.
24530         * m4/ls-mntd-fs.m4: Likewise
24531
24532 2000-10-29  Jim Meyering  <meyering@lucent.com>
24533
24534         * lib/xstat.in: Fix grammar in comment.
24535
24536 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
24537
24538         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
24539         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
24540         doesn't define __restrict_arr.
24541
24542 2000-10-28  Jim Meyering  <meyering@lucent.com>
24543
24544         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
24545         (jm_PREREQ_MEMCHR): New function.
24546
24547 2000-10-28  Jim Meyering  <meyering@lucent.com>
24548
24549         * lib/memchr.c: Update from libc.
24550         Adjust for portability:
24551         [HAVE_STDLIB_H]: Include stdlib.h.
24552         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
24553         Undef __memchr, too.
24554         [!weak_alias]: Define __memchr to memchr.
24555
24556         * lib/regex.c: Update from libc.
24557         * lib/regex.h: Likewise.
24558         * lib/getopt1.c: Likewise.
24559         * lib/memcmp.c: Likewise.
24560
24561         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
24562         Avoid using fseek, when possible -- it's broken by design.
24563         Patch by Ulrich Drepper.
24564
24565 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
24566
24567         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
24568         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
24569         Giving in to popular pressure to shut up the compiler with casts.
24570
24571 2000-10-26  Jim Meyering  <meyering@lucent.com>
24572
24573         * lib/strftime.c: Update from libc.
24574
24575 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
24576
24577         * regex.c: More `unsigned char' -> `re_char' changes.
24578         Also change several `int' into `re_wchar_t'.
24579         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
24580         (PUSH_FAILURE_POINTER): Don't cast any more.
24581         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
24582         We want GCC to complain, since this piece of code makes
24583         re_match non-reentrant, which *should* be fixed.
24584         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
24585         (EXTEND_BUFFER): Use RETALLOC.
24586         (SET_LIST_BIT): Don't cast.
24587         (re_wchar_t): New type.
24588         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
24589         that those two functions will always properly return.
24590         (IMMEDIATE_QUIT_CHECK): Cast to void.
24591         (analyse_first): Use recursion rather than an explicit stack.
24592         (re_compile_fastmap): Can't fail anymore.
24593         (re_search_2): Don't check re_compile_fastmap for failure.
24594         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
24595         Now also sets the new value (passed in a new argument).
24596         (re_match_2_internal): Use it.
24597         Also, use a new var `reg' of type size_t when looping through regs
24598         rather than reuse the inappropriate `mcnt'.
24599
24600 2000-10-25  Jim Meyering  <meyering@lucent.com>
24601
24602         * lib/obstack.c: Update from libc.
24603
24604 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
24605
24606         * regex.c (regex_compile): Change the way of handling a range from
24607         a char less than 256 to a char not less than 256.
24608
24609 2000-10-24  Andrew Innes  <andrewi@gnu.org>
24610
24611         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
24612         NT-Emacs only.
24613         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
24614         so that re_search functions only quit when callers expect them to.
24615
24616 2000-10-23  Jim Meyering  <meyering@lucent.com>
24617
24618         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
24619         wrong.  That set_locale call must not have any side effects.
24620         From Paul Eggert.
24621
24622 2000-10-22  Jim Meyering  <meyering@lucent.com>
24623
24624         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
24625         [CYCLIC]: Remove now-unused definition.
24626
24627         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
24628         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
24629         Suggestion from Ulrich Drepper.
24630
24631 2000-10-21  Jim Meyering  <meyering@lucent.com>
24632
24633         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
24634         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
24635         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
24636
24637 2000-10-21  Jim Meyering  <meyering@lucent.com>
24638
24639         * lib/dirname.c (memrchr): Declare if necessary.
24640         (dir_name): Remove the restriction that there be no
24641         trailing slashes.  Now, this code skips past them, effectively
24642         ignoring them.
24643         [TEST_DIRNAME] (main): New unit tests.
24644
24645         * lib/memrchr.c: New file from GNU libc.
24646         Undef __memrchr, too.
24647         [!weak_alias]: Define __memrchr to memrchr.
24648         Guard weak_alias use with `#ifdef weak_alias'.
24649
24650 2000-10-21  Jim Meyering  <meyering@lucent.com>
24651
24652         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
24653         (dir_name): Use dir_name_r.
24654         * lib/dirname.h (dir_name_r): Declare it.
24655
24656 2000-10-17  Jim Meyering  <meyering@lucent.com>
24657
24658         * lib/quote.h (PARAMS): Define and use.
24659         Reported by Akim Demaille.
24660
24661         * lib/getopt.c: Update from libc.
24662
24663 2000-10-16  Jim Meyering  <meyering@lucent.com>
24664
24665         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
24666         setlocale.
24667         From Jan Fedak.
24668
24669 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
24670
24671         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
24672
24673 2000-09-25  Jim Meyering  <meyering@lucent.com>
24674
24675         * lib/md5.h (rol): Define (from GnuPG).
24676
24677         * lib/sha.c: Give credit (GnuPG) where due.
24678         (M): Use rol rather than open-coding it.
24679         Add a FIXME comment.
24680
24681 2000-09-21  Jim Meyering  <meyering@lucent.com>
24682
24683         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
24684         Reported by Michael Stone.
24685
24686 2000-09-20  Jim Meyering  <meyering@lucent.com>
24687
24688         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
24689         (noinst_HEADERS): Add sha.h.
24690         Based on code from Scott G. Miller and from GnuPG.
24691
24692 2000-09-18  Jim Meyering  <meyering@lucent.com>
24693
24694         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
24695         LIBS. Otherwise, everyone ends up linking with -lelf for some
24696         configurations.
24697         Reported by Mike Stone.
24698
24699 2000-09-15  Jim Meyering  <meyering@lucent.com>
24700
24701         * lib/regex.c: Update from libc.
24702
24703 2000-09-10  Jim Meyering  <meyering@lucent.com>
24704
24705         * lib/getopt.c (_getopt_internal): Update from glibc.
24706
24707 2000-09-09  Jim Meyering  <meyering@lucent.com>
24708
24709         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
24710         think it should be used as a general replacement for isascii.
24711         * lib/fnmatch.c: Likewise.
24712         * lib/mbswidth.c: Likewise
24713         * lib/regex.c: Likewise.
24714
24715         Don't use atoi.
24716         * lib/userspec.c: Include sys/param.h and limits.h.
24717         Include xstrtol.h.
24718         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
24719         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
24720         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
24721         UID, GID.  Check range.
24722
24723 2000-09-06  Jim Meyering  <meyering@lucent.com>
24724
24725         * lib/getopt.c (_getopt_internal): Update from glibc.
24726
24727 2000-08-30  Jim Meyering  <meyering@lucent.com>
24728
24729         * lib/strftime.c: Merge in changes from GNU libc.
24730
24731 2000-08-26  Jim Meyering  <meyering@lucent.com>
24732
24733         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
24734         * m4/fpending.m4: New file.
24735
24736 2000-08-26  Jim Meyering  <meyering@lucent.com>
24737
24738         * lib/closeout.c: Include "__fpending.h".
24739         (close_stdout_status): Return right away if there's nothing to flush.
24740
24741         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
24742         * lib/__fpending.c: New file.
24743         * lib/__fpending.h: New file.
24744
24745 2000-08-20  Jim Meyering  <meyering@lucent.com>
24746
24747         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
24748         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
24749         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
24750
24751 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
24752
24753         Improve fileutils installation on systems where running
24754         programs (like install) can't be unlinked.
24755         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
24756         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
24757
24758 2000-08-07  Paul Eggert  <eggert@twinsun.com>
24759
24760         Standardize on "memory exhausted" instead of "Memory exhausted"
24761         or "virtual memory exhausted".
24762         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
24763         "virtual memory exhausted".
24764         * lib/same.c (same_name): Invoke xalloc_die instead of printing
24765         our own message.
24766         * lib/userspec.c (parse_user_spec): Likewise.
24767         * lib/bumpalloc.h: comment fix
24768         * lib/same.c, userspec.c: Include xalloc.h.
24769
24770         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
24771         not char *const and pointing to a constant array.
24772         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
24773         (xrealloc): Comment fix.
24774
24775         * lib/userspec.c (parse_user_spec):
24776         Don't translate a message until just before returning,
24777         to avoid unnecessary translation.
24778
24779 2000-08-07  Jim Meyering  <meyering@lucent.com>
24780
24781         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
24782         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
24783         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
24784         getgroups.c, gethostname.c, getopt.h, group-member.c,
24785         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
24786         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
24787         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
24788         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
24789         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
24790         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
24791         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
24792         yesno.c: Back out Copyright date changes for each file with no change
24793         this year.  This eases coordination with other programs using the same
24794         source code modules.  From Paul Eggert.
24795
24796 2000-08-06  Paul Eggert  <eggert@twinsun.com>
24797
24798         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
24799         not char, for compatibility with glibc 2.1.3 strftime.c.
24800
24801 2000-08-03  Greg McGary  <greg@mcgary.org>
24802
24803         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
24804         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
24805         (EXTEND_BUFFER): Use them.
24806
24807 2000-08-01  Jim Meyering  <meyering@lucent.com>
24808
24809         * lib/dirname.c (ISSLASH): Define.
24810         (BACKSLASH_IS_PATH_SEPARATOR): Define.
24811         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
24812         both `\' and `/' may be use as path separators.
24813         Based on a patch from Prashant TR.
24814
24815 2000-07-31  Paul Eggert  <eggert@twinsun.com>
24816
24817         * lib/quotearg.c (quotearg_n_options): Don't make the initial
24818         slot vector a constant, since it might get modified.
24819
24820 2000-07-31  Jim Meyering  <meyering@lucent.com>
24821
24822         * lib/xmalloc.c: Use `virtual memory exhausted', not
24823         `Memory exhausted'.
24824         * lib/obstack.c (print_and_abort): Likewise.
24825
24826 2000-07-30  Paul Eggert  <eggert@twinsun.com>
24827
24828         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
24829         buffer, so that the caller can always quote one small
24830         component of a "memory exhausted" message in slot 0.
24831         From a suggestion by Jim Meyering.
24832
24833 2000-07-30  Jim Meyering  <meyering@lucent.com>
24834
24835         * lib/makepath.c (make_path): Quote the other instance, too.
24836
24837         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
24838         (STATIC_BUF_SIZE): Define.
24839         (quotearg_n_options): Use only statically allocated storage when
24840         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
24841         than STATIC_BUF_SIZE.
24842
24843 2000-07-29  Jim Meyering  <meyering@lucent.com>
24844
24845         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
24846         * lib/dirname.c (dir_name): Likewise.
24847
24848         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
24849         `/'.
24850
24851         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
24852         (dir_name): Assert that there are no trailing slashes.
24853
24854 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
24855
24856         * lib/mbswidth.h (mbswidth): Add a flags argument.
24857         (mbswidth): New declaration.
24858         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
24859         * lib/mbswidth.c (mbswidth): Add a flags argument.
24860         (mbsnwidth): New function.
24861
24862 2000-07-24  Jim Meyering  <meyering@lucent.com>
24863
24864         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
24865
24866 2000-07-23  Paul Eggert  <eggert@twinsun.com>
24867
24868         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
24869
24870 2000-07-23  Paul Eggert  <eggert@twinsun.com>
24871
24872         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
24873         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
24874         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
24875         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
24876         invoke multibyte primitives.
24877
24878 2000-07-23  Paul Eggert  <eggert@twinsun.com>
24879
24880         * lib/quotearg.c:
24881         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
24882         so that mbstate_t is always defined.
24883
24884         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
24885         be 1 in at least one GCC installation, and this configuration
24886         error is likely to be common.  Ignoring MB_LEN_MAX hurts
24887         performance on hosts that have mbrtowc but have only unibyte
24888         locales, but I assume these hosts are rare.
24889
24890 2000-07-23  Paul Eggert  <eggert@twinsun.com>
24891
24892         * lib/mbswidth.c (_XOPEN_SOURCE):
24893         Don't define; this causes problems on Solaris 7.
24894         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
24895
24896 2000-07-23  Jim Meyering  <meyering@lucent.com>
24897
24898         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
24899         too: getgrgid, getpwuid, getuid.
24900
24901 2000-07-23  Jim Meyering  <meyering@lucent.com>
24902
24903         * lib/basename.c (base_name): Add an assertion.
24904
24905 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
24906
24907         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
24908         shadow its mbsinit function.
24909
24910 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
24911
24912         * lib/mbswidth.h: New file.
24913         * lib/mbswidth.c: New file.
24914         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
24915         (noinst_HEADERS): Add mbswidth.h.
24916
24917 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
24918
24919         * lib/config.charset: Add support for FreeBSD. Improve support for
24920         HP-UX and IRIX 6.
24921
24922 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
24923
24924         * m4/mbswidth.m4: New file.
24925         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
24926
24927 2000-07-15  Jim Meyering  <meyering@lucent.com>
24928
24929         * lib/makepath.c: Include quote.h.
24930         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
24931         corresponding argument in a `quote (...)' call.
24932         Give better diagnostics.
24933
24934         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
24935         (noinst_HEADERS): Add quote.h.
24936
24937         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
24938         from tar's src/misc.c.
24939         * lib/quote.h: New file.  Prototypes for same.
24940
24941 2000-07-14  Paul Eggert  <eggert@twinsun.com>
24942
24943         From a suggestion by Bruno Haible.
24944         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
24945         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
24946         to decide whether to define the BeOS workaround macro;
24947         this adjusts to the change to AC_MBSTATE_T.
24948
24949 2000-07-14  Jim Meyering  <meyering@lucent.com>
24950
24951         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
24952         jm_AC_TYPE_UINTMAX_T.
24953
24954 2000-07-13  Paul Eggert  <eggert@twinsun.com>
24955
24956         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
24957
24958         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
24959         quotearg_buffer_restyled): Add support for
24960         clocale_quoting_style.  Undo previous change to
24961         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
24962         and "{RIGHT QUOTATION MARK}" msgids.
24963
24964 2000-07-10  Paul Eggert  <eggert@twinsun.com>
24965
24966         From a suggestion by Bruno Haible.
24967         * m4/mbstate_t.m4 (AC_MBSTATE_T):
24968         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
24969         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
24970         and mbstate_t, to a single-part test that simply defines mbstate_t.
24971         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
24972         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
24973
24974 2000-07-10  Jim Meyering  <meyering@lucent.com>
24975
24976         * m4/strerror_r.m4: Mirror the correction made in autoconf.
24977
24978         * m4/gnu-source.m4: Output to confdefs.h directly.
24979         Suggestion from Akim Demaille.
24980
24981 2000-07-09  Paul Eggert  <eggert@twinsun.com>
24982
24983         The old behavior of quoting `like this' doesn't look good with
24984         newer, ISO-style fonts.  See:
24985         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
24986
24987         Instead, quote "like this" by default.  Let the translator
24988         tailor the locale-specific quoting behavior by providing
24989         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
24990
24991         * lib/quotearg.c (N_): New macro.
24992         (gettext_default): New function.
24993         (quotearg_buffer_restyled): Use
24994         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
24995         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
24996
24997 2000-07-09  Jim Meyering  <meyering@lucent.com>
24998
24999         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
25000         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
25001
25002         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
25003         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
25004
25005 2000-07-09  Jim Meyering  <meyering@lucent.com>
25006
25007         * lib/Most files: Update copyright dates to include 2000.
25008
25009 2000-07-08  Jim Meyering  <meyering@lucent.com>
25010
25011         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
25012         if not defined.
25013         (xgethostname): Remove now-unnecessary #ifdef.
25014         Move declaration of `err' into loop where it's used.
25015
25016 2000-07-05  Paul Eggert  <eggert@twinsun.com>
25017         and Bruno Haible  <haible@clisp.cons.org>
25018
25019         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
25020         only if the test for an object-type mbstate_t fails.  This
25021         prevents us from mistakenly reporting that mbstate_t is a
25022         system object type after we "#define mbstate_t int" to work
25023         around its lack.
25024
25025 2000-07-05  Paul Eggert  <eggert@twinsun.com>
25026         and Bruno Haible  <haible@clisp.cons.org>
25027
25028         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
25029
25030 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
25031
25032         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
25033         to strerror_r.
25034         Include <ctype.h> for use of isalpha.
25035
25036 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
25037
25038         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
25039         by allocating a larger buffer. Test the gethostname return value for
25040         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
25041         returns an error and ENAMETOOLONG isn't defined.
25042
25043 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
25044
25045         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
25046         dimension.
25047
25048 2000-07-04  Jim Meyering  <meyering@lucent.com>
25049
25050         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
25051         of the deprecated AC_CHECKING.
25052
25053 2000-07-04  Jim Meyering  <meyering@lucent.com>
25054
25055         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
25056         Reported by Bruno Haible.
25057
25058 2000-07-04  Jim Meyering  <meyering@lucent.com>
25059
25060         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
25061         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
25062         lacks mbrtowc.
25063
25064 2000-07-03  Paul Eggert  <eggert@twinsun.com>
25065
25066         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
25067         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
25068
25069 2000-07-03  Paul Eggert  <eggert@twinsun.com>
25070         and Bruno Haible  <haible@clisp.cons.org>
25071
25072         * lib/quotearg.c (mbrtowc):
25073         Assign to *pwc, and return 1 only if result is nonzero.
25074         (iswprint): Use ISPRINT when substituting our own mbrtowc.
25075
25076 2000-07-03  Jim Meyering  <meyering@lucent.com>
25077
25078         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
25079
25080 2000-07-03  Jim Meyering  <meyering@lucent.com>
25081
25082         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
25083         This is necessary to get a definition of e.g., UTMP_FILE on
25084         HP-UX 10.20.
25085         From Bob Proulx.
25086
25087 2000-07-02  Jim Meyering  <meyering@lucent.com>
25088
25089         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
25090
25091         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
25092         AC_LIBOBJ(function_name).
25093         * m4/chown.m4: Likewise.
25094         * m4/fnmatch.m4: Likewise.
25095         * m4/ftruncate.m4: Likewise.
25096         * m4/getgroups.m4: Likewise.
25097         * m4/getline.m4: Likewise.
25098         * m4/group-member.m4: Likewise.
25099         * m4/jm-macros.m4: Likewise.
25100         * m4/lstat.m4: Likewise.
25101         * m4/malloc.m4: Likewise.
25102         * m4/memcmp.m4: Likewise.
25103         * m4/nanosleep.m4: Likewise.
25104         * m4/putenv.m4: Likewise.
25105         * m4/realloc.m4: Likewise.
25106         * m4/regex.m4: Likewise.
25107         * m4/stat.m4: Likewise.
25108         * m4/strftime.m4: Likewise.
25109
25110 2000-07-02  Jim Meyering  <meyering@lucent.com>
25111
25112         * lib/quotearg.c (mbstate_t): Don't define here.
25113
25114 2000-07-02  Jim Meyering  <meyering@lucent.com>
25115
25116         * lib/nanosleep.c (SIGCONT): Define if not already defined.
25117
25118 2000-07-01  Jim Meyering  <meyering@lucent.com>
25119
25120         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
25121
25122 2000-07-01  Jim Meyering  <meyering@lucent.com>
25123
25124         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
25125         problem.
25126
25127 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
25128
25129         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
25130         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
25131
25132 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
25133
25134         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
25135         per change in ../m4/ls-mntd-fs.m4.
25136         (read_filesystem_list): Ignore symbolic links.
25137
25138 2000-06-29  Jim Meyering  <meyering@lucent.com>
25139
25140         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
25141         for declaration of strcmp.
25142
25143         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
25144
25145         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
25146         Avoid warning by casting result to `char *' to remove `const'.
25147
25148 2000-06-28  Jim Meyering  <meyering@lucent.com>
25149
25150         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
25151         included by quotearg.c, for which we perform this test.  From
25152         Bruno Haible.
25153
25154 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
25155
25156         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
25157         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
25158         <utmpx.h> exists, put readutmp.o into LIBOBJS.
25159
25160 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
25161
25162         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
25163
25164 2000-06-26  Paul Eggert  <eggert@twinsun.com>
25165
25166         savedir now sets errno on failure and invokes xmalloc to get memory.
25167         Fix a couple of other minor bugs while we're at it.
25168
25169         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
25170         (NAMLEN): Remove macro.
25171         (malloc, realloc): Remove decls.
25172         (stpcpy): Likewise.
25173         ("xalloc.h"): Include.
25174         (NAME_SIZE_DEFAULT): New macro.
25175         (savedir): Use xmalloc / xrealloc to allocate memory.
25176         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
25177         Skip "" directory entries.
25178         Use strlen to calculate directory entry length, since the old method
25179         is rarely used these days and isn't worth supporting.
25180         Don't use a pointer after freeing it.
25181         Check for integer overflow when calculating allocation size.
25182         Use memcpy to copy entries, instead of stpcpy.
25183         Set errno properly when returning NULL.
25184         Check for readdir error.
25185
25186 2000-06-26  Jim Meyering  <meyering@lucent.com>
25187
25188         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
25189
25190 2000-06-25  Jim Meyering  <meyering@lucent.com>
25191
25192         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
25193         Linux header bug when _XOPEN_SOURCE is defined to 500.
25194
25195 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
25196
25197         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
25198         deficiency.
25199
25200 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
25201
25202         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
25203         Include xalloc.h.
25204         Don't include <stdlib.h>.  Don't declare malloc, realloc.
25205
25206 2000-06-24  Jim Meyering  <meyering@lucent.com>
25207
25208         * m4/strerror_r.m4: Revive this file -- to try out an experimental
25209         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
25210         for which strerror does return char*, but which lacks a conveniently
25211         accessible declaration of the function.  If the compile-test says
25212         strerror_r doesn't work, then resort to a `run'-test that works on
25213         BeOS and segfaults on DEC Unix.
25214
25215 2000-06-24  Jim Meyering  <meyering@lucent.com>
25216
25217         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
25218
25219 2000-06-23  Paul Eggert  <eggert@twinsun.com>
25220
25221         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
25222         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
25223
25224 2000-06-23  Paul Eggert  <eggert@twinsun.com>
25225
25226         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
25227         (mbrtowc, mbstate_t): Define substitutes if
25228         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
25229         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
25230         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
25231
25232 2000-06-23  Jim Meyering  <meyering@lucent.com>
25233
25234         * m4/afs.m4: Add missing AC_MSG_RESULT.
25235         Reported by Bruno Haible.
25236
25237         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
25238         Suggestion from Bruno Haible.
25239
25240 2000-06-23  Jim Meyering  <meyering@lucent.com>
25241
25242         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
25243
25244 2000-06-21  Jim Meyering  <meyering@lucent.com>
25245
25246         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
25247
25248 2000-06-21  Jim Meyering  <meyering@lucent.com>
25249
25250         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
25251         (noinst_HEADERS): Add getstr.h.
25252
25253         * lib/getline.c (getstr): Move into a separate file.
25254         * lib/getstr.c (getstr): New file, extracted from getline.c, with
25255         the following changes: new parameter, delim2; both delim[12]
25256         parameters have type `int', not `char'.  The latter would lose
25257         with 8-bit delimiters.
25258         * lib/getstr.h: New file.
25259
25260 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
25261
25262         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
25263         than 1024, return a memory chunk of least possible size, instead
25264         of size PATH_MAX + 2. In the loop, increment the size proportionally.
25265         Use free/xmalloc instead of xrealloc to avoid copying for very long
25266         paths.
25267
25268 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
25269
25270         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
25271         the empty string.
25272
25273 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
25274
25275         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
25276         address, not strdup.  Include <stdlib.h> and don't declare free().
25277
25278 2000-06-19  Jim Meyering  <meyering@lucent.com>
25279
25280         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
25281
25282 2000-06-18  Jim Meyering  <meyering@lucent.com>
25283
25284         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
25285
25286         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
25287         `checking whether...' message to be consistent with that of the
25288         lstat test.
25289
25290 2000-06-18  Jim Meyering  <meyering@lucent.com>
25291
25292         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
25293         Besides, these days every porting target provides a mkdir function.
25294
25295         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
25296         needed. (this snippet comes from src/system.h).
25297
25298 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
25299
25300         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
25301
25302 2000-06-15  Paul Eggert  <eggert@twinsun.com>
25303
25304         * lib/human.c (adjust_value): New function.
25305         (human_readable_inexact): Apply rounding style even when
25306         printing approximate values.
25307
25308 2000-06-14  Paul Eggert  <eggert@twinsun.com>
25309
25310         * lib/human.c (human_readable_inexact): Allow an input block
25311         size that is not a multiple of the output block size, and vice versa.
25312         Reported by Piergiorgio Sartor.
25313
25314 2000-06-14  Paul Eggert  <eggert@twinsun.com>
25315
25316         * lib/getdate.y (get_date): Apply relative times after time
25317         zone indicator, not before.  Reported by Todd A. Jacobs.
25318
25319 2000-06-13  Jim Meyering  <meyering@lucent.com>
25320
25321         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
25322
25323         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
25324
25325 2000-06-12  Paul Eggert  <eggert@twinsun.com>
25326
25327         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
25328
25329 2000-06-12  Jim Meyering  <meyering@lucent.com>
25330
25331         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
25332         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
25333         optional argument.
25334         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
25335         the optional argument, `lib'.
25336
25337 2000-06-08  Jim Meyering  <meyering@lucent.com>
25338
25339         * m4/largefile.m4: Remove file (now that it's part of autoconf).
25340
25341 2000-06-04  Paul Eggert  <eggert@twinsun.com>
25342
25343         Rewrite largefile configuration so that we don't need to run
25344         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
25345         AC_CANONICAL_HOST in configure.in -- jmm]
25346
25347         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
25348         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
25349         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
25350         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
25351         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
25352         All uses changed.
25353         Instead of inspecting the output of getconf, try to compile the
25354         test program without and with the macro definition.
25355         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
25356         for getconf.  Instead, check for the needed flags by compiling
25357         test programs.
25358
25359 2000-06-04  Paul Eggert  <eggert@twinsun.com>
25360
25361         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
25362
25363 2000-06-04  Jim Meyering  <meyering@lucent.com>
25364
25365         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
25366         SunOS 4.1.4 for which gid_t is an unsigned type.
25367
25368 2000-06-03  Jim Meyering  <meyering@lucent.com>
25369
25370         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
25371         now that autoconf requires that.
25372
25373         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
25374         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
25375         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
25376
25377 2000-06-03  Jim Meyering  <meyering@lucent.com>
25378
25379         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
25380
25381 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
25382
25383         * m4/glibc21.m4: New file.
25384         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
25385
25386 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
25387
25388         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
25389         newer, don't install charset.alias.
25390         * lib/config.charset: Change the Linux/glibc rules so they become empty
25391         on glibc-2.1 or newer.
25392
25393 2000-06-02  Jim Meyering  <meyering@lucent.com>
25394
25395         * lib/mountlist.c: Back out last change.  Instead, do this...
25396         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
25397         me_dummy member using the same `ignore'-testing code.
25398         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
25399         fs_type strings.
25400         From Mark D. Roth.
25401
25402 2000-05-29  Jim Meyering  <meyering@lucent.com>
25403
25404         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
25405         mounts with the `ignore' attribute.  Based on a patch from
25406         Mark D. Roth.
25407
25408 2000-05-28  Jim Meyering  <meyering@lucent.com>
25409
25410         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
25411         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
25412         * m4/stat.m4: Likewise.
25413         * m4/lstat.m4: Likewise.
25414         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
25415
25416         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
25417         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
25418
25419 2000-05-26  Jim Meyering  <meyering@lucent.com>
25420
25421         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
25422
25423 2000-05-24  Jim Meyering  <meyering@lucent.com>
25424
25425         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
25426         autoconf requires that.
25427         * m4/lib-check.m4: Likewise.
25428         * m4/jm-macros.m4: Likewise.
25429         * m4/strftime.m4: Likewise.
25430
25431         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
25432         AC_CHECK_DECLS, now that autoconf requires that.
25433
25434 2000-05-22  Jim Meyering  <meyering@lucent.com>
25435
25436         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
25437         * m4/lstat.m4: Likewise.
25438
25439 2000-05-22  Jim Meyering  <meyering@lucent.com>
25440
25441         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
25442
25443 2000-05-20  Jim Meyering  <meyering@lucent.com>
25444
25445         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
25446         (jm_PREREQ): Use it.
25447
25448 2000-05-18  Jim Meyering  <meyering@lucent.com>
25449
25450         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
25451         back, too, since it may have been modified by allocate_entry.
25452         (hash_delete): Rewrite to use neither the assignment operator
25453         nor the comma operator in an if-expression.
25454
25455 2000-05-15  Paul Eggert  <eggert@twinsun.com>
25456
25457         * lib/closeout.c:
25458         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
25459         Remove; no longer needed.
25460         "quotearg.h": Add include.
25461         (file_name): Do not bother to explicitly initialize to NULL; it's less
25462         efficient on some hosts.
25463         (close_stdout_status): Remove test as to whether stdout was already
25464         closed; it breaks for the case "echo x | sort >&-".
25465         Quote file name colons.
25466         Do not assume that _("write error") lacks format strings.
25467
25468 2000-05-15  Jim Meyering  <meyering@lucent.com>
25469
25470         * lib/version-etc.c (version_etc_copyright): Update the copyright
25471         string used in all --version output.
25472
25473 2000-05-14  Jim Meyering  <meyering@lucent.com>
25474
25475         * lib/closeout.c (close_stdout_set_file_name): New function.
25476         (close_stdout_status): Use new file-scoped global.
25477         Return right away if fstat says the stdout file descriptor is invalid.
25478         * lib/closeout.h (close_stdout_set_file_name): Declare.
25479
25480 2000-05-10  Jim Meyering  <meyering@lucent.com>
25481
25482         * lib/closeout.c [default_exit_status]: New file-scoped variable.
25483         (close_stdout_set_status): New function.
25484         * lib/closeout.h (close_stdout_set_status): Declare.
25485
25486 2000-05-09  Jim Meyering  <meyering@lucent.com>
25487
25488         * m4/gettext.m4: Rename this...
25489         * m4/libintl.m4: ...to this.
25490
25491 2000-05-08  Jim Meyering  <meyering@lucent.com>
25492
25493         * lib/long-options.c: Don't include closeout.h.
25494         (parse_long_options): Don't call close_stdout for --version.
25495
25496 2000-05-06  Paul Eggert  <eggert@twinsun.com>
25497
25498         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
25499         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
25500         2.1.3 bug.  This avoids a clash when files like regex.c define
25501         _GNU_SOURCE.
25502
25503 2000-05-06  Jim Meyering  <meyering@lucent.com>
25504
25505         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
25506         (AC_REPLACE_FUNCS): Add strnlen.
25507
25508         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
25509         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
25510
25511         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
25512         AC_SEARCH_LIBS call for nanosleep.
25513         (LIB_NANOSLEEP): Set and AC_SUBST.
25514
25515 2000-05-06  Jim Meyering  <meyering@lucent.com>
25516
25517         * lib/strnlen.c: Undefine __strnlen and strnlen.
25518         [!weak_alias]: Define __strnlen to strnlen.
25519
25520         * lib/atexit.c: New file, from libiberty.
25521
25522 2000-05-06  Jim Meyering  <meyering@lucent.com>
25523
25524         * lib/closeout.c (close_stdout_status): Also check for errors on the
25525         stderr stream.
25526
25527 2000-05-05  Jim Meyering  <meyering@lucent.com>
25528
25529         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
25530         AC_SEARCH_LIBS call for clock_gettime.
25531         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
25532
25533         * m4/search-libs.m4: Update from autoconf.
25534
25535         su doesn't work on Solaris 2.6.
25536         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
25537         <shadow.h>.  Reported by Dragos Harabor.
25538
25539 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
25540
25541         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
25542         memcpy instead of xmalloc, xrealloc, path_concat.
25543         (locale_charset): Treat empty environment variables as absent.
25544         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
25545
25546 2000-05-04  Jim Meyering  <meyering@lucent.com>
25547
25548         * lib/getopt.c: Update from glibc.
25549         * lib/obstack.c: Likewise.
25550         * lib/obstack.h: Likewise.
25551         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
25552         file
25553
25554         * lib/regex.h: Likewise.
25555         * lib/strndup.c: Likewise.
25556         * lib/strnlen.c: New file, from glibc.
25557
25558 2000-05-03  Jim Meyering  <meyering@lucent.com>
25559
25560         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
25561
25562 2000-05-02  Paul Eggert  <eggert@twinsun.com>
25563
25564         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
25565         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
25566         compile-time test, rather than inspecting host and OS, to
25567         decide whether to define _LARGEFILE_SOURCE.
25568
25569 2000-05-01  Jim Meyering  <meyering@lucent.com>
25570
25571         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
25572
25573         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
25574         Based on a patch from Bruno Haible.
25575
25576 2000-05-01  Jim Meyering  <meyering@lucent.com>
25577
25578         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
25579
25580 2000-04-29  Jim Meyering  <meyering@lucent.com>
25581
25582         * lib/path-concat.c: Declare strdup only if it's not defined.
25583         * lib/canon-host.c: Likewise.
25584
25585 2000-04-28  Jim Meyering  <meyering@lucent.com>
25586
25587         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
25588         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
25589         is included first, then limits.h is included by locale.h by libintl.h.
25590         From John David Anglin.
25591
25592 2000-04-25  Jim Meyering  <meyering@lucent.com>
25593
25594         * lib/makepath.c (S_IRWXUGO): Define.
25595         (make_path): Always perform explicit chmod if MODE specifies any
25596         of the `special' permission bits.  Prompted by a bug report against
25597         install from Mate Wierdl and Joost van Baal.
25598
25599 2000-04-18  Jim Meyering  <meyering@lucent.com>
25600
25601         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
25602         (jm_PREREQ): Use it.
25603
25604 2000-04-18  Jim Meyering  <meyering@lucent.com>
25605
25606         * lib/README: New file.
25607
25608         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
25609         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
25610
25611 2000-04-17  Jim Meyering  <meyering@lucent.com>
25612
25613         Get it right :-)
25614         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
25615         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
25616         Suggestion from Akim Demaille.
25617
25618 2000-04-17  Jim Meyering  <meyering@lucent.com>
25619
25620         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
25621         the definition of it to rpl_strftime also defined-away the system's
25622         declaration.
25623
25624 2000-04-15  Jim Meyering  <meyering@lucent.com>
25625
25626         Use `C' to denote so-called `contiguous' files, the same way
25627         that tar does.
25628         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
25629         (ftypelet): Use S_ISCTG.
25630         From Michael Deutschmann.
25631
25632 2000-04-14  Jim Meyering  <meyering@lucent.com>
25633
25634         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
25635         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
25636         clobbered.
25637
25638 2000-04-14  Jim Meyering  <meyering@lucent.com>
25639
25640         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
25641
25642 2000-04-13  Jim Meyering  <meyering@lucent.com>
25643
25644         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
25645         AH_VERBATIM to insert required #ifndef into config.h.in.
25646         Suggestion from Akim Demaille.
25647
25648 2000-04-12  Jim Meyering  <meyering@lucent.com>
25649
25650         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
25651         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
25652         Christian Krackowizer.
25653
25654         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
25655         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
25656         (AC_SYS_LARGEFILE): Require.
25657         (AM_C_PROTOTYPES): Require.
25658
25659 2000-04-08  Jim Meyering  <meyering@lucent.com>
25660
25661         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
25662         names don't conflict.  Reported by Eli Zaretskii.
25663
25664 2000-04-07  Jim Meyering  <meyering@lucent.com>
25665
25666         * lib/putenv.c: Move inclusion of errno.h so it follows that of
25667         sys/types.h, to work around system header problems on AIX 3.2.5.
25668         From Bruno Haible.
25669
25670 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
25671
25672         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
25673         bug.  Deal with the different error behavior of Irix iconv.
25674
25675 2000-04-05  Paul Eggert  <eggert@twinsun.com>
25676
25677         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
25678         IRIX if the installer said otherwise.
25679
25680 2000-04-05  Jim Meyering  <meyering@lucent.com>
25681
25682         Portability tweaks required for ultrix4.3.
25683         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
25684         (jm_CHECK_DECLS): Add getutent to the list of functions.
25685         (_jm_DECL_HEADERS): Add utmpx.h.
25686         From John David Anglin.
25687
25688         * m4/strftime.m4: Back out the 2000-04-02 change.
25689         Instead of that change, simply undefine putenv in the test program.
25690
25691 2000-04-05  Jim Meyering  <meyering@lucent.com>
25692
25693         Portability tweaks required for ultrix4.3.
25694         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
25695         getutent.
25696         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
25697         * lib/canon-host.c: Declare strdup.
25698         * lib/path-concat.c: Likewise.
25699         From John David Anglin.
25700
25701 2000-04-04  Jim Meyering  <meyering@lucent.com>
25702
25703         Be more DOS 8.3-friendly.
25704         * lib/ref-add.sin: Renamed from ref-add.sed.in.
25705         * lib/ref-del.sin: Renamed from ref-del.sed.in.
25706         * lib/Makefile.am: Reflect renaming.
25707         Reported by Eli Zaretskii.
25708
25709         Use a temporary file name that won't clash with `charset.alias'
25710         in the DOS 8.3 name space.
25711         * lib/Makefile.am (charset_tmp): Define.
25712         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
25713         (uninstall-local): Likewise.
25714         Reported by Eli Zaretskii.
25715
25716 2000-04-03  Jim Meyering  <meyering@lucent.com>
25717
25718         * m4/gettext.m4: Fix typo in comment.
25719
25720         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
25721         textutils/configure.in).  Suggestion from Paul Eggert.
25722         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
25723
25724 2000-04-02  Paul Eggert  <eggert@twinsun.com>
25725
25726         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
25727         variable in the shell rather than using putenv, which isn't
25728         portable.  This avoids the configure-time inter-test dependency
25729         on the potentially-renamed putenv function.
25730
25731 2000-03-30  Paul Eggert  <eggert@twinsun.com>
25732
25733         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
25734         before checking struct stat.st_blksize, so that
25735         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
25736
25737 2000-03-29  Paul Eggert  <eggert@twinsun.com>
25738
25739         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
25740         since strftime.c uses HAVE_STRFTIME to decide whether to use
25741         the underlying strftime.
25742
25743 2000-03-29  Paul Eggert  <eggert@twinsun.com>
25744
25745         * lib/time/strftime.c (my_strftime): Make sure we call the system
25746         strftime, not ourselves, when invoking the underlying strftime.
25747
25748 2000-03-24  Jim Meyering  <meyering@lucent.com>
25749
25750         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
25751         (charset_alias): Define.
25752         (install-exec-local): Factor out common code.
25753         (uninstall-local): Split lines longer than 80.
25754         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
25755         (SUFFIXES): Define.
25756         (.sed.in.sed): New rule.  Don't redirect directly to $@.
25757         (CLEANFILES): Add ref-add.sed and ref-del.sed.
25758
25759 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
25760
25761         * lib/config.charset: Output a line containing "Packages using this
25762         file".
25763         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
25764         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
25765         ref-del.sed): New rules.
25766
25767 2000-03-17  Jim Meyering  <meyering@lucent.com>
25768
25769         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
25770         Otherwise, include <strings.h>
25771
25772 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
25773
25774         * lib/unicodeio.c (utf8_wctomb): New function.
25775         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
25776         format instead of in UCS-4 with platform dependent endianness.
25777
25778 2000-03-10  Jim Meyering  <meyering@lucent.com>
25779
25780         * m4/lib-check.m4: Look for getspnam in -lgen, too.
25781         From Marco Franzen.
25782
25783 2000-03-07  Paul Eggert  <eggert@twinsun.com>
25784
25785         * lib/savedir.c (savedir): Work even if directory size is
25786         negative; this can happen with some screwy NFS configurations.
25787
25788 2000-03-06  Jim Meyering  <meyering@lucent.com>
25789
25790         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
25791         if it's NULL (because we ran out of memory).  From Bruno Haible.
25792
25793 2000-03-05  Jim Meyering  <meyering@lucent.com>
25794
25795         * lib/localcharset.c ("path-concat.h"): Include.
25796         (get_charset_aliases): Use path_concat instead of ANSI string
25797         concatenation.
25798
25799         * lib/unicodeio.h (PARAMS): Define.
25800         Use it to guard prototype.
25801
25802 2000-03-04  Jim Meyering  <meyering@lucent.com>
25803
25804         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
25805         for lib/localcharset.c.
25806
25807 2000-03-04  Jim Meyering  <meyering@lucent.com>
25808
25809         * lib/Makefile.am (install-exec-local): Create $(libdir) before
25810         installing into it.
25811         (uninstall-local): Uncomment this rule so `make distcheck' works
25812         once again.
25813
25814         * lib/unicodeio.c (<errno.h>): Include it.
25815         (errno): Declare if not defined.
25816
25817         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
25818
25819         * lib/config.charset: New version, incorporating remarks from a linux
25820         i18n mailing list.  From Bruno Haible.
25821
25822 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
25823
25824         * m4/codeset.m4: New file.
25825         * m4/iconv.m4: New file.
25826         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
25827
25828 2000-03-03  Jim Meyering  <meyering@lucent.com>
25829
25830         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
25831
25832 2000-03-02  Jim Meyering  <meyering@lucent.com>
25833
25834         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
25835         the messages come out on separate lines.
25836
25837         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
25838         rather than jm_CHECK_DECLARATIONS.
25839         * m4/decl.m4: Remove now-unused file.
25840
25841         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
25842         geteuid.
25843
25844 2000-03-02  Jim Meyering  <meyering@lucent.com>
25845
25846         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
25847
25848 2000-03-01  Jim Meyering  <meyering@lucent.com>
25849
25850         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
25851         * lib/unicodeio.c: Likewise.
25852
25853 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
25854
25855         * lib/config.charset: New file.
25856         * lib/localcharset.c: New file.
25857         * lib/unicodeio.h, lib/unicodeio.c: New files.
25858         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
25859         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
25860         (noinst_HEADERS): Add unicodeio.h.
25861         (all-local, install-exec-local, charset.alias): New targets.
25862
25863 2000-02-28  Paul Eggert  <eggert@twinsun.com>
25864
25865         * lib/quotearg.c (ALERT_CHAR): New macro.
25866         (quotearg_buffer_restyled): Use it.
25867
25868 2000-02-27  Jim Meyering  <meyering@lucent.com>
25869
25870         * m4/check-decl.m4: Add getenv to the list.
25871
25872 2000-02-27  Jim Meyering  <meyering@lucent.com>
25873
25874         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
25875         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
25876
25877         * lib/backupfile.c: Guard inclusion of stdlib.h with
25878         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
25879         Declare malloc if needed.
25880
25881         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
25882         `#ifndef HAVE_DECL..'
25883         now that autoconf always defines the HAVE_DECL_ symbols.
25884         * lib/human.c: Likewise.
25885         * lib/same.c: Likewise.
25886         * lib/strtoumax.c: Likewise.
25887
25888         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
25889         declaration check was not run.
25890         * lib/hash.c: Likewise.
25891         * lib/human.c: Likewise.
25892         * lib/same.c: Likewise.
25893         * lib/strtoumax.c: Likewise.
25894
25895         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
25896         `.', then first look up the entire `.'-containing string as a login
25897         name.
25898
25899 2000-02-23  Jim Meyering  <meyering@lucent.com>
25900
25901         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
25902         in place of my hack.
25903
25904 2000-02-18  Paul Eggert  <eggert@twinsun.com>
25905
25906         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
25907         (textint): New typedef.
25908         (parser_control): Member year changed from int to textint.
25909         All uses changed.
25910         (YYSTYPE): Removed; replaced by %union with int and textint members.
25911         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
25912         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
25913         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
25914         (tSNUMBER, tUNUMBER): Now of type <textintval>.
25915         (date, number, to_year): Use width of number in digits, not its value,
25916         to determine whether it's a 2-digit year, or a 2-digit time.
25917         (yylex): Store number of digits of numeric tokens.
25918         Reported by John Kendall.
25919
25920         (parser_control): Changed from struct parser_control to typedef (for
25921         consistency).  All uses changed.
25922
25923         (tID): Removed; not used.
25924         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
25925
25926 2000-02-14  Paul Eggert  <eggert@twinsun.com>
25927
25928         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
25929         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
25930
25931 2000-02-12  Jim Meyering  <meyering@lucent.com>
25932
25933         * lib/userspec.c (ISDIGIT): Define it.
25934         (isdigit): Remove definition.
25935         (is_number): Use ISDIGIT, not isdigit.
25936         <libintl.h>: Include.
25937         (_ and N_): Define.
25938         (parse_user_spec): Mark translatable strings.
25939
25940 2000-02-10  Jim Meyering  <meyering@lucent.com>
25941
25942         With these changes, nanosleep.[ch] are finally enough like the other
25943         lib/* replacement files to compile on a few more losing systems.
25944
25945         * lib/nanosleep.h: Don't include config.h.
25946         Remove prototype from declaration of nanosleep.
25947         (PARAMS): Remove now-unneeded definition.
25948         * lib/nanosleep.c: #undef nanosleep.
25949         (rpl_nanosleep): Rename from nanosleep.
25950
25951 2000-02-10  Jim Meyering  <meyering@lucent.com>
25952
25953         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
25954         gnu_nanosleep to rpl_nanosleep.
25955
25956 2000-02-09  Jim Meyering  <meyering@lucent.com>
25957
25958         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
25959         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
25960
25961 2000-02-08  Akim Demaille  <akim@epita.fr>
25962
25963         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
25964         `[' and `]' and remove uses of `changequote'.
25965         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
25966         (AC_SYS_LARGEFILE): Likewise.
25967         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
25968         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
25969         of changequote.
25970         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
25971         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
25972         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
25973         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
25974
25975 2000-02-05  Jim Meyering  <meyering@lucent.com>
25976
25977         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
25978         Remove explicit use of AC_HEADER_TIME.  It is required by
25979         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
25980         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
25981         in autoconf whereby the expansion of the latter ended up preceding
25982         the expansion of its prerequisite, AC_HEADER_TIME.
25983         Reported by Volker Borchert.
25984
25985 2000-02-03  Jim Meyering  <meyering@lucent.com>
25986
25987         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
25988
25989 2000-02-03  Jim Meyering  <meyering@lucent.com>
25990
25991         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
25992         rather than with `#if HAVE_UTMPNAME'.
25993
25994 2000-02-02  Jim Meyering  <meyering@lucent.com>
25995
25996         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
25997         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
25998         Reported by Eli Zaretskii.
25999
26000 2000-02-01  Jim Meyering  <meyering@lucent.com>
26001
26002         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
26003
26004 2000-01-31  Jim Meyering  <meyering@lucent.com>
26005
26006         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
26007         functions.  Add the time.h and sys/time.h headers along with the
26008         AC_REQUIRE'ment of AC_HEADER_TIME.
26009
26010 2000-01-31  Jim Meyering  <meyering@lucent.com>
26011
26012         * lib/nanosleep.h (nanosleep): Guard declaration with
26013         `#if ! HAVE_DECL_NANOSLEEP'.
26014         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
26015         the declaration in that vendor's sys/timers.h.
26016         Reported by Christian Krackowizer.
26017
26018         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
26019         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
26020         (ISPRINT): Likewise.
26021         Reported by Tom Tromey.
26022
26023 2000-01-30  Jim Meyering  <meyering@lucent.com>
26024
26025         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
26026
26027         * m4/prereq.m4 (utmp_includes): Define.
26028         Check for ut_user and ut_name members in both struct utmpx
26029         and struct utmp.
26030
26031 2000-01-30  Jim Meyering  <meyering@lucent.com>
26032
26033         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
26034         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
26035         header files where only utmpx.ut_user is declared.
26036
26037         * lib/readutmp.h (UT_USER): Define.
26038
26039 2000-01-29  Jim Meyering  <meyering@lucent.com>
26040
26041         * m4/lib-check.m4: New file containing library-related checks from
26042         fileutils and sh-utils (textutils had none).
26043
26044 2000-01-28  Jim Meyering  <meyering@lucent.com>
26045
26046         * m4/perl.m4: Change format of warning message to look more like that
26047         from the missing script.  Suggestion from François Pinard.
26048
26049 2000-01-25  Jim Meyering  <meyering@lucent.com>
26050
26051         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
26052         well as time.h in the compile check.
26053         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
26054         Fix typo in cross-compiling case: s/yes/no/.
26055
26056 2000-01-23  Jim Meyering  <meyering@lucent.com>
26057
26058         * m4/jm-macros.m4: Move df-related tests here from
26059         fileutils/configure.in
26060
26061         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
26062         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
26063
26064         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
26065         s/space/ac_fsusage_space/.
26066         (jm_FILE_SYSTEM_USAGE): Take two parameters.
26067
26068         * m4/ftruncate.m4: New file (derived from part of
26069         fileutils/configure.in).
26070         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
26071         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
26072
26073         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
26074         AC_SUBST these here, rather than just in sh-util/configure.in, so
26075         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
26076         all the same.
26077         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
26078         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
26079         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
26080         (AC_SUBST(POW_LIBM)): Likewise.
26081         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
26082
26083 2000-01-23  Jim Meyering  <meyering@lucent.com>
26084
26085         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
26086         obstack.c.
26087
26088 2000-01-22  Jim Meyering  <meyering@lucent.com>
26089
26090         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
26091
26092         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
26093
26094         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
26095         configure.in
26096         (AC_CHECK_HEADERS): Likewise for sh-utils.
26097         (AC_CHECK_HEADERS): Likewise for textutils.
26098         Merge the three lists of headers.
26099
26100         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
26101         from fileutils' configure.in.
26102
26103         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
26104         code. Moved tests into their own function (_jm_DECL_HEADERS) in
26105         check-decl.m4.
26106
26107         * m4/check-decl.m4: Use #if rather than #ifdef.
26108         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
26109         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
26110         (_jm_DECL_HEADERS): Define new function.
26111         (jm_CHECK_DECLARATIONS): Require it.
26112
26113 2000-01-22  Jim Meyering  <meyering@lucent.com>
26114
26115         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
26116         [! HAVE_DECL_STRTOULL]: Declare strtoull.
26117         Required for some AIX systems.  Reported by Christian Krackowizer.
26118         [TESTING] (main): New function.
26119
26120         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
26121         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
26122         letters.
26123
26124         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
26125         iswprint.
26126
26127         * lib/strverscmp.c (ISDIGIT): Define.
26128         (strverscmp): Use ISDIGIT, not isdigit.
26129
26130 2000-01-19  Jim Meyering  <meyering@lucent.com>
26131
26132         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
26133         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
26134         defines `struct timespec' in <sys/time.h>
26135
26136         * m4/c-bs-a.m4: Remove uses of changequote altogether.
26137         Thanks to Akim for explaining.
26138
26139 2000-01-17  Paul Eggert  <eggert@twinsun.com>
26140
26141         * lib/nanosleep.c (nanosleep):
26142         Don't use SA_INTERRUPT to decide whether to call sigaction, as
26143         POSIX.1 doesn't require SA_INTERRUPT and some systems
26144         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
26145         it's been part of POSIX.1 since day 1 (in 1988).
26146
26147 2000-01-17  Jim Meyering  <meyering@lucent.com>
26148
26149         * lib/interlock: Remove unused file.  Reported by François Pinard.
26150
26151 2000-01-16  Paul Eggert  <eggert@twinsun.com>
26152
26153         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
26154         alert, backslash, formfeed, and vertical tab unnecessarily in
26155         shell quoting style.
26156
26157 2000-01-16  Jim Meyering  <meyering@lucent.com>
26158
26159         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
26160         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
26161         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
26162         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
26163
26164 2000-01-16  Jim Meyering  <meyering@lucent.com>
26165
26166         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
26167         because the latter didn't work.
26168
26169 2000-01-15  Jim Meyering  <meyering@lucent.com>
26170
26171         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
26172         (AC_REPLACE_FUNCS): Add memcpy and memset.
26173         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
26174         Add strpbrk.
26175         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
26176
26177 2000-01-12  Jim Meyering  <meyering@lucent.com>
26178
26179         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
26180         (jm_PREREQ): Use it.
26181         (jm_PREREQ_READUTMP): New macro.
26182         (jm_PREREQ): Use it.
26183
26184 2000-01-11  Paul Eggert  <eggert@twinsun.com>
26185
26186         Quote multibyte characters correctly.
26187         * m4/c-bs-a.m4: New file.
26188         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
26189         (jm_PREREQ): Use it.
26190
26191 2000-01-11  Paul Eggert  <eggert@twinsun.com>
26192
26193         * m4/uintmax_t.m4: Port to autoconf 2.13.
26194
26195 2000-01-08  Jim Meyering  <meyering@ascend.com>
26196
26197         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
26198         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
26199
26200 2000-01-04  Jim Meyering  <meyering@ascend.com>
26201
26202         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
26203         jm_STRUCT_DIRENT_D_TYPE.
26204         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
26205         jm_STRUCT_DIRENT_D_INO.
26206         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
26207         jm_STRUCT_UTIMBUF.
26208         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
26209         renamings.
26210         * m4/utime.m4: Likewise.
26211
26212         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
26213         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
26214
26215 2000-01-03  Paul Eggert  <eggert@twinsun.com>
26216
26217         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
26218         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
26219
26220 2000-01-02  Jim Meyering  <meyering@ascend.com>
26221
26222         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
26223         remember if this is necessary.
26224
26225 1999-12-26  Jim Meyering  <meyering@ascend.com>
26226
26227         * m4/jm-macros.m4: Use it here.
26228         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
26229
26230 1999-12-23  Jim Meyering  <meyering@ascend.com>
26231
26232         * m4/jm-macros.m4: Check for clock_gettime (moved from
26233         fileutils/configure.in)
26234         Check for gettimeofday.
26235
26236 1999-12-20  Jim Meyering  <meyering@ascend.com>
26237
26238         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
26239         autoconf-2.14a-1999-12-20.
26240
26241 1999-12-19  Jim Meyering  <meyering@ascend.com>
26242
26243         * m4/lstat-slash.m4: New file.
26244         * m4/jm-macros.m4: Use the new macro:
26245         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
26246
26247 1999-12-07  Jim Meyering  <meyering@ascend.com>
26248
26249         * m4/perl.m4: Require that File::Compare be available, too.
26250         Too many systems seem to lack it.
26251
26252         * m4/strftime.m4: Add checks for most of the cpp macros tested in
26253         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
26254
26255 1999-11-18  Paul Eggert  <eggert@twinsun.com>
26256
26257         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
26258         problem with the QNX 4.25 shell, which doesn't propagate exit
26259         status of failed commands inside shell assignments.
26260
26261 1999-11-17  Jim Meyering  <meyering@ascend.com>
26262
26263         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
26264
26265 1999-11-07  Jim Meyering  <meyering@ascend.com>
26266
26267         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
26268
26269 1999-11-06  Jim Meyering  <meyering@ascend.com>
26270
26271         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
26272         * m4/jm-macros.m4 (jm_MACROS): Use it here.
26273
26274 1999-11-05  Jim Meyering  <meyering@ascend.com>
26275
26276         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
26277         configure.in of textutils, fileutils, and sh-utils into this one
26278         (shared between those packages) file.
26279         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
26280         AC_STRUCT_ST_BLKSIZE.
26281
26282 1999-11-03  Jim Meyering  <meyering@ascend.com>
26283
26284         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
26285         of AC_CHECK_TYPE checks includes unistd.h.
26286         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
26287         Suggestion from Akim Demaille.
26288
26289 1999-10-30  Jim Meyering  <meyering@ascend.com>
26290
26291         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
26292         m4-quoted string.
26293         * m4/ls-mntd-fs.m4: Likewise.
26294         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
26295         * m4/jm-winsz1.m4: Likewise.
26296
26297         * m4/const.m4: Remove file, since the fix made it into the experimental
26298         version of autoconf.
26299         * m4/mktime.m4: Likewise.
26300
26301         * m4/check-type.m4: Remove file, now that the latest version of
26302         AC_CHECK_TYPE takes a third arg to specify additional #includes.
26303
26304         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
26305         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
26306         AC_CHECK_TYPE.
26307
26308 1999-10-04  Jim Meyering  <meyering@ascend.com>
26309
26310         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
26311
26312 1999-09-22  Paul Eggert  <eggert@twinsun.com>
26313
26314         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
26315         2.95.1 bug with HP-UX 10.20.
26316
26317 1999-09-17  Jim Meyering  <meyering@ascend.com>
26318
26319         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
26320         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
26321         due to missing strdup (against sh-utils-2.0).
26322
26323 1999-08-29  Jim Meyering  <meyering@ascend.com>
26324
26325         * m4/jm-macros.m4: Require jm_BISON.
26326         * m4/bison.m4: New file.
26327
26328 1999-08-17  Paul Eggert  <eggert@twinsun.com>
26329
26330         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
26331         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
26332
26333 1999-08-05  Jim Meyering  <meyering@ascend.com>
26334
26335         * m4/getline.m4: Rename test file from conftestdata to conftest.data
26336         to avoid conflicts with `conftest' on 8+3 filesystems.
26337         Suggestion from Eli Zaretskii.
26338
26339 1999-08-04  Jim Meyering  <meyering@ascend.com>
26340
26341         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
26342         fileutils and sh-utils (textutils's getline test was inadequate).
26343         (AM_FUNC_GETLINE): Run this test.
26344         (AC_CHECK_FUNCS): Check for getdelim.
26345         Reported by Bob Proulx.
26346
26347 1999-08-02  Jim Meyering  <meyering@ascend.com>
26348
26349         * m4/jm-macros.m4: Add a comment.
26350
26351 1999-08-01  Paul Eggert  <eggert@twinsun.com>
26352
26353         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
26354         <inttypes.h> defines strtoumax as a macro (and not as a
26355         function).
26356
26357 1999-08-01  Paul Eggert  <eggert@twinsun.com>
26358
26359         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
26360         that we can shift, multiply and divide unsigned long long
26361         values; Ultrix cc can't do it.
26362
26363 1999-08-01  Paul Eggert  <eggert@twinsun.com>
26364
26365         * m4/mktime.m4: New file, which is a preview of what should appear
26366         in the next public autoconf release.
26367
26368 1999-08-01  Paul Eggert  <eggert@twinsun.com>
26369
26370         * m4/lfs.m4: Remove this file.
26371         * m4/largefile.m4: New file.  It contains the old contents of
26372         lfs.m4, except that all names with prefix AC_LFS have been
26373         changed to use the prefix AC_SYS_LARGEFILE instead, to be
26374         compatible with future autoconf versions.  Also, some minor m4
26375         quoting problems have been fixed.
26376
26377 1999-08-01  Paul Eggert  <eggert@twinsun.com>
26378
26379         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
26380         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
26381         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
26382         and simplify the shell code.
26383
26384 1999-08-01  Jim Meyering  <meyering@ascend.com>
26385
26386         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
26387         m4.
26388
26389 1999-07-20  Jim Meyering  <meyering@ascend.com>
26390
26391         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
26392
26393 1999-07-15  Jim Meyering  <meyering@ascend.com>
26394
26395         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
26396
26397 1999-05-22  Jim Meyering  <meyering@ascend.com>
26398
26399         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
26400
26401 1999-05-20  Jim Meyering  <meyering@ascend.com>
26402
26403         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
26404         Add a colon after each `then' in case $4 is empty.
26405
26406 1999-05-16  Jim Meyering  <meyering@ascend.com>
26407
26408         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
26409
26410 1999-05-10  Jim Meyering  <meyering@ascend.com>
26411
26412         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
26413
26414         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
26415         AC_FUNC_MKTIME.
26416
26417 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
26418
26419         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
26420
26421 1999-05-04  Paul Eggert  <eggert@twinsun.com>
26422
26423         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
26424         not CPPFLAGS, so that linking works correctly in IRIX.
26425
26426 1999-04-30  Paul Eggert  <eggert@twinsun.com>
26427
26428         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
26429
26430 1999-04-20  Paul Eggert  <eggert@twinsun.com>
26431
26432         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
26433         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
26434         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
26435         jm_AC_TYPE_UNSIGNED_LONG_LONG.
26436         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
26437
26438         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
26439
26440 1999-04-20  Jim Meyering  <meyering@ascend.com>
26441
26442         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
26443         AC_REPLACE xstroull if necessary.  From Paul Eggert.
26444         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
26445
26446 1999-04-18  Jim Meyering  <meyering@ascend.com>
26447
26448         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
26449         * m4/jm-macros.m4: Use it.
26450
26451 1999-04-06  Jim Meyering  <meyering@ascend.com>
26452
26453         * m4/strftime.m4: Remove test for %f.
26454
26455 1999-03-29  Jim Meyering  <meyering@ascend.com>
26456
26457         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
26458         superset of the AC_TYPE_* checks in the textutils, fileutils,
26459         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
26460         AC_TYPE_PID_T.
26461
26462 1999-03-28  Jim Meyering  <meyering@ascend.com>
26463
26464         * m4/jm-macros.m4: Define GNU_PACKAGE here.
26465         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
26466         replaced e.g., in the *.sh files of the sh-utils.
26467
26468 1999-03-20  Jim Meyering  <meyering@ascend.com>
26469
26470         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
26471         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
26472         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
26473
26474 1999-03-19  Jim Meyering  <meyering@ascend.com>
26475
26476         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
26477
26478 1999-03-12  Jim Meyering  <meyering@ascend.com>
26479
26480         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
26481
26482 1999-03-07  Jim Meyering  <meyering@ascend.com>
26483
26484         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
26485         declared.
26486
26487 1999-02-17  Jim Meyering  <meyering@ascend.com>
26488
26489         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
26490         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
26491
26492 1999-02-07  Jim Meyering  <meyering@ascend.com>
26493
26494         * m4/group-member.m4: New file -- extracted from sh-utils'
26495         configure.in.
26496
26497         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
26498         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
26499
26500 1999-02-06  Jim Meyering  <meyering@ascend.com>
26501
26502         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
26503         * m4/fnmatch.m4: Likewise.
26504         * m4/getgroups.m4: Likewise.
26505         * m4/lstat.m4: Likewise.
26506         * m4/malloc.m4: Likewise.
26507         * m4/putenv.m4: Likewise.
26508         * m4/realloc.m4: Likewise.
26509         * m4/regex.m4: Likewise.
26510         * m4/stat.m4: Likewise.
26511         * m4/strftime.m4: Likewise.
26512         Suggestion from Alain Magloire.
26513
26514         * m4/chown.m4: Use `.$ac_objext', not `.o'.
26515         * m4/fnmatch.m4: Likewise.
26516         * m4/getgroups.m4: Likewise.
26517         * m4/getline.m4: Likewise.
26518         * m4/lstat.m4: Likewise.
26519         * m4/malloc.m4: Likewise.
26520         * m4/memcmp.m4: Likewise.
26521         * m4/putenv.m4: Likewise.
26522         * m4/realloc.m4: Likewise.
26523         * m4/regex.m4: Likewise.
26524         * m4/stat.m4: Likewise.
26525         * m4/strftime.m4: Likewise.
26526         Suggestion from Alain Magloire.
26527
26528         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
26529         an argument.
26530
26531         * m4/regex.m4: Add a run-time Test for proper operation of
26532         re_compile_pattern.
26533
26534 1999-01-31  Jim Meyering  <meyering@ascend.com>
26535
26536         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
26537
26538 1999-01-30  Jim Meyering  <meyering@ascend.com>
26539
26540         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
26541
26542         * m4/jm-mktime.m4: Make this a wrapper around the official
26543         AM_FUNC_MKTIME rather than my private copy, now that the official one
26544         is up to date.
26545         * m4/mktime.m4: Remove file.
26546
26547         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
26548         * m4/uptime.m4: Likewise.
26549         * m4/uintmax_t.m4: Likewise.
26550
26551 1999-01-28  Jim Meyering  <meyering@ascend.com>
26552
26553         * m4/jm-macros.m4: Use jm_AFS.
26554         * m4/afs.m4: New file (from fileutils' configure.in).
26555
26556         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
26557         * m4/chown.m4: Likewise.
26558         * m4/d-ino.m4: Likewise.
26559         * m4/d-type.m4: Likewise.
26560         * m4/fnmatch.m4: Likewise.
26561         * m4/getgroups.m4: Likewise.
26562         * m4/gettext.m4: Likewise.
26563         * m4/jm-mktime.m4: Likewise.
26564         * m4/jm-winsz2.m4: Likewise.
26565         * m4/lcmessage.m4: Likewise.
26566         * m4/ls-mntd-fs.m4: Likewise.
26567         * m4/malloc.m4: Likewise.
26568         * m4/memcmp.m4: Likewise.
26569         * m4/putenv.m4: Likewise.
26570         * m4/realloc.m4: Likewise.
26571         * m4/st_mtim.m4: Likewise.
26572         * m4/strftime.m4: Likewise.
26573
26574 1999-01-16  Jim Meyering  <meyering@ascend.com>
26575
26576         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
26577         (ARGMATCH_DIE_DECL): Define.
26578
26579 1999-01-12  Jim Meyering  <meyering@ascend.com>
26580
26581         * m4/Makefile.am.in: Rewrite to avoid using fmt.
26582         Reported by Lars Hecking.
26583
26584 1999-01-10  Jim Meyering  <meyering@ascend.com>
26585
26586         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
26587         gross kludge.
26588         * m4/inttypes_h.m4: Likewise.
26589         * m4/lstat.m4: Likewise.
26590         * m4/malloc.m4: Likewise.
26591         * m4/readdir.m4: Likewise.
26592         * m4/realloc.m4: Likewise.
26593         * m4/st_dm_mode.m4: Likewise.
26594         * m4/stat.m4: Likewise.
26595         * m4/utimbuf.m4: Likewise.
26596         * m4/utimes.m4: Likewise.
26597
26598         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
26599         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
26600         comments in config.h.in are meaningful.
26601
26602         * m4/jm-macros.m4: Require autoconf-2.13 here.
26603
26604         * m4/regex.m4: By default, don't use the included regex.c on systems
26605         with glibc 2.  Suggestion from Uli Drepper.
26606
26607 1999-01-02  Jim Meyering  <meyering@ascend.com>
26608
26609         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
26610
26611 1998-12-18  Jim Meyering  <meyering@ascend.com>
26612
26613         * m4/Makefile.am.in (Makefile.am): Simplify rule.
26614         Based on a suggestion from Lars Hecking.
26615
26616 1998-11-16  Paul Eggert  <eggert@twinsun.com>
26617
26618         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
26619
26620 1998-11-16  Jim Meyering  <meyering@ascend.com>
26621
26622         * m4/lfs.m4: Double-quote the `uname...` expression.
26623
26624 1998-11-14  Jim Meyering  <meyering@ascend.com>
26625
26626         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
26627         * m4/stat.m4: Likewise.
26628
26629 1998-11-03  Jim Meyering  <meyering@ascend.com>
26630
26631         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
26632         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
26633
26634 1998-10-18  Jim Meyering  <meyering@ascend.com>
26635
26636         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
26637
26638 1998-10-17  Jim Meyering  <meyering@ascend.com>
26639
26640         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
26641         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
26642         calls for those previously hard-coded headers.  Instead, take a new
26643         parameter.
26644         (jm_CHECK_DECLARATIONS): Reflect interface change.
26645         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
26646         (jm_CHECK_DECL_LOCALTIME_R): New macro.
26647
26648         * m4/mktime.m4: Test for spring-forward gap before long-running test.
26649
26650 1998-10-14  Jim Meyering  <meyering@ascend.com>
26651
26652         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
26653         instead of "TZ=America/Vancouver".  From Paul Eggert.
26654
26655 1998-10-11  Jim Meyering  <meyering@ascend.com>
26656
26657         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
26658         This adds a test for a recently added compatibility fix for mktime.c.
26659         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
26660
26661 1998-09-27  Jim Meyering  <meyering@ascend.com>
26662
26663         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
26664
26665         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
26666         ../configure.in, including a change from Gordon Matzigkeit to allow
26667         cross-compiling for the Hurd.
26668
26669         * m4/glibc.m4: New file/macro to test for the GNU C Library
26670         versions 1 and 2.  From Gordon Matzigkeit.
26671         Indent.
26672
26673 1998-09-21  Jim Meyering  <meyering@ascend.com>
26674
26675         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
26676
26677 1998-08-18  Paul Eggert  <eggert@twinsun.com>
26678
26679         Port nanosecond-resolution times to UnixWare 2.1.2 and
26680         pedantic Solaris 2.6.
26681
26682         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
26683         AC_STRUCT_ST_MTIM.
26684         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
26685         Generate name of ns member, instead of just 1 or undef.
26686         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
26687
26688 1998-08-15  Jim Meyering  <meyering@ascend.com>
26689
26690         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
26691         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
26692         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
26693         instead of jm_TYPE_SSIZE_T.
26694
26695 1998-08-12  Jim Meyering  <meyering@ascend.com>
26696
26697         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
26698
26699 1998-08-02  Jim Meyering  <meyering@ascend.com>
26700
26701         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
26702         in acconfig.h manually.
26703
26704 1998-07-31  Paul Eggert  <eggert@twinsun.com>
26705
26706         * m4/st_mtim.m4: New file.
26707
26708 1998-07-28  Jim Meyering  <meyering@ascend.com>
26709
26710         * m4/utimes.m4: Undef stat.
26711
26712 1998-07-25  Jim Meyering  <meyering@ascend.com>
26713
26714         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
26715         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
26716
26717 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
26718
26719         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
26720         uid and gid actually remain unchanged.
26721
26722 1998-07-07  Jim Meyering  <meyering@ascend.com>
26723
26724         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
26725
26726 1998-07-04  Jim Meyering  <meyering@ascend.com>
26727
26728         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
26729         to prove that this macro can be used in packages without regex.c.
26730
26731 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
26732
26733         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
26734         is to be used.
26735
26736 1998-07-03  Jim Meyering  <meyering@ascend.com>
26737
26738         * m4/gettext.m4: Add -lintl if it's found to be necessary.
26739
26740         * m4/gettext.m4: New file -- from gettext-0.10.35.
26741         * m4/lcmessage.m4: Likewise.
26742         * m4/progtest.m4: Likewise.
26743
26744         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
26745         * m4/jm-macros.m4: Require the new macro.
26746
26747 1998-06-29  Jim Meyering  <meyering@ascend.com>
26748
26749         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
26750         for the definition of NGROUPS (used in a system header included
26751         by sys/mount.h).
26752
26753 1998-06-28  Jim Meyering  <meyering@ascend.com>
26754
26755         * m4/ls-mntd-fs.m4: New file.
26756         * m4/fstypename.m4: New file.
26757
26758         * m4/jm-macros.m4: Require the new macro.
26759         * m4/jm-glibc-io.m4: New file.
26760
26761 1998-05-19  Jim Meyering  <meyering@ascend.com>
26762
26763         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
26764         * m4/lchown.m4: New file.
26765
26766         * m4/Makefile.am.in: New file.
26767         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
26768
26769 1998-05-14  Jim Meyering  <meyering@ascend.com>
26770
26771         * m4/Makefile.am (EXTRA_DIST): Add them.
26772         * m4/jm-macros.m4: New file.
26773         * m4/utimbuf.m4: New file.
26774
26775 1998-05-12  Jim Meyering  <meyering@ascend.com>
26776
26777         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
26778
26779 1998-05-11  Jim Meyering  <meyering@ascend.com>
26780
26781         * m4/isc-posix.m4: New file.
26782
26783 1998-05-10  Jim Meyering  <meyering@ascend.com>
26784
26785         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
26786
26787 1998-05-09  Jim Meyering  <meyering@ascend.com>
26788
26789         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
26790         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
26791         with automake.
26792
26793         * m4/ssize_t.m4: New file.
26794         * m4/mktime.m4: Remove file -- the new automake has this now.
26795
26796 1998-04-26  Jim Meyering  <meyering@ascend.com>
26797
26798         * m4/assert.m4: New file.
26799         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
26800
26801 1998-04-05  Jim Meyering  <meyering@ascend.com>
26802
26803         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
26804         (jm_PREREQ): Use it here.
26805
26806 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
26807
26808         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
26809         in acconfig.h.
26810
26811 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
26812
26813         * m4/prereq.m4: New file.
26814         * m4/error.m4: New file.
26815         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
26816
26817 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
26818
26819         * m4/getline.m4: Don't set am_cv_func_working_getline before the
26820         cache-check for the same variable -- that defeated the purpose of
26821         the test; the test program was never run.  This was a problem only
26822         on systems with losing getline functions -- HP-UX 10.20 is one.
26823         Reported by Bjorn Helgaas.
26824
26825 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
26826
26827         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
26828
26829 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
26830
26831         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
26832
26833         * m4/const.m4: New file.  Use an initializer in this declaration
26834         typedef int charset[2]; const charset x;
26835         Reported by Bob Glickstein.
26836
26837 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
26838
26839         * m4/chown.m4: Fix reversed types on -1 args to chown.
26840         From Kaveh Ghazi.
26841
26842 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
26843
26844         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
26845         Add lseek and memchr.
26846
26847         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
26848         T.E.Dickey <dickey@clark.net> said that some older preprocessors
26849         have a 20-character limit on names.
26850
26851 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
26852
26853         * m4/inttypes_h.m4: New file.
26854         * m4/uintmax_t.m4: New file.
26855         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
26856
26857 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
26858   Free Software Foundation, Inc.
26859 Copying and distribution of this file, with or without modification,
26860 are permitted provided the copyright notice and this notice are preserved.